Index: btkb/do_c51.bat
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/do_c51.bat	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/do_c51.bat	(nonexistent)
@@ -1,144 +0,0 @@
-@set FPGA_PATH=fpgajic\fpga
-@set ROM_PATH=.
-@set MV_PATCH=mv\src\yichip
-@set YC_PATCH_FILE=yc_patch_yc1021.h
-@set enc=1
-@set enckey=0000000000000000
-@rem set device_option=shutter
-@rem set device_option=hci
-@rem set device_option=kb
-@set device_option=mouse
-@rem set device_option=le_kb
-@rem set device_option=dongle
-@rem set device_option=module
-@rem set device_option=prcp
-
-@echo off
-
-setlocal enabledelayedexpansion
-for %%f in (program\*.prog) do @if not %%f==program\bt.prog if not %%f==program\patch.prog if not %%f==program\sim.prog set progs=!progs! %%f
-type program\bt.prog %progs% > output\bt_program23.meta
-for %%f in (format\*.format) do @if not %%f==format\bt.format if not %%f==format\command.format set fmts=!fmts! %%f
-type format\bt.format %fmts% format\command.format > output\bt_format.meta
-perl util/mergepatch.pl
-perl util/memalloc.pl
-
-perl util/transform_memmap2btreg.pl output/memmap.format format/memblocks.format ..\c51\btreg.h
-
-cd output
-osiuasm bt_program23 -O-W
-
-if "%device_option%" equ "hci" (
-  copy ..\sched\ssp.dat + ..\sched\hci.dat +  ..\sched\revc.dat ..\output\sched.rom
-) else if "%device_option%" equ "kb" (
-copy ..\sched\ssp.dat + ..\sched\kb.dat +  ..\sched\revc.dat ..\output\sched.rom
-) else if "%device_option%" equ "le_kb" (
-  copy ..\sched\le_kb.dat +  ..\sched\revc.dat ..\output\sched.rom
-) else if "%device_option%" equ "mouse" (
-	copy  ..\sched\patch.dat   +  ..\sched\user.dat + ..\sched\rf.dat ..\output\sched.rom
-) else if "%device_option%" equ "module" (
-  copy  ..\sched\ssp.dat + ..\sched\DM_module.dat +   ..\sched\revc.dat ..\output\sched.rom
-) else if "%device_option%" equ "shutter" (
-  copy ..\sched\ssp.dat + ..\sched\shutter.dat +  ..\sched\revc.dat ..\output\sched.rom
-) else if "%device_option%" equ "dongle" (
-  copy ..\sched\dongle.dat +  ..\sched\usb.dat +  ..\sched\revc.dat ..\output\sched.rom
-) else if "%device_option%" equ "prcp" (
-  copy ..\sched\Le_prcp.dat + ..\sched\revb.dat ..\output\sched.rom
-) else (
-cd ..
-echo **********************************
-echo Error: illegal device_option !
-echo **********************************
-goto end
-) 
-
-if "%1" equ "eep" (
-  goto geneeprom
-) else if "%1" equ "rom" (
-	goto genrom
-) else if "%1" equ "eepb" (
-	goto genromrevb	
-) else if "%1" equ "eepc" (
-	goto genromrevc
-)else (
-  goto downloadram
-)
-
-:geneeprom
-@rem echo on
-@echo Start to generate EEPROM code
-copy ..\sched\mouse.dat ..\output\sched.rom
-
- ..\util\geneep ramcode.rom fwram.rom sched.rom %enc% %enckey% a
-perl ..\util\a1bugfix.pl
-osiuasm bt_program23 -O-W
-..\util\geneep ramcode.rom fwram.rom sched.rom %enc% %enckey% a
-goto gen_eep_end
-
-
-
-
-:genromrevb
-echo off
-@echo Start to generate EEPROM code
-..\..\regedr\geneep ramcode.rom fwram.rom sched.rom %enc% %enckey% b
-goto gen_eep_end
-
-
-:genromrevc
-echo off
-@echo Start to generate EEPROM code
-
-..\..\regedr\geneep ramcode.rom fwram.rom sched.rom 0 %enckey% c
-cd ..
-
-:gen_eep_end
-echo **********************************
-echo EEPROM Generated.
-echo The Device is %device_option%. 
-echo Use command "e ep" to download EEPROM.
-echo **********************************
-
-@copy .\output\ramcode.rom ..\c51\patch
-
-@copy .\output\memmap.format ..\c51\patch
-
-@copy .\sched\*.*	..\c51\patch
-
-goto end
-
-:genrom
-@rem echo on
-perl ..\util\rom2mif.pl romcode
-del ..\..\%FPGA_PATH%\romcode.mif
-copy .\romcode.mif ..\..\%FPGA_PATH%\romcode.mif
-perl ..\util\gen_patch_h.pl >%YC_PATCH_FILE%
-copy .\%YC_PATCH_FILE% ..\..\%MV_PATCH%\%YC_PATCH_FILE%
-copy .\%YC_PATCH_FILE% D:\work\yichip\mv_proj\src\inc\%YC_PATCH_FILE%
-cd ..\..\%FPGA_PATH%
-quartus_cdb btspi -c btspi --update_mif
-quartus_asm --read_settings_files=off --write_settings_files=off btspi -c btspi
-quartus_pgm -c USB-Blaster[USB-0] -m jtag -o "p;.\output\btspi.sof" 
-@echo bitstream_compression=on >1
-@echo memory_map_file=on >> 1
-quartus_cpf -c -o 1 -s EP3C55 -d EPCS16 output\btspi.sof output\btspi.jic  
-@rem quartus_pgm -c USB-Blaster[USB-0] -m jtag -o "pi;.\output\btspi.jic"   
-@del 1
-goto end
-
-
-
-:downloadram
-echo on
-@echo Start to download ram code
-e ku
-e hu
-e su sched.rom
-@echo **********************************
-@echo RAM CODE has been downloaded.
-@echo The Device is %device_option%. 
-@echo **********************************
-cd ..
-
-
-:end
Index: btkb/format/keyboard.format
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/format/keyboard.format	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/format/keyboard.format	(working copy)
@@ -167,7 +167,7 @@
 1 mem_mouse_retry_flag
 1 mem_adc_pu_bit
 4 mem_ui_timer_last_btclk_temp
-3 mem_version_yy_mm_dd
+4 mem_version_yy_mm_dd
 )
 
 //C51 synchronous task
Index: btkb/output/bt_program23.icode
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/output/bt_program23.icode	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/output/bt_program23.icode	(working copy)
@@ -1,21414 +1,21412 @@
- 00000000  0x00000022 bmark1  0x00000025 , 0x0000000f 
- 00000001  0x00000023 beq  0x00000000 , 0x00000017 
- 00000002  0x00000024 beq  0x00000003 , 0x0000001d 
- 00000003  0x00000025 beq  0x00000005 , 0x00000020 
- 00000004  0x00000026 beq  0x00000090 , 0x0000014e 
- 00000005  0x00000027 beq  0x00000092 , 0x00000118 
- 00000006  0x00000028 beq  0x00000094 , 0x0000011e 
- 00000007  0x00000029 beq  0x00000095 , 0x00000108 
- 00000008  0x0000002a beq  0x000000b0 , 0x000000ca 
- 00000009  0x0000002b beq  0x000000b1 , 0x000000cc 
- 00000010  0x0000002c beq  0x000000b2 , 0x000000e0 
- 00000011  0x0000002d beq  0x000000b3 , 0x000000fa 
- 00000012  0x0000002e beq  0x000000b6 , 0x00000103 
- 00000013  0x0000002f beq  0x000000b9 , 0x000000d4 
- 00000014  0x00000030 branch  0x00003bf1 
- 00000015  0x00000033 beq  0x0000003e , 0x000001c1 
- 00000016  0x00000034 beq  0x0000003f , 0x000001c5 
- 00000017  0x00000035 beq  0x00000087 , 0x000000a9 
- 00000018  0x00000036 beq  0x0000008d , 0x000001d3 
- 00000019  0x00000037 beq  0x0000008f , 0x000001c9 
- 00000020  0x00000038 beq  0x000000cd , 0x00000158 
- 00000021  0x00000039 beq  0x000000d0 , 0x000000b4 
- 00000022  0x0000003b branch  0x00003bf1 
- 00000023  0x0000003f hfetch  0x00000001 , 0x0000813b 
- 00000024  0x00000040 store  0x00000001 , 0x00000b81 
- 00000025  0x00000041 setarg  0x00280520 
- 00000026  0x00000042 store  0x00000003 , 0x00004d4c 
- 00000027  0x00000043 hjam  0x00000008 , 0x00008006 
- 00000028  0x00000044 branch  0x00003003 
- 00000029  0x00000047 call  0x00000044 
- 00000030  0x00000048 call  0x00000025 
- 00000031  0x00000049 branch  0x00003015 
- 00000032  0x0000004d call  0x00003392 
- 00000033  0x0000004e call  0x00003407 
- 00000034  0x0000004f call  0x00003024 
- 00000035  0x00000050 call  0x000001e9 
- 00000036  0x00000051 branch  0x00003022 
- 00000037  0x00000056 call  0x000000a4 
- 00000038  0x00000057 rtn  0x00000028 
- 00000039  0x00000058 byteswap  0x0000003f , 0x0000003f 
- 00000040  0x00000059 copy  0x0000003f , 0x00000006 
- 00000041  0x0000005a call  0x00000085 
- 00000042  0x0000005b store  0x00000001 , 0x00004ba7 
- 00000043  0x0000005c beq  0x00000001 , 0x00000038 
- 00000044  0x0000005d beq  0x00000006 , 0x00000042 
- 00000045  0x0000005e copy  0x0000003f , 0x00000002 
- 00000046  0x0000005f copy  0x00000006 , 0x00000011 
- 00000047  0x00000060 fetch  0x00000001 , 0x00004040 
- 00000048  0x00000061 bbit0  0x00000000 , 0x00000035 
- 00000049  0x00000062 copy  0x00000011 , 0x00000006 
- 00000050  0x00000063 rtnmark0  0x00000009 
- 00000051  0x00000064 copy  0x00000002 , 0x0000003f 
- 00000052  0x00000065 rtn 
- 00000053  0x00000068 copy  0x00000011 , 0x00000006 
- 00000054  0x00000069 arg  0x000000f8 , 0x00000005 
- 00000055  0x0000006a branch  0x0000007d 
- 00000056  0x0000006d call  0x00000085 
- 00000057  0x0000006e call  0x00000085 
- 00000058  0x0000006f store  0x00000001 , 0x00000b7d 
- 00000059  0x00000070 call  0x0000003d 
- 00000060  0x00000071 branch  0x00007c33 
- 00000061  0x00000073 call  0x00000088 
- 00000062  0x00000074 copy  0x00000006 , 0x00000002 
- 00000063  0x00000075 byteswap  0x00000002 , 0x00000002 
- 00000064  0x00000076 storet  0x00000002 , 0x00004b9a 
- 00000065  0x00000077 rtn 
- 00000066  0x0000007a arg  0x00000cd5 , 0x00000005 
- 00000067  0x0000007b branch  0x0000007d 
- 00000068  0x00000080 fetcht  0x00000004 , 0x00004c59 
- 00000069  0x00000081 copy  0x00000022 , 0x0000003f 
- 00000070  0x00000082 isub  0x00000002 , 0x0000003f 
- 00000071  0x00000084 arg  0x00000640 , 0x00000002 
- 00000072  0x00000085 idiv  0x00000002 
- 00000073  0x00000086 call  0x00007efd 
- 00000074  0x00000087 quotient  0x0000003f 
- 00000075  0x00000088 rtn  0x00000034 
- 00000076  0x00000089 copy  0x00000022 , 0x00000002 
- 00000077  0x0000008a storet  0x00000004 , 0x00004c59 
- 00000078  0x0000008b fetcht  0x00000002 , 0x00004ba5 
- 00000079  0x0000008c byteswap  0x00000002 , 0x00000002 
- 00000080  0x0000008d iadd  0x00000002 , 0x0000003f 
- 00000081  0x0000008e byteswap  0x0000003f , 0x0000003f 
- 00000082  0x0000008f store  0x00000002 , 0x00004ba5 
- 00000083  0x00000090 byteswap  0x0000003f , 0x0000003f 
- 00000084  0x00000091 and  0x0000003f , 0x00000003 , 0x0000003f 
- 00000085  0x00000092 rtnne  0x00000000 
- 00000086  0x00000093 fetch  0x00000001 , 0x00004c8f 
- 00000087  0x00000094 bbit1  0x00000000 , 0x00000061 
- 00000088  0x00000095 bbit1  0x00000001 , 0x00000063 
- 00000089  0x00000097 arg  0x00000000 , 0x00000011 
- 00000090  0x00000098 call  0x00000074 
- 00000091  0x00000099 hjam  0x0000008f , 0x00008971 
- 00000092  0x0000009a fetch  0x00000001 , 0x00004c90 
- 00000093  0x0000009b hstore  0x00000001 , 0x00008973 
- 00000094  0x0000009c call  0x00000064 
- 00000095  0x0000009d arg  0x00000001 , 0x00000011 
- 00000096  0x0000009e branch  0x00000074 
- 00000097  0x000000a2 hjam  0x000000bf , 0x00008971 
- 00000098  0x000000a3 branch  0x00000064 
- 00000099  0x000000a6 hjam  0x000000af , 0x00008971 
- 00000100  0x000000a8 hfetch  0x00000001 , 0x00008053 
- 00000101  0x000000a9 set1  0x00000007 , 0x0000003f 
- 00000102  0x000000aa hstore  0x00000001 , 0x00008053 
- 00000103  0x000000ab hfetch  0x00000001 , 0x00008973 
- 00000104  0x000000ac or_into  0x00000030 , 0x0000003f 
- 00000105  0x000000ad hstore  0x00000001 , 0x00008973 
- 00000106  0x000000ae hjam  0x0000007c , 0x00008906 
- 00000107  0x000000af hjam  0x000000aa , 0x00008972 
- 00000108  0x000000b0 nop  0x00001388 
- 00000109  0x000000b1 hfetcht  0x00000002 , 0x00008150 
- 00000110  0x000000b2 hfetch  0x00000001 , 0x00008053 
- 00000111  0x000000b3 set0  0x00000007 , 0x0000003f 
- 00000112  0x000000b4 hstore  0x00000001 , 0x00008053 
- 00000113  0x000000b5 byteswap  0x00000002 , 0x00000002 
- 00000114  0x000000b6 storet  0x00000002 , 0x00004c95 
- 00000115  0x000000b7 rtn 
- 00000116  0x000000bb arg  0x00000021 , 0x00000002 
- 00000117  0x000000bc fetch  0x00000001 , 0x00004c90 
- 00000118  0x000000bd isub  0x00000002 , 0x00000002 
- 00000119  0x000000be copy  0x00000011 , 0x0000003f 
- 00000120  0x000000bf set1  0x00000007 , 0x00000002 
- 00000121  0x000000c0 nbranch  0x0000007b , 0x00000034 
- 00000122  0x000000c1 set0  0x00000007 , 0x00000002 
- 00000123  0x000000c3 arg  0x00008078 , 0x00000005 
- 00000124  0x000000c4 branch  0x000069f4 
- 00000125  0x000000c9 call  0x00000085 
- 00000126  0x000000ca copy  0x0000003f , 0x00000039 
- 00000127  0x000000cc call  0x00000081 
- 00000128  0x000000cd branch  0x0000003d 
- 00000129  0x000000d0 call  0x00000085 
- 00000130  0x000000d1 istore  0x00000001 , 0x00000005 
- 00000131  0x000000d2 loop  0x00000081 
- 00000132  0x000000d3 rtn 
- 00000133  0x000000d6 call  0x00000088 
- 00000134  0x000000d7 ifetch  0x00000001 , 0x00000006 
- 00000135  0x000000d8 rtn 
- 00000136  0x000000db setarg  0x00004b36 
- 00000137  0x000000dc isub  0x00000006 , 0x0000003e 
- 00000138  0x000000dd nrtn  0x00000005 
- 00000139  0x000000de arg  0x00004aa0 , 0x00000006 
- 00000140  0x000000df rtn 
- 00000141  0x000000e2 arg  0x00000003 , 0x00000039 
- 00000142  0x000000e3 arg  0x00004ba2 , 0x00000006 
- 00000143  0x000000e5 copy  0x00000006 , 0x00000011 
- 00000144  0x000000e6 fetch  0x00000002 , 0x00004ba0 
- 00000145  0x000000e7 byteswap  0x0000003f , 0x0000003f 
- 00000146  0x000000e8 copy  0x0000003f , 0x00000005 
- 00000147  0x000000e9 copy  0x00000011 , 0x00000006 
- 00000148  0x000000eb ifetch  0x00000001 , 0x00000006 
- 00000149  0x000000ec istore  0x00000001 , 0x00000005 
- 00000150  0x000000ed call  0x0000009c 
- 00000151  0x000000ee loop  0x00000094 
- 00000152  0x000000ef copy  0x00000005 , 0x0000003f 
- 00000153  0x000000f0 byteswap  0x0000003f , 0x0000003f 
- 00000154  0x000000f1 store  0x00000002 , 0x00004ba0 
- 00000155  0x000000f2 rtn 
- 00000156  0x000000f4 setarg  0x00004b9a 
- 00000157  0x000000f5 isub  0x00000005 , 0x0000003e 
- 00000158  0x000000f6 nrtn  0x00000005 
- 00000159  0x000000f7 arg  0x00004b36 , 0x00000005 
- 00000160  0x000000f8 rtn 
- 00000161  0x000000fc fetch  0x00000002 , 0x00004b9e 
- 00000162  0x000000fd fetcht  0x00000002 , 0x00004ba0 
- 00000163  0x000000fe branch  0x000000a6 
- 00000164  0x00000100 fetch  0x00000002 , 0x00004b9a 
- 00000165  0x00000101 fetcht  0x00000002 , 0x00004b9c 
- 00000166  0x00000103 isub  0x00000002 , 0x0000003e 
- 00000167  0x00000104 branch  0x000069b1 , 0x00000005 
- 00000168  0x00000105 branch  0x0000320b 
- 00000169  0x00000109 copy  0x00000022 , 0x0000003f 
- 00000170  0x0000010a store  0x00000004 , 0x00004d48 
- 00000171  0x0000010b fetcht  0x00000001 , 0x000047ef 
- 00000172  0x0000010c fetch  0x00000001 , 0x00004d4b 
- 00000173  0x0000010d isub  0x00000002 , 0x0000003e 
- 00000174  0x0000010e ncall  0x000000b0 , 0x00000002 
- 00000175  0x0000010f branch  0x00007c06 
- 00000176  0x00000112 fetcht  0x00000004 , 0x00004d48 
- 00000177  0x00000113 storet  0x00000004 , 0x000047ec 
- 00000178  0x00000114 storet  0x00000004 , 0x00004c59 
- 00000179  0x00000115 rtn 
- 00000180  0x0000011a storet  0x00000001 , 0x00000259 
- 00000181  0x0000011b fetch  0x00000001 , 0x00004c8d 
- 00000182  0x0000011c increase  0x00000001 , 0x0000003f 
- 00000183  0x0000011d store  0x00000001 , 0x00004c8d 
- 00000184  0x0000011f fetch  0x00000001 , 0x00000259 
- 00000185  0x00000120 rtn  0x00000034 
- 00000186  0x00000121 increase  0xffffffff , 0x0000003f 
- 00000187  0x00000122 store  0x00000001 , 0x00000259 
- 00000188  0x00000124 call  0x000000be 
- 00000189  0x00000125 branch  0x000000b8 
- 00000190  0x00000128 fetch  0x00000001 , 0x00004c15 
- 00000191  0x00000129 rtn  0x00000034 
- 00000192  0x0000012a increase  0xffffffff , 0x0000003f 
- 00000193  0x0000012b store  0x00000001 , 0x00004c15 
- 00000194  0x0000012c rtn 
- 00000195  0x00000130 copy  0x00000013 , 0x0000003f 
- 00000196  0x00000131 and_into  0x000000f0 , 0x0000003f 
- 00000197  0x00000132 rtneq  0x00000050 
- 00000198  0x00000133 copy  0x00000013 , 0x0000003f 
- 00000199  0x00000134 rtn  0x00000034 
- 00000200  0x00000135 store  0x00000001 , 0x00004ba4 
- 00000201  0x00000136 branch  0x0000008d 
- 00000202  0x0000013f call  0x00003b36 
- 00000203  0x00000140 branch  0x00003cdc 
- 00000204  0x00000143 jam  0x0000007f , 0x0000416e 
- 00000205  0x00000144 call  0x00003cf3 
- 00000206  0x00000145 fetch  0x00000001 , 0x00004c97 
- 00000207  0x00000146 rtn  0x00000034 
- 00000208  0x00000147 jam  0x00000000 , 0x00004c97 
- 00000209  0x00000148 copy  0x00000022 , 0x0000003f 
- 00000210  0x00000149 store  0x00000004 , 0x00004c59 
- 00000211  0x0000014a rtn 
- 00000212  0x0000014f fetch  0x00000001 , 0x00004219 
- 00000213  0x00000150 nrtn  0x00000034 
- 00000214  0x00000151 hjam  0x00000006 , 0x00008042 
- 00000215  0x00000152 setarg  0x00000f0c 
- 00000216  0x00000153 call  0x00003da7 
- 00000217  0x00000154 setarg  0x00030d40 
- 00000218  0x00000155 call  0x00003bf3 
- 00000219  0x00000156 until  0x0000003e , 0x00000033 
- 00000220  0x00000157 copy  0x00000031 , 0x00000030 
- 00000221  0x00000158 call  0x00003b36 
- 00000222  0x00000159 nop  0x00001388 
- 00000223  0x0000015a branch  0x00003d9d 
- 00000224  0x0000015e rtnmark1  0x00000023 
- 00000225  0x0000015f fetch  0x00000002 , 0x000047f4 
- 00000226  0x00000160 bbit1  0x00000009 , 0x00003d1e 
- 00000227  0x00000161 call  0x00003cab 
- 00000228  0x00000162 fetch  0x00000003 , 0x00004210 
- 00000229  0x00000163 rtn  0x00000034 
- 00000230  0x00000166 fetch  0x00000001 , 0x00004131 
- 00000231  0x00000167 rtn  0x00000034 
- 00000232  0x00000169 call  0x0000527e 
- 00000233  0x0000016a nrtn  0x00000034 
- 00000234  0x0000016b call  0x00003dca 
- 00000235  0x0000016c nrtn  0x00000034 
- 00000236  0x0000016d call  0x00003b36 
- 00000237  0x0000016e fetch  0x00000001 , 0x000047dc 
- 00000238  0x0000016f branch  0x00003d25 , 0x00000034 
- 00000239  0x00000170 fetch  0x00000001 , 0x00004793 
- 00000240  0x00000171 rtn  0x00000034 
- 00000241  0x00000172 branch  0x00003d25 
- 00000242  0x00000175 call  0x000000a4 
- 00000243  0x00000176 nrtn  0x00000028 
- 00000244  0x00000177 call  0x000000a1 
- 00000245  0x00000178 nrtn  0x00000028 
- 00000246  0x00000179 jam  0x00000001 , 0x00000b7f 
- 00000247  0x0000017a jam  0x00000001 , 0x00000b7e 
- 00000248  0x0000017b call  0x000000ff 
- 00000249  0x0000017c branch  0x000000a4 
- 00000250  0x0000017f call  0x000000f2 
- 00000251  0x00000180 nrtn  0x00000028 
- 00000252  0x00000181 fetch  0x00000001 , 0x00000b7f 
- 00000253  0x00000182 nrtn  0x00000034 
- 00000254  0x00000183 branch  0x00003d2d 
- 00000255  0x00000186 fetch  0x00000001 , 0x00000b7e 
- 00000256  0x00000187 nop  0x0000000a 
- 00000257  0x00000188 bne  0x00000000 , 0x000000ff 
- 00000258  0x00000189 rtn 
- 00000259  0x0000018d call  0x000000f2 
- 00000260  0x0000018e nrtn  0x00000028 
- 00000261  0x0000018f fetch  0x00000001 , 0x00000b7f 
- 00000262  0x00000190 nrtn  0x00000034 
- 00000263  0x00000191 branch  0x00003d4f 
- 00000264  0x00000196 call  0x0000010a 
- 00000265  0x00000197 branch  0x00003aaf 
- 00000266  0x00000199 fetch  0x00000001 , 0x00004219 
- 00000267  0x0000019a nbranch  0x00000110 , 0x00000034 
- 00000268  0x0000019b call  0x00003d91 
- 00000269  0x0000019c nop  0x00007530 
- 00000270  0x0000019d nop  0x00007530 
- 00000271  0x0000019e nop  0x00007530 
- 00000272  0x000001a0 call  0x00003b0a 
- 00000273  0x000001a1 hjam  0x00000004 , 0x00008042 
- 00000274  0x000001a2 hfetch  0x00000001 , 0x0000896b 
- 00000275  0x000001a3 and_into  0x000000cf , 0x0000003f 
- 00000276  0x000001a4 hstore  0x00000001 , 0x0000896b 
- 00000277  0x000001a5 or_into  0x00000030 , 0x0000003f 
- 00000278  0x000001a6 hstore  0x00000001 , 0x0000896b 
- 00000279  0x000001a7 rtn 
- 00000280  0x000001ac storet  0x00000001 , 0x00000017 
- 00000281  0x000001ad add  0x00000002 , 0x00000004 , 0x00000011 
- 00000282  0x000001ae branch  0x00003a86 
- 00000283  0x000001b1 storet  0x00000001 , 0x00000017 
- 00000284  0x000001b2 add  0x00000002 , 0x00000000 , 0x00000011 
- 00000285  0x000001b3 branch  0x00003ab6 
- 00000286  0x000001b6 call  0x0000011b 
- 00000287  0x000001b7 setarg  0x00000500 
- 00000288  0x000001b8 call  0x00003bf3 
- 00000289  0x000001ba hjam  0x00000001 , 0x00008906 
- 00000290  0x000001bb hjam  0x0000003c , 0x00008900 
- 00000291  0x000001bc hjam  0x000000e0 , 0x00008901 
- 00000292  0x000001bd hjam  0x00000012 , 0x0000096d 
- 00000293  0x000001be nop  0x0000000a 
- 00000294  0x000001bf hjam  0x00000001 , 0x00008902 
- 00000295  0x000001c0 hjam  0x0000003d , 0x00008902 
- 00000296  0x000001c1 nop  0x0000000a 
- 00000297  0x000001c2 hjam  0x000000b7 , 0x00008903 
- 00000298  0x000001c3 nop  0x0000000a 
- 00000299  0x000001c4 hjam  0x0000007d , 0x00008902 
- 00000300  0x000001c5 fetch  0x00000001 , 0x00004bef 
- 00000301  0x000001c6 bne  0x000000ff , 0x00000136 
- 00000302  0x000001c7 fetch  0x00000005 , 0x00004a91 
- 00000303  0x000001c8 istore  0x00000005 , 0x00000005 
- 00000304  0x000001c9 ifetch  0x00000005 , 0x00000006 
- 00000305  0x000001ca istore  0x00000005 , 0x00000005 
- 00000306  0x000001cb hjam  0x000000df , 0x00000956 
- 00000307  0x000001cc call  0x0000013d 
- 00000308  0x000001cd hjam  0x000000df , 0x00000955 
- 00000309  0x000001ce rtn 
- 00000310  0x000001d1 fetch  0x00000005 , 0x00004a87 
- 00000311  0x000001d2 istore  0x00000005 , 0x00000005 
- 00000312  0x000001d3 ifetch  0x00000005 , 0x00000006 
- 00000313  0x000001d4 istore  0x00000005 , 0x00000005 
- 00000314  0x000001d5 hjam  0x000000c2 , 0x00000956 
- 00000315  0x000001d6 hjam  0x000000d0 , 0x00000955 
- 00000316  0x000001d7 rtn 
- 00000317  0x000001de nop  0x00000004 
- 00000318  0x000001df hjam  0x000000d1 , 0x00000955 
- 00000319  0x000001e0 nop  0x00000004 
- 00000320  0x000001e1 hjam  0x000000d2 , 0x00000955 
- 00000321  0x000001e2 nop  0x00000004 
- 00000322  0x000001e3 hjam  0x000000d4 , 0x00000955 
- 00000323  0x000001e4 nop  0x00000004 
- 00000324  0x000001e7 rtn 
- 00000325  0x000001ea hjam  0x000000d4 , 0x00000955 
- 00000326  0x000001eb nop  0x00000004 
- 00000327  0x000001ec hjam  0x000000d2 , 0x00000955 
- 00000328  0x000001ed nop  0x00000004 
- 00000329  0x000001ee hjam  0x000000d1 , 0x00000955 
- 00000330  0x000001ef nop  0x00000004 
- 00000331  0x000001f0 hjam  0x000000d0 , 0x00000955 
- 00000332  0x000001f1 hjam  0x000000c0 , 0x00000956 
- 00000333  0x000001f2 rtn 
- 00000334  0x000001f5 branch  0x00003a6f , 0x00000021 
- 00000335  0x000001f6 call  0x00000145 
- 00000336  0x000001f7 branch  0x00003a6f 
- 00000337  0x000001fb enable  0x00000028 
- 00000338  0x000001fc hfetch  0x00000004 , 0x00008138 
- 00000339  0x000001fd setflag  0x00000028 , 0x0000001a , 0x0000003f 
- 00000340  0x000001fe hstore  0x00000004 , 0x0000804c 
- 00000341  0x000001ff call  0x00003db0 
- 00000342  0x00000200 jam  0x00000001 , 0x000000a2 
- 00000343  0x00000202 rtn 
- 00000344  0x00000206 jam  0x00000000 , 0x00000b7e 
- 00000345  0x00000207 jam  0x00000006 , 0x00000177 
- 00000346  0x00000208 call  0x00003fa4 
- 00000347  0x00000209 setarg  0x00000157 
- 00000348  0x0000020a store  0x00000002 , 0x0000428a 
- 00000349  0x0000020b setarg  0x000000c3 
- 00000350  0x0000020c store  0x00000002 , 0x00004292 
- 00000351  0x0000020d setarg  0x000001c8 
- 00000352  0x0000020e store  0x00000002 , 0x00004290 
- 00000353  0x0000020f setarg  0x00000025 
- 00000354  0x00000210 store  0x00000002 , 0x0000428c 
- 00000355  0x00000211 setarg  0x00000151 
- 00000356  0x00000212 store  0x00000002 , 0x00004288 
- 00000357  0x00000213 setarg  0x00004aa0 
- 00000358  0x00000214 byteswap  0x0000003f , 0x0000003f 
- 00000359  0x00000215 store  0x00000002 , 0x00004b9a 
- 00000360  0x00000216 store  0x00000002 , 0x00004b9c 
- 00000361  0x00000217 call  0x00003e0b 
- 00000362  0x00000218 setarg  0x00004b36 
- 00000363  0x00000219 byteswap  0x0000003f , 0x0000003f 
- 00000364  0x0000021a store  0x00000002 , 0x00004b9e 
- 00000365  0x0000021b store  0x00000002 , 0x00004ba0 
- 00000366  0x0000021c fetch  0x00000001 , 0x00004c97 
- 00000367  0x0000021d beq  0x0000005a , 0x00000186 
- 00000368  0x0000021e branch  0x00000184 , 0x0000002b 
- 00000369  0x0000021f fetch  0x00000002 , 0x00004c91 
- 00000370  0x00000220 byteswap  0x0000003f , 0x0000003f 
- 00000371  0x00000221 store  0x00000002 , 0x00004c91 
- 00000372  0x00000222 fetch  0x00000002 , 0x00004c93 
- 00000373  0x00000223 byteswap  0x0000003f , 0x0000003f 
- 00000374  0x00000224 store  0x00000002 , 0x00004c93 
- 00000375  0x00000225 call  0x00000191 
- 00000376  0x00000226 fetch  0x00000008 , 0x000002a0 
- 00000377  0x00000227 nbranch  0x0000017e , 0x00000034 
- 00000378  0x00000228 fetch  0x00000002 , 0x00004ad4 
- 00000379  0x00000229 byteswap  0x0000003f , 0x0000003f 
- 00000380  0x0000022a branch  0x0000017e , 0x00000034 
- 00000381  0x0000022b store  0x00000002 , 0x00004c93 
- 00000382  0x0000022d call  0x000001e6 
- 00000383  0x0000022e jam  0x0000002f , 0x00004ba4 
- 00000384  0x00000230 call  0x0000008d 
- 00000385  0x00000231 jam  0x00000000 , 0x00004c97 
- 00000386  0x00000232 hjam  0x00000003 , 0x00008280 
- 00000387  0x00000233 rtn 
- 00000388  0x00000235 jam  0x00000030 , 0x00004ba4 
- 00000389  0x00000236 branch  0x00000180 
- 00000390  0x00000238 copy  0x00000027 , 0x0000003f 
- 00000391  0x00000239 branch  0x000001cb , 0x00000034 
- 00000392  0x0000023a call  0x00005b63 
- 00000393  0x0000023b call  0x00004d99 
- 00000394  0x0000023c setarg  0x00000000 
- 00000395  0x0000023d store  0x00000008 , 0x00004040 
- 00000396  0x0000023e store  0x00000002 , 0x000047f4 
- 00000397  0x0000023f copy  0x00000022 , 0x0000003f 
- 00000398  0x00000240 store  0x00000004 , 0x00004c59 
- 00000399  0x00000241 jam  0x00000033 , 0x00004ba4 
- 00000400  0x00000242 branch  0x00000180 
- 00000401  0x00000245 call  0x0000688a 
- 00000402  0x00000246 setarg  0x000007e2 
- 00000403  0x00000247 arg  0x000002a0 , 0x00000011 
- 00000404  0x00000248 arg  0x0000000c , 0x00000002 
- 00000405  0x00000249 call  0x000068d3 
- 00000406  0x0000024a call  0x0000688d 
- 00000407  0x0000024b fetch  0x00000008 , 0x000002a0 
- 00000408  0x0000024c rtn  0x00000034 
- 00000409  0x0000024d fetch  0x00000001 , 0x00004c8f 
- 00000410  0x0000024e bbit1  0x00000000 , 0x000001a3 
- 00000411  0x0000024f bbit1  0x00000001 , 0x000001b1 
- 00000412  0x00000251 fetch  0x00000002 , 0x000002a0 
- 00000413  0x00000252 byteswap  0x0000003f , 0x0000003f 
- 00000414  0x00000253 store  0x00000002 , 0x00004c91 
- 00000415  0x00000254 fetch  0x00000002 , 0x000002a6 
- 00000416  0x00000255 byteswap  0x0000003f , 0x0000003f 
- 00000417  0x00000256 store  0x00000002 , 0x00004c93 
- 00000418  0x00000257 rtn 
- 00000419  0x00000259 fetcht  0x00000002 , 0x000002a4 
- 00000420  0x0000025a fetch  0x00000002 , 0x000002aa 
- 00000421  0x0000025b copy  0x00000002 , 0x00000012 
- 00000422  0x0000025c copy  0x0000003f , 0x00000011 
- 00000423  0x0000025d byteswap  0x0000003f , 0x0000003f 
- 00000424  0x0000025e store  0x00000002 , 0x00004c93 
- 00000425  0x0000025f copy  0x00000011 , 0x0000003f 
- 00000426  0x00000260 isub  0x00000002 , 0x00000013 
- 00000427  0x00000261 lshift  0x00000013 , 0x00000013 
- 00000428  0x00000262 copy  0x00000012 , 0x0000003f 
- 00000429  0x00000263 isub  0x00000013 , 0x0000003f 
- 00000430  0x00000264 byteswap  0x0000003f , 0x0000003f 
- 00000431  0x00000265 store  0x00000002 , 0x00004c91 
- 00000432  0x00000266 rtn 
- 00000433  0x00000269 fetcht  0x00000002 , 0x000002a2 
- 00000434  0x0000026a fetch  0x00000002 , 0x000002a8 
- 00000435  0x0000026b copy  0x00000002 , 0x00000012 
- 00000436  0x0000026c copy  0x0000003f , 0x00000011 
- 00000437  0x0000026d isub  0x00000002 , 0x00000013 
- 00000438  0x0000026e rshift2  0x00000013 , 0x00000013 
- 00000439  0x0000026f copy  0x00000012 , 0x0000003f 
- 00000440  0x00000270 isub  0x00000013 , 0x0000003f 
- 00000441  0x00000271 byteswap  0x0000003f , 0x0000003f 
- 00000442  0x00000272 store  0x00000002 , 0x00004c91 
- 00000443  0x00000273 lshift  0x00000013 , 0x00000013 
- 00000444  0x00000274 copy  0x00000011 , 0x0000003f 
- 00000445  0x00000275 isub  0x00000013 , 0x0000003f 
- 00000446  0x00000276 byteswap  0x0000003f , 0x0000003f 
- 00000447  0x00000277 store  0x00000002 , 0x00004c93 
- 00000448  0x00000278 rtn 
- 00000449  0x0000027c jam  0x00000027 , 0x00000016 
- 00000450  0x0000027d hjam  0x00000036 , 0x0000090f 
- 00000451  0x0000027e hjam  0x0000005f , 0x0000090b 
- 00000452  0x0000027f branch  0x000053d4 
- 00000453  0x00000281 hjam  0x0000002e , 0x0000090f 
- 00000454  0x00000282 hjam  0x000000ff , 0x0000090b 
- 00000455  0x00000283 branch  0x000053d9 
- 00000456  0x00000287 rtn 
- 00000457  0x00000289 jam  0x00000003 , 0x00000b7e 
- 00000458  0x0000028a call  0x000000ff 
- 00000459  0x0000028d jam  0x0000005a , 0x00004c97 
- 00000460  0x0000028e call  0x00003db8 
- 00000461  0x0000028f hfetch  0x00000004 , 0x00008138 
- 00000462  0x00000290 set0  0x0000000f , 0x0000003f 
- 00000463  0x00000291 hstore  0x00000004 , 0x0000804c 
- 00000464  0x00000292 call  0x00003db0 
- 00000465  0x00000293 arg  0xffffffff , 0x00000002 
- 00000466  0x00000294 branch  0x00003cda 
- 00000467  0x00000298 call  0x00007c20 
- 00000468  0x00000299 arg  0x000047e4 , 0x00000011 
- 00000469  0x0000029a call  0x00007f9f 
- 00000470  0x0000029b copy  0x0000003f , 0x00000002 
- 00000471  0x0000029c call  0x00007c24 
- 00000472  0x0000029d copy  0x00000002 , 0x0000003f 
- 00000473  0x0000029e rtn  0x00000034 
- 00000474  0x0000029f beq  0x00000021 , 0x000001de 
- 00000475  0x000002a0 beq  0x00000022 , 0x000001e0 
- 00000476  0x000002a1 beq  0x00000023 , 0x000001e3 
- 00000477  0x000002a2 branch  0x00007c5a 
- 00000478  0x000002a4 jam  0x000000ff , 0x00004bef 
- 00000479  0x000002a5 branch  0x000002ec 
- 00000480  0x000002a7 set0  0x00000023 , 0x00000000 
- 00000481  0x000002a8 jam  0x000000ff , 0x00004bef 
- 00000482  0x000002a9 branch  0x00000266 
- 00000483  0x000002ac setarg  0xffffffff 
- 00000484  0x000002ad store  0x00000004 , 0x00004c00 
- 00000485  0x000002ae branch  0x000002b7 
- 00000486  0x000002b2 setarg  0x00000000 
- 00000487  0x000002b3 store  0x00000004 , 0x00004ba9 
- 00000488  0x000002b4 rtn 
- 00000489  0x000002b8 rtnmark0  0x00000023 
- 00000490  0x000002b9 call  0x0000020f 
- 00000491  0x000002ba nbranch  0x00000200 , 0x00000028 
- 00000492  0x000002bb jam  0x0000000a , 0x00004c15 
- 00000493  0x000002bc call  0x0000022a 
- 00000494  0x000002bd fetch  0x00000001 , 0x00004bef 
- 00000495  0x000002be rtnne  0x000000ff 
- 00000496  0x000002bf call  0x00000288 
- 00000497  0x000002c1 fetch  0x00000001 , 0x00004d46 
- 00000498  0x000002c2 nrtn  0x00000034 
- 00000499  0x000002c3 call  0x000000f2 
- 00000500  0x000002c4 nrtn  0x00000028 
- 00000501  0x000002c5 fetch  0x00000001 , 0x00000b7f 
- 00000502  0x000002c6 nrtn  0x00000034 
- 00000503  0x000002c7 call  0x00003cab 
- 00000504  0x000002c8 fetch  0x00000003 , 0x00004210 
- 00000505  0x000002c9 rtn  0x00000034 
- 00000506  0x000002ca fetch  0x00000001 , 0x00004131 
- 00000507  0x000002cb rtn  0x00000034 
- 00000508  0x000002cd setarg  0x0000e290 
- 00000509  0x000002ce call  0x00007e8a 
- 00000510  0x000002cf storet  0x00000004 , 0x000041fc 
- 00000511  0x000002d0 branch  0x00003cda 
- 00000512  0x000002d3 call  0x000000f2 
- 00000513  0x000002d4 nrtn  0x00000028 
- 00000514  0x000002d5 fetch  0x00000001 , 0x00000b7f 
- 00000515  0x000002d6 nrtn  0x00000034 
- 00000516  0x000002d7 call  0x00003cab 
- 00000517  0x000002d8 fetch  0x00000003 , 0x00004210 
- 00000518  0x000002d9 rtn  0x00000034 
- 00000519  0x000002da fetch  0x00000001 , 0x00004131 
- 00000520  0x000002db rtn  0x00000034 
- 00000521  0x000002dc fetch  0x00000001 , 0x00004c15 
- 00000522  0x000002dd nbranch  0x000001fc , 0x00000034 
- 00000523  0x000002de fetch  0x00000008 , 0x00004d3d 
- 00000524  0x000002df call  0x00007e8a 
- 00000525  0x000002e0 storet  0x00000004 , 0x000041fc 
- 00000526  0x000002e1 branch  0x00003cda 
- 00000527  0x000002e6 fetch  0x00000001 , 0x00004bef 
- 00000528  0x000002e7 bne  0x000000ff , 0x000002c0 
- 00000529  0x000002e8 call  0x00000215 
- 00000530  0x000002e9 call  0x00000350 
- 00000531  0x000002eb jam  0x00000001 , 0x00004be6 
- 00000532  0x000002ec rtn 
- 00000533  0x000002ef disable  0x00000028 
- 00000534  0x000002f0 jam  0x00000002 , 0x00004be2 
- 00000535  0x000002f1 fetch  0x00000001 , 0x00000cd5 
- 00000536  0x000002f2 beq  0x00000001 , 0x0000021e 
- 00000537  0x000002f3 beq  0x00000002 , 0x00000222 
- 00000538  0x000002f4 beq  0x00000003 , 0x00000226 
- 00000539  0x000002f5 fetch  0x00000001 , 0x00004d46 
- 00000540  0x000002f6 ncall  0x000034df , 0x00000034 
- 00000541  0x000002f7 rtn 
- 00000542  0x000002f9 setarg  0x00000000 
- 00000543  0x000002fa store  0x00000001 , 0x00000cd5 
- 00000544  0x000002fb jam  0x0000000a , 0x00004be1 
- 00000545  0x000002fc branch  0x00000228 
- 00000546  0x000002fe setarg  0x00000003 
- 00000547  0x000002ff store  0x00000001 , 0x00000cd5 
- 00000548  0x00000300 jam  0x00000004 , 0x00004be1 
- 00000549  0x00000301 branch  0x00000228 
- 00000550  0x00000303 jam  0x00000001 , 0x00004be2 
- 00000551  0x00000304 jam  0x00000008 , 0x00004be1 
- 00000552  0x00000306 jam  0x00000000 , 0x00004be7 
- 00000553  0x00000307 branch  0x000034df 
- 00000554  0x0000030c jam  0x00000000 , 0x00004be8 
- 00000555  0x0000030e arg  0x00000d00 , 0x0000000b 
- 00000556  0x0000030f until  0x00000023 , 0x00000026 
- 00000557  0x00000310 call  0x00000255 
- 00000558  0x00000311 nbranch  0x0000023b , 0x0000002f 
- 00000559  0x00000312 call  0x00000269 
- 00000560  0x00000313 call  0x0000027a 
- 00000561  0x00000314 fetch  0x00000001 , 0x00004be0 
- 00000562  0x00000315 increase  0x00000001 , 0x0000003f 
- 00000563  0x00000316 store  0x00000001 , 0x00004be0 
- 00000564  0x00000317 jam  0x00000000 , 0x00004d46 
- 00000565  0x00000318 fetch  0x00000001 , 0x00004bef 
- 00000566  0x00000319 bne  0x000000ff , 0x00000253 
- 00000567  0x0000031b call  0x0000024d 
- 00000568  0x0000031c jam  0x00000000 , 0x00004be7 
- 00000569  0x0000031d jam  0x00000000 , 0x00004be6 
- 00000570  0x0000031e rtn 
- 00000571  0x00000322 jam  0x00000001 , 0x00004d46 
- 00000572  0x00000323 fetch  0x00000001 , 0x00004be7 
- 00000573  0x00000324 increase  0x00000001 , 0x0000003f 
- 00000574  0x00000325 store  0x00000001 , 0x00004be7 
- 00000575  0x00000326 fetch  0x00000001 , 0x00004bef 
- 00000576  0x00000327 bne  0x000000ff , 0x00000265 
- 00000577  0x00000328 fetch  0x00000001 , 0x00004be7 
- 00000578  0x00000329 beq  0x000000ff , 0x00000266 
- 00000579  0x0000032a fetch  0x00000001 , 0x00004be7 
- 00000580  0x0000032b arg  0x00000010 , 0x00000002 
- 00000581  0x0000032c isub  0x00000002 , 0x0000003e 
- 00000582  0x0000032d branch  0x0000036a , 0x00000002 
- 00000583  0x0000032e fetch  0x00000001 , 0x00004be8 
- 00000584  0x0000032f increase  0x00000001 , 0x0000003f 
- 00000585  0x00000330 store  0x00000001 , 0x00004be8 
- 00000586  0x00000331 nop  0x0000000a 
- 00000587  0x00000332 bne  0x00000007 , 0x0000022b 
- 00000588  0x00000333 branch  0x0000036a 
- 00000589  0x00000337 setarg  0x00000000 
- 00000590  0x00000338 store  0x00000009 , 0x00000cd5 
- 00000591  0x00000339 rtn 
- 00000592  0x0000033c bmark0  0x00000023 , 0x000072b9 
- 00000593  0x0000033d fetch  0x00000008 , 0x00000cd5 
- 00000594  0x0000033e rtn 
- 00000595  0x00000342 call  0x00000277 
- 00000596  0x00000343 branch  0x000002dc 
- 00000597  0x00000346 disable  0x0000002f 
- 00000598  0x00000347 call  0x000003c8 
- 00000599  0x00000348 fetch  0x00000001 , 0x00004c0a 
- 00000600  0x00000349 beq  0x00000001 , 0x00000262 
- 00000601  0x0000034a force  0x00000000 , 0x00000015 
- 00000602  0x0000034b fetch  0x00000004 , 0x00004c00 
- 00000603  0x0000034c iforce  0x00000009 
- 00000604  0x0000034d fetcht  0x00000001 , 0x00000017 
- 00000605  0x0000034e call  0x00003a82 
- 00000606  0x0000034f call  0x00003a87 
- 00000607  0x00000350 call  0x00000382 
- 00000608  0x00000351 call  0x000003c0 , 0x0000002f 
- 00000609  0x00000352 rtn 
- 00000610  0x00000354 jam  0x00000000 , 0x00000cb4 
- 00000611  0x00000355 enable  0x0000002f 
- 00000612  0x00000356 branch  0x000003c0 
- 00000613  0x0000035a rtn 
- 00000614  0x0000035f jam  0x00000000 , 0x00004d46 
- 00000615  0x00000360 jam  0x00000032 , 0x00000b7d 
- 00000616  0x00000361 branch  0x00007c27 
- 00000617  0x00000365 call  0x00000312 
- 00000618  0x00000366 fetch  0x00000001 , 0x00004bdf 
- 00000619  0x00000367 rtn  0x00000034 
- 00000620  0x00000368 iforce  0x00000039 
- 00000621  0x00000369 call  0x00000271 
- 00000622  0x0000036a arg  0x00000cb5 , 0x00000006 
- 00000623  0x0000036b arg  0x00000d17 , 0x00000005 
- 00000624  0x0000036c branch  0x00007e45 
- 00000625  0x0000036f fetch  0x00000001 , 0x00000cb4 
- 00000626  0x00000370 compare  0x00000008 , 0x0000003f , 0x000000f8 
- 00000627  0x00000371 nrtn  0x00000001 
- 00000628  0x00000372 fetcht  0x00000001 , 0x00000cb5 
- 00000629  0x00000373 storet  0x00000001 , 0x00004cb7 
- 00000630  0x00000374 rtn 
- 00000631  0x00000377 jam  0x00000001 , 0x00004c28 
- 00000632  0x00000378 jam  0x00000000 , 0x00004c27 
- 00000633  0x00000379 rtn 
- 00000634  0x0000037b fetch  0x00000001 , 0x00004c27 
- 00000635  0x0000037c increase  0x00000001 , 0x0000003f 
- 00000636  0x0000037d store  0x00000001 , 0x00004c27 
- 00000637  0x0000037e rtn 
- 00000638  0x00000380 fetch  0x00000001 , 0x00004c27 
- 00000639  0x00000381 sub  0x0000003f , 0x00000001 , 0x0000003e 
- 00000640  0x00000382 ncall  0x00000286 , 0x00000002 
- 00000641  0x00000383 fetch  0x00000001 , 0x00004c27 
- 00000642  0x00000384 rtneq  0x00000000 
- 00000643  0x00000385 increase  0xffffffff , 0x0000003f 
- 00000644  0x00000386 store  0x00000001 , 0x00004c27 
- 00000645  0x00000387 rtn 
- 00000646  0x00000389 jam  0x00000002 , 0x00004c27 
- 00000647  0x0000038a rtn 
- 00000648  0x0000038d arg  0x00004c2b , 0x00000011 
- 00000649  0x0000038e call  0x00000332 
- 00000650  0x0000038f storet  0x00000001 , 0x00004c29 
- 00000651  0x00000390 isolate1  0x00000023 , 0x00000000 
- 00000652  0x00000391 call  0x00000296 , 0x00000001 
- 00000653  0x00000392 ncall  0x0000029a , 0x00000001 
- 00000654  0x00000393 isub  0x00000002 , 0x0000003e 
- 00000655  0x00000394 nbranch  0x000002ae , 0x00000002 
- 00000656  0x00000396 fetch  0x00000001 , 0x00004c27 
- 00000657  0x00000397 sub  0x0000003f , 0x00000001 , 0x0000003e 
- 00000658  0x00000398 nbranch  0x0000029e , 0x00000002 
- 00000659  0x00000399 fetch  0x00000001 , 0x00004c27 
- 00000660  0x0000039a beq  0x00000000 , 0x000002ae 
- 00000661  0x0000039b rtn 
- 00000662  0x0000039e setarg  0x00000082 
- 00000663  0x0000039f rtn 
- 00000664  0x000003a1 setarg  0x00000077 
- 00000665  0x000003a2 rtn 
- 00000666  0x000003a4 setarg  0x00000080 
- 00000667  0x000003a5 rtn 
- 00000668  0x000003a7 setarg  0x00000075 
- 00000669  0x000003a8 rtn 
- 00000670  0x000003ab fetch  0x00000001 , 0x00004c27 
- 00000671  0x000003ac rtnne  0x00000046 
- 00000672  0x000003ad jam  0x00000000 , 0x00004c27 
- 00000673  0x000003af fetcht  0x00000001 , 0x00004c29 
- 00000674  0x000003b0 isolate1  0x00000023 , 0x00000000 
- 00000675  0x000003b1 call  0x00000298 , 0x00000001 
- 00000676  0x000003b2 ncall  0x0000029c , 0x00000001 
- 00000677  0x000003b3 isub  0x00000002 , 0x0000003e 
- 00000678  0x000003b4 nrtn  0x00000002 
- 00000679  0x000003b5 fetch  0x00000001 , 0x00004c28 
- 00000680  0x000003b6 beq  0x00000000 , 0x000002b5 
- 00000681  0x000003b7 increase  0xffffffff , 0x0000003f 
- 00000682  0x000003b8 store  0x00000001 , 0x00004c28 
- 00000683  0x000003b9 beq  0x00000000 , 0x000002b5 
- 00000684  0x000003bc jam  0x00000000 , 0x00004c3d 
- 00000685  0x000003bd rtn 
- 00000686  0x000003c0 fetch  0x00000001 , 0x00004c28 
- 00000687  0x000003c1 beq  0x00000002 , 0x000002b3 
- 00000688  0x000003c2 increase  0x00000001 , 0x0000003f 
- 00000689  0x000003c3 store  0x00000001 , 0x00004c28 
- 00000690  0x000003c4 beq  0x00000001 , 0x000002ac 
- 00000691  0x000003c6 jam  0x00000002 , 0x00004c3d 
- 00000692  0x000003c7 rtn 
- 00000693  0x000003ca jam  0x00000004 , 0x00004c3d 
- 00000694  0x000003cb rtn 
- 00000695  0x000003ce set1  0x00000023 , 0x00000000 
- 00000696  0x000003cf call  0x000002bc 
- 00000697  0x000003d0 call  0x00000237 
- 00000698  0x000003d1 jam  0x00000001 , 0x00004bef 
- 00000699  0x000003d2 rtn 
- 00000700  0x000003d5 jam  0x00000000 , 0x00004be0 
- 00000701  0x000003d6 jam  0x0000004e , 0x00004be9 
- 00000702  0x000003d7 fetch  0x00000004 , 0x00004beb 
- 00000703  0x000003d8 branch  0x00000342 
- 00000704  0x000003db call  0x000002bc 
- 00000705  0x000003dc fetch  0x00000001 , 0x00004be6 
- 00000706  0x000003dd beq  0x00000001 , 0x000034df 
- 00000707  0x000003de fetch  0x00000001 , 0x00004bef 
- 00000708  0x000003df beq  0x00000001 , 0x000002c8 
- 00000709  0x000003e0 beq  0x00000002 , 0x000002cb 
- 00000710  0x000003e1 beq  0x00000003 , 0x000002ce 
- 00000711  0x000003e2 branch  0x00003bf1 
- 00000712  0x000003e5 jam  0x00000011 , 0x00004bef 
- 00000713  0x000003e6 jam  0x000000aa , 0x00000d37 
- 00000714  0x000003e7 branch  0x000002d0 
- 00000715  0x000003e9 jam  0x00000012 , 0x00004bef 
- 00000716  0x000003ea jam  0x00000055 , 0x00000d37 
- 00000717  0x000003eb branch  0x000002d0 
- 00000718  0x000003ed jam  0x00000013 , 0x00004bef 
- 00000719  0x000003ee jam  0x00000022 , 0x00000d37 
- 00000720  0x000003f0 fetch  0x00000001 , 0x00004be2 
- 00000721  0x000003f1 and_into  0x00000007 , 0x0000003f 
- 00000722  0x000003f2 store  0x00000001 , 0x00000d38 
- 00000723  0x000003f3 fetch  0x00000004 , 0x00004c06 
- 00000724  0x000003f4 store  0x00000004 , 0x00000d39 
- 00000725  0x000003f5 jam  0x00000000 , 0x00000d3d 
- 00000726  0x000003f6 arg  0x00000d37 , 0x00000011 
- 00000727  0x000003f7 arg  0x00000007 , 0x00000002 
- 00000728  0x000003f8 call  0x0000030d 
- 00000729  0x000003f9 call  0x00000350 
- 00000730  0x000003fa call  0x00000213 
- 00000731  0x000003fb branch  0x000034df 
- 00000732  0x000003fe fetch  0x00000001 , 0x00004bef 
- 00000733  0x000003ff rtneq  0x000000ff 
- 00000734  0x00000400 beq  0x00000011 , 0x000002e2 
- 00000735  0x00000401 beq  0x00000012 , 0x000002e4 
- 00000736  0x00000402 beq  0x00000013 , 0x000002e6 
- 00000737  0x00000403 rtn 
- 00000738  0x00000407 jam  0x00000002 , 0x00004bef 
- 00000739  0x00000408 branch  0x00000237 
- 00000740  0x0000040a jam  0x00000003 , 0x00004bef 
- 00000741  0x0000040b branch  0x00000237 
- 00000742  0x0000040d jam  0x000000ff , 0x00004bef 
- 00000743  0x0000040e jam  0x00000031 , 0x00000b7d 
- 00000744  0x0000040f call  0x00007c27 
- 00000745  0x00000410 fetch  0x00000004 , 0x00000d19 
- 00000746  0x00000411 call  0x00000342 
- 00000747  0x00000412 branch  0x00000237 
- 00000748  0x00000415 rtnmark1  0x00000023 
- 00000749  0x00000416 call  0x00000343 
- 00000750  0x00000417 call  0x0000036a 
- 00000751  0x00000418 fetch  0x00000001 , 0x00004bef 
- 00000752  0x00000419 rtnne  0x000000ff 
- 00000753  0x0000041a call  0x000002ff 
- 00000754  0x0000041b setarg  0x00000000 
- 00000755  0x0000041c store  0x00000002 , 0x00004c04 
- 00000756  0x0000041e call  0x00003cab 
- 00000757  0x0000041f nop  0x000007d0 
- 00000758  0x00000420 fetch  0x00000001 , 0x00004c04 
- 00000759  0x00000421 beq  0x000000ff , 0x00000266 
- 00000760  0x00000422 call  0x00000255 
- 00000761  0x00000423 nbranch  0x00000308 , 0x0000002f 
- 00000762  0x00000425 call  0x0000024d 
- 00000763  0x00000426 jam  0x00000003 , 0x00004c13 
- 00000764  0x00000427 set1  0x00000023 , 0x00000000 
- 00000765  0x00000428 jam  0x0000003c , 0x00000b7d 
- 00000766  0x00000429 branch  0x00007c27 
- 00000767  0x0000042d jam  0x000000ff , 0x00000d37 
- 00000768  0x0000042e fetch  0x00000001 , 0x00004be2 
- 00000769  0x0000042f store  0x00000001 , 0x00000d38 
- 00000770  0x00000430 fetch  0x00000004 , 0x00004c06 
- 00000771  0x00000431 store  0x00000004 , 0x00000d39 
- 00000772  0x00000432 arg  0x00000006 , 0x00000002 
- 00000773  0x00000433 arg  0x00000d37 , 0x00000011 
- 00000774  0x00000434 call  0x0000030d 
- 00000775  0x00000435 branch  0x00000350 
- 00000776  0x00000438 fetch  0x00000002 , 0x00004c04 
- 00000777  0x00000439 increase  0x00000001 , 0x0000003f 
- 00000778  0x0000043a store  0x00000002 , 0x00004c04 
- 00000779  0x0000043b call  0x0000036a 
- 00000780  0x0000043c branch  0x000002f4 
- 00000781  0x00000440 storet  0x00000001 , 0x00004be1 
- 00000782  0x00000441 copy  0x00000002 , 0x00000039 
- 00000783  0x00000442 arg  0x00000cd5 , 0x00000005 
- 00000784  0x00000443 copy  0x00000011 , 0x00000006 
- 00000785  0x00000444 branch  0x00007e45 
- 00000786  0x00000448 fetch  0x00000001 , 0x00000cb4 
- 00000787  0x00000449 rshift3  0x0000003f , 0x0000003f 
- 00000788  0x0000044a store  0x00000001 , 0x00004bdf 
- 00000789  0x0000044c increase  0x00000001 , 0x0000003f 
- 00000790  0x0000044d arg  0x00000cb4 , 0x00000006 
- 00000791  0x0000044e iadd  0x00000006 , 0x00000006 
- 00000792  0x0000044f ifetch  0x00000003 , 0x00000006 
- 00000793  0x00000450 store  0x00000003 , 0x00004c0b 
- 00000794  0x00000451 rtn 
- 00000795  0x00000454 fetcht  0x00000001 , 0x00004c3c 
- 00000796  0x00000455 setarg  0x00004c2b 
- 00000797  0x00000456 iadd  0x00000002 , 0x00000005 
- 00000798  0x00000457 copy  0x00000011 , 0x0000003f 
- 00000799  0x00000458 istore  0x00000001 , 0x00000005 
- 00000800  0x00000459 increase  0x00000001 , 0x00000002 
- 00000801  0x0000045a and_into  0x00000007 , 0x00000002 
- 00000802  0x0000045b storet  0x00000001 , 0x00004c3c 
- 00000803  0x0000045c rtn 
- 00000804  0x0000045f call  0x00003af3 
- 00000805  0x00000460 rtn  0x00000034 
- 00000806  0x00000461 fetcht  0x00000001 , 0x00004c3b 
- 00000807  0x00000462 arg  0x00004c33 , 0x00000011 
- 00000808  0x00000463 call  0x0000032b 
- 00000809  0x00000464 storet  0x00000001 , 0x00004c3b 
- 00000810  0x00000465 rtn 
- 00000811  0x00000468 copy  0x00000011 , 0x0000003f 
- 00000812  0x00000469 iadd  0x00000002 , 0x00000005 
- 00000813  0x0000046a fetch  0x00000001 , 0x00000018 
- 00000814  0x0000046b istore  0x00000001 , 0x00000005 
- 00000815  0x0000046c increase  0x00000001 , 0x00000002 
- 00000816  0x0000046d and_into  0x00000007 , 0x00000002 
- 00000817  0x0000046e rtn 
- 00000818  0x00000470 arg  0x00000000 , 0x00000002 
- 00000819  0x00000471 arg  0x00000008 , 0x00000039 
- 00000820  0x00000472 copy  0x00000011 , 0x00000006 
- 00000821  0x00000474 ifetch  0x00000001 , 0x00000006 
- 00000822  0x00000475 iadd  0x00000002 , 0x00000002 
- 00000823  0x00000476 loop  0x00000335 
- 00000824  0x00000477 rshift3  0x00000002 , 0x00000002 
- 00000825  0x00000478 copy  0x0000003f , 0x00000002 
- 00000826  0x00000479 rtnmark0  0x00000023 
- 00000827  0x0000047b div  0x0000003f , 0x0000000a 
- 00000828  0x0000047c call  0x00007efd 
- 00000829  0x0000047d quotient  0x0000003f 
- 00000830  0x0000047e lshift4  0x0000003f , 0x0000003f 
- 00000831  0x0000047f remainder  0x00000002 
- 00000832  0x00000480 ior  0x00000002 , 0x00000002 
- 00000833  0x00000481 rtn 
- 00000834  0x00000484 store  0x00000004 , 0x00004c00 
- 00000835  0x00000488 arg  0x00000000 , 0x00000011 
- 00000836  0x00000489 arg  0x00000004 , 0x00000039 
- 00000837  0x0000048a arg  0x00004c00 , 0x00000006 
- 00000838  0x0000048c ifetch  0x00000001 , 0x00000006 
- 00000839  0x0000048d iadd  0x00000011 , 0x00000011 
- 00000840  0x0000048e loop  0x00000346 
- 00000841  0x0000048f copy  0x00000011 , 0x0000003f 
- 00000842  0x00000490 store  0x00000002 , 0x00004c16 
- 00000843  0x00000491 fetch  0x00000001 , 0x00004c16 
- 00000844  0x00000492 fetcht  0x00000001 , 0x00004c17 
- 00000845  0x00000493 iadd  0x00000002 , 0x0000003f 
- 00000846  0x00000494 store  0x00000001 , 0x00004c18 
- 00000847  0x00000495 rtn 
- 00000848  0x0000049a fetch  0x00000001 , 0x00004be1 
- 00000849  0x0000049b increase  0x00000002 , 0x0000003f 
- 00000850  0x0000049c store  0x00000001 , 0x00004be3 
- 00000851  0x0000049e fetch  0x00000001 , 0x00004be2 
- 00000852  0x0000049f store  0x00000001 , 0x00000cf5 
- 00000853  0x000004a1 fetch  0x00000001 , 0x00004be1 
- 00000854  0x000004a2 lshift3  0x0000003f , 0x0000003f 
- 00000855  0x000004a3 fetcht  0x00000001 , 0x00004be0 
- 00000856  0x000004a4 and  0x00000002 , 0x00000003 , 0x00000002 
- 00000857  0x000004a5 lshift  0x00000002 , 0x00000002 
- 00000858  0x000004a6 ior  0x00000002 , 0x0000003f 
- 00000859  0x000004a7 fetcht  0x00000001 , 0x00004c0a 
- 00000860  0x000004a8 iadd  0x00000002 , 0x0000003f 
- 00000861  0x000004a9 istore  0x00000001 , 0x00000005 
- 00000862  0x000004ab fetch  0x00000001 , 0x00004bef 
- 00000863  0x000004ac bne  0x000000ff , 0x00000362 
- 00000864  0x000004ad fetch  0x00000001 , 0x00004be2 
- 00000865  0x000004ae istore  0x00000001 , 0x00000005 
- 00000866  0x000004b0 fetch  0x00000001 , 0x00004be1 
- 00000867  0x000004b1 iforce  0x00000039 
- 00000868  0x000004b2 fetch  0x00000001 , 0x00004be2 
- 00000869  0x000004b3 beq  0x00000001 , 0x00000368 
- 00000870  0x000004b4 arg  0x00000cd5 , 0x00000006 
- 00000871  0x000004b5 branch  0x00007e45 
- 00000872  0x000004b8 arg  0x00000cd6 , 0x00000006 
- 00000873  0x000004b9 branch  0x00007e45 
- 00000874  0x000004bc fetcht  0x00000001 , 0x00004bea 
- 00000875  0x000004bd call  0x00000370 
- 00000876  0x000004be increase  0x00000001 , 0x00000002 
- 00000877  0x000004bf and_into  0x00000003 , 0x00000002 
- 00000878  0x000004c0 storet  0x00000001 , 0x00004bea 
- 00000879  0x000004c1 rtn 
- 00000880  0x000004c4 fetch  0x00000001 , 0x00004c00 
- 00000881  0x000004c5 and_into  0x00000003 , 0x0000003f 
- 00000882  0x000004c6 mul32  0x0000003f , 0x00000004 , 0x00000011 
- 00000883  0x000004c7 setarg  0x00004bf0 
- 00000884  0x000004c8 iadd  0x00000011 , 0x0000003f 
- 00000885  0x000004c9 iadd  0x00000002 , 0x00000006 
- 00000886  0x000004ca ifetch  0x00000001 , 0x00000006 
- 00000887  0x000004cb store  0x00000001 , 0x00004be9 
- 00000888  0x000004cc rtn 
- 00000889  0x000004cf disable  0x00000009 
- 00000890  0x000004d0 disable  0x00000007 
- 00000891  0x000004d1 setarg  0x00555555 
- 00000892  0x000004d2 iforce  0x0000000f 
- 00000893  0x000004d3 fetch  0x00000001 , 0x00004be9 
- 00000894  0x000004d4 reverse  0x0000003f , 0x00000002 
- 00000895  0x000004d5 set1  0x00000001 , 0x00000002 
- 00000896  0x000004d6 rshift  0x00000002 , 0x0000000e 
- 00000897  0x000004d7 rtn 
- 00000898  0x000004da call  0x00000379 
- 00000899  0x000004db enable  0x0000000d 
- 00000900  0x000004dc enable  0x00000021 
- 00000901  0x000004dd disable  0x00000020 
- 00000902  0x000004de enable  0x00000010 
- 00000903  0x000004df fetch  0x00000002 , 0x00004be4 
- 00000904  0x000004e0 iforce  0x0000001b 
- 00000905  0x000004e1 correlate  0x0000003e , 0x00000003 
- 00000906  0x000004e2 nbranch  0x000003c3 , 0x00000018 
- 00000907  0x000004e3 disable  0x0000000d 
- 00000908  0x000004e4 enable  0x0000000b 
- 00000909  0x000004e5 enable  0x00000007 
- 00000910  0x000004e6 enable  0x00000009 
- 00000911  0x000004e7 parse  0x00000003 , 0x00000000 , 0x00000008 
- 00000912  0x000004e8 rshift3  0x0000000c , 0x0000003f 
- 00000913  0x000004e9 store  0x00000001 , 0x00004c19 
- 00000914  0x000004ea fetcht  0x00000001 , 0x00004c18 
- 00000915  0x000004eb isub  0x00000002 , 0x0000003e 
- 00000916  0x000004ec nbranch  0x000003c0 , 0x00000005 
- 00000917  0x000004ed parse  0x00000003 , 0x00000000 , 0x00000008 
- 00000918  0x000004ee rshift3  0x0000000c , 0x0000003f 
- 00000919  0x000004ef store  0x00000001 , 0x00000cb3 
- 00000920  0x000004f0 fetch  0x00000001 , 0x00004c10 
- 00000921  0x000004f1 sub  0x0000003f , 0x00000002 , 0x0000003e 
- 00000922  0x000004f2 branch  0x0000039f , 0x00000005 
- 00000923  0x000004f3 fetch  0x00000001 , 0x00000cb3 
- 00000924  0x000004f4 fetcht  0x00000001 , 0x00004be2 
- 00000925  0x000004f5 icompare  0x00000007 , 0x00000002 
- 00000926  0x000004f6 nbranch  0x000003c0 , 0x00000001 
- 00000927  0x000004f8 parse  0x00000003 , 0x00000000 , 0x00000008 
- 00000928  0x000004f9 rshift3  0x0000000c , 0x0000003f 
- 00000929  0x000004fa istore  0x00000001 , 0x00000005 
- 00000930  0x000004fb rshift3  0x0000003f , 0x0000003f 
- 00000931  0x000004fc and  0x0000003f , 0x0000001f , 0x00000039 
- 00000932  0x000004fd branch  0x000003a9 , 0x00000005 
- 00000933  0x000004ff parse  0x00000003 , 0x00000000 , 0x00000008 
- 00000934  0x00000500 rshift3  0x0000000c , 0x0000003f 
- 00000935  0x00000501 istore  0x00000001 , 0x00000005 
- 00000936  0x00000502 loop  0x000003a5 
- 00000937  0x00000505 copy  0x00000005 , 0x00000011 
- 00000938  0x00000506 parse  0x00000003 , 0x00000000 , 0x00000008 
- 00000939  0x00000507 rshift3  0x0000000c , 0x0000003f 
- 00000940  0x00000508 store  0x00000001 , 0x00004c2a 
- 00000941  0x00000509 copy  0x00000011 , 0x00000005 
- 00000942  0x0000050a parse  0x00000003 , 0x00000000 , 0x00000018 
- 00000943  0x0000050b enable  0x00000010 
- 00000944  0x0000050c arg  0x00000664 , 0x0000001b 
- 00000945  0x0000050d rshift32  0x0000003f , 0x0000003f 
- 00000946  0x0000050e rshift16  0x0000003f , 0x0000003f 
- 00000947  0x0000050f istore  0x00000003 , 0x00000005 
- 00000948  0x00000510 disable  0x0000000b 
- 00000949  0x00000511 branch  0x000003c0 , 0x00000006 
- 00000950  0x00000512 enable  0x0000002f 
- 00000951  0x00000513 fetch  0x00000001 , 0x00000017 
- 00000952  0x00000514 add  0x0000003f , 0x00000000 , 0x00000011 
- 00000953  0x00000515 call  0x00003ab6 
- 00000954  0x00000516 disable  0x0000000d 
- 00000955  0x00000517 call  0x00003a7a 
- 00000956  0x00000518 fetch  0x00000001 , 0x00004c2a 
- 00000957  0x00000519 copy  0x0000003f , 0x00000011 
- 00000958  0x0000051a call  0x0000031b 
- 00000959  0x0000051b rtn 
- 00000960  0x0000051e disable  0x0000001b 
- 00000961  0x0000051f disable  0x0000000b 
- 00000962  0x00000520 branch  0x0000375c 
- 00000963  0x00000523 call  0x00000324 
- 00000964  0x00000524 branch  0x000003c0 
- 00000965  0x00000527 call  0x00003a7a 
- 00000966  0x00000528 fetcht  0x00000001 , 0x00004be9 
- 00000967  0x00000529 branch  0x00003a91 
- 00000968  0x0000052c call  0x000053d2 
- 00000969  0x0000052d fetch  0x00000004 , 0x00004c00 
- 00000970  0x0000052e iforce  0x00000009 
- 00000971  0x0000052f call  0x00000379 
- 00000972  0x00000530 call  0x000003c5 
- 00000973  0x00000531 set1  0x00000000 , 0x00000015 
- 00000974  0x00000532 enable  0x0000001d 
- 00000975  0x00000533 enable  0x00000020 
- 00000976  0x00000534 disable  0x00000021 
- 00000977  0x00000535 rshift16  0x00000009 , 0x0000003f 
- 00000978  0x00000536 rshift8  0x0000003f , 0x0000003f 
- 00000979  0x00000537 rshift4  0x0000003f , 0x0000003f 
- 00000980  0x00000538 inject  0x00000003 , 0x00000028 
- 00000981  0x00000539 disable  0x0000001d 
- 00000982  0x0000053a enable  0x0000001b 
- 00000983  0x0000053b enable  0x00000007 
- 00000984  0x0000053c enable  0x00000009 
- 00000985  0x0000053d fetch  0x00000001 , 0x00004c18 
- 00000986  0x0000053e inject  0x00000003 , 0x00000008 
- 00000987  0x0000053f fetch  0x00000001 , 0x00004be3 
- 00000988  0x00000540 iforce  0x00000039 
- 00000989  0x00000541 arg  0x00000cf5 , 0x00000006 
- 00000990  0x00000543 ifetch  0x00000001 , 0x00000006 
- 00000991  0x00000544 inject  0x00000003 , 0x00000008 
- 00000992  0x00000545 loop  0x000003de 
- 00000993  0x00000546 enable  0x00000008 
- 00000994  0x00000547 inject  0x00000003 , 0x00000018 
- 00000995  0x00000548 disable  0x00000008 
- 00000996  0x00000549 until  0x0000003e , 0x00000027 
- 00000997  0x0000054a nop  0x00000064 
- 00000998  0x0000054b disable  0x0000001d 
- 00000999  0x0000054c disable  0x0000001b 
- 00001000  0x0000054d rtn 
- 00012288  0x00000559 call  0x00003c74 
- 00012289  0x0000055d set0  0x00000025 , 0x00000000 
- 00012290  0x0000055e bpatch  0x00000000 , 0x00004000 
- 00012291  0x0000055f clear_stack 
- 00012292  0x00000560 call  0x00003a9e 
- 00012293  0x00000561 call  0x00006805 
- 00012294  0x00000562 call  0x00003bfa 
- 00012295  0x00000563 call  0x00004d98 
- 00012296  0x00000564 set0  0x00000025 , 0x00000000 
- 00012297  0x00000565 bpatch  0x00000001 , 0x00004000 
- 00012298  0x00000566 call  0x00006b53 
- 00012299  0x00000567 call  0x00005b62 
- 00012300  0x00000568 call  0x00007b9d 
- 00012301  0x00000569 call  0x00003e4f 
- 00012302  0x0000056a set0  0x00000025 , 0x00000000 
- 00012303  0x0000056b bpatch  0x00000002 , 0x00004000 
- 00012304  0x0000056c call  0x00003e5f , 0x0000002b 
- 00012305  0x0000056d call  0x00007719 
- 00012306  0x0000056e call  0x00003cf1 , 0x0000002b 
- 00012307  0x00000570 set0  0x00000025 , 0x00000000 
- 00012308  0x00000571 bpatch  0x00000003 , 0x00004000 
- 00012309  0x00000572 call  0x00007813 
- 00012310  0x00000573 call  0x00005373 
- 00012311  0x00000574 call  0x00004449 
- 00012312  0x00000575 set0  0x00000025 , 0x00000000 
- 00012313  0x00000576 bpatch  0x00000004 , 0x00004000 
- 00012314  0x00000577 call  0x0000303e 
- 00012315  0x00000578 call  0x00003e6a 
- 00012316  0x00000579 call  0x000030a1 
- 00012317  0x0000057a set0  0x00000025 , 0x00000000 
- 00012318  0x0000057b bpatch  0x00000005 , 0x00004000 
- 00012319  0x0000057c call  0x00003392 
- 00012320  0x0000057d call  0x00003407 
- 00012321  0x0000057e call  0x00003024 
- 00012322  0x0000057f call  0x00003d1c 
- 00012323  0x00000580 branch  0x00003013 
- 00012324  0x00000583 call  0x00003029 
- 00012325  0x00000584 rtnmark0  0x00000009 
- 00012326  0x00000585 set0  0x00000009 , 0x00000000 
- 00012327  0x00000586 call  0x000032bd 
- 00012328  0x00000587 branch  0x000053d7 
- 00012329  0x0000058a set0  0x00000025 , 0x00000000 
- 00012330  0x0000058b bpatch  0x00000006 , 0x00004000 
- 00012331  0x0000058c call  0x000032fe 
- 00012332  0x0000058d nbranch  0x00003033 , 0x00000005 
- 00012333  0x0000058e call  0x000032a3 
- 00012334  0x0000058f add  0x00000011 , 0x00000001 , 0x00000006 
- 00012335  0x00000590 ifetch  0x00000001 , 0x00000006 
- 00012336  0x00000591 bbit1  0x00000000 , 0x00005377 
- 00012337  0x00000592 bbit1  0x00000001 , 0x000031a7 
- 00012338  0x00000593 branch  0x00003473 
- 00012339  0x00000595 set0  0x00000025 , 0x00000000 
- 00012340  0x00000596 bpatch  0x00000007 , 0x00004000 
- 00012341  0x00000597 call  0x000032c6 
- 00012342  0x00000598 copy  0x00000039 , 0x0000003e 
- 00012343  0x00000599 rtn  0x00000005 
- 00012344  0x0000059a call  0x000032a3 
- 00012345  0x0000059b fetch  0x00000001 , 0x00000030 
- 00012346  0x0000059c bbit1  0x00000003 , 0x00003103 
- 00012347  0x0000059d fetch  0x00000001 , 0x00000031 
- 00012348  0x0000059e bbit1  0x00000001 , 0x000031a7 
- 00012349  0x0000059f branch  0x00003473 
- 00012350  0x000005a8 fetch  0x00000001 , 0x00004272 
- 00012351  0x000005a9 rtn  0x00000034 
- 00012352  0x000005aa beq  0x00000001 , 0x0000304e 
- 00012353  0x000005ab beq  0x00000002 , 0x00003053 
- 00012354  0x000005ac beq  0x00000003 , 0x00003056 
- 00012355  0x000005ad beq  0x00000005 , 0x0000305b 
- 00012356  0x000005ae beq  0x0000001b , 0x0000304b 
- 00012357  0x000005af call  0x000032f6 
- 00012358  0x000005b0 rtn  0x00000005 
- 00012359  0x000005b1 call  0x000032f9 
- 00012360  0x000005b2 rtn  0x00000005 
- 00012361  0x000005b4 jam  0x00000000 , 0x00004272 
- 00012362  0x000005b5 rtn 
- 00012363  0x000005b8 jam  0x0000001b , 0x0000041c 
- 00012364  0x000005b9 jam  0x00000000 , 0x00004272 
- 00012365  0x000005ba rtn 
- 00012366  0x000005bd set1  0x0000001c , 0x00000000 
- 00012367  0x000005be set0  0x0000001e , 0x00000000 
- 00012368  0x000005bf jam  0x000000ff , 0x0000008e 
- 00012369  0x000005c0 jam  0x0000001f , 0x0000008c 
- 00012370  0x000005c1 branch  0x00003049 
- 00012371  0x000005c4 set0  0x0000001c , 0x00000000 
- 00012372  0x000005c5 force  0x00000000 , 0x0000001b 
- 00012373  0x000005c6 branch  0x00003049 
- 00012374  0x000005c9 call  0x000032f9 
- 00012375  0x000005ca rtn  0x00000005 
- 00012376  0x000005cb force  0x00000001 , 0x00000002 
- 00012377  0x000005cc jam  0x00000005 , 0x00000178 
- 00012378  0x000005cd branch  0x00003068 
- 00012379  0x000005d0 set0  0x00000025 , 0x00000000 
- 00012380  0x000005d1 bpatch  0x00000008 , 0x00004001 
- 00012381  0x000005d2 fetch  0x00000001 , 0x00004132 
- 00012382  0x000005d3 beq  0x00000001 , 0x00003064 
- 00012383  0x000005d5 fetch  0x00000006 , 0x00004274 
- 00012384  0x000005d6 branch  0x00003049 , 0x00000034 
- 00012385  0x000005d7 jam  0x00000001 , 0x000047f3 
- 00012386  0x000005d9 jam  0x00000003 , 0x00000055 
- 00012387  0x000005da branch  0x00003067 
- 00012388  0x000005dd fetch  0x00000006 , 0x00004274 
- 00012389  0x000005de branch  0x00003049 , 0x00000034 
- 00012390  0x000005df store  0x00000006 , 0x00000040 
- 00012391  0x000005e1 force  0x00000025 , 0x00000002 
- 00012392  0x000005e3 set0  0x00000025 , 0x00000000 
- 00012393  0x000005e4 bpatch  0x00000009 , 0x00004001 
- 00012394  0x000005e5 fetch  0x00000001 , 0x000000f3 
- 00012395  0x000005e6 branch  0x0000306f , 0x00000034 
- 00012396  0x000005e7 lshift3  0x0000003f , 0x0000003f 
- 00012397  0x000005e8 lshift4  0x0000003f , 0x0000003f 
- 00012398  0x000005e9 increase  0xffffffff , 0x0000003f 
- 00012399  0x000005eb store  0x00000001 , 0x00004146 
- 00012400  0x000005ec store  0x00000001 , 0x000000f2 
- 00012401  0x000005ed jam  0x0000001f , 0x0000008d 
- 00012402  0x000005ee set0  0x0000000c , 0x00000000 
- 00012403  0x000005ef call  0x000032d6 
- 00012404  0x000005f0 nbranch  0x00003090 , 0x00000005 
- 00012405  0x000005f1 call  0x00003bd1 
- 00012406  0x000005f2 store  0x00000001 , 0x00000077 
- 00012407  0x000005f3 storet  0x00000001 , 0x0000007c 
- 00012408  0x000005f4 fetch  0x00000006 , 0x00004274 
- 00012409  0x000005f5 store  0x00000006 , 0x00000040 
- 00012410  0x000005f6 set0  0x00000025 , 0x00000000 
- 00012411  0x000005f7 bpatch  0x0000000a , 0x00004001 
- 00012412  0x000005f8 force  0x00000000 , 0x0000003f 
- 00012413  0x000005f9 compare  0x00000001 , 0x00000002 , 0x000000ff 
- 00012414  0x000005fa nsetflag  0x00000001 , 0x00000005 , 0x0000003f 
- 00012415  0x000005fb set1  0x00000003 , 0x0000003f 
- 00012416  0x000005fc store  0x00000001 , 0x00000030 
- 00012417  0x000005fd jam  0x00000003 , 0x00000b7d 
- 00012418  0x000005fe call  0x00007c27 
- 00012419  0x000005ff force  0x00000000 , 0x0000003f 
- 00012420  0x00000600 setflag  0x00000001 , 0x00000004 , 0x0000003f 
- 00012421  0x00000601 store  0x00000001 , 0x0000004c 
- 00012422  0x00000602 setarg  0x00000000 
- 00012423  0x00000603 set1  0x00000001 , 0x0000003f 
- 00012424  0x00000604 store  0x00000001 , 0x00000031 
- 00012425  0x00000605 enable  0x00000029 
- 00012426  0x00000606 call  0x000032bd 
- 00012427  0x00000607 disable  0x00000029 
- 00012428  0x00000608 force  0x00000004 , 0x00000007 
- 00012429  0x00000609 fetch  0x00000002 , 0x00004159 
- 00012430  0x0000060a call  0x00007e4c 
- 00012431  0x0000060b branch  0x00003049 
- 00012432  0x0000060d set0  0x00000025 , 0x00000000 
- 00012433  0x0000060e bpatch  0x0000000b , 0x00004001 
- 00012434  0x0000060f fetch  0x00000006 , 0x00004274 
- 00012435  0x00000610 store  0x00000006 , 0x00000040 
- 00012436  0x00000611 compare  0x00000001 , 0x00000002 , 0x000000ff 
- 00012437  0x00000612 branch  0x00003099 , 0x00000001 
- 00012438  0x00000613 force  0x00000007 , 0x00000002 
- 00012439  0x00000614 call  0x00004826 
- 00012440  0x00000615 branch  0x00003049 
- 00012441  0x00000617 arg  0x00000103 , 0x00000005 
- 00012442  0x00000618 arg  0x00000008 , 0x00000039 
- 00012443  0x00000619 call  0x00007e3b 
- 00012444  0x0000061a force  0x00000007 , 0x00000007 
- 00012445  0x0000061b call  0x00004898 
- 00012446  0x0000061c jam  0x00000004 , 0x00000b7d 
- 00012447  0x0000061d call  0x00007c27 
- 00012448  0x0000061e branch  0x00003049 
- 00012449  0x00000626 rtnmark0  0x0000001c 
- 00012450  0x00000627 force  0x00000002 , 0x00000007 
- 00012451  0x00000628 call  0x00007e53 
- 00012452  0x00000629 nsetflag  0x00000034 , 0x0000001c , 0x00000000 
- 00012453  0x0000062a nbranch  0x000030a7 , 0x00000034 
- 00012454  0x0000062b rtn 
- 00012455  0x00000630 set0  0x00000025 , 0x00000000 
- 00012456  0x00000631 bpatch  0x0000000c , 0x00004001 
- 00012457  0x00000632 fetcht  0x00000002 , 0x0000415b 
- 00012458  0x00000633 force  0x00000004 , 0x00000007 
- 00012459  0x00000634 call  0x0000383d 
- 00012460  0x00000635 rtn  0x00000028 
- 00012461  0x00000636 call  0x00003a12 
- 00012462  0x00000637 force  0x00000000 , 0x00000024 
- 00012463  0x00000639 rtn  0x00000003 
- 00012464  0x0000063a set0  0x0000000b , 0x00000000 
- 00012465  0x0000063b set0  0x00000000 , 0x00000000 
- 00012466  0x0000063d add  0x00000022 , 0x00000001 , 0x00000021 
- 00012467  0x0000063e isolate1  0x0000001e , 0x00000000 
- 00012468  0x0000063f setflag  0x00000001 , 0x00000002 , 0x00000024 
- 00012469  0x00000640 compare  0x00000000 , 0x00000021 , 0x00000002 
- 00012470  0x00000641 nbranch  0x000030d3 , 0x00000001 
- 00012471  0x00000644 set0  0x00000025 , 0x00000000 
- 00012472  0x00000645 bpatch  0x0000000d , 0x00004001 
- 00012473  0x00000646 fetch  0x00000001 , 0x00000012 
- 00012474  0x00000647 increase  0x00000001 , 0x0000003f 
- 00012475  0x00000648 store  0x00000001 , 0x00000012 
- 00012476  0x00000649 call  0x00003a49 
- 00012477  0x0000064a call  0x00003a42 
- 00012478  0x0000064b call  0x00003a66 
- 00012479  0x0000064c call  0x00003bae 
- 00012480  0x0000064d call  0x00003bb4 
- 00012481  0x0000064e call  0x00003bc5 
- 00012482  0x0000064f call  0x0000375c 
- 00012483  0x00000650 call  0x000030c5 
- 00012484  0x00000651 branch  0x000030af 
- 00012485  0x00000654 set0  0x00000025 , 0x00000000 
- 00012486  0x00000655 bpatch  0x0000000e , 0x00004001 
- 00012487  0x00000656 fetch  0x00000001 , 0x0000008c 
- 00012488  0x00000657 increase  0xffffffff , 0x0000003f 
- 00012489  0x00000658 store  0x00000001 , 0x0000008c 
- 00012490  0x00000659 rtn  0x00000002 
- 00012491  0x0000065a jam  0x0000001f , 0x0000008c 
- 00012492  0x0000065b fetch  0x00000001 , 0x0000008e 
- 00012493  0x0000065c increase  0xffffffff , 0x0000003f 
- 00012494  0x0000065d store  0x00000001 , 0x0000008e 
- 00012495  0x0000065e rtn  0x00000002 
- 00012496  0x0000065f setflip  0x0000001e , 0x00000000 
- 00012497  0x00000660 jam  0x000000ff , 0x0000008e 
- 00012498  0x00000661 rtn 
- 00012499  0x00000664 set0  0x00000025 , 0x00000000 
- 00012500  0x00000665 bpatch  0x0000000f , 0x00004001 
- 00012501  0x00000666 call  0x00003a49 
- 00012502  0x00000667 call  0x00003a3b 
- 00012503  0x00000668 call  0x00003a66 
- 00012504  0x00000669 call  0x00003bba 
- 00012505  0x0000066a call  0x00003b3a 
- 00012506  0x0000066b call  0x00003b63 
- 00012507  0x0000066c branch  0x000030de , 0x00000018 
- 00012508  0x0000066d call  0x000030c5 
- 00012509  0x0000066e branch  0x000030b2 
- 00012510  0x00000670 set0  0x00000025 , 0x00000000 
- 00012511  0x00000671 bpatch  0x00000010 , 0x00004002 
- 00012512  0x00000672 call  0x00003af3 
- 00012513  0x00000673 call  0x00003bcd 
- 00012514  0x00000674 call  0x000035e1 
- 00012515  0x00000675 set0  0x00000001 , 0x00000000 
- 00012516  0x00000676 rtnmark0  0x0000000b 
- 00012517  0x00000678 set0  0x00000025 , 0x00000000 
- 00012518  0x00000679 bpatch  0x00000011 , 0x00004002 
- 00012519  0x0000067a fetch  0x00000001 , 0x000042a4 
- 00012520  0x0000067b bbit1  0x00000000 , 0x00004221 
- 00012521  0x0000067c call  0x0000477b 
- 00012522  0x0000067e fetch  0x00000001 , 0x00000013 
- 00012523  0x0000067f increase  0x00000001 , 0x0000003f 
- 00012524  0x00000680 store  0x00000001 , 0x00000013 
- 00012525  0x00000681 rtn 
- 00012526  0x00000683 set0  0x0000000b , 0x00000000 
- 00012527  0x00000684 call  0x000030fe 
- 00012528  0x00000685 call  0x00003a49 
- 00012529  0x00000686 call  0x00003a3b 
- 00012530  0x00000687 call  0x000034e1 
- 00012531  0x00000688 call  0x00003bba 
- 00012532  0x00000689 call  0x00003b3a 
- 00012533  0x0000068a call  0x00003b63 
- 00012534  0x0000068b branch  0x000030f8 , 0x00000018 
- 00012535  0x0000068c rtn 
- 00012536  0x0000068e call  0x00003bcd 
- 00012537  0x0000068f call  0x000035e1 
- 00012538  0x00000690 set0  0x00000001 , 0x00000000 
- 00012539  0x00000691 branch  0x000030e5 , 0x00000006 
- 00012540  0x00000692 call  0x0000479b 
- 00012541  0x00000693 branch  0x000030ea 
- 00012542  0x00000696 arg  0x00000600 , 0x0000000b 
- 00012543  0x00000698 until  0x00000023 , 0x00000026 
- 00012544  0x00000699 and  0x00000022 , 0x00000003 , 0x0000003f 
- 00012545  0x0000069a bne  0x00000001 , 0x000030ff 
- 00012546  0x0000069b rtn 
- 00012547  0x000006a5 set0  0x00000025 , 0x00000000 
- 00012548  0x000006a6 bpatch  0x00000012 , 0x00004002 
- 00012549  0x000006a7 enable  0x00000029 
- 00012550  0x000006a8 enable  0x00000030 
- 00012551  0x000006a9 fetch  0x00000002 , 0x00004155 
- 00012552  0x000006aa branch  0x0000310c , 0x00000034 
- 00012553  0x000006ab force  0x0000000d , 0x00000007 
- 00012554  0x000006ac call  0x00007e53 
- 00012555  0x000006ad nrtn  0x00000034 
- 00012556  0x000006af set0  0x00000025 , 0x00000000 
- 00012557  0x000006b0 bpatch  0x00000013 , 0x00004002 
- 00012558  0x000006b1 fetcht  0x00000002 , 0x00004157 
- 00012559  0x000006b2 force  0x00000028 , 0x00000007 
- 00012560  0x000006b3 call  0x0000383d 
- 00012561  0x000006b4 branch  0x0000314e , 0x00000028 
- 00012562  0x000006b5 force  0x00000004 , 0x00000007 
- 00012563  0x000006b6 call  0x00007e53 
- 00012564  0x000006b7 nbranch  0x00003127 , 0x00000034 
- 00012565  0x000006b8 fetch  0x00000001 , 0x0000004c 
- 00012566  0x000006b9 bbit1  0x00000004 , 0x0000311a 
- 00012567  0x000006ba force  0x00000004 , 0x00000002 
- 00012568  0x000006bb call  0x00004826 
- 00012569  0x000006bc branch  0x0000311f 
- 00012570  0x000006be arg  0x00000103 , 0x00000005 
- 00012571  0x000006bf arg  0x00000008 , 0x00000039 
- 00012572  0x000006c0 call  0x00007e3b 
- 00012573  0x000006c1 force  0x00000004 , 0x00000007 
- 00012574  0x000006c2 call  0x00004898 
- 00012575  0x000006c4 set0  0x00000025 , 0x00000000 
- 00012576  0x000006c5 bpatch  0x00000014 , 0x00004002 
- 00012577  0x000006c6 jam  0x00000000 , 0x00000030 
- 00012578  0x000006c7 call  0x00005b63 
- 00012579  0x000006c8 jam  0x00000000 , 0x000047f3 
- 00012580  0x000006c9 jam  0x00000013 , 0x00000b7d 
- 00012581  0x000006ca call  0x00007c27 
- 00012582  0x000006cb branch  0x0000314e 
- 00012583  0x000006ce set0  0x00000025 , 0x00000000 
- 00012584  0x000006cf bpatch  0x00000015 , 0x00004002 
- 00012585  0x000006d0 force  0x00000000 , 0x0000000b 
- 00012586  0x000006d1 until  0x00000023 , 0x00000026 
- 00012587  0x000006d2 fetch  0x00000001 , 0x000000f4 
- 00012588  0x000006d3 increase  0xffffffff , 0x0000003f 
- 00012589  0x000006d4 ixor  0x00000022 , 0x0000003f 
- 00012590  0x000006d5 compare  0x00000000 , 0x0000003f , 0x00000003 
- 00012591  0x000006d6 nbranch  0x00003127 , 0x00000001 
- 00012592  0x000006d7 deposit  0x00000004 
- 00012593  0x000006d8 store  0x00000001 , 0x0000018b 
- 00012594  0x000006d9 force  0x00000000 , 0x00000026 
- 00012595  0x000006da force  0x00000000 , 0x00000024 
- 00012596  0x000006dd set0  0x00000025 , 0x00000000 
- 00012597  0x000006de bpatch  0x00000016 , 0x00004002 
- 00012598  0x000006df branch  0x0000314e , 0x00000003 
- 00012599  0x000006e0 call  0x00003a4d 
- 00012600  0x000006e1 arg  0x00000600 , 0x0000000b 
- 00012601  0x000006e2 until  0x00000023 , 0x00000026 
- 00012602  0x000006e4 set0  0x00000025 , 0x00000000 
- 00012603  0x000006e5 bpatch  0x00000017 , 0x00004002 
- 00012604  0x000006e6 fetch  0x00000004 , 0x000000f4 
- 00012605  0x000006e7 iforce  0x00000021 
- 00012606  0x000006e8 increase  0x00000001 , 0x0000003f 
- 00012607  0x000006e9 store  0x00000004 , 0x000000f4 
- 00012608  0x000006ea isolate1  0x0000000c , 0x00000000 
- 00012609  0x000006eb setflag  0x00000001 , 0x00000002 , 0x00000024 
- 00012610  0x000006ec compare  0x00000000 , 0x00000021 , 0x00000002 
- 00012611  0x000006ed nbranch  0x00003164 , 0x00000001 
- 00012612  0x000006ee fetch  0x00000001 , 0x0000000c 
- 00012613  0x000006ef increase  0x00000001 , 0x0000003f 
- 00012614  0x000006f0 store  0x00000001 , 0x0000000c 
- 00012615  0x000006f1 call  0x00003a42 
- 00012616  0x000006f2 call  0x00003bae 
- 00012617  0x000006f3 call  0x00003bb4 
- 00012618  0x000006f4 call  0x00003bc5 
- 00012619  0x000006f5 call  0x0000375c 
- 00012620  0x000006f6 call  0x00003155 
- 00012621  0x000006f7 branch  0x00003134 
- 00012622  0x000006fa set0  0x00000025 , 0x00000000 
- 00012623  0x000006fb bpatch  0x00000018 , 0x00004003 
- 00012624  0x000006fc disable  0x00000029 
- 00012625  0x000006fd fetch  0x00000002 , 0x00004155 
- 00012626  0x000006fe rtn  0x00000034 
- 00012627  0x000006ff force  0x0000000d , 0x00000007 
- 00012628  0x00000700 branch  0x00007e4c 
- 00012629  0x00000703 set0  0x00000025 , 0x00000000 
- 00012630  0x00000704 bpatch  0x00000019 , 0x00004003 
- 00012631  0x00000705 fetch  0x00000001 , 0x0000008d 
- 00012632  0x00000706 increase  0xffffffff , 0x0000003f 
- 00012633  0x00000707 store  0x00000001 , 0x0000008d 
- 00012634  0x00000708 rtn  0x00000002 
- 00012635  0x00000709 jam  0x0000001f , 0x0000008d 
- 00012636  0x0000070a fetch  0x00000001 , 0x000000f2 
- 00012637  0x0000070b increase  0xffffffff , 0x0000003f 
- 00012638  0x0000070c store  0x00000001 , 0x000000f2 
- 00012639  0x0000070d rtn  0x00000002 
- 00012640  0x0000070e setflip  0x0000000c , 0x00000000 
- 00012641  0x0000070f fetch  0x00000001 , 0x00004146 
- 00012642  0x00000710 store  0x00000001 , 0x000000f2 
- 00012643  0x00000711 rtn 
- 00012644  0x00000714 set0  0x00000025 , 0x00000000 
- 00012645  0x00000715 bpatch  0x0000001a , 0x00004003 
- 00012646  0x00000716 call  0x00003a3b 
- 00012647  0x00000717 call  0x00003bba 
- 00012648  0x00000718 call  0x00003b3a 
- 00012649  0x00000719 call  0x00003b63 
- 00012650  0x0000071a branch  0x0000316d , 0x00000018 
- 00012651  0x0000071b call  0x00003155 
- 00012652  0x0000071c branch  0x0000313a 
- 00012653  0x0000071e call  0x0000375c 
- 00012654  0x0000071f fetch  0x00000001 , 0x0000000d 
- 00012655  0x00000720 increase  0x00000001 , 0x0000003f 
- 00012656  0x00000721 store  0x00000001 , 0x0000000d 
- 00012657  0x00000722 force  0x00000000 , 0x0000001b 
- 00012658  0x00000723 fetch  0x00000004 , 0x000000f4 
- 00012659  0x00000725 set0  0x00000025 , 0x00000000 
- 00012660  0x00000726 bpatch  0x0000001b , 0x00004003 
- 00012661  0x00000727 call  0x00003bac 
- 00012662  0x00000728 call  0x00003a4d 
- 00012663  0x00000729 increase  0x00000001 , 0x00000026 
- 00012664  0x0000072b and_into  0x000001fd , 0x00000021 
- 00012665  0x0000072c and_into  0x000001fc , 0x00000024 
- 00012666  0x0000072d call  0x00003a42 
- 00012667  0x0000072e call  0x00003bae 
- 00012668  0x0000072f call  0x00003bb4 
- 00012669  0x00000730 call  0x00003bc5 
- 00012670  0x00000731 deposit  0x00000022 
- 00012671  0x00000732 store  0x00000004 , 0x0000016b 
- 00012672  0x00000733 force  0x00000000 , 0x00000004 
- 00012673  0x00000734 force  0x00000002 , 0x00000001 
- 00012674  0x00000735 call  0x00003bcd 
- 00012675  0x00000736 call  0x000038c1 
- 00012676  0x00000738 set0  0x00000025 , 0x00000000 
- 00012677  0x00000739 bpatch  0x0000001c , 0x00004003 
- 00012678  0x0000073a call  0x00003baa 
- 00012679  0x0000073b or_into  0x00000002 , 0x00000021 
- 00012680  0x0000073c and_into  0x000001fc , 0x00000024 
- 00012681  0x0000073d call  0x00003a3b 
- 00012682  0x0000073e call  0x00003bba 
- 00012683  0x0000073f call  0x00003b3a 
- 00012684  0x00000740 call  0x00003b63 
- 00012685  0x00000741 call  0x0000375c , 0x00000018 
- 00012686  0x00000742 branch  0x00003194 , 0x00000018 
- 00012687  0x00000743 fetch  0x00000001 , 0x00000010 
- 00012688  0x00000744 branch  0x00003134 , 0x00000034 
- 00012689  0x00000745 increase  0xffffffff , 0x0000003f 
- 00012690  0x00000746 store  0x00000001 , 0x00000010 
- 00012691  0x00000747 branch  0x00003173 
- 00012692  0x0000074a set0  0x00000025 , 0x00000000 
- 00012693  0x0000074b bpatch  0x0000001d , 0x00004003 
- 00012694  0x0000074c fetch  0x00000001 , 0x0000000e 
- 00012695  0x0000074d increase  0x00000001 , 0x0000003f 
- 00012696  0x0000074e store  0x00000001 , 0x0000000e 
- 00012697  0x0000074f call  0x000034ed 
- 00012698  0x00000751 call  0x0000338b 
- 00012699  0x00000752 branch  0x0000319f , 0x00000018 
- 00012700  0x00000753 call  0x0000350e 
- 00012701  0x00000754 nbranch  0x0000319a , 0x00000034 
- 00012702  0x00000755 branch  0x00003134 
- 00012703  0x00000758 set0  0x00000025 , 0x00000000 
- 00012704  0x00000759 bpatch  0x0000001e , 0x00004003 
- 00012705  0x0000075a fetch  0x00000001 , 0x00000030 
- 00012706  0x0000075b set0  0x00000003 , 0x0000003f 
- 00012707  0x0000075c store  0x00000001 , 0x00000030 
- 00012708  0x0000075d call  0x000034f9 
- 00012709  0x0000075e disable  0x00000029 
- 00012710  0x0000075f rtn 
- 00012711  0x00000763 set0  0x00000025 , 0x00000000 
- 00012712  0x00000764 bpatch  0x0000001f , 0x00004003 
- 00012713  0x00000765 enable  0x00000029 
- 00012714  0x00000766 enable  0x00000030 
- 00012715  0x00000767 call  0x0000324e 
- 00012716  0x00000768 rtn  0x00000028 
- 00012717  0x00000769 call  0x00003e25 
- 00012718  0x0000076a call  0x00003bac 
- 00012719  0x0000076b add  0x00000022 , 0x00000001 , 0x00000021 
- 00012720  0x0000076c call  0x00003a54 
- 00012721  0x0000076d force  0x00000003 , 0x00000024 
- 00012722  0x0000076e call  0x0000327c 
- 00012723  0x0000076f call  0x00006a54 
- 00012724  0x00000770 call  0x00006e10 
- 00012725  0x00000771 call  0x00003547 
- 00012726  0x00000772 call  0x00003a42 
- 00012727  0x00000773 call  0x00003bae 
- 00012728  0x00000774 call  0x00003bb4 
- 00012729  0x00000775 call  0x00003bc5 
- 00012730  0x00000776 call  0x000038bf 
- 00012731  0x00000778 set0  0x00000025 , 0x00000000 
- 00012732  0x00000779 bpatch  0x00000020 , 0x00004004 
- 00012733  0x0000077a call  0x00005b78 
- 00012734  0x0000077b call  0x00004995 
- 00012735  0x0000077c call  0x000048a9 
- 00012736  0x0000077d call  0x0000337c 
- 00012737  0x0000077e nbranch  0x000031c7 , 0x0000002d 
- 00012738  0x0000077f call  0x00003bec 
- 00012739  0x00000780 call  0x00003870 
- 00012740  0x00000781 fetch  0x00000001 , 0x0000000f 
- 00012741  0x00000782 increase  0x00000001 , 0x0000003f 
- 00012742  0x00000783 store  0x00000001 , 0x0000000f 
- 00012743  0x00000785 set0  0x00000025 , 0x00000000 
- 00012744  0x00000786 bpatch  0x00000021 , 0x00004004 
- 00012745  0x00000787 call  0x00006dec 
- 00012746  0x00000788 call  0x000031d5 
- 00012747  0x00000789 nrtn  0x00000029 
- 00012748  0x0000078a call  0x00003812 
- 00012749  0x0000078b nbranch  0x000031d2 , 0x00000034 
- 00012750  0x0000078d call  0x00006a5c 
- 00012751  0x0000078e call  0x00003290 
- 00012752  0x0000078f disable  0x00000029 
- 00012753  0x00000790 rtn 
- 00012754  0x00000793 call  0x00003547 
- 00012755  0x00000794 call  0x00003371 
- 00012756  0x00000795 branch  0x000031bb 
- 00012757  0x00000799 branch  0x000031d8 , 0x0000002d 
- 00012758  0x0000079a call  0x00003be2 
- 00012759  0x0000079b branch  0x000031e6 , 0x00000002 
- 00012760  0x0000079d call  0x00003204 
- 00012761  0x0000079e nbranch  0x000031e6 , 0x00000028 
- 00012762  0x0000079f fetch  0x00000001 , 0x0000004c 
- 00012763  0x000007a0 rtnbit0  0x00000004 
- 00012764  0x000007a1 rtnbit1  0x00000003 
- 00012765  0x000007a2 fetch  0x00000001 , 0x0000004b 
- 00012766  0x000007a3 rtnbit1  0x00000003 
- 00012767  0x000007a4 call  0x0000320d 
- 00012768  0x000007a5 nrtn  0x00000034 
- 00012769  0x000007a6 fetch  0x00000001 , 0x00000178 
- 00012770  0x000007a7 increase  0xffffffff , 0x0000003f 
- 00012771  0x000007a8 store  0x00000001 , 0x00000178 
- 00012772  0x000007a9 nrtn  0x00000034 
- 00012773  0x000007aa branch  0x00005ed5 
- 00012774  0x000007ad set0  0x00000025 , 0x00000000 
- 00012775  0x000007ae bpatch  0x00000022 , 0x00004004 
- 00012776  0x000007af call  0x00003516 
- 00012777  0x000007b0 disable  0x00000029 
- 00012778  0x000007b1 fetch  0x00000001 , 0x0000004c 
- 00012779  0x000007b2 bbit1  0x00000004 , 0x000031f2 
- 00012780  0x000007b3 fetch  0x00000001 , 0x00000030 
- 00012781  0x000007b4 bbit0  0x00000004 , 0x000031f0 
- 00012782  0x000007b5 fetcht  0x00000001 , 0x00000046 
- 00012783  0x000007b6 branch  0x000048c4 
- 00012784  0x000007b8 force  0x00000008 , 0x00000002 
- 00012785  0x000007b9 branch  0x00004826 
- 00012786  0x000007bb force  0x00000000 , 0x00000007 
- 00012787  0x000007bc fetch  0x00000001 , 0x0000004c 
- 00012788  0x000007bd bbit1  0x00000003 , 0x00004898 
- 00012789  0x000007bf force  0x00000004 , 0x00000007 
- 00012790  0x000007c0 arg  0x00000103 , 0x00000005 
- 00012791  0x000007c1 arg  0x00000008 , 0x00000039 
- 00012792  0x000007c2 call  0x00007e3b 
- 00012793  0x000007c3 branch  0x00004898 
- 00012794  0x000007c6 set0  0x00000025 , 0x00000000 
- 00012795  0x000007c7 bpatch  0x00000023 , 0x00004004 
- 00012796  0x000007c8 fetch  0x00000001 , 0x00000030 
- 00012797  0x000007c9 rtnbit0  0x00000002 
- 00012798  0x000007ca fetcht  0x00000001 , 0x00000046 
- 00012799  0x000007cb fetch  0x00000001 , 0x000000ac 
- 00012800  0x000007cc isub  0x00000002 , 0x0000003e 
- 00012801  0x000007cd nrtn  0x00000005 
- 00012802  0x000007ce call  0x00003869 
- 00012803  0x000007cf branch  0x00003293 
- 00012804  0x000007d2 set0  0x00000025 , 0x00000000 
- 00012805  0x000007d3 bpatch  0x00000024 , 0x00004004 
- 00012806  0x000007d4 enable  0x00000028 
- 00012807  0x000007d5 fetch  0x00000001 , 0x0000004b 
- 00012808  0x000007d6 rtnbit0  0x00000003 
- 00012809  0x000007d7 call  0x0000320d 
- 00012810  0x000007d8 nrtn  0x00000034 
- 00012811  0x000007da disable  0x00000028 
- 00012812  0x000007db rtn 
- 00012813  0x000007de fetch  0x00000001 , 0x00000072 
- 00012814  0x000007df increase  0xffffffff , 0x0000003f 
- 00012815  0x000007e0 store  0x00000001 , 0x00000072 
- 00012816  0x000007e1 rtn 
- 00012817  0x000007e4 set0  0x00000025 , 0x00000000 
- 00012818  0x000007e5 bpatch  0x00000025 , 0x00004004 
- 00012819  0x000007e6 fetch  0x00000001 , 0x00000030 
- 00012820  0x000007e7 bbit1  0x00000007 , 0x0000321f 
- 00012821  0x000007e8 fetch  0x00000001 , 0x00004132 
- 00012822  0x000007e9 beq  0x00000001 , 0x0000321d 
- 00012823  0x000007ea fetch  0x00000001 , 0x000007e1 
- 00012824  0x000007eb branch  0x0000321f , 0x00000034 
- 00012825  0x000007ec jam  0x00000000 , 0x000007e1 
- 00012826  0x000007ed jam  0x00000018 , 0x00000b7d 
- 00012827  0x000007ee call  0x00007c27 
- 00012828  0x000007ef branch  0x0000321f 
- 00012829  0x000007f1 call  0x00006216 
- 00012830  0x000007f2 ncall  0x00004852 , 0x00000001 
- 00012831  0x000007f4 set0  0x00000025 , 0x00000000 
- 00012832  0x000007f5 bpatch  0x00000026 , 0x00004004 
- 00012833  0x000007f6 call  0x000032f0 
- 00012834  0x000007f7 fetch  0x00000001 , 0x00000030 
- 00012835  0x000007f8 set1  0x00000007 , 0x0000003f 
- 00012836  0x000007f9 store  0x00000001 , 0x00000030 
- 00012837  0x000007fa jam  0x00000001 , 0x0000425e 
- 00012838  0x000007fb fetch  0x00000001 , 0x00000055 
- 00012839  0x000007fc bne  0x00000016 , 0x00003228 
- 00012840  0x000007fe rtn 
- 00012841  0x00000801 jam  0x00000001 , 0x000007e1 
- 00012842  0x00000803 fetch  0x00000001 , 0x00000030 
- 00012843  0x00000804 set0  0x00000007 , 0x0000003f 
- 00012844  0x00000805 store  0x00000001 , 0x00000030 
- 00012845  0x00000806 rtn 
- 00012846  0x0000080b set0  0x00000025 , 0x00000000 
- 00012847  0x0000080c bpatch  0x00000027 , 0x00004004 
- 00012848  0x0000080d disable  0x00000028 
- 00012849  0x0000080e fetch  0x00000001 , 0x00000030 
- 00012850  0x0000080f rtnbit0  0x00000001 
- 00012851  0x00000810 fetch  0x00000002 , 0x00000032 
- 00012852  0x00000811 nrtn  0x00000034 
- 00012853  0x00000812 fetch  0x00000004 , 0x00000034 
- 00012854  0x00000813 branch  0x00003239 , 0x00000030 
- 00012855  0x00000814 isub  0x00000028 , 0x0000003f 
- 00012856  0x00000815 branch  0x0000323a 
- 00012857  0x00000817 isub  0x00000022 , 0x0000003f 
- 00012858  0x00000819 sub  0x0000003f , 0x00000004 , 0x0000003e 
- 00012859  0x0000081a nrtn  0x00000002 
- 00012860  0x0000081b fetch  0x00000001 , 0x00000030 
- 00012861  0x0000081c set0  0x00000001 , 0x0000003f 
- 00012862  0x0000081d store  0x00000001 , 0x00000030 
- 00012863  0x0000081e enable  0x00000028 
- 00012864  0x0000081f rtn 
- 00012865  0x00000823 copy  0x0000003f , 0x00000002 
- 00012866  0x00000824 set0  0x00000025 , 0x00000000 
- 00012867  0x00000825 bpatch  0x00000028 , 0x00004005 
- 00012868  0x00000826 store  0x00000004 , 0x00000034 
- 00012869  0x00000828 jam  0x00000001 , 0x00004748 
- 00012870  0x00000829 fetch  0x00000001 , 0x00000030 
- 00012871  0x0000082a set1  0x00000001 , 0x0000003f 
- 00012872  0x0000082b store  0x00000001 , 0x00000030 
- 00012873  0x0000082c force  0x00000000 , 0x0000003f 
- 00012874  0x0000082d store  0x00000002 , 0x00000032 
- 00012875  0x0000082e jam  0x0000000a , 0x0000008a 
- 00012876  0x0000082f jam  0x00000001 , 0x00000073 
- 00012877  0x00000830 rtn 
- 00012878  0x00000834 set0  0x00000025 , 0x00000000 
- 00012879  0x00000835 bpatch  0x00000029 , 0x00004005 
- 00012880  0x00000836 call  0x0000322e 
- 00012881  0x00000837 nrtn  0x00000028 
- 00012882  0x00000838 disable  0x00000028 
- 00012883  0x00000839 jam  0x00000020 , 0x00000011 
- 00012884  0x0000083a set0  0x0000000b , 0x00000000 
- 00012885  0x0000083c call  0x00003bac 
- 00012886  0x0000083d call  0x0000337f 
- 00012887  0x0000083e bmark1  0x0000000b , 0x00003263 
- 00012888  0x0000083f call  0x0000350e 
- 00012889  0x00000840 nbranch  0x00003255 , 0x00000034 
- 00012890  0x00000842 set0  0x00000025 , 0x00000000 
- 00012891  0x00000843 bpatch  0x0000002a , 0x00004005 
- 00012892  0x00000844 disable  0x00000028 
- 00012893  0x00000845 deposit  0x00000022 
- 00012894  0x00000846 store  0x00000004 , 0x0000416a 
- 00012895  0x00000847 enable  0x00000030 
- 00012896  0x00000848 enable  0x00000029 
- 00012897  0x00000849 jam  0x0000002a , 0x00000b7d 
- 00012898  0x0000084a branch  0x00007c27 
- 00012899  0x0000084d set0  0x00000025 , 0x00000000 
- 00012900  0x0000084e bpatch  0x0000002b , 0x00004005 
- 00012901  0x0000084f call  0x00003baa 
- 00012902  0x00000850 call  0x00003374 
- 00012903  0x00000851 disable  0x00000030 
- 00012904  0x00000852 disable  0x00000029 
- 00012905  0x00000853 call  0x00003982 
- 00012906  0x00000854 call  0x000034ed 
- 00012907  0x00000856 set0  0x00000025 , 0x00000000 
- 00012908  0x00000857 bpatch  0x0000002c , 0x00004005 
- 00012909  0x00000858 call  0x00003539 
- 00012910  0x00000859 branch  0x00003272 , 0x0000002d 
- 00012911  0x0000085a call  0x0000350e 
- 00012912  0x0000085b nbranch  0x0000326b , 0x00000034 
- 00012913  0x0000085c branch  0x0000325a 
- 00012914  0x0000085e force  0x00000001 , 0x00000002 
- 00012915  0x0000085f call  0x0000487f 
- 00012916  0x00000860 fetch  0x00000001 , 0x00000031 
- 00012917  0x00000861 set0  0x00000001 , 0x0000003f 
- 00012918  0x00000862 store  0x00000001 , 0x00000031 
- 00012919  0x00000863 call  0x00003bec 
- 00012920  0x00000864 call  0x000039ac 
- 00012921  0x00000865 enable  0x00000028 
- 00012922  0x00000866 jam  0x0000002b , 0x00000b7d 
- 00012923  0x00000867 branch  0x00007c27 
- 00012924  0x0000086b set0  0x00000025 , 0x00000000 
- 00012925  0x0000086c bpatch  0x0000002d , 0x00004005 
- 00012926  0x0000086d rtnmark0  0x00000007 
- 00012927  0x0000086e fetch  0x00000001 , 0x00000030 
- 00012928  0x0000086f rtnbit0  0x00000002 
- 00012929  0x00000871 call  0x00003c23 
- 00012930  0x00000872 fetch  0x00000001 , 0x000000b3 
- 00012931  0x00000873 fetcht  0x00000001 , 0x00000047 
- 00012932  0x00000874 storet  0x00000001 , 0x000000b4 
- 00012933  0x00000875 store  0x00000001 , 0x00000047 
- 00012934  0x00000876 deposit  0x00000004 
- 00012935  0x00000877 store  0x00000001 , 0x000000b2 
- 00012936  0x00000878 fetch  0x00000001 , 0x000041f9 
- 00012937  0x00000879 iforce  0x00000004 
- 00012938  0x0000087a set0  0x00000008 , 0x00000000 
- 00012939  0x0000087b fetch  0x00000001 , 0x00004165 
- 00012940  0x0000087c store  0x00000001 , 0x00004167 
- 00012941  0x0000087d fetch  0x00000001 , 0x00004166 
- 00012942  0x0000087e store  0x00000001 , 0x00004165 
- 00012943  0x0000087f rtn 
- 00012944  0x00000882 set0  0x00000025 , 0x00000000 
- 00012945  0x00000883 bpatch  0x0000002e , 0x00004005 
- 00012946  0x00000884 rtnmark0  0x00000007 
- 00012947  0x00000886 call  0x00003847 
- 00012948  0x00000887 nrtn  0x00000001 
- 00012949  0x00000889 call  0x00003799 
- 00012950  0x0000088a fetch  0x00000001 , 0x000000b4 
- 00012951  0x0000088b fetcht  0x00000001 , 0x00000047 
- 00012952  0x0000088c store  0x00000001 , 0x00000047 
- 00012953  0x0000088d storet  0x00000001 , 0x000000b3 
- 00012954  0x0000088e fetch  0x00000001 , 0x000000b2 
- 00012955  0x0000088f iforce  0x00000004 
- 00012956  0x00000890 fetch  0x00000001 , 0x00004165 
- 00012957  0x00000891 store  0x00000001 , 0x00004166 
- 00012958  0x00000892 fetch  0x00000001 , 0x00004167 
- 00012959  0x00000893 store  0x00000001 , 0x00004165 
- 00012960  0x00000894 setarg  0x0000ffff 
- 00012961  0x00000895 store  0x00000002 , 0x00004168 
- 00012962  0x00000896 rtn 
- 00012963  0x0000089c set0  0x00000025 , 0x00000000 
- 00012964  0x0000089d bpatch  0x0000002f , 0x00004005 
- 00012965  0x0000089e set1  0x00000009 , 0x00000000 
- 00012966  0x0000089f deposit  0x00000011 
- 00012967  0x000008a0 store  0x00000002 , 0x0000001e 
- 00012968  0x000008a1 force  0x00000050 , 0x00000039 
- 00012969  0x000008a2 arg  0x000003c0 , 0x00000005 
- 00012970  0x000008a3 add  0x00000011 , 0x00000001 , 0x00000006 
- 00012971  0x000008a4 ifetch  0x00000001 , 0x00000006 
- 00012972  0x000008a5 copy  0x00000011 , 0x00000006 
- 00012973  0x000008a6 bbit1  0x00000000 , 0x00007e45 
- 00012974  0x000008a7 arg  0x00000030 , 0x00000005 
- 00012975  0x000008a8 call  0x00007e45 
- 00012976  0x000008a9 disable  0x0000002e 
- 00012977  0x000008aa fetch  0x00000001 , 0x00000077 
- 00012978  0x000008ab iforce  0x00000004 
- 00012979  0x000008ac jam  0x00000001 , 0x0000008a 
- 00012980  0x000008ad branch  0x000032b6 , 0x00000029 
- 00012981  0x000008ae jam  0x00000001 , 0x0000008a 
- 00012982  0x000008b0 fetch  0x00000001 , 0x00000030 
- 00012983  0x000008b1 rtnbit0  0x00000001 
- 00012984  0x000008b2 fetch  0x00000001 , 0x00000073 
- 00012985  0x000008b3 store  0x00000001 , 0x0000008a 
- 00012986  0x000008b4 fetch  0x00000001 , 0x00000074 
- 00012987  0x000008b5 store  0x00000001 , 0x0000008b 
- 00012988  0x000008b6 rtn 
- 00012989  0x000008b9 set0  0x00000025 , 0x00000000 
- 00012990  0x000008ba bpatch  0x00000030 , 0x00004006 
- 00012991  0x000008bb fetch  0x00000002 , 0x0000001e 
- 00012992  0x000008bc iforce  0x00000005 
- 00012993  0x000008bd force  0x00000050 , 0x00000039 
- 00012994  0x000008be arg  0x000003c0 , 0x00000006 
- 00012995  0x000008bf branch  0x00007e45 , 0x00000036 
- 00012996  0x000008c0 arg  0x00000030 , 0x00000006 
- 00012997  0x000008c1 branch  0x00007e45 
- 00012998  0x000008c6 fetcht  0x00000001 , 0x00000015 
- 00012999  0x000008c7 arg  0x00000003 , 0x00000039 
- 00013000  0x000008c9 increase  0x00000001 , 0x00000002 
- 00013001  0x000008ca compare  0x00000003 , 0x00000002 , 0x000000ff 
- 00013002  0x000008cb nbranch  0x000032cc , 0x00000001 
- 00013003  0x000008cc arg  0x00000000 , 0x00000002 
- 00013004  0x000008ce storet  0x00000001 , 0x00000015 
- 00013005  0x000008cf mul32  0x00000002 , 0x00000050 , 0x0000003f 
- 00013006  0x000008d0 arg  0x00004040 , 0x00000011 
- 00013007  0x000008d1 iadd  0x00000011 , 0x00000011 
- 00013008  0x000008d2 ifetch  0x00000001 , 0x00000011 
- 00013009  0x000008d3 bbit1  0x00000001 , 0x000032d4 
- 00013010  0x000008d4 rtnbit1  0x00000000 
- 00013011  0x000008d5 rtnbit1  0x00000003 
- 00013012  0x000008d7 loop  0x000032c8 
- 00013013  0x000008d8 rtn 
- 00013014  0x000008db set0  0x00000025 , 0x00000000 
- 00013015  0x000008dc bpatch  0x00000031 , 0x00004006 
- 00013016  0x000008dd arg  0x0000330b , 0x00000013 
- 00013017  0x000008de call  0x00003301 
- 00013018  0x000008df nrtn  0x00000005 
- 00013019  0x000008e0 deposit  0x00000011 
- 00013020  0x000008e1 store  0x00000002 , 0x0000001e 
- 00013021  0x000008e2 force  0x00000000 , 0x0000003e 
- 00013022  0x000008e3 rtn 
- 00013023  0x000008e8 call  0x00003847 
- 00013024  0x000008e9 branch  0x000032e7 , 0x00000001 
- 00013025  0x000008ea fetch  0x00000002 , 0x0000001e 
- 00013026  0x000008eb add  0x0000003f , 0x00000017 , 0x00000005 
- 00013027  0x000008ec fetch  0x00000001 , 0x00000047 
- 00013028  0x000008ed istore  0x00000001 , 0x00000005 
- 00013029  0x000008ee arg  0x00003334 , 0x00000013 
- 00013030  0x000008ef branch  0x00003301 
- 00013031  0x000008f2 fetch  0x00000001 , 0x00000047 
- 00013032  0x000008f3 isolate1  0x00000003 , 0x0000003f 
- 00013033  0x000008f4 branch  0x000032ec , 0x00000001 
- 00013034  0x000008f5 force  0x00000001 , 0x0000003e 
- 00013035  0x000008f6 rtn 
- 00013036  0x000008f8 force  0x00000000 , 0x0000003e 
- 00013037  0x000008f9 rtn 
- 00013038  0x000008fd arg  0x00003331 , 0x00000013 
- 00013039  0x000008fe branch  0x00003301 
- 00013040  0x00000901 fetcht  0x00000002 , 0x0000001e 
- 00013041  0x00000902 arg  0x00003366 , 0x00000013 
- 00013042  0x00000903 branch  0x00003301 
- 00013043  0x00000906 fetcht  0x00000002 , 0x0000001e 
- 00013044  0x00000907 arg  0x00003359 , 0x00000013 
- 00013045  0x00000908 branch  0x00003301 
- 00013046  0x0000090c fetcht  0x00000001 , 0x00004273 
- 00013047  0x0000090e arg  0x00003316 , 0x00000013 
- 00013048  0x0000090f branch  0x00003301 
- 00013049  0x00000912 set0  0x00000025 , 0x00000000 
- 00013050  0x00000913 bpatch  0x00000032 , 0x00004006 
- 00013051  0x00000914 fetcht  0x00000006 , 0x00004274 
- 00013052  0x00000916 arg  0x0000330f , 0x00000013 
- 00013053  0x00000917 branch  0x00003301 
- 00013054  0x0000091a arg  0x0000331c , 0x00000013 
- 00013055  0x0000091b branch  0x00003301 
- 00013056  0x0000091e arg  0x00003350 , 0x00000013 
- 00013057  0x00000920 set0  0x00000025 , 0x00000000 
- 00013058  0x00000921 bpatch  0x00000033 , 0x00004006 
- 00013059  0x00000922 arg  0x00004040 , 0x00000011 
- 00013060  0x00000923 force  0x00000003 , 0x00000039 
- 00013061  0x00000925 ifetch  0x00000001 , 0x00000011 
- 00013062  0x00000926 copy  0x00000013 , 0x0000003d 
- 00013063  0x00000928 increase  0x00000050 , 0x00000011 
- 00013064  0x00000929 loop  0x00003305 
- 00013065  0x0000092a force  0x00000001 , 0x0000003e 
- 00013066  0x0000092b rtn 
- 00013067  0x0000092e bbit1  0x00000000 , 0x00003307 
- 00013068  0x0000092f bbit1  0x00000003 , 0x00003307 
- 00013069  0x00000930 force  0x00000000 , 0x0000003e 
- 00013070  0x00000931 rtn 
- 00013071  0x00000934 bbit1  0x00000003 , 0x00003311 
- 00013072  0x00000935 bbit0  0x00000000 , 0x00003307 
- 00013073  0x00000937 add  0x00000011 , 0x00000010 , 0x00000006 
- 00013074  0x00000938 ifetch  0x00000006 , 0x00000006 
- 00013075  0x00000939 isub  0x00000002 , 0x0000003e 
- 00013076  0x0000093a rtn  0x00000005 
- 00013077  0x0000093b branch  0x00003307 
- 00013078  0x0000093e bbit0  0x00000000 , 0x00003307 
- 00013079  0x0000093f add  0x00000011 , 0x00000016 , 0x00000006 
- 00013080  0x00000940 ifetch  0x00000001 , 0x00000006 
- 00013081  0x00000941 isub  0x00000002 , 0x0000003e 
- 00013082  0x00000942 rtn  0x00000005 
- 00013083  0x00000943 branch  0x00003307 
- 00013084  0x00000946 bbit0  0x00000001 , 0x00003307 
- 00013085  0x00000948 call  0x0000333d 
- 00013086  0x00000949 bbit1  0x0000001b , 0x00003322 
- 00013087  0x0000094a isolate0  0x0000001b , 0x00000002 
- 00013088  0x0000094b branch  0x00003322 , 0x00000001 
- 00013089  0x0000094c set1  0x0000001c , 0x0000003f 
- 00013090  0x0000094e isub  0x00000002 , 0x0000003f 
- 00013091  0x0000094f increase  0x00000001 , 0x0000003f 
- 00013092  0x00000950 branch  0x0000332b , 0x00000002 
- 00013093  0x00000951 increase  0x00000005 , 0x0000003f 
- 00013094  0x00000952 nbranch  0x00003307 , 0x00000002 
- 00013095  0x00000954 copy  0x00000002 , 0x00000021 
- 00013096  0x00000955 call  0x00003349 
- 00013097  0x00000956 force  0x00000000 , 0x0000003e 
- 00013098  0x00000957 rtn 
- 00013099  0x0000095a iforce  0x00000012 
- 00013100  0x0000095b add  0x00000011 , 0x00000002 , 0x00000006 
- 00013101  0x0000095c ifetch  0x00000002 , 0x00000006 
- 00013102  0x0000095d branch  0x00003327 , 0x00000034 
- 00013103  0x0000095e call  0x00003349 
- 00013104  0x0000095f branch  0x0000331d 
- 00013105  0x00000962 bbit0  0x00000000 , 0x00003307 
- 00013106  0x00000963 force  0x00000000 , 0x0000003e 
- 00013107  0x00000964 rtn 
- 00013108  0x00000967 bbit0  0x00000000 , 0x00003307 
- 00013109  0x00000968 add  0x00000011 , 0x00000001 , 0x00000006 
- 00013110  0x00000969 ifetch  0x00000001 , 0x00000006 
- 00013111  0x0000096a bbit1  0x00000000 , 0x00003307 
- 00013112  0x0000096b add  0x00000011 , 0x00000017 , 0x00000006 
- 00013113  0x0000096c ifetch  0x00000001 , 0x00000006 
- 00013114  0x0000096d bbit0  0x00000003 , 0x00003307 
- 00013115  0x0000096e force  0x00000000 , 0x0000003e 
- 00013116  0x0000096f rtn 
- 00013117  0x00000972 add  0x00000011 , 0x00000001 , 0x00000006 
- 00013118  0x00000973 ifetcht  0x00000001 , 0x00000006 
- 00013119  0x00000974 deposit  0x00000022 
- 00013120  0x00000975 isolate1  0x00000001 , 0x00000002 
- 00013121  0x00000976 add  0x00000011 , 0x00000004 , 0x00000006 
- 00013122  0x00000977 ifetcht  0x00000004 , 0x00000006 
- 00013123  0x00000978 rtn  0x00000001 
- 00013124  0x00000979 add  0x00000011 , 0x00000008 , 0x00000006 
- 00013125  0x0000097a ifetch  0x00000006 , 0x00000006 
- 00013126  0x0000097b call  0x000039c0 
- 00013127  0x0000097c deposit  0x00000028 
- 00013128  0x0000097d rtn 
- 00013129  0x00000980 add  0x00000011 , 0x00000002 , 0x00000006 
- 00013130  0x00000981 add  0x00000011 , 0x00000004 , 0x00000005 
- 00013131  0x00000982 ifetch  0x00000002 , 0x00000006 
- 00013132  0x00000983 iadd  0x00000002 , 0x0000000b 
- 00013133  0x00000984 deposit  0x0000000b 
- 00013134  0x00000985 istore  0x00000004 , 0x00000005 
- 00013135  0x00000986 branch  0x00005434 
- 00013136  0x0000098a bbit0  0x00000001 , 0x00003307 
- 00013137  0x0000098b call  0x0000333d 
- 00013138  0x0000098c iadd  0x0000001b , 0x0000003f 
- 00013139  0x0000098d iadd  0x0000001b , 0x0000003f 
- 00013140  0x0000098e iadd  0x00000007 , 0x0000003f 
- 00013141  0x0000098f isub  0x00000002 , 0x0000003e 
- 00013142  0x00000990 nbranch  0x00003307 , 0x00000002 
- 00013143  0x00000991 force  0x00000000 , 0x0000003e 
- 00013144  0x00000992 rtn 
- 00013145  0x00000995 bbit0  0x00000000 , 0x00003307 
- 00013146  0x00000996 deposit  0x00000002 
- 00013147  0x00000997 isub  0x00000011 , 0x0000003e 
- 00013148  0x00000998 branch  0x00003307 , 0x0000003e 
- 00013149  0x00000999 add  0x00000011 , 0x00000001 , 0x00000006 
- 00013150  0x0000099a ifetch  0x00000001 , 0x00000006 
- 00013151  0x0000099b bbit1  0x00000000 , 0x00003307 
- 00013152  0x0000099c add  0x00000011 , 0x00000018 , 0x00000005 
- 00013153  0x0000099d ifetch  0x00000001 , 0x00000005 
- 00013154  0x0000099e nbranch  0x00003307 , 0x00000034 
- 00013155  0x0000099f force  0x0000002d , 0x0000003f 
- 00013156  0x000009a0 istore  0x00000001 , 0x00000005 
- 00013157  0x000009a1 branch  0x00003307 
- 00013158  0x000009a4 bbit0  0x00000000 , 0x00003307 
- 00013159  0x000009a5 deposit  0x00000002 
- 00013160  0x000009a6 isub  0x00000011 , 0x0000003e 
- 00013161  0x000009a7 branch  0x00003307 , 0x0000003e 
- 00013162  0x000009a8 add  0x00000011 , 0x00000001 , 0x00000006 
- 00013163  0x000009a9 ifetch  0x00000001 , 0x00000006 
- 00013164  0x000009aa bbit1  0x00000000 , 0x00003307 
- 00013165  0x000009ab ifetch  0x00000001 , 0x00000011 
- 00013166  0x000009ac set0  0x00000007 , 0x0000003f 
- 00013167  0x000009ad istore  0x00000001 , 0x00000011 
- 00013168  0x000009ae branch  0x00003307 
- 00013169  0x000009b2 set0  0x00000025 , 0x00000000 
- 00013170  0x000009b3 bpatch  0x00000034 , 0x00004006 
- 00013171  0x000009b4 call  0x00003bac 
- 00013172  0x000009b6 add  0x00000022 , 0x00000001 , 0x00000021 
- 00013173  0x000009b7 call  0x00003a54 
- 00013174  0x000009b8 force  0x00000003 , 0x00000024 
- 00013175  0x000009b9 call  0x00003a42 
- 00013176  0x000009ba call  0x00003bae 
- 00013177  0x000009bb call  0x00003bb4 
- 00013178  0x000009bc call  0x00003bc5 
- 00013179  0x000009bd branch  0x000038bf 
- 00013180  0x000009c0 set0  0x00000025 , 0x00000000 
- 00013181  0x000009c1 bpatch  0x00000035 , 0x00004006 
- 00013182  0x000009c2 call  0x00003baa 
- 00013183  0x000009c4 add  0x00000022 , 0x00000001 , 0x00000021 
- 00013184  0x000009c5 call  0x00003a54 
- 00013185  0x000009c6 force  0x00000003 , 0x00000024 
- 00013186  0x000009c7 call  0x00003a3b 
- 00013187  0x000009c8 call  0x000034e1 
- 00013188  0x000009c9 call  0x00003b41 
- 00013189  0x000009ca call  0x00003bba 
- 00013190  0x000009cb call  0x00003b3a 
- 00013191  0x000009cd call  0x00003b63 
- 00013192  0x000009ce nrtn  0x00000018 
- 00013193  0x000009cf call  0x00003af3 
- 00013194  0x000009d0 branch  0x000035df 
- 00013195  0x000009d5 set0  0x00000025 , 0x00000000 
- 00013196  0x000009d6 bpatch  0x00000036 , 0x00004006 
- 00013197  0x000009d7 fetch  0x00000001 , 0x0000018b 
- 00013198  0x000009d8 iforce  0x00000004 
- 00013199  0x000009d9 force  0x00000001 , 0x00000001 
- 00013200  0x000009da call  0x00003371 
- 00013201  0x000009db branch  0x0000337c 
- 00013202  0x000009e7 fetch  0x00000001 , 0x00004133 
- 00013203  0x000009e8 rtnbit0  0x00000000 
- 00013204  0x000009e9 force  0x00000005 , 0x00000007 
- 00013205  0x000009ea call  0x00007e53 
- 00013206  0x000009eb nrtn  0x00000034 
- 00013207  0x000009ec fetcht  0x00000002 , 0x0000414d 
- 00013208  0x000009ed force  0x00000004 , 0x00000007 
- 00013209  0x000009ee call  0x0000383d 
- 00013210  0x000009ef rtn  0x00000028 
- 00013211  0x000009f0 call  0x000033a2 
- 00013212  0x000009f1 force  0x00000005 , 0x00000007 
- 00013213  0x000009f2 fetch  0x00000002 , 0x0000414f 
- 00013214  0x000009f3 nbranch  0x00007e4c , 0x00000018 
- 00013215  0x000009f4 random  0x0000003f 
- 00013216  0x000009f5 iand  0x00000035 , 0x0000003f 
- 00013217  0x000009f6 branch  0x00007e4c 
- 00013218  0x000009fa set0  0x00000025 , 0x00000000 
- 00013219  0x000009fb bpatch  0x00000037 , 0x00004006 
- 00013220  0x000009fc jam  0x00000000 , 0x0000018b 
- 00013221  0x000009fd disable  0x00000030 
- 00013222  0x000009fe disable  0x0000002e 
- 00013223  0x000009ff call  0x00003a12 
- 00013224  0x00000a00 and  0x00000022 , 0x000001fc , 0x00000021 
- 00013225  0x00000a01 force  0x00000001 , 0x00000024 
- 00013226  0x00000a02 call  0x00003a49 
- 00013227  0x00000a03 call  0x00003a3b 
- 00013228  0x00000a04 setflip  0x0000001d , 0x00000000 
- 00013229  0x00000a05 fetch  0x00000001 , 0x00000006 
- 00013230  0x00000a06 increase  0x00000001 , 0x0000003f 
- 00013231  0x00000a07 store  0x00000001 , 0x00000006 
- 00013232  0x00000a08 call  0x00003a66 
- 00013233  0x00000a09 call  0x00003b3a 
- 00013234  0x00000a0a call  0x00003b6b 
- 00013235  0x00000a0b nrtn  0x00000018 
- 00013236  0x00000a0c set0  0x00000025 , 0x00000000 
- 00013237  0x00000a0d bpatch  0x00000038 , 0x00004007 
- 00013238  0x00000a0e force  0x00000000 , 0x0000001b 
- 00013239  0x00000a0f call  0x00003a6d 
- 00013240  0x00000a10 fetch  0x00000001 , 0x00000007 
- 00013241  0x00000a11 increase  0x00000001 , 0x0000003f 
- 00013242  0x00000a12 store  0x00000001 , 0x00000007 
- 00013243  0x00000a13 call  0x00003a49 
- 00013244  0x00000a14 call  0x00003baa 
- 00013245  0x00000a15 or_into  0x00000002 , 0x00000021 
- 00013246  0x00000a16 force  0x00000001 , 0x00000024 
- 00013247  0x00000a17 call  0x00003a42 
- 00013248  0x00000a18 call  0x00003a66 
- 00013249  0x00000a19 call  0x00003bae 
- 00013250  0x00000a1a call  0x00003bbf 
- 00013251  0x00000a1b deposit  0x00000022 
- 00013252  0x00000a1c store  0x00000004 , 0x0000016b 
- 00013253  0x00000a1d call  0x00003bc5 
- 00013254  0x00000a1e force  0x00000002 , 0x00000001 
- 00013255  0x00000a1f force  0x00000000 , 0x00000004 
- 00013256  0x00000a20 call  0x00003bcd 
- 00013257  0x00000a21 call  0x000038c1 
- 00013258  0x00000a22 call  0x000033ce 
- 00013259  0x00000a23 and_into  0x000001fd , 0x00000021 
- 00013260  0x00000a24 increase  0x00000001 , 0x00000026 
- 00013261  0x00000a25 rtn 
- 00013262  0x00000a28 set0  0x00000025 , 0x00000000 
- 00013263  0x00000a29 bpatch  0x00000039 , 0x00004007 
- 00013264  0x00000a2a fetch  0x00000001 , 0x00004172 
- 00013265  0x00000a2b rtn  0x00000034 
- 00013266  0x00000a2c arg  0x000001bc , 0x00000005 
- 00013267  0x00000a2d fetch  0x00000001 , 0x00004702 
- 00013268  0x00000a2e copy  0x0000003f , 0x00000039 
- 00013269  0x00000a2f increase  0x00000001 , 0x0000003f 
- 00013270  0x00000a30 istore  0x00000001 , 0x00000005 
- 00013271  0x00000a31 copy  0x00000005 , 0x00000002 
- 00013272  0x00000a32 increase  0x00000001 , 0x0000003f 
- 00013273  0x00000a33 store  0x00000002 , 0x00000091 
- 00013274  0x00000a34 copy  0x00000002 , 0x00000005 
- 00013275  0x00000a35 setarg  0x00000009 
- 00013276  0x00000a36 istore  0x00000001 , 0x00000005 
- 00013277  0x00000a37 arg  0x00004703 , 0x00000006 
- 00013278  0x00000a38 call  0x00007e45 
- 00013279  0x00000a39 arg  0x00004771 , 0x00000013 
- 00013280  0x00000a3a arg  0x00000004 , 0x00000039 
- 00013281  0x00000a3b call  0x000033f1 
- 00013282  0x00000a3c arg  0x0000475b , 0x00000013 
- 00013283  0x00000a3d arg  0x00000001 , 0x00000039 
- 00013284  0x00000a3e call  0x000033f1 
- 00013285  0x00000a3f force  0x0000000a , 0x00000001 
- 00013286  0x00000a40 jam  0x00000002 , 0x00000090 
- 00013287  0x00000a41 setarg  0x000001bc 
- 00013288  0x00000a42 store  0x00000002 , 0x00000179 
- 00013289  0x00000a43 call  0x00003baa 
- 00013290  0x00000a44 call  0x00003a42 
- 00013291  0x00000a45 call  0x00003bae 
- 00013292  0x00000a46 call  0x00003bbf 
- 00013293  0x00000a47 call  0x00003bc5 
- 00013294  0x00000a48 call  0x00003bcd 
- 00013295  0x00000a49 call  0x000038c1 
- 00013296  0x00000a4a rtn 
- 00013297  0x00000a4e copy  0x00000005 , 0x00000002 
- 00013298  0x00000a4f copy  0x00000013 , 0x00000006 
- 00013299  0x00000a50 ifetch  0x00000001 , 0x00000006 
- 00013300  0x00000a51 rtn  0x00000034 
- 00013301  0x00000a53 lshift  0x0000003f , 0x0000003f 
- 00013302  0x00000a54 loop  0x000033f5 
- 00013303  0x00000a55 copy  0x0000003f , 0x00000011 
- 00013304  0x00000a56 increase  0x00000002 , 0x0000003f 
- 00013305  0x00000a57 copy  0x0000003f , 0x00000007 
- 00013306  0x00000a58 fetch  0x00000002 , 0x00000091 
- 00013307  0x00000a59 iadd  0x00000007 , 0x0000003f 
- 00013308  0x00000a5a store  0x00000002 , 0x00000091 
- 00013309  0x00000a5b copy  0x00000002 , 0x00000005 
- 00013310  0x00000a5c copy  0x00000011 , 0x0000003f 
- 00013311  0x00000a5d increase  0x00000001 , 0x0000003f 
- 00013312  0x00000a5e istore  0x00000001 , 0x00000005 
- 00013313  0x00000a5f copy  0x00000013 , 0x00000006 
- 00013314  0x00000a60 ifetch  0x00000001 , 0x00000006 
- 00013315  0x00000a61 ifetch  0x00000001 , 0x00000006 
- 00013316  0x00000a62 istore  0x00000001 , 0x00000005 
- 00013317  0x00000a63 copy  0x00000011 , 0x00000039 
- 00013318  0x00000a64 branch  0x00007e45 
- 00013319  0x00000a6b fetch  0x00000001 , 0x00004133 
- 00013320  0x00000a6c rtnbit0  0x00000001 
- 00013321  0x00000a6d force  0x00000006 , 0x00000007 
- 00013322  0x00000a6e call  0x00007e53 
- 00013323  0x00000a6f nrtn  0x00000034 
- 00013324  0x00000a70 fetcht  0x00000002 , 0x00004151 
- 00013325  0x00000a71 force  0x00000028 , 0x00000007 
- 00013326  0x00000a72 call  0x0000383d 
- 00013327  0x00000a73 rtn  0x00000028 
- 00013328  0x00000a74 force  0x00000000 , 0x00000004 
- 00013329  0x00000a75 jam  0x00000008 , 0x00000010 
- 00013330  0x00000a76 set0  0x0000000b , 0x00000000 
- 00013331  0x00000a77 call  0x00003417 
- 00013332  0x00000a78 force  0x00000006 , 0x00000007 
- 00013333  0x00000a79 fetch  0x00000002 , 0x00004153 
- 00013334  0x00000a7a branch  0x00007e4c 
- 00013335  0x00000a7e set0  0x00000025 , 0x00000000 
- 00013336  0x00000a7f bpatch  0x0000003a , 0x00004007 
- 00013337  0x00000a80 disable  0x00000030 
- 00013338  0x00000a81 call  0x00003a12 
- 00013339  0x00000a82 fetch  0x00000001 , 0x00000008 
- 00013340  0x00000a83 increase  0x00000001 , 0x0000003f 
- 00013341  0x00000a84 store  0x00000001 , 0x00000008 
- 00013342  0x00000a85 force  0x00000000 , 0x00000026 
- 00013343  0x00000a86 call  0x00003a54 
- 00013344  0x00000a87 add  0x00000022 , 0x00000001 , 0x00000021 
- 00013345  0x00000a88 force  0x00000002 , 0x00000024 
- 00013346  0x00000a89 set0  0x00000025 , 0x00000000 
- 00013347  0x00000a8a bpatch  0x0000003b , 0x00004007 
- 00013348  0x00000a8b call  0x00003a3b 
- 00013349  0x00000a8c call  0x00003b3a 
- 00013350  0x00000a8d call  0x00003b6b 
- 00013351  0x00000a8e nrtn  0x00000018 
- 00013352  0x00000a8f call  0x00003a6d 
- 00013353  0x00000a90 fetch  0x00000001 , 0x00000009 
- 00013354  0x00000a91 increase  0x00000001 , 0x0000003f 
- 00013355  0x00000a92 store  0x00000001 , 0x00000009 
- 00013356  0x00000a93 force  0x00000000 , 0x0000001b 
- 00013357  0x00000a94 call  0x00003baa 
- 00013358  0x00000a95 or_into  0x00000002 , 0x00000021 
- 00013359  0x00000a96 force  0x00000001 , 0x00000024 
- 00013360  0x00000a97 call  0x00003a42 
- 00013361  0x00000a98 call  0x00003bae 
- 00013362  0x00000a99 call  0x00003bbf 
- 00013363  0x00000a9a call  0x00003bc5 
- 00013364  0x00000a9b call  0x0000375c 
- 00013365  0x00000a9c force  0x00000000 , 0x00000004 
- 00013366  0x00000a9d arg  0x00000600 , 0x0000000b 
- 00013367  0x00000a9e until  0x00000029 , 0x00000026 
- 00013368  0x00000a9f or_into  0x00000003 , 0x00000028 
- 00013369  0x00000aa0 and_into  0x000001fd , 0x00000021 
- 00013370  0x00000aa2 set0  0x00000025 , 0x00000000 
- 00013371  0x00000aa3 bpatch  0x0000003c , 0x00004007 
- 00013372  0x00000aa4 increase  0x00000001 , 0x00000026 
- 00013373  0x00000aa5 call  0x00003a3b 
- 00013374  0x00000aa6 call  0x00003b3a 
- 00013375  0x00000aa7 call  0x00003b5d 
- 00013376  0x00000aa8 nbranch  0x00003444 , 0x00000018 
- 00013377  0x00000aa9 call  0x00003bcd 
- 00013378  0x00000aaa call  0x000035e1 
- 00013379  0x00000aab bmark1  0x0000000b , 0x0000344c 
- 00013380  0x00000aad set0  0x00000025 , 0x00000000 
- 00013381  0x00000aae bpatch  0x0000003d , 0x00004007 
- 00013382  0x00000aaf fetch  0x00000001 , 0x00000010 
- 00013383  0x00000ab0 rtn  0x00000034 
- 00013384  0x00000ab1 increase  0xffffffff , 0x0000003f 
- 00013385  0x00000ab2 store  0x00000001 , 0x00000010 
- 00013386  0x00000ab3 call  0x00003bac 
- 00013387  0x00000ab4 branch  0x0000343a 
- 00013388  0x00000ab8 set0  0x00000025 , 0x00000000 
- 00013389  0x00000ab9 bpatch  0x0000003e , 0x00004007 
- 00013390  0x00000aba set0  0x00000001 , 0x00000028 
- 00013391  0x00000abb set1  0x00000000 , 0x00000028 
- 00013392  0x00000abc fetch  0x00000001 , 0x0000000a 
- 00013393  0x00000abd increase  0x00000001 , 0x0000003f 
- 00013394  0x00000abe store  0x00000001 , 0x0000000a 
- 00013395  0x00000abf call  0x00003baa 
- 00013396  0x00000ac0 or_into  0x00000002 , 0x00000021 
- 00013397  0x00000ac1 call  0x00003a42 
- 00013398  0x00000ac2 call  0x00003bae 
- 00013399  0x00000ac3 call  0x00003bbf 
- 00013400  0x00000ac4 call  0x00003bc5 
- 00013401  0x00000ac5 call  0x0000375c 
- 00013402  0x00000ac7 compare  0x00000003 , 0x00000028 , 0x00000003 
- 00013403  0x00000ac8 branch  0x0000345e , 0x00000001 
- 00013404  0x00000ac9 until  0x0000003e , 0x00000017 
- 00013405  0x00000aca branch  0x0000345a 
- 00013406  0x00000acc fetch  0x00000004 , 0x0000016f 
- 00013407  0x00000acd or_into  0x00000003 , 0x0000003f 
- 00013408  0x00000ace icopy  0x00000028 
- 00013409  0x00000ad1 set0  0x00000025 , 0x00000000 
- 00013410  0x00000ad2 bpatch  0x0000003f , 0x00004007 
- 00013411  0x00000ad3 fetch  0x00000006 , 0x00000182 
- 00013412  0x00000ad4 store  0x00000006 , 0x00000040 
- 00013413  0x00000ad5 call  0x000034ed 
- 00013414  0x00000ad7 call  0x00003539 
- 00013415  0x00000ad8 branch  0x0000346b , 0x0000002d 
- 00013416  0x00000ad9 call  0x0000350e 
- 00013417  0x00000ada nbranch  0x00003466 , 0x00000034 
- 00013418  0x00000adb rtn 
- 00013419  0x00000adf set0  0x00000025 , 0x00000000 
- 00013420  0x00000ae0 bpatch  0x00000040 , 0x00004008 
- 00013421  0x00000ae1 call  0x000034f9 
- 00013422  0x00000ae2 call  0x000032d6 
- 00013423  0x00000ae3 nrtn  0x00000005 
- 00013424  0x00000ae4 jam  0x00000000 , 0x00000031 
- 00013425  0x00000ae5 call  0x000039ac 
- 00013426  0x00000ae6 branch  0x000032bd 
- 00013427  0x00000aea set0  0x00000025 , 0x00000000 
- 00013428  0x00000aeb bpatch  0x00000041 , 0x00004008 
- 00013429  0x00000aec call  0x000039bc 
- 00013430  0x00000aed call  0x000034a5 
- 00013431  0x00000aee rtn  0x00000028 
- 00013432  0x00000aef call  0x0000327c 
- 00013433  0x00000af0 call  0x00006a54 
- 00013434  0x00000af2 set0  0x00000025 , 0x00000000 
- 00013435  0x00000af3 bpatch  0x00000042 , 0x00004008 
- 00013436  0x00000af4 call  0x00003e25 
- 00013437  0x00000af5 call  0x00006dec 
- 00013438  0x00000af6 call  0x000035d6 
- 00013439  0x00000af7 call  0x00007f39 
- 00013440  0x00000af8 nbranch  0x0000348d , 0x0000002d 
- 00013441  0x00000af9 call  0x00003bec 
- 00013442  0x00000afa call  0x00003870 
- 00013443  0x00000afb call  0x00006e10 
- 00013444  0x00000afc call  0x00003547 
- 00013445  0x00000afd call  0x000038b1 
- 00013446  0x00000afe call  0x00005b78 
- 00013447  0x00000aff call  0x00004995 
- 00013448  0x00000b00 call  0x000048a9 
- 00013449  0x00000b01 fetch  0x00000001 , 0x0000000b 
- 00013450  0x00000b02 increase  0x00000001 , 0x0000003f 
- 00013451  0x00000b03 store  0x00000001 , 0x0000000b 
- 00013452  0x00000b04 call  0x000039ac 
- 00013453  0x00000b06 set0  0x00000025 , 0x00000000 
- 00013454  0x00000b07 bpatch  0x00000043 , 0x00004008 
- 00013455  0x00000b08 call  0x00003d61 
- 00013456  0x00000b09 call  0x00003be2 
- 00013457  0x00000b0a branch  0x00003498 , 0x00000002 
- 00013458  0x00000b0b call  0x00003204 
- 00013459  0x00000b0c nbranch  0x00003498 , 0x00000028 
- 00013460  0x00000b0d call  0x00003812 
- 00013461  0x00000b0e nbranch  0x0000347a , 0x00000034 
- 00013462  0x00000b0f call  0x00006a5c 
- 00013463  0x00000b10 branch  0x00003290 
- 00013464  0x00000b14 set0  0x00000025 , 0x00000000 
- 00013465  0x00000b15 bpatch  0x00000044 , 0x00004008 
- 00013466  0x00000b16 jam  0x00000000 , 0x00000153 
- 00013467  0x00000b17 jam  0x00000000 , 0x00000189 
- 00013468  0x00000b18 call  0x00003516 
- 00013469  0x00000b19 set0  0x00000011 , 0x00000000 
- 00013470  0x00000b1a call  0x00007f8a 
- 00013471  0x00000b1b fetch  0x00000001 , 0x00000030 
- 00013472  0x00000b1c bbit0  0x00000004 , 0x000034a3 
- 00013473  0x00000b1d fetcht  0x00000001 , 0x00000046 
- 00013474  0x00000b1e branch  0x000048c4 
- 00013475  0x00000b21 force  0x00000006 , 0x00000002 
- 00013476  0x00000b22 branch  0x00004826 
- 00013477  0x00000b25 set0  0x00000025 , 0x00000000 
- 00013478  0x00000b26 bpatch  0x00000045 , 0x00004008 
- 00013479  0x00000b27 call  0x0000322e 
- 00013480  0x00000b28 nrtn  0x00000028 
- 00013481  0x00000b29 copy  0x00000004 , 0x00000002 
- 00013482  0x00000b2a call  0x00003bd1 
- 00013483  0x00000b2b store  0x00000001 , 0x0000018b 
- 00013484  0x00000b2c copy  0x00000002 , 0x00000004 
- 00013485  0x00000b2d jam  0x00000020 , 0x00000011 
- 00013486  0x00000b2f set0  0x00000025 , 0x00000000 
- 00013487  0x00000b30 bpatch  0x00000046 , 0x00004008 
- 00013488  0x00000b31 call  0x00003bac 
- 00013489  0x00000b32 force  0x00000002 , 0x00000001 
- 00013490  0x00000b33 call  0x000038a8 
- 00013491  0x00000b34 deposit  0x00000022 
- 00013492  0x00000b35 store  0x00000004 , 0x0000016b 
- 00013493  0x00000b36 call  0x000038bf 
- 00013494  0x00000b37 call  0x00003baa 
- 00013495  0x00000b38 enable  0x0000002f 
- 00013496  0x00000b39 call  0x000035b7 
- 00013497  0x00000b3a branch  0x000034c1 , 0x00000018 
- 00013498  0x00000b3b call  0x00003a6d 
- 00013499  0x00000b3c call  0x0000350e 
- 00013500  0x00000b3d nbranch  0x000034ae , 0x00000034 
- 00013501  0x00000b3e rtnmark0  0x00000004 
- 00013502  0x00000b3f jam  0x00000034 , 0x0000007c 
- 00013503  0x00000b40 set1  0x00000003 , 0x00000000 
- 00013504  0x00000b41 rtn 
- 00013505  0x00000b43 enable  0x00000030 
- 00013506  0x00000b44 call  0x000034ed 
- 00013507  0x00000b45 call  0x00003a12 
- 00013508  0x00000b47 set0  0x00000025 , 0x00000000 
- 00013509  0x00000b48 bpatch  0x00000047 , 0x00004008 
- 00013510  0x00000b49 call  0x0000338b 
- 00013511  0x00000b4a branch  0x000034ce , 0x00000018 
- 00013512  0x00000b4b call  0x0000350e 
- 00013513  0x00000b4c nbranch  0x000034c4 , 0x00000034 
- 00013514  0x00000b4d disable  0x00000030 
- 00013515  0x00000b4e deposit  0x00000028 
- 00013516  0x00000b4f store  0x00000004 , 0x0000416a 
- 00013517  0x00000b50 rtn 
- 00013518  0x00000b52 force  0x00000000 , 0x00000002 
- 00013519  0x00000b53 call  0x0000487f 
- 00013520  0x00000b54 enable  0x00000029 
- 00013521  0x00000b55 bmark0  0x00000004 , 0x000034d6 
- 00013522  0x00000b56 set0  0x00000004 , 0x00000000 
- 00013523  0x00000b57 jam  0x00000003 , 0x0000007c 
- 00013524  0x00000b58 jam  0x00000033 , 0x0000007d 
- 00013525  0x00000b59 call  0x00006212 
- 00013526  0x00000b5b deposit  0x00000004 
- 00013527  0x00000b5c store  0x00000001 , 0x00000077 
- 00013528  0x00000b5d force  0x00000000 , 0x0000003f 
- 00013529  0x00000b5e store  0x00000006 , 0x00000038 
- 00013530  0x00000b5f fetch  0x00000001 , 0x00000031 
- 00013531  0x00000b60 set1  0x00000001 , 0x0000003f 
- 00013532  0x00000b61 store  0x00000001 , 0x00000031 
- 00013533  0x00000b62 call  0x00003bec 
- 00013534  0x00000b63 disable  0x00000029 
- 00013535  0x00000b65 enable  0x00000028 
- 00013536  0x00000b66 rtn 
- 00013537  0x00000b6b set0  0x00000025 , 0x00000000 
- 00013538  0x00000b6c bpatch  0x00000048 , 0x00004009 
- 00013539  0x00000b6d disable  0x0000002d 
- 00013540  0x00000b6e set0  0x00000005 , 0x00000000 
- 00013541  0x00000b6f set0  0x0000000a , 0x00000000 
- 00013542  0x00000b70 set0  0x00000010 , 0x00000000 
- 00013543  0x00000b71 set0  0x0000000f , 0x00000000 
- 00013544  0x00000b72 fetch  0x00000001 , 0x00000047 
- 00013545  0x00000b73 set0  0x00000005 , 0x0000003f 
- 00013546  0x00000b74 set1  0x00000004 , 0x0000003f 
- 00013547  0x00000b75 store  0x00000001 , 0x00000047 
- 00013548  0x00000b76 rtn 
- 00013549  0x00000b79 set0  0x00000025 , 0x00000000 
- 00013550  0x00000b7a bpatch  0x00000049 , 0x00004009 
- 00013551  0x00000b7b jam  0x00000020 , 0x00000011 
- 00013552  0x00000b7c jam  0x00000050 , 0x00000047 
- 00013553  0x00000b7d fetch  0x00000002 , 0x0000415f 
- 00013554  0x00000b7e store  0x00000002 , 0x0000003e 
- 00013555  0x00000b7f deposit  0x00000022 
- 00013556  0x00000b80 store  0x00000004 , 0x0000416a 
- 00013557  0x00000b81 rtn  0x00000030 
- 00013558  0x00000b82 deposit  0x00000028 
- 00013559  0x00000b83 store  0x00000004 , 0x0000416a 
- 00013560  0x00000b84 rtn 
- 00013561  0x00000b87 set0  0x00000025 , 0x00000000 
- 00013562  0x00000b88 bpatch  0x0000004a , 0x00004009 
- 00013563  0x00000b89 call  0x00005b6f 
- 00013564  0x00000b8a call  0x00003512 
- 00013565  0x00000b8b store  0x00000001 , 0x00000046 
- 00013566  0x00000b8c setarg  0x00001c80 
- 00013567  0x00000b8d store  0x00000002 , 0x00000051 
- 00013568  0x00000b8e fetch  0x00000001 , 0x00000030 
- 00013569  0x00000b8f set1  0x00000000 , 0x0000003f 
- 00013570  0x00000b90 store  0x00000001 , 0x00000030 
- 00013571  0x00000b91 jam  0x00000000 , 0x0000004b 
- 00013572  0x00000b92 jam  0x00000000 , 0x0000004c 
- 00013573  0x00000b93 jam  0x00000000 , 0x000000a2 
- 00013574  0x00000b94 branch  0x00003bec 
- 00013575  0x00000b98 set0  0x00000025 , 0x00000000 
- 00013576  0x00000b99 bpatch  0x0000004b , 0x00004009 
- 00013577  0x00000b9a force  0x00000000 , 0x0000003f 
- 00013578  0x00000b9b store  0x00000008 , 0x00004262 
- 00013579  0x00000b9c istore  0x00000008 , 0x00000005 
- 00013580  0x00000b9d call  0x0000322a 
- 00013581  0x00000b9e branch  0x000032f0 
- 00013582  0x00000ba1 fetch  0x00000001 , 0x00000011 
- 00013583  0x00000ba2 increase  0xffffffff , 0x0000003f 
- 00013584  0x00000ba3 store  0x00000001 , 0x00000011 
- 00013585  0x00000ba4 rtn 
- 00013586  0x00000ba7 fetch  0x00000001 , 0x00004170 
- 00013587  0x00000ba8 increase  0x00000001 , 0x0000003f 
- 00013588  0x00000ba9 store  0x00000001 , 0x00004170 
- 00013589  0x00000baa rtn 
- 00013590  0x00000bae set0  0x00000025 , 0x00000000 
- 00013591  0x00000baf bpatch  0x0000004c , 0x00004009 
- 00013592  0x00000bb0 call  0x000031fa 
- 00013593  0x00000bb1 fetch  0x00000001 , 0x00004272 
- 00013594  0x00000bb2 beq  0x00000003 , 0x0000351d 
- 00013595  0x00000bb3 fetch  0x00000001 , 0x00000048 
- 00013596  0x00000bb4 bne  0x00000001 , 0x00003521 
- 00013597  0x00000bb6 call  0x000049be 
- 00013598  0x00000bb7 nbranch  0x00003521 , 0x00000005 
- 00013599  0x00000bb8 call  0x000031f5 
- 00013600  0x00000bb9 jam  0x00000000 , 0x00004272 
- 00013601  0x00000bbb set0  0x00000025 , 0x00000000 
- 00013602  0x00000bbc bpatch  0x0000004d , 0x00004009 
- 00013603  0x00000bbd call  0x00003f18 
- 00013604  0x00000bbe call  0x00004995 
- 00013605  0x00000bbf call  0x00003806 
- 00013606  0x00000bc0 jam  0x00000002 , 0x00000b7d 
- 00013607  0x00000bc1 call  0x00007c27 
- 00013608  0x00000bc2 call  0x00005b63 
- 00013609  0x00000bc3 call  0x00004d99 
- 00013610  0x00000bc4 call  0x00007719 
- 00013611  0x00000bc5 fetch  0x00000001 , 0x00000030 
- 00013612  0x00000bc6 set0  0x00000000 
- 00013613  0x00000bc7 store  0x00000001 , 0x00000030 
- 00013614  0x00000bc8 jam  0x00000000 , 0x000047f3 
- 00013615  0x00000bca fetch  0x00000001 , 0x0000004c 
- 00013616  0x00000bcb compare  0x00000000 , 0x0000003f , 0x000000c0 
- 00013617  0x00000bcc branch  0x00003533 , 0x00000001 
- 00013618  0x00000bcd set0  0x00000001 , 0x00000000 
- 00013619  0x00000bcf fetch  0x00000001 , 0x00000047 
- 00013620  0x00000bd0 bbit0  0x00000003 , 0x00003535 
- 00013621  0x00000bd2 fetch  0x00000001 , 0x0000004b 
- 00013622  0x00000bd3 rtnbit0  0x00000006 
- 00013623  0x00000bd4 set0  0x00000002 , 0x00000000 
- 00013624  0x00000bd5 rtn 
- 00013625  0x00000bd8 set0  0x00000025 , 0x00000000 
- 00013626  0x00000bd9 bpatch  0x0000004e , 0x00004009 
- 00013627  0x00000bda fetch  0x00000001 , 0x0000017e 
- 00013628  0x00000bdb rtn  0x00000034 
- 00013629  0x00000bdc icopy  0x00000004 
- 00013630  0x00000bdd call  0x000035d6 
- 00013631  0x00000bde nrtn  0x0000002d 
- 00013632  0x00000bdf force  0x00000000 , 0x00000001 
- 00013633  0x00000be0 call  0x000038b1 
- 00013634  0x00000be1 deposit  0x00000004 
- 00013635  0x00000be2 store  0x00000001 , 0x00000077 
- 00013636  0x00000be3 force  0x00000000 , 0x0000003f 
- 00013637  0x00000be4 store  0x00000001 , 0x0000017e 
- 00013638  0x00000be5 rtn 
- 00013639  0x00000bec set0  0x00000025 , 0x00000000 
- 00013640  0x00000bed bpatch  0x0000004f , 0x00004009 
- 00013641  0x00000bee fetch  0x00000001 , 0x00000030 
- 00013642  0x00000bef bbit0  0x00000002 , 0x00003555 
- 00013643  0x00000bf0 force  0x00000007 , 0x00000001 
- 00013644  0x00000bf1 bmark0  0x00000007 , 0x00003554 
- 00013645  0x00000bf2 call  0x00003847 
- 00013646  0x00000bf3 nbranch  0x00003555 , 0x00000001 
- 00013647  0x00000bf4 branch  0x00003555 , 0x0000002e 
- 00013648  0x00000bf5 call  0x00003583 
- 00013649  0x00000bf6 setarg  0x00000002 
- 00013650  0x00000bf7 store  0x00000002 , 0x00004168 
- 00013651  0x00000bf8 rtn 
- 00013652  0x00000bfa nrtn  0x0000002e 
- 00013653  0x00000bfc set0  0x00000025 , 0x00000000 
- 00013654  0x00000bfd bpatch  0x00000050 , 0x0000400a 
- 00013655  0x00000bfe call  0x000032df 
- 00013656  0x00000bff nbranch  0x00003568 , 0x00000005 
- 00013657  0x00000c00 fetch  0x00000001 , 0x00000047 
- 00013658  0x00000c01 bbit0  0x00000003 , 0x00003571 
- 00013659  0x00000c03 bmark1  0x00000005 , 0x00003575 
- 00013660  0x00000c04 fetch  0x00000001 , 0x00000189 
- 00013661  0x00000c05 bbit1  0x00000006 , 0x0000357c 
- 00013662  0x00000c06 fetch  0x00000002 , 0x00004168 
- 00013663  0x00000c07 increase  0xffffffff , 0x0000003f 
- 00013664  0x00000c08 store  0x00000002 , 0x00004168 
- 00013665  0x00000c09 branch  0x00003565 , 0x00000034 
- 00013666  0x00000c0a fetch  0x00000001 , 0x00004165 
- 00013667  0x00000c0b iforce  0x00000001 
- 00013668  0x00000c0c rtn 
- 00013669  0x00000c0f set0  0x00000025 , 0x00000000 
- 00013670  0x00000c10 bpatch  0x00000051 , 0x0000400a 
- 00013671  0x00000c11 call  0x00003799 
- 00013672  0x00000c13 call  0x00003847 
- 00013673  0x00000c14 branch  0x00003571 , 0x00000001 
- 00013674  0x00000c15 call  0x00005ed9 
- 00013675  0x00000c16 branch  0x00003580 , 0x00000028 
- 00013676  0x00000c17 fetch  0x00000001 , 0x0000004b 
- 00013677  0x00000c18 bbit1  0x00000006 , 0x00003582 
- 00013678  0x00000c19 bmark1  0x00000005 , 0x00003575 
- 00013679  0x00000c1a fetch  0x00000001 , 0x00000189 
- 00013680  0x00000c1b bbit1  0x00000006 , 0x0000357c 
- 00013681  0x00000c1d force  0x00000001 , 0x00000001 
- 00013682  0x00000c1e rtn  0x00000029 
- 00013683  0x00000c1f force  0x00000000 , 0x00000001 
- 00013684  0x00000c20 rtn 
- 00013685  0x00000c22 set0  0x00000025 , 0x00000000 
- 00013686  0x00000c23 bpatch  0x00000052 , 0x0000400a 
- 00013687  0x00000c24 fetch  0x00000001 , 0x00000019 
- 00013688  0x00000c25 iforce  0x00000001 
- 00013689  0x00000c26 rtnne  0x00000001 
- 00013690  0x00000c27 force  0x00000000 , 0x00000001 
- 00013691  0x00000c28 rtn 
- 00013692  0x00000c2a fetch  0x00000001 , 0x0000015a 
- 00013693  0x00000c2b and  0x0000003f , 0x0000000f , 0x00000001 
- 00013694  0x00000c2c set1  0x00000005 , 0x00000000 
- 00013695  0x00000c2d rtn 
- 00013696  0x00000c2f force  0x00000013 , 0x00000001 
- 00013697  0x00000c30 branch  0x00003583 
- 00013698  0x00000c32 call  0x0000358d 
- 00013699  0x00000c35 set0  0x00000025 , 0x00000000 
- 00013700  0x00000c36 bpatch  0x00000053 , 0x0000400a 
- 00013701  0x00000c37 fetcht  0x00000001 , 0x00000047 
- 00013702  0x00000c38 set1  0x00000003 , 0x00000002 
- 00013703  0x00000c39 storet  0x00000001 , 0x00000047 
- 00013704  0x00000c3a deposit  0x00000001 
- 00013705  0x00000c3b store  0x00000001 , 0x00004165 
- 00013706  0x00000c3c setarg  0x0000ffff 
- 00013707  0x00000c3d store  0x00000002 , 0x00004168 
- 00013708  0x00000c3e rtn 
- 00013709  0x00000c41 set0  0x00000025 , 0x00000000 
- 00013710  0x00000c42 bpatch  0x00000054 , 0x0000400a 
- 00013711  0x00000c43 fetch  0x00000001 , 0x0000004c 
- 00013712  0x00000c44 isolate1  0x00000005 , 0x0000003f 
- 00013713  0x00000c45 fetch  0x00000002 , 0x00000091 
- 00013714  0x00000c46 branch  0x000035a1 , 0x00000001 
- 00013715  0x00000c47 force  0x00000003 , 0x00000001 
- 00013716  0x00000c48 sub  0x0000003f , 0x00000011 , 0x0000003e 
- 00013717  0x00000c49 rtn  0x00000002 
- 00013718  0x00000c4a force  0x00000004 , 0x00000001 
- 00013719  0x00000c4b sub  0x0000003f , 0x0000001b , 0x0000003e 
- 00013720  0x00000c4c rtn  0x00000002 
- 00013721  0x00000c4d force  0x0000000a , 0x00000001 
- 00013722  0x00000c4e sub  0x0000003f , 0x00000079 , 0x0000003e 
- 00013723  0x00000c4f rtn  0x00000002 
- 00013724  0x00000c50 force  0x0000000e , 0x00000001 
- 00013725  0x00000c51 sub  0x0000003f , 0x000000e0 , 0x0000003e 
- 00013726  0x00000c52 rtn  0x00000002 
- 00013727  0x00000c53 force  0x0000000f , 0x00000001 
- 00013728  0x00000c54 rtn 
- 00013729  0x00000c56 force  0x00000003 , 0x00000001 
- 00013730  0x00000c57 sub  0x0000003f , 0x00000011 , 0x0000003e 
- 00013731  0x00000c58 rtn  0x00000002 
- 00013732  0x00000c59 force  0x00000004 , 0x00000001 
- 00013733  0x00000c5a sub  0x0000003f , 0x00000036 , 0x0000003e 
- 00013734  0x00000c5b rtn  0x00000002 
- 00013735  0x00000c5c force  0x0000000a , 0x00000001 
- 00013736  0x00000c5d arg  0x0000016f , 0x00000002 
- 00013737  0x00000c5e isub  0x00000002 , 0x0000003e 
- 00013738  0x00000c5f nrtn  0x00000002 
- 00013739  0x00000c60 force  0x0000000e , 0x00000001 
- 00013740  0x00000c61 arg  0x000002a7 , 0x00000002 
- 00013741  0x00000c62 isub  0x00000002 , 0x0000003e 
- 00013742  0x00000c63 nrtn  0x00000002 
- 00013743  0x00000c64 force  0x0000000f , 0x00000001 
- 00013744  0x00000c65 rtn 
- 00013745  0x00000c6f fetch  0x00000001 , 0x00000030 
- 00013746  0x00000c70 bbit0  0x00000001 , 0x000035b6 
- 00013747  0x00000c71 fetch  0x00000002 , 0x00000032 
- 00013748  0x00000c72 branch  0x000035b6 , 0x00000034 
- 00013749  0x00000c73 nbranch  0x000035b8 , 0x0000002e 
- 00013750  0x00000c75 call  0x00003bac 
- 00013751  0x00000c77 add  0x00000028 , 0x00000001 , 0x00000021 
- 00013752  0x00000c79 enable  0x00000010 
- 00013753  0x00000c7a fetch  0x00000002 , 0x0000003e 
- 00013754  0x00000c7b rshift  0x0000003f , 0x0000003f 
- 00013755  0x00000c7c arg  0x00000500 , 0x00000002 
- 00013756  0x00000c7d iadd  0x00000002 , 0x0000003f 
- 00013757  0x00000c7e call  0x00003b7d 
- 00013758  0x00000c7f call  0x00003a5d 
- 00013759  0x00000c80 force  0x00000003 , 0x00000024 
- 00013760  0x00000c81 call  0x00003a3b 
- 00013761  0x00000c82 call  0x000034e1 
- 00013762  0x00000c83 call  0x00003b41 
- 00013763  0x00000c84 set0  0x00000025 , 0x00000000 
- 00013764  0x00000c85 bpatch  0x00000055 , 0x0000400a 
- 00013765  0x00000c86 fetch  0x00000002 , 0x0000003e 
- 00013766  0x00000c87 rshift  0x0000003f , 0x0000003f 
- 00013767  0x00000c88 call  0x00003b7d 
- 00013768  0x00000c89 call  0x00003b3a 
- 00013769  0x00000c8a enable  0x0000000d 
- 00013770  0x00000c8b fetch  0x00000002 , 0x0000003e 
- 00013771  0x00000c8c arg  0x000003bb , 0x00000002 
- 00013772  0x00000c8d iadd  0x00000002 , 0x0000001b 
- 00013773  0x00000c8e correlate  0x0000003e , 0x00000003 
- 00013774  0x00000c8f copy  0x0000001a , 0x00000002 
- 00013775  0x00000c90 storet  0x00000006 , 0x0000009c 
- 00013776  0x00000c91 disable  0x0000000d 
- 00013777  0x00000c92 nrtn  0x00000018 
- 00013778  0x00000c93 arg  0x000003bb , 0x00000029 
- 00013779  0x00000c94 copy  0x00000021 , 0x00000028 
- 00013780  0x00000c95 branch  0x00003cb6 , 0x0000002b 
- 00013781  0x00000c96 rtn 
- 00013782  0x00000c9a set0  0x00000025 , 0x00000000 
- 00013783  0x00000c9b bpatch  0x00000056 , 0x0000400a 
- 00013784  0x00000c9c call  0x000035b1 
- 00013785  0x00000c9d nbranch  0x00003a6d , 0x00000018 
- 00013786  0x00000c9e call  0x00003af3 
- 00013787  0x00000c9f bmark0  0x00000011 , 0x000035df 
- 00013788  0x00000ca0 fetch  0x00000002 , 0x000000f8 
- 00013789  0x00000ca1 increase  0x00000001 , 0x0000003f 
- 00013790  0x00000ca2 store  0x00000002 , 0x000000f8 
- 00013791  0x00000ca4 rshift  0x00000021 , 0x00000002 
- 00013792  0x00000ca5 or  0x00000002 , 0x00000040 , 0x0000000e 
- 00013793  0x00000ca7 set0  0x00000025 , 0x00000000 
- 00013794  0x00000ca8 bpatch  0x00000057 , 0x0000400a 
- 00013795  0x00000ca9 enable  0x00000007 
- 00013796  0x00000caa enable  0x0000000a 
- 00013797  0x00000cab enable  0x0000000b 
- 00013798  0x00000cac parse  0x00000003 , 0x00000000 , 0x00000003 
- 00013799  0x00000cad rshift8  0x0000000c , 0x0000003f 
- 00013800  0x00000cae store  0x00000001 , 0x0000015f 
- 00013801  0x00000caf parse  0x00000003 , 0x00000000 , 0x00000004 
- 00013802  0x00000cb0 inject  0x00000000 , 0x00000007 
- 00013803  0x00000cb1 copy  0x0000000c , 0x0000003f 
- 00013804  0x00000cb2 store  0x00000001 , 0x00000019 
- 00013805  0x00000cb3 parse  0x00000003 , 0x00000000 , 0x00000003 
- 00013806  0x00000cb4 rshift8  0x0000000c , 0x0000003f 
- 00013807  0x00000cb5 store  0x00000001 , 0x00000160 
- 00013808  0x00000cb6 fetch  0x00000001 , 0x00000019 
- 00013809  0x00000cb7 sub  0x0000003f , 0x00000003 , 0x0000003e 
- 00013810  0x00000cb8 branch  0x000035f7 , 0x00000002 
- 00013811  0x00000cb9 beq  0x00000007 , 0x000035f7 
- 00013812  0x00000cba fetch  0x00000001 , 0x0000004c 
- 00013813  0x00000cbb isolate1  0x00000005 , 0x0000003f 
- 00013814  0x00000cbc setflag  0x00000001 , 0x00000001 , 0x00000015 
- 00013815  0x00000cbe set0  0x00000025 , 0x00000000 
- 00013816  0x00000cbf bpatch  0x00000058 , 0x0000400b 
- 00013817  0x00000cc0 parse  0x00000003 , 0x00000000 , 0x00000008 
- 00013818  0x00000cc1 disable  0x0000000b 
- 00013819  0x00000cc2 disable  0x0000000a 
- 00013820  0x00000cc3 branch  0x0000373e , 0x00000006 
- 00013821  0x00000cc4 bmark0  0x00000011 , 0x00003601 
- 00013822  0x00000cc5 fetch  0x00000002 , 0x000000fa 
- 00013823  0x00000cc6 increase  0x00000001 , 0x0000003f 
- 00013824  0x00000cc7 store  0x00000002 , 0x000000fa 
- 00013825  0x00000cc9 set0  0x00000025 , 0x00000000 
- 00013826  0x00000cca bpatch  0x00000059 , 0x0000400b 
- 00013827  0x00000ccb fetch  0x00000001 , 0x0000015f 
- 00013828  0x00000ccc compare  0x00000000 , 0x0000003f , 0x00000007 
- 00013829  0x00000ccd setflag  0x00000001 , 0x0000000a , 0x00000000 
- 00013830  0x00000cce branch  0x00003613 , 0x00000001 
- 00013831  0x00000ccf icompare  0x00000007 , 0x00000004 
- 00013832  0x00000cd0 branch  0x00003612 , 0x00000001 
- 00013833  0x00000cd1 bmark0  0x00000007 , 0x0000375c 
- 00013834  0x00000cd2 fetcht  0x00000001 , 0x000000b2 
- 00013835  0x00000cd3 icompare  0x00000007 , 0x00000002 
- 00013836  0x00000cd4 nbranch  0x0000375c , 0x00000001 
- 00013837  0x00000cd5 call  0x00003290 
- 00013838  0x00000cd6 fetch  0x00000001 , 0x00000047 
- 00013839  0x00000cd7 set0  0x00000005 , 0x0000003f 
- 00013840  0x00000cd8 set1  0x00000004 , 0x0000003f 
- 00013841  0x00000cd9 store  0x00000001 , 0x00000047 
- 00013842  0x00000cdb enable  0x0000002d 
- 00013843  0x00000cdd set0  0x00000025 , 0x00000000 
- 00013844  0x00000cde bpatch  0x0000005a , 0x0000400b 
- 00013845  0x00000cdf fetch  0x00000001 , 0x00000019 
- 00013846  0x00000ce0 icopy  0x00000001 
- 00013847  0x00000ce1 bmark1  0x0000000a , 0x00003623 
- 00013848  0x00000ce2 fetcht  0x00000001 , 0x00000160 
- 00013849  0x00000ce3 fetch  0x00000001 , 0x00000047 
- 00013850  0x00000ce4 set0  0x00000000 , 0x0000003f 
- 00013851  0x00000ce5 isolate1  0x00000000 , 0x00000002 
- 00013852  0x00000ce6 setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00013853  0x00000ce7 isolate1  0x00000001 , 0x00000002 
- 00013854  0x00000ce8 setflag  0x00000001 , 0x00000001 , 0x0000003f 
- 00013855  0x00000ce9 store  0x00000001 , 0x00000047 
- 00013856  0x00000cea isolate0  0x00000001 , 0x00000002 
- 00013857  0x00000ceb branch  0x00003623 , 0x00000001 
- 00013858  0x00000cec call  0x00003799 
- 00013859  0x00000cee set0  0x00000025 , 0x00000000 
- 00013860  0x00000cef bpatch  0x0000005b , 0x0000400b 
- 00013861  0x00000cf0 arg  0x00000000 , 0x00000002 
- 00013862  0x00000cf1 call  0x00003b74 
- 00013863  0x00000cf2 and  0x00000001 , 0x0000000f , 0x0000003f 
- 00013864  0x00000cf3 beq  0x00000001 , 0x00003656 
- 00013865  0x00000cf4 beq  0x00000000 , 0x0000375c 
- 00013866  0x00000cf5 beq  0x00000002 , 0x00003769 
- 00013867  0x00000cf6 fetcht  0x00000001 , 0x00000160 
- 00013868  0x00000cf7 fetch  0x00000001 , 0x00000047 
- 00013869  0x00000cf8 icompare  0x00000004 , 0x00000002 
- 00013870  0x00000cf9 nbranch  0x00003632 , 0x00000001 
- 00013871  0x00000cfa bmark0  0x0000000a , 0x00003631 
- 00013872  0x00000cfb bbit0  0x00000007 , 0x00003632 
- 00013873  0x00000cfd set1  0x0000000f , 0x00000000 
- 00013874  0x00000cff set0  0x00000025 , 0x00000000 
- 00013875  0x00000d00 bpatch  0x0000005c , 0x0000400b 
- 00013876  0x00000d01 deposit  0x00000001 
- 00013877  0x00000d02 beq  0x00000003 , 0x00003658 
- 00013878  0x00000d03 beq  0x00000004 , 0x0000365c 
- 00013879  0x00000d04 beq  0x00000007 , 0x00003642 
- 00013880  0x00000d05 beq  0x00000008 , 0x0000365b 
- 00013881  0x00000d06 arg  0x00000004 , 0x00000002 
- 00013882  0x00000d07 call  0x00003b74 
- 00013883  0x00000d08 beq  0x0000000a , 0x00003657 
- 00013884  0x00000d09 beq  0x0000000b , 0x0000365a 
- 00013885  0x00000d0a arg  0x00000008 , 0x00000002 
- 00013886  0x00000d0b call  0x00003b74 
- 00013887  0x00000d0c beq  0x0000000e , 0x00003657 
- 00013888  0x00000d0d beq  0x0000000f , 0x0000365a 
- 00013889  0x00000d0e rtn 
- 00013890  0x00000d12 set0  0x00000025 , 0x00000000 
- 00013891  0x00000d13 bpatch  0x0000005d , 0x0000400b 
- 00013892  0x00000d14 enable  0x0000000d 
- 00013893  0x00000d15 enable  0x00000009 
- 00013894  0x00000d16 enable  0x0000000e 
- 00013895  0x00000d17 arg  0x000000d3 , 0x00000005 
- 00013896  0x00000d18 force  0x0000001e , 0x00000039 
- 00013897  0x00000d1a parse  0x00000003 , 0x00000000 , 0x00000008 
- 00013898  0x00000d1b rshift3  0x0000000c , 0x0000003f 
- 00013899  0x00000d1c istore  0x00000001 , 0x00000005 
- 00013900  0x00000d1d loop  0x00003649 
- 00013901  0x00000d1e bmark0  0x00000007 , 0x0000375c 
- 00013902  0x00000d1f parse  0x00000003 , 0x00000000 , 0x00000010 
- 00013903  0x00000d20 nsetflag  0x00000006 , 0x00000008 , 0x00000000 
- 00013904  0x00000d21 call  0x00003653 , 0x00000006 
- 00013905  0x00000d22 branch  0x0000374b , 0x00000006 
- 00013906  0x00000d23 branch  0x0000372c 
- 00013907  0x00000d26 deposit  0x0000001a 
- 00013908  0x00000d27 store  0x00000006 , 0x00000020 
- 00013909  0x00000d28 rtn 
- 00013910  0x00000d2b branch  0x0000375c 
- 00013911  0x00000d2f set1  0x00000010 , 0x00000000 
- 00013912  0x00000d31 enable  0x0000000c 
- 00013913  0x00000d32 branch  0x0000365d 
- 00013914  0x00000d36 set1  0x00000010 , 0x00000000 
- 00013915  0x00000d38 set1  0x00000002 , 0x00000015 
- 00013916  0x00000d3a enable  0x0000000d 
- 00013917  0x00000d3c set0  0x00000025 , 0x00000000 
- 00013918  0x00000d3d bpatch  0x0000005e , 0x0000400b 
- 00013919  0x00000d3e bmark1  0x00000001 , 0x0000375c 
- 00013920  0x00000d3f isolate0  0x00000001 , 0x00000015 
- 00013921  0x00000d40 branch  0x0000366a , 0x00000001 
- 00013922  0x00000d41 disable  0x00000007 
- 00013923  0x00000d42 enable  0x0000000d 
- 00013924  0x00000d43 disable  0x0000000c 
- 00013925  0x00000d44 add  0x00000022 , 0x00000002 , 0x0000000b 
- 00013926  0x00000d45 correlate  0x00000022 , 0x00000026 
- 00013927  0x00000d46 nbranch  0x0000374b , 0x00000018 
- 00013928  0x00000d47 set1  0x00000010 , 0x00000000 
- 00013929  0x00000d48 enable  0x00000007 
- 00013930  0x00000d4a set0  0x00000025 , 0x00000000 
- 00013931  0x00000d4b bpatch  0x0000005f , 0x0000400b 
- 00013932  0x00000d4c enable  0x0000000e 
- 00013933  0x00000d4d enable  0x00000009 
- 00013934  0x00000d4e parse  0x00000003 , 0x00000000 , 0x00000003 
- 00013935  0x00000d4f rshift8  0x0000000c , 0x0000003f 
- 00013936  0x00000d50 store  0x00000001 , 0x0000018a 
- 00013937  0x00000d51 parse  0x00000003 , 0x00000000 , 0x00000005 
- 00013938  0x00000d52 bmark1  0x00000010 , 0x00003676 
- 00013939  0x00000d53 rshift3  0x0000000c , 0x00000039 
- 00013940  0x00000d54 rshift3  0x00000039 , 0x00000039 
- 00013941  0x00000d55 branch  0x00003679 
- 00013942  0x00000d57 parse  0x00000003 , 0x00000000 , 0x00000005 
- 00013943  0x00000d58 rshift  0x0000000c , 0x00000039 
- 00013944  0x00000d59 parse  0x00000003 , 0x00000000 , 0x00000003 
- 00013945  0x00000d5b set0  0x00000025 , 0x00000000 
- 00013946  0x00000d5c bpatch  0x00000060 , 0x0000400c 
- 00013947  0x00000d5d deposit  0x00000039 
- 00013948  0x00000d5e store  0x00000002 , 0x00000169 
- 00013949  0x00000d5f branch  0x000036ee , 0x00000034 
- 00013950  0x00000d60 isub  0x00000035 , 0x0000003e 
- 00013951  0x00000d61 branch  0x0000374b , 0x00000002 
- 00013952  0x00000d62 set0  0x00000025 , 0x00000000 
- 00013953  0x00000d63 bpatch  0x00000061 , 0x0000400c 
- 00013954  0x00000d64 set0  0x00000000 , 0x00000000 
- 00013955  0x00000d65 fetch  0x00000001 , 0x0000018a 
- 00013956  0x00000d66 and_into  0x00000003 , 0x0000003f 
- 00013957  0x00000d67 arg  0x000004de , 0x00000005 
- 00013958  0x00000d68 beq  0x00000003 , 0x0000368f 
- 00013959  0x00000d69 bmark1  0x00000011 , 0x000036ea 
- 00013960  0x00000d6a fetch  0x00000001 , 0x00004132 
- 00013961  0x00000d6b beq  0x00000001 , 0x00003694 
- 00013962  0x00000d6d fetch  0x00000001 , 0x0000018a 
- 00013963  0x00000d6e and_into  0x00000003 , 0x0000003f 
- 00013964  0x00000d6f beq  0x00000002 , 0x000036c3 
- 00013965  0x00000d70 beq  0x00000001 , 0x000036d8 
- 00013966  0x00000d71 branch  0x0000374b 
- 00013967  0x00000d74 fetch  0x00000002 , 0x00000169 
- 00013968  0x00000d75 sub  0x0000003f , 0x00000070 , 0x0000003e 
- 00013969  0x00000d76 nbranch  0x0000374b , 0x00000002 
- 00013970  0x00000d77 bmark1  0x0000000f , 0x0000372c 
- 00013971  0x00000d78 branch  0x000036ea 
- 00013972  0x00000d7b set0  0x00000025 , 0x00000000 
- 00013973  0x00000d7c bpatch  0x00000062 , 0x0000400c 
- 00013974  0x00000d7d bmark1  0x0000000f , 0x0000372c 
- 00013975  0x00000d7e fetch  0x00000002 , 0x00000169 
- 00013976  0x00000d7f branch  0x0000374b , 0x00000034 
- 00013977  0x00000d80 call  0x00004494 
- 00013978  0x00000d81 nbranch  0x000036a1 , 0x00000001 
- 00013979  0x00000d83 fetcht  0x00000002 , 0x00000291 
- 00013980  0x00000d84 increase  0x0000000a , 0x0000003f 
- 00013981  0x00000d85 isub  0x00000002 , 0x0000003e 
- 00013982  0x00000d86 nbranch  0x000036a7 , 0x00000002 
- 00013983  0x00000d87 call  0x00004449 
- 00013984  0x00000d88 branch  0x0000369b 
- 00013985  0x00000d8a hfetch  0x00000002 , 0x0000810e 
- 00013986  0x00000d8b arg  0x0000012c , 0x00000002 
- 00013987  0x00000d8c isub  0x00000002 , 0x0000003e 
- 00013988  0x00000d8d branch  0x0000374b , 0x00000002 
- 00013989  0x00000d8e fetch  0x00000002 , 0x00004800 
- 00013990  0x00000d8f branch  0x0000374b , 0x00000034 
- 00013991  0x00000d91 set0  0x00000025 , 0x00000000 
- 00013992  0x00000d92 bpatch  0x00000063 , 0x0000400c 
- 00013993  0x00000d93 call  0x00004972 
- 00013994  0x00000d94 fetch  0x00000001 , 0x00000046 
- 00013995  0x00000d95 fetcht  0x00000001 , 0x0000018a 
- 00013996  0x00000d96 and_into  0x00000003 , 0x00000002 
- 00013997  0x00000d97 lshift8  0x00000002 , 0x00000002 
- 00013998  0x00000d98 lshift4  0x00000002 , 0x00000002 
- 00013999  0x00000d99 ior  0x00000002 , 0x0000003f 
- 00014000  0x00000d9a istore  0x00000002 , 0x0000000a 
- 00014001  0x00000d9b fetcht  0x00000002 , 0x00000169 
- 00014002  0x00000d9c copy  0x00000002 , 0x00000039 
- 00014003  0x00000d9d istoret  0x00000002 , 0x0000000a 
- 00014004  0x00000d9f set0  0x00000025 , 0x00000000 
- 00014005  0x00000da0 bpatch  0x00000064 , 0x0000400c 
- 00014006  0x00000da1 parse  0x00000003 , 0x00000000 , 0x00000008 
- 00014007  0x00000da2 rshift3  0x0000000c , 0x0000003f 
- 00014008  0x00000da3 istore  0x00000001 , 0x0000000a 
- 00014009  0x00000da4 loop  0x000036b4 
- 00014010  0x00000da5 add  0x00000002 , 0x00000004 , 0x00000039 
- 00014011  0x00000da6 call  0x00004494 
- 00014012  0x00000da7 nbranch  0x000036c1 , 0x00000001 
- 00014013  0x00000da8 set1  0x00000013 , 0x00000000 
- 00014014  0x00000da9 force  0x00000006 , 0x00000007 
- 00014015  0x00000daa call  0x00004378 
- 00014016  0x00000dab branch  0x000036ee 
- 00014017  0x00000dad call  0x00004424 
- 00014018  0x00000dae branch  0x000036ee 
- 00014019  0x00000db1 set0  0x00000025 , 0x00000000 
- 00014020  0x00000db2 bpatch  0x00000065 , 0x0000400c 
- 00014021  0x00000db3 bmark1  0x0000000f , 0x0000372c 
- 00014022  0x00000db4 fetch  0x00000002 , 0x00000169 
- 00014023  0x00000db5 arg  0x000002e0 , 0x00000002 
- 00014024  0x00000db6 isub  0x00000002 , 0x0000003e 
- 00014025  0x00000db7 branch  0x0000374b , 0x00000002 
- 00014026  0x00000db8 fetch  0x00000001 , 0x000002ca 
- 00014027  0x00000db9 bbit0  0x00000000 , 0x000036ce 
- 00014028  0x00000dba bbit0  0x00000001 , 0x000036d3 
- 00014029  0x00000dbb branch  0x0000375c 
- 00014030  0x00000dbd jam  0x00000001 , 0x000002c8 
- 00014031  0x00000dbe fetch  0x00000002 , 0x000002c4 
- 00014032  0x00000dbf bne  0x00000000 , 0x0000375c 
- 00014033  0x00000dc0 arg  0x00001000 , 0x00000005 
- 00014034  0x00000dc1 branch  0x000036ea 
- 00014035  0x00000dc3 jam  0x00000002 , 0x000002c8 
- 00014036  0x00000dc4 fetch  0x00000002 , 0x000002c6 
- 00014037  0x00000dc5 bne  0x00000000 , 0x0000375c 
- 00014038  0x00000dc6 arg  0x00001400 , 0x00000005 
- 00014039  0x00000dc7 branch  0x000036ea 
- 00014040  0x00000dca set0  0x00000025 , 0x00000000 
- 00014041  0x00000dcb bpatch  0x00000066 , 0x0000400c 
- 00014042  0x00000dcc bmark1  0x0000000f , 0x0000372c 
- 00014043  0x00000dcd fetch  0x00000002 , 0x00000169 
- 00014044  0x00000dce arg  0x000002e0 , 0x00000002 
- 00014045  0x00000dcf isub  0x00000002 , 0x0000003e 
- 00014046  0x00000dd0 branch  0x0000374b , 0x00000002 
- 00014047  0x00000dd1 fetch  0x00000001 , 0x000002c8 
- 00014048  0x00000dd2 beq  0x00000001 , 0x000036e3 
- 00014049  0x00000dd3 beq  0x00000002 , 0x000036e7 
- 00014050  0x00000dd4 branch  0x0000375c 
- 00014051  0x00000dd6 arg  0x00001000 , 0x00000005 
- 00014052  0x00000dd7 fetch  0x00000002 , 0x000002c4 
- 00014053  0x00000dd8 iadd  0x00000005 , 0x00000005 
- 00014054  0x00000dd9 branch  0x000036ea 
- 00014055  0x00000ddb arg  0x00001400 , 0x00000005 
- 00014056  0x00000ddc fetch  0x00000002 , 0x000002c6 
- 00014057  0x00000ddd iadd  0x00000005 , 0x00000005 
- 00014058  0x00000ddf parse  0x00000003 , 0x00000000 , 0x00000008 
- 00014059  0x00000de0 rshift3  0x0000000c , 0x0000003f 
- 00014060  0x00000de1 istore  0x00000001 , 0x00000005 
- 00014061  0x00000de2 loop  0x000036ea 
- 00014062  0x00000de4 set0  0x00000025 , 0x00000000 
- 00014063  0x00000de5 bpatch  0x00000067 , 0x0000400c 
- 00014064  0x00000de6 parse  0x00000003 , 0x00000000 , 0x00000010 
- 00014065  0x00000de7 branch  0x00003745 , 0x00000006 
- 00014066  0x00000de8 call  0x00003e0f 
- 00014067  0x00000de9 fetch  0x00000001 , 0x000043cc 
- 00014068  0x00000dea beq  0x00000001 , 0x0000375c 
- 00014069  0x00000deb bmark1  0x00000011 , 0x00003718 
- 00014070  0x00000dec bmark1  0x0000000f , 0x00003759 
- 00014071  0x00000ded fetch  0x00000001 , 0x0000018a 
- 00014072  0x00000dee compare  0x00000003 , 0x0000003f , 0x00000003 
- 00014073  0x00000def branch  0x00003718 , 0x00000001 
- 00014074  0x00000df0 fetch  0x00000002 , 0x00000169 
- 00014075  0x00000df1 branch  0x00003718 , 0x00000034 
- 00014076  0x00000df2 fetch  0x00000001 , 0x00004132 
- 00014077  0x00000df3 beq  0x00000001 , 0x00003718 
- 00014078  0x00000df4 set0  0x00000025 , 0x00000000 
- 00014079  0x00000df5 bpatch  0x00000068 , 0x0000400d 
- 00014080  0x00000df6 fetch  0x00000001 , 0x000002c8 
- 00014081  0x00000df7 beq  0x00000001 , 0x00003704 
- 00014082  0x00000df8 beq  0x00000002 , 0x0000370e 
- 00014083  0x00000df9 branch  0x00003bf1 
- 00014084  0x00000dfb fetch  0x00000002 , 0x000002c4 
- 00014085  0x00000dfc fetcht  0x00000002 , 0x00000169 
- 00014086  0x00000dfd iadd  0x00000002 , 0x0000003f 
- 00014087  0x00000dfe store  0x00000002 , 0x000002c4 
- 00014088  0x00000dff beq  0x00000000 , 0x00003bf1 
- 00014089  0x00000e00 fetcht  0x00000002 , 0x00001000 
- 00014090  0x00000e01 increase  0x00000004 , 0x00000002 
- 00014091  0x00000e02 isub  0x00000002 , 0x0000003e 
- 00014092  0x00000e03 call  0x000038a0 , 0x00000005 
- 00014093  0x00000e04 branch  0x00003718 
- 00014094  0x00000e06 fetch  0x00000002 , 0x000002c6 
- 00014095  0x00000e07 fetcht  0x00000002 , 0x00000169 
- 00014096  0x00000e08 iadd  0x00000002 , 0x0000003f 
- 00014097  0x00000e09 store  0x00000002 , 0x000002c6 
- 00014098  0x00000e0a beq  0x00000000 , 0x00003bf1 
- 00014099  0x00000e0b fetcht  0x00000002 , 0x00001400 
- 00014100  0x00000e0c add  0x00000002 , 0x00000004 , 0x00000002 
- 00014101  0x00000e0d isub  0x00000002 , 0x0000003e 
- 00014102  0x00000e0e call  0x000038a4 , 0x00000005 
- 00014103  0x00000e0f branch  0x00003718 
- 00014104  0x00000e11 set0  0x00000025 , 0x00000000 
- 00014105  0x00000e12 bpatch  0x00000069 , 0x0000400d 
- 00014106  0x00000e13 fetcht  0x00000001 , 0x0000004c 
- 00014107  0x00000e14 fetch  0x00000001 , 0x0000018a 
- 00014108  0x00000e15 compare  0x00000003 , 0x0000003f , 0x00000003 
- 00014109  0x00000e16 setflag  0x00000001 , 0x00000006 , 0x00000002 
- 00014110  0x00000e17 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
- 00014111  0x00000e18 storet  0x00000001 , 0x0000004c 
- 00014112  0x00000e19 nbranch  0x00003722 , 0x00000001 
- 00014113  0x00000e1a set1  0x00000001 , 0x00000000 
- 00014114  0x00000e1c bmark0  0x00000011 , 0x0000372c 
- 00014115  0x00000e1d isolate1  0x00000006 , 0x00000002 
- 00014116  0x00000e1e branch  0x0000372c , 0x00000001 
- 00014117  0x00000e1f fetch  0x00000002 , 0x000000fc 
- 00014118  0x00000e20 increase  0x00000001 , 0x0000003f 
- 00014119  0x00000e21 store  0x00000002 , 0x000000fc 
- 00014120  0x00000e22 set1  0x00000005 , 0x00000000 
- 00014121  0x00000e23 set0  0x00000007 , 0x00000002 
- 00014122  0x00000e24 set0  0x00000001 , 0x00000000 
- 00014123  0x00000e25 storet  0x00000001 , 0x0000004c 
- 00014124  0x00000e27 set0  0x00000025 , 0x00000000 
- 00014125  0x00000e28 bpatch  0x0000006a , 0x0000400d 
- 00014126  0x00000e29 fetcht  0x00000001 , 0x00000160 
- 00014127  0x00000e2a fetch  0x00000001 , 0x00000047 
- 00014128  0x00000e2b set1  0x00000005 , 0x0000003f 
- 00014129  0x00000e2c isolate1  0x00000002 , 0x00000002 
- 00014130  0x00000e2d setflag  0x00000001 , 0x00000002 , 0x0000003f 
- 00014131  0x00000e2e isolate1  0x0000000a , 0x00000000 
- 00014132  0x00000e2f setflag  0x00000001 , 0x00000007 , 0x0000003f 
- 00014133  0x00000e30 store  0x00000001 , 0x00000047 
- 00014134  0x00000e31 fetch  0x00000002 , 0x00000169 
- 00014135  0x00000e32 nbranch  0x0000375c , 0x00000034 
- 00014136  0x00000e33 fetch  0x00000001 , 0x0000004c 
- 00014137  0x00000e34 set0  0x00000007 , 0x0000003f 
- 00014138  0x00000e35 store  0x00000001 , 0x0000004c 
- 00014139  0x00000e36 fetch  0x00000001 , 0x0000018a 
- 00014140  0x00000e37 compare  0x00000001 , 0x0000003f , 0x00000007 
- 00014141  0x00000e39 branch  0x0000375c 
- 00014142  0x00000e3c set0  0x00000025 , 0x00000000 
- 00014143  0x00000e3d bpatch  0x0000006b , 0x0000400d 
- 00014144  0x00000e3e disable  0x0000002d 
- 00014145  0x00000e3f fetch  0x00000002 , 0x0000001a 
- 00014146  0x00000e40 increase  0x00000001 , 0x0000003f 
- 00014147  0x00000e41 store  0x00000002 , 0x0000001a 
- 00014148  0x00000e42 branch  0x0000375c 
- 00014149  0x00000e44 fetch  0x00000002 , 0x0000001c 
- 00014150  0x00000e45 increase  0x00000001 , 0x0000003f 
- 00014151  0x00000e46 store  0x00000002 , 0x0000001c 
- 00014152  0x00000e47 call  0x0000374c 
- 00014153  0x00000e48 bmark0  0x00000011 , 0x0000374b 
- 00014154  0x00000e49 set1  0x00000005 , 0x00000000 
- 00014155  0x00000e4b branch  0x0000375c 
- 00014156  0x00000e4e set0  0x00000025 , 0x00000000 
- 00014157  0x00000e4f bpatch  0x0000006c , 0x0000400d 
- 00014158  0x00000e50 fetch  0x00000001 , 0x0000018a 
- 00014159  0x00000e51 compare  0x00000003 , 0x0000003f , 0x00000003 
- 00014160  0x00000e52 nbranch  0x00003755 , 0x00000001 
- 00014161  0x00000e54 fetcht  0x00000001 , 0x0000004c 
- 00014162  0x00000e55 set0  0x00000006 , 0x00000002 
- 00014163  0x00000e56 storet  0x00000001 , 0x0000004c 
- 00014164  0x00000e57 rtn 
- 00014165  0x00000e5b fetcht  0x00000001 , 0x0000004c 
- 00014166  0x00000e5c set0  0x00000007 , 0x00000002 
- 00014167  0x00000e5d storet  0x00000001 , 0x0000004c 
- 00014168  0x00000e5e branch  0x0000443b 
- 00014169  0x00000e61 fetch  0x00000001 , 0x00000047 
- 00014170  0x00000e62 set1  0x00000005 , 0x0000003f 
- 00014171  0x00000e63 store  0x00000001 , 0x00000047 
- 00014172  0x00000e65 set0  0x00000025 , 0x00000000 
- 00014173  0x00000e66 bpatch  0x0000006d , 0x0000400d 
- 00014174  0x00000e67 disable  0x0000001d 
- 00014175  0x00000e68 disable  0x0000001c 
- 00014176  0x00000e69 disable  0x0000000d 
- 00014177  0x00000e6a disable  0x0000000c 
- 00014178  0x00000e6b disable  0x00000009 
- 00014179  0x00000e6c disable  0x0000000e 
- 00014180  0x00000e6d disable  0x00000007 
- 00014181  0x00000e6e branch  0x00003a6d , 0x00000021 
- 00014182  0x00000e6f until  0x0000003e , 0x00000027 
- 00014183  0x00000e70 nop  0x00000064 
- 00014184  0x00000e71 branch  0x00003a6d 
- 00014185  0x00000e74 set0  0x00000025 , 0x00000000 
- 00014186  0x00000e75 bpatch  0x0000006e , 0x0000400d 
- 00014187  0x00000e76 enable  0x00000009 
- 00014188  0x00000e77 enable  0x0000000c 
- 00014189  0x00000e78 parse  0x00000003 , 0x00000000 , 0x00000048 
- 00014190  0x00000e79 isolate1  0x0000003a , 0x0000003f 
- 00014191  0x00000e7a setflag  0x00000001 , 0x00000000 , 0x00000000 
- 00014192  0x00000e7b copy  0x00000020 , 0x00000002 
- 00014193  0x00000e7c ialigned  0x00000020 
- 00014194  0x00000e7d ialigned  0x0000001e 
- 00014195  0x00000e7e pulse  0x00000015 
- 00014196  0x00000e7f setsect  0x00000002 , 0x000fffff 
- 00014197  0x00000e80 setsect  0x00000003 , 0x0000ffff 
- 00014198  0x00000e81 nop  0x00000020 
- 00014199  0x00000e82 iverify  0x0000000d 
- 00014200  0x00000e83 deposit  0x0000002c 
- 00014201  0x00000e84 store  0x00000003 , 0x00000182 
- 00014202  0x00000e85 deposit  0x0000002d 
- 00014203  0x00000e86 store  0x00000001 , 0x00000185 
- 00014204  0x00000e87 copy  0x00000002 , 0x00000020 
- 00014205  0x00000e88 branch  0x0000377f , 0x00000001 
- 00014206  0x00000e89 branch  0x0000374b 
- 00014207  0x00000e8b set0  0x00000025 , 0x00000000 
- 00014208  0x00000e8c bpatch  0x0000006f , 0x0000400d 
- 00014209  0x00000e8d parse  0x00000003 , 0x00000000 , 0x00000048 
- 00014210  0x00000e8e ialigned  0x0000001f 
- 00014211  0x00000e8f ialigned  0x00000004 
- 00014212  0x00000e90 ialigned  0x0000002e 
- 00014213  0x00000e91 ialigned  0x00000012 
- 00014214  0x00000e92 force  0x00000000 , 0x0000003f 
- 00014215  0x00000e93 parse  0x00000003 , 0x00000000 , 0x00000010 
- 00014216  0x00000e94 branch  0x0000374b , 0x00000006 
- 00014217  0x00000e95 setarg  0x0ffffffc 
- 00014218  0x00000e96 iand  0x00000012 , 0x0000003f 
- 00014219  0x00000e97 store  0x00000004 , 0x0000016f 
- 00014220  0x00000e98 deposit  0x0000001d 
- 00014221  0x00000e99 store  0x00000003 , 0x0000017f 
- 00014222  0x00000e9a deposit  0x0000001c 
- 00014223  0x00000e9b store  0x00000001 , 0x0000017d 
- 00014224  0x00000e9c deposit  0x00000004 
- 00014225  0x00000e9d store  0x00000001 , 0x0000017e 
- 00014226  0x00000e9e deposit  0x0000002e 
- 00014227  0x00000e9f store  0x00000002 , 0x00000186 
- 00014228  0x00000ea0 deposit  0x00000021 
- 00014229  0x00000ea1 inject  0x00000001 , 0x00000020 
- 00014230  0x00000ea2 compare  0x00000002 , 0x00000001 , 0x0000000f 
- 00014231  0x00000ea3 setflag  0x00000001 , 0x0000000b , 0x00000000 
- 00014232  0x00000ea4 branch  0x0000375c 
- 00014233  0x00000ea7 set0  0x00000025 , 0x00000000 
- 00014234  0x00000ea8 bpatch  0x00000070 , 0x0000400e 
- 00014235  0x00000ea9 fetch  0x00000001 , 0x00000047 
- 00014236  0x00000eaa rtnbit0  0x00000003 
- 00014237  0x00000eab set0  0x00000003 , 0x0000003f 
- 00014238  0x00000eac setflip  0x00000006 , 0x0000003f 
- 00014239  0x00000ead store  0x00000001 , 0x00000047 
- 00014240  0x00000eae fetch  0x00000001 , 0x00004165 
- 00014241  0x00000eaf beq  0x00000013 , 0x000037b1 
- 00014242  0x00000eb0 rtneq  0x00000007 
- 00014243  0x00000eb1 fetch  0x00000001 , 0x0000004b 
- 00014244  0x00000eb2 rtnbit0  0x00000006 , 0x0000003f 
- 00014245  0x00000eb3 set0  0x00000006 , 0x0000003f 
- 00014246  0x00000eb4 set1  0x00000007 , 0x0000003f 
- 00014247  0x00000eb5 store  0x00000001 , 0x0000004b 
- 00014248  0x00000eb6 set0  0x00000002 , 0x00000000 
- 00014249  0x00000eb7 fetch  0x00000001 , 0x00004132 
- 00014250  0x00000eb8 rtneq  0x00000001 
- 00014251  0x00000eb9 fetch  0x00000002 , 0x000042af 
- 00014252  0x00000eba nrtn  0x00000034 
- 00014253  0x00000ebb fetch  0x00000001 , 0x0000004b 
- 00014254  0x00000ebc set0  0x00000007 , 0x0000003f 
- 00014255  0x00000ebd store  0x00000001 , 0x0000004b 
- 00014256  0x00000ebe branch  0x00005267 
- 00014257  0x00000ec1 set0  0x00000025 , 0x00000000 
- 00014258  0x00000ec2 bpatch  0x00000071 , 0x0000400e 
- 00014259  0x00000ec3 fetch  0x00000001 , 0x00000433 
- 00014260  0x00000ec4 rshift  0x0000003f , 0x0000003f 
- 00014261  0x00000ec5 beq  0x00000011 , 0x000037d0 
- 00014262  0x00000ec6 beq  0x00000012 , 0x000037da 
- 00014263  0x00000ec7 beq  0x00000018 , 0x00003806 
- 00014264  0x00000ec8 beq  0x0000007f , 0x000037bf 
- 00014265  0x00000ec9 beq  0x0000002c , 0x0000385e 
- 00014266  0x00000eca rtnne  0x00000003 
- 00014267  0x00000ecb fetch  0x00000001 , 0x00000434 
- 00014268  0x00000ecc beq  0x0000002b , 0x000037c8 
- 00014269  0x00000ecd beq  0x00000011 , 0x000037c3 
- 00014270  0x00000ece rtn 
- 00014271  0x00000ed1 fetch  0x00000001 , 0x00000434 
- 00014272  0x00000ed2 set1  0x00000007 , 0x0000003f 
- 00014273  0x00000ed3 beq  0x0000008d , 0x0000385e 
- 00014274  0x00000ed4 rtn 
- 00014275  0x00000ed6 rtn  0x00000029 
- 00014276  0x00000ed7 fetch  0x00000001 , 0x00000030 
- 00014277  0x00000ed8 rtnbit1  0x00000004 
- 00014278  0x00000ed9 jam  0x00000031 , 0x0000007c 
- 00014279  0x00000eda rtn 
- 00014280  0x00000ede rtn  0x00000029 
- 00014281  0x00000edf fetch  0x00000001 , 0x00000031 
- 00014282  0x00000ee0 isolate1  0x00000004 , 0x0000003f 
- 00014283  0x00000ee1 branch  0x000037cd , 0x00000001 
- 00014284  0x00000ee3 rtn 
- 00014285  0x00000ee5 set0  0x00000004 , 0x0000003f 
- 00014286  0x00000ee6 store  0x00000001 , 0x00000031 
- 00014287  0x00000ee7 rtn 
- 00014288  0x00000eea set0  0x00000025 , 0x00000000 
- 00014289  0x00000eeb bpatch  0x00000072 , 0x0000400e 
- 00014290  0x00000eec fetch  0x00000001 , 0x0000004c 
- 00014291  0x00000eed set1  0x00000002 , 0x0000003f 
- 00014292  0x00000eee store  0x00000001 , 0x0000004c 
- 00014293  0x00000eef hjam  0x00000001 , 0x00008011 
- 00014294  0x00000ef0 fetch  0x00000001 , 0x00000030 
- 00014295  0x00000ef1 isolate1  0x00000004 , 0x0000003f 
- 00014296  0x00000ef2 branch  0x00004845 , 0x00000001 
- 00014297  0x00000ef3 rtn 
- 00014298  0x00000ef6 set0  0x00000025 , 0x00000000 
- 00014299  0x00000ef7 bpatch  0x00000073 , 0x0000400e 
- 00014300  0x00000ef8 fetch  0x00000001 , 0x0000004c 
- 00014301  0x00000ef9 set0  0x00000002 , 0x0000003f 
- 00014302  0x00000efa store  0x00000001 , 0x0000004c 
- 00014303  0x00000efb hjam  0x00000000 , 0x00008011 
- 00014304  0x00000efc rtn 
- 00014305  0x00000f00 set0  0x00000025 , 0x00000000 
- 00014306  0x00000f01 bpatch  0x00000074 , 0x0000400e 
- 00014307  0x00000f02 copy  0x00000022 , 0x0000003f 
- 00014308  0x00000f03 store  0x00000004 , 0x000042a5 
- 00014309  0x00000f04 add  0x00000022 , 0x00000003 , 0x00000011 
- 00014310  0x00000f05 branch  0x000037e8 , 0x00000029 
- 00014311  0x00000f06 add  0x00000028 , 0x00000003 , 0x00000011 
- 00014312  0x00000f08 fetcht  0x00000002 , 0x00000032 
- 00014313  0x00000f09 deposit  0x00000011 
- 00014314  0x00000f0a set0  0x0000001b , 0x0000003f 
- 00014315  0x00000f0b idiv  0x00000002 
- 00014316  0x00000f0c fetch  0x00000002 , 0x00000075 
- 00014317  0x00000f0d call  0x00007efd 
- 00014318  0x00000f0e remainder  0x00000013 
- 00014319  0x00000f0f isub  0x00000013 , 0x0000003f 
- 00014320  0x00000f10 branch  0x000037f2 , 0x00000002 
- 00014321  0x00000f11 iadd  0x00000002 , 0x0000003f 
- 00014322  0x00000f13 iadd  0x00000011 , 0x0000003f 
- 00014323  0x00000f14 store  0x00000004 , 0x00000034 
- 00014324  0x00000f15 jam  0x00000000 , 0x00004748 
- 00014325  0x00000f16 fetch  0x00000001 , 0x00000030 
- 00014326  0x00000f17 set1  0x00000001 , 0x0000003f 
- 00014327  0x00000f18 store  0x00000001 , 0x00000030 
- 00014328  0x00000f19 fetch  0x00000001 , 0x00000073 
- 00014329  0x00000f1a store  0x00000001 , 0x0000008a 
- 00014330  0x00000f1b jam  0x00000080 , 0x0000416e 
- 00014331  0x00000f1c setarg  0x00000000 
- 00014332  0x00000f1d store  0x00000003 , 0x0000420a 
- 00014333  0x00000f1e store  0x00000003 , 0x0000420d 
- 00014334  0x00000f1f store  0x00000001 , 0x000041fa 
- 00014335  0x00000f20 jam  0x0000000b , 0x00000b7d 
- 00014336  0x00000f21 call  0x00007c27 
- 00014337  0x00000f22 fetch  0x00000002 , 0x00004161 
- 00014338  0x00000f23 store  0x00000002 , 0x0000003e 
- 00014339  0x00000f24 nrtn  0x00000029 
- 00014340  0x00000f25 add  0x00000004 , 0xffffffff , 0x00000007 
- 00014341  0x00000f26 rtn 
- 00014342  0x00000f29 set0  0x00000025 , 0x00000000 
- 00014343  0x00000f2a bpatch  0x00000075 , 0x0000400e 
- 00014344  0x00000f2b fetch  0x00000001 , 0x00000030 
- 00014345  0x00000f2c rtnbit0  0x00000001 
- 00014346  0x00000f2d set0  0x00000001 , 0x0000003f 
- 00014347  0x00000f2e store  0x00000001 , 0x00000030 
- 00014348  0x00000f2f jam  0x0000007f , 0x0000416e 
- 00014349  0x00000f30 fetch  0x00000002 , 0x0000415f 
- 00014350  0x00000f31 store  0x00000002 , 0x0000003e 
- 00014351  0x00000f32 disable  0x0000002b 
- 00014352  0x00000f33 jam  0x0000000c , 0x00000b7d 
- 00014353  0x00000f34 branch  0x00007c27 
- 00014354  0x00000f38 set0  0x00000025 , 0x00000000 
- 00014355  0x00000f39 bpatch  0x00000076 , 0x0000400e 
- 00014356  0x00000f3a enable  0x0000002e 
- 00014357  0x00000f3b fetch  0x00000001 , 0x00000030 
- 00014358  0x00000f3c bbit1  0x00000001 , 0x00003820 
- 00014359  0x00000f3d rtnmark1  0x00000011 
- 00014360  0x00000f3e fetch  0x00000001 , 0x00000047 
- 00014361  0x00000f3f rtnbit1  0x00000003 
- 00014362  0x00000f40 fetch  0x00000001 , 0x00000048 
- 00014363  0x00000f41 nrtn  0x00000034 
- 00014364  0x00000f42 fetch  0x00000001 , 0x0000004b 
- 00014365  0x00000f43 rtnbit1  0x00000006 
- 00014366  0x00000f45 force  0x00000000 , 0x0000003f 
- 00014367  0x00000f46 rtn 
- 00014368  0x00000f49 bbit0  0x00000002 , 0x00003830 
- 00014369  0x00000f4a fetch  0x00000001 , 0x0000008a 
- 00014370  0x00000f4b beq  0x00000002 , 0x00003826 
- 00014371  0x00000f4c fetch  0x00000001 , 0x00000047 
- 00014372  0x00000f4d bbit1  0x00000003 , 0x00003839 
- 00014373  0x00000f4e bmark0  0x00000008 , 0x00003839 
- 00014374  0x00000f50 call  0x00003290 
- 00014375  0x00000f51 nbranch  0x00003839 , 0x00000029 
- 00014376  0x00000f52 fetch  0x00000001 , 0x00000048 
- 00014377  0x00000f53 nbranch  0x00003839 , 0x00000034 
- 00014378  0x00000f55 fetch  0x00000001 , 0x000000f1 
- 00014379  0x00000f56 increase  0xffffffff , 0x0000003f 
- 00014380  0x00000f57 store  0x00000001 , 0x000000f1 
- 00014381  0x00000f58 nbranch  0x0000381e , 0x00000034 
- 00014382  0x00000f59 jam  0x00000010 , 0x000000f1 
- 00014383  0x00000f5a branch  0x00003839 
- 00014384  0x00000f5d fetch  0x00000001 , 0x0000008a 
- 00014385  0x00000f5e bne  0x00000001 , 0x00003839 
- 00014386  0x00000f5f fetch  0x00000001 , 0x0000008b 
- 00014387  0x00000f60 branch  0x00003839 , 0x00000034 
- 00014388  0x00000f61 increase  0xffffffff , 0x0000003f 
- 00014389  0x00000f62 store  0x00000001 , 0x0000008b 
- 00014390  0x00000f63 fetch  0x00000001 , 0x00000047 
- 00014391  0x00000f64 rtnbit1  0x00000003 
- 00014392  0x00000f65 nrtn  0x0000002d 
- 00014393  0x00000f67 fetch  0x00000001 , 0x0000008a 
- 00014394  0x00000f68 increase  0xffffffff , 0x0000003f 
- 00014395  0x00000f69 store  0x00000001 , 0x0000008a 
- 00014396  0x00000f6a rtn 
- 00014397  0x00000f6e set0  0x00000025 , 0x00000000 
- 00014398  0x00000f6f bpatch  0x00000077 , 0x0000400e 
- 00014399  0x00000f70 disable  0x00000010 
- 00014400  0x00000f71 copy  0x00000002 , 0x0000001b 
- 00014401  0x00000f72 call  0x00003300 
- 00014402  0x00000f73 disable  0x00000028 
- 00014403  0x00000f74 nrtn  0x00000005 
- 00014404  0x00000f75 force  0x00000000 , 0x0000001b 
- 00014405  0x00000f76 enable  0x00000028 
- 00014406  0x00000f77 rtn 
- 00014407  0x00000f7b fetch  0x00000001 , 0x000041f9 
- 00014408  0x00000f7c icompare  0x000000ff , 0x00000004 
- 00014409  0x00000f7d rtn 
- 00014410  0x00000f80 set0  0x00000025 , 0x00000000 
- 00014411  0x00000f81 bpatch  0x00000078 , 0x0000400f 
- 00014412  0x00000f82 jam  0x00000001 , 0x00004171 
- 00014413  0x00000f84 call  0x00006a40 
- 00014414  0x00000f85 force  0x0000000c , 0x0000003f 
- 00014415  0x00000f86 store  0x00000002 , 0x00000032 
- 00014416  0x00000f87 fetch  0x00000001 , 0x000000af 
- 00014417  0x00000f88 lshift  0x0000003f , 0x0000003f 
- 00014418  0x00000f89 store  0x00000002 , 0x00000075 
- 00014419  0x00000f8a fetch  0x00000001 , 0x00000030 
- 00014420  0x00000f8b set1  0x00000002 , 0x0000003f 
- 00014421  0x00000f8c store  0x00000001 , 0x00000030 
- 00014422  0x00000f8d jam  0x00000003 , 0x00000073 
- 00014423  0x00000f8e jam  0x00000003 , 0x0000008a 
- 00014424  0x00000f8f call  0x000037e1 
- 00014425  0x00000f90 force  0x00000000 , 0x00000002 
- 00014426  0x00000f91 call  0x00004914 
- 00014427  0x00000f92 jam  0x00000050 , 0x000000b3 
- 00014428  0x00000f93 jam  0x00000010 , 0x000000f1 
- 00014429  0x00000f94 rtn 
- 00014430  0x00000f97 set0  0x00000025 , 0x00000000 
- 00014431  0x00000f98 bpatch  0x00000079 , 0x0000400f 
- 00014432  0x00000f99 call  0x00003806 
- 00014433  0x00000f9a jam  0x00000005 , 0x00004171 
- 00014434  0x00000f9c call  0x00006a4a 
- 00014435  0x00000f9d fetch  0x00000001 , 0x00000030 
- 00014436  0x00000f9e set0  0x00000002 , 0x0000003f 
- 00014437  0x00000f9f store  0x00000001 , 0x00000030 
- 00014438  0x00000fa1 arg  0x00000e00 , 0x00000002 
- 00014439  0x00000fa2 jam  0x00000013 , 0x000002c0 
- 00014440  0x00000fa3 branch  0x000048c4 
- 00014441  0x00000fa6 set0  0x00000025 , 0x00000000 
- 00014442  0x00000fa7 bpatch  0x0000007a , 0x0000400f 
- 00014443  0x00000fa8 jam  0x00000000 , 0x000000b1 
- 00014444  0x00000fa9 call  0x0000385e 
- 00014445  0x00000faa call  0x00003290 
- 00014446  0x00000fab set0  0x00000007 , 0x00000000 
- 00014447  0x00000fac rtn 
- 00014448  0x00000faf set0  0x00000025 , 0x00000000 
- 00014449  0x00000fb0 bpatch  0x0000007b , 0x0000400f 
- 00014450  0x00000fb1 fetch  0x00000001 , 0x00004132 
- 00014451  0x00000fb2 beq  0x00000001 , 0x00003898 
- 00014452  0x00000fb3 set0  0x00000001 , 0x00000000 
- 00014453  0x00000fb5 jam  0x00000000 , 0x000002d1 
- 00014454  0x00000fb6 fetch  0x00000001 , 0x000002ca 
- 00014455  0x00000fb7 rtn  0x00000034 
- 00014456  0x00000fb8 isolate1  0x00000000 , 0x0000003f 
- 00014457  0x00000fb9 arg  0x00001000 , 0x00000006 
- 00014458  0x00000fba call  0x00004da8 , 0x00000001 
- 00014459  0x00000fbb set0  0x00000025 , 0x00000000 
- 00014460  0x00000fbc bpatch  0x0000007c , 0x0000400f 
- 00014461  0x00000fbd fetch  0x00000001 , 0x000002d1 
- 00014462  0x00000fbe beq  0x00000001 , 0x0000388c 
- 00014463  0x00000fc0 jam  0x00000000 , 0x000002d1 
- 00014464  0x00000fc1 fetch  0x00000001 , 0x000002ca 
- 00014465  0x00000fc2 rtnbit0  0x00000001 
- 00014466  0x00000fc3 arg  0x00001400 , 0x00000006 
- 00014467  0x00000fc4 call  0x00004da8 
- 00014468  0x00000fc5 fetch  0x00000001 , 0x000002d1 
- 00014469  0x00000fc6 beq  0x00000001 , 0x00003892 
- 00014470  0x00000fc7 rtn 
- 00014471  0x00000fca fetch  0x00000001 , 0x0000004c 
- 00014472  0x00000fcb set0  0x00000007 , 0x0000003f 
- 00014473  0x00000fcc store  0x00000001 , 0x0000004c 
- 00014474  0x00000fcd set0  0x00000001 , 0x00000000 
- 00014475  0x00000fce branch  0x0000443b 
- 00014476  0x00000fd1 fetch  0x00000001 , 0x000002ca 
- 00014477  0x00000fd2 set0  0x00000000 , 0x0000003f 
- 00014478  0x00000fd3 store  0x00000001 , 0x000002ca 
- 00014479  0x00000fd4 setarg  0x00000000 
- 00014480  0x00000fd5 store  0x00000002 , 0x000002c4 
- 00014481  0x00000fd6 rtn 
- 00014482  0x00000fd8 fetch  0x00000001 , 0x000002ca 
- 00014483  0x00000fd9 set0  0x00000001 , 0x0000003f 
- 00014484  0x00000fda store  0x00000001 , 0x000002ca 
- 00014485  0x00000fdb setarg  0x00000000 
- 00014486  0x00000fdc store  0x00000002 , 0x000002c6 
- 00014487  0x00000fdd rtn 
- 00014488  0x00000fe0 fetch  0x00000001 , 0x0000004c 
- 00014489  0x00000fe1 rtnbit0  0x00000007 , 0x0000003f 
- 00014490  0x00000fe2 call  0x00004435 
- 00014491  0x00000fe3 fetch  0x00000002 , 0x00004800 
- 00014492  0x00000fe4 branch  0x00003bf1 , 0x00000034 
- 00014493  0x00000fe5 increase  0xffffffff , 0x0000003f 
- 00014494  0x00000fe6 store  0x00000002 , 0x00004800 
- 00014495  0x00000fe7 branch  0x00003887 
- 00014496  0x00000fea fetch  0x00000001 , 0x000002ca 
- 00014497  0x00000feb set1  0x00000000 , 0x0000003f 
- 00014498  0x00000fec store  0x00000001 , 0x000002ca 
- 00014499  0x00000fed rtn 
- 00014500  0x00000ff0 fetch  0x00000001 , 0x000002ca 
- 00014501  0x00000ff1 set1  0x00000001 , 0x0000003f 
- 00014502  0x00000ff2 store  0x00000001 , 0x000002ca 
- 00014503  0x00000ff3 rtn 
- 00014504  0x00000ffa set0  0x00000025 , 0x00000000 
- 00014505  0x00000ffb bpatch  0x0000007d , 0x0000400f 
- 00014506  0x00000ffc add  0x00000028 , 0x00000001 , 0x00000021 
- 00014507  0x00000ffd call  0x00003a5d 
- 00014508  0x00000ffe force  0x00000003 , 0x00000024 
- 00014509  0x00000fff call  0x00003a42 
- 00014510  0x00001000 call  0x00003bae 
- 00014511  0x00001001 call  0x00003bbf 
- 00014512  0x00001002 branch  0x00003bc5 
- 00014513  0x00001006 set0  0x00000025 , 0x00000000 
- 00014514  0x00001007 bpatch  0x0000007e , 0x0000400f 
- 00014515  0x00001008 call  0x00003baa 
- 00014516  0x00001009 deposit  0x00000028 
- 00014517  0x0000100a fetcht  0x00000004 , 0x0000416a 
- 00014518  0x0000100b isub  0x00000002 , 0x0000003f 
- 00014519  0x0000100c rtnne  0x00000001 
- 00014520  0x0000100d compare  0x00000000 , 0x00000001 , 0x0000001f 
- 00014521  0x0000100e nbranch  0x000038bc , 0x00000001 
- 00014522  0x0000100f fetch  0x00000001 , 0x00000019 
- 00014523  0x00001010 rtn  0x00000034 
- 00014524  0x00001012 call  0x000038a8 
- 00014525  0x00001013 compare  0x00000010 , 0x00000001 , 0x0000001f 
- 00014526  0x00001014 branch  0x0000375c , 0x00000001 
- 00014527  0x00001016 rshift  0x00000021 , 0x00000002 
- 00014528  0x00001017 or  0x00000002 , 0x00000040 , 0x0000000e 
- 00014529  0x00001019 set0  0x00000025 , 0x00000000 
- 00014530  0x0000101a bpatch  0x0000007f , 0x0000400f 
- 00014531  0x0000101b enable  0x00000007 
- 00014532  0x0000101c enable  0x0000000a 
- 00014533  0x0000101d enable  0x0000001b 
- 00014534  0x0000101e set0  0x00000010 , 0x00000000 
- 00014535  0x0000101f deposit  0x00000004 
- 00014536  0x00001020 inject  0x00000003 , 0x00000003 
- 00014537  0x00001021 deposit  0x00000001 
- 00014538  0x00001022 inject  0x00000003 , 0x00000004 
- 00014539  0x00001023 fetch  0x00000001 , 0x00000047 
- 00014540  0x00001024 inject  0x00000000 , 0x00000004 
- 00014541  0x00001025 inject  0x00000003 , 0x00000003 
- 00014542  0x00001026 enable  0x00000008 
- 00014543  0x00001027 inject  0x00000003 , 0x00000008 
- 00014544  0x00001028 disable  0x0000001b 
- 00014545  0x00001029 disable  0x00000008 
- 00014546  0x0000102a disable  0x0000000a 
- 00014547  0x0000102b set0  0x00000002 , 0x00000015 
- 00014548  0x0000102c arg  0x00000000 , 0x00000002 
- 00014549  0x0000102d call  0x00003b74 
- 00014550  0x0000102e set0  0x00000025 , 0x00000000 
- 00014551  0x0000102f bpatch  0x00000080 , 0x00004010 
- 00014552  0x00001030 and  0x00000001 , 0x0000001f , 0x0000003f 
- 00014553  0x00001031 beq  0x00000013 , 0x00003913 
- 00014554  0x00001032 beq  0x00000000 , 0x0000375c 
- 00014555  0x00001033 beq  0x00000001 , 0x0000375c 
- 00014556  0x00001034 beq  0x00000002 , 0x000038f5 
- 00014557  0x00001035 beq  0x00000003 , 0x00003925 
- 00014558  0x00001036 beq  0x00000004 , 0x0000392b 
- 00014559  0x00001037 beq  0x00000007 , 0x000038e9 
- 00014560  0x00001038 beq  0x00000008 , 0x0000392a 
- 00014561  0x00001039 arg  0x00000004 , 0x00000002 
- 00014562  0x0000103a call  0x00003b74 
- 00014563  0x0000103b beq  0x0000000a , 0x00003927 
- 00014564  0x0000103c beq  0x0000000b , 0x0000392d 
- 00014565  0x0000103d arg  0x00000008 , 0x00000002 
- 00014566  0x0000103e call  0x00003b74 
- 00014567  0x0000103f beq  0x0000000f , 0x0000392d 
- 00014568  0x00001040 branch  0x00003927 
- 00014569  0x00001044 set0  0x00000025 , 0x00000000 
- 00014570  0x00001045 bpatch  0x00000081 , 0x00004010 
- 00014571  0x00001046 enable  0x0000001d 
- 00014572  0x00001047 enable  0x00000009 
- 00014573  0x00001048 enable  0x0000000e 
- 00014574  0x00001049 force  0x0000001e , 0x00000039 
- 00014575  0x0000104a arg  0x000000b5 , 0x00000006 
- 00014576  0x0000104c ifetch  0x00000001 , 0x00000006 
- 00014577  0x0000104d inject  0x00000003 , 0x00000008 
- 00014578  0x0000104e loop  0x000038f0 
- 00014579  0x0000104f bmark1  0x00000007 , 0x00003960 
- 00014580  0x00001050 branch  0x0000375c 
- 00014581  0x00001053 set0  0x00000025 , 0x00000000 
- 00014582  0x00001054 bpatch  0x00000082 , 0x00004010 
- 00014583  0x00001055 fetch  0x00000001 , 0x0000018b 
- 00014584  0x00001056 icopy  0x00000004 
- 00014585  0x00001057 fetch  0x00000001 , 0x0000008f 
- 00014586  0x00001058 icopy  0x0000001c 
- 00014587  0x00001059 fetch  0x00000003 , 0x0000414a 
- 00014588  0x0000105a icopy  0x0000001d 
- 00014589  0x0000105b fetch  0x00000002 , 0x00004144 
- 00014590  0x0000105c icopy  0x0000002e 
- 00014591  0x0000105d enable  0x00000009 
- 00014592  0x0000105e enable  0x0000001c 
- 00014593  0x0000105f copy  0x00000020 , 0x00000011 
- 00014594  0x00001060 call  0x00003a54 
- 00014595  0x00001061 pulse  0x00000015 
- 00014596  0x00001062 nop  0x00000020 
- 00014597  0x00001063 copy  0x00000021 , 0x0000000b 
- 00014598  0x00001064 fetch  0x00000004 , 0x0000016b 
- 00014599  0x00001065 icopy  0x00000021 
- 00014600  0x00001066 preload  0x0000001e 
- 00014601  0x00001067 set1  0x0000003a , 0x0000003f 
- 00014602  0x00001068 inject  0x00000003 , 0x00000048 
- 00014603  0x00001069 preload  0x0000001f 
- 00014604  0x0000106a inject  0x00000003 , 0x00000048 
- 00014605  0x0000106b copy  0x0000000b , 0x00000021 
- 00014606  0x0000106c copy  0x00000011 , 0x00000020 
- 00014607  0x0000106d enable  0x00000008 
- 00014608  0x0000106e inject  0x00000003 , 0x00000010 
- 00014609  0x0000106f disable  0x00000008 
- 00014610  0x00001070 branch  0x0000375c 
- 00014611  0x00001073 set0  0x00000025 , 0x00000000 
- 00014612  0x00001074 bpatch  0x00000083 , 0x00004010 
- 00014613  0x00001075 enable  0x0000000e 
- 00014614  0x00001076 enable  0x00000009 
- 00014615  0x00001077 enable  0x0000001c 
- 00014616  0x00001078 fetch  0x00000001 , 0x00000432 
- 00014617  0x00001079 and  0x0000003f , 0x000001f8 , 0x00000002 
- 00014618  0x0000107a arg  0x00000432 , 0x00000006 
- 00014619  0x0000107b increase  0x00000008 , 0x00000002 
- 00014620  0x0000107d add  0x00000002 , 0xffffffb8 , 0x00000013 
- 00014621  0x0000107e nbranch  0x00003922 , 0x00000002 
- 00014622  0x0000107f ifetch  0x00000009 , 0x00000006 
- 00014623  0x00001080 inject  0x00000003 , 0x00000048 
- 00014624  0x00001081 copy  0x00000013 , 0x00000002 
- 00014625  0x00001082 branch  0x0000391c 
- 00014626  0x00001084 ifetch  0x00000009 , 0x00000006 
- 00014627  0x00001085 iinject  0x00000003 , 0x00000002 
- 00014628  0x00001086 branch  0x00003960 
- 00014629  0x00001089 enable  0x0000001c 
- 00014630  0x0000108a branch  0x00003930 
- 00014631  0x0000108d enable  0x0000001c 
- 00014632  0x0000108e set1  0x00000010 , 0x00000000 
- 00014633  0x0000108f branch  0x00003930 
- 00014634  0x00001092 set1  0x00000002 , 0x00000015 
- 00014635  0x00001094 enable  0x0000001d 
- 00014636  0x00001095 branch  0x00003930 
- 00014637  0x00001099 set1  0x00000002 , 0x00000015 
- 00014638  0x0000109a enable  0x0000001d 
- 00014639  0x0000109b set1  0x00000010 , 0x00000000 
- 00014640  0x0000109e set0  0x00000025 , 0x00000000 
- 00014641  0x0000109f bpatch  0x00000084 , 0x00004010 
- 00014642  0x000010a0 fetch  0x00000001 , 0x0000004c 
- 00014643  0x000010a1 bbit0  0x00000005 , 0x00003946 
- 00014644  0x000010a2 sub  0x00000001 , 0x00000003 , 0x0000003e 
- 00014645  0x000010a3 branch  0x00003946 , 0x00000002 
- 00014646  0x000010a4 disable  0x0000000e 
- 00014647  0x000010a5 disable  0x0000001c 
- 00014648  0x000010a6 enable  0x0000001d 
- 00014649  0x000010a7 disable  0x00000007 
- 00014650  0x000010a8 set1  0x00000001 , 0x00000015 
- 00014651  0x000010a9 isolate1  0x00000002 , 0x00000015 
- 00014652  0x000010aa branch  0x00003940 , 0x00000001 
- 00014653  0x000010ab setarg  0x000abeee 
- 00014654  0x000010ac inject  0x00000003 , 0x00000014 
- 00014655  0x000010ad branch  0x00003944 
- 00014656  0x000010af setarg  0x005faeba 
- 00014657  0x000010b0 inject  0x00000003 , 0x00000018 
- 00014658  0x000010b1 setarg  0x00000012 
- 00014659  0x000010b2 inject  0x00000003 , 0x00000006 
- 00014660  0x000010b4 enable  0x00000007 
- 00014661  0x000010b5 set1  0x00000010 , 0x00000000 
- 00014662  0x000010b7 enable  0x0000000e 
- 00014663  0x000010b8 enable  0x00000009 
- 00014664  0x000010b9 bmark1  0x00000005 , 0x00003969 
- 00014665  0x000010ba fetch  0x00000001 , 0x00000090 
- 00014666  0x000010bb inject  0x00000003 , 0x00000003 
- 00014667  0x000010bc fetch  0x00000002 , 0x00000091 
- 00014668  0x000010bd iforce  0x00000039 
- 00014669  0x000010be bmark1  0x00000010 , 0x00003950 
- 00014670  0x000010bf inject  0x00000003 , 0x00000005 
- 00014671  0x000010c0 branch  0x00003951 
- 00014672  0x000010c2 inject  0x00000003 , 0x0000000d 
- 00014673  0x000010c4 fetch  0x00000001 , 0x00004132 
- 00014674  0x000010c5 beq  0x00000001 , 0x0000395b 
- 00014675  0x000010c6 deposit  0x00000039 
- 00014676  0x000010c7 branch  0x00003960 , 0x00000034 
- 00014677  0x000010c8 fetch  0x00000002 , 0x00000179 
- 00014678  0x000010c9 iforce  0x00000006 
- 00014679  0x000010cb ifetch  0x00000001 , 0x00000006 
- 00014680  0x000010cc inject  0x00000003 , 0x00000008 
- 00014681  0x000010cd loop  0x00003957 
- 00014682  0x000010ce branch  0x00003960 
- 00014683  0x000010d0 fetch  0x00000002 , 0x00000179 
- 00014684  0x000010d1 iforce  0x00000003 
- 00014685  0x000010d3 ifetch  0x00000001 , 0x00000003 
- 00014686  0x000010d4 inject  0x00000003 , 0x00000008 
- 00014687  0x000010d5 loop  0x0000395d 
- 00014688  0x000010d7 enable  0x00000008 
- 00014689  0x000010d8 inject  0x00000003 , 0x00000010 
- 00014690  0x000010d9 disable  0x00000008 
- 00014691  0x000010da call  0x00003583 
- 00014692  0x000010db fetch  0x00000001 , 0x0000004c 
- 00014693  0x000010dc bbit0  0x00000005 , 0x0000375c 
- 00014694  0x000010dd force  0x00000000 , 0x0000003f 
- 00014695  0x000010de inject  0x00000003 , 0x00000006 
- 00014696  0x000010df branch  0x0000375c 
- 00014697  0x000010e3 set0  0x00000025 , 0x00000000 
- 00014698  0x000010e4 bpatch  0x00000085 , 0x00004010 
- 00014699  0x000010e5 bmark1  0x00000010 , 0x00003972 
- 00014700  0x000010e7 fetch  0x00000001 , 0x0000018a 
- 00014701  0x000010e8 inject  0x00000003 , 0x00000003 
- 00014702  0x000010e9 fetch  0x00000001 , 0x00000169 
- 00014703  0x000010ea iforce  0x00000013 
- 00014704  0x000010eb inject  0x00000003 , 0x00000005 
- 00014705  0x000010ec branch  0x00003977 
- 00014706  0x000010ee fetch  0x00000001 , 0x0000018a 
- 00014707  0x000010ef inject  0x00000003 , 0x00000003 
- 00014708  0x000010f0 fetch  0x00000002 , 0x00000169 
- 00014709  0x000010f1 iforce  0x00000013 
- 00014710  0x000010f2 inject  0x00000003 , 0x0000000d 
- 00014711  0x000010f4 arg  0x000004de , 0x00000006 
- 00014712  0x000010f6 copy  0x00000013 , 0x0000003e 
- 00014713  0x000010f7 branch  0x0000397e , 0x00000005 
- 00014714  0x000010f8 ifetch  0x00000001 , 0x00000006 
- 00014715  0x000010f9 inject  0x00000003 , 0x00000008 
- 00014716  0x000010fa increase  0xffffffff , 0x00000013 
- 00014717  0x000010fb branch  0x00003978 
- 00014718  0x000010fd fetch  0x00000002 , 0x000000fe 
- 00014719  0x000010fe increase  0x00000001 , 0x0000003f 
- 00014720  0x000010ff store  0x00000002 , 0x000000fe 
- 00014721  0x00001100 branch  0x00003960 
- 00014722  0x00001104 fetch  0x00000004 , 0x0000016f 
- 00014723  0x00001105 add  0x0000003f , 0x00000007 , 0x00000011 
- 00014724  0x00001106 fetch  0x00000002 , 0x0000017b 
- 00014725  0x00001107 nbranch  0x00003988 , 0x00000034 
- 00014726  0x00001108 increase  0xfffffffd , 0x00000011 
- 00014727  0x00001109 branch  0x00003990 
- 00014728  0x0000110b mul32  0x0000003f , 0x0000000c , 0x0000003f 
- 00014729  0x0000110c hfetcht  0x00000002 , 0x00008040 
- 00014730  0x0000110d increase  0x00000001 , 0x00000002 
- 00014731  0x0000110f isub  0x00000002 , 0x0000003f 
- 00014732  0x00001110 nbranch  0x0000398f , 0x00000002 
- 00014733  0x00001111 increase  0xffffffff , 0x00000011 
- 00014734  0x00001112 branch  0x0000398b 
- 00014735  0x00001114 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00014736  0x00001116 until  0x0000003e , 0x00000023 
- 00014737  0x00001117 compare  0x00000000 , 0x00000022 , 0x00000003 
- 00014738  0x00001118 nbranch  0x00003990 , 0x00000001 
- 00014739  0x00001119 iforce  0x00000029 
- 00014740  0x0000111a copy  0x00000011 , 0x00000028 
- 00014741  0x0000111b iforce  0x00000029 
- 00014742  0x0000111c rtn 
- 00014743  0x00001120 set0  0x00000025 , 0x00000000 
- 00014744  0x00001121 bpatch  0x00000086 , 0x00004010 
- 00014745  0x00001122 until  0x0000003e , 0x00000022 
- 00014746  0x00001123 deposit  0x0000001a 
- 00014747  0x00001124 iforce  0x00000006 
- 00014748  0x00001125 rshift16 , 0x0000003f , 0x0000003f 
- 00014749  0x00001126 isub  0x00000022 , 0x00000039 
- 00014750  0x00001127 and_into  0x00000003 , 0x00000039 
- 00014751  0x00001128 nbranch  0x000039a2 , 0x00000005 
- 00014752  0x00001129 force  0x00000000 , 0x0000003f 
- 00014753  0x0000112a branch  0x000039a6 
- 00014754  0x0000112c arg  0x00000ea6 , 0x00000002 
- 00014755  0x0000112d force  0x00000000 , 0x0000003f 
- 00014756  0x0000112f iadd  0x00000002 , 0x0000003f 
- 00014757  0x00001130 loop  0x000039a4 
- 00014758  0x00001132 iadd  0x00000006 , 0x0000003f 
- 00014759  0x00001133 div  0x0000003f , 0x0000000c 
- 00014760  0x00001134 call  0x00007efd 
- 00014761  0x00001135 quotient  0x0000003f 
- 00014762  0x00001136 store  0x00000002 , 0x0000017b 
- 00014763  0x00001137 rtn 
- 00014764  0x0000113a set0  0x00000025 , 0x00000000 
- 00014765  0x0000113b bpatch  0x00000087 , 0x00004010 
- 00014766  0x0000113c deposit  0x0000001a 
- 00014767  0x0000113d copy  0x00000019 , 0x00000002 
- 00014768  0x0000113e isub  0x00000002 , 0x0000003e 
- 00014769  0x0000113f nsetflag  0x00000002 , 0x0000002c , 0x0000003f 
- 00014770  0x00001140 isub  0x00000002 , 0x00000002 
- 00014771  0x00001141 setarg  0x00000ea6 
- 00014772  0x00001142 isolate0  0x0000000f , 0x00000002 
- 00014773  0x00001143 branch  0x000039b8 , 0x00000001 
- 00014774  0x00001144 setarg  0xffff0ea6 
- 00014775  0x00001145 iadd  0x00000002 , 0x00000002 
- 00014776  0x00001147 storet  0x00000006 , 0x000003c8 
- 00014777  0x00001148 rtn  0x00000036 
- 00014778  0x00001149 storet  0x00000006 , 0x00000038 
- 00014779  0x0000114a rtn 
- 00014780  0x0000114d disable  0x00000030 
- 00014781  0x0000114e fetch  0x00000006 , 0x000003c8 
- 00014782  0x0000114f branch  0x000039c0 , 0x00000036 
- 00014783  0x00001150 fetch  0x00000006 , 0x00000038 
- 00014784  0x00001152 iadd  0x00000019 , 0x00000030 
- 00014785  0x00001153 increase  0x0000000a , 0x00000030 
- 00014786  0x00001154 setarg  0x00000ea6 
- 00014787  0x00001155 isub  0x00000030 , 0x0000003f 
- 00014788  0x00001156 isolate0  0x0000000f , 0x0000003f 
- 00014789  0x00001157 branch  0x000039ca , 0x00000001 
- 00014790  0x00001158 setarg  0x0000f15a 
- 00014791  0x00001159 iadd  0x00000030 , 0x00000030 
- 00014792  0x0000115b copy  0x00000030 , 0x0000001a 
- 00014793  0x0000115c rtn 
- 00014794  0x0000115e force  0x00000000 , 0x0000003e 
- 00014795  0x0000115f branch  0x000039c8 
- 00014796  0x00001167 set0  0x00000025 , 0x00000000 
- 00014797  0x00001168 bpatch  0x00000088 , 0x00004011 
- 00014798  0x00001169 call  0x00003a7a 
- 00014799  0x0000116a copy  0x00000021 , 0x0000003f 
- 00014800  0x0000116b and_into  0x00000180 , 0x0000003f 
- 00014801  0x0000116c compare  0x00000003 , 0x00000024 , 0x00000007 
- 00014802  0x0000116d nbranch  0x000039d6 , 0x00000001 
- 00014803  0x0000116e rshift3  0x0000003f , 0x0000003f 
- 00014804  0x0000116f iadd  0x00000017 , 0x0000003f 
- 00014805  0x00001170 branch  0x000039d7 
- 00014806  0x00001172 copy  0x00000017 , 0x0000003f 
- 00014807  0x00001174 div  0x0000003f , 0x0000004f 
- 00014808  0x00001175 pulse  0x00000015 
- 00014809  0x00001176 call  0x00007efd 
- 00014810  0x00001177 remainder  0x00000011 
- 00014811  0x00001178 add  0x00000011 , 0xffffffd8 , 0x00000002 
- 00014812  0x00001179 branch  0x000039df , 0x00000002 
- 00014813  0x0000117a lshift  0x00000011 , 0x00000002 
- 00014814  0x0000117b branch  0x000039e1 
- 00014815  0x0000117d lshift  0x00000002 , 0x00000002 
- 00014816  0x0000117e increase  0x00000001 , 0x00000002 
- 00014817  0x00001180 set0  0x00000025 , 0x00000000 
- 00014818  0x00001181 bpatch  0x00000089 , 0x00004011 
- 00014819  0x00001182 fetch  0x00000001 , 0x00000031 
- 00014820  0x00001183 bbit0  0x00000003 , 0x000039f3 
- 00014821  0x00001185 fetch  0x00000004 , 0x00004173 
- 00014822  0x00001186 isub  0x00000021 , 0x0000003e 
- 00014823  0x00001187 branch  0x000039f3 , 0x00000002 
- 00014824  0x00001188 call  0x00003a12 
- 00014825  0x00001189 fetch  0x00000001 , 0x0000417a 
- 00014826  0x0000118a rtn  0x00000034 
- 00014827  0x0000118b fetch  0x00000001 , 0x00000031 
- 00014828  0x0000118c set1  0x00000002 , 0x0000003f 
- 00014829  0x0000118d store  0x00000001 , 0x00000031 
- 00014830  0x0000118e fetch  0x00000005 , 0x00004188 
- 00014831  0x0000118f store  0x00000005 , 0x0000417b 
- 00014832  0x00001190 ifetch  0x00000005 , 0x00000006 
- 00014833  0x00001191 store  0x00000005 , 0x00004180 
- 00014834  0x00001192 call  0x00003a17 
- 00014835  0x00001194 fetch  0x00000001 , 0x00000031 
- 00014836  0x00001195 rtnbit0  0x00000002 
- 00014837  0x00001196 isolate1  0x00000001 , 0x00000021 
- 00014838  0x00001197 branch  0x00003a0f , 0x00000001 
- 00014839  0x00001198 rshift3  0x00000002 , 0x00000011 
- 00014840  0x00001199 and  0x00000002 , 0x00000007 , 0x00000007 
- 00014841  0x0000119a setarg  0x0000417b 
- 00014842  0x0000119b iadd  0x00000011 , 0x00000011 
- 00014843  0x0000119c ifetch  0x00000001 , 0x00000011 
- 00014844  0x0000119d qisolate0  0x0000003f 
- 00014845  0x0000119e branch  0x00003a00 , 0x00000001 
- 00014846  0x0000119f deposit  0x00000002 
- 00014847  0x000011a0 branch  0x00003a0c 
- 00014848  0x000011a2 fetch  0x00000001 , 0x00004185 
- 00014849  0x000011a3 iforce  0x00000012 
- 00014850  0x000011a4 deposit  0x00000021 
- 00014851  0x000011a5 and_into  0x00000180 , 0x0000003f 
- 00014852  0x000011a6 rshift3  0x0000003f , 0x0000003f 
- 00014853  0x000011a7 iadd  0x00000017 , 0x0000003f 
- 00014854  0x000011a8 idiv  0x00000012 
- 00014855  0x000011a9 setarg  0x00004193 
- 00014856  0x000011aa call  0x00007efd 
- 00014857  0x000011ab remainder  0x00000011 
- 00014858  0x000011ac iadd  0x00000011 , 0x00000006 
- 00014859  0x000011ad ifetch  0x00000001 , 0x00000006 
- 00014860  0x000011af store  0x00000001 , 0x00004186 
- 00014861  0x000011b0 iforce  0x00000002 
- 00014862  0x000011b1 rtn 
- 00014863  0x000011b4 fetch  0x00000001 , 0x00004186 
- 00014864  0x000011b5 iforce  0x00000002 
- 00014865  0x000011b6 rtn 
- 00014866  0x000011b9 fetch  0x00000001 , 0x00000031 
- 00014867  0x000011ba set0  0x00000002 , 0x0000003f 
- 00014868  0x000011bb set0  0x00000003 , 0x0000003f 
- 00014869  0x000011bc store  0x00000001 , 0x00000031 
- 00014870  0x000011bd rtn 
- 00014871  0x000011c4 set0  0x00000025 , 0x00000000 
- 00014872  0x000011c5 bpatch  0x0000008a , 0x00004011 
- 00014873  0x000011c6 arg  0x00004193 , 0x00000005 
- 00014874  0x000011c7 force  0x0000000a , 0x00000039 
- 00014875  0x000011c8 call  0x00007e3b 
- 00014876  0x000011c9 arg  0x00004193 , 0x00000005 
- 00014877  0x000011ca force  0x00000000 , 0x00000013 
- 00014878  0x000011cb force  0x00000002 , 0x00000007 
- 00014879  0x000011cd fetch  0x00000005 , 0x0000417b 
- 00014880  0x000011ce iforce  0x00000002 
- 00014881  0x000011cf compare  0x00000002 , 0x00000007 , 0x000000ff 
- 00014882  0x000011d0 branch  0x00003a24 , 0x00000001 
- 00014883  0x000011d1 rshift  0x00000002 , 0x00000002 
- 00014884  0x000011d3 isolate0  0x00000000 , 0x00000002 
- 00014885  0x000011d4 branch  0x00003a28 , 0x00000001 
- 00014886  0x000011d5 deposit  0x00000013 
- 00014887  0x000011d6 istore  0x00000001 , 0x00000005 
- 00014888  0x000011d8 rshift2  0x00000002 , 0x00000002 
- 00014889  0x000011d9 increase  0x00000002 , 0x00000013 
- 00014890  0x000011da compare  0x00000028 , 0x00000013 , 0x000000fe 
- 00014891  0x000011db nbranch  0x00003a31 , 0x00000001 
- 00014892  0x000011dc fetch  0x00000005 , 0x00004180 
- 00014893  0x000011dd iforce  0x00000002 
- 00014894  0x000011de compare  0x00000002 , 0x00000007 , 0x000000ff 
- 00014895  0x000011df branch  0x00003a31 , 0x00000001 
- 00014896  0x000011e0 rshift  0x00000002 , 0x00000002 
- 00014897  0x000011e2 sub  0x00000013 , 0x0000004e , 0x0000003e 
- 00014898  0x000011e3 branch  0x00003a24 , 0x00000002 
- 00014899  0x000011e4 force  0x00000001 , 0x00000013 
- 00014900  0x000011e5 increase  0xffffffff , 0x00000007 
- 00014901  0x000011e6 nbranch  0x00003a1f , 0x00000005 
- 00014902  0x000011e7 arg  0x00004193 , 0x00000011 
- 00014903  0x000011e8 deposit  0x00000005 
- 00014904  0x000011e9 isub  0x00000011 , 0x0000003f 
- 00014905  0x000011ea store  0x00000001 , 0x00004185 
- 00014906  0x000011eb rtn 
- 00014907  0x000011ee set0  0x00000025 , 0x00000000 
- 00014908  0x000011ef bpatch  0x0000008b , 0x00004011 
- 00014909  0x000011f0 call  0x000039cc 
- 00014910  0x000011f1 fetch  0x00000001 , 0x00000189 
- 00014911  0x000011f2 bbit0  0x00000005 , 0x00003a41 
- 00014912  0x000011f3 fetcht  0x00000001 , 0x00000448 
- 00014913  0x000011f5 branch  0x00003a82 
- 00014914  0x000011f9 set0  0x00000025 , 0x00000000 
- 00014915  0x000011fa bpatch  0x0000008c , 0x00004011 
- 00014916  0x000011fb call  0x000039cc 
- 00014917  0x000011fc fetch  0x00000001 , 0x00000189 
- 00014918  0x000011fd bbit0  0x00000004 , 0x00003a48 
- 00014919  0x000011fe fetcht  0x00000001 , 0x00000447 
- 00014920  0x00001200 branch  0x00003a91 
- 00014921  0x00001204 force  0x00000000 , 0x0000002d 
- 00014922  0x00001205 fetch  0x00000003 , 0x00004147 
- 00014923  0x00001206 iforce  0x0000002c 
- 00014924  0x00001207 rtn 
- 00014925  0x0000120a set0  0x00000025 , 0x00000000 
- 00014926  0x0000120b bpatch  0x0000008d , 0x00004011 
- 00014927  0x0000120c fetch  0x00000001 , 0x00004277 
- 00014928  0x0000120d icopy  0x0000002d 
- 00014929  0x0000120e fetch  0x00000003 , 0x00004274 
- 00014930  0x0000120f icopy  0x0000002c 
- 00014931  0x00001210 rtn 
- 00014932  0x00001213 set0  0x00000025 , 0x00000000 
- 00014933  0x00001214 bpatch  0x0000008e , 0x00004011 
- 00014934  0x00001215 fetch  0x00000002 , 0x00004144 
- 00014935  0x00001216 icopy  0x0000002e 
- 00014936  0x00001217 fetch  0x00000001 , 0x00004143 
- 00014937  0x00001218 icopy  0x0000002d 
- 00014938  0x00001219 fetch  0x00000003 , 0x00004140 
- 00014939  0x0000121a icopy  0x0000002c 
- 00014940  0x0000121b rtn 
- 00014941  0x0000121e set0  0x00000025 , 0x00000000 
- 00014942  0x0000121f bpatch  0x0000008f , 0x00004011 
- 00014943  0x00001220 fetch  0x00000002 , 0x00000044 
- 00014944  0x00001221 icopy  0x0000002e 
- 00014945  0x00001222 fetch  0x00000001 , 0x00000043 
- 00014946  0x00001223 icopy  0x0000002d 
- 00014947  0x00001224 fetch  0x00000003 , 0x00000040 
- 00014948  0x00001225 icopy  0x0000002c 
- 00014949  0x00001226 rtn 
- 00014950  0x0000122a bmark1  0x00000020 , 0x00003a69 
- 00014951  0x0000122b rtnmark0  0x0000001d 
- 00014952  0x0000122c rtnmark0  0x0000001f 
- 00014953  0x0000122e and_into  0xffffff00 , 0x0000002c 
- 00014954  0x0000122f pulse  0x00000015 
- 00014955  0x00001230 nop  0x00000020 
- 00014956  0x00001231 rtn 
- 00014957  0x00001235 set0  0x00000025 , 0x00000000 
- 00014958  0x00001236 bpatch  0x00000090 , 0x00004012 
- 00014959  0x00001237 force  0x00000000 , 0x00000015 
- 00014960  0x00001238 disable  0x00000021 
- 00014961  0x00001239 disable  0x00000020 
- 00014962  0x0000123a pulse  0x0000001e 
- 00014963  0x0000123b hjam  0x00000000 , 0x00008902 
- 00014964  0x0000123c hjam  0x00000000 , 0x00008901 
- 00014965  0x0000123d hjam  0x00000000 , 0x00008900 
- 00014966  0x0000123e hjam  0x00000000 , 0x00008903 
- 00014967  0x0000123f hjam  0x00000070 , 0x00008904 
- 00014968  0x00001240 hjam  0x00000000 , 0x00008906 
- 00014969  0x00001241 rtn 
- 00014970  0x00001244 set0  0x00000025 , 0x00000000 
- 00014971  0x00001245 bpatch  0x00000091 , 0x00004012 
- 00014972  0x00001246 hjam  0x00000000 , 0x00008902 
- 00014973  0x00001247 hjam  0x00000000 , 0x00008901 
- 00014974  0x00001248 hjam  0x00000018 , 0x00008900 
- 00014975  0x00001249 hjam  0x000000a7 , 0x00008903 
- 00014976  0x0000124a hjam  0x0000007f , 0x00008904 
- 00014977  0x0000124b rtn 
- 00014978  0x0000124f set0  0x00000025 , 0x00000000 
- 00014979  0x00001250 bpatch  0x00000092 , 0x00004012 
- 00014980  0x00001252 storet  0x00000001 , 0x00000017 
- 00014981  0x00001253 add  0x00000002 , 0x00000004 , 0x00000011 
- 00014982  0x00001254 branch  0x00003ab6 
- 00014983  0x00001256 set0  0x00000025 , 0x00000000 
- 00014984  0x00001257 bpatch  0x00000093 , 0x00004012 
- 00014985  0x00001258 hjam  0x000000cf , 0x00008901 
- 00014986  0x00001259 nop  0x0000000a 
- 00014987  0x0000125a hjam  0x000000ff , 0x00008900 
- 00014988  0x0000125b hjam  0x000000af , 0x00008903 
- 00014989  0x0000125c hjam  0x000000ff , 0x00008904 
- 00014990  0x0000125d nop  0x0000000a 
- 00014991  0x0000125e hjam  0x000000a0 , 0x00008902 
- 00014992  0x0000125f rtn 
- 00014993  0x00001263 set0  0x00000025 , 0x00000000 
- 00014994  0x00001264 bpatch  0x00000094 , 0x00004012 
- 00014995  0x00001265 storet  0x00000001 , 0x00000017 
- 00014996  0x00001266 add  0x00000002 , 0x00000002 , 0x00000011 
- 00014997  0x00001267 call  0x00003ab6 
- 00014998  0x00001268 setarg  0x00000500 
- 00014999  0x00001269 call  0x00003bf3 
- 00015000  0x0000126b hjam  0x00000001 , 0x00008906 
- 00015001  0x0000126c hjam  0x0000003c , 0x00008900 
- 00015002  0x0000126d hjam  0x000000e0 , 0x00008901 
- 00015003  0x0000126e hjam  0x000000b7 , 0x00008903 
- 00015004  0x0000126f hjam  0x0000007f , 0x00008902 
- 00015005  0x00001270 rtn 
- 00015006  0x00001273 hjam  0x00000006 , 0x00008042 
- 00015007  0x00001274 call  0x00003c29 
- 00015008  0x00001275 call  0x00003c3a 
- 00015009  0x00001277 fetch  0x00000002 , 0x00004163 
- 00015010  0x00001278 bbit0  0x0000000e , 0x00003aa1 
- 00015011  0x00001279 iforce  0x00000006 
- 00015012  0x0000127a arg  0x00008900 , 0x00000002 
- 00015013  0x0000127c ifetch  0x00000001 , 0x00000006 
- 00015014  0x0000127d beq  0x000000ff , 0x00003aab 
- 00015015  0x0000127e ior  0x00000002 , 0x00000005 
- 00015016  0x0000127f ifetch  0x00000001 , 0x00000006 
- 00015017  0x00001280 istore  0x00000001 , 0x00000005 
- 00015018  0x00001281 branch  0x00003aa5 
- 00015019  0x00001283 set0  0x00000025 , 0x00000000 
- 00015020  0x00001284 bpatch  0x00000095 , 0x00004012 
- 00015021  0x00001285 call  0x00003d91 
- 00015022  0x00001286 call  0x00003b0a 
- 00015023  0x00001288 setarg  0x000007d0 
- 00015024  0x00001289 iadd  0x00000022 , 0x0000003f 
- 00015025  0x0000128a store  0x00000004 , 0x00000173 
- 00015026  0x0000128b set1  0x00000003 , 0x00000015 
- 00015027  0x0000128c force  0x00000000 , 0x00000015 
- 00015028  0x0000128d ncall  0x00003ace , 0x0000002b 
- 00015029  0x0000128e branch  0x00003ae2 
- 00015030  0x00001292 set0  0x00000025 , 0x00000000 
- 00015031  0x00001293 bpatch  0x00000096 , 0x00004012 
- 00015032  0x00001294 setarg  0x00000960 
- 00015033  0x00001295 iadd  0x00000011 , 0x00000002 
- 00015034  0x00001296 fetch  0x00000001 , 0x0000415d 
- 00015035  0x00001297 hjam  0x00000004 , 0x0000895f 
- 00015036  0x00001298 imul32  0x00000002 , 0x0000003f 
- 00015037  0x00001299 fetcht  0x00000001 , 0x0000415e 
- 00015038  0x0000129a idiv  0x00000002 
- 00015039  0x0000129b call  0x00007efd 
- 00015040  0x0000129c quotient  0x00000011 
- 00015041  0x0000129d remainder  0x0000003f 
- 00015042  0x0000129e lshift16  0x0000003f , 0x0000003f 
- 00015043  0x0000129f lshift4  0x0000003f , 0x0000003f 
- 00015044  0x000012a0 idiv  0x00000002 
- 00015045  0x000012a1 call  0x00007efd 
- 00015046  0x000012a2 quotient  0x0000003f 
- 00015047  0x000012a3 lshift8  0x0000003f , 0x0000003f 
- 00015048  0x000012a4 lshift  0x0000003f , 0x0000003f 
- 00015049  0x000012a5 ior  0x00000011 , 0x0000003f 
- 00015050  0x000012a6 hstore  0x00000004 , 0x00008960 
- 00015051  0x000012a7 hjam  0x00000044 , 0x0000895f 
- 00015052  0x000012a8 hjam  0x000000c4 , 0x0000895f 
- 00015053  0x000012a9 rtn 
- 00015054  0x000012ad set0  0x00000025 , 0x00000000 
- 00015055  0x000012ae bpatch  0x00000097 , 0x00004012 
- 00015056  0x000012af hjam  0x00000002 , 0x00008906 
- 00015057  0x000012b0 setarg  0x0003d090 
- 00015058  0x000012b1 call  0x00003bf3 
- 00015059  0x000012b2 hjam  0x0000007f , 0x00008900 
- 00015060  0x000012b3 nop  0x00000082 
- 00015061  0x000012b4 hjam  0x00000030 , 0x00008952 
- 00015062  0x000012b5 hjam  0x000000d0 , 0x00008901 
- 00015063  0x000012b6 hjam  0x00000070 , 0x00008952 
- 00015064  0x000012b7 hjam  0x000000f0 , 0x00008952 
- 00015065  0x000012b8 force  0x00000032 , 0x00000039 
- 00015066  0x000012ba hfetch  0x00000001 , 0x00008980 
- 00015067  0x000012bb bbit1  0x00000005 , 0x00003add 
- 00015068  0x000012bc loop  0x00003ada 
- 00015069  0x000012be store  0x00000001 , 0x0000416f 
- 00015070  0x000012bf hjam  0x00000000 , 0x00008901 
- 00015071  0x000012c0 hjam  0x00000000 , 0x00008900 
- 00015072  0x000012c1 hjam  0x00000000 , 0x00008906 
- 00015073  0x000012c2 rtn 
- 00015074  0x000012c5 set0  0x00000025 , 0x00000000 
- 00015075  0x000012c6 bpatch  0x00000098 , 0x00004013 
- 00015076  0x000012c7 fetch  0x00000001 , 0x0000416f 
- 00015077  0x000012c8 set1  0x00000005 , 0x0000003f 
- 00015078  0x000012c9 hstore  0x00000001 , 0x00008952 
- 00015079  0x000012ca hfetcht  0x00000001 , 0x00008950 
- 00015080  0x000012cb and_into  0x00000007 , 0x00000002 
- 00015081  0x000012cc lshift3  0x0000003f , 0x0000003f 
- 00015082  0x000012cd ior  0x00000002 , 0x0000003f 
- 00015083  0x000012ce hstore  0x00000001 , 0x00008950 
- 00015084  0x000012cf hfetch  0x00000001 , 0x00008951 
- 00015085  0x000012d0 set0  0x00000000 , 0x0000003f 
- 00015086  0x000012d1 hstore  0x00000001 , 0x00008951 
- 00015087  0x000012d2 hfetch  0x00000001 , 0x00008952 
- 00015088  0x000012d3 set0  0x00000005 , 0x0000003f 
- 00015089  0x000012d4 hstore  0x00000001 , 0x00008952 
- 00015090  0x000012d5 rtn 
- 00015091  0x000012d8 set0  0x00000025 , 0x00000000 
- 00015092  0x000012d9 bpatch  0x00000099 , 0x00004013 
- 00015093  0x000012da hfetch  0x00000002 , 0x00008981 
- 00015094  0x000012db rshift4  0x0000003f , 0x0000003f 
- 00015095  0x000012dc rshift3  0x0000003f , 0x0000003f 
- 00015096  0x000012dd sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00015097  0x000012de and_into  0x000000ff , 0x0000003f 
- 00015098  0x000012df div  0x0000003f , 0x0000000a 
- 00015099  0x000012e0 call  0x00007efd 
- 00015100  0x000012e1 quotient  0x0000003f 
- 00015101  0x000012e2 lshift4  0x0000003f , 0x0000003f 
- 00015102  0x000012e3 remainder  0x00000002 
- 00015103  0x000012e4 ior  0x00000002 , 0x0000003f 
- 00015104  0x000012e5 store  0x00000001 , 0x00000018 
- 00015105  0x000012e6 rtn 
- 00015106  0x000012e9 hjam  0x0000000a , 0x00008042 
- 00015107  0x000012ea hjam  0x00000000 , 0x00008905 
- 00015108  0x000012eb hfetch  0x00000003 , 0x00008138 
- 00015109  0x000012ec hstore  0x00000003 , 0x0000804c 
- 00015110  0x000012ed hjam  0x000000fc , 0x0000804c 
- 00015111  0x000012ee call  0x00003db0 
- 00015112  0x000012ef nop  0x000003e8 
- 00015113  0x000012f0 rtn 
- 00015114  0x000012f3 hjam  0x00000006 , 0x00008042 
- 00015115  0x000012f4 hfetch  0x00000001 , 0x0000896b 
- 00015116  0x000012f5 set0  0x00000004 , 0x0000003f 
- 00015117  0x000012f6 set0  0x00000005 , 0x0000003f 
- 00015118  0x000012f7 hstore  0x00000001 , 0x0000896b 
- 00015119  0x000012f8 hjam  0x00000000 , 0x00008905 
- 00015120  0x000012f9 hjam  0x00000000 , 0x00008904 
- 00015121  0x000012fa hjam  0x00000070 , 0x00008904 
- 00015122  0x000012fb hjam  0x000000ff , 0x00008905 
- 00015123  0x000012fc hfetch  0x00000001 , 0x0000896b 
- 00015124  0x000012fd set1  0x00000004 , 0x0000003f 
- 00015125  0x000012fe set1  0x00000005 , 0x0000003f 
- 00015126  0x000012ff hstore  0x00000001 , 0x0000896b 
- 00015127  0x00001300 call  0x00003b38 
- 00015128  0x00001301 hfetch  0x00000001 , 0x00008968 
- 00015129  0x00001302 set1  0x00000007 , 0x0000003f 
- 00015130  0x00001303 hstore  0x00000001 , 0x00008968 
- 00015131  0x00001304 set0  0x00000007 , 0x0000003f 
- 00015132  0x00001305 hstore  0x00000001 , 0x00008968 
- 00015133  0x00001306 set1  0x00000007 , 0x0000003f 
- 00015134  0x00001307 hstore  0x00000001 , 0x00008968 
- 00015135  0x00001308 hjam  0x00000005 , 0x00008042 
- 00015136  0x00001309 rtn 
- 00015137  0x0000130c nop  0x000003e8 
- 00015138  0x0000130d hjam  0x00000004 , 0x00008042 
- 00015139  0x0000130e nop  0x0000000a 
- 00015140  0x0000130f hjam  0x00000000 , 0x000080b4 
- 00015141  0x00001310 hjam  0x00000080 , 0x00008006 
- 00015142  0x00001312 hfetch  0x00000001 , 0x0000812d 
- 00015143  0x00001313 bbit0  0x00000001 , 0x00003b26 
- 00015144  0x00001314 hfetcht  0x00000003 , 0x00008149 
- 00015145  0x00001315 hjam  0x00000005 , 0x00008042 
- 00015146  0x00001316 nop  0x0000000a 
- 00015147  0x00001317 hjam  0x00000080 , 0x00008006 
- 00015148  0x00001319 hfetch  0x00000001 , 0x0000812d 
- 00015149  0x0000131a bbit0  0x00000001 , 0x00003b2c 
- 00015150  0x0000131b hfetch  0x00000003 , 0x00008149 
- 00015151  0x0000131c isub  0x00000002 , 0x0000003f 
- 00015152  0x0000131d branch  0x00003b32 , 0x00000002 
- 00015153  0x0000131e sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00015154  0x00001320 store  0x00000002 , 0x0000018c 
- 00015155  0x00001321 sub  0x0000003f , 0x00000046 , 0x0000003e 
- 00015156  0x00001323 nbranch  0x00003b34 , 0x00000002 
- 00015157  0x00001324 rtn 
- 00015158  0x00001327 setarg  0x00000f0f 
- 00015159  0x00001328 branch  0x00003da7 
- 00015160  0x0000132b setarg  0x0000080f 
- 00015161  0x0000132c branch  0x00003da7 
- 00015162  0x00001331 set0  0x00000025 , 0x00000000 
- 00015163  0x00001332 bpatch  0x0000009a , 0x00004013 
- 00015164  0x00001333 call  0x00003a87 
- 00015165  0x00001334 disable  0x00000020 
- 00015166  0x00001335 enable  0x00000021 
- 00015167  0x00001336 pulse  0x00000016 
- 00015168  0x00001337 rtn 
- 00015169  0x0000133a set0  0x00000025 , 0x00000000 
- 00015170  0x0000133b bpatch  0x0000009b , 0x00004013 
- 00015171  0x0000133c fetch  0x00000001 , 0x0000004c 
- 00015172  0x0000133d isolate1  0x00000002 , 0x0000003f 
- 00015173  0x0000133e setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00015174  0x0000133f hstore  0x00000001 , 0x00008011 
- 00015175  0x00001340 arg  0x00000062 , 0x00000006 
- 00015176  0x00001341 ifetch  0x00000009 , 0x00000006 
- 00015177  0x00001342 iforce  0x00000032 
- 00015178  0x00001343 ifetch  0x00000007 , 0x00000006 
- 00015179  0x00001344 iforce  0x00000033 
- 00015180  0x00001345 fetch  0x00000001 , 0x00000054 
- 00015181  0x00001346 add  0x0000003f , 0xffffffff , 0x00000034 
- 00015182  0x00001347 pulse  0x0000001a 
- 00015183  0x00001348 rtn 
- 00015184  0x0000134b set0  0x00000025 , 0x00000000 
- 00015185  0x0000134c bpatch  0x0000009c , 0x00004013 
- 00015186  0x0000134d enable  0x0000000d 
- 00015187  0x0000134e arg  0x00000600 , 0x0000000b 
- 00015188  0x0000134f correlate  0x00000029 , 0x00000026 
- 00015189  0x00001351 deposit  0x0000001a 
- 00015190  0x00001352 store  0x00000006 , 0x0000009c 
- 00015191  0x00001353 disable  0x0000000d 
- 00015192  0x00001354 nbranch  0x00003a6d , 0x00000018 
- 00015193  0x00001355 arg  0x000003bb , 0x00000029 
- 00015194  0x00001356 increase  0x00000001 , 0x00000028 
- 00015195  0x00001357 and_into  0x000001fc , 0x00000028 
- 00015196  0x00001358 rtn 
- 00015197  0x0000135d enable  0x0000000d 
- 00015198  0x0000135f correlate  0x0000003e , 0x00000017 
- 00015199  0x00001360 branch  0x00003b55 , 0x00000018 
- 00015200  0x00001361 compare  0x00000002 , 0x00000028 , 0x00000002 
- 00015201  0x00001362 nbranch  0x00003b5e , 0x00000001 
- 00015202  0x00001363 branch  0x00003b55 
- 00015203  0x00001366 set0  0x00000025 , 0x00000000 
- 00015204  0x00001367 bpatch  0x0000009d , 0x00004013 
- 00015205  0x00001368 arg  0x00000600 , 0x0000000b 
- 00015206  0x00001369 enable  0x0000000d 
- 00015207  0x0000136a correlate  0x00000023 , 0x00000026 
- 00015208  0x0000136b disable  0x0000000d 
- 00015209  0x0000136c nbranch  0x00003a6d , 0x00000018 
- 00015210  0x0000136d rtn 
- 00015211  0x00001370 set0  0x00000025 , 0x00000000 
- 00015212  0x00001371 bpatch  0x0000009e , 0x00004013 
- 00015213  0x00001372 enable  0x0000000d 
- 00015214  0x00001373 correlate  0x0000003e , 0x00000003 
- 00015215  0x00001374 disable  0x0000000d 
- 00015216  0x00001375 nbranch  0x00003a6d , 0x00000018 
- 00015217  0x00001376 arg  0x000003bb , 0x00000029 
- 00015218  0x00001377 and_into  0x000001fc , 0x00000028 
- 00015219  0x00001378 rtn 
- 00015220  0x0000137c set0  0x00000025 , 0x00000000 
- 00015221  0x0000137d bpatch  0x0000009f , 0x00004013 
- 00015222  0x0000137e iforce  0x00000011 
- 00015223  0x0000137f deposit  0x00000021 
- 00015224  0x00001380 iadd  0x00000002 , 0x0000000b 
- 00015225  0x00001381 copy  0x0000000b , 0x0000003f 
- 00015226  0x00001382 store  0x00000004 , 0x0000416a 
- 00015227  0x00001383 deposit  0x00000011 
- 00015228  0x00001384 rtn 
- 00015229  0x00001388 copy  0x0000003f , 0x00000002 
- 00015230  0x00001389 set0  0x00000025 , 0x00000000 
- 00015231  0x0000138a bpatch  0x000000a0 , 0x00004014 
- 00015232  0x0000138b copy  0x00000002 , 0x0000003f 
- 00015233  0x0000138c call  0x00007e91 
- 00015234  0x0000138d lshift16  0x00000021 , 0x0000003f 
- 00015235  0x0000138e set1  0x0000002c , 0x0000003f 
- 00015236  0x0000138f call  0x00007e7a 
- 00015237  0x00001390 set0  0x0000002c , 0x0000003f 
- 00015238  0x00001391 call  0x00003bda 
- 00015239  0x00001392 call  0x00007e7a 
- 00015240  0x00001393 rtn  0x00000028 
- 00015241  0x00001394 call  0x00007e84 
- 00015242  0x00001395 iforce  0x0000001b 
- 00015243  0x00001396 until  0x0000003e , 0x00000003 
- 00015244  0x00001397 rtn 
- 00015245  0x0000139b set0  0x00000025 , 0x00000000 
- 00015246  0x0000139c bpatch  0x000000a1 , 0x00004014 
- 00015247  0x0000139d branch  0x00003b93 , 0x00000030 
- 00015248  0x0000139e until  0x00000029 , 0x00000026 
- 00015249  0x000013a0 copy  0x00000028 , 0x00000002 
- 00015250  0x000013a1 branch  0x00003b96 
- 00015251  0x000013a3 branch  0x00003b95 , 0x0000002e 
- 00015252  0x000013a4 until  0x00000023 , 0x00000026 
- 00015253  0x000013a6 copy  0x00000022 , 0x00000002 
- 00015254  0x000013a8 branch  0x00003ba3 , 0x00000028 
- 00015255  0x000013a9 compare  0x00000001 , 0x00000002 , 0x00000003 
- 00015256  0x000013aa nbranch  0x00003b8d , 0x00000001 
- 00015257  0x000013ac set0  0x00000025 , 0x00000000 
- 00015258  0x000013ad bpatch  0x000000a2 , 0x00004014 
- 00015259  0x000013ae fetch  0x00000001 , 0x00000030 
- 00015260  0x000013af rtnbit0  0x00000000 
- 00015261  0x000013b0 fetch  0x00000004 , 0x0000416a 
- 00015262  0x000013b1 isub  0x00000002 , 0x0000003f 
- 00015263  0x000013b2 nrtn  0x00000002 
- 00015264  0x000013b3 sub  0x0000003f , 0x000000ff , 0x0000003e 
- 00015265  0x000013b4 branch  0x00003b8d , 0x00000002 
- 00015266  0x000013b5 rtn 
- 00015267  0x000013b7 compare  0x00000003 , 0x00000002 , 0x00000003 
- 00015268  0x000013b8 nbranch  0x00003b8d , 0x00000001 
- 00015269  0x000013b9 branch  0x00003b99 
- 00015270  0x000013bc set0  0x00000025 , 0x00000000 
- 00015271  0x000013bd bpatch  0x000000a3 , 0x00004014 
- 00015272  0x000013be arg  0x00000600 , 0x0000000b 
- 00015273  0x000013bf branch  0x00003b8d 
- 00015274  0x000013c2 disable  0x00000028 
- 00015275  0x000013c3 branch  0x00003ba6 
- 00015276  0x000013c6 enable  0x00000028 
- 00015277  0x000013c7 branch  0x00003ba6 
- 00015278  0x000013ca set0  0x00000025 , 0x00000000 
- 00015279  0x000013cb bpatch  0x000000a4 , 0x00004014 
- 00015280  0x000013cc call  0x00003b41 
- 00015281  0x000013cd disable  0x00000021 
- 00015282  0x000013ce enable  0x00000020 
- 00015283  0x000013cf rtn 
- 00015284  0x000013d4 set0  0x00000025 , 0x00000000 
- 00015285  0x000013d5 bpatch  0x000000a5 , 0x00004014 
- 00015286  0x000013d6 arg  0x00000e43 , 0x0000000b 
- 00015287  0x000013d7 until  0x00000023 , 0x00000026 
- 00015288  0x000013d8 pulse  0x00000016 
- 00015289  0x000013d9 rtn 
- 00015290  0x000013dc set0  0x00000025 , 0x00000000 
- 00015291  0x000013dd bpatch  0x000000a6 , 0x00004014 
- 00015292  0x000013de arg  0x00000d00 , 0x0000000b 
- 00015293  0x000013df until  0x00000023 , 0x00000026 
- 00015294  0x000013e0 rtn 
- 00015295  0x000013e4 set0  0x00000025 , 0x00000000 
- 00015296  0x000013e5 bpatch  0x000000a7 , 0x00004014 
- 00015297  0x000013e6 arg  0x00000e43 , 0x0000000b 
- 00015298  0x000013e7 until  0x00000029 , 0x00000026 
- 00015299  0x000013e8 pulse  0x00000016 
- 00015300  0x000013e9 rtn 
- 00015301  0x000013ec set0  0x00000025 , 0x00000000 
- 00015302  0x000013ed bpatch  0x000000a8 , 0x00004015 
- 00015303  0x000013ee preload  0x00000009 
- 00015304  0x000013ef enable  0x0000001d 
- 00015305  0x000013f0 set1  0x00000000 , 0x00000015 
- 00015306  0x000013f1 inject  0x00000003 , 0x00000048 
- 00015307  0x000013f2 disable  0x0000001d 
- 00015308  0x000013f3 rtn 
- 00015309  0x000013f7 copy  0x00000025 , 0x00000002 
- 00015310  0x000013f8 or_into  0x00000060 , 0x00000002 
- 00015311  0x000013f9 copy  0x00000002 , 0x0000000e 
- 00015312  0x000013fa rtn 
- 00015313  0x00001400 set0  0x00000025 , 0x00000000 
- 00015314  0x00001401 bpatch  0x000000a9 , 0x00004015 
- 00015315  0x00001402 fetch  0x00000001 , 0x00004130 
- 00015316  0x00001403 increase  0x00000001 , 0x0000003f 
- 00015317  0x00001404 bne  0x00000007 , 0x00003bd7 
- 00015318  0x00001405 force  0x00000001 , 0x0000003f 
- 00015319  0x00001407 store  0x00000001 , 0x00004130 
- 00015320  0x00001408 iforce  0x00000004 
- 00015321  0x00001409 rtn 
- 00015322  0x0000140c copy  0x00000019 , 0x00000002 
- 00015323  0x0000140d rtn  0x00000029 
- 00015324  0x0000140e copy  0x0000001a , 0x00000002 
- 00015325  0x0000140f rtn 
- 00015326  0x00001412 deposit  0x00000022 
- 00015327  0x00001413 rtn  0x00000029 
- 00015328  0x00001414 deposit  0x00000028 
- 00015329  0x00001415 rtn 
- 00015330  0x00001419 set0  0x00000025 , 0x00000000 
- 00015331  0x0000141a bpatch  0x000000aa , 0x00004015 
- 00015332  0x0000141b fetcht  0x00000004 , 0x0000004d 
- 00015333  0x0000141c call  0x00003bde 
- 00015334  0x0000141d isub  0x00000002 , 0x0000000b 
- 00015335  0x0000141e deposit  0x0000000b 
- 00015336  0x0000141f fetcht  0x00000002 , 0x00000051 
- 00015337  0x00001420 lshift  0x00000002 , 0x00000002 
- 00015338  0x00001421 isub  0x00000002 , 0x0000003f 
- 00015339  0x00001422 rtn 
- 00015340  0x00001425 set0  0x00000025 , 0x00000000 
- 00015341  0x00001426 bpatch  0x000000ab , 0x00004015 
- 00015342  0x00001427 call  0x00003bde 
- 00015343  0x00001428 store  0x00000004 , 0x0000004d 
- 00015344  0x00001429 rtn 
- 00015345  0x0000142c branch  0x00003bf1 
- 00015346  0x0000142f branch  0x00003bf2 
- 00015347  0x00001432 rtn  0x00000034 
- 00015348  0x00001434 rshift  0x0000003f , 0x0000003f 
- 00015349  0x00001435 increase  0xfffffffd , 0x0000003f 
- 00015350  0x00001437 increase  0xffffffff , 0x0000003f 
- 00015351  0x00001438 nbranch  0x00003bf6 , 0x00000005 
- 00015352  0x00001439 force  0x00000000 , 0x0000003f 
- 00015353  0x0000143a rtn 
- 00015354  0x00001440 arg  0x00000010 , 0x00000039 
- 00015355  0x00001441 arg  0x00000000 , 0x00000005 
- 00015356  0x00001442 call  0x00007e3b 
- 00015357  0x00001443 arg  0x000003c0 , 0x00000005 
- 00015358  0x00001444 arg  0x0000000a , 0x00000039 
- 00015359  0x00001445 call  0x00007e3b 
- 00015360  0x00001446 jam  0x00000000 , 0x000007de 
- 00015361  0x00001447 jam  0x00000000 , 0x00000b7d 
- 00015362  0x00001448 jam  0x00000000 , 0x0000040d 
- 00015363  0x00001449 jam  0x00000000 , 0x00000189 
- 00015364  0x0000144a jam  0x00000000 , 0x0000044d 
- 00015365  0x0000144b set0  0x00000025 , 0x00000000 
- 00015366  0x0000144c bpatch  0x000000ac , 0x00004015 
- 00015367  0x0000144d jam  0x00000000 , 0x00000177 
- 00015368  0x0000144e jam  0x00000000 , 0x00000153 
- 00015369  0x0000144f jam  0x00000000 , 0x0000015e 
- 00015370  0x00001450 setarg  0x009e8b33 
- 00015371  0x00001451 store  0x00000003 , 0x00004147 
- 00015372  0x00001452 setarg  0x00000153 
- 00015373  0x00001453 store  0x00000002 , 0x00000083 
- 00015374  0x00001454 jam  0x0000001e , 0x00000085 
- 00015375  0x00001455 jam  0x00000001 , 0x00000086 
- 00015376  0x00001456 jam  0x00000007 , 0x00000088 
- 00015377  0x00001457 setarg  0x0012e904 
- 00015378  0x00001458 store  0x00000003 , 0x00000080 
- 00015379  0x00001459 setarg  0x00000a04 
- 00015380  0x0000145a store  0x00000003 , 0x000046fd 
- 00015381  0x0000145b setarg  0x000012e9 
- 00015382  0x0000145c store  0x00000002 , 0x00004700 
- 00015383  0x0000145d jam  0x00000060 , 0x0000008f 
- 00015384  0x0000145e jam  0x00000005 , 0x00004171 
- 00015385  0x0000145f jam  0x00000002 , 0x00000014 
- 00015386  0x00001460 call  0x000075cd 
- 00015387  0x00001461 set0  0x00000025 , 0x00000000 
- 00015388  0x00001462 bpatch  0x000000ad , 0x00004015 
- 00015389  0x00001463 rtn  0x0000002b 
- 00015390  0x00001464 setarg  0x00000000 
- 00015391  0x00001465 store  0x00000002 , 0x00000091 
- 00015392  0x00001466 rshift  0x00000022 , 0x0000003f 
- 00015393  0x00001467 store  0x00000004 , 0x00004134 
- 00015394  0x00001468 rtn 
- 00015395  0x0000146d setarg  0x000000aa , 0x0000003f 
- 00015396  0x0000146e arg  0x000000d3 , 0x00000005 
- 00015397  0x0000146f force  0x0000001e , 0x00000039 
- 00015398  0x00001471 istore  0x00000001 , 0x00000005 
- 00015399  0x00001472 loop  0x00003c26 
- 00015400  0x00001473 rtn 
- 00015401  0x00001476 hjam  0x00000002 , 0x00000907 
- 00015402  0x00001477 hjam  0x0000001f , 0x00000908 
- 00015403  0x00001478 hjam  0x0000001f , 0x00000909 
- 00015404  0x00001479 hjam  0x000000e0 , 0x0000090a 
- 00015405  0x0000147a hjam  0x0000004e , 0x0000090b 
- 00015406  0x0000147b hjam  0x00000045 , 0x00008912 
- 00015407  0x0000147c hjam  0x00000000 , 0x00000953 
- 00015408  0x0000147e hjam  0x000000fb , 0x0000094c 
- 00015409  0x0000147f hjam  0x000000ef , 0x0000094d 
- 00015410  0x00001480 hjam  0x0000000c , 0x0000094e 
- 00015411  0x00001482 hjam  0x00000088 , 0x0000096f 
- 00015412  0x00001483 hjam  0x00000030 , 0x00000973 
- 00015413  0x00001486 hjam  0x00000000 , 0x00000953 
- 00015414  0x00001487 hjam  0x000000c9 , 0x00000956 
- 00015415  0x00001488 hjam  0x0000006c , 0x00000958 
- 00015416  0x00001489 hjam  0x00000050 , 0x00000959 
- 00015417  0x0000148a rtn 
- 00015418  0x0000148e hjam  0x000000a9 , 0x00000930 
- 00015419  0x0000148f hjam  0x000000b1 , 0x0000092f 
- 00015420  0x00001490 hjam  0x000000b9 , 0x0000092e 
- 00015421  0x00001491 hjam  0x000000ad , 0x0000092d 
- 00015422  0x00001492 hjam  0x000000b1 , 0x0000092c 
- 00015423  0x00001493 hjam  0x000000b5 , 0x0000092b 
- 00015424  0x00001494 hjam  0x000000ba , 0x0000092a 
- 00015425  0x00001495 hjam  0x000000be , 0x00000929 
- 00015426  0x00001496 hjam  0x000000c2 , 0x00000928 
- 00015427  0x00001497 hjam  0x000000c6 , 0x00000927 
- 00015428  0x00001498 hjam  0x000000ca , 0x00000926 
- 00015429  0x00001499 hjam  0x000000ce , 0x00000925 
- 00015430  0x0000149a hjam  0x000000d2 , 0x00000924 
- 00015431  0x0000149b hjam  0x000000d6 , 0x00000923 
- 00015432  0x0000149c hjam  0x000000da , 0x00000922 
- 00015433  0x0000149d hjam  0x000000de , 0x00000921 
- 00015434  0x0000149e hjam  0x000000e2 , 0x00000920 
- 00015435  0x0000149f hjam  0x000000e6 , 0x0000091f 
- 00015436  0x000014a0 hjam  0x000000ea , 0x0000091e 
- 00015437  0x000014a1 hjam  0x000000ee , 0x0000091d 
- 00015438  0x000014a2 hjam  0x000000f2 , 0x0000091c 
- 00015439  0x000014a3 hjam  0x000000f6 , 0x0000091b 
- 00015440  0x000014a4 hjam  0x000000fb , 0x0000091a 
- 00015441  0x000014a6 hjam  0x000000f5 , 0x00000947 
- 00015442  0x000014a7 hjam  0x000000e5 , 0x00000946 
- 00015443  0x000014a8 hjam  0x000000d5 , 0x00000945 
- 00015444  0x000014a9 hjam  0x000000d8 , 0x00000944 
- 00015445  0x000014aa hjam  0x000000c9 , 0x00000943 
- 00015446  0x000014ab hjam  0x000000c8 , 0x00000942 
- 00015447  0x000014ac hjam  0x00000089 , 0x00000941 
- 00015448  0x000014ad hjam  0x00000088 , 0x00000940 
- 00015449  0x000014ae hjam  0x00000087 , 0x0000093f 
- 00015450  0x000014af hjam  0x00000048 , 0x0000093e 
- 00015451  0x000014b0 hjam  0x00000009 , 0x0000093d 
- 00015452  0x000014b1 hjam  0x00000008 , 0x0000093c 
- 00015453  0x000014b2 hjam  0x000000c9 , 0x0000093b 
- 00015454  0x000014b3 hjam  0x000000c8 , 0x0000093a 
- 00015455  0x000014b4 hjam  0x000000c7 , 0x00000939 
- 00015456  0x000014b5 hjam  0x000000c6 , 0x00000938 
- 00015457  0x000014b6 hjam  0x000000c5 , 0x00000937 
- 00015458  0x000014b7 hjam  0x000000c4 , 0x00000936 
- 00015459  0x000014b8 hjam  0x000000c3 , 0x00000935 
- 00015460  0x000014b9 hjam  0x000000c2 , 0x00000934 
- 00015461  0x000014ba hjam  0x000000c1 , 0x00000933 
- 00015462  0x000014bb hjam  0x000000c0 , 0x00000932 
- 00015463  0x000014bc hjam  0x00000080 , 0x00000931 
- 00015464  0x000014bd rtn 
- 00015465  0x000014c2 enable  0x00000036 
- 00015466  0x000014c3 setarg  0x008e89be 
- 00015467  0x000014c4 lshift8  0x0000003f , 0x0000003f 
- 00015468  0x000014c5 or_into  0x000000d6 , 0x0000003f 
- 00015469  0x000014c6 iforce  0x00000009 
- 00015470  0x000014c7 hjam  0x00000007 , 0x00000914 
- 00015471  0x000014c8 hjam  0x000000a0 , 0x0000090a 
- 00015472  0x000014c9 hjam  0x0000008f , 0x0000090d 
- 00015473  0x000014ca hjam  0x0000000f , 0x00000911 
- 00015474  0x000014cb hjam  0x00000087 , 0x00000912 
- 00015475  0x000014cc rtn 
- 00015476  0x000014d2 setarg  0x0000ee21 
- 00015477  0x000014d3 hstore  0x00000002 , 0x00008050 
- 00015478  0x000014d4 hfetch  0x00000001 , 0x0000813e 
- 00015479  0x000014d5 bbit0  0x00000003 , 0x00006725 
- 00015480  0x000014d6 enable  0x0000002b 
- 00015481  0x000014d7 bbit0  0x00000007 , 0x00003c7f 
- 00015482  0x000014d8 disable  0x0000002b 
- 00015483  0x000014d9 deposit  0x00000027 
- 00015484  0x000014da nbranch  0x00003c7f , 0x00000034 
- 00015485  0x000014db arg  0xffffffff , 0x00000002 
- 00015486  0x000014dc branch  0x00003cec 
- 00015487  0x000014de hfetch  0x00000003 , 0x0000813c 
- 00015488  0x000014df hstore  0x00000003 , 0x0000804c 
- 00015489  0x000014e0 ifetch  0x00000001 , 0x00000006 
- 00015490  0x000014e1 or_into  0x000000ef , 0x0000003f 
- 00015491  0x000014e2 istore  0x00000001 , 0x00000005 
- 00015492  0x000014e3 call  0x00003db2 
- 00015493  0x000014e4 hfetch  0x00000001 , 0x0000804f 
- 00015494  0x000014e5 set1  0x00000004 , 0x0000003f 
- 00015495  0x000014e6 hstore  0x00000001 , 0x0000804f 
- 00015496  0x000014e7 call  0x00003db2 
- 00015497  0x000014e8 call  0x00003c90 , 0x0000002b 
- 00015498  0x000014e9 hfetch  0x00000001 , 0x0000804e 
- 00015499  0x000014ea set0  0x00000003 , 0x0000003f 
- 00015500  0x000014eb hstore  0x00000001 , 0x0000804e 
- 00015501  0x000014ec call  0x00003db2 
- 00015502  0x000014ed rtn  0x0000002b 
- 00015503  0x000014ee branch  0x00006725 
- 00015504  0x000014f1 fetch  0x00000001 , 0x00004239 
- 00015505  0x000014f2 hstore  0x00000001 , 0x00008086 
- 00015506  0x000014f3 fetch  0x00000003 , 0x0000422e 
- 00015507  0x000014f4 hstore  0x00000003 , 0x00008080 
- 00015508  0x000014f5 fetch  0x00000004 , 0x00004222 
- 00015509  0x000014f6 hstore  0x00000004 , 0x00008074 
- 00015510  0x000014f7 fetch  0x00000004 , 0x0000421e 
- 00015511  0x000014f8 hstore  0x00000004 , 0x00008070 
- 00015512  0x000014f9 fetch  0x00000008 , 0x00004226 
- 00015513  0x000014fa hstore  0x00000008 , 0x00008078 
- 00015514  0x000014fb fetch  0x00000008 , 0x00004231 
- 00015515  0x000014fc iforce  0x00000000 
- 00015516  0x000014fd hfetch  0x00000008 , 0x00008140 
- 00015517  0x000014fe store  0x00000008 , 0x000000a3 
- 00015518  0x000014ff call  0x00006781 
- 00015519  0x00001500 rtn 
- 00015520  0x00001503 deposit  0x00000000 
- 00015521  0x00001504 store  0x00000008 , 0x00004231 
- 00015522  0x00001505 hfetch  0x00000008 , 0x00008070 
- 00015523  0x00001506 store  0x00000008 , 0x0000421e 
- 00015524  0x00001507 ifetch  0x00000008 , 0x00000006 
- 00015525  0x00001508 istore  0x00000008 , 0x00000005 
- 00015526  0x00001509 hfetch  0x00000003 , 0x00008080 
- 00015527  0x0000150a store  0x00000003 , 0x0000422e 
- 00015528  0x0000150b hfetch  0x00000001 , 0x00008086 
- 00015529  0x0000150c store  0x00000001 , 0x00004239 
- 00015530  0x0000150d branch  0x00003db8 
- 00015531  0x00001510 hfetch  0x00000001 , 0x000080b4 
- 00015532  0x00001511 nbranch  0x00003cb1 , 0x00000034 
- 00015533  0x00001512 fetch  0x00000003 , 0x00004210 
- 00015534  0x00001513 nrtn  0x00000034 
- 00015535  0x00001514 hjam  0x000000c0 , 0x000080b4 
- 00015536  0x00001515 hjam  0x00000080 , 0x00008006 
- 00015537  0x00001517 hfetch  0x00000001 , 0x0000812d 
- 00015538  0x00001518 rtnbit0  0x00000001 
- 00015539  0x00001519 hfetch  0x00000003 , 0x00008149 
- 00015540  0x0000151a store  0x00000003 , 0x00004210 
- 00015541  0x0000151b rtn 
- 00015542  0x00001520 set0  0x00000025 , 0x00000000 
- 00015543  0x00001521 bpatch  0x000000ae , 0x00004015 
- 00015544  0x00001522 deposit  0x0000001a 
- 00015545  0x00001523 call  0x00007e78 
- 00015546  0x00001524 fetcht  0x00000004 , 0x00004200 
- 00015547  0x00001525 sub  0x00000002 , 0x000000ff , 0x0000003e 
- 00015548  0x00001526 rtn  0x00000002 
- 00015549  0x00001527 lshift8  0x0000003f , 0x0000003f 
- 00015550  0x00001528 lshift4  0x0000003f , 0x0000003f 
- 00015551  0x00001529 idiv  0x00000002 
- 00015552  0x0000152a call  0x00007efd 
- 00015553  0x0000152b quotient  0x0000003f 
- 00015554  0x0000152c arg  0x000000c8 , 0x00000002 
- 00015555  0x0000152d call  0x00007f2e 
- 00015556  0x0000152e store  0x00000001 , 0x0000009b 
- 00015557  0x0000152f nbranch  0x00003cc7 , 0x00000028 
- 00015558  0x00001530 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00015559  0x00001532 fetcht  0x00000003 , 0x00004210 
- 00015560  0x00001533 iadd  0x00000002 , 0x0000003f 
- 00015561  0x00001534 store  0x00000003 , 0x00004210 
- 00015562  0x00001536 setarg  0x00000000 
- 00015563  0x00001537 store  0x00000004 , 0x00004200 
- 00015564  0x00001538 rtn 
- 00015565  0x0000153c set0  0x00000025 , 0x00000000 
- 00015566  0x0000153d bpatch  0x000000af , 0x00004015 
- 00015567  0x0000153e call  0x00003db8 
- 00015568  0x0000153f hfetch  0x00000004 , 0x00008138 
- 00015569  0x00001540 set0  0x0000000f , 0x0000003f 
- 00015570  0x00001541 hstore  0x00000004 , 0x0000804c 
- 00015571  0x00001542 call  0x00003db0 
- 00015572  0x00001544 arg  0xffffffff , 0x00000002 
- 00015573  0x00001545 fetch  0x00000001 , 0x000041f8 
- 00015574  0x00001546 store  0x00000001 , 0x0000421d 
- 00015575  0x00001547 fetch  0x00000001 , 0x0000421b 
- 00015576  0x00001548 set1  0x00000007 , 0x0000003f 
- 00015577  0x00001549 store  0x00000001 , 0x0000421b 
- 00015578  0x0000154d set0  0x00000025 , 0x00000000 
- 00015579  0x0000154e bpatch  0x000000b0 , 0x00004016 
- 00015580  0x0000154f fetch  0x00000004 , 0x00004200 
- 00015581  0x00001550 iadd  0x00000002 , 0x0000003f 
- 00015582  0x00001551 store  0x00000004 , 0x00004200 
- 00015583  0x00001552 call  0x00003ca0 
- 00015584  0x00001553 fetch  0x00000005 , 0x00004219 
- 00015585  0x00001554 hstore  0x00000004 , 0x0000804c 
- 00015586  0x00001555 rshift32  0x0000003f , 0x00000011 
- 00015587  0x00001556 until  0x0000003e , 0x00000033 
- 00015588  0x00001557 deposit  0x00000019 
- 00015589  0x00001558 store  0x00000006 , 0x00004204 
- 00015590  0x00001559 hjam  0x00000002 , 0x00008005 
- 00015591  0x0000155a until  0x0000003e , 0x00000033 
- 00015592  0x0000155b until  0x0000003e , 0x00000033 
- 00015593  0x0000155c deposit  0x00000011 
- 00015594  0x0000155d hstore  0x00000001 , 0x0000804f 
- 00015595  0x0000155e hjam  0x00000002 , 0x00008005 
- 00015596  0x00001560 until  0x0000003e , 0x00000033 
- 00015597  0x00001561 until  0x0000003e , 0x00000033 
- 00015598  0x00001562 hstoret  0x00000004 , 0x0000804c 
- 00015599  0x00001563 hjam  0x00000010 , 0x00008005 
- 00015600  0x00001564 until  0x0000003e , 0x0000003f 
- 00015601  0x0000156a set0  0x00000025 , 0x00000000 
- 00015602  0x0000156b bpatch  0x000000b1 , 0x00004016 
- 00015603  0x0000156c setarg  0x00000000 
- 00015604  0x0000156d copy  0x00000027 , 0x0000003e 
- 00015605  0x0000156e branch  0x00003cfd , 0x00000005 
- 00015606  0x0000156f hfetch  0x00000001 , 0x0000813c 
- 00015607  0x00001570 hfetcht  0x00000001 , 0x0000813d 
- 00015608  0x00001571 isub  0x00000002 , 0x0000003e 
- 00015609  0x00001572 branch  0x00003cfb , 0x00000002 
- 00015610  0x00001573 deposit  0x00000002 
- 00015611  0x00001575 isub  0x00000027 , 0x0000003f 
- 00015612  0x00001576 increase  0x00000001 , 0x0000003f 
- 00015613  0x00001578 increase  0x00000008 , 0x0000003f 
- 00015614  0x00001579 until  0x0000003e , 0x00000033 
- 00015615  0x0000157a iadd  0x00000031 , 0x0000003f 
- 00015616  0x0000157b fetcht  0x00000004 , 0x000041fc 
- 00015617  0x0000157c iadd  0x00000002 , 0x0000003f 
- 00015618  0x0000157d fetcht  0x00000003 , 0x00004210 
- 00015619  0x0000157e imul32  0x00000002 , 0x0000003f 
- 00015620  0x0000157f rshift8  0x0000003f , 0x0000003f 
- 00015621  0x00001580 rshift4  0x0000003f , 0x0000003f 
- 00015622  0x00001581 increase  0x0000006e , 0x0000003f 
- 00015623  0x00001582 arg  0x00000ea6 , 0x00000002 
- 00015624  0x00001583 idiv  0x00000002 
- 00015625  0x00001584 call  0x00007efd 
- 00015626  0x00001585 quotient  0x0000003f 
- 00015627  0x00001586 lshift16  0x0000003f , 0x0000003f 
- 00015628  0x00001587 remainder  0x00000002 
- 00015629  0x00001588 ior  0x00000002 , 0x0000003f 
- 00015630  0x00001589 fetcht  0x00000006 , 0x00004204 
- 00015631  0x0000158a call  0x00007e6d 
- 00015632  0x0000158b copy  0x00000002 , 0x00000019 
- 00015633  0x0000158c fetch  0x00000006 , 0x00004048 
- 00015634  0x0000158d call  0x000039c0 
- 00015635  0x0000158e deposit  0x0000001a 
- 00015636  0x0000158f store  0x00000006 , 0x00000161 
- 00015637  0x00001590 deposit  0x00000027 
- 00015638  0x00001591 istore  0x00000001 , 0x00000005 
- 00015639  0x00001592 hfetch  0x00000001 , 0x0000811d 
- 00015640  0x00001593 or_into  0x000000f0 , 0x0000003f 
- 00015641  0x00001594 istore  0x00000001 , 0x00000005 
- 00015642  0x00001595 call  0x00007f52 
- 00015643  0x00001596 rtn 
- 00015644  0x00001599 set0  0x00000025 , 0x00000000 
- 00015645  0x0000159a bpatch  0x000000b2 , 0x00004016 
- 00015646  0x0000159b call  0x00003cab 
- 00015647  0x0000159c fetch  0x00000003 , 0x00004210 
- 00015648  0x0000159d rtn  0x00000034 
- 00015649  0x0000159e fetch  0x00000001 , 0x00004131 
- 00015650  0x0000159f rtn  0x00000034 
- 00015651  0x000015a0 call  0x00003dca 
- 00015652  0x000015a1 nrtn  0x00000034 
- 00015653  0x000015a3 fetch  0x00000001 , 0x00004040 
- 00015654  0x000015a4 compare  0x00000003 , 0x0000003f , 0x00000007 
- 00015655  0x000015a5 nbranch  0x00003d4d , 0x00000001 
- 00015656  0x000015a6 fetch  0x00000002 , 0x00004042 
- 00015657  0x000015a7 rtn  0x00000034 
- 00015658  0x000015a8 rtn  0x0000002b 
- 00015659  0x000015a9 set0  0x00000025 , 0x00000000 
- 00015660  0x000015aa bpatch  0x000000b3 , 0x00004016 
- 00015661  0x000015ac fetcht  0x00000001 , 0x000000a2 
- 00015662  0x000015ad fetch  0x00000002 , 0x00004042 
- 00015663  0x000015ae imul32  0x00000002 , 0x0000003f 
- 00015664  0x000015af rshift4  0x00000002 , 0x00000002 
- 00015665  0x000015b0 rshift2  0x00000002 , 0x00000002 
- 00015666  0x000015b1 isub  0x00000002 , 0x0000003f 
- 00015667  0x000015b2 fetcht  0x00000004 , 0x00004044 
- 00015668  0x000015b3 iadd  0x00000002 , 0x0000003f 
- 00015669  0x000015b4 fetcht  0x00000001 , 0x000041f7 
- 00015670  0x000015b5 isub  0x00000002 , 0x0000003f 
- 00015671  0x000015b6 lshift16  0x0000003f , 0x00000030 
- 00015672  0x000015b7 set0  0x00000025 , 0x00000000 
- 00015673  0x000015b8 bpatch  0x000000b4 , 0x00004016 
- 00015674  0x000015b9 fetch  0x00000002 , 0x0000404e 
- 00015675  0x000015ba rshift  0x0000003f , 0x0000003f 
- 00015676  0x000015bb call  0x00007e91 
- 00015677  0x000015bc deposit  0x00000030 
- 00015678  0x000015bd call  0x00007e7a 
- 00015679  0x000015be copy  0x0000001a , 0x00000002 
- 00015680  0x000015bf call  0x00007e78 
- 00015681  0x000015c0 rtn  0x00000028 
- 00015682  0x000015c2 call  0x00007e8a 
- 00015683  0x000015c4 set0  0x00000025 , 0x00000000 
- 00015684  0x000015c5 bpatch  0x000000b5 , 0x00004016 
- 00015685  0x000015c6 fetch  0x00000001 , 0x00004219 
- 00015686  0x000015c7 isub  0x00000002 , 0x0000003e 
- 00015687  0x000015c8 branch  0x00003cca , 0x00000002 
- 00015688  0x000015c9 storet  0x00000004 , 0x000041fc 
- 00015689  0x000015ca call  0x00003ea9 
- 00015690  0x000015cb call  0x0000530c 
- 00015691  0x000015cc fetcht  0x00000004 , 0x000041fc 
- 00015692  0x000015cd branch  0x00003cda 
- 00015693  0x000015d0 set0  0x00000025 , 0x00000000 
- 00015694  0x000015d1 bpatch  0x000000b6 , 0x00004016 
- 00015695  0x000015d2 fetch  0x00000001 , 0x00004040 
- 00015696  0x000015d3 rtnbit1  0x00000000 
- 00015697  0x000015d4 rtnbit1  0x00000003 
- 00015698  0x000015d5 fetch  0x00000001 , 0x000047dc 
- 00015699  0x000015d6 branch  0x00003d56 , 0x00000034 
- 00015700  0x000015d7 fetch  0x00000001 , 0x00004793 
- 00015701  0x000015d8 rtn  0x00000034 
- 00015702  0x000015da fetch  0x00000001 , 0x000043d8 
- 00015703  0x000015db nbranch  0x00003d5a , 0x00000034 
- 00015704  0x000015dc fetch  0x00000001 , 0x00004133 
- 00015705  0x000015dd rtn  0x00000034 
- 00015706  0x000015df fetch  0x00000002 , 0x000041f5 
- 00015707  0x000015e0 rtn  0x00000034 
- 00015708  0x000015e2 fetcht  0x00000001 , 0x000041f7 
- 00015709  0x000015e3 isub  0x00000002 , 0x0000003f 
- 00015710  0x000015e4 arg  0x00001d4c , 0x00000002 
- 00015711  0x000015e5 imul32  0x00000002 , 0x0000003f 
- 00015712  0x000015e6 branch  0x00003d42 
- 00015713  0x000015e9 set0  0x00000025 , 0x00000000 
- 00015714  0x000015ea bpatch  0x000000b7 , 0x00004016 
- 00015715  0x000015eb disable  0x0000002b 
- 00015716  0x000015ec fetch  0x00000001 , 0x00000030 
- 00015717  0x000015ed rtnbit0  0x00000001 
- 00015718  0x000015ee nbranch  0x00003d7b , 0x0000002d 
- 00015719  0x000015ef call  0x00003d76 
- 00015720  0x000015f0 fetch  0x00000002 , 0x00004161 
- 00015721  0x000015f1 store  0x00000002 , 0x0000003e 
- 00015722  0x000015f2 fetch  0x00000001 , 0x00000047 
- 00015723  0x000015f3 bbit1  0x00000003 , 0x00003d8a 
- 00015724  0x000015f4 bmark0  0x0000000d , 0x00003d8a 
- 00015725  0x000015f5 call  0x0000527e 
- 00015726  0x000015f6 nbranch  0x00003d8a , 0x00000034 
- 00015727  0x000015f8 jam  0x00000000 , 0x000000a2 
- 00015728  0x000015f9 bmark0  0x0000000d , 0x00003d8a 
- 00015729  0x000015fa fetch  0x00000001 , 0x00004215 
- 00015730  0x000015fb branch  0x00003d8e , 0x00000034 
- 00015731  0x000015fc increase  0xffffffff , 0x0000003f 
- 00015732  0x000015fd store  0x00000001 , 0x00004215 
- 00015733  0x000015fe rtn 
- 00015734  0x00001601 jam  0x00000000 , 0x000041fa 
- 00015735  0x00001602 fetch  0x00000003 , 0x0000420a 
- 00015736  0x00001603 increase  0x00000001 , 0x0000003f 
- 00015737  0x00001604 store  0x00000003 , 0x0000420a 
- 00015738  0x00001605 rtn 
- 00015739  0x00001608 set0  0x00000025 , 0x00000000 
- 00015740  0x00001609 bpatch  0x000000b8 , 0x00004017 
- 00015741  0x0000160a fetcht  0x00000002 , 0x00004161 
- 00015742  0x0000160b rshift  0x00000002 , 0x00000002 
- 00015743  0x0000160c fetch  0x00000002 , 0x0000003e 
- 00015744  0x0000160d iadd  0x00000002 , 0x0000003f 
- 00015745  0x0000160e store  0x00000002 , 0x0000003e 
- 00015746  0x00001610 jam  0x00000000 , 0x000000a2 
- 00015747  0x00001611 fetch  0x00000003 , 0x0000420d 
- 00015748  0x00001612 increase  0x00000001 , 0x0000003f 
- 00015749  0x00001613 store  0x00000003 , 0x0000420d 
- 00015750  0x00001614 fetch  0x00000001 , 0x000041fa 
- 00015751  0x00001615 increase  0x00000001 , 0x0000003f 
- 00015752  0x00001616 store  0x00000001 , 0x000041fa 
- 00015753  0x00001617 rtn 
- 00015754  0x0000161a jam  0x00000000 , 0x000000a2 
- 00015755  0x0000161b fetch  0x00000001 , 0x00004214 
- 00015756  0x0000161c store  0x00000001 , 0x00004215 
- 00015757  0x0000161d rtn 
- 00015758  0x00001620 fetcht  0x00000001 , 0x00004213 
- 00015759  0x00001621 storet  0x00000001 , 0x000000a2 
- 00015760  0x00001622 rtn 
- 00015761  0x00001625 set0  0x00000025 , 0x00000000 
- 00015762  0x00001626 bpatch  0x000000b9 , 0x00004017 
- 00015763  0x00001627 fetch  0x00000001 , 0x00004219 
- 00015764  0x00001628 nrtn  0x00000034 
- 00015765  0x00001629 hjam  0x00000006 , 0x00008042 
- 00015766  0x0000162a setarg  0x00000f0c 
- 00015767  0x0000162b call  0x00003da7 
- 00015768  0x0000162c setarg  0x00030d40 
- 00015769  0x0000162d call  0x00003bf3 
- 00015770  0x0000162e until  0x0000003e , 0x00000033 
- 00015771  0x0000162f copy  0x00000031 , 0x00000030 
- 00015772  0x00001630 call  0x00003b36 
- 00015773  0x00001631 hjam  0x00000004 , 0x00008042 
- 00015774  0x00001632 nop  0x0000000a 
- 00015775  0x00001633 until  0x0000003e , 0x00000033 
- 00015776  0x00001634 deposit  0x00000031 
- 00015777  0x00001635 isub  0x00000030 , 0x0000003f 
- 00015778  0x00001636 increase  0x00000030 , 0x0000003f 
- 00015779  0x00001637 arg  0x000000ff , 0x00000002 
- 00015780  0x00001638 call  0x00007f2e 
- 00015781  0x00001639 store  0x00000001 , 0x00004219 
- 00015782  0x0000163a rtn 
- 00015783  0x00001640 arg  0x00000fff , 0x00000005 
- 00015784  0x00001641 iand  0x00000005 , 0x00000005 
- 00015785  0x00001642 fetch  0x00000001 , 0x00004216 
- 00015786  0x00001643 and_into  0x000000f0 , 0x0000003f 
- 00015787  0x00001644 lshift8  0x0000003f , 0x0000003f 
- 00015788  0x00001645 ior  0x00000005 , 0x0000003f 
- 00015789  0x00001646 hstore  0x00000002 , 0x0000804c 
- 00015790  0x00001647 ifetch  0x00000002 , 0x00000006 
- 00015791  0x00001648 istore  0x00000002 , 0x00000005 
- 00015792  0x0000164b setarg  0x00000001 
- 00015793  0x0000164c branch  0x00003db3 
- 00015794  0x0000164f setarg  0x00000002 
- 00015795  0x00001651 until  0x0000003e , 0x00000033 
- 00015796  0x00001652 hstore  0x00000001 , 0x00008005 
- 00015797  0x00001653 until  0x0000003e , 0x00000033 
- 00015798  0x00001654 until  0x0000003e , 0x00000033 
- 00015799  0x00001655 rtn 
- 00015800  0x00001659 set0  0x00000025 , 0x00000000 
- 00015801  0x0000165a bpatch  0x000000ba , 0x00004017 
- 00015802  0x0000165b fetch  0x00000004 , 0x000000a3 
- 00015803  0x0000165c hstore  0x00000004 , 0x0000804c 
- 00015804  0x0000165d setarg  0x00000004 
- 00015805  0x0000165e call  0x00003db3 
- 00015806  0x0000165f fetch  0x00000004 , 0x000000a7 
- 00015807  0x00001660 hstore  0x00000004 , 0x0000804c 
- 00015808  0x00001661 setarg  0x00000008 
- 00015809  0x00001662 branch  0x00003db3 
- 00015810  0x00001665 fetch  0x00000002 , 0x000041f3 
- 00015811  0x00001666 qset1  0x0000003f 
- 00015812  0x00001667 store  0x00000002 , 0x000041f3 
- 00015813  0x00001668 rtn 
- 00015814  0x0000166b fetch  0x00000002 , 0x000041f3 
- 00015815  0x0000166c qset0  0x0000003f 
- 00015816  0x0000166d store  0x00000002 , 0x000041f3 
- 00015817  0x0000166e rtn 
- 00015818  0x00001673 set0  0x00000025 , 0x00000000 
- 00015819  0x00001674 bpatch  0x000000bb , 0x00004017 
- 00015820  0x00001675 call  0x00003ea7 
- 00015821  0x00001676 fetch  0x00000002 , 0x000041f3 
- 00015822  0x00001677 copy  0x0000003f , 0x00000011 
- 00015823  0x00001678 fetch  0x00000001 , 0x0000004c 
- 00015824  0x00001679 isolate1  0x00000006 , 0x0000003f 
- 00015825  0x0000167a setflag  0x00000001 , 0x0000000b , 0x00000011 
- 00015826  0x0000167b fetch  0x00000001 , 0x00000078 
- 00015827  0x0000167c fetcht  0x00000001 , 0x0000007c 
- 00015828  0x0000167d iadd  0x00000002 , 0x0000003f 
- 00015829  0x0000167e fetcht  0x00000001 , 0x00000048 
- 00015830  0x0000167f iadd  0x00000002 , 0x0000003f 
- 00015831  0x00001680 nsetflag  0x00000034 , 0x0000000a , 0x00000011 
- 00015832  0x00001681 set0  0x00000025 , 0x00000000 
- 00015833  0x00001682 bpatch  0x000000bc , 0x00004017 
- 00015834  0x00001683 fetch  0x00000002 , 0x000002c4 
- 00015835  0x00001684 fetcht  0x00000002 , 0x000002c6 
- 00015836  0x00001685 iadd  0x00000002 , 0x0000003f 
- 00015837  0x00001686 nsetflag  0x00000034 , 0x0000000d , 0x00000011 
- 00015838  0x00001687 fetch  0x00000005 , 0x000047df 
- 00015839  0x00001688 nsetflag  0x00000034 , 0x0000000f , 0x00000011 
- 00015840  0x00001689 fetch  0x00000005 , 0x000047e4 
- 00015841  0x0000168a nsetflag  0x00000034 , 0x0000000e , 0x00000011 
- 00015842  0x0000168b fetch  0x00000001 , 0x00004272 
- 00015843  0x0000168c nsetflag  0x00000034 , 0x00000008 , 0x00000011 
- 00015844  0x0000168d fetch  0x00000001 , 0x00004132 
- 00015845  0x0000168e compare  0x0000000a , 0x0000003f , 0x000000ff 
- 00015846  0x0000168f call  0x00003df5 , 0x00000001 
- 00015847  0x00001690 set0  0x00000025 , 0x00000000 
- 00015848  0x00001691 bpatch  0x000000bd , 0x00004017 
- 00015849  0x00001692 fetch  0x00000001 , 0x00004132 
- 00015850  0x00001693 bne  0x00000001 , 0x00003dfa 
- 00015851  0x00001694 call  0x00003df5 
- 00015852  0x00001695 fetch  0x00000001 , 0x0000425e 
- 00015853  0x00001696 setflag  0x00000034 , 0x00000003 , 0x00000011 
- 00015854  0x00001697 fetch  0x00000004 , 0x000042a5 
- 00015855  0x00001698 arg  0x00001710 , 0x00000002 
- 00015856  0x00001699 iadd  0x00000002 , 0x00000002 
- 00015857  0x0000169a copy  0x00000022 , 0x0000003f 
- 00015858  0x0000169b isub  0x00000002 , 0x0000003e 
- 00015859  0x0000169c nsetflag  0x00000002 , 0x00000004 , 0x00000011 
- 00015860  0x0000169d branch  0x00003dfc 
- 00015861  0x000016a0 hfetch  0x00000002 , 0x00008112 
- 00015862  0x000016a1 nsetflag  0x00000034 , 0x00000006 , 0x00000011 
- 00015863  0x000016a2 hfetch  0x00000002 , 0x0000810e 
- 00015864  0x000016a3 nsetflag  0x00000034 , 0x00000005 , 0x00000011 
- 00015865  0x000016a4 rtn 
- 00015866  0x000016a7 setarg  0xfffffff8 
- 00015867  0x000016a8 iand  0x00000011 , 0x00000011 
- 00015868  0x000016aa copy  0x00000011 , 0x0000003f 
- 00015869  0x000016ab store  0x00000002 , 0x000041f3 
- 00015870  0x000016ac rtn  0x00000034 
- 00015871  0x000016ad rtn  0x0000002d 
- 00015872  0x000016ae enable  0x0000002b 
- 00015873  0x000016af rtn 
- 00015874  0x000016b2 hfetch  0x00000004 , 0x00008138 
- 00015875  0x000016b3 set0  0x0000001b , 0x0000003f 
- 00015876  0x000016b4 hstore  0x00000004 , 0x0000804c 
- 00015877  0x000016b5 call  0x00003db0 
- 00015878  0x000016b6 branch  0x00003bf1 
- 00015879  0x000016b9 hfetch  0x00000004 , 0x0000813c 
- 00015880  0x000016ba set1  0x00000014 , 0x0000003f 
- 00015881  0x000016bb hstore  0x00000004 , 0x0000804c 
- 00015882  0x000016bc branch  0x00003db2 
- 00015883  0x000016bf hfetch  0x00000004 , 0x0000813c 
- 00015884  0x000016c0 set0  0x00000014 , 0x0000003f 
- 00015885  0x000016c1 hstore  0x00000004 , 0x0000804c 
- 00015886  0x000016c2 branch  0x00003db2 
- 00015887  0x000016c5 set0  0x00000025 , 0x00000000 
- 00015888  0x000016c6 bpatch  0x000000be , 0x00004017 
- 00015889  0x000016c7 fetch  0x00000001 , 0x00004132 
- 00015890  0x000016c8 rtnne  0x00000001 
- 00015891  0x000016c9 call  0x00006a8b 
- 00015892  0x000016ca rtn  0x00000001 
- 00015893  0x000016cb fetch  0x00000004 , 0x00004807 
- 00015894  0x000016cc nbranch  0x00003e1a , 0x00000034 
- 00015895  0x000016cd copy  0x00000022 , 0x0000003f 
- 00015896  0x000016ce store  0x00000004 , 0x00004807 
- 00015897  0x000016cf branch  0x00006a6b 
- 00015898  0x000016d1 set0  0x00000025 , 0x00000000 
- 00015899  0x000016d2 bpatch  0x000000bf , 0x00004017 
- 00015900  0x000016d3 copy  0x00000022 , 0x0000003f 
- 00015901  0x000016d4 fetcht  0x00000004 , 0x00004807 
- 00015902  0x000016d5 isub  0x00000002 , 0x0000003f 
- 00015903  0x000016d6 arg  0x00000021 , 0x00000002 
- 00015904  0x000016d7 isub  0x00000002 , 0x0000003e 
- 00015905  0x000016d8 nrtn  0x00000002 
- 00015906  0x000016d9 setarg  0x00000000 
- 00015907  0x000016da store  0x00000004 , 0x00004807 
- 00015908  0x000016db branch  0x00004599 
- 00015909  0x000016de fetch  0x00000002 , 0x000041f1 
- 00015910  0x000016df bbit1  0x00000000 , 0x00003bf1 
- 00015911  0x000016e0 rtn 
- 00015912  0x000016e2 fetch  0x00000002 , 0x000041f1 
- 00015913  0x000016e3 bbit1  0x00000001 , 0x00003bf1 
- 00015914  0x000016e4 rtn 
- 00015915  0x000016e6 fetch  0x00000002 , 0x000041f1 
- 00015916  0x000016e7 bbit1  0x00000002 , 0x00003bf1 
- 00015917  0x000016e8 rtn 
- 00015918  0x000016eb setarg  0x00003e37 
- 00015919  0x000016ec store  0x00000002 , 0x0000428e 
- 00015920  0x000016ed setarg  0x00003e3d 
- 00015921  0x000016ee store  0x00000002 , 0x00004292 
- 00015922  0x000016ef setarg  0x00003e37 
- 00015923  0x000016f0 store  0x00000002 , 0x00004290 
- 00015924  0x000016f1 rtn  0x0000002b 
- 00015925  0x000016f2 jam  0x00000001 , 0x000047e9 
- 00015926  0x000016f3 rtn 
- 00015927  0x000016f6 fetch  0x00000001 , 0x00000030 
- 00015928  0x000016f7 bbit0  0x00000001 , 0x00005e9f 
- 00015929  0x000016f8 set1  0x0000000d , 0x00000000 
- 00015930  0x000016f9 fetch  0x00000006 , 0x0000420a 
- 00015931  0x000016fa store  0x00000006 , 0x00004703 
- 00015932  0x000016fb branch  0x00007bde 
- 00015933  0x000016ff deposit  0x00000013 
- 00015934  0x00001700 rtnne  0x00000010 
- 00015935  0x00001702 call  0x00007bb1 
- 00015936  0x00001703 fetch  0x00000001 , 0x000047eb 
- 00015937  0x00001704 beq  0x00000001 , 0x00003e3f 
- 00015938  0x00001705 call  0x00007be2 
- 00015939  0x00001706 branch  0x00003ccd 
- 00015940  0x0000170a force  0x00000002 , 0x00000002 
- 00015941  0x0000170b increase  0xfffffffe , 0x00000002 
- 00015942  0x0000170c call  0x00003a7a 
- 00015943  0x0000170d call  0x00003a91 
- 00015944  0x0000170e disable  0x00000007 
- 00015945  0x0000170f enable  0x0000001d 
- 00015946  0x00001710 set1  0x00000000 , 0x00000015 
- 00015947  0x00001711 call  0x00003bae 
- 00015948  0x00001713 fetch  0x00000001 , 0x00000000 
- 00015949  0x00001714 inject  0x00000003 , 0x00000008 
- 00015950  0x00001715 branch  0x00003e4c 
- 00015951  0x0000171c set1  0x00000025 , 0x00000000 
- 00015952  0x0000171d bpatch  0x000000cd , 0x00004039 
- 00015953  0x0000171e fetch  0x00000001 , 0x00004132 
- 00015954  0x0000171f branch  0x00003e4f , 0x00000034 
- 00015955  0x00001720 beq  0x00000006 , 0x00005aa2 
- 00015956  0x00001721 beq  0x00000007 , 0x00004b33 
- 00015957  0x00001722 beq  0x00000004 , 0x00004293 
- 00015958  0x00001723 beq  0x00000003 , 0x00004c09 
- 00015959  0x00001724 beq  0x00000001 , 0x00004461 
- 00015960  0x00001725 beq  0x00000009 , 0x00007624 
- 00015961  0x00001726 beq  0x0000000a , 0x000062ef 
- 00015962  0x00001727 beq  0x0000000c , 0x00004bf3 
- 00015963  0x00001728 beq  0x0000000d , 0x00006a8e 
- 00015964  0x00001729 beq  0x000000ff , 0x00003e2e 
- 00015965  0x0000172a bbit1  0x00000006 , 0x00006486 
- 00015966  0x0000172b rtn 
- 00015967  0x0000172e set1  0x00000025 , 0x00000000 
- 00015968  0x0000172f bpatch  0x000000ce , 0x00004039 
- 00015969  0x00001730 jam  0x00000000 , 0x00000153 
- 00015970  0x00001731 jam  0x00000000 , 0x00000189 
- 00015971  0x00001732 jam  0x00000000 , 0x0000018a 
- 00015972  0x00001733 setarg  0x00000000 
- 00015973  0x00001734 store  0x00000005 , 0x000007da 
- 00015974  0x00001735 fetch  0x00000001 , 0x00004132 
- 00015975  0x00001736 branch  0x00003e5f , 0x00000034 
- 00015976  0x00001737 beq  0x0000000a , 0x0000631f 
- 00015977  0x00001738 rtn 
- 00015978  0x0000173c call  0x00007ba1 
- 00015979  0x0000173d call  0x00007c45 
- 00015980  0x0000173e call  0x00003e73 
- 00015981  0x0000173f fetch  0x00000002 , 0x00004290 
- 00015982  0x00001740 branch  0x00007f66 
- 00015983  0x00001743 fetch  0x00000002 , 0x0000428e 
- 00015984  0x00001744 branch  0x00007f66 
- 00015985  0x00001747 fetch  0x00000002 , 0x0000428c 
- 00015986  0x00001748 branch  0x00007f66 
- 00015987  0x0000174b set1  0x00000025 , 0x00000000 
- 00015988  0x0000174c bpatch  0x000000cf , 0x00004039 
- 00015989  0x0000174e arg  0x000047df , 0x00000011 
- 00015990  0x0000174f call  0x00007f9f 
- 00015991  0x00001750 rtn  0x00000034 
- 00015992  0x00001752 copy  0x0000003f , 0x00000013 
- 00015993  0x00001753 call  0x00003e7d 
- 00015994  0x00001754 branch  0x00003ea5 
- 00015995  0x00001757 arg  0x00000000 , 0x00000013 
- 00015996  0x00001758 rtn 
- 00015997  0x0000175e beq  0x00000001 , 0x00003e92 
- 00015998  0x0000175f beq  0x00000010 , 0x00003ed9 
- 00015999  0x00001760 beq  0x00000005 , 0x00003eb6 
- 00016000  0x00001761 beq  0x00000012 , 0x00003ebd 
- 00016001  0x00001762 beq  0x00000006 , 0x00003ed5 
- 00016002  0x00001763 beq  0x00000004 , 0x00003efe 
- 00016003  0x00001764 beq  0x00000002 , 0x00003f03 
- 00016004  0x00001765 beq  0x00000013 , 0x00003efe 
- 00016005  0x00001766 beq  0x00000014 , 0x00003ecc 
- 00016006  0x00001767 beq  0x00000015 , 0x00003ed0 
- 00016007  0x00001768 beq  0x00000003 , 0x00003eaf 
- 00016008  0x00001769 beq  0x0000000b , 0x00003ec1 
- 00016009  0x0000176a beq  0x0000000c , 0x00003ec8 
- 00016010  0x0000176c beq  0x00000016 , 0x00003edd 
- 00016011  0x0000176d beq  0x00000018 , 0x00003eab 
- 00016012  0x0000176e beq  0x0000002a , 0x00003e9b 
- 00016013  0x0000176f beq  0x0000002b , 0x00003e99 
- 00016014  0x00001771 and  0x0000003f , 0x0000000f , 0x00000002 
- 00016015  0x00001772 and_into  0x000000f0 , 0x0000003f 
- 00016016  0x00001773 beq  0x00000050 , 0x00003ee1 
- 00016017  0x00001774 rtn 
- 00016018  0x00001777 fetch  0x00000002 , 0x000047f4 
- 00016019  0x00001778 set1  0x00000000 , 0x0000003f 
- 00016020  0x00001779 store  0x00000002 , 0x000047f4 
- 00016021  0x0000177a fetch  0x00000002 , 0x000042a2 
- 00016022  0x0000177b set0  0x00000000 , 0x0000003f 
- 00016023  0x0000177c store  0x00000002 , 0x000042a2 
- 00016024  0x0000177d rtn 
- 00016025  0x0000177f jam  0x00000000 , 0x00000258 
- 00016026  0x00001780 rtn 
- 00016027  0x00001783 fetch  0x00000001 , 0x00000258 
- 00016028  0x00001784 increase  0x00000001 , 0x0000003f 
- 00016029  0x00001785 store  0x00000001 , 0x00000258 
- 00016030  0x00001786 sub  0x0000003f , 0x00000001 , 0x0000003e 
- 00016031  0x00001787 branch  0x00003f6c , 0x00000002 
- 00016032  0x00001788 jam  0x00000000 , 0x00000258 
- 00016033  0x00001789 fetch  0x00000002 , 0x000042a2 
- 00016034  0x0000178a set1  0x00000009 , 0x0000003f 
- 00016035  0x0000178b store  0x00000002 , 0x000042a2 
- 00016036  0x0000178c branch  0x00003f77 
- 00016037  0x0000178f fetch  0x00000002 , 0x00004292 
- 00016038  0x00001790 branch  0x00007f66 
- 00016039  0x00001793 fetch  0x00000002 , 0x00004286 
- 00016040  0x00001794 branch  0x00007f66 
- 00016041  0x00001797 fetch  0x00000002 , 0x0000428a 
- 00016042  0x00001798 branch  0x00007f66 
- 00016043  0x0000179b fetch  0x00000002 , 0x000042a2 
- 00016044  0x0000179c set1  0x00000001 , 0x0000003f 
- 00016045  0x0000179d store  0x00000002 , 0x000042a2 
- 00016046  0x0000179e branch  0x00003fa2 
- 00016047  0x000017a1 fetch  0x00000002 , 0x000047f4 
- 00016048  0x000017a2 set1  0x00000007 , 0x0000003f 
- 00016049  0x000017a3 store  0x00000002 , 0x000047f4 
- 00016050  0x000017a4 fetch  0x00000002 , 0x000042a2 
- 00016051  0x000017a5 set1  0x00000002 , 0x0000003f 
- 00016052  0x000017a6 store  0x00000002 , 0x000042a2 
- 00016053  0x000017a7 rtn 
- 00016054  0x000017aa fetch  0x00000002 , 0x000047f4 
- 00016055  0x000017ab set1  0x00000001 , 0x0000003f 
- 00016056  0x000017ac store  0x00000002 , 0x000047f4 
- 00016057  0x000017ad fetch  0x00000002 , 0x000042a2 
- 00016058  0x000017ae set1  0x00000004 , 0x0000003f 
- 00016059  0x000017af store  0x00000002 , 0x000042a2 
- 00016060  0x000017b0 rtn 
- 00016061  0x000017b3 fetch  0x00000002 , 0x000047f4 
- 00016062  0x000017b4 set1  0x00000003 , 0x0000003f 
- 00016063  0x000017b5 store  0x00000002 , 0x000047f4 
- 00016064  0x000017b6 rtn 
- 00016065  0x000017b9 fetch  0x00000002 , 0x000047f4 
- 00016066  0x000017ba set1  0x00000005 , 0x0000003f 
- 00016067  0x000017bb store  0x00000002 , 0x000047f4 
- 00016068  0x000017bc fetch  0x00000002 , 0x000042a2 
- 00016069  0x000017bd set1  0x00000003 , 0x0000003f 
- 00016070  0x000017be store  0x00000002 , 0x000042a2 
- 00016071  0x000017bf rtn 
- 00016072  0x000017c2 fetch  0x00000002 , 0x000047f4 
- 00016073  0x000017c3 set0  0x00000005 , 0x0000003f 
- 00016074  0x000017c4 store  0x00000002 , 0x000047f4 
- 00016075  0x000017c5 rtn 
- 00016076  0x000017c8 fetch  0x00000002 , 0x000047f4 
- 00016077  0x000017c9 set1  0x00000009 , 0x0000003f 
- 00016078  0x000017ca store  0x00000002 , 0x000047f4 
- 00016079  0x000017cb rtn 
- 00016080  0x000017ce fetch  0x00000002 , 0x000047f4 
- 00016081  0x000017cf set0  0x00000009 , 0x0000003f 
- 00016082  0x000017d0 store  0x00000002 , 0x000047f4 
- 00016083  0x000017d1 jam  0x00000000 , 0x000046f8 
- 00016084  0x000017d2 branch  0x00003fa6 
- 00016085  0x000017d5 fetch  0x00000002 , 0x000047f4 
- 00016086  0x000017d6 set1  0x00000002 , 0x0000003f 
- 00016087  0x000017d7 store  0x00000002 , 0x000047f4 
- 00016088  0x000017d8 rtn 
- 00016089  0x000017db fetch  0x00000002 , 0x000042a2 
- 00016090  0x000017dc set1  0x00000000 , 0x0000003f 
- 00016091  0x000017dd store  0x00000002 , 0x000042a2 
- 00016092  0x000017de rtn 
- 00016093  0x000017e1 fetch  0x00000002 , 0x000042a2 
- 00016094  0x000017e2 set1  0x00000008 , 0x0000003f 
- 00016095  0x000017e3 store  0x00000002 , 0x000042a2 
- 00016096  0x000017e4 branch  0x00003f77 
- 00016097  0x000017e8 set1  0x00000025 , 0x00000000 
- 00016098  0x000017e9 bpatch  0x000000d0 , 0x0000403a 
- 00016099  0x000017ea storet  0x00000001 , 0x00000259 
- 00016100  0x000017ec fetch  0x00000001 , 0x00000259 
- 00016101  0x000017ed rtn  0x00000034 
- 00016102  0x000017ee increase  0xffffffff , 0x0000003f 
- 00016103  0x000017ef store  0x00000001 , 0x00000259 
- 00016104  0x000017f0 call  0x00007bb1 
- 00016105  0x000017f1 call  0x00003f60 
- 00016106  0x000017f2 call  0x00003eed 
- 00016107  0x000017f3 call  0x00003ef5 
- 00016108  0x000017f4 branch  0x00003ee4 
- 00016109  0x000017f7 fetch  0x00000001 , 0x0000429d 
- 00016110  0x000017f8 rtn  0x00000034 
- 00016111  0x000017f9 increase  0xffffffff , 0x0000003f 
- 00016112  0x000017fa store  0x00000001 , 0x0000429d 
- 00016113  0x000017fb nrtn  0x00000034 
- 00016114  0x000017fc call  0x000032ee 
- 00016115  0x000017fd branch  0x00003f9e , 0x00000005 
- 00016116  0x000017fe rtn 
- 00016117  0x00001800 fetch  0x00000002 , 0x000047f0 
- 00016118  0x00001801 rtn  0x00000034 
- 00016119  0x00001802 increase  0xffffffff , 0x0000003f 
- 00016120  0x00001803 store  0x00000002 , 0x000047f0 
- 00016121  0x00001804 nrtn  0x00000034 
- 00016122  0x00001805 call  0x00003f7e 
- 00016123  0x00001806 call  0x00003f98 
- 00016124  0x00001807 fetch  0x00000002 , 0x00004294 
- 00016125  0x00001808 branch  0x00007f66 
- 00016126  0x0000180b call  0x00003f15 
- 00016127  0x0000180d fetch  0x00000002 , 0x000047f4 
- 00016128  0x0000180e set0  0x00000007 , 0x0000003f 
- 00016129  0x0000180f store  0x00000002 , 0x000047f4 
- 00016130  0x00001810 rtn 
- 00016131  0x00001813 jam  0x00000000 , 0x0000429d 
- 00016132  0x00001814 fetch  0x00000002 , 0x000047f4 
- 00016133  0x00001815 bbit1  0x00000007 , 0x00003f08 
- 00016134  0x00001816 isolate0  0x00000001 , 0x0000003f 
- 00016135  0x00001817 call  0x00003e7b , 0x00000001 
- 00016136  0x00001819 fetch  0x00000002 , 0x000047f4 
- 00016137  0x0000181a set0  0x00000000 , 0x0000003f 
- 00016138  0x0000181b set0  0x00000001 , 0x0000003f 
- 00016139  0x0000181c set0  0x00000002 , 0x0000003f 
- 00016140  0x0000181d set0  0x00000003 , 0x0000003f 
- 00016141  0x0000181e set0  0x00000004 , 0x0000003f 
- 00016142  0x0000181f store  0x00000002 , 0x000047f4 
- 00016143  0x00001820 branch  0x00003fa6 
- 00016144  0x00001823 call  0x00003f12 
- 00016145  0x00001824 branch  0x00003f9a 
- 00016146  0x00001829 setarg  0x00000000 
- 00016147  0x0000182a store  0x00000002 , 0x000042a0 
- 00016148  0x0000182b rtn 
- 00016149  0x0000182d setarg  0x00000000 
- 00016150  0x0000182e store  0x00000002 , 0x000042a2 
- 00016151  0x0000182f rtn 
- 00016152  0x00001833 fetch  0x00000002 , 0x000042a2 
- 00016153  0x00001834 store  0x00000002 , 0x000042a0 
- 00016154  0x00001835 setarg  0x00000000 
- 00016155  0x00001836 store  0x00000002 , 0x000042a2 
- 00016156  0x00001837 rtn 
- 00016157  0x0000183a fetch  0x00000002 , 0x000042a2 
- 00016158  0x0000183b set1  0x00000007 , 0x0000003f 
- 00016159  0x0000183c store  0x00000002 , 0x000042a0 
- 00016160  0x0000183d setarg  0x00000000 
- 00016161  0x0000183e store  0x00000002 , 0x000042a2 
- 00016162  0x0000183f rtn 
- 00016163  0x00001846 call  0x0000691d 
- 00016164  0x00001847 fetch  0x00000006 , 0x00004274 
- 00016165  0x00001848 rtn 
- 00016166  0x0000184b fetch  0x00000001 , 0x0000448b 
- 00016167  0x0000184c branch  0x00003f2a , 0x00000034 
- 00016168  0x0000184d call  0x00003f96 
- 00016169  0x0000184e branch  0x00003f82 
- 00016170  0x00001850 call  0x00003f94 
- 00016171  0x00001851 branch  0x00003f88 
- 00016172  0x00001854 set1  0x00000025 , 0x00000000 
- 00016173  0x00001855 bpatch  0x000000d1 , 0x0000403a 
- 00016174  0x00001856 arg  0x00000244 , 0x00000012 
- 00016175  0x00001857 arg  0x00003f31 , 0x00000013 
- 00016176  0x00001858 branch  0x00003301 
- 00016177  0x0000185b arg  0x00000000 , 0x00000002 
- 00016178  0x0000185c bbit0  0x00000000 , 0x00003f35 
- 00016179  0x0000185d add  0x00000011 , 0x00000010 , 0x00000006 
- 00016180  0x0000185e ifetcht  0x00000006 , 0x00000006 
- 00016181  0x00001860 copy  0x00000002 , 0x0000003f 
- 00016182  0x00001861 ncall  0x00003f3a , 0x00000034 
- 00016183  0x00001862 istoret  0x00000006 , 0x00000012 
- 00016184  0x00001863 increase  0x00000006 , 0x00000012 
- 00016185  0x00001864 branch  0x00003307 
- 00016186  0x00001866 fetch  0x00000001 , 0x0000429a 
- 00016187  0x00001867 increase  0x00000001 , 0x0000003f 
- 00016188  0x00001868 store  0x00000001 , 0x0000429a 
- 00016189  0x00001869 rtn 
- 00016190  0x0000186c jam  0x00000000 , 0x0000429a 
- 00016191  0x0000186d branch  0x00003f2c 
- 00016192  0x00001870 fetch  0x00000001 , 0x000047f4 
- 00016193  0x00001871 isolate1  0x00000005 , 0x0000003f 
- 00016194  0x00001872 rtn 
- 00016195  0x00001878 setarg  0x00000000 
- 00016196  0x00001879 branch  0x00003f46 
- 00016197  0x0000187b setarg  0x0000aa55 
- 00016198  0x0000187d store  0x00000002 , 0x000002a8 
- 00016199  0x0000187e set1  0x00000025 , 0x00000000 
- 00016200  0x0000187f bpatch  0x000000d2 , 0x0000403a 
- 00016201  0x00001880 arg  0x00000002 , 0x00000002 
- 00016202  0x00001881 arg  0x000002a8 , 0x00000011 
- 00016203  0x00001882 arg  0x000000c3 , 0x00000012 
- 00016204  0x00001883 branch  0x0000683e 
- 00016205  0x00001887 set1  0x00000025 , 0x00000000 
- 00016206  0x00001888 bpatch  0x000000d3 , 0x0000403a 
- 00016207  0x00001889 arg  0x00000002 , 0x00000002 
- 00016208  0x0000188a arg  0x00000161 , 0x00000011 
- 00016209  0x0000188b arg  0x000000c3 , 0x00000012 
- 00016210  0x0000188c call  0x0000681d 
- 00016211  0x0000188d fetch  0x00000002 , 0x00000161 
- 00016212  0x0000188e arg  0x0000aa55 , 0x00000002 
- 00016213  0x0000188f isub  0x00000002 , 0x0000003e 
- 00016214  0x00001890 rtn 
- 00016215  0x00001894 fetch  0x00000001 , 0x00004747 
- 00016216  0x00001895 store  0x00000001 , 0x0000429d 
- 00016217  0x00001896 rtn 
- 00016218  0x00001899 arg  0x00000009 , 0x00000007 
- 00016219  0x0000189a branch  0x00003dc2 
- 00016220  0x0000189d arg  0x00000009 , 0x00000007 
- 00016221  0x0000189e branch  0x00003dc6 
- 00016222  0x000018a1 jam  0x00000005 , 0x0000429e 
- 00016223  0x000018a2 branch  0x00003f5a 
- 00016224  0x000018a4 fetch  0x00000001 , 0x0000429e 
- 00016225  0x000018a5 rtn  0x00000034 
- 00016226  0x000018a6 increase  0xffffffff , 0x0000003f 
- 00016227  0x000018a7 store  0x00000001 , 0x0000429e 
- 00016228  0x000018a8 nrtn  0x00000034 
- 00016229  0x000018a9 branch  0x00003f5c 
- 00016230  0x000018ac jam  0x00000001 , 0x000043cc 
- 00016231  0x000018ad rtn 
- 00016232  0x000018b0 jam  0x00000000 , 0x000043cc 
- 00016233  0x000018b1 rtn 
- 00016234  0x000018b4 jam  0x0000000a , 0x00000b7d 
- 00016235  0x000018b5 branch  0x00007c33 
- 00016236  0x000018b8 jam  0x0000001d , 0x00000b7d 
- 00016237  0x000018b9 branch  0x00007c33 
- 00016238  0x000018bc set1  0x00000025 , 0x00000000 
- 00016239  0x000018bd bpatch  0x000000d4 , 0x0000403a 
- 00016240  0x000018be fetch  0x00000001 , 0x0000429f 
- 00016241  0x000018bf store  0x00000001 , 0x00000177 
- 00016242  0x000018c0 jam  0x00000001 , 0x00000257 
- 00016243  0x000018c1 jam  0x00000003 , 0x00000b7d 
- 00016244  0x000018c2 branch  0x00007c33 
- 00016245  0x000018c5 jam  0x0000001e , 0x00000b7d 
- 00016246  0x000018c6 branch  0x00007c33 
- 00016247  0x000018c9 jam  0x00000004 , 0x00000b7d 
- 00016248  0x000018ca branch  0x00007c33 
- 00016249  0x000018cd fetch  0x00000002 , 0x000047fe 
- 00016250  0x000018ce store  0x00000002 , 0x000047f0 
- 00016251  0x000018d0 call  0x00003f94 
- 00016252  0x000018d2 jam  0x00000001 , 0x00000b7d 
- 00016253  0x000018d3 branch  0x00007c33 
- 00016254  0x000018d6 setarg  0x00000000 
- 00016255  0x000018d7 store  0x00000002 , 0x000047f0 
- 00016256  0x000018d8 jam  0x00000002 , 0x00000b7d 
- 00016257  0x000018d9 branch  0x00007c33 
- 00016258  0x000018dc jam  0x0000000f , 0x00000b7d 
- 00016259  0x000018dd branch  0x00007c33 
- 00016260  0x000018e0 jam  0x00000010 , 0x00000b7d 
- 00016261  0x000018e1 branch  0x00007c33 
- 00016262  0x000018e4 jam  0x0000000e , 0x00000b7d 
- 00016263  0x000018e5 branch  0x00007c33 
- 00016264  0x000018e8 jam  0x0000000d , 0x00000b7d 
- 00016265  0x000018e9 branch  0x00007c33 
- 00016266  0x000018ec jam  0x00000017 , 0x00000b7d 
- 00016267  0x000018ed branch  0x00007c33 
- 00016268  0x000018f0 jam  0x00000018 , 0x00000b7d 
- 00016269  0x000018f1 branch  0x00007c33 
- 00016270  0x000018f4 jam  0x00000016 , 0x00000b7d 
- 00016271  0x000018f5 branch  0x00007c33 
- 00016272  0x000018f8 jam  0x00000011 , 0x00000b7d 
- 00016273  0x000018f9 branch  0x00007c33 
- 00016274  0x000018fc jam  0x0000001c , 0x00000b7d 
- 00016275  0x000018fd branch  0x00007c33 
- 00016276  0x00001900 jam  0x00000015 , 0x00000b7d 
- 00016277  0x00001901 branch  0x00007c33 
- 00016278  0x00001904 jam  0x00000014 , 0x00000b7d 
- 00016279  0x00001905 branch  0x00007c33 
- 00016280  0x00001909 jam  0x00000013 , 0x00000b7d 
- 00016281  0x0000190a branch  0x00007c33 
- 00016282  0x0000190d jam  0x00000019 , 0x00000b7d 
- 00016283  0x0000190e branch  0x00007c33 
- 00016284  0x00001911 jam  0x00000006 , 0x00000b7d 
- 00016285  0x00001912 branch  0x00007c33 
- 00016286  0x00001915 jam  0x00000005 , 0x00000b7d 
- 00016287  0x00001916 branch  0x00007c33 
- 00016288  0x00001919 jam  0x0000001f , 0x00000b7d 
- 00016289  0x0000191a branch  0x00007c33 
- 00016290  0x0000191d jam  0x00000020 , 0x00000b7d 
- 00016291  0x0000191e branch  0x00007c33 
- 00016292  0x00001921 set1  0x0000000d , 0x00000000 
- 00016293  0x00001922 rtn 
- 00016294  0x00001925 set0  0x0000000d , 0x00000000 
- 00016295  0x00001926 rtn 
- 00016296  0x0000192b set1  0x00000025 , 0x00000000 
- 00016297  0x0000192c bpatch  0x00000090 , 0x00004032 
- 00016298  0x0000192d arg  0x00000020 , 0x00000002 
- 00016299  0x0000192e arg  0x00004419 , 0x00000011 
- 00016300  0x0000192f arg  0x000000a0 , 0x00000012 
- 00016301  0x00001930 call  0x0000681d 
- 00016302  0x00001933 arg  0x00000020 , 0x00000002 
- 00016303  0x00001934 arg  0x00004702 , 0x00000011 
- 00016304  0x00001935 arg  0x0000007f , 0x00000012 
- 00016305  0x00001936 call  0x0000681d 
- 00016306  0x00001938 arg  0x00000006 , 0x00000002 
- 00016307  0x00001939 arg  0x00004140 , 0x00000011 
- 00016308  0x0000193a arg  0x00000063 , 0x00000012 
- 00016309  0x0000193b call  0x0000681d 
- 00016310  0x0000193d arg  0x00000006 , 0x00000002 
- 00016311  0x0000193e arg  0x000044f9 , 0x00000011 
- 00016312  0x0000193f arg  0x00000069 , 0x00000012 
- 00016313  0x00001940 call  0x0000681d 
- 00016314  0x00001941 call  0x00005adb 
- 00016315  0x00001943 arg  0x00000002 , 0x00000002 
- 00016316  0x00001944 arg  0x000042ac , 0x00000011 
- 00016317  0x00001945 arg  0x000000c0 , 0x00000012 
- 00016318  0x00001946 call  0x0000681d 
- 00016319  0x00001947 call  0x00006909 
- 00016320  0x00001949 branch  0x00003fc1 
- 00016321  0x0000194c arg  0x0000000e , 0x00000002 
- 00016322  0x0000194d arg  0x0000054f , 0x00000011 
- 00016323  0x0000194e arg  0x0000006f , 0x00000012 
- 00016324  0x0000194f branch  0x0000681d 
- 00016325  0x00001952 set1  0x00000025 , 0x00000000 
- 00016326  0x00001953 bpatch  0x00000091 , 0x00004032 
- 00016327  0x00001954 call  0x00003f4d 
- 00016328  0x00001955 branch  0x00003fa8 , 0x00000005 
- 00016329  0x00001957 call  0x00003fd2 
- 00016330  0x00001958 call  0x00003fd7 
- 00016331  0x00001959 call  0x00005adb 
- 00016332  0x0000195a call  0x00003fdc 
- 00016333  0x0000195b call  0x00003fe0 
- 00016334  0x0000195c call  0x000062e9 
- 00016335  0x0000195d call  0x00003fe4 
- 00016336  0x0000195e call  0x00003fe9 
- 00016337  0x0000195f branch  0x00003f45 
- 00016338  0x00001962 fetcht  0x00000001 , 0x00004702 
- 00016339  0x00001963 increase  0x00000001 , 0x00000002 
- 00016340  0x00001964 arg  0x00004702 , 0x00000011 
- 00016341  0x00001965 arg  0x0000007f , 0x00000012 
- 00016342  0x00001966 branch  0x0000683e 
- 00016343  0x00001969 fetcht  0x00000001 , 0x00004419 
- 00016344  0x0000196a increase  0x00000001 , 0x00000002 
- 00016345  0x0000196b arg  0x00004419 , 0x00000011 
- 00016346  0x0000196c arg  0x000000a0 , 0x00000012 
- 00016347  0x0000196d branch  0x0000683e 
- 00016348  0x00001970 arg  0x00000006 , 0x00000002 
- 00016349  0x00001971 arg  0x000044f9 , 0x00000011 
- 00016350  0x00001972 arg  0x00000069 , 0x00000012 
- 00016351  0x00001973 branch  0x0000683e 
- 00016352  0x00001976 arg  0x00000006 , 0x00000002 
- 00016353  0x00001977 arg  0x00004140 , 0x00000011 
- 00016354  0x00001978 arg  0x00000063 , 0x00000012 
- 00016355  0x00001979 branch  0x0000683e 
- 00016356  0x0000197c fetcht  0x00000001 , 0x0000054f 
- 00016357  0x0000197d increase  0x00000001 , 0x00000002 
- 00016358  0x0000197e arg  0x0000054f , 0x00000011 
- 00016359  0x0000197f arg  0x0000006f , 0x00000012 
- 00016360  0x00001980 branch  0x0000683e 
- 00016361  0x00001983 setarg  0x000001a0 
- 00016362  0x00001984 store  0x00000002 , 0x000002a8 
- 00016363  0x00001986 arg  0x00000002 , 0x00000002 
- 00016364  0x00001987 arg  0x000002a8 , 0x00000011 
- 00016365  0x00001988 arg  0x000000c0 , 0x00000012 
- 00016366  0x00001989 branch  0x0000683e 
- 00016367  0x0000198d set1  0x00000025 , 0x00000000 
- 00016368  0x0000198e bpatch  0x00000092 , 0x00004032 
- 00016369  0x0000198f fetch  0x00000002 , 0x0000480e 
- 00016370  0x00001990 arg  0x0000012c , 0x00000002 
- 00016371  0x00001991 isub  0x00000002 , 0x0000003e 
- 00016372  0x00001992 branch  0x0000427f , 0x00000002 
- 00016373  0x00001993 call  0x00003e2b 
- 00016374  0x00001994 call  0x00007f6b 
- 00016375  0x00001995 copy  0x00000003 , 0x00000011 
- 00016376  0x00001996 fetch  0x00000002 , 0x0000480e 
- 00016377  0x00001997 increase  0xfffffffe , 0x0000003f 
- 00016378  0x00001998 iadd  0x00000003 , 0x00000003 
- 00016379  0x00001999 ifetch  0x00000002 , 0x00000003 
- 00016380  0x0000199a arg  0x00000a0d , 0x00000002 
- 00016381  0x0000199b isub  0x00000002 , 0x0000003e 
- 00016382  0x0000199c nrtn  0x00000005 
- 00016383  0x0000199d copy  0x00000011 , 0x00000003 
- 00016384  0x0000199e arg  0x00004850 , 0x00000012 
- 00016385  0x0000199f arg  0x00000003 , 0x00000039 
- 00016386  0x000019a0 call  0x00004237 
- 00016387  0x000019a1 nbranch  0x0000427f , 0x00000001 
- 00016388  0x000019a2 branch  0x00004005 
- 00016389  0x000019a5 set1  0x00000025 , 0x00000000 
- 00016390  0x000019a6 bpatch  0x00000093 , 0x00004032 
- 00016391  0x000019a8 copy  0x00000003 , 0x00000011 
- 00016392  0x000019a9 arg  0x00004827 , 0x00000012 
- 00016393  0x000019aa force  0x00000004 , 0x00000039 
- 00016394  0x000019ab call  0x00004237 
- 00016395  0x000019ac branch  0x0000406d , 0x00000001 
- 00016396  0x000019ae arg  0x00004824 , 0x00000012 
- 00016397  0x000019af force  0x00000007 , 0x00000039 
- 00016398  0x000019b0 call  0x00004237 
- 00016399  0x000019b1 branch  0x00004074 , 0x00000001 
- 00016400  0x000019b3 arg  0x0000482e , 0x00000012 
- 00016401  0x000019b4 force  0x00000004 , 0x00000039 
- 00016402  0x000019b5 call  0x00004237 
- 00016403  0x000019b6 branch  0x0000407b , 0x00000001 
- 00016404  0x000019b8 arg  0x0000482b , 0x00000012 
- 00016405  0x000019b9 force  0x00000007 , 0x00000039 
- 00016406  0x000019ba call  0x00004237 
- 00016407  0x000019bb branch  0x00004081 , 0x00000001 
- 00016408  0x000019bd arg  0x00004832 , 0x00000012 
- 00016409  0x000019be force  0x00000004 , 0x00000039 
- 00016410  0x000019bf call  0x00004237 
- 00016411  0x000019c0 branch  0x00004087 , 0x00000001 
- 00016412  0x000019c2 arg  0x00004820 , 0x00000012 
- 00016413  0x000019c3 force  0x00000004 , 0x00000039 
- 00016414  0x000019c4 call  0x00004237 
- 00016415  0x000019c5 branch  0x0000408c , 0x00000001 
- 00016416  0x000019c7 arg  0x0000481c , 0x00000012 
- 00016417  0x000019c8 force  0x00000004 , 0x00000039 
- 00016418  0x000019c9 call  0x00004237 
- 00016419  0x000019ca branch  0x0000408f , 0x00000001 
- 00016420  0x000019cc arg  0x00004836 , 0x00000012 
- 00016421  0x000019cd force  0x00000005 , 0x00000039 
- 00016422  0x000019ce call  0x00004237 
- 00016423  0x000019cf branch  0x00004095 , 0x00000001 
- 00016424  0x000019d1 arg  0x00004853 , 0x00000012 
- 00016425  0x000019d2 force  0x00000004 , 0x00000039 
- 00016426  0x000019d3 call  0x00004237 
- 00016427  0x000019d4 branch  0x0000409b , 0x00000001 
- 00016428  0x000019d6 arg  0x00004857 , 0x00000012 
- 00016429  0x000019d7 force  0x00000004 , 0x00000039 
- 00016430  0x000019d8 call  0x00004237 
- 00016431  0x000019d9 branch  0x000040a1 , 0x00000001 
- 00016432  0x000019db arg  0x0000485b , 0x00000012 
- 00016433  0x000019dc force  0x00000005 , 0x00000039 
- 00016434  0x000019dd call  0x00004237 
- 00016435  0x000019de branch  0x000040a5 , 0x00000001 
- 00016436  0x000019e0 arg  0x00004860 , 0x00000012 
- 00016437  0x000019e1 force  0x00000004 , 0x00000039 
- 00016438  0x000019e2 call  0x00004237 
- 00016439  0x000019e3 branch  0x000040ab , 0x00000001 
- 00016440  0x000019e5 arg  0x00004864 , 0x00000012 
- 00016441  0x000019e6 force  0x00000004 , 0x00000039 
- 00016442  0x000019e7 call  0x00004237 
- 00016443  0x000019e8 branch  0x000040b0 , 0x00000001 
- 00016444  0x000019ea arg  0x00004868 , 0x00000012 
- 00016445  0x000019eb force  0x00000004 , 0x00000039 
- 00016446  0x000019ec call  0x00004237 
- 00016447  0x000019ed branch  0x000040b7 , 0x00000001 
- 00016448  0x000019ef arg  0x0000486f , 0x00000012 
- 00016449  0x000019f0 force  0x00000004 , 0x00000039 
- 00016450  0x000019f1 call  0x00004237 
- 00016451  0x000019f2 branch  0x000040d6 , 0x00000001 
- 00016452  0x000019f4 arg  0x0000486c , 0x00000012 
- 00016453  0x000019f5 force  0x00000007 , 0x00000039 
- 00016454  0x000019f6 call  0x00004237 
- 00016455  0x000019f7 branch  0x000040dd , 0x00000001 
- 00016456  0x000019f9 arg  0x00004873 , 0x00000012 
- 00016457  0x000019fa force  0x00000005 , 0x00000039 
- 00016458  0x000019fb call  0x00004237 
- 00016459  0x000019fc branch  0x000040f2 , 0x00000001 
- 00016460  0x000019fe arg  0x00004878 , 0x00000012 
- 00016461  0x000019ff force  0x00000004 , 0x00000039 
- 00016462  0x00001a00 call  0x00004237 
- 00016463  0x00001a01 branch  0x000040f8 , 0x00000001 
- 00016464  0x00001a03 arg  0x0000487c , 0x00000012 
- 00016465  0x00001a04 force  0x00000007 , 0x00000039 
- 00016466  0x00001a05 call  0x00004237 
- 00016467  0x00001a06 branch  0x000040fb , 0x00000001 
- 00016468  0x00001a08 arg  0x00004841 , 0x00000012 
- 00016469  0x00001a09 force  0x00000006 , 0x00000039 
- 00016470  0x00001a0a call  0x00004237 
- 00016471  0x00001a0b branch  0x00004100 , 0x00000001 
- 00016472  0x00001a0d arg  0x00004883 , 0x00000012 
- 00016473  0x00001a0e force  0x00000006 , 0x00000039 
- 00016474  0x00001a0f call  0x00004237 
- 00016475  0x00001a10 branch  0x0000412c , 0x00000001 
- 00016476  0x00001a12 arg  0x00004849 , 0x00000012 
- 00016477  0x00001a13 force  0x00000003 , 0x00000039 
- 00016478  0x00001a14 call  0x00004237 
- 00016479  0x00001a15 branch  0x0000410e , 0x00000001 
- 00016480  0x00001a17 arg  0x0000484c , 0x00000012 
- 00016481  0x00001a18 force  0x00000004 , 0x00000039 
- 00016482  0x00001a19 call  0x00004237 
- 00016483  0x00001a1a branch  0x00004117 , 0x00000001 
- 00016484  0x00001a1c arg  0x0000483b , 0x00000012 
- 00016485  0x00001a1d force  0x00000006 , 0x00000039 
- 00016486  0x00001a1e call  0x00004237 
- 00016487  0x00001a1f branch  0x00004127 , 0x00000001 
- 00016488  0x00001a21 arg  0x00004889 , 0x00000012 
- 00016489  0x00001a22 force  0x00000003 , 0x00000039 
- 00016490  0x00001a23 call  0x00004237 
- 00016491  0x00001a24 branch  0x00004129 , 0x00000001 
- 00016492  0x00001a25 branch  0x0000427f 
- 00016493  0x00001a29 ifetch  0x00000001 , 0x00000003 
- 00016494  0x00001a2a beq  0x0000003f , 0x00004071 
- 00016495  0x00001a2b beq  0x0000003d , 0x00004131 
- 00016496  0x00001a2c branch  0x0000427f 
- 00016497  0x00001a2e call  0x00007f6e 
- 00016498  0x00001a2f call  0x00004194 
- 00016499  0x00001a30 branch  0x00004286 
- 00016500  0x00001a34 ifetch  0x00000001 , 0x00000003 
- 00016501  0x00001a35 beq  0x0000003f , 0x00004078 
- 00016502  0x00001a36 beq  0x0000003d , 0x00004136 
- 00016503  0x00001a37 branch  0x0000427f 
- 00016504  0x00001a39 call  0x00007f6e 
- 00016505  0x00001a3a call  0x0000419b 
- 00016506  0x00001a3b branch  0x00004286 
- 00016507  0x00001a3e ifetch  0x00000001 , 0x00000003 
- 00016508  0x00001a3f beq  0x0000003f , 0x0000407f 
- 00016509  0x00001a40 beq  0x0000003d , 0x0000413c 
- 00016510  0x00001a41 branch  0x0000427f 
- 00016511  0x00001a43 call  0x000041a2 
- 00016512  0x00001a44 branch  0x00004286 
- 00016513  0x00001a47 ifetch  0x00000001 , 0x00000003 
- 00016514  0x00001a48 beq  0x0000003f , 0x00004085 
- 00016515  0x00001a49 beq  0x0000003d , 0x00004140 
- 00016516  0x00001a4a branch  0x0000427f 
- 00016517  0x00001a4d call  0x000041a8 
- 00016518  0x00001a4e branch  0x00004286 
- 00016519  0x00001a51 ifetch  0x00000001 , 0x00000003 
- 00016520  0x00001a52 beq  0x0000003f , 0x0000408a 
- 00016521  0x00001a53 branch  0x0000427f 
- 00016522  0x00001a55 call  0x000041ae 
- 00016523  0x00001a56 branch  0x00004286 
- 00016524  0x00001a5a ifetch  0x00000001 , 0x00000003 
- 00016525  0x00001a5b beq  0x0000003d , 0x00004149 
- 00016526  0x00001a5c branch  0x0000427f 
- 00016527  0x00001a60 ifetch  0x00000001 , 0x00000003 
- 00016528  0x00001a61 beq  0x0000003f , 0x00004093 
- 00016529  0x00001a62 beq  0x0000003d , 0x00004144 
- 00016530  0x00001a63 branch  0x0000427f 
- 00016531  0x00001a65 call  0x00004204 
- 00016532  0x00001a66 branch  0x00004286 
- 00016533  0x00001a69 ifetch  0x00000001 , 0x00000003 
- 00016534  0x00001a6a beq  0x0000003f , 0x00004099 
- 00016535  0x00001a6b beq  0x0000003d , 0x00004157 
- 00016536  0x00001a6c branch  0x0000427f 
- 00016537  0x00001a6e call  0x000041b4 
- 00016538  0x00001a6f branch  0x00004286 
- 00016539  0x00001a72 ifetch  0x00000001 , 0x00000003 
- 00016540  0x00001a73 beq  0x0000003f , 0x0000409f 
- 00016541  0x00001a74 beq  0x0000003d , 0x00004172 
- 00016542  0x00001a75 branch  0x0000427f 
- 00016543  0x00001a77 call  0x000041ba 
- 00016544  0x00001a78 branch  0x00004286 
- 00016545  0x00001a7b ifetch  0x00000001 , 0x00000003 
- 00016546  0x00001a7c beq  0x0000003f , 0x000040e1 
- 00016547  0x00001a7d beq  0x0000003d , 0x0000415a 
- 00016548  0x00001a7e branch  0x0000427f 
- 00016549  0x00001a82 ifetch  0x00000001 , 0x00000003 
- 00016550  0x00001a83 beq  0x0000003f , 0x000040a9 
- 00016551  0x00001a84 beq  0x0000003d , 0x0000416b 
- 00016552  0x00001a85 branch  0x0000427f 
- 00016553  0x00001a87 call  0x0000420b 
- 00016554  0x00001a88 branch  0x00004286 
- 00016555  0x00001a8b ifetch  0x00000001 , 0x00000003 
- 00016556  0x00001a8c beq  0x0000003f , 0x000040ae 
- 00016557  0x00001a8d branch  0x0000427f 
- 00016558  0x00001a8f call  0x000041c0 
- 00016559  0x00001a90 branch  0x00004286 
- 00016560  0x00001a93 ifetch  0x00000001 , 0x00000003 
- 00016561  0x00001a94 beq  0x0000003f , 0x000040b3 
- 00016562  0x00001a95 branch  0x00004286 
- 00016563  0x00001a97 call  0x000032ee 
- 00016564  0x00001a98 nbranch  0x0000427f , 0x00000005 
- 00016565  0x00001a99 call  0x000041cd 
- 00016566  0x00001a9a branch  0x00004286 
- 00016567  0x00001a9d ifetch  0x00000001 , 0x00000003 
- 00016568  0x00001a9e beq  0x0000003f , 0x000040ba 
- 00016569  0x00001a9f branch  0x0000427f 
- 00016570  0x00001aa1 fetch  0x00000001 , 0x00004040 
- 00016571  0x00001aa2 bbit0  0x00000000 , 0x0000427f 
- 00016572  0x00001aa3 call  0x00007f6e 
- 00016573  0x00001aa4 fetch  0x00000001 , 0x00004041 
- 00016574  0x00001aa5 bbit1  0x00000000 , 0x000040c0 
- 00016575  0x00001aa6 branch  0x000040cb 
- 00016576  0x00001aa8 arg  0x00004868 , 0x00000011 
- 00016577  0x00001aa9 arg  0x00000004 , 0x00000039 
- 00016578  0x00001aaa call  0x00004232 
- 00016579  0x00001aab call  0x00004247 
- 00016580  0x00001aac setarg  0x00000034 
- 00016581  0x00001aad istore  0x00000001 , 0x0000000a 
- 00016582  0x00001aae call  0x0000424e 
- 00016583  0x00001aaf arg  0x000003d0 , 0x00000011 
- 00016584  0x00001ab0 call  0x00007e9d 
- 00016585  0x00001ab1 call  0x000068fa 
- 00016586  0x00001ab2 branch  0x00004286 
- 00016587  0x00001ab4 arg  0x00004868 , 0x00000011 
- 00016588  0x00001ab5 arg  0x00000004 , 0x00000039 
- 00016589  0x00001ab6 call  0x00004232 
- 00016590  0x00001ab7 call  0x00004247 
- 00016591  0x00001ab8 setarg  0x00000033 
- 00016592  0x00001ab9 istore  0x00000001 , 0x0000000a 
- 00016593  0x00001aba call  0x0000424e 
- 00016594  0x00001abb arg  0x00000040 , 0x00000011 
- 00016595  0x00001abc call  0x00007e9d 
- 00016596  0x00001abd call  0x000068fa 
- 00016597  0x00001abe branch  0x00004286 
- 00016598  0x00001ac2 set1  0x00000025 , 0x00000000 
- 00016599  0x00001ac3 bpatch  0x00000094 , 0x00004032 
- 00016600  0x00001ac4 call  0x00003f3e 
- 00016601  0x00001ac5 fetch  0x00000001 , 0x0000429a 
- 00016602  0x00001ac6 bne  0x00000000 , 0x0000427f 
- 00016603  0x00001ac7 call  0x000041f0 
- 00016604  0x00001ac8 branch  0x00004286 
- 00016605  0x00001acb set1  0x00000025 , 0x00000000 
- 00016606  0x00001acc bpatch  0x00000095 , 0x00004032 
- 00016607  0x00001acd call  0x000041f6 
- 00016608  0x00001ace branch  0x00004286 
- 00016609  0x00001ad1 arg  0x00004857 , 0x00000011 
- 00016610  0x00001ad2 arg  0x00000004 , 0x00000039 
- 00016611  0x00001ad3 call  0x00004232 
- 00016612  0x00001ad4 call  0x000032ee 
- 00016613  0x00001ad5 nbranch  0x0000424a , 0x00000005 
- 00016614  0x00001ad6 fetch  0x00000001 , 0x00004041 
- 00016615  0x00001ad7 bbit1  0x00000001 , 0x000040eb 
- 00016616  0x00001ad8 call  0x000040ef 
- 00016617  0x00001ad9 call  0x000068fa 
- 00016618  0x00001ada branch  0x00004286 
- 00016619  0x00001adc setarg  0x0000004d 
- 00016620  0x00001add istore  0x00000001 , 0x0000000a 
- 00016621  0x00001ade call  0x000068fa 
- 00016622  0x00001adf branch  0x00004286 
- 00016623  0x00001ae1 setarg  0x00000053 
- 00016624  0x00001ae2 istore  0x00000001 , 0x0000000a 
- 00016625  0x00001ae3 rtn 
- 00016626  0x00001ae6 ifetch  0x00000001 , 0x00000003 
- 00016627  0x00001ae7 beq  0x0000003f , 0x000040f6 
- 00016628  0x00001ae8 beq  0x0000003d , 0x0000417e 
- 00016629  0x00001ae9 branch  0x0000427f 
- 00016630  0x00001aeb call  0x000041d8 
- 00016631  0x00001aec branch  0x00004286 
- 00016632  0x00001aef ifetch  0x00000001 , 0x00000003 
- 00016633  0x00001af0 beq  0x0000003d , 0x00004151 
- 00016634  0x00001af1 branch  0x0000427f 
- 00016635  0x00001af4 ifetch  0x00000001 , 0x00000003 
- 00016636  0x00001af5 beq  0x0000003f , 0x000040fe 
- 00016637  0x00001af6 branch  0x0000427f 
- 00016638  0x00001af8 call  0x000041de 
- 00016639  0x00001af9 branch  0x00004286 
- 00016640  0x00001afc fetch  0x00000001 , 0x0000429f 
- 00016641  0x00001afd store  0x00000001 , 0x00000177 
- 00016642  0x00001afe call  0x0000691d 
- 00016643  0x00001aff call  0x00003f3e 
- 00016644  0x00001b00 fetch  0x00000001 , 0x0000429a 
- 00016645  0x00001b01 bne  0x00000000 , 0x0000427f 
- 00016646  0x00001b02 fetch  0x00000001 , 0x000042a9 
- 00016647  0x00001b03 beq  0x00000033 , 0x0000410c 
- 00016648  0x00001b04 beq  0x00000034 , 0x0000410a 
- 00016649  0x00001b05 branch  0x0000427f 
- 00016650  0x00001b08 call  0x00003f82 
- 00016651  0x00001b09 branch  0x00004286 
- 00016652  0x00001b0b call  0x00003f6e 
- 00016653  0x00001b0c branch  0x00004286 
- 00016654  0x00001b0f call  0x00003f3e 
- 00016655  0x00001b10 fetch  0x00000001 , 0x0000429a 
- 00016656  0x00001b11 bne  0x00000001 , 0x0000427f 
- 00016657  0x00001b12 fetch  0x00000001 , 0x00004041 
- 00016658  0x00001b13 bbit1  0x00000000 , 0x00004115 
- 00016659  0x00001b14 call  0x00003f77 
- 00016660  0x00001b15 branch  0x00004286 
- 00016661  0x00001b19 call  0x00003f90 
- 00016662  0x00001b1a branch  0x00004286 
- 00016663  0x00001b1e ifetch  0x00000001 , 0x00000003 
- 00016664  0x00001b1f beq  0x0000003d , 0x0000411a 
- 00016665  0x00001b20 branch  0x0000427f 
- 00016666  0x00001b22 ifetch  0x00000001 , 0x00000003 
- 00016667  0x00001b23 beq  0x00000031 , 0x00004122 
- 00016668  0x00001b24 beq  0x00000030 , 0x0000411e 
- 00016669  0x00001b25 branch  0x0000427f 
- 00016670  0x00001b27 call  0x00003f40 
- 00016671  0x00001b28 branch  0x00004286 , 0x00000001 
- 00016672  0x00001b29 call  0x00003f9e 
- 00016673  0x00001b2a branch  0x00004286 
- 00016674  0x00001b2c call  0x00003f40 
- 00016675  0x00001b2d nbranch  0x00004286 , 0x00000001 
- 00016676  0x00001b2e call  0x000063ab 
- 00016677  0x00001b2f call  0x00006414 
- 00016678  0x00001b30 branch  0x00004286 
- 00016679  0x00001b34 call  0x00003f43 
- 00016680  0x00001b35 branch  0x00004286 
- 00016681  0x00001b38 ifetch  0x00000001 , 0x00000003 
- 00016682  0x00001b39 beq  0x0000003d , 0x00004187 
- 00016683  0x00001b3a branch  0x0000427f 
- 00016684  0x00001b3d call  0x00003f3e 
- 00016685  0x00001b3e fetch  0x00000001 , 0x0000429a 
- 00016686  0x00001b3f bne  0x00000000 , 0x0000427f 
- 00016687  0x00001b40 call  0x0000638a 
- 00016688  0x00001b41 branch  0x00004286 
- 00016689  0x00001b48 arg  0x00004703 , 0x00000011 
- 00016690  0x00001b49 call  0x0000422b 
- 00016691  0x00001b4a storet  0x00000001 , 0x00004702 
- 00016692  0x00001b4b call  0x00003fd2 
- 00016693  0x00001b4c branch  0x00004286 
- 00016694  0x00001b4f arg  0x0000441a , 0x00000011 
- 00016695  0x00001b50 call  0x0000422b 
- 00016696  0x00001b51 storet  0x00000001 , 0x00004419 
- 00016697  0x00001b52 call  0x00003fd7 
- 00016698  0x00001b53 call  0x00005adb 
- 00016699  0x00001b54 branch  0x00004286 
- 00016700  0x00001b57 arg  0x00004140 , 0x00000005 
- 00016701  0x00001b58 call  0x00007ebf 
- 00016702  0x00001b59 call  0x00003fe0 
- 00016703  0x00001b5a branch  0x00004286 
- 00016704  0x00001b5d arg  0x000044f9 , 0x00000005 
- 00016705  0x00001b5e call  0x00007ebf 
- 00016706  0x00001b5f call  0x00003fdc 
- 00016707  0x00001b60 branch  0x00004286 
- 00016708  0x00001b63 arg  0x00000550 , 0x00000011 
- 00016709  0x00001b64 call  0x0000422b 
- 00016710  0x00001b65 storet  0x00000001 , 0x0000054f 
- 00016711  0x00001b66 call  0x00003fe4 
- 00016712  0x00001b67 branch  0x00004286 
- 00016713  0x00001b6a call  0x00007eb0 
- 00016714  0x00001b6b setarg  0x02dc6c00 
- 00016715  0x00001b6c idiv  0x00000002 
- 00016716  0x00001b6d call  0x00007efd 
- 00016717  0x00001b6e quotient  0x0000003f 
- 00016718  0x00001b6f store  0x00000002 , 0x000002a8 
- 00016719  0x00001b70 call  0x00003feb 
- 00016720  0x00001b71 branch  0x00004286 
- 00016721  0x00001b74 ifetch  0x00000001 , 0x00000003 
- 00016722  0x00001b75 sub  0x0000003f , 0x00000033 , 0x0000003e 
- 00016723  0x00001b76 nbranch  0x0000427f , 0x00000002 
- 00016724  0x00001b77 and  0x0000003f , 0x00000003 , 0x0000003f 
- 00016725  0x00001b78 store  0x00000001 , 0x00004812 
- 00016726  0x00001b79 branch  0x00004286 
- 00016727  0x00001b7c ifetch  0x00000003 , 0x00000003 
- 00016728  0x00001b7d store  0x00000003 , 0x0000414a 
- 00016729  0x00001b7e branch  0x00004286 
- 00016730  0x00001b81 call  0x000032ee 
- 00016731  0x00001b82 nbranch  0x0000427f , 0x00000005 
- 00016732  0x00001b83 ifetch  0x00000001 , 0x00000003 
- 00016733  0x00001b84 beq  0x00000053 , 0x00004160 
- 00016734  0x00001b85 beq  0x0000004d , 0x00004163 
- 00016735  0x00001b86 branch  0x0000427f 
- 00016736  0x00001b89 fetch  0x00000001 , 0x00004041 
- 00016737  0x00001b8a bbit1  0x00000001 , 0x00004166 
- 00016738  0x00001b8b branch  0x0000427f 
- 00016739  0x00001b8e fetch  0x00000001 , 0x00004041 
- 00016740  0x00001b8f bbit0  0x00000001 , 0x00004166 
- 00016741  0x00001b90 branch  0x0000427f 
- 00016742  0x00001b93 fetch  0x00000001 , 0x00004813 
- 00016743  0x00001b94 set1  0x00000004 , 0x0000003f 
- 00016744  0x00001b95 store  0x00000001 , 0x00004813 
- 00016745  0x00001b96 jam  0x00000018 , 0x00004272 
- 00016746  0x00001b97 branch  0x0000428c 
- 00016747  0x00001b9a arg  0x00004280 , 0x00000005 
- 00016748  0x00001b9b call  0x00007ebd 
- 00016749  0x00001b9c arg  0x00004282 , 0x00000005 
- 00016750  0x00001b9d call  0x00007ebd 
- 00016751  0x00001b9e arg  0x00004284 , 0x00000005 
- 00016752  0x00001b9f call  0x00007ebd 
- 00016753  0x00001ba0 branch  0x00004286 
- 00016754  0x00001ba3 ifetch  0x00000001 , 0x00000003 
- 00016755  0x00001ba4 beq  0x00000031 , 0x00004176 
- 00016756  0x00001ba5 beq  0x00000032 , 0x0000417c 
- 00016757  0x00001ba6 branch  0x0000427f 
- 00016758  0x00001ba8 ifetch  0x00000001 , 0x00000003 
- 00016759  0x00001ba9 arg  0x000001b4 , 0x00000005 
- 00016760  0x00001baa call  0x00007ebf 
- 00016761  0x00001bab call  0x00006931 
- 00016762  0x00001bac nrtn  0x00000028 
- 00016763  0x00001bad branch  0x00004286 
- 00016764  0x00001baf call  0x0000693d 
- 00016765  0x00001bb0 branch  0x00004286 
- 00016766  0x00001bb3 ifetch  0x00000001 , 0x00000003 
- 00016767  0x00001bb4 fetcht  0x00000001 , 0x00004812 
- 00016768  0x00001bb5 nsetflag  0x00000034 , 0x00000002 , 0x00000002 
- 00016769  0x00001bb6 storet  0x00000001 , 0x00004812 
- 00016770  0x00001bb7 branch  0x00004286 , 0x00000034 
- 00016771  0x00001bb8 ifetch  0x00000001 , 0x00000003 
- 00016772  0x00001bb9 arg  0x00004814 , 0x00000005 
- 00016773  0x00001bba call  0x00007ebf 
- 00016774  0x00001bbb branch  0x00004286 
- 00016775  0x00001bbe set1  0x00000025 , 0x00000000 
- 00016776  0x00001bbf bpatch  0x00000096 , 0x00004032 
- 00016777  0x00001bc0 arg  0x00000014 , 0x00000039 
- 00016778  0x00001bc1 arg  0x00001000 , 0x00000005 
- 00016779  0x00001bc2 call  0x0000497c 
- 00016780  0x00001bc3 arg  0x00001000 , 0x00000011 
- 00016781  0x00001bc4 fetch  0x00000001 , 0x00001000 
- 00016782  0x00001bc5 compare  0x00000012 , 0x0000003f , 0x000000ff 
- 00016783  0x00001bc6 call  0x00006b19 , 0x00000001 
- 00016784  0x00001bc7 fetch  0x00000001 , 0x00001000 
- 00016785  0x00001bc8 compare  0x00000013 , 0x0000003f , 0x000000ff 
- 00016786  0x00001bc9 call  0x00006b45 , 0x00000001 
- 00016787  0x00001bca branch  0x00004286 
- 00016788  0x00001bd0 arg  0x00004827 , 0x00000011 
- 00016789  0x00001bd1 arg  0x00000004 , 0x00000039 
- 00016790  0x00001bd2 call  0x00004232 
- 00016791  0x00001bd3 fetch  0x00000001 , 0x00004702 
- 00016792  0x00001bd4 copy  0x0000003f , 0x00000039 
- 00016793  0x00001bd5 arg  0x00004703 , 0x00000006 
- 00016794  0x00001bd6 branch  0x00007f74 
- 00016795  0x00001bd8 arg  0x00004824 , 0x00000011 
- 00016796  0x00001bd9 force  0x00000007 , 0x00000039 
- 00016797  0x00001bda call  0x00004232 
- 00016798  0x00001bdb call  0x00005b08 
- 00016799  0x00001bdc ifetch  0x00000001 , 0x00000006 
- 00016800  0x00001bdd copy  0x0000003f , 0x00000039 
- 00016801  0x00001bde branch  0x00007f74 
- 00016802  0x00001be2 arg  0x0000482e , 0x00000011 
- 00016803  0x00001be3 arg  0x00000004 , 0x00000039 
- 00016804  0x00001be4 call  0x00004232 
- 00016805  0x00001be5 arg  0x00004140 , 0x00000011 
- 00016806  0x00001be6 call  0x00007e9d 
- 00016807  0x00001be7 branch  0x000068fa 
- 00016808  0x00001be9 arg  0x0000482b , 0x00000011 
- 00016809  0x00001bea arg  0x00000007 , 0x00000039 
- 00016810  0x00001beb call  0x00004232 
- 00016811  0x00001bec arg  0x000044f9 , 0x00000011 
- 00016812  0x00001bed call  0x00007e9d 
- 00016813  0x00001bee branch  0x000068fa 
- 00016814  0x00001bf2 arg  0x00004832 , 0x00000011 
- 00016815  0x00001bf3 arg  0x00000004 , 0x00000039 
- 00016816  0x00001bf4 call  0x00004232 
- 00016817  0x00001bf5 arg  0x00000006 , 0x00000039 
- 00016818  0x00001bf6 arg  0x00004804 , 0x00000006 
- 00016819  0x00001bf7 branch  0x00007f74 
- 00016820  0x00001bfa arg  0x00004836 , 0x00000011 
- 00016821  0x00001bfb arg  0x00000005 , 0x00000039 
- 00016822  0x00001bfc call  0x00004232 
- 00016823  0x00001bfd arg  0x00000003 , 0x00000039 
- 00016824  0x00001bfe arg  0x0000414a , 0x00000006 
- 00016825  0x00001bff branch  0x00007f74 
- 00016826  0x00001c02 arg  0x00004853 , 0x00000011 
- 00016827  0x00001c03 arg  0x00000004 , 0x00000039 
- 00016828  0x00001c04 call  0x00004232 
- 00016829  0x00001c05 call  0x00006988 
- 00016830  0x00001c06 call  0x00004253 
- 00016831  0x00001c07 branch  0x000068fa 
- 00016832  0x00001c0b call  0x00006929 
- 00016833  0x00001c0c arg  0x00004860 , 0x00000011 
- 00016834  0x00001c0d arg  0x00000004 , 0x00000039 
- 00016835  0x00001c0e call  0x00004232 
- 00016836  0x00001c0f fetch  0x00000001 , 0x000001b3 
- 00016837  0x00001c10 beq  0x00000033 , 0x000041c8 
- 00016838  0x00001c11 beq  0x00000034 , 0x000041c8 
- 00016839  0x00001c12 branch  0x000068fa 
- 00016840  0x00001c14 istore  0x00000001 , 0x0000000a 
- 00016841  0x00001c15 call  0x0000424e 
- 00016842  0x00001c16 arg  0x000001b4 , 0x00000011 
- 00016843  0x00001c17 call  0x00007e9d 
- 00016844  0x00001c18 branch  0x000068fa 
- 00016845  0x00001c1b set1  0x00000025 , 0x00000000 
- 00016846  0x00001c1c bpatch  0x00000097 , 0x00004032 
- 00016847  0x00001c1d arg  0x00004864 , 0x00000011 
- 00016848  0x00001c1e arg  0x00000004 , 0x00000039 
- 00016849  0x00001c1f call  0x00004232 
- 00016850  0x00001c20 call  0x000041d4 
- 00016851  0x00001c21 branch  0x000068fa 
- 00016852  0x00001c23 arg  0x00000018 , 0x00000011 
- 00016853  0x00001c24 arg  0x00000001 , 0x00000039 
- 00016854  0x00001c25 branch  0x00007e9e 
- 00016855  0x00001c28 rtn 
- 00016856  0x00001c2c arg  0x00004873 , 0x00000011 
- 00016857  0x00001c2d arg  0x00000005 , 0x00000039 
- 00016858  0x00001c2e call  0x00004232 
- 00016859  0x00001c2f arg  0x00004814 , 0x00000011 
- 00016860  0x00001c30 call  0x00007e9d 
- 00016861  0x00001c31 branch  0x000068fa 
- 00016862  0x00001c35 arg  0x0000487c , 0x00000011 
- 00016863  0x00001c36 arg  0x00000007 , 0x00000039 
- 00016864  0x00001c37 call  0x00004232 
- 00016865  0x00001c38 fetch  0x00000001 , 0x00004812 
- 00016866  0x00001c39 copy  0x0000003f , 0x00000011 
- 00016867  0x00001c3a fetch  0x00000001 , 0x00004040 
- 00016868  0x00001c3b isolate1  0x00000000 , 0x0000003f 
- 00016869  0x00001c3c setflag  0x00000001 , 0x00000003 , 0x00000011 
- 00016870  0x00001c3d isolate1  0x00000001 , 0x0000003f 
- 00016871  0x00001c3e setflag  0x00000001 , 0x00000005 , 0x00000011 
- 00016872  0x00001c3f fetch  0x00000001 , 0x00004041 
- 00016873  0x00001c40 isolate1  0x00000001 , 0x0000003f 
- 00016874  0x00001c41 setflag  0x00000001 , 0x00000004 , 0x00000011 
- 00016875  0x00001c42 isolate1  0x00000000 , 0x0000003f 
- 00016876  0x00001c43 setflag  0x00000001 , 0x00000006 , 0x00000011 
- 00016877  0x00001c44 copy  0x00000011 , 0x0000003f 
- 00016878  0x00001c45 istore  0x00000001 , 0x0000000a 
- 00016879  0x00001c46 branch  0x000068fa 
- 00016880  0x00001c49 setarg  0x009e8b33 
- 00016881  0x00001c4a store  0x00000003 , 0x00004147 
- 00016882  0x00001c4b fetch  0x00000001 , 0x000042a4 
- 00016883  0x00001c4c set1  0x00000000 , 0x0000003f 
- 00016884  0x00001c4d store  0x00000001 , 0x000042a4 
- 00016885  0x00001c4e branch  0x00004636 
- 00016886  0x00001c51 call  0x00003f3e 
- 00016887  0x00001c52 fetch  0x00000001 , 0x0000429a 
- 00016888  0x00001c53 bne  0x00000000 , 0x0000427f 
- 00016889  0x00001c54 call  0x00003f8a 
- 00016890  0x00001c55 fetch  0x00000001 , 0x000042a4 
- 00016891  0x00001c56 set1  0x00000001 , 0x0000003f 
- 00016892  0x00001c57 store  0x00000001 , 0x000042a4 
- 00016893  0x00001c58 setarg  0x00000200 
- 00016894  0x00001c59 store  0x00000002 , 0x0000481a 
- 00016895  0x00001c5a arg  0x0000486c , 0x00000011 
- 00016896  0x00001c5b arg  0x00000006 , 0x00000039 
- 00016897  0x00001c5c call  0x00004232 
- 00016898  0x00001c5d call  0x00007f74 
- 00016899  0x00001c5e branch  0x0000428c 
- 00016900  0x00001c63 arg  0x0000481c , 0x00000011 
- 00016901  0x00001c64 arg  0x00000004 , 0x00000039 
- 00016902  0x00001c65 call  0x00004232 
- 00016903  0x00001c66 fetch  0x00000001 , 0x0000054f 
- 00016904  0x00001c67 copy  0x0000003f , 0x00000039 
- 00016905  0x00001c68 arg  0x00000550 , 0x00000006 
- 00016906  0x00001c69 branch  0x00007f74 
- 00016907  0x00001c6e arg  0x0000485b , 0x00000011 
- 00016908  0x00001c6f arg  0x00000005 , 0x00000039 
- 00016909  0x00001c70 call  0x00004232 
- 00016910  0x00001c71 call  0x00004247 
- 00016911  0x00001c72 setarg  0x00000054 
- 00016912  0x00001c73 istore  0x00000001 , 0x0000000a 
- 00016913  0x00001c74 call  0x00004244 
- 00016914  0x00001c75 arg  0x00004280 , 0x00000011 
- 00016915  0x00001c76 call  0x00007e9b 
- 00016916  0x00001c77 call  0x00004247 
- 00016917  0x00001c78 setarg  0x00000041 
- 00016918  0x00001c79 istore  0x00000001 , 0x0000000a 
- 00016919  0x00001c7a call  0x00004244 
- 00016920  0x00001c7b arg  0x00004282 , 0x00000011 
- 00016921  0x00001c7c call  0x00007e9b 
- 00016922  0x00001c7d call  0x00004247 
- 00016923  0x00001c7e setarg  0x0000004f 
- 00016924  0x00001c7f istore  0x00000001 , 0x0000000a 
- 00016925  0x00001c80 call  0x00004244 
- 00016926  0x00001c81 arg  0x00004284 , 0x00000011 
- 00016927  0x00001c82 call  0x00007e9b 
- 00016928  0x00001c83 branch  0x00007f74 
- 00016929  0x00001c85 call  0x00007f6e 
- 00016930  0x00001c86 call  0x00004247 
- 00016931  0x00001c87 arg  0x00000182 , 0x00000011 
- 00016932  0x00001c88 call  0x00007e9d 
- 00016933  0x00001c89 call  0x0000424e 
- 00016934  0x00001c8a arg  0x0000017f , 0x00000011 
- 00016935  0x00001c8b call  0x00007e99 
- 00016936  0x00001c8c call  0x0000424e 
- 00016937  0x00001c8d call  0x000041d4 
- 00016938  0x00001c8e branch  0x000068fa 
- 00016939  0x00001c9a call  0x0000422d 
- 00016940  0x00001c9b branch  0x0000497c 
- 00016941  0x00001c9d call  0x00004269 
- 00016942  0x00001c9e copy  0x0000003f , 0x00000002 
- 00016943  0x00001c9f copy  0x0000003f , 0x00000039 
- 00016944  0x00001ca0 copy  0x00000011 , 0x00000005 
- 00016945  0x00001ca1 rtn 
- 00016946  0x00001ca5 call  0x00007f6e 
- 00016947  0x00001ca6 call  0x00004241 
- 00016948  0x00001ca8 copy  0x00000011 , 0x00000006 
- 00016949  0x00001ca9 call  0x00004976 
- 00016950  0x00001caa branch  0x00004244 
- 00016951  0x00001cae ifetch  0x00000001 , 0x00000003 
- 00016952  0x00001caf ifetcht  0x00000001 , 0x00000012 
- 00016953  0x00001cb0 isub  0x00000002 , 0x0000003e 
- 00016954  0x00001cb1 disable  0x00000001 
- 00016955  0x00001cb2 nbranch  0x00004240 , 0x00000005 
- 00016956  0x00001cb3 increase  0x00000001 , 0x00000012 
- 00016957  0x00001cb4 loop  0x00004237 
- 00016958  0x00001cb5 enable  0x00000001 
- 00016959  0x00001cb6 rtn 
- 00016960  0x00001cb8 branch  0x00004251 
- 00016961  0x00001cbc setarg  0x0000002b 
- 00016962  0x00001cbd istore  0x00000001 , 0x0000000a 
- 00016963  0x00001cbe rtn 
- 00016964  0x00001cc1 setarg  0x0000003a 
- 00016965  0x00001cc2 istore  0x00000001 , 0x0000000a 
- 00016966  0x00001cc3 rtn 
- 00016967  0x00001cc7 setarg  0x0000003e 
- 00016968  0x00001cc8 istore  0x00000001 , 0x0000000a 
- 00016969  0x00001cc9 rtn 
- 00016970  0x00001ccb setarg  0x0000004e 
- 00016971  0x00001ccc istore  0x00000001 , 0x0000000a 
- 00016972  0x00001ccd call  0x000068fa 
- 00016973  0x00001cce branch  0x00004286 
- 00016974  0x00001cd3 setarg  0x0000002c 
- 00016975  0x00001cd4 istore  0x00000001 , 0x0000000a 
- 00016976  0x00001cd5 rtn 
- 00016977  0x00001cd8 copy  0x00000011 , 0x00000003 
- 00016978  0x00001cd9 rtn 
- 00016979  0x00001cdc arg  0x00000195 , 0x00000013 
- 00016980  0x00001cdd arg  0x00000004 , 0x00000039 
- 00016981  0x00001cdf copy  0x00000039 , 0x0000003f 
- 00016982  0x00001ce0 store  0x00000001 , 0x00000161 
- 00016983  0x00001ce1 ifetch  0x00000001 , 0x00000013 
- 00016984  0x00001ce2 beq  0x00000033 , 0x0000425b 
- 00016985  0x00001ce3 beq  0x00000034 , 0x0000425b 
- 00016986  0x00001ce4 branch  0x00004267 
- 00016987  0x00001ce6 call  0x00004247 
- 00016988  0x00001ce7 ifetch  0x00000001 , 0x00000013 
- 00016989  0x00001ce8 istore  0x00000001 , 0x0000000a 
- 00016990  0x00001ce9 increase  0x00000001 , 0x00000013 
- 00016991  0x00001cea call  0x0000424e 
- 00016992  0x00001ceb copy  0x00000013 , 0x00000011 
- 00016993  0x00001cec call  0x00007e9d 
- 00016994  0x00001cee increase  0x00000006 , 0x00000013 
- 00016995  0x00001cef fetch  0x00000001 , 0x00000161 
- 00016996  0x00001cf0 copy  0x0000003f , 0x00000039 
- 00016997  0x00001cf1 loop  0x00004255 
- 00016998  0x00001cf2 rtn 
- 00016999  0x00001cf4 increase  0x00000001 , 0x00000013 
- 00017000  0x00001cf5 branch  0x00004262 
- 00017001  0x00001cfa set1  0x00000025 , 0x00000000 
- 00017002  0x00001cfb bpatch  0x00000098 , 0x00004033 
- 00017003  0x00001cfc hfetch  0x00000002 , 0x00008058 
- 00017004  0x00001cfd isub  0x00000003 , 0x0000003f 
- 00017005  0x00001cfe rtn  0x00000005 
- 00017006  0x00001cff branch  0x00004273 , 0x00000002 
- 00017007  0x00001d01 fetcht  0x00000002 , 0x0000480e 
- 00017008  0x00001d02 iadd  0x00000002 , 0x0000003f 
- 00017009  0x00001d03 increase  0xfffffffe , 0x0000003f 
- 00017010  0x00001d04 rtn 
- 00017011  0x00001d06 call  0x00004278 
- 00017012  0x00001d07 iadd  0x00000003 , 0x00000002 
- 00017013  0x00001d08 hfetch  0x00000002 , 0x00008058 
- 00017014  0x00001d09 isub  0x00000002 , 0x0000003f 
- 00017015  0x00001d0a branch  0x0000426f 
- 00017016  0x00001d0d arg  0x00004fff , 0x0000003f 
- 00017017  0x00001d0e increase  0x00000001 , 0x0000003f 
- 00017018  0x00001d0f arg  0x00004a00 , 0x00000002 
- 00017019  0x00001d10 isub  0x00000002 , 0x0000003f 
- 00017020  0x00001d11 rtn 
- 00017021  0x00001d14 fetcht  0x00000002 , 0x0000480e 
- 00017022  0x00001d15 branch  0x00006903 
- 00017023  0x00001d1b set1  0x00000025 , 0x00000000 
- 00017024  0x00001d1c bpatch  0x00000099 , 0x00004033 
- 00017025  0x00001d1d call  0x00007f6e 
- 00017026  0x00001d1e setarg  0x00525245 
- 00017027  0x00001d1f istore  0x00000003 , 0x0000000a 
- 00017028  0x00001d20 call  0x000068fa 
- 00017029  0x00001d21 branch  0x0000428c 
- 00017030  0x00001d24 set1  0x00000025 , 0x00000000 
- 00017031  0x00001d25 bpatch  0x0000009a , 0x00004033 
- 00017032  0x00001d26 call  0x00007f6e 
- 00017033  0x00001d27 setarg  0x00004b4f 
- 00017034  0x00001d28 istore  0x00000002 , 0x0000000a 
- 00017035  0x00001d29 call  0x000068fa 
- 00017036  0x00001d2c set1  0x00000025 , 0x00000000 
- 00017037  0x00001d2d bpatch  0x0000009b , 0x00004033 
- 00017038  0x00001d2e call  0x0000427d 
- 00017039  0x00001d30 setarg  0x00000000 
- 00017040  0x00001d31 store  0x00000002 , 0x0000480e 
- 00017041  0x00001d32 store  0x00000004 , 0x0000480a 
- 00017042  0x00001d33 rtn 
- 00017043  0x00001d37 call  0x00007db2 
- 00017044  0x00001d38 call  0x00003f94 
- 00017045  0x00001d39 setarg  0x0000429f 
- 00017046  0x00001d3a store  0x00000002 , 0x0000428c 
- 00017047  0x00001d3b setarg  0x000042be 
- 00017048  0x00001d3c store  0x00000002 , 0x00004292 
- 00017049  0x00001d3d setarg  0x00007cdb 
- 00017050  0x00001d3e store  0x00000002 , 0x00004290 
- 00017051  0x00001d3f jam  0x00000005 , 0x0000025a 
- 00017052  0x00001d40 jam  0x00000000 , 0x0000026e 
- 00017053  0x00001d41 jam  0x0000001b , 0x00004272 
- 00017054  0x00001d42 rtn 
- 00017055  0x00001d46 disable  0x00000001 
- 00017056  0x00001d47 call  0x00003f3e 
- 00017057  0x00001d49 jam  0x0000001b , 0x0000041c 
- 00017058  0x00001d4a fetch  0x00000001 , 0x0000429a 
- 00017059  0x00001d4b compare  0x00000002 , 0x0000003f , 0x00000003 
- 00017060  0x00001d4c nrtn  0x00000001 
- 00017061  0x00001d4d jam  0x00000000 , 0x000043d2 
- 00017062  0x00001d4e rtn 
- 00017063  0x00001d51 fetch  0x00000001 , 0x00000340 
- 00017064  0x00001d52 bbit0  0x00000000 , 0x000042b0 
- 00017065  0x00001d53 fetch  0x00000006 , 0x00000342 
- 00017066  0x00001d54 fetcht  0x00000006 , 0x000003d0 
- 00017067  0x00001d55 isub  0x00000002 , 0x0000003e 
- 00017068  0x00001d56 nrtn  0x00000005 
- 00017069  0x00001d58 fetch  0x00000006 , 0x000003d0 
- 00017070  0x00001d59 store  0x00000006 , 0x000044e7 
- 00017071  0x00001d5a rtn 
- 00017072  0x00001d5d arg  0x000000ff , 0x00000011 
- 00017073  0x00001d5e call  0x00005b52 
- 00017074  0x00001d5f nrtn  0x00000005 
- 00017075  0x00001d60 ifetch  0x00000002 , 0x00000006 
- 00017076  0x00001d61 fetcht  0x00000002 , 0x00000270 
- 00017077  0x00001d62 isub  0x00000002 , 0x0000003e 
- 00017078  0x00001d63 nrtn  0x00000005 
- 00017079  0x00001d64 fetch  0x00000001 , 0x0000026e 
- 00017080  0x00001d65 increase  0x00000001 , 0x0000003f 
- 00017081  0x00001d66 store  0x00000001 , 0x0000026e 
- 00017082  0x00001d67 fetcht  0x00000001 , 0x0000026f 
- 00017083  0x00001d68 isub  0x00000002 , 0x0000003e 
- 00017084  0x00001d69 branch  0x000042ad , 0x00000002 
- 00017085  0x00001d6a rtn 
- 00017086  0x00001d6d copy  0x00000013 , 0x0000003f 
- 00017087  0x00001d6e beq  0x00000015 , 0x000042c5 
- 00017088  0x00001d6f beq  0x00000014 , 0x000042d7 
- 00017089  0x00001d70 and  0x0000003f , 0x0000000f , 0x00000002 
- 00017090  0x00001d71 and_into  0x000000f0 , 0x0000003f 
- 00017091  0x00001d72 beq  0x00000050 , 0x000042cd 
- 00017092  0x00001d73 rtn 
- 00017093  0x00001d76 setarg  0x00000000 
- 00017094  0x00001d77 store  0x00000006 , 0x000044e7 
- 00017095  0x00001d78 jam  0x00000000 , 0x0000026e 
- 00017096  0x00001d79 setarg  0x00000000 
- 00017097  0x00001d7a store  0x00000005 , 0x00000ff1 
- 00017098  0x00001d7b jam  0x00000001 , 0x00000ff0 
- 00017099  0x00001d7c call  0x00007cdb 
- 00017100  0x00001d7d branch  0x00003f8a 
- 00017101  0x00001d80 rtn 
- 00017102  0x00001d81 fetch  0x00000001 , 0x000043d2 
- 00017103  0x00001d82 rtn  0x00000034 
- 00017104  0x00001d83 fetch  0x00000001 , 0x0000025a 
- 00017105  0x00001d84 rtn  0x00000034 
- 00017106  0x00001d85 increase  0xffffffff , 0x0000003f 
- 00017107  0x00001d86 store  0x00000001 , 0x0000025a 
- 00017108  0x00001d87 nrtn  0x00000034 
- 00017109  0x00001d88 call  0x000042d8 
- 00017110  0x00001d89 branch  0x00003f8e 
- 00017111  0x00001d8d branch  0x00003f8c 
- 00017112  0x00001d91 jam  0x00000005 , 0x0000025a 
- 00017113  0x00001d92 fetch  0x00000001 , 0x00000267 
- 00017114  0x00001d93 beq  0x00000001 , 0x000042e1 
- 00017115  0x00001d94 beq  0x00000002 , 0x000042dd 
- 00017116  0x00001d95 rtn 
- 00017117  0x00001d97 fetch  0x00000006 , 0x0000025b 
- 00017118  0x00001d98 store  0x00000006 , 0x00000268 
- 00017119  0x00001d99 jam  0x00000001 , 0x00000267 
- 00017120  0x00001d9a rtn 
- 00017121  0x00001d9c fetch  0x00000006 , 0x00000261 
- 00017122  0x00001d9d store  0x00000006 , 0x00000268 
- 00017123  0x00001d9e jam  0x00000002 , 0x00000267 
- 00017124  0x00001d9f rtn 
- 00017125  0x00001da3 ifetch  0x00000002 , 0x00000003 
- 00017126  0x00001da4 branch  0x00004490 , 0x00000034 
- 00017127  0x00001da5 iforce  0x00000013 
- 00017128  0x00001da6 ifetch  0x00000001 , 0x00000003 
- 00017129  0x00001da7 store  0x00000001 , 0x00000293 
- 00017130  0x00001da8 iforce  0x00000011 
- 00017131  0x00001da9 bbit0  0x00000006 , 0x000042ed 
- 00017132  0x00001daa increase  0xfffffffe , 0x00000013 
- 00017133  0x00001dac ifetch  0x00000002 , 0x00000003 
- 00017134  0x00001dad rshift4  0x0000003f , 0x00000039 
- 00017135  0x00001dae and  0x0000003f , 0x0000000f , 0x00000008 
- 00017136  0x00001daf iadd  0x00000011 , 0x00000011 
- 00017137  0x00001db0 rshift8  0x0000003f , 0x0000003f 
- 00017138  0x00001db1 iadd  0x00000011 , 0x00000011 
- 00017139  0x00001db2 ifetch  0x00000001 , 0x00000003 
- 00017140  0x00001db3 iadd  0x00000011 , 0x0000003f 
- 00017141  0x00001db4 bne  0x000000ff , 0x00004319 
- 00017142  0x00001db5 add  0x00000013 , 0xfffffffc , 0x0000003f 
- 00017143  0x00001db6 isub  0x00000039 , 0x0000003e 
- 00017144  0x00001db7 nbranch  0x00004316 , 0x00000005 
- 00017145  0x00001db8 fetch  0x00000001 , 0x00000293 
- 00017146  0x00001db9 isolate0  0x00000007 , 0x0000003f 
- 00017147  0x00001dba branch  0x00004302 , 0x00000001 
- 00017148  0x00001dbb set0  0x0000001b , 0x00000000 
- 00017149  0x00001dbc bmark1  0x0000001b , 0x00004302 
- 00017150  0x00001dbd and_into  0x00000007 , 0x0000003f 
- 00017151  0x00001dbe fetcht  0x00000001 , 0x0000028c 
- 00017152  0x00001dbf isub  0x00000002 , 0x0000003e 
- 00017153  0x00001dc0 nbranch  0x00004316 , 0x00000005 
- 00017154  0x00001dc2 setarg  0x00000640 
- 00017155  0x00001dc3 force  0x00000007 , 0x00000007 
- 00017156  0x00001dc4 call  0x00007e4c 
- 00017157  0x00001dc5 deposit  0x00000008 
- 00017158  0x00001dc6 call  0x00004320 
- 00017159  0x00001dc7 rtn  0x00000028 
- 00017160  0x00001dc8 fetch  0x00000001 , 0x00000293 
- 00017161  0x00001dc9 iforce  0x00000011 
- 00017162  0x00001dca rshift3  0x0000003f , 0x00000002 
- 00017163  0x00001dcb and_into  0x00000007 , 0x00000002 
- 00017164  0x00001dcc fetch  0x00000001 , 0x0000028b 
- 00017165  0x00001dcd isub  0x00000002 , 0x0000003f 
- 00017166  0x00001dce sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00017167  0x00001dcf and_into  0x00000007 , 0x0000003f 
- 00017168  0x00001dd0 bne  0x00000001 , 0x00004316 
- 00017169  0x00001dd1 storet  0x00000001 , 0x0000028b 
- 00017170  0x00001dd2 fetch  0x00000001 , 0x00000272 
- 00017171  0x00001dd3 increase  0x00000001 , 0x0000003f 
- 00017172  0x00001dd4 store  0x00000001 , 0x00000272 
- 00017173  0x00001dd5 branch  0x00004319 
- 00017174  0x00001dd8 fetch  0x00000001 , 0x00000273 
- 00017175  0x00001dd9 increase  0x00000001 , 0x0000003f 
- 00017176  0x00001dda store  0x00000001 , 0x00000273 
- 00017177  0x00001ddc hfetch  0x00000002 , 0x00008058 
- 00017178  0x00001ddd iforce  0x00000003 
- 00017179  0x00001dde ifetch  0x00000002 , 0x00000003 
- 00017180  0x00001ddf iadd  0x00000003 , 0x00000003 
- 00017181  0x00001de0 deposit  0x00000003 
- 00017182  0x00001de1 hstore  0x00000002 , 0x00008058 
- 00017183  0x00001de2 rtn 
- 00017184  0x00001de5 disable  0x00000028 
- 00017185  0x00001de6 rtn  0x00000034 
- 00017186  0x00001de7 beq  0x00000001 , 0x00004328 
- 00017187  0x00001de8 beq  0x00000002 , 0x00004346 
- 00017188  0x00001de9 beq  0x00000005 , 0x00004507 
- 00017189  0x00001dea beq  0x00000006 , 0x000044dd 
- 00017190  0x00001deb beq  0x00000008 , 0x00004a56 
- 00017191  0x00001dec rtn 
- 00017192  0x00001def set0  0x00000018 , 0x00000000 
- 00017193  0x00001df0 ifetch  0x00000001 , 0x00000003 
- 00017194  0x00001df1 beq  0x000000da , 0x0000432f 
- 00017195  0x00001df2 beq  0x000000ac , 0x00004336 
- 00017196  0x00001df3 beq  0x000000ad , 0x0000433a 
- 00017197  0x00001df4 beq  0x000000de , 0x00004344 
- 00017198  0x00001df5 rtn 
- 00017199  0x00001df7 bmark1  0x00000017 , 0x00004333 
- 00017200  0x00001df8 force  0x000000da , 0x00000002 
- 00017201  0x00001df9 setarg  0x00ededdc 
- 00017202  0x00001dfa call  0x0000433c 
- 00017203  0x00001dfc force  0x000000ac , 0x00000002 
- 00017204  0x00001dfd setarg  0x00eeefaf 
- 00017205  0x00001dfe branch  0x0000433c 
- 00017206  0x00001e00 set1  0x00000017 , 0x00000000 
- 00017207  0x00001e01 force  0x000000ad , 0x00000002 
- 00017208  0x00001e02 setarg  0x00edacef 
- 00017209  0x00001e03 branch  0x0000433c 
- 00017210  0x00001e05 force  0x000000de , 0x00000002 
- 00017211  0x00001e06 setarg  0x00d0d0ad 
- 00017212  0x00001e08 lshift8  0x0000003f , 0x0000003f 
- 00017213  0x00001e09 ior  0x00000002 , 0x00000002 
- 00017214  0x00001e0a call  0x00004972 
- 00017215  0x00001e0b istoret  0x00000004 , 0x0000000a 
- 00017216  0x00001e0c force  0x00000001 , 0x00000007 
- 00017217  0x00001e0d force  0x00000004 , 0x00000039 
- 00017218  0x00001e0e set0  0x00000013 , 0x00000000 
- 00017219  0x00001e0f branch  0x00004378 
- 00017220  0x00001e11 force  0x00000000 , 0x00000030 
- 00017221  0x00001e12 branch  0x00004933 
- 00017222  0x00001e15 copy  0x00000039 , 0x00000030 
- 00017223  0x00001e16 call  0x00004371 
- 00017224  0x00001e17 force  0x00000000 , 0x00000012 
- 00017225  0x00001e18 call  0x00004972 
- 00017226  0x00001e19 copy  0x00000030 , 0x00000039 
- 00017227  0x00001e1a ifetch  0x00000001 , 0x00000003 
- 00017228  0x00001e1b setarg  0x00000001 
- 00017229  0x00001e1c istore  0x00000001 , 0x0000000a 
- 00017230  0x00001e1d set0  0x0000001a , 0x00000000 
- 00017231  0x00001e1f ifetch  0x00000001 , 0x00000003 
- 00017232  0x00001e20 increase  0x00000001 , 0x00000012 
- 00017233  0x00001e21 beq  0x0000001c , 0x0000435b 
- 00017234  0x00001e22 compare  0x00000004 , 0x00000012 , 0x000000ff 
- 00017235  0x00001e23 nbranch  0x0000435d , 0x00000001 
- 00017236  0x00001e24 setflag  0x00000034 , 0x0000001a , 0x00000000 
- 00017237  0x00001e25 bne  0x0000003a , 0x0000435d 
- 00017238  0x00001e26 setarg  0x000007d0 
- 00017239  0x00001e27 force  0x00000000 , 0x00000007 
- 00017240  0x00001e28 call  0x00007e4c 
- 00017241  0x00001e29 set1  0x00000018 , 0x00000000 
- 00017242  0x00001e2a rtn 
- 00017243  0x00001e2d compare  0x00000006 , 0x00000012 , 0x000000ff 
- 00017244  0x00001e2e branch  0x00004366 , 0x00000001 
- 00017245  0x00001e30 isolate1  0x0000001a , 0x00000000 
- 00017246  0x00001e31 call  0x00004368 , 0x00000001 
- 00017247  0x00001e32 istore  0x00000001 , 0x0000000a 
- 00017248  0x00001e33 loop  0x0000434f 
- 00017249  0x00001e34 set0  0x00000019 , 0x00000000 
- 00017250  0x00001e35 copy  0x00000030 , 0x00000039 
- 00017251  0x00001e36 set1  0x00000013 , 0x00000000 
- 00017252  0x00001e37 force  0x00000002 , 0x00000007 
- 00017253  0x00001e38 branch  0x00004378 
- 00017254  0x00001e3a set1  0x00000019 , 0x00000000 
- 00017255  0x00001e3b branch  0x0000435d 
- 00017256  0x00001e3e rtnmark1  0x00000019 
- 00017257  0x00001e3f compare  0x0000000a , 0x00000012 , 0x000000ff 
- 00017258  0x00001e40 branch  0x0000436f , 0x00000001 
- 00017259  0x00001e41 compare  0x0000000b , 0x00000012 , 0x000000ff 
- 00017260  0x00001e42 nrtn  0x00000001 
- 00017261  0x00001e43 setarg  0x00000012 
- 00017262  0x00001e44 rtn 
- 00017263  0x00001e46 setarg  0x000000e9 
- 00017264  0x00001e47 rtn 
- 00017265  0x00001e4a fetch  0x00000001 , 0x00000293 
- 00017266  0x00001e4b increase  0x00000001 , 0x0000003f 
- 00017267  0x00001e4c and_into  0x00000007 , 0x0000003f 
- 00017268  0x00001e4d store  0x00000001 , 0x0000028c 
- 00017269  0x00001e4e force  0x00000000 , 0x00000039 
- 00017270  0x00001e4f force  0x00000000 , 0x00000007 
- 00017271  0x00001e50 set0  0x00000013 , 0x00000000 
- 00017272  0x00001e53 add  0x00000039 , 0x00000004 , 0x00000012 
- 00017273  0x00001e54 fetch  0x00000001 , 0x0000028c 
- 00017274  0x00001e55 lshift3  0x0000003f , 0x00000013 
- 00017275  0x00001e56 isolate0  0x00000014 , 0x00000000 
- 00017276  0x00001e57 nsetflag  0x00000001 , 0x00000006 , 0x00000013 
- 00017277  0x00001e58 branch  0x0000437f , 0x00000001 
- 00017278  0x00001e59 increase  0x00000002 , 0x00000012 
- 00017279  0x00001e5b bmark0  0x00000013 , 0x00004389 
- 00017280  0x00001e5c set1  0x00000007 , 0x00000013 
- 00017281  0x00001e5d fetch  0x00000001 , 0x00000294 
- 00017282  0x00001e5e ior  0x00000013 , 0x00000013 
- 00017283  0x00001e5f increase  0x00000001 , 0x0000003f 
- 00017284  0x00001e60 and_into  0x00000007 , 0x0000003f 
- 00017285  0x00001e61 store  0x00000001 , 0x00000294 
- 00017286  0x00001e62 fetch  0x00000001 , 0x00000274 
- 00017287  0x00001e63 increase  0x00000001 , 0x0000003f 
- 00017288  0x00001e64 store  0x00000001 , 0x00000274 
- 00017289  0x00001e66 fetch  0x00000002 , 0x0000028f 
- 00017290  0x00001e67 iforce  0x0000000a 
- 00017291  0x00001e68 deposit  0x00000012 
- 00017292  0x00001e69 isolate1  0x00000013 , 0x00000000 
- 00017293  0x00001e6a setflag  0x00000001 , 0x0000000f , 0x0000003f 
- 00017294  0x00001e6b istore  0x00000002 , 0x0000000a 
- 00017295  0x00001e6c copy  0x0000000a , 0x00000011 
- 00017296  0x00001e6d deposit  0x00000013 
- 00017297  0x00001e6e istore  0x00000001 , 0x0000000a 
- 00017298  0x00001e6f lshift4  0x00000039 , 0x0000003f 
- 00017299  0x00001e70 ior  0x00000007 , 0x0000003f 
- 00017300  0x00001e71 iadd  0x00000013 , 0x00000013 
- 00017301  0x00001e72 istore  0x00000002 , 0x0000000a 
- 00017302  0x00001e73 rshift8  0x0000003f , 0x0000003f 
- 00017303  0x00001e74 iadd  0x00000013 , 0x0000003f 
- 00017304  0x00001e75 sub  0x0000003f , 0x000000ff , 0x0000003f 
- 00017305  0x00001e76 istore  0x00000001 , 0x0000000a 
- 00017306  0x00001e77 bmark0  0x00000014 , 0x0000439f 
- 00017307  0x00001e78 increase  0x00000004 , 0x00000039 
- 00017308  0x00001e79 copy  0x00000011 , 0x0000000a 
- 00017309  0x00001e7a call  0x00004986 
- 00017310  0x00001e7b istore  0x00000002 , 0x0000000a 
- 00017311  0x00001e7d fetch  0x00000002 , 0x0000028f 
- 00017312  0x00001e7e iadd  0x00000012 , 0x0000000a 
- 00017313  0x00001e7f increase  0x00000002 , 0x0000000a 
- 00017314  0x00001e80 deposit  0x0000000a 
- 00017315  0x00001e81 store  0x00000002 , 0x0000028f 
- 00017316  0x00001e82 hstore  0x00000002 , 0x0000805e 
- 00017317  0x00001e83 fetcht  0x00000002 , 0x0000028d 
- 00017318  0x00001e84 call  0x000043d8 
- 00017319  0x00001e85 call  0x000043ab 
- 00017320  0x00001e86 setarg  0x00000640 
- 00017321  0x00001e87 force  0x00000007 , 0x00000007 
- 00017322  0x00001e88 branch  0x00007e4c 
- 00017323  0x00001e8b setarg  0x00000190 
- 00017324  0x00001e8c force  0x00000001 , 0x00000007 
- 00017325  0x00001e8d call  0x00007e4c 
- 00017326  0x00001e8e set1  0x00000015 , 0x00000000 
- 00017327  0x00001e8f rtn 
- 00017328  0x00001e92 rtnmark0  0x00000015 
- 00017329  0x00001e93 force  0x00000001 , 0x00000007 
- 00017330  0x00001e94 call  0x00007e53 
- 00017331  0x00001e95 nrtn  0x00000034 
- 00017332  0x00001e96 fetch  0x00000002 , 0x0000028d 
- 00017333  0x00001e97 hstore  0x00000002 , 0x00008060 
- 00017334  0x00001e98 branch  0x000043ab 
- 00017335  0x00001e9b fetch  0x00000002 , 0x0000028f 
- 00017336  0x00001e9c fetcht  0x00000002 , 0x0000028d 
- 00017337  0x00001e9d isub  0x00000002 , 0x0000003e 
- 00017338  0x00001e9e branch  0x000043d6 , 0x00000005 
- 00017339  0x00001e9f copy  0x00000002 , 0x0000000a 
- 00017340  0x00001ea0 ifetch  0x00000002 , 0x0000000a 
- 00017341  0x00001ea1 iforce  0x00000011 
- 00017342  0x00001ea2 iand  0x00000035 , 0x0000003f 
- 00017343  0x00001ea3 iadd  0x0000000a , 0x0000000a 
- 00017344  0x00001ea4 hfetch  0x00000002 , 0x00008110 
- 00017345  0x00001ea5 isub  0x0000000a , 0x0000003f 
- 00017346  0x00001ea6 iand  0x00000035 , 0x00000012 
- 00017347  0x00001ea7 fetch  0x00000002 , 0x0000028f 
- 00017348  0x00001ea8 isub  0x0000000a , 0x0000003f 
- 00017349  0x00001ea9 iand  0x00000035 , 0x0000003f 
- 00017350  0x00001eaa isub  0x00000012 , 0x0000003f 
- 00017351  0x00001eab nrtn  0x00000002 
- 00017352  0x00001eac isolate0  0x0000000f , 0x00000011 
- 00017353  0x00001ead branch  0x000043d1 , 0x00000001 
- 00017354  0x00001eae fetch  0x00000001 , 0x00000272 
- 00017355  0x00001eaf rtn  0x00000034 
- 00017356  0x00001eb0 increase  0xffffffff , 0x0000003f 
- 00017357  0x00001eb1 store  0x00000001 , 0x00000272 
- 00017358  0x00001eb2 fetch  0x00000001 , 0x00000274 
- 00017359  0x00001eb3 increase  0xffffffff , 0x0000003f 
- 00017360  0x00001eb4 store  0x00000001 , 0x00000274 
- 00017361  0x00001eb6 copy  0x0000000a , 0x00000002 
- 00017362  0x00001eb7 storet  0x00000002 , 0x0000028d 
- 00017363  0x00001eb8 fetch  0x00000002 , 0x0000028f 
- 00017364  0x00001eb9 call  0x000043d8 
- 00017365  0x00001eba branch  0x000043b7 
- 00017366  0x00001ebc set0  0x00000015 , 0x00000000 
- 00017367  0x00001ebd rtn 
- 00017368  0x00001ec0 isub  0x00000002 , 0x0000003f 
- 00017369  0x00001ec1 iand  0x00000035 , 0x0000003f 
- 00017370  0x00001ec2 isub  0x00000035 , 0x0000003f 
- 00017371  0x00001ec3 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00017372  0x00001ec4 store  0x00000002 , 0x00000291 
- 00017373  0x00001ec5 rtn 
- 00017374  0x00001ec8 fetch  0x00000002 , 0x0000028f 
- 00017375  0x00001ec9 iadd  0x0000000a , 0x0000000a 
- 00017376  0x00001eca rtn 
- 00017377  0x00001ecf rtn 
- 00017378  0x00001ed2 set1  0x00000025 , 0x00000000 
- 00017379  0x00001ed3 bpatch  0x000000ec , 0x0000403d 
- 00017380  0x00001ed4 fetch  0x00000001 , 0x00004272 
- 00017381  0x00001ed5 nrtn  0x00000034 
- 00017382  0x00001ed7 call  0x000043e9 
- 00017383  0x00001ed8 ncall  0x0000440e , 0x00000028 
- 00017384  0x00001ed9 rtn 
- 00017385  0x00001edc set1  0x00000025 , 0x00000000 
- 00017386  0x00001edd bpatch  0x000000ed , 0x0000403d 
- 00017387  0x00001ede copy  0x00000003 , 0x00000011 
- 00017388  0x00001edf arg  0x00000004 , 0x00000002 
- 00017389  0x00001ee0 ifetch  0x00000001 , 0x00000003 
- 00017390  0x00001ee1 beq  0x00000001 , 0x000043f4 
- 00017391  0x00001ee2 increase  0x00000001 , 0x00000002 
- 00017392  0x00001ee3 beq  0x00000002 , 0x000043f4 
- 00017393  0x00001ee4 copy  0x00000003 , 0x0000003f 
- 00017394  0x00001ee5 hstore  0x00000002 , 0x00008058 
- 00017395  0x00001ee6 rtn 
- 00017396  0x00001ee8 hfetch  0x00000002 , 0x00008112 
- 00017397  0x00001ee9 isub  0x00000002 , 0x0000003e 
- 00017398  0x00001eea nbranch  0x000043f4 , 0x00000002 
- 00017399  0x00001eec disable  0x00000028 
- 00017400  0x00001eed copy  0x00000011 , 0x00000003 
- 00017401  0x00001eee call  0x00004417 
- 00017402  0x00001eef iadd  0x00000002 , 0x00000002 
- 00017403  0x00001ef1 hfetch  0x00000002 , 0x00008112 
- 00017404  0x00001ef2 isub  0x00000002 , 0x0000003e 
- 00017405  0x00001ef3 nbranch  0x000043fb , 0x00000002 
- 00017406  0x00001ef4 copy  0x00000011 , 0x00000003 
- 00017407  0x00001ef5 ifetch  0x00000001 , 0x00000003 
- 00017408  0x00001ef6 beq  0x00000001 , 0x00004507 
- 00017409  0x00001ef7 beq  0x00000002 , 0x00004403 
- 00017410  0x00001ef8 branch  0x00003bf1 
- 00017411  0x00001efa set1  0x00000025 , 0x00000000 
- 00017412  0x00001efb bpatch  0x000000ee , 0x0000403d 
- 00017413  0x00001efc copy  0x00000003 , 0x00000011 
- 00017414  0x00001efd ifetch  0x00000002 , 0x00000003 
- 00017415  0x00001efe copy  0x00000011 , 0x00000003 
- 00017416  0x00001eff fetcht  0x00000001 , 0x00000046 
- 00017417  0x00001f00 icompare  0x000000ff , 0x00000002 
- 00017418  0x00001f01 branch  0x000044dd , 0x00000001 
- 00017419  0x00001f02 branch  0x000058ea , 0x00000036 
- 00017420  0x00001f03 enable  0x00000028 
- 00017421  0x00001f04 rtn 
- 00017422  0x00001f06 set1  0x00000025 , 0x00000000 
- 00017423  0x00001f07 bpatch  0x000000ef , 0x0000403d 
- 00017424  0x00001f08 hfetch  0x00000002 , 0x00008058 
- 00017425  0x00001f09 iforce  0x00000003 
- 00017426  0x00001f0a call  0x00004417 
- 00017427  0x00001f0b iadd  0x00000003 , 0x00000003 
- 00017428  0x00001f0c deposit  0x00000003 
- 00017429  0x00001f0d hstore  0x00000002 , 0x00008058 
- 00017430  0x00001f0e rtn 
- 00017431  0x00001f14 ifetch  0x00000001 , 0x00000003 
- 00017432  0x00001f15 increase  0x00000002 , 0x00000003 
- 00017433  0x00001f16 beq  0x00000002 , 0x0000441c 
- 00017434  0x00001f17 ifetch  0x00000001 , 0x00000003 
- 00017435  0x00001f18 rtn 
- 00017436  0x00001f1a ifetch  0x00000002 , 0x00000003 
- 00017437  0x00001f1b rtn 
- 00017438  0x00001f1e hfetch  0x00000002 , 0x0000805e 
- 00017439  0x00001f1f increase  0xfffffffb , 0x0000000a 
- 00017440  0x00001f20 iadd  0x0000000a , 0x0000000a 
- 00017441  0x00001f21 rtn 
- 00017442  0x00001f24 arg  0x00000004 , 0x00000002 
- 00017443  0x00001f25 branch  0x00004425 
- 00017444  0x00001f27 arg  0x00000002 , 0x00000002 
- 00017445  0x00001f29 set1  0x00000025 , 0x00000000 
- 00017446  0x00001f2a bpatch  0x000000f0 , 0x0000403e 
- 00017447  0x00001f2b increase  0x00000001 , 0x00000039 
- 00017448  0x00001f2c hfetch  0x00000002 , 0x0000805e 
- 00017449  0x00001f2d copy  0x0000003f , 0x0000000a 
- 00017450  0x00001f2e copy  0x00000039 , 0x0000003f 
- 00017451  0x00001f2f istoret  0x00000001 , 0x0000000a 
- 00017452  0x00001f30 increase  0xffffffff , 0x0000003f 
- 00017453  0x00001f31 iadd  0x0000000a , 0x0000000a 
- 00017454  0x00001f32 copy  0x0000000a , 0x0000003f 
- 00017455  0x00001f33 store  0x00000002 , 0x0000029d 
- 00017456  0x00001f34 copy  0x00000002 , 0x0000003f 
- 00017457  0x00001f35 rtneq  0x00000002 
- 00017458  0x00001f36 fetch  0x00000002 , 0x0000029d 
- 00017459  0x00001f37 hstore  0x00000002 , 0x0000805e 
- 00017460  0x00001f38 branch  0x0000443b 
- 00017461  0x00001f3b set1  0x00000025 , 0x00000000 
- 00017462  0x00001f3c bpatch  0x000000f1 , 0x0000403e 
- 00017463  0x00001f3d fetch  0x00000002 , 0x0000029d 
- 00017464  0x00001f3e branch  0x00003bf1 , 0x00000034 
- 00017465  0x00001f3f hstore  0x00000002 , 0x0000805e 
- 00017466  0x00001f40 branch  0x0000443b 
- 00017467  0x00001f43 setarg  0x00000000 
- 00017468  0x00001f44 store  0x00000002 , 0x0000029d 
- 00017469  0x00001f45 rtn 
- 00017470  0x00001f48 hfetcht  0x00000002 , 0x00008110 
- 00017471  0x00001f49 hfetch  0x00000002 , 0x0000805e 
- 00017472  0x00001f4a isub  0x00000002 , 0x00000011 
- 00017473  0x00001f4b nbranch  0x00004447 , 0x00000002 
- 00017474  0x00001f4c hfetcht  0x00000002 , 0x0000805a 
- 00017475  0x00001f4d hfetch  0x00000002 , 0x0000805c 
- 00017476  0x00001f4e isub  0x00000002 , 0x0000003f 
- 00017477  0x00001f4f isub  0x00000011 , 0x00000002 
- 00017478  0x00001f50 rtn 
- 00017479  0x00001f52 sub  0x00000011 , 0xffffffff , 0x00000002 
- 00017480  0x00001f53 rtn 
- 00017481  0x00001f59 set0  0x00000025 , 0x00000000 
- 00017482  0x00001f5a bpatch  0x000000cd , 0x00004019 
- 00017483  0x00001f5b fetch  0x00000001 , 0x00004132 
- 00017484  0x00001f5c rtnne  0x00000001 
- 00017485  0x00001f5d call  0x000044a3 
- 00017486  0x00001f5e call  0x00004494 
- 00017487  0x00001f5f call  0x000043b0 , 0x00000001 
- 00017488  0x00001f60 call  0x00004494 
- 00017489  0x00001f61 call  0x000043b7 , 0x00000001 
- 00017490  0x00001f62 branch  0x000044e6 
- 00017491  0x00001f63 rtnmark0  0x00000018 
- 00017492  0x00001f64 force  0x00000000 , 0x00000007 
- 00017493  0x00001f65 call  0x00007e53 
- 00017494  0x00001f66 nrtn  0x00000034 
- 00017495  0x00001f67 call  0x00004472 
- 00017496  0x00001f68 call  0x00004494 
- 00017497  0x00001f69 nrtn  0x00000001 
- 00017498  0x00001f6a set0  0x00000017 , 0x00000000 
- 00017499  0x00001f6b force  0x000000da , 0x00000002 
- 00017500  0x00001f6c setarg  0x00ededdc 
- 00017501  0x00001f6d call  0x0000433c 
- 00017502  0x00001f6e setarg  0x000007d0 
- 00017503  0x00001f6f force  0x00000000 , 0x00000007 
- 00017504  0x00001f70 branch  0x00007e4c 
- 00017505  0x00001f74 set0  0x00000025 , 0x00000000 
- 00017506  0x00001f75 bpatch  0x000000ce , 0x00004019 
- 00017507  0x00001f76 rtn  0x0000002b 
- 00017508  0x00001f77 setarg  0x00004aed 
- 00017509  0x00001f78 store  0x00000002 , 0x00004290 
- 00017510  0x00001f7a setarg  0x000001a0 
- 00017511  0x00001f7b store  0x00000002 , 0x000042ac 
- 00017512  0x00001f7d set0  0x00000025 , 0x00000000 
- 00017513  0x00001f7e bpatch  0x000000cf , 0x00004019 
- 00017514  0x00001f7f call  0x00006a0d 
- 00017515  0x00001f80 setarg  0x00001800 
- 00017516  0x00001f81 hstore  0x00000002 , 0x00008054 
- 00017517  0x00001f82 setarg  0x00001bff 
- 00017518  0x00001f83 hstore  0x00000002 , 0x00008056 
- 00017519  0x00001f84 setarg  0x00001c00 
- 00017520  0x00001f85 hstore  0x00000002 , 0x0000805a 
- 00017521  0x00001f86 call  0x00004489 
- 00017522  0x00001f88 set0  0x00000025 , 0x00000000 
- 00017523  0x00001f89 bpatch  0x000000d0 , 0x0000401a 
- 00017524  0x00001f8a hjam  0x00000000 , 0x00008062 
- 00017525  0x00001f8b jam  0x00000000 , 0x0000028b 
- 00017526  0x00001f8c jam  0x00000000 , 0x0000028c 
- 00017527  0x00001f8d jam  0x00000000 , 0x00000294 
- 00017528  0x00001f8e setarg  0x00001c00 
- 00017529  0x00001f8f store  0x00000002 , 0x0000028f 
- 00017530  0x00001f90 store  0x00000002 , 0x0000028d 
- 00017531  0x00001f91 hstore  0x00000002 , 0x0000805e 
- 00017532  0x00001f92 hstore  0x00000002 , 0x00008060 
- 00017533  0x00001f93 setarg  0x00001800 
- 00017534  0x00001f94 hstore  0x00000002 , 0x00008058 
- 00017535  0x00001f95 store  0x00000002 , 0x00000289 
- 00017536  0x00001f97 set0  0x00000025 , 0x00000000 
- 00017537  0x00001f98 bpatch  0x000000d1 , 0x0000401a 
- 00017538  0x00001f99 hfetch  0x00000002 , 0x00008050 
- 00017539  0x00001f9a set0  0x0000000f , 0x0000003f 
- 00017540  0x00001f9b hstore  0x00000002 , 0x00008050 
- 00017541  0x00001f9c call  0x00006909 
- 00017542  0x00001f9d hjam  0x00000001 , 0x00008043 
- 00017543  0x00001f9e hjam  0x00000081 , 0x00008062 
- 00017544  0x00001f9f branch  0x00004497 
- 00017545  0x00001fa2 setarg  0x00001fff 
- 00017546  0x00001fa3 hstore  0x00000002 , 0x0000805c 
- 00017547  0x00001fa4 hfetch  0x00000001 , 0x00008081 
- 00017548  0x00001fa5 or_into  0x00000007 , 0x0000003f 
- 00017549  0x00001fa6 hstore  0x00000001 , 0x00008081 
- 00017550  0x00001fa7 jam  0x000000ff , 0x0000029f 
- 00017551  0x00001fa8 rtn 
- 00017552  0x00001fab hfetch  0x00000002 , 0x00008116 
- 00017553  0x00001fac hstore  0x00000002 , 0x00008058 
- 00017554  0x00001fad set1  0x0000001b , 0x00000000 
- 00017555  0x00001fae rtn 
- 00017556  0x00001fb2 hfetch  0x00000001 , 0x00008062 
- 00017557  0x00001fb3 isolate1  0x00000003 , 0x0000003f 
- 00017558  0x00001fb4 rtn 
- 00017559  0x00001fb7 setarg  0x00004803 
- 00017560  0x00001fb8 store  0x00000002 , 0x00000295 
- 00017561  0x00001fb9 store  0x00000002 , 0x00000297 
- 00017562  0x00001fba force  0x00000001 , 0x00000002 
- 00017563  0x00001fbb iadd  0x00000002 , 0x0000003f 
- 00017564  0x00001fbc iadd  0x00000002 , 0x0000003f 
- 00017565  0x00001fbd increase  0x00000002 , 0x0000003f 
- 00017566  0x00001fbe store  0x00000002 , 0x00000299 
- 00017567  0x00001fbf setarg  0x00000000 
- 00017568  0x00001fc0 store  0x00000001 , 0x0000029c 
- 00017569  0x00001fc1 store  0x00000001 , 0x0000029b 
- 00017570  0x00001fc2 rtn 
- 00017571  0x00001fc5 set0  0x00000025 , 0x00000000 
- 00017572  0x00001fc6 bpatch  0x000000d2 , 0x0000401a 
- 00017573  0x00001fc7 hfetch  0x00000001 , 0x0000810c 
- 00017574  0x00001fc8 iforce  0x00000012 
- 00017575  0x00001fc9 bbit0  0x00000003 , 0x000044ad 
- 00017576  0x00001fca hfetch  0x00000002 , 0x00008112 
- 00017577  0x00001fcb iforce  0x00000013 
- 00017578  0x00001fcc arg  0x0000044f , 0x00000002 
- 00017579  0x00001fcd isub  0x00000002 , 0x0000003e 
- 00017580  0x00001fce nrtn  0x00000005 
- 00017581  0x00001fd0 hfetch  0x00000002 , 0x00008058 
- 00017582  0x00001fd1 iforce  0x00000003 
- 00017583  0x00001fd2 call  0x00004494 
- 00017584  0x00001fd3 branch  0x000042e5 , 0x00000001 
- 00017585  0x00001fd4 branch  0x000043e2 
- 00017586  0x00001fd7 call  0x00004494 
- 00017587  0x00001fd8 branch  0x00004371 , 0x00000001 
- 00017588  0x00001fd9 rtn 
- 00017589  0x00001fdc hfetcht  0x00000001 , 0x0000810c 
- 00017590  0x00001fdd isolate1  0x00000006 , 0x00000002 
- 00017591  0x00001fde branch  0x000044b5 , 0x00000001 
- 00017592  0x00001fdf hstore  0x00000001 , 0x00008015 
- 00017593  0x00001fe0 rtn 
- 00017594  0x00001fe4 fetcht  0x00000002 , 0x00000299 
- 00017595  0x00001fe5 fetch  0x00000002 , 0x00000295 
- 00017596  0x00001fe6 iforce  0x00000005 
- 00017597  0x00001fe7 deposit  0x00000003 
- 00017598  0x00001fe8 istore  0x00000002 , 0x00000005 
- 00017599  0x00001fe9 deposit  0x00000005 
- 00017600  0x00001fea store  0x00000002 , 0x00000295 
- 00017601  0x00001feb icompare  0x000000ff , 0x00000002 
- 00017602  0x00001fec call  0x000044c7 , 0x00000001 
- 00017603  0x00001fed fetch  0x00000001 , 0x0000029b 
- 00017604  0x00001fee increase  0x00000001 , 0x0000003f 
- 00017605  0x00001fef store  0x00000001 , 0x0000029b 
- 00017606  0x00001ff0 rtn 
- 00017607  0x00001ff2 setarg  0x00004803 
- 00017608  0x00001ff3 store  0x00000002 , 0x00000295 
- 00017609  0x00001ff4 rtn 
- 00017610  0x00001ff8 fetch  0x00000001 , 0x0000029b 
- 00017611  0x00001ff9 rtn  0x00000034 
- 00017612  0x00001ffa fetcht  0x00000002 , 0x00000299 
- 00017613  0x00001ffb fetch  0x00000002 , 0x00000297 
- 00017614  0x00001ffc iforce  0x00000006 
- 00017615  0x00001ffd ifetch  0x00000002 , 0x00000006 
- 00017616  0x00001ffe iforce  0x00000003 
- 00017617  0x00001fff deposit  0x00000006 
- 00017618  0x00002000 store  0x00000002 , 0x00000297 
- 00017619  0x00002001 icompare  0x000000ff , 0x00000002 
- 00017620  0x00002002 call  0x000044da , 0x00000001 
- 00017621  0x00002003 fetch  0x00000001 , 0x0000029b 
- 00017622  0x00002004 increase  0xffffffff , 0x0000003f 
- 00017623  0x00002005 store  0x00000001 , 0x0000029b 
- 00017624  0x00002006 force  0x00000001 , 0x0000003f 
- 00017625  0x00002007 rtn 
- 00017626  0x00002009 setarg  0x00004803 
- 00017627  0x0000200a store  0x00000002 , 0x00000297 
- 00017628  0x0000200b rtn 
- 00017629  0x0000200e set0  0x00000025 , 0x00000000 
- 00017630  0x0000200f bpatch  0x000000d3 , 0x0000401a 
- 00017631  0x00002010 fetch  0x00000001 , 0x0000029b 
- 00017632  0x00002011 sub  0x0000003f , 0x00000002 , 0x0000003e 
- 00017633  0x00002012 branch  0x000044e4 , 0x00000002 
- 00017634  0x00002013 enable  0x00000028 
- 00017635  0x00002014 branch  0x000044e6 
- 00017636  0x00002016 call  0x000044b2 
- 00017637  0x00002017 call  0x000044ba 
- 00017638  0x00002019 set0  0x00000025 , 0x00000000 
- 00017639  0x0000201a bpatch  0x000000d4 , 0x0000401a 
- 00017640  0x0000201b rtnmark1  0x00000002 
- 00017641  0x0000201c call  0x000044ca 
- 00017642  0x0000201d rtn  0x00000034 
- 00017643  0x0000201e ifetcht  0x00000001 , 0x00000003 
- 00017644  0x0000201f call  0x000032f7 
- 00017645  0x00002020 nrtn  0x00000005 
- 00017646  0x00002021 ifetch  0x00000001 , 0x00000003 
- 00017647  0x00002022 rshift4  0x0000003f , 0x0000003f 
- 00017648  0x00002023 and  0x0000003f , 0x00000003 , 0x0000003f 
- 00017649  0x00002024 nbranch  0x000044f3 , 0x00000034 
- 00017650  0x00002025 set1  0x00000001 , 0x0000003f 
- 00017651  0x00002027 set1  0x00000002 , 0x0000003f 
- 00017652  0x00002028 store  0x00000001 , 0x00000090 
- 00017653  0x00002029 ifetch  0x00000002 , 0x00000003 
- 00017654  0x0000202a store  0x00000002 , 0x00000091 
- 00017655  0x0000202b deposit  0x00000003 
- 00017656  0x0000202c store  0x00000002 , 0x00000179 
- 00017657  0x0000202d set1  0x00000002 , 0x00000000 
- 00017658  0x0000202e bmark0  0x00000009 , 0x00004502 
- 00017659  0x0000202f fetch  0x00000001 , 0x00000046 
- 00017660  0x00002030 isub  0x00000002 , 0x0000003e 
- 00017661  0x00002031 nbranch  0x00004502 , 0x00000005 
- 00017662  0x00002032 fetch  0x00000001 , 0x0000004b 
- 00017663  0x00002033 set1  0x00000006 , 0x0000003f 
- 00017664  0x00002034 store  0x00000001 , 0x0000004b 
- 00017665  0x00002035 rtn 
- 00017666  0x00002038 increase  0x0000001b , 0x00000011 
- 00017667  0x00002039 ifetch  0x00000001 , 0x00000011 
- 00017668  0x0000203a set1  0x00000006 , 0x0000003f 
- 00017669  0x0000203b istore  0x00000001 , 0x00000011 
- 00017670  0x0000203c rtn 
- 00017671  0x00002042 set0  0x00000025 , 0x00000000 
- 00017672  0x00002043 bpatch  0x000000d5 , 0x0000401a 
- 00017673  0x00002044 fetch  0x00000001 , 0x00004272 
- 00017674  0x00002045 branch  0x0000450d , 0x00000034 
- 00017675  0x00002046 enable  0x00000028 
- 00017676  0x00002047 rtn 
- 00017677  0x00002049 call  0x000044b2 
- 00017678  0x0000204a ifetch  0x00000002 , 0x00000003 
- 00017679  0x0000204b iforce  0x00000030 
- 00017680  0x0000204c iforce  0x00000007 
- 00017681  0x0000204d ifetch  0x00000001 , 0x00000003 
- 00017682  0x0000204e iforce  0x00000002 
- 00017683  0x0000204f rshift2  0x00000030 , 0x0000003f 
- 00017684  0x00002050 rshift8  0x0000003f , 0x0000003f 
- 00017685  0x00002051 beq  0x00000001 , 0x0000451e 
- 00017686  0x00002052 beq  0x00000002 , 0x0000453d 
- 00017687  0x00002053 beq  0x00000003 , 0x0000454f 
- 00017688  0x00002054 beq  0x00000004 , 0x00004569 
- 00017689  0x00002055 beq  0x00000005 , 0x00004572 
- 00017690  0x00002056 beq  0x00000006 , 0x0000457c 
- 00017691  0x00002057 beq  0x0000003f , 0x00004585 
- 00017692  0x00002058 beq  0x00000008 , 0x000045e0 
- 00017693  0x00002059 rtn 
- 00017694  0x0000205d set0  0x00000025 , 0x00000000 
- 00017695  0x0000205e bpatch  0x000000d6 , 0x0000401a 
- 00017696  0x0000205f deposit  0x00000007 
- 00017697  0x00002060 beq  0x00000001 , 0x00004634 
- 00017698  0x00002061 beq  0x00000002 , 0x00004643 
- 00017699  0x00002062 beq  0x00000003 , 0x00004949 
- 00017700  0x00002063 beq  0x00000004 , 0x00004949 
- 00017701  0x00002064 beq  0x00000005 , 0x00004645 
- 00017702  0x00002065 beq  0x00000006 , 0x0000464f 
- 00017703  0x00002066 beq  0x00000007 , 0x00004949 
- 00017704  0x00002067 beq  0x00000008 , 0x0000465d 
- 00017705  0x00002068 beq  0x00000009 , 0x00004739 
- 00017706  0x00002069 beq  0x0000000a , 0x0000473f 
- 00017707  0x0000206a beq  0x0000000b , 0x00004664 
- 00017708  0x0000206b beq  0x0000000c , 0x0000466a 
- 00017709  0x0000206c beq  0x0000000d , 0x0000466d 
- 00017710  0x0000206d beq  0x0000000e , 0x00004675 
- 00017711  0x0000206e beq  0x0000000f , 0x00004743 
- 00017712  0x0000206f beq  0x00000011 , 0x00004688 
- 00017713  0x00002070 beq  0x00000013 , 0x0000468b 
- 00017714  0x00002071 beq  0x00000015 , 0x00004949 
- 00017715  0x00002072 beq  0x00000017 , 0x00004949 
- 00017716  0x00002073 beq  0x00000019 , 0x00004690 
- 00017717  0x00002074 beq  0x0000001b , 0x0000469b 
- 00017718  0x00002075 beq  0x0000001c , 0x00004696 
- 00017719  0x00002076 beq  0x0000001d , 0x000046a1 
- 00017720  0x00002077 beq  0x0000001f , 0x000046a7 
- 00017721  0x00002078 beq  0x00000028 , 0x000046ab 
- 00017722  0x00002079 beq  0x00000029 , 0x000046b6 
- 00017723  0x0000207a beq  0x0000002b , 0x0000467b 
- 00017724  0x0000207b branch  0x0000474d 
- 00017725  0x0000207f set0  0x00000025 , 0x00000000 
- 00017726  0x00002080 bpatch  0x000000d7 , 0x0000401a 
- 00017727  0x00002081 deposit  0x00000007 
- 00017728  0x00002082 beq  0x00000009 , 0x000046cc 
- 00017729  0x00002083 beq  0x0000000d , 0x000046d7 
- 00017730  0x00002084 beq  0x00000001 , 0x00004949 
- 00017731  0x00002085 beq  0x00000003 , 0x0000474f 
- 00017732  0x00002086 beq  0x00000004 , 0x0000475a 
- 00017733  0x00002087 beq  0x00000005 , 0x00004949 
- 00017734  0x00002088 beq  0x00000006 , 0x00004949 
- 00017735  0x00002089 beq  0x00000007 , 0x00004949 
- 00017736  0x0000208a beq  0x0000000b , 0x00004760 
- 00017737  0x0000208b beq  0x0000000c , 0x00004949 
- 00017738  0x0000208c beq  0x0000000e , 0x00004949 
- 00017739  0x0000208d beq  0x0000000f , 0x00004949 
- 00017740  0x0000208e beq  0x00000010 , 0x00004949 
- 00017741  0x0000208f beq  0x00000011 , 0x0000475f 
- 00017742  0x00002090 branch  0x0000474d 
- 00017743  0x00002093 set0  0x00000025 , 0x00000000 
- 00017744  0x00002094 bpatch  0x000000d8 , 0x0000401b 
- 00017745  0x00002095 deposit  0x00000007 
- 00017746  0x00002096 beq  0x00000001 , 0x00004725 
- 00017747  0x00002097 beq  0x00000003 , 0x00004949 
- 00017748  0x00002098 beq  0x00000012 , 0x000046da 
- 00017749  0x00002099 beq  0x00000013 , 0x000046c2 
- 00017750  0x0000209a beq  0x00000014 , 0x000046b8 
- 00017751  0x0000209b beq  0x00000018 , 0x000046db 
- 00017752  0x0000209c beq  0x00000019 , 0x00004705 
- 00017753  0x0000209d beq  0x0000001a , 0x000046de 
- 00017754  0x0000209e beq  0x0000001c , 0x000046e1 
- 00017755  0x0000209f beq  0x0000001e , 0x000046e6 
- 00017756  0x000020a0 beq  0x00000020 , 0x000046ec 
- 00017757  0x000020a1 beq  0x00000022 , 0x000046eb 
- 00017758  0x000020a2 beq  0x00000024 , 0x000046ef 
- 00017759  0x000020a3 beq  0x00000026 , 0x00004949 
- 00017760  0x000020a4 beq  0x00000031 , 0x00004949 
- 00017761  0x000020a5 beq  0x00000033 , 0x00004949 
- 00017762  0x000020a6 beq  0x00000035 , 0x0000462e 
- 00017763  0x000020a7 beq  0x00000043 , 0x00004949 
- 00017764  0x000020a8 beq  0x00000045 , 0x00004949 
- 00017765  0x000020a9 beq  0x00000047 , 0x00004949 
- 00017766  0x000020aa beq  0x00000051 , 0x000046f2 
- 00017767  0x000020ab beq  0x00000056 , 0x00004701 
- 00017768  0x000020ac branch  0x0000474d 
- 00017769  0x000020af set0  0x00000025 , 0x00000000 
- 00017770  0x000020b0 bpatch  0x000000d9 , 0x0000401b 
- 00017771  0x000020b1 deposit  0x00000007 
- 00017772  0x000020b2 beq  0x00000001 , 0x0000470a 
- 00017773  0x000020b3 beq  0x00000003 , 0x0000470f 
- 00017774  0x000020b4 beq  0x00000004 , 0x00004714 
- 00017775  0x000020b5 beq  0x00000005 , 0x0000471b 
- 00017776  0x000020b6 beq  0x00000009 , 0x00004720 
- 00017777  0x000020b7 branch  0x0000474d 
- 00017778  0x000020ba set0  0x00000025 , 0x00000000 
- 00017779  0x000020bb bpatch  0x000000da , 0x0000401b 
- 00017780  0x000020bc deposit  0x00000007 
- 00017781  0x000020bd beq  0x00000001 , 0x00004949 
- 00017782  0x000020be beq  0x00000002 , 0x00004726 
- 00017783  0x000020bf beq  0x00000003 , 0x00004727 
- 00017784  0x000020c0 beq  0x00000005 , 0x0000472d 
- 00017785  0x000020c1 beq  0x00000006 , 0x00004733 
- 00017786  0x000020c2 beq  0x00000007 , 0x00004736 
- 00017787  0x000020c3 branch  0x0000474d 
- 00017788  0x000020c6 set0  0x00000025 , 0x00000000 
- 00017789  0x000020c7 bpatch  0x000000db , 0x0000401b 
- 00017790  0x000020c8 deposit  0x00000007 
- 00017791  0x000020c9 beq  0x00000001 , 0x00004949 
- 00017792  0x000020ca beq  0x00000002 , 0x00004949 
- 00017793  0x000020cb beq  0x00000003 , 0x00004949 
- 00017794  0x000020cc beq  0x00000004 , 0x00004949 
- 00017795  0x000020cd branch  0x0000474d 
- 00017796  0x000020ce rtn 
- 00017797  0x000020d1 set0  0x00000025 , 0x00000000 
- 00017798  0x000020d2 bpatch  0x000000dc , 0x0000401b 
- 00017799  0x000020d3 deposit  0x00000007 
- 00017800  0x000020d4 beq  0x00000000 , 0x00004949 
- 00017801  0x000020d5 beq  0x00000001 , 0x0000459d 
- 00017802  0x000020d6 beq  0x00000002 , 0x000045a2 
- 00017803  0x000020d7 beq  0x00000003 , 0x000045a6 
- 00017804  0x000020d8 beq  0x00000004 , 0x000045b9 
- 00017805  0x000020d9 beq  0x00000005 , 0x00004949 
- 00017806  0x000020da beq  0x00000006 , 0x000045ca 
- 00017807  0x000020db beq  0x00000007 , 0x00004593 
- 00017808  0x000020dd beq  0x00000010 , 0x000045cd 
- 00017809  0x000020de beq  0x00000011 , 0x000045d5 
- 00017810  0x000020df branch  0x00004949 
- 00017811  0x000020e2 call  0x00004949 
- 00017812  0x000020e3 call  0x00007f68 
- 00017813  0x000020e4 call  0x00006a68 
- 00017814  0x000020e6 call  0x00003f5c 
- 00017815  0x000020e7 call  0x00003f66 
- 00017816  0x000020e8 branch  0x00006a7d 
- 00017817  0x000020eb jam  0x00000000 , 0x000042ae 
- 00017818  0x000020ec call  0x00003f5a 
- 00017819  0x000020ed call  0x00004468 
- 00017820  0x000020ee branch  0x00003f68 
- 00017821  0x000020f1 call  0x0000496e 
- 00017822  0x000020f2 hfetch  0x00000002 , 0x00008000 
- 00017823  0x000020f3 istore  0x00000002 , 0x0000000a 
- 00017824  0x000020f4 force  0x00000006 , 0x00000039 
- 00017825  0x000020f5 branch  0x0000494c 
- 00017826  0x000020f8 ifetch  0x00000002 , 0x00000003 
- 00017827  0x000020f9 store  0x00000002 , 0x000042ac 
- 00017828  0x000020fa hstore  0x00000002 , 0x00008052 
- 00017829  0x000020fb rtn 
- 00017830  0x000020ff ifetch  0x00000001 , 0x00000003 
- 00017831  0x00002100 copy  0x0000003f , 0x00000002 
- 00017832  0x00002101 hstore  0x00000001 , 0x00008024 
- 00017833  0x00002102 ifetch  0x00000001 , 0x00000003 
- 00017834  0x00002103 iadd  0x00000002 , 0x00000002 
- 00017835  0x00002104 set1  0x00000007 , 0x0000003f 
- 00017836  0x00002105 hstore  0x00000001 , 0x00008023 
- 00017837  0x00002106 ifetch  0x00000001 , 0x00000003 
- 00017838  0x00002107 iadd  0x00000002 , 0x00000002 
- 00017839  0x00002108 copy  0x0000003f , 0x00000039 
- 00017840  0x0000210a ifetch  0x00000001 , 0x00000003 
- 00017841  0x0000210b hstore  0x00000001 , 0x00008025 
- 00017842  0x0000210c iadd  0x00000002 , 0x00000002 
- 00017843  0x0000210d loop  0x000045b0 
- 00017844  0x0000210e and  0x00000002 , 0x000000ff , 0x00000002 
- 00017845  0x0000210f ifetch  0x00000001 , 0x00000003 
- 00017846  0x00002110 isub  0x00000002 , 0x0000003e 
- 00017847  0x00002111 nbranch  0x000045c8 , 0x00000005 
- 00017848  0x00002112 branch  0x00004949 
- 00017849  0x00002115 arg  0x00000020 , 0x00000039 
- 00017850  0x00002116 arg  0x00004000 , 0x00000005 
- 00017851  0x00002117 arg  0x00000000 , 0x00000002 
- 00017852  0x00002119 ifetch  0x00000001 , 0x00000003 
- 00017853  0x0000211a istore  0x00000001 , 0x00000005 
- 00017854  0x0000211b iadd  0x00000002 , 0x00000002 
- 00017855  0x0000211c loop  0x000045bc 
- 00017856  0x0000211d and  0x00000002 , 0x000000ff , 0x00000002 
- 00017857  0x0000211e ifetch  0x00000001 , 0x00000003 
- 00017858  0x0000211f isub  0x00000002 , 0x0000003e 
- 00017859  0x00002120 nbranch  0x000045c8 , 0x00000005 
- 00017860  0x00002121 hjam  0x00000000 , 0x00008023 
- 00017861  0x00002122 call  0x00004949 
- 00017862  0x00002123 call  0x0000440e 
- 00017863  0x00002124 branch  0x00003001 
- 00017864  0x00002127 hjam  0x00000000 , 0x00008023 
- 00017865  0x00002128 branch  0x00003000 
- 00017866  0x0000212b ifetch  0x00000006 , 0x00000003 
- 00017867  0x0000212c store  0x00000006 , 0x00004140 
- 00017868  0x0000212d branch  0x00004949 
- 00017869  0x00002131 ifetch  0x00000001 , 0x00000003 
- 00017870  0x00002132 store  0x00000001 , 0x000002c1 
- 00017871  0x00002133 copy  0x0000003f , 0x00000039 
- 00017872  0x00002134 ifetch  0x00000002 , 0x00000003 
- 00017873  0x00002135 store  0x00000002 , 0x000002c2 
- 00017874  0x00002136 copy  0x0000003f , 0x00000005 
- 00017875  0x00002137 call  0x0000497c 
- 00017876  0x00002138 branch  0x00004949 
- 00017877  0x0000213c ifetch  0x00000001 , 0x00000003 
- 00017878  0x0000213d store  0x00000001 , 0x000002c1 
- 00017879  0x0000213e copy  0x0000003f , 0x00000039 
- 00017880  0x0000213f ifetch  0x00000002 , 0x00000003 
- 00017881  0x00002140 store  0x00000002 , 0x000002c2 
- 00017882  0x00002141 arg  0x00001000 , 0x00000005 
- 00017883  0x00002142 call  0x0000497c 
- 00017884  0x00002143 fetcht  0x00000001 , 0x000002c1 
- 00017885  0x00002144 arg  0x00001000 , 0x00000011 
- 00017886  0x00002145 fetch  0x00000002 , 0x000002c2 
- 00017887  0x00002146 branch  0x00006842 
- 00017888  0x0000214d set0  0x00000025 , 0x00000000 
- 00017889  0x0000214e bpatch  0x000000dd , 0x0000401b 
- 00017890  0x0000214f deposit  0x00000007 
- 00017891  0x00002150 beq  0x00000001 , 0x00004949 
- 00017892  0x00002151 beq  0x00000002 , 0x000045f3 
- 00017893  0x00002152 beq  0x00000003 , 0x000045f8 
- 00017894  0x00002153 beq  0x00000006 , 0x000045ff 
- 00017895  0x00002154 beq  0x00000008 , 0x00004603 
- 00017896  0x00002155 beq  0x00000009 , 0x00004607 
- 00017897  0x00002156 beq  0x0000000a , 0x0000460b 
- 00017898  0x00002157 beq  0x0000000b , 0x0000460e 
- 00017899  0x00002158 beq  0x0000000c , 0x00004611 
- 00017900  0x00002159 beq  0x0000000d , 0x00004614 
- 00017901  0x0000215a beq  0x0000000e , 0x00004626 
- 00017902  0x0000215b beq  0x00000015 , 0x00004627 
- 00017903  0x0000215c beq  0x00000016 , 0x00004933 
- 00017904  0x0000215d beq  0x00000013 , 0x00004949 
- 00017905  0x0000215e branch  0x0000474d 
- 00017906  0x0000215f rtn 
- 00017907  0x00002161 call  0x0000496e 
- 00017908  0x00002162 setarg  0x00000000 
- 00017909  0x00002163 istore  0x00000003 , 0x0000000a 
- 00017910  0x00002164 force  0x00000007 , 0x00000039 
- 00017911  0x00002165 branch  0x0000494c 
- 00017912  0x00002168 call  0x0000496e 
- 00017913  0x00002169 setarg  0x00000001 
- 00017914  0x0000216a istore  0x00000002 , 0x0000000a 
- 00017915  0x0000216b setarg  0x00000000 
- 00017916  0x0000216c istore  0x00000006 , 0x0000000a 
- 00017917  0x0000216d force  0x0000000c , 0x00000039 
- 00017918  0x0000216e branch  0x0000494c 
- 00017919  0x00002171 arg  0x0000000f , 0x00000039 
- 00017920  0x00002172 arg  0x000044d7 , 0x00000005 
- 00017921  0x00002173 call  0x0000497c 
- 00017922  0x00002174 branch  0x00004949 
- 00017923  0x00002177 arg  0x00000020 , 0x00000039 
- 00017924  0x00002178 arg  0x000043d9 , 0x00000005 
- 00017925  0x00002179 call  0x0000497c 
- 00017926  0x0000217a branch  0x00004949 
- 00017927  0x0000217d arg  0x00000020 , 0x00000039 
- 00017928  0x0000217e arg  0x000043f9 , 0x00000005 
- 00017929  0x0000217f call  0x0000497c 
- 00017930  0x00002180 branch  0x00004949 
- 00017931  0x00002183 ifetch  0x00000001 , 0x00000003 
- 00017932  0x00002184 store  0x00000001 , 0x000043d8 
- 00017933  0x00002185 branch  0x00004949 
- 00017934  0x00002188 ifetch  0x00000007 , 0x00000003 
- 00017935  0x00002189 store  0x00000007 , 0x000044f6 
- 00017936  0x0000218a branch  0x00004949 
- 00017937  0x0000218d ifetch  0x00000001 , 0x00000003 
- 00017938  0x0000218e store  0x00000001 , 0x000043d2 
- 00017939  0x0000218f branch  0x00004949 
- 00017940  0x00002192 ifetch  0x00000004 , 0x00000003 
- 00017941  0x00002193 store  0x00000004 , 0x000043d3 
- 00017942  0x00002194 ifetch  0x00000001 , 0x00000003 
- 00017943  0x00002195 store  0x00000001 , 0x000044f8 
- 00017944  0x00002196 arg  0x00000014 , 0x00000039 
- 00017945  0x00002197 arg  0x000044e6 , 0x00000005 
- 00017946  0x00002198 call  0x0000497c 
- 00017947  0x00002199 jam  0x00000001 , 0x000043d2 
- 00017948  0x0000219a fetch  0x00000001 , 0x000044ed 
- 00017949  0x0000219b store  0x00000001 , 0x000044f7 
- 00017950  0x0000219c fetch  0x00000002 , 0x000044f0 
- 00017951  0x0000219d store  0x00000002 , 0x000043d0 
- 00017952  0x0000219e fetch  0x00000002 , 0x000044f2 
- 00017953  0x0000219f store  0x00000002 , 0x000003ed 
- 00017954  0x000021a0 fetch  0x00000002 , 0x000044f4 
- 00017955  0x000021a1 store  0x00000002 , 0x000003ef 
- 00017956  0x000021a2 jam  0x0000001b , 0x00004272 
- 00017957  0x000021a3 branch  0x00004933 
- 00017958  0x000021a7 branch  0x00004949 
- 00017959  0x000021aa call  0x0000496e 
- 00017960  0x000021ab ifetch  0x00000002 , 0x00000003 
- 00017961  0x000021ac istore  0x00000002 , 0x0000000a 
- 00017962  0x000021ad setarg  0x001fffff 
- 00017963  0x000021ae istore  0x00000005 , 0x0000000a 
- 00017964  0x000021af force  0x0000000b , 0x00000039 
- 00017965  0x000021b0 branch  0x0000494c 
- 00017966  0x000021b6 ifetch  0x00000003 , 0x00000003 
- 00017967  0x000021b7 ifetcht  0x00000003 , 0x00000003 
- 00017968  0x000021b8 fetch  0x00000002 , 0x00004800 
- 00017969  0x000021b9 iadd  0x00000002 , 0x0000003f 
- 00017970  0x000021ba store  0x00000002 , 0x00004800 
- 00017971  0x000021bb rtn 
- 00017972  0x000021be ifetch  0x00000003 , 0x00000003 
- 00017973  0x000021bf store  0x00000003 , 0x00004147 
- 00017974  0x000021c1 jam  0x00000001 , 0x00004272 
- 00017975  0x000021c2 ifetch  0x00000001 , 0x00000003 
- 00017976  0x000021c3 arg  0x00000640 , 0x00000002 
- 00017977  0x000021c4 imul32  0x00000002 , 0x0000003f 
- 00017978  0x000021c5 arg  0x0000ffff , 0x00000002 
- 00017979  0x000021c6 isub  0x00000002 , 0x0000003e 
- 00017980  0x000021c7 nbranch  0x0000463e , 0x00000002 
- 00017981  0x000021c8 deposit  0x00000002 
- 00017982  0x000021ca force  0x00000002 , 0x00000007 
- 00017983  0x000021cb call  0x00007e4c 
- 00017984  0x000021cc fetch  0x00000001 , 0x000042a4 
- 00017985  0x000021cd bbit1  0x00000000 , 0x0000428c 
- 00017986  0x000021ce branch  0x00004933 
- 00017987  0x000021d2 jam  0x00000002 , 0x00004272 
- 00017988  0x000021d3 branch  0x00004949 
- 00017989  0x000021d6 call  0x00004763 
- 00017990  0x000021d7 ifetch  0x00000002 , 0x00000003 
- 00017991  0x000021d8 store  0x00000002 , 0x00000275 
- 00017992  0x000021d9 ifetch  0x00000002 , 0x00000003 
- 00017993  0x000021da store  0x00000001 , 0x000000f3 
- 00017994  0x000021db call  0x00004776 
- 00017995  0x000021dc ifetch  0x00000001 , 0x00000003 
- 00017996  0x000021dd store  0x00000001 , 0x00004802 
- 00017997  0x000021de jam  0x00000005 , 0x00004272 
- 00017998  0x000021df branch  0x00004933 
- 00017999  0x000021e3 jam  0x00000006 , 0x00004272 
- 00018000  0x000021e4 ifetch  0x00000002 , 0x00000003 
- 00018001  0x000021e5 store  0x00000001 , 0x00004273 
- 00018002  0x000021e6 ifetch  0x00000001 , 0x00000003 
- 00018003  0x000021e7 store  0x00000001 , 0x00000446 
- 00018004  0x000021e8 jam  0x00000016 , 0x000002c0 
- 00018005  0x000021e9 fetch  0x00000001 , 0x00004273 
- 00018006  0x000021ea fetcht  0x00000001 , 0x000000ad 
- 00018007  0x000021eb isub  0x00000002 , 0x0000003e 
- 00018008  0x000021ec nbranch  0x00004933 , 0x00000005 
- 00018009  0x000021ed jam  0x00000011 , 0x00004272 
- 00018010  0x000021ee fetch  0x00000001 , 0x000000ac 
- 00018011  0x000021ef store  0x00000001 , 0x00004273 
- 00018012  0x000021f0 branch  0x00004933 
- 00018013  0x000021f3 call  0x0000496e 
- 00018014  0x000021f4 call  0x00004965 
- 00018015  0x000021f5 force  0x0000000a , 0x00000039 
- 00018016  0x000021f6 call  0x0000494c 
- 00018017  0x000021f8 jam  0x0000001a , 0x00004272 
- 00018018  0x000021f9 force  0x00000002 , 0x00000002 
- 00018019  0x000021fa branch  0x00004826 
- 00018020  0x000021fd call  0x00004763 
- 00018021  0x000021fe arg  0x00004262 , 0x00000005 
- 00018022  0x000021ff force  0x00000010 , 0x00000039 
- 00018023  0x00002200 call  0x0000497c 
- 00018024  0x00002201 jam  0x0000000b , 0x00004272 
- 00018025  0x00002202 branch  0x00004677 
- 00018026  0x00002205 call  0x00004763 
- 00018027  0x00002206 jam  0x0000000c , 0x00004272 
- 00018028  0x00002207 branch  0x00004677 
- 00018029  0x0000220a call  0x00004763 
- 00018030  0x0000220b ifetch  0x00000001 , 0x00000003 
- 00018031  0x0000220c store  0x00000001 , 0x0000054f 
- 00018032  0x0000220d iforce  0x00000039 
- 00018033  0x0000220e arg  0x00000550 , 0x00000005 
- 00018034  0x0000220f call  0x0000497c 
- 00018035  0x00002210 jam  0x00000009 , 0x00004272 
- 00018036  0x00002211 branch  0x00004677 
- 00018037  0x00002214 call  0x00004763 
- 00018038  0x00002215 jam  0x0000000a , 0x00004272 
- 00018039  0x00002217 call  0x0000496e 
- 00018040  0x00002218 call  0x00004965 
- 00018041  0x00002219 force  0x0000000a , 0x00000039 
- 00018042  0x0000221a branch  0x0000494c 
- 00018043  0x0000221e increase  0x00000006 , 0x00000003 
- 00018044  0x0000221f ifetch  0x00000003 , 0x00000003 
- 00018045  0x00002220 store  0x00000003 , 0x000007e6 
- 00018046  0x00002221 fetch  0x00000001 , 0x000007db 
- 00018047  0x00002222 beq  0x00000013 , 0x00004683 
- 00018048  0x00002223 beq  0x00000003 , 0x00004683 
- 00018049  0x00002224 jam  0x00000016 , 0x00004272 
- 00018050  0x00002225 branch  0x00004684 
- 00018051  0x00002227 jam  0x00000001 , 0x000007dd 
- 00018052  0x00002229 call  0x0000496e 
- 00018053  0x0000222a call  0x00004965 
- 00018054  0x0000222b force  0x0000000a , 0x00000039 
- 00018055  0x0000222c branch  0x0000494c 
- 00018056  0x00002230 call  0x00004766 
- 00018057  0x00002231 jam  0x0000000d , 0x00004272 
- 00018058  0x00002232 branch  0x00004933 
- 00018059  0x00002235 call  0x00004766 
- 00018060  0x00002236 ifetch  0x00000001 , 0x00000003 
- 00018061  0x00002237 increase  0x0000000e , 0x0000003f 
- 00018062  0x00002238 store  0x00000001 , 0x00004272 
- 00018063  0x00002239 branch  0x00004933 
- 00018064  0x0000223c call  0x00004763 
- 00018065  0x0000223d ifetch  0x00000002 , 0x00000003 
- 00018066  0x0000223e store  0x00000001 , 0x000000f3 
- 00018067  0x0000223f call  0x00004776 
- 00018068  0x00002240 jam  0x00000003 , 0x00004272 
- 00018069  0x00002241 branch  0x00004933 
- 00018070  0x00002244 ifetch  0x00000002 , 0x00000003 
- 00018071  0x00002245 ifetch  0x00000001 , 0x00000003 
- 00018072  0x00002246 store  0x00000001 , 0x00000449 
- 00018073  0x00002247 jam  0x00000015 , 0x00004272 
- 00018074  0x00002248 branch  0x00004933 
- 00018075  0x0000224c fetch  0x00000001 , 0x00000046 
- 00018076  0x0000224d force  0x00000002 , 0x00000011 
- 00018077  0x0000224e branch  0x0000493d , 0x00000034 
- 00018078  0x0000224f call  0x00004766 
- 00018079  0x00002250 jam  0x00000004 , 0x00004272 
- 00018080  0x00002251 branch  0x00004933 
- 00018081  0x00002256 fetch  0x00000001 , 0x00000046 
- 00018082  0x00002257 force  0x00000002 , 0x00000011 
- 00018083  0x00002258 branch  0x0000493d , 0x00000034 
- 00018084  0x00002259 call  0x00004766 
- 00018085  0x0000225a jam  0x00000014 , 0x00004272 
- 00018086  0x0000225b branch  0x00004933 
- 00018087  0x0000225f call  0x0000476e 
- 00018088  0x00002260 force  0x0000001c , 0x00000007 
- 00018089  0x00002261 force  0x00000005 , 0x00000039 
- 00018090  0x00002262 branch  0x00004952 
- 00018091  0x00002265 call  0x00004766 
- 00018092  0x00002266 increase  0x0000000a , 0x00000003 
- 00018093  0x00002267 ifetch  0x00000002 , 0x00000003 
- 00018094  0x00002268 store  0x00000002 , 0x00000281 
- 00018095  0x00002269 ifetch  0x00000001 , 0x00000003 
- 00018096  0x0000226a store  0x00000001 , 0x00000283 
- 00018097  0x0000226b ifetch  0x00000002 , 0x00000003 
- 00018098  0x0000226c store  0x00000002 , 0x00000284 
- 00018099  0x0000226d jam  0x00000002 , 0x000000ab 
- 00018100  0x0000226e jam  0x00000010 , 0x00004272 
- 00018101  0x0000226f branch  0x00004933 
- 00018102  0x00002272 jam  0x0000001c , 0x00004272 
- 00018103  0x00002273 branch  0x00004933 
- 00018104  0x00002278 call  0x0000496e 
- 00018105  0x00002279 arg  0x00004703 , 0x00000006 
- 00018106  0x0000227a sub  0x00000006 , 0x000000ff , 0x00000039 
- 00018107  0x0000227b call  0x00004976 
- 00018108  0x0000227c force  0x00000000 , 0x0000003f 
- 00018109  0x0000227d sub  0x00000006 , 0x00004703 , 0x00000039 
- 00018110  0x0000227e increase  0x000000f8 , 0x00000039 
- 00018111  0x0000227f call  0x00004982 
- 00018112  0x00002280 force  0x000000fc , 0x00000039 
- 00018113  0x00002281 branch  0x0000494c 
- 00018114  0x00002284 arg  0x00004703 , 0x00000005 
- 00018115  0x00002285 sub  0x00000005 , 0x000000ff , 0x00000039 
- 00018116  0x00002287 ifetch  0x00000001 , 0x00000003 
- 00018117  0x00002288 istore  0x00000001 , 0x00000005 
- 00018118  0x00002289 branch  0x000046c8 , 0x00000034 
- 00018119  0x0000228a loop  0x000046c4 
- 00018120  0x0000228c sub  0x00000005 , 0x00004703 , 0x0000003f 
- 00018121  0x0000228d sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00018122  0x0000228e store  0x00000001 , 0x00004702 
- 00018123  0x0000228f branch  0x00004949 
- 00018124  0x00002292 call  0x0000496e 
- 00018125  0x00002293 call  0x0000496b 
- 00018126  0x00002294 force  0x00000000 , 0x0000003f 
- 00018127  0x00002295 nsetflag  0x00000029 , 0x00000000 , 0x0000003f 
- 00018128  0x00002296 istore  0x00000001 , 0x0000000a 
- 00018129  0x00002297 force  0x00000007 , 0x00000039 
- 00018130  0x00002298 arg  0x00000809 , 0x00000030 
- 00018131  0x00002299 call  0x0000494c 
- 00018132  0x0000229a branch  0x000049bc 
- 00018133  0x0000229b jam  0x00000017 , 0x00004272 
- 00018134  0x0000229c rtn 
- 00018135  0x000022a0 call  0x00004769 
- 00018136  0x000022a1 force  0x00000006 , 0x00000039 
- 00018137  0x000022a2 branch  0x0000494c 
- 00018138  0x000022a6 branch  0x00004949 
- 00018139  0x000022a9 ifetch  0x00000002 , 0x00000003 
- 00018140  0x000022aa store  0x00000002 , 0x00004159 
- 00018141  0x000022ab branch  0x00004949 
- 00018142  0x000022af ifetch  0x00000001 , 0x00000003 
- 00018143  0x000022b0 store  0x00000001 , 0x00004133 
- 00018144  0x000022b1 branch  0x00004949 
- 00018145  0x000022b4 ifetch  0x00000002 , 0x00000003 
- 00018146  0x000022b5 store  0x00000002 , 0x00004153 
- 00018147  0x000022b6 ifetch  0x00000002 , 0x00000003 
- 00018148  0x000022b7 store  0x00000002 , 0x00004151 
- 00018149  0x000022b8 branch  0x00004949 
- 00018150  0x000022bb ifetch  0x00000002 , 0x00000003 
- 00018151  0x000022bc store  0x00000002 , 0x0000414f 
- 00018152  0x000022bd ifetch  0x00000002 , 0x00000003 
- 00018153  0x000022be store  0x00000002 , 0x0000414d 
- 00018154  0x000022bf branch  0x00004949 
- 00018155  0x000022c2 branch  0x00004949 
- 00018156  0x000022c6 ifetch  0x00000001 , 0x00000003 
- 00018157  0x000022c7 store  0x00000001 , 0x00000453 
- 00018158  0x000022c8 branch  0x00004949 
- 00018159  0x000022cb ifetch  0x00000003 , 0x00000003 
- 00018160  0x000022cc store  0x00000003 , 0x0000414a 
- 00018161  0x000022cd branch  0x00004949 
- 00018162  0x000022d3 deposit  0x00000002 
- 00018163  0x000022d4 branch  0x00004949 , 0x00000034 
- 00018164  0x000022d5 call  0x00004970 
- 00018165  0x000022d6 force  0x00000001 , 0x0000003f 
- 00018166  0x000022d7 istore  0x00000001 , 0x0000000a 
- 00018167  0x000022d8 deposit  0x00000030 
- 00018168  0x000022d9 istore  0x00000002 , 0x0000000a 
- 00018169  0x000022da force  0x00000012 , 0x0000003f 
- 00018170  0x000022db istore  0x00000001 , 0x0000000a 
- 00018171  0x000022dc setarg  0x00000000 
- 00018172  0x000022dd increase  0x000000f1 , 0x00000039 
- 00018173  0x000022de call  0x00004982 
- 00018174  0x000022e0 force  0x0000000e , 0x00000007 
- 00018175  0x000022e1 force  0x000000f5 , 0x00000039 
- 00018176  0x000022e2 branch  0x00004952 
- 00018177  0x000022e7 ifetch  0x00000001 , 0x00000003 
- 00018178  0x000022e8 ncall  0x00006003 , 0x00000034 
- 00018179  0x000022e9 call  0x00006009 , 0x00000034 
- 00018180  0x000022ea branch  0x00004949 
- 00018181  0x000022ed call  0x0000496e 
- 00018182  0x000022ee fetch  0x00000001 , 0x00004133 
- 00018183  0x000022ef istore  0x00000001 , 0x0000000a 
- 00018184  0x000022f0 force  0x00000005 , 0x00000039 
- 00018185  0x000022f1 branch  0x0000494c 
- 00018186  0x000022f4 call  0x0000496e 
- 00018187  0x000022f5 fetch  0x00000008 , 0x00000080 
- 00018188  0x000022f6 istore  0x00000008 , 0x0000000a 
- 00018189  0x000022f7 force  0x0000000c , 0x00000039 
- 00018190  0x000022f8 branch  0x0000494c 
- 00018191  0x000022fb call  0x0000496e 
- 00018192  0x000022fc fetch  0x00000008 , 0x00004138 
- 00018193  0x000022fd istore  0x00000008 , 0x0000000a 
- 00018194  0x000022fe force  0x0000000c , 0x00000039 
- 00018195  0x000022ff branch  0x0000494c 
- 00018196  0x00002302 call  0x0000496e 
- 00018197  0x00002303 setarg  0x00000101 
- 00018198  0x00002304 istore  0x00000002 , 0x0000000a 
- 00018199  0x00002305 setarg  0x00000001 
- 00018200  0x00002306 istore  0x00000008 , 0x0000000a 
- 00018201  0x00002307 force  0x0000000e , 0x00000039 
- 00018202  0x00002308 branch  0x0000494c 
- 00018203  0x0000230b call  0x0000496e 
- 00018204  0x0000230c fetch  0x00000007 , 0x00000083 
- 00018205  0x0000230d istore  0x00000007 , 0x0000000a 
- 00018206  0x0000230e force  0x0000000b , 0x00000039 
- 00018207  0x0000230f branch  0x0000494c 
- 00018208  0x00002312 call  0x0000496e 
- 00018209  0x00002313 fetch  0x00000006 , 0x00004140 
- 00018210  0x00002314 istore  0x00000006 , 0x0000000a 
- 00018211  0x00002315 force  0x0000000a , 0x00000039 
- 00018212  0x00002316 branch  0x0000494c 
- 00018213  0x00002319 branch  0x00004949 
- 00018214  0x0000231d branch  0x00004949 
- 00018215  0x0000231f call  0x0000496e 
- 00018216  0x00002320 call  0x0000496b 
- 00018217  0x00002321 setarg  0x000000ff 
- 00018218  0x00002322 istore  0x00000001 , 0x0000000a 
- 00018219  0x00002323 force  0x00000007 , 0x00000039 
- 00018220  0x00002324 branch  0x0000494c 
- 00018221  0x00002327 call  0x0000496e 
- 00018222  0x00002328 call  0x0000496b 
- 00018223  0x00002329 setarg  0x00000000 
- 00018224  0x0000232a istore  0x00000001 , 0x0000000a 
- 00018225  0x0000232b force  0x00000007 , 0x00000039 
- 00018226  0x0000232c branch  0x0000494c 
- 00018227  0x0000232f set0  0x00000025 , 0x00000000 
- 00018228  0x00002330 bpatch  0x000000de , 0x0000401b 
- 00018229  0x00002331 branch  0x00004949 
- 00018230  0x00002333 set0  0x00000025 , 0x00000000 
- 00018231  0x00002334 bpatch  0x000000df , 0x0000401b 
- 00018232  0x00002335 branch  0x00004949 
- 00018233  0x0000233b call  0x00004763 
- 00018234  0x0000233c jam  0x00000007 , 0x00004272 
- 00018235  0x0000233d ifetch  0x00000001 , 0x00000003 
- 00018236  0x0000233e beq  0x00000001 , 0x00004933 
- 00018237  0x0000233f jam  0x00000019 , 0x00004272 
- 00018238  0x00002340 branch  0x00004933 
- 00018239  0x00002343 branch  0x00004739 
- 00018240  0x00002344 call  0x00004763 
- 00018241  0x00002345 jam  0x00000008 , 0x00004272 
- 00018242  0x00002346 branch  0x00004949 
- 00018243  0x00002349 call  0x00004933 
- 00018244  0x0000234a call  0x00004970 
- 00018245  0x0000234b setarg  0x00000000 
- 00018246  0x0000234c istore  0x00000001 , 0x0000000a 
- 00018247  0x0000234d ifetch  0x00000004 , 0x00000003 
- 00018248  0x0000234e istore  0x00000004 , 0x0000000a 
- 00018249  0x0000234f force  0x00000008 , 0x00000039 
- 00018250  0x00002350 arg  0x0000001d , 0x00000007 
- 00018251  0x00002351 arg  0x00000005 , 0x00000039 
- 00018252  0x00002352 branch  0x00004952 
- 00018253  0x00002355 force  0x00000001 , 0x00000011 
- 00018254  0x00002356 branch  0x0000493d 
- 00018255  0x0000235b call  0x00004766 
- 00018256  0x0000235c ifetch  0x00000002 , 0x00000003 
- 00018257  0x0000235d store  0x00000002 , 0x00004280 
- 00018258  0x0000235e ifetch  0x00000002 , 0x00000003 
- 00018259  0x0000235f store  0x00000002 , 0x0000027b 
- 00018260  0x00002360 ifetch  0x00000002 , 0x00000003 
- 00018261  0x00002361 store  0x00000002 , 0x00004282 
- 00018262  0x00002362 ifetch  0x00000002 , 0x00000003 
- 00018263  0x00002363 store  0x00000002 , 0x00004284 
- 00018264  0x00002364 jam  0x00000012 , 0x00004272 
- 00018265  0x00002365 branch  0x00004933 
- 00018266  0x00002368 call  0x00004766 
- 00018267  0x00002369 call  0x0000475d 
- 00018268  0x0000236a branch  0x00004933 
- 00018269  0x0000236d jam  0x00000013 , 0x00004272 
- 00018270  0x0000236e rtn 
- 00018271  0x00002371 branch  0x00004949 
- 00018272  0x00002374 call  0x00004763 
- 00018273  0x00002375 jam  0x00000018 , 0x00004272 
- 00018274  0x00002376 branch  0x00004933 
- 00018275  0x00002379 ifetch  0x00000006 , 0x00000003 
- 00018276  0x0000237a store  0x00000006 , 0x00004274 
- 00018277  0x0000237b rtn 
- 00018278  0x0000237e ifetch  0x00000002 , 0x00000003 
- 00018279  0x0000237f store  0x00000001 , 0x00004273 
- 00018280  0x00002380 rtn 
- 00018281  0x00002383 call  0x00004766 
- 00018282  0x00002384 call  0x0000496e 
- 00018283  0x00002385 fetch  0x00000001 , 0x00004273 
- 00018284  0x00002386 istore  0x00000002 , 0x0000000a 
- 00018285  0x00002387 rtn 
- 00018286  0x0000238c call  0x00004766 
- 00018287  0x0000238d call  0x00004933 
- 00018288  0x0000238e call  0x00004970 
- 00018289  0x0000238f force  0x00000000 , 0x0000003f 
- 00018290  0x00002390 istore  0x00000001 , 0x0000000a 
- 00018291  0x00002391 fetch  0x00000001 , 0x00004273 
- 00018292  0x00002392 istore  0x00000002 , 0x0000000a 
- 00018293  0x00002393 rtn 
- 00018294  0x00002396 ifetch  0x00000002 , 0x00000003 
- 00018295  0x00002397 iadd  0x00000022 , 0x0000003f 
- 00018296  0x00002398 and_into  0x000001fc , 0x0000003f 
- 00018297  0x00002399 store  0x00000004 , 0x000000f4 
- 00018298  0x0000239a rtn 
- 00018299  0x0000239d set0  0x00000025 , 0x00000000 
- 00018300  0x0000239e bpatch  0x000000e0 , 0x0000401c 
- 00018301  0x0000239f fetch  0x00000001 , 0x00000274 
- 00018302  0x000023a0 sub  0x0000003f , 0x00000002 , 0x0000003e 
- 00018303  0x000023a1 nrtn  0x00000002 
- 00018304  0x000023a2 fetcht  0x00000006 , 0x00000182 
- 00018305  0x000023a3 call  0x000032fc 
- 00018306  0x000023a4 rtn  0x00000005 
- 00018307  0x000023a5 call  0x00004972 
- 00018308  0x000023a6 setarg  0x00010f22 
- 00018309  0x000023a7 istore  0x00000003 , 0x0000000a 
- 00018310  0x000023a8 fetch  0x00000006 , 0x00000182 
- 00018311  0x000023a9 istore  0x00000006 , 0x0000000a 
- 00018312  0x000023aa fetch  0x00000001 , 0x0000017d 
- 00018313  0x000023ab copy  0x0000003f , 0x00000002 
- 00018314  0x000023ac rshift3  0x0000003f , 0x0000003f 
- 00018315  0x000023ad rshift3  0x0000003f , 0x0000003f 
- 00018316  0x000023ae istore  0x00000001 , 0x0000000a 
- 00018317  0x000023af copy  0x00000002 , 0x0000003f 
- 00018318  0x000023b0 and  0x0000003f , 0x00000030 , 0x0000003f 
- 00018319  0x000023b1 rshift3  0x0000003f , 0x0000003f 
- 00018320  0x000023b2 rshift  0x0000003f , 0x0000003f 
- 00018321  0x000023b3 istore  0x00000001 , 0x0000000a 
- 00018322  0x000023b4 fetch  0x00000003 , 0x0000017f 
- 00018323  0x000023b5 istore  0x00000003 , 0x0000000a 
- 00018324  0x000023b6 fetch  0x00000004 , 0x0000016f 
- 00018325  0x000023b7 isub  0x00000022 , 0x0000003f 
- 00018326  0x000023b8 istore  0x00000002 , 0x0000000a 
- 00018327  0x000023b9 setarg  0x000000c8 
- 00018328  0x000023ba istore  0x00000001 , 0x0000000a 
- 00018329  0x000023bb force  0x0000000f , 0x00000039 
- 00018330  0x000023bc branch  0x00004959 
- 00018331  0x000023bf set0  0x00000025 , 0x00000000 
- 00018332  0x000023c0 bpatch  0x000000e1 , 0x0000401c 
- 00018333  0x000023c1 force  0x0000021c , 0x00000002 
- 00018334  0x000023c2 fetch  0x00000002 , 0x00000291 
- 00018335  0x000023c3 isub  0x00000002 , 0x0000003e 
- 00018336  0x000023c4 nrtn  0x00000002 
- 00018337  0x000023c5 fetcht  0x00000003 , 0x00000286 
- 00018338  0x000023c6 fetch  0x00000003 , 0x00000185 
- 00018339  0x000023c7 isub  0x00000002 , 0x0000003e 
- 00018340  0x000023c8 rtn  0x00000005 
- 00018341  0x000023c9 rtn  0x00000034 
- 00018342  0x000023ca store  0x00000003 , 0x00000286 
- 00018343  0x000023cb fetch  0x00000001 , 0x00000274 
- 00018344  0x000023cc sub  0x0000003f , 0x00000002 , 0x0000003e 
- 00018345  0x000023cd nrtn  0x00000002 
- 00018346  0x000023ce fetcht  0x00000006 , 0x00000182 
- 00018347  0x000023cf call  0x000032fc 
- 00018348  0x000023d0 rtn  0x00000005 
- 00018349  0x000023d1 call  0x000047cc 
- 00018350  0x000023d2 force  0x0000000f , 0x00000002 
- 00018351  0x000023d3 fetch  0x00000001 , 0x000004df 
- 00018352  0x000023d4 bne  0x00000009 , 0x000047c5 
- 00018353  0x000023d5 fetch  0x00000001 , 0x000004de 
- 00018354  0x000023d6 branch  0x000047c5 , 0x00000034 
- 00018355  0x000023d7 iforce  0x00000039 
- 00018356  0x000023d8 istore  0x00000001 , 0x0000000a 
- 00018357  0x000023d9 iadd  0x00000002 , 0x00000002 
- 00018358  0x000023da increase  0x00000001 , 0x00000002 
- 00018359  0x000023db arg  0x000004df , 0x00000006 
- 00018360  0x000023de ifetch  0x00000001 , 0x00000006 
- 00018361  0x000023df istore  0x00000001 , 0x0000000a 
- 00018362  0x000023e0 loop  0x000047b8 
- 00018363  0x000023e2 ifetch  0x00000001 , 0x00000006 
- 00018364  0x000023e3 branch  0x000047c5 , 0x00000034 
- 00018365  0x000023e4 iforce  0x00000039 
- 00018366  0x000023e5 istore  0x00000001 , 0x0000000a 
- 00018367  0x000023e6 iadd  0x00000002 , 0x00000002 
- 00018368  0x000023e7 increase  0x00000001 , 0x00000002 
- 00018369  0x000023e9 ifetch  0x00000001 , 0x00000006 
- 00018370  0x000023ea istore  0x00000001 , 0x0000000a 
- 00018371  0x000023eb loop  0x000047c1 
- 00018372  0x000023ec branch  0x000047bb 
- 00018373  0x000023ee sub  0x00000002 , 0x000000ff , 0x0000003f 
- 00018374  0x000023ef iforce  0x00000039 
- 00018375  0x000023f1 setarg  0x00000000 
- 00018376  0x000023f2 istore  0x00000001 , 0x0000000a 
- 00018377  0x000023f3 loop  0x000047c7 
- 00018378  0x000023f4 force  0x000000ff , 0x00000039 
- 00018379  0x000023f5 branch  0x00004959 
- 00018380  0x000023f8 set0  0x00000025 , 0x00000000 
- 00018381  0x000023f9 bpatch  0x000000e2 , 0x0000401c 
- 00018382  0x000023fa call  0x00004972 
- 00018383  0x000023fb setarg  0x0001ff2f 
- 00018384  0x000023fc istore  0x00000003 , 0x0000000a 
- 00018385  0x000023fd fetch  0x00000006 , 0x00000182 
- 00018386  0x000023fe istore  0x00000006 , 0x0000000a 
- 00018387  0x000023ff fetch  0x00000001 , 0x0000017d 
- 00018388  0x00002400 copy  0x0000003f , 0x00000002 
- 00018389  0x00002401 rshift3  0x0000003f , 0x0000003f 
- 00018390  0x00002402 rshift3  0x0000003f , 0x0000003f 
- 00018391  0x00002403 istore  0x00000001 , 0x0000000a 
- 00018392  0x00002404 copy  0x00000002 , 0x0000003f 
- 00018393  0x00002405 and  0x0000003f , 0x00000030 , 0x0000003f 
- 00018394  0x00002406 rshift3  0x0000003f , 0x0000003f 
- 00018395  0x00002407 rshift  0x0000003f , 0x0000003f 
- 00018396  0x00002408 istore  0x00000001 , 0x0000000a 
- 00018397  0x00002409 fetch  0x00000003 , 0x0000017f 
- 00018398  0x0000240a istore  0x00000003 , 0x0000000a 
- 00018399  0x0000240b fetch  0x00000004 , 0x0000016f 
- 00018400  0x0000240c isub  0x00000022 , 0x0000003f 
- 00018401  0x0000240d istore  0x00000002 , 0x0000000a 
- 00018402  0x0000240e setarg  0x000000c8 
- 00018403  0x0000240f istore  0x00000001 , 0x0000000a 
- 00018404  0x00002410 rtn 
- 00018405  0x00002413 set0  0x00000025 , 0x00000000 
- 00018406  0x00002414 bpatch  0x000000e3 , 0x0000401c 
- 00018407  0x00002415 fetch  0x00000001 , 0x00004132 
- 00018408  0x00002416 rtnne  0x00000001 
- 00018409  0x00002417 call  0x00004968 
- 00018410  0x00002418 istoret  0x00000008 , 0x0000000a 
- 00018411  0x00002419 force  0x0000000b , 0x00000039 
- 00018412  0x0000241a force  0x0000000b , 0x00000007 
- 00018413  0x0000241b branch  0x00004952 
- 00018414  0x0000241e set0  0x00000025 , 0x00000000 
- 00018415  0x0000241f bpatch  0x000000e4 , 0x0000401c 
- 00018416  0x00002420 fetch  0x00000001 , 0x00004132 
- 00018417  0x00002421 rtnne  0x00000001 
- 00018418  0x00002423 call  0x00004970 
- 00018419  0x00002424 fetch  0x00000006 , 0x00000040 
- 00018420  0x00002425 istore  0x00000006 , 0x0000000a 
- 00018421  0x00002426 istoret  0x00000008 , 0x0000000a 
- 00018422  0x00002427 force  0x0000000e , 0x00000039 
- 00018423  0x00002428 force  0x0000003d , 0x00000007 
- 00018424  0x00002429 branch  0x00004952 
- 00018425  0x0000242c set0  0x00000025 , 0x00000000 
- 00018426  0x0000242d bpatch  0x000000e5 , 0x0000401c 
- 00018427  0x0000242e fetch  0x00000001 , 0x00004132 
- 00018428  0x0000242f rtnne  0x00000001 
- 00018429  0x00002431 call  0x00004968 
- 00018430  0x00002432 fetch  0x00000001 , 0x00000449 
- 00018431  0x00002433 istore  0x00000001 , 0x0000000a 
- 00018432  0x00002434 setarg  0x00000001 
- 00018433  0x00002435 istore  0x00000001 , 0x0000000a 
- 00018434  0x00002436 istoret  0x00000008 , 0x0000000a 
- 00018435  0x00002437 force  0x0000000d , 0x00000039 
- 00018436  0x00002438 force  0x00000023 , 0x00000007 
- 00018437  0x00002439 branch  0x00004952 
- 00018438  0x0000243d set0  0x00000025 , 0x00000000 
- 00018439  0x0000243e bpatch  0x000000e6 , 0x0000401c 
- 00018440  0x0000243f fetch  0x00000001 , 0x00004132 
- 00018441  0x00002440 rtnne  0x00000001 
- 00018442  0x00002441 call  0x00004968 
- 00018443  0x00002442 istoret  0x00000005 , 0x0000000a 
- 00018444  0x00002443 force  0x00000008 , 0x00000039 
- 00018445  0x00002444 force  0x0000000c , 0x00000007 
- 00018446  0x00002445 branch  0x00004952 
- 00018447  0x00002448 set0  0x00000025 , 0x00000000 
- 00018448  0x00002449 bpatch  0x000000e7 , 0x0000401c 
- 00018449  0x0000244a fetch  0x00000001 , 0x00004132 
- 00018450  0x0000244b rtnne  0x00000001 
- 00018451  0x0000244d call  0x00004970 
- 00018452  0x0000244e fetch  0x00000006 , 0x00000040 
- 00018453  0x0000244f istore  0x00000006 , 0x0000000a 
- 00018454  0x00002450 fetch  0x00000003 , 0x000007e9 
- 00018455  0x00002451 istore  0x00000003 , 0x0000000a 
- 00018456  0x00002452 force  0x00000009 , 0x00000039 
- 00018457  0x00002453 force  0x00000032 , 0x00000007 
- 00018458  0x00002454 branch  0x00004952 
- 00018459  0x00002457 set0  0x00000025 , 0x00000000 
- 00018460  0x00002458 bpatch  0x000000e8 , 0x0000401d 
- 00018461  0x00002459 fetch  0x00000001 , 0x00004132 
- 00018462  0x0000245a rtnne  0x00000001 
- 00018463  0x0000245c call  0x00004970 
- 00018464  0x0000245d fetch  0x00000006 , 0x00000040 
- 00018465  0x0000245e istore  0x00000006 , 0x0000000a 
- 00018466  0x0000245f force  0x00000006 , 0x00000039 
- 00018467  0x00002460 force  0x00000031 , 0x00000007 
- 00018468  0x00002461 branch  0x00004952 
- 00018469  0x00002465 force  0x00000000 , 0x00000002 
- 00018470  0x00002467 set0  0x00000025 , 0x00000000 
- 00018471  0x00002468 bpatch  0x000000e9 , 0x0000401d 
- 00018472  0x00002469 fetch  0x00000001 , 0x00004132 
- 00018473  0x0000246a rtnne  0x00000001 
- 00018474  0x0000246b force  0x00000003 , 0x00000007 
- 00018475  0x0000246c jam  0x00000005 , 0x00004800 
- 00018476  0x0000246d call  0x00004970 
- 00018477  0x0000246e istoret  0x00000001 , 0x0000000a 
- 00018478  0x0000246f call  0x0000496b 
- 00018479  0x00002470 call  0x00004965 
- 00018480  0x00002471 force  0x00000001 , 0x0000003f 
- 00018481  0x00002472 istore  0x00000001 , 0x0000000a 
- 00018482  0x00002473 force  0x00000000 , 0x0000003f 
- 00018483  0x00002474 fetcht  0x00000001 , 0x0000004c 
- 00018484  0x00002475 isolate1  0x00000002 , 0x00000002 
- 00018485  0x00002476 setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00018486  0x00002477 istore  0x00000001 , 0x0000000a 
- 00018487  0x00002478 force  0x0000000b , 0x00000039 
- 00018488  0x00002479 branch  0x00004952 
- 00018489  0x0000247d set0  0x00000025 , 0x00000000 
- 00018490  0x0000247e bpatch  0x000000ea , 0x0000401d 
- 00018491  0x0000247f fetch  0x00000001 , 0x00004132 
- 00018492  0x00002480 rtnne  0x00000001 
- 00018493  0x00002481 force  0x00000004 , 0x00000007 
- 00018494  0x00002482 call  0x00004970 
- 00018495  0x00002483 call  0x00004965 
- 00018496  0x00002485 fetch  0x00000003 , 0x0000017f 
- 00018497  0x00002486 istore  0x00000003 , 0x0000000a 
- 00018498  0x00002487 istoret  0x00000001 , 0x0000000a 
- 00018499  0x00002488 force  0x0000000a , 0x00000039 
- 00018500  0x00002489 branch  0x00004952 
- 00018501  0x0000248c set0  0x00000025 , 0x00000000 
- 00018502  0x0000248d bpatch  0x000000eb , 0x0000401d 
- 00018503  0x0000248e fetch  0x00000001 , 0x00004132 
- 00018504  0x0000248f rtnne  0x00000001 
- 00018505  0x00002490 call  0x00004968 
- 00018506  0x00002491 force  0x00000000 , 0x0000003f 
- 00018507  0x00002492 fetcht  0x00000001 , 0x0000004c 
- 00018508  0x00002493 isolate1  0x00000002 , 0x00000002 
- 00018509  0x00002494 setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00018510  0x00002495 istore  0x00000001 , 0x0000000a 
- 00018511  0x00002496 force  0x00000008 , 0x00000007 
- 00018512  0x00002497 force  0x00000004 , 0x00000039 
- 00018513  0x00002498 branch  0x00004952 
- 00018514  0x0000249c set0  0x00000025 , 0x00000000 
- 00018515  0x0000249d bpatch  0x000000ec , 0x0000401d 
- 00018516  0x0000249e fetch  0x00000001 , 0x00004132 
- 00018517  0x0000249f rtnne  0x00000001 
- 00018518  0x000024a0 force  0x00000018 , 0x00000007 
- 00018519  0x000024a1 call  0x00004970 
- 00018520  0x000024a2 call  0x00004965 
- 00018521  0x000024a3 arg  0x00004262 , 0x00000006 
- 00018522  0x000024a4 force  0x00000010 , 0x00000039 
- 00018523  0x000024a5 call  0x00004976 
- 00018524  0x000024a6 force  0x00000005 , 0x0000003f 
- 00018525  0x000024a7 istore  0x00000001 , 0x0000000a 
- 00018526  0x000024a8 force  0x00000017 , 0x00000039 
- 00018527  0x000024a9 branch  0x00004952 
- 00018528  0x000024ac fetch  0x00000001 , 0x00004132 
- 00018529  0x000024ad rtnne  0x00000001 
- 00018530  0x000024ae force  0x00000033 , 0x00000007 
- 00018531  0x000024af call  0x00004970 
- 00018532  0x000024b0 call  0x00004965 
- 00018533  0x000024b1 fetch  0x00000004 , 0x000007ec 
- 00018534  0x000024b2 istore  0x00000004 , 0x0000000a 
- 00018535  0x000024b3 force  0x0000000a , 0x00000039 
- 00018536  0x000024b4 branch  0x00004952 
- 00018537  0x000024b7 fetch  0x00000001 , 0x00004132 
- 00018538  0x000024b8 rtnne  0x00000001 
- 00018539  0x000024b9 force  0x00000036 , 0x00000007 
- 00018540  0x000024ba call  0x00004970 
- 00018541  0x000024bb setarg  0x00000000 
- 00018542  0x000024bc istore  0x00000001 , 0x0000000a 
- 00018543  0x000024bd call  0x00004965 
- 00018544  0x000024be force  0x00000007 , 0x00000039 
- 00018545  0x000024bf branch  0x00004952 
- 00018546  0x000024c3 set0  0x00000025 , 0x00000000 
- 00018547  0x000024c4 bpatch  0x000000ed , 0x0000401d 
- 00018548  0x000024c5 force  0x00000017 , 0x00000007 
- 00018549  0x000024c7 fetch  0x00000001 , 0x00004132 
- 00018550  0x000024c8 rtnne  0x00000001 
- 00018551  0x000024c9 call  0x00004970 
- 00018552  0x000024ca call  0x00004965 
- 00018553  0x000024cb force  0x00000006 , 0x00000039 
- 00018554  0x000024cc branch  0x00004952 
- 00018555  0x000024cf fetch  0x00000001 , 0x00004132 
- 00018556  0x000024d0 rtnne  0x00000001 
- 00018557  0x000024d1 force  0x00000016 , 0x00000007 
- 00018558  0x000024d2 branch  0x00004875 
- 00018559  0x000024d6 fetch  0x00000001 , 0x00004132 
- 00018560  0x000024d7 rtnne  0x00000001 
- 00018561  0x000024d8 force  0x00000012 , 0x00000007 
- 00018562  0x000024d9 call  0x00004970 
- 00018563  0x000024da force  0x00000000 , 0x0000003f 
- 00018564  0x000024db istore  0x00000001 , 0x0000000a 
- 00018565  0x000024dc call  0x00004965 
- 00018566  0x000024dd istoret  0x00000001 , 0x0000000a 
- 00018567  0x000024de force  0x00000008 , 0x00000039 
- 00018568  0x000024df branch  0x00004952 
- 00018569  0x000024e2 fetch  0x00000001 , 0x00004132 
- 00018570  0x000024e3 rtnne  0x00000001 
- 00018571  0x000024e4 force  0x00000000 , 0x00000002 
- 00018572  0x000024e5 nbranch  0x0000488e , 0x00000029 
- 00018573  0x000024e6 force  0x00000001 , 0x00000002 
- 00018574  0x000024e8 fetch  0x00000001 , 0x00004132 
- 00018575  0x000024e9 rtnne  0x00000001 
- 00018576  0x000024ea force  0x00000012 , 0x00000007 
- 00018577  0x000024eb call  0x00004970 
- 00018578  0x000024ec force  0x00000035 , 0x0000003f 
- 00018579  0x000024ed istore  0x00000001 , 0x0000000a 
- 00018580  0x000024ee call  0x00004965 
- 00018581  0x000024ef istoret  0x00000001 , 0x0000000a 
- 00018582  0x000024f0 force  0x00000008 , 0x00000039 
- 00018583  0x000024f1 branch  0x00004952 
- 00018584  0x000024f4 set0  0x00000025 , 0x00000000 
- 00018585  0x000024f5 bpatch  0x000000ee , 0x0000401d 
- 00018586  0x000024f6 fetch  0x00000001 , 0x00004132 
- 00018587  0x000024f7 rtnne  0x00000001 
- 00018588  0x000024f8 call  0x00004972 
- 00018589  0x000024f9 setarg  0x0000ff07 
- 00018590  0x000024fa istore  0x00000002 , 0x0000000a 
- 00018591  0x000024fb deposit  0x00000007 
- 00018592  0x000024fc istore  0x00000001 , 0x0000000a 
- 00018593  0x000024fd call  0x00004965 
- 00018594  0x000024fe arg  0x00000103 , 0x00000006 
- 00018595  0x000024ff force  0x000000f8 , 0x00000039 
- 00018596  0x00002501 ifetch  0x00000001 , 0x00000006 
- 00018597  0x00002502 istore  0x00000001 , 0x0000000a 
- 00018598  0x00002503 loop  0x000048a4 
- 00018599  0x00002504 force  0x000000ff , 0x00000039 
- 00018600  0x00002505 branch  0x00004959 
- 00018601  0x00002508 set0  0x00000025 , 0x00000000 
- 00018602  0x00002509 bpatch  0x000000ef , 0x0000401d 
- 00018603  0x0000250a fetch  0x00000001 , 0x00004132 
- 00018604  0x0000250b rtnne  0x00000001 
- 00018605  0x0000250c hfetch  0x00000001 , 0x0000810e 
- 00018606  0x0000250d nrtn  0x00000034 
- 00018607  0x0000250e fetch  0x00000001 , 0x0000004b 
- 00018608  0x0000250f rtnbit0  0x00000007 
- 00018609  0x00002510 set0  0x00000007 , 0x0000003f 
- 00018610  0x00002511 store  0x00000001 , 0x0000004b 
- 00018611  0x00002512 call  0x00004970 
- 00018612  0x00002513 force  0x00000001 , 0x0000003f 
- 00018613  0x00002514 istore  0x00000001 , 0x0000000a 
- 00018614  0x00002515 call  0x0000496b 
- 00018615  0x00002516 force  0x00000001 , 0x0000003f 
- 00018616  0x00002517 istore  0x00000002 , 0x0000000a 
- 00018617  0x00002518 force  0x00000013 , 0x00000007 
- 00018618  0x00002519 force  0x00000005 , 0x00000039 
- 00018619  0x0000251a branch  0x00004952 
- 00018620  0x0000251f set0  0x00000025 , 0x00000000 
- 00018621  0x00002520 bpatch  0x000000f0 , 0x0000401e 
- 00018622  0x00002521 fetch  0x00000001 , 0x00004132 
- 00018623  0x00002522 rtnne  0x00000001 
- 00018624  0x00002523 call  0x00004968 
- 00018625  0x00002524 force  0x00000006 , 0x00000007 
- 00018626  0x00002525 force  0x00000003 , 0x00000039 
- 00018627  0x00002526 branch  0x00004952 
- 00018628  0x0000252b set0  0x00000025 , 0x00000000 
- 00018629  0x0000252c bpatch  0x000000f1 , 0x0000401e 
- 00018630  0x0000252d fetch  0x00000001 , 0x00004132 
- 00018631  0x0000252e rtnne  0x00000001 
- 00018632  0x0000252f call  0x00004970 
- 00018633  0x00002530 force  0x00000000 , 0x0000003f 
- 00018634  0x00002531 istore  0x00000001 , 0x0000000a 
- 00018635  0x00002532 istoret  0x00000002 , 0x0000000a 
- 00018636  0x00002533 fetch  0x00000001 , 0x000002c0 
- 00018637  0x00002534 istore  0x00000001 , 0x0000000a 
- 00018638  0x00002535 force  0x00000005 , 0x00000007 
- 00018639  0x00002536 force  0x00000004 , 0x00000039 
- 00018640  0x00002537 branch  0x00004952 
- 00018641  0x0000253b set0  0x00000025 , 0x00000000 
- 00018642  0x0000253c bpatch  0x000000f2 , 0x0000401e 
- 00018643  0x0000253d fetch  0x00000001 , 0x00004132 
- 00018644  0x0000253e rtnne  0x00000001 , 0x0000003f 
- 00018645  0x0000253f call  0x00004970 
- 00018646  0x00002540 setarg  0x00000102 
- 00018647  0x00002541 istore  0x00000002 , 0x0000000a 
- 00018648  0x00002542 fetcht  0x00000001 , 0x00000340 
- 00018649  0x00002543 and  0x00000002 , 0x0000000f , 0x0000003f 
- 00018650  0x00002544 istore  0x00000001 , 0x0000000a 
- 00018651  0x00002545 copy  0x00000011 , 0x0000003f 
- 00018652  0x00002546 istore  0x00000001 , 0x0000000a 
- 00018653  0x00002547 fetcht  0x00000001 , 0x00000341 
- 00018654  0x00002548 increase  0xfffffffa , 0x00000002 
- 00018655  0x00002549 fetch  0x00000006 , 0x00000342 
- 00018656  0x0000254a istore  0x00000006 , 0x0000000a 
- 00018657  0x0000254b istoret  0x00000001 , 0x0000000a 
- 00018658  0x0000254c copy  0x00000002 , 0x00000039 
- 00018659  0x0000254d call  0x00004976 
- 00018660  0x0000254e setarg  0x0000007f 
- 00018661  0x0000254f istore  0x00000001 , 0x0000000a 
- 00018662  0x00002550 copy  0x00000002 , 0x00000039 
- 00018663  0x00002551 add  0x00000039 , 0x0000000c , 0x00000039 
- 00018664  0x00002552 force  0x0000003e , 0x00000007 
- 00018665  0x00002553 branch  0x00004952 
- 00018666  0x00002556 set0  0x00000025 , 0x00000000 
- 00018667  0x00002557 bpatch  0x000000f3 , 0x0000401e 
- 00018668  0x00002558 fetch  0x00000001 , 0x00004132 
- 00018669  0x00002559 rtnne  0x00000001 , 0x0000003f 
- 00018670  0x0000255a call  0x00004970 
- 00018671  0x0000255b setarg  0x00000001 
- 00018672  0x0000255c istore  0x00000001 , 0x0000000a 
- 00018673  0x0000255d istoret  0x00000001 , 0x0000000a 
- 00018674  0x0000255e fetch  0x00000001 , 0x000003d6 
- 00018675  0x0000255f istore  0x00000002 , 0x0000000a 
- 00018676  0x00002560 fetch  0x00000001 , 0x000003c1 
- 00018677  0x00002561 rshift  0x0000003f , 0x0000003f 
- 00018678  0x00002562 setflip  0x00000000 , 0x0000003f 
- 00018679  0x00002563 istore  0x00000001 , 0x0000000a 
- 00018680  0x00002564 fetch  0x00000001 , 0x000044e6 
- 00018681  0x00002565 istore  0x00000001 , 0x0000000a 
- 00018682  0x00002566 fetch  0x00000006 , 0x000003d0 
- 00018683  0x00002567 istore  0x00000006 , 0x0000000a 
- 00018684  0x00002568 fetch  0x00000002 , 0x000043d0 
- 00018685  0x00002569 istore  0x00000002 , 0x0000000a 
- 00018686  0x0000256a fetch  0x00000002 , 0x000003ed 
- 00018687  0x0000256b istore  0x00000002 , 0x0000000a 
- 00018688  0x0000256c fetch  0x00000002 , 0x000003ef 
- 00018689  0x0000256d istore  0x00000002 , 0x0000000a 
- 00018690  0x0000256e fetch  0x00000001 , 0x000003f8 
- 00018691  0x0000256f istore  0x00000001 , 0x0000000a 
- 00018692  0x00002570 force  0x0000003e , 0x00000007 
- 00018693  0x00002571 arg  0x00000013 , 0x00000039 
- 00018694  0x00002572 branch  0x00004952 
- 00018695  0x00002577 set0  0x00000025 , 0x00000000 
- 00018696  0x00002578 bpatch  0x000000f4 , 0x0000401e 
- 00018697  0x00002579 fetch  0x00000001 , 0x00004132 
- 00018698  0x0000257a rtnne  0x00000001 
- 00018699  0x0000257c call  0x00004970 
- 00018700  0x0000257d call  0x00004968 
- 00018701  0x0000257e istoret  0x00000001 , 0x0000000a 
- 00018702  0x0000257f fetch  0x00000002 , 0x00000032 
- 00018703  0x00002580 rshift  0x0000003f , 0x0000003f 
- 00018704  0x00002581 istore  0x00000002 , 0x0000000a 
- 00018705  0x00002582 force  0x00000006 , 0x00000039 
- 00018706  0x00002583 force  0x00000014 , 0x00000007 
- 00018707  0x00002584 branch  0x00004952 
- 00018708  0x00002588 set0  0x00000025 , 0x00000000 
- 00018709  0x00002589 bpatch  0x000000f5 , 0x0000401e 
- 00018710  0x0000258a fetch  0x00000001 , 0x00004132 
- 00018711  0x0000258b rtnne  0x00000001 
- 00018712  0x0000258c set0  0x00000025 , 0x00000000 
- 00018713  0x0000258d bpatch  0x000000f6 , 0x0000401e 
- 00018714  0x0000258e call  0x00004970 
- 00018715  0x0000258f istoret  0x00000001 , 0x0000000a 
- 00018716  0x00002590 setarg  0x00000e00 
- 00018717  0x00002591 istore  0x00000002 , 0x0000000a 
- 00018718  0x00002592 call  0x00004965 
- 00018719  0x00002593 force  0x00000000 , 0x0000003f 
- 00018720  0x00002594 bmark1  0x00000007 , 0x00004924 
- 00018721  0x00002595 force  0x00000000 , 0x0000003f 
- 00018722  0x00002596 istore  0x00000007 , 0x0000000a 
- 00018723  0x00002597 branch  0x0000492c 
- 00018724  0x00002599 fetch  0x00000001 , 0x00004132 
- 00018725  0x0000259a rtnne  0x00000001 
- 00018726  0x0000259b setarg  0x00020602 
- 00018727  0x0000259c istore  0x00000003 , 0x0000000a 
- 00018728  0x0000259d setarg  0x0000001e 
- 00018729  0x0000259e istore  0x00000002 , 0x0000000a 
- 00018730  0x0000259f setarg  0x0000001e 
- 00018731  0x000025a0 istore  0x00000002 , 0x0000000a 
- 00018732  0x000025a2 fetch  0x00000001 , 0x00004132 
- 00018733  0x000025a3 rtnne  0x00000001 
- 00018734  0x000025a4 fetch  0x00000001 , 0x000000ab 
- 00018735  0x000025a5 istore  0x00000001 , 0x0000000a 
- 00018736  0x000025a6 force  0x0000002c , 0x00000007 
- 00018737  0x000025a7 force  0x00000011 , 0x00000039 
- 00018738  0x000025a8 branch  0x00004952 
- 00018739  0x000025ac set0  0x00000025 , 0x00000000 
- 00018740  0x000025ad bpatch  0x000000f7 , 0x0000401e 
- 00018741  0x000025ae call  0x00004970 
- 00018742  0x000025af setarg  0x00000100 
- 00018743  0x000025b0 istore  0x00000002 , 0x0000000a 
- 00018744  0x000025b1 deposit  0x00000030 
- 00018745  0x000025b2 istore  0x00000002 , 0x0000000a 
- 00018746  0x000025b3 force  0x00000004 , 0x00000039 
- 00018747  0x000025b4 force  0x0000000f , 0x00000007 
- 00018748  0x000025b5 branch  0x00004952 
- 00018749  0x000025b8 set0  0x00000025 , 0x00000000 
- 00018750  0x000025b9 bpatch  0x000000f8 , 0x0000401f 
- 00018751  0x000025ba call  0x00004970 
- 00018752  0x000025bb deposit  0x00000011 
- 00018753  0x000025bc istore  0x00000001 , 0x0000000a 
- 00018754  0x000025bd setarg  0x00000001 
- 00018755  0x000025be istore  0x00000001 , 0x0000000a 
- 00018756  0x000025bf deposit  0x00000030 
- 00018757  0x000025c0 istore  0x00000002 , 0x0000000a 
- 00018758  0x000025c1 force  0x00000004 , 0x00000039 
- 00018759  0x000025c2 force  0x0000000f , 0x00000007 
- 00018760  0x000025c3 branch  0x00004952 
- 00018761  0x000025c6 set0  0x00000025 , 0x00000000 
- 00018762  0x000025c7 bpatch  0x000000f9 , 0x0000401f 
- 00018763  0x000025c8 force  0x00000004 , 0x00000039 
- 00018764  0x000025ca call  0x00004970 
- 00018765  0x000025cb force  0x00000001 , 0x0000003f 
- 00018766  0x000025cc istore  0x00000001 , 0x0000000a 
- 00018767  0x000025cd deposit  0x00000030 
- 00018768  0x000025ce istore  0x00000003 , 0x0000000a 
- 00018769  0x000025cf force  0x0000000e , 0x00000007 
- 00018770  0x000025d1 set0  0x00000025 , 0x00000000 
- 00018771  0x000025d2 bpatch  0x000000fa , 0x0000401f 
- 00018772  0x000025d3 call  0x00004972 
- 00018773  0x000025d4 deposit  0x00000007 
- 00018774  0x000025d5 istore  0x00000001 , 0x0000000a 
- 00018775  0x000025d6 deposit  0x00000039 
- 00018776  0x000025d7 istore  0x00000001 , 0x0000000a 
- 00018777  0x000025d9 set1  0x00000013 , 0x00000000 
- 00018778  0x000025da force  0x00000005 , 0x00000007 
- 00018779  0x000025db increase  0x00000002 , 0x00000039 
- 00018780  0x000025dd call  0x00004494 
- 00018781  0x000025de branch  0x00004378 , 0x00000001 
- 00018782  0x000025df branch  0x00004422 
- 00018783  0x000025e2 force  0x000000ff , 0x00000007 
- 00018784  0x000025e3 call  0x00004970 
- 00018785  0x000025e4 setarg  0x00000001 
- 00018786  0x000025e5 istore  0x00000001 , 0x0000000a 
- 00018787  0x000025e6 force  0x00000001 , 0x00000039 
- 00018788  0x000025e7 branch  0x00004952 
- 00018789  0x000025eb fetch  0x00000006 , 0x00000040 
- 00018790  0x000025ec istore  0x00000006 , 0x0000000a 
- 00018791  0x000025ed rtn 
- 00018792  0x000025f0 call  0x00004970 
- 00018793  0x000025f1 force  0x00000000 , 0x0000003f 
- 00018794  0x000025f2 istore  0x00000001 , 0x0000000a 
- 00018795  0x000025f4 fetch  0x00000001 , 0x00000046 
- 00018796  0x000025f5 istore  0x00000002 , 0x0000000a 
- 00018797  0x000025f6 rtn 
- 00018798  0x000025f9 force  0x0000000c , 0x0000000a 
- 00018799  0x000025fa branch  0x00004973 
- 00018800  0x000025fd force  0x00000008 , 0x0000000a 
- 00018801  0x000025fe branch  0x00004973 
- 00018802  0x00002601 force  0x00000006 , 0x0000000a 
- 00018803  0x00002603 call  0x00004494 
- 00018804  0x00002604 branch  0x000043de , 0x00000001 
- 00018805  0x00002605 branch  0x0000441e 
- 00018806  0x00002608 deposit  0x00000039 
- 00018807  0x00002609 rtn  0x00000034 
- 00018808  0x0000260b ifetch  0x00000001 , 0x00000006 
- 00018809  0x0000260c istore  0x00000001 , 0x0000000a 
- 00018810  0x0000260d loop  0x00004978 
- 00018811  0x0000260e rtn 
- 00018812  0x00002611 deposit  0x00000039 
- 00018813  0x00002612 rtn  0x00000034 
- 00018814  0x00002614 ifetch  0x00000001 , 0x00000003 
- 00018815  0x00002615 istore  0x00000001 , 0x00000005 
- 00018816  0x00002616 loop  0x0000497e 
- 00018817  0x00002617 rtn 
- 00018818  0x0000261a istore  0x00000001 , 0x0000000a 
- 00018819  0x0000261b rshift8  0x0000003f , 0x0000003f 
- 00018820  0x0000261c loop  0x00004982 
- 00018821  0x0000261d rtn 
- 00018822  0x00002621 pulse  0x0000000f 
- 00018823  0x00002622 enable  0x00000009 
- 00018824  0x00002624 ifetch  0x00000001 , 0x0000000a 
- 00018825  0x00002625 inject  0x00000000 , 0x00000008 
- 00018826  0x00002626 loop  0x00004988 
- 00018827  0x00002627 enable  0x00000008 
- 00018828  0x00002628 inject  0x00000000 , 0x00000010 
- 00018829  0x00002629 disable  0x00000008 
- 00018830  0x0000262a disable  0x00000009 
- 00018831  0x0000262b disable  0x0000000f 
- 00018832  0x0000262c byteswap  0x0000003f , 0x0000003f 
- 00018833  0x0000262d rtn 
- 00018834  0x00002630 nop  0x00000001 
- 00018835  0x00002631 hjam  0x00000001 , 0x00008203 
- 00018836  0x00002632 branch  0x00004992 
- 00018837  0x00002637 set0  0x00000025 , 0x00000000 
- 00018838  0x00002638 bpatch  0x000000fb , 0x0000401f 
- 00018839  0x00002639 fetch  0x00000001 , 0x00004272 
- 00018840  0x0000263a rtn  0x00000034 
- 00018841  0x0000263b fetch  0x00000001 , 0x0000007c 
- 00018842  0x0000263c nrtn  0x00000034 
- 00018843  0x0000263d call  0x000049be 
- 00018844  0x0000263e nbranch  0x000049aa , 0x00000005 
- 00018845  0x0000263f fetch  0x00000001 , 0x00004272 
- 00018846  0x00002640 beq  0x00000003 , 0x000049d4 
- 00018847  0x00002641 beq  0x00000009 , 0x000049da 
- 00018848  0x00002642 beq  0x0000000a , 0x000049e6 
- 00018849  0x00002643 beq  0x0000000b , 0x000049ed 
- 00018850  0x00002644 beq  0x0000000c , 0x000049f7 
- 00018851  0x00002645 beq  0x00000008 , 0x00004a32 
- 00018852  0x00002646 beq  0x00000018 , 0x000049cc 
- 00018853  0x00002647 beq  0x00000007 , 0x000049c6 
- 00018854  0x00002648 beq  0x00000019 , 0x000049ca 
- 00018855  0x00002649 beq  0x0000001a , 0x00004a53 
- 00018856  0x0000264a beq  0x00000012 , 0x00004a19 
- 00018857  0x0000264b beq  0x00000013 , 0x00004a28 
- 00018858  0x0000264d set0  0x00000025 , 0x00000000 
- 00018859  0x0000264e bpatch  0x000000fc , 0x0000401f 
- 00018860  0x0000264f call  0x000049c2 
- 00018861  0x00002650 nrtn  0x00000034 
- 00018862  0x00002651 fetch  0x00000001 , 0x00004272 
- 00018863  0x00002652 beq  0x0000000d , 0x00004a01 
- 00018864  0x00002653 beq  0x0000000f , 0x00004a0b 
- 00018865  0x00002654 beq  0x0000000e , 0x00004a0d 
- 00018866  0x00002655 beq  0x00000010 , 0x00004a2a 
- 00018867  0x00002656 beq  0x00000011 , 0x00004a34 
- 00018868  0x00002657 beq  0x0000001c , 0x00004a38 
- 00018869  0x00002658 beq  0x00000004 , 0x00004a0f 
- 00018870  0x00002659 beq  0x00000015 , 0x00004a14 
- 00018871  0x0000265a beq  0x00000014 , 0x00004a17 
- 00018872  0x0000265b beq  0x00000017 , 0x00004a48 
- 00018873  0x0000265c beq  0x00000016 , 0x00004a51 
- 00018874  0x0000265d rtnne  0x00000006 
- 00018875  0x0000265e call  0x00005ed5 
- 00018876  0x00002660 jam  0x00000000 , 0x00004272 
- 00018877  0x00002661 rtn 
- 00018878  0x00002664 fetch  0x00000006 , 0x00004274 
- 00018879  0x00002665 fetcht  0x00000006 , 0x00000040 
- 00018880  0x00002666 isub  0x00000002 , 0x0000003e 
- 00018881  0x00002667 rtn 
- 00018882  0x0000266b fetch  0x00000001 , 0x00004273 
- 00018883  0x0000266c fetcht  0x00000001 , 0x00000046 
- 00018884  0x0000266d isub  0x00000002 , 0x0000003f 
- 00018885  0x0000266e rtn 
- 00018886  0x00002671 jam  0x00000003 , 0x0000007c 
- 00018887  0x00002672 jam  0x00000033 , 0x0000007d 
- 00018888  0x00002673 call  0x00006212 
- 00018889  0x00002674 branch  0x000049bc 
- 00018890  0x00002677 branch  0x00004a38 , 0x00000029 
- 00018891  0x00002678 set1  0x00000004 , 0x00000000 
- 00018892  0x0000267a jam  0x00000034 , 0x0000007c 
- 00018893  0x0000267b set1  0x00000003 , 0x00000000 
- 00018894  0x0000267c nbranch  0x000049bc , 0x00000029 
- 00018895  0x0000267d jam  0x00000013 , 0x0000007c 
- 00018896  0x0000267e fetch  0x00000001 , 0x00000177 
- 00018897  0x0000267f set0  0x00000002 , 0x0000003f 
- 00018898  0x00002680 store  0x00000001 , 0x00000177 
- 00018899  0x00002681 branch  0x000049bc 
- 00018900  0x00002685 jam  0x00000001 , 0x0000007c 
- 00018901  0x00002686 jam  0x00000000 , 0x00000053 
- 00018902  0x00002687 branch  0x000049bc 
- 00018903  0x0000268b jam  0x00000001 , 0x000007dd 
- 00018904  0x0000268c jam  0x00000012 , 0x000007db 
- 00018905  0x0000268d branch  0x000049bc 
- 00018906  0x00002690 fetch  0x00000001 , 0x0000004b 
- 00018907  0x00002691 bbit1  0x00000002 , 0x000049df 
- 00018908  0x00002692 call  0x00006209 
- 00018909  0x00002693 jam  0x00000008 , 0x0000007c 
- 00018910  0x00002694 branch  0x000049bc 
- 00018911  0x00002696 set0  0x00000002 , 0x0000003f 
- 00018912  0x00002697 store  0x00000001 , 0x0000004b 
- 00018913  0x00002698 call  0x00005ed0 
- 00018914  0x00002699 setarg  0x00000000 
- 00018915  0x0000269a setflag  0x00000029 , 0x00000001 , 0x0000003f 
- 00018916  0x0000269b store  0x00000001 , 0x0000007f 
- 00018917  0x0000269c branch  0x000049bc 
- 00018918  0x0000269f jam  0x00000018 , 0x00000446 
- 00018919  0x000026a0 jam  0x00000007 , 0x0000007c 
- 00018920  0x000026a1 fetch  0x00000001 , 0x00000030 
- 00018921  0x000026a2 bbit1  0x00000000 , 0x000049bc 
- 00018922  0x000026a3 force  0x00000018 , 0x00000002 
- 00018923  0x000026a4 call  0x00004826 
- 00018924  0x000026a5 branch  0x000049bc 
- 00018925  0x000026a9 call  0x0000321f 
- 00018926  0x000026aa fetch  0x00000001 , 0x0000004b 
- 00018927  0x000026ab bbit1  0x00000001 , 0x00004a08 
- 00018928  0x000026ac bbit1  0x00000000 , 0x000049f3 
- 00018929  0x000026ad bbit1  0x00000002 , 0x000049df 
- 00018930  0x000026ae branch  0x000049bc 
- 00018931  0x000026b0 set0  0x00000000 , 0x0000003f 
- 00018932  0x000026b1 store  0x00000001 , 0x0000004b 
- 00018933  0x000026b2 jam  0x0000000c , 0x0000007c 
- 00018934  0x000026b3 branch  0x000049bc 
- 00018935  0x000026b6 fetch  0x00000001 , 0x0000004b 
- 00018936  0x000026b7 bbit1  0x00000000 , 0x000049fb 
- 00018937  0x000026b8 call  0x0000487b 
- 00018938  0x000026b9 branch  0x000049bc 
- 00018939  0x000026bb set0  0x00000000 , 0x0000003f 
- 00018940  0x000026bc store  0x00000001 , 0x0000004b 
- 00018941  0x000026bd jam  0x00000004 , 0x0000007c 
- 00018942  0x000026be jam  0x0000000b , 0x0000007d 
- 00018943  0x000026bf jam  0x00000006 , 0x0000007e 
- 00018944  0x000026c0 branch  0x000049bc 
- 00018945  0x000026c4 fetch  0x00000001 , 0x0000004b 
- 00018946  0x000026c5 set1  0x00000001 , 0x0000003f 
- 00018947  0x000026c6 store  0x00000001 , 0x0000004b 
- 00018948  0x000026c7 fetch  0x00000001 , 0x00000030 
- 00018949  0x000026c8 bbit1  0x00000007 , 0x00004a08 
- 00018950  0x000026c9 call  0x00004872 
- 00018951  0x000026ca branch  0x000049bc 
- 00018952  0x000026ce call  0x00006209 
- 00018953  0x000026cf jam  0x0000000b , 0x0000007c 
- 00018954  0x000026d0 branch  0x000049bc 
- 00018955  0x000026d3 jam  0x0000000f , 0x0000007c 
- 00018956  0x000026d4 branch  0x000049bc 
- 00018957  0x000026d7 jam  0x0000000f , 0x0000007c 
- 00018958  0x000026d8 branch  0x000049bc 
- 00018959  0x000026db set0  0x00000025 , 0x00000000 
- 00018960  0x000026dc bpatch  0x000000fd , 0x0000401f 
- 00018961  0x000026dd jam  0x00000027 , 0x0000007c 
- 00018962  0x000026de jam  0x00000050 , 0x00004272 
- 00018963  0x000026df rtn 
- 00018964  0x000026e2 jam  0x00000083 , 0x0000007c 
- 00018965  0x000026e3 jam  0x00000051 , 0x00004272 
- 00018966  0x000026e4 rtn 
- 00018967  0x000026e7 jam  0x00000025 , 0x0000007c 
- 00018968  0x000026e8 branch  0x000049bc 
- 00018969  0x000026eb jam  0x00000017 , 0x0000007c 
- 00018970  0x000026ec arg  0x00000455 , 0x00000005 
- 00018971  0x000026ed setarg  0x00000000 
- 00018972  0x000026ee isolate1  0x0000001b , 0x00000028 
- 00018973  0x000026ef setflag  0x00000001 , 0x00000001 , 0x0000003f 
- 00018974  0x000026f0 istore  0x00000001 , 0x00000005 
- 00018975  0x000026f1 setarg  0x00000000 
- 00018976  0x000026f2 istore  0x00000002 , 0x00000005 
- 00018977  0x000026f3 fetch  0x00000002 , 0x00004280 
- 00018978  0x000026f4 istore  0x00000002 , 0x00000005 
- 00018979  0x000026f5 fetch  0x00000001 , 0x00004282 
- 00018980  0x000026f6 istore  0x00000002 , 0x00000005 
- 00018981  0x000026f7 fetch  0x00000001 , 0x00004284 
- 00018982  0x000026f8 istore  0x00000002 , 0x00000005 
- 00018983  0x000026f9 branch  0x000049bc 
- 00018984  0x000026fc jam  0x00000018 , 0x0000007c 
- 00018985  0x000026fd branch  0x000049bc 
- 00018986  0x00002700 call  0x00003512 
- 00018987  0x00002701 store  0x00000001 , 0x000000ad 
- 00018988  0x00002702 fetch  0x00000001 , 0x00000046 
- 00018989  0x00002703 store  0x00000001 , 0x000000ac 
- 00018990  0x00002704 jam  0x0000002b , 0x0000007c 
- 00018991  0x00002705 set1  0x00000007 , 0x00000000 
- 00018992  0x00002706 jam  0x0000008c , 0x0000007c 
- 00018993  0x00002707 branch  0x000049bc 
- 00018994  0x0000270a call  0x00005ed5 
- 00018995  0x0000270b branch  0x000049bc 
- 00018996  0x0000270e jam  0x0000002c , 0x0000007c 
- 00018997  0x0000270f bmark0  0x00000007 , 0x000049bc 
- 00018998  0x00002710 jam  0x0000008d , 0x0000007c 
- 00018999  0x00002711 branch  0x000049bc 
- 00019000  0x00002714 branch  0x00004a41 , 0x00000029 
- 00019001  0x00002715 jam  0x00000003 , 0x0000007c 
- 00019002  0x00002716 jam  0x0000002b , 0x0000007d 
- 00019003  0x00002717 bmark0  0x00000007 , 0x000049bc 
- 00019004  0x00002718 fetch  0x00000001 , 0x000000b0 
- 00019005  0x00002719 bne  0x00000007 , 0x00005c04 
- 00019006  0x0000271a jam  0x00000081 , 0x0000007c 
- 00019007  0x0000271b jam  0x0000008c , 0x0000007d 
- 00019008  0x0000271c branch  0x000049bc 
- 00019009  0x0000271e call  0x00003512 
- 00019010  0x0000271f store  0x00000001 , 0x000000ad 
- 00019011  0x00002720 fetch  0x00000001 , 0x00000046 
- 00019012  0x00002721 store  0x00000001 , 0x000000ac 
- 00019013  0x00002722 jam  0x0000002b , 0x0000007c 
- 00019014  0x00002723 bmark0  0x00000007 , 0x000049bc 
- 00019015  0x00002724 branch  0x00005c04 
- 00019016  0x00002728 call  0x0000496e 
- 00019017  0x00002729 call  0x0000496b 
- 00019018  0x0000272a force  0x00000000 , 0x0000003f 
- 00019019  0x0000272b nsetflag  0x00000029 , 0x00000000 , 0x0000003f 
- 00019020  0x0000272c istore  0x00000001 , 0x0000000a 
- 00019021  0x0000272d force  0x00000007 , 0x00000039 
- 00019022  0x0000272e arg  0x00000809 , 0x00000030 
- 00019023  0x0000272f call  0x0000494c 
- 00019024  0x00002730 branch  0x000049bc 
- 00019025  0x00002733 jam  0x0000009a , 0x0000007c 
- 00019026  0x00002734 branch  0x000049bc 
- 00019027  0x00002737 jam  0x00000007 , 0x0000007c 
- 00019028  0x00002738 jam  0x00000013 , 0x00000446 
- 00019029  0x00002739 branch  0x000049bc 
- 00019030  0x0000273f jam  0x00000000 , 0x000002bc 
- 00019031  0x00002742 ifetch  0x00000001 , 0x00000003 
- 00019032  0x00002743 store  0x00000001 , 0x000002bb 
- 00019033  0x00002744 call  0x00004a6d 
- 00019034  0x00002746 call  0x00007e00 
- 00019035  0x00002747 fetch  0x00000001 , 0x000002bb 
- 00019036  0x00002748 copy  0x0000003f , 0x00000002 
- 00019037  0x00002749 fetch  0x00000001 , 0x0000029f 
- 00019038  0x0000274a increase  0x00000001 , 0x0000003f 
- 00019039  0x0000274b icompare  0x000000ff , 0x00000002 
- 00019040  0x0000274c nbranch  0x00004a77 , 0x00000001 
- 00019041  0x0000274d store  0x00000001 , 0x0000029f 
- 00019042  0x0000274e call  0x00007e0e 
- 00019043  0x00002750 ifetch  0x00000001 , 0x00000003 
- 00019044  0x00002751 beq  0x00000001 , 0x00004ad8 
- 00019045  0x00002752 beq  0x00000002 , 0x00004aae 
- 00019046  0x00002753 beq  0x00000003 , 0x00004adf 
- 00019047  0x00002754 beq  0x00000005 , 0x00004ac3 
- 00019048  0x00002755 beq  0x00000006 , 0x00004a80 
- 00019049  0x00002756 beq  0x00000007 , 0x00004a91 
- 00019050  0x00002757 beq  0x00000008 , 0x00004aa8 
- 00019051  0x00002758 beq  0x00000009 , 0x00004ae6 
- 00019052  0x00002759 rtn 
- 00019053  0x0000275b copy  0x0000003f , 0x00000002 
- 00019054  0x0000275c call  0x00007e00 
- 00019055  0x0000275d fetch  0x00000001 , 0x000002bc 
- 00019056  0x0000275e iadd  0x00000002 , 0x0000003f 
- 00019057  0x0000275f store  0x00000001 , 0x000002bc 
- 00019058  0x00002760 branch  0x00007e0e 
- 00019059  0x00002764 force  0x00000001 , 0x0000003f 
- 00019060  0x00002765 call  0x000044b5 
- 00019061  0x00002766 fetch  0x00000001 , 0x0000029f 
- 00019062  0x00002767 branch  0x000044b5 
- 00019063  0x0000276a call  0x00007e0e 
- 00019064  0x0000276b branch  0x00004a7c 
- 00019065  0x0000276d fetch  0x00000001 , 0x0000029f 
- 00019066  0x0000276e increase  0xffffffff , 0x0000003f 
- 00019067  0x0000276f store  0x00000001 , 0x0000029f 
- 00019068  0x00002771 force  0x00000000 , 0x0000003f 
- 00019069  0x00002772 call  0x000044b5 
- 00019070  0x00002773 fetch  0x00000001 , 0x0000029f 
- 00019071  0x00002774 branch  0x000044b5 
- 00019072  0x00002777 call  0x00004a6d 
- 00019073  0x00002778 ifetch  0x00000001 , 0x00000003 
- 00019074  0x00002779 store  0x00000001 , 0x000002bd 
- 00019075  0x0000277a call  0x00004a6d 
- 00019076  0x0000277b ifetch  0x00000001 , 0x00000003 
- 00019077  0x0000277c lshift8  0x0000003f , 0x00000005 
- 00019078  0x0000277d call  0x00004a6d 
- 00019079  0x0000277e fetch  0x00000001 , 0x000002bd 
- 00019080  0x0000277f iadd  0x00000005 , 0x00000005 
- 00019081  0x00002780 ifetch  0x00000001 , 0x00000003 
- 00019082  0x00002781 istore  0x00000001 , 0x00000005 
- 00019083  0x00002782 call  0x00004a6d 
- 00019084  0x00002783 ifetch  0x00000001 , 0x00000003 
- 00019085  0x00002784 call  0x00004a6d 
- 00019086  0x00002785 fetch  0x00000001 , 0x000002bc 
- 00019087  0x00002786 bne  0x000000ff , 0x00004a79 
- 00019088  0x00002787 branch  0x00004a73 
- 00019089  0x0000278a call  0x00004a6d 
- 00019090  0x0000278b ifetch  0x00000001 , 0x00000003 
- 00019091  0x0000278c store  0x00000001 , 0x000002bd 
- 00019092  0x0000278d call  0x00004a6d 
- 00019093  0x0000278e ifetch  0x00000001 , 0x00000003 
- 00019094  0x0000278f store  0x00000001 , 0x000002be 
- 00019095  0x00002790 call  0x00004a6d 
- 00019096  0x00002791 ifetch  0x00000001 , 0x00000003 
- 00019097  0x00002792 call  0x00004a6d 
- 00019098  0x00002793 fetch  0x00000001 , 0x000002bc 
- 00019099  0x00002794 bne  0x000000ff , 0x00004a79 
- 00019100  0x00002796 fetch  0x00000001 , 0x000002be 
- 00019101  0x00002797 lshift8  0x0000003f , 0x00000002 
- 00019102  0x00002798 fetch  0x00000001 , 0x000002bd 
- 00019103  0x00002799 iadd  0x00000002 , 0x00000003 
- 00019104  0x0000279a ifetch  0x00000001 , 0x00000003 
- 00019105  0x0000279b store  0x00000001 , 0x000002bd 
- 00019106  0x0000279d force  0x00000001 , 0x0000003f 
- 00019107  0x0000279e call  0x000044b5 
- 00019108  0x0000279f fetch  0x00000001 , 0x000002bd 
- 00019109  0x000027a0 call  0x000044b5 
- 00019110  0x000027a1 jam  0x000000ff , 0x0000029f 
- 00019111  0x000027a2 rtn 
- 00019112  0x000027a5 call  0x00004a6d 
- 00019113  0x000027a6 ifetch  0x00000001 , 0x00000003 
- 00019114  0x000027a7 call  0x00004a6d 
- 00019115  0x000027a8 fetch  0x00000001 , 0x000002bc 
- 00019116  0x000027a9 bne  0x000000ff , 0x00004a79 
- 00019117  0x000027aa branch  0x00004a73 
- 00019118  0x000027ad call  0x00004a6d 
- 00019119  0x000027ae ifetch  0x00000001 , 0x00000003 
- 00019120  0x000027af hstore  0x00000001 , 0x00008024 
- 00019121  0x000027b0 call  0x00004a6d 
- 00019122  0x000027b1 ifetch  0x00000001 , 0x00000003 
- 00019123  0x000027b2 set1  0x00000007 , 0x0000003f 
- 00019124  0x000027b3 hstore  0x00000001 , 0x00008023 
- 00019125  0x000027b4 set0  0x00000007 , 0x0000003f 
- 00019126  0x000027b5 call  0x00004a6d 
- 00019127  0x000027b6 ifetch  0x00000001 , 0x00000003 
- 00019128  0x000027b7 copy  0x0000003f , 0x00000039 
- 00019129  0x000027b8 call  0x00004a6d 
- 00019130  0x000027ba ifetch  0x00000001 , 0x00000003 
- 00019131  0x000027bb hstore  0x00000001 , 0x00008025 
- 00019132  0x000027bc call  0x00004a6d 
- 00019133  0x000027bd loop  0x00004aba 
- 00019134  0x000027be ifetch  0x00000001 , 0x00000003 
- 00019135  0x000027bf call  0x00004a6d 
- 00019136  0x000027c0 fetch  0x00000001 , 0x000002bc 
- 00019137  0x000027c1 bne  0x000000ff , 0x00004a79 
- 00019138  0x000027c2 branch  0x00004a73 
- 00019139  0x000027c5 call  0x00004a6d 
- 00019140  0x000027c6 ifetch  0x00000001 , 0x00000003 
- 00019141  0x000027c7 store  0x00000001 , 0x000002bd 
- 00019142  0x000027c8 call  0x00004a6d 
- 00019143  0x000027c9 ifetch  0x00000001 , 0x00000003 
- 00019144  0x000027ca lshift8  0x0000003f , 0x00000005 
- 00019145  0x000027cb call  0x00004a6d 
- 00019146  0x000027cc fetch  0x00000001 , 0x000002bd 
- 00019147  0x000027cd iadd  0x00000005 , 0x00000005 
- 00019148  0x000027ce ifetch  0x00000001 , 0x00000003 
- 00019149  0x000027cf iforce  0x00000039 
- 00019150  0x000027d0 call  0x00004a6d 
- 00019151  0x000027d2 ifetch  0x00000001 , 0x00000003 
- 00019152  0x000027d3 istore  0x00000001 , 0x00000005 
- 00019153  0x000027d4 call  0x00004a6d 
- 00019154  0x000027d5 loop  0x00004acf 
- 00019155  0x000027d6 ifetch  0x00000001 , 0x00000003 
- 00019156  0x000027d7 call  0x00004a6d 
- 00019157  0x000027d8 fetch  0x00000001 , 0x000002bc 
- 00019158  0x000027d9 bne  0x000000ff , 0x00004a79 
- 00019159  0x000027da branch  0x00004a73 
- 00019160  0x000027df call  0x00004a6d 
- 00019161  0x000027e0 ifetch  0x00000001 , 0x00000003 
- 00019162  0x000027e1 call  0x00004a6d 
- 00019163  0x000027e2 fetch  0x00000001 , 0x000002bc 
- 00019164  0x000027e3 bne  0x000000ff , 0x00004a79 
- 00019165  0x000027e4 hjam  0x00000080 , 0x00008023 
- 00019166  0x000027e5 branch  0x00004a73 
- 00019167  0x000027e8 call  0x00004a6d 
- 00019168  0x000027e9 ifetch  0x00000001 , 0x00000003 
- 00019169  0x000027ea call  0x00004a6d 
- 00019170  0x000027eb fetch  0x00000001 , 0x000002bc 
- 00019171  0x000027ec bne  0x000000ff , 0x00004a79 
- 00019172  0x000027ed hjam  0x00000000 , 0x00008023 
- 00019173  0x000027ee branch  0x00004a73 
- 00019174  0x000027f1 call  0x00004a6d 
- 00019175  0x000027f2 ifetch  0x00000001 , 0x00000003 
- 00019176  0x000027f3 call  0x00004a6d 
- 00019177  0x000027f4 fetch  0x00000001 , 0x000002bc 
- 00019178  0x000027f5 bne  0x000000ff , 0x00004a79 
- 00019179  0x000027f6 call  0x00004a73 
- 00019180  0x000027f7 branch  0x00003001 
- 00019181  0x000027fb call  0x00006a8b 
- 00019182  0x000027fc rtn  0x00000001 
- 00019183  0x000027fd arg  0x00000007 , 0x00000002 
- 00019184  0x000027fe call  0x000069e5 
- 00019185  0x000027ff nbranch  0x00004af4 , 0x00000001 
- 00019186  0x00002800 jam  0x00000001 , 0x000042ae 
- 00019187  0x00002801 rtn 
- 00019188  0x00002803 fetch  0x00000001 , 0x000042ae 
- 00019189  0x00002804 rtnne  0x00000001 
- 00019190  0x00002805 call  0x00004599 
- 00019191  0x00002806 branch  0x0000495f 
- 00019192  0x00002815 set1  0x00000025 , 0x00000000 
- 00019193  0x00002816 bpatch  0x0000009c , 0x00004033 
- 00019194  0x00002817 fetch  0x00000002 , 0x000002cb 
- 00019195  0x00002818 copy  0x0000003f , 0x00000006 
- 00019196  0x00002819 ifetch  0x00000001 , 0x00000006 
- 00019197  0x0000281a and  0x0000003f , 0x0000000f , 0x00000002 
- 00019198  0x0000281b rshift4  0x0000003f , 0x0000003f 
- 00019199  0x0000281c beq  0x00000009 , 0x00004b18 
- 00019200  0x0000281d beq  0x00000007 , 0x00004b18 
- 00019201  0x0000281e beq  0x0000000a , 0x00004b24 
- 00019202  0x0000281f beq  0x00000005 , 0x00004b11 
- 00019203  0x00002820 beq  0x00000001 , 0x00004b05 
- 00019204  0x00002821 rtn 
- 00019205  0x00002824 copy  0x00000002 , 0x0000003f 
- 00019206  0x00002825 beq  0x00000005 , 0x00004b09 
- 00019207  0x00002826 beq  0x00000003 , 0x00004b10 
- 00019208  0x00002827 rtn 
- 00019209  0x0000282a jam  0x00000027 , 0x00000b7d 
- 00019210  0x0000282b call  0x00007c27 
- 00019211  0x0000282c fetch  0x00000001 , 0x00004132 
- 00019212  0x0000282d rtnne  0x00000006 , 0x0000003f 
- 00019213  0x0000282e copy  0x00000002 , 0x0000003f 
- 00019214  0x0000282f beq  0x00000005 , 0x00006946 
- 00019215  0x00002830 rtn 
- 00019216  0x00002832 rtn 
- 00019217  0x00002835 arg  0x00000001 , 0x00000011 
- 00019218  0x00002836 call  0x00004b2c 
- 00019219  0x00002837 fetch  0x00000002 , 0x000042b5 
- 00019220  0x00002838 istore  0x00000002 , 0x00000005 
- 00019221  0x00002839 setarg  0x00000000 
- 00019222  0x0000283a istore  0x00000001 , 0x00000005 
- 00019223  0x0000283b rtn 
- 00019224  0x0000283e arg  0x00000001 , 0x00000011 
- 00019225  0x0000283f call  0x00004b2c 
- 00019226  0x00002840 fetch  0x00000002 , 0x000042b5 
- 00019227  0x00002841 istore  0x00000002 , 0x00000005 
- 00019228  0x00002842 setarg  0x00000000 
- 00019229  0x00002843 istore  0x00000001 , 0x00000005 
- 00019230  0x00002844 jam  0x00000001 , 0x000008a8 
- 00019231  0x00002845 fetch  0x00000001 , 0x000042bb 
- 00019232  0x00002846 set1  0x00000006 
- 00019233  0x00002847 store  0x00000001 , 0x000042bb 
- 00019234  0x00002849 jam  0x00000012 , 0x00000b7d 
- 00019235  0x0000284a branch  0x00007c27 
- 00019236  0x0000284d ifetch  0x00000001 , 0x00000006 
- 00019237  0x0000284e beq  0x00000001 , 0x00004b27 
- 00019238  0x0000284f rtn 
- 00019239  0x00002852 copy  0x00000006 , 0x00000011 
- 00019240  0x00002853 fetch  0x00000001 , 0x00004132 
- 00019241  0x00002854 rtnne  0x00000003 , 0x0000003f 
- 00019242  0x00002855 copy  0x00000011 , 0x00000006 
- 00019243  0x00002856 branch  0x00004c4a 
- 00019244  0x00002859 call  0x00005248 
- 00019245  0x0000285a copy  0x00000011 , 0x00000002 
- 00019246  0x0000285b storet  0x00000001 , 0x000008a8 
- 00019247  0x0000285c copy  0x0000003f , 0x00000005 
- 00019248  0x0000285d copy  0x00000011 , 0x0000003f 
- 00019249  0x0000285e istore  0x00000002 , 0x00000005 
- 00019250  0x0000285f rtn 
- 00019251  0x00002863 setarg  0x00004b5b 
- 00019252  0x00002864 store  0x00000002 , 0x0000428c 
- 00019253  0x00002865 setarg  0x00004b44 
- 00019254  0x00002866 store  0x00000002 , 0x00004296 
- 00019255  0x00002867 call  0x0000691d 
- 00019256  0x00002868 call  0x00005347 
- 00019257  0x00002869 hjam  0x0000009e , 0x000080a2 
- 00019258  0x0000286a hjam  0x00000008 , 0x00008081 
- 00019259  0x0000286b hjam  0x00000005 , 0x00008075 
- 00019260  0x0000286c setarg  0xffffffff 
- 00019261  0x0000286d set0  0x00000001 , 0x0000003f 
- 00019262  0x0000286e set0  0x00000015 , 0x0000003f 
- 00019263  0x0000286f hstore  0x00000004 , 0x00008070 
- 00019264  0x00002870 hjam  0x00000002 , 0x00008078 
- 00019265  0x00002871 rtn  0x0000002b 
- 00019266  0x00002872 jam  0x00000001 , 0x000043d8 
- 00019267  0x00002873 rtn 
- 00019268  0x00002877 ifetch  0x00000001 , 0x00000011 
- 00019269  0x00002878 store  0x00000001 , 0x00004803 
- 00019270  0x00002879 beq  0x00000003 , 0x00004b4f 
- 00019271  0x0000287a beq  0x00000004 , 0x00004b51 
- 00019272  0x0000287b beq  0x00000005 , 0x00004b53 
- 00019273  0x0000287c beq  0x00000014 , 0x00004b64 
- 00019274  0x0000287d beq  0x00000015 , 0x00004b67 
- 00019275  0x0000287e rtnne  0x00000002 
- 00019276  0x0000287f ifetch  0x00000001 , 0x00000006 
- 00019277  0x00002880 store  0x00000001 , 0x00004804 
- 00019278  0x00002881 rtn 
- 00019279  0x00002884 arg  0x00004807 , 0x00000005 
- 00019280  0x00002885 branch  0x00004b55 
- 00019281  0x00002888 arg  0x00004825 , 0x00000005 
- 00019282  0x00002889 branch  0x00004b55 
- 00019283  0x0000288c fetch  0x00000002 , 0x00004800 
- 00019284  0x0000288d iforce  0x00000005 
- 00019285  0x00002890 arg  0x00000013 , 0x00000039 
- 00019286  0x00002891 call  0x00007e45 
- 00019287  0x00002892 deposit  0x00000005 
- 00019288  0x00002893 store  0x00000002 , 0x00004800 
- 00019289  0x00002894 jam  0x00000000 , 0x00004803 
- 00019290  0x00002895 rtn 
- 00019291  0x0000289a fetch  0x00000001 , 0x00004803 
- 00019292  0x0000289b beq  0x00000001 , 0x00004b71 
- 00019293  0x0000289c beq  0x00000002 , 0x00004b8d 
- 00019294  0x0000289d beq  0x0000000a , 0x00004b7a 
- 00019295  0x0000289e beq  0x0000000b , 0x00004b7a 
- 00019296  0x0000289f beq  0x0000000c , 0x00004b7a 
- 00019297  0x000028a0 beq  0x00000008 , 0x00004b8d 
- 00019298  0x000028a1 beq  0x00000009 , 0x00004b6a 
- 00019299  0x000028a2 rtn 
- 00019300  0x000028a5 jam  0x00000000 , 0x00004213 
- 00019301  0x000028a6 jam  0x00000000 , 0x00004803 
- 00019302  0x000028a7 rtn 
- 00019303  0x000028a9 jam  0x0000001e , 0x00004213 
- 00019304  0x000028aa jam  0x00000000 , 0x00004803 
- 00019305  0x000028ab rtn 
- 00019306  0x000028b0 jam  0x00000000 , 0x00004803 
- 00019307  0x000028b1 arg  0x000fffff , 0x0000001b 
- 00019308  0x000028b2 call  0x00004b91 
- 00019309  0x000028b3 rtn 
- 00019310  0x000028b6 fetcht  0x00000002 , 0x000003c2 
- 00019311  0x000028b7 iadd  0x00000002 , 0x0000003f 
- 00019312  0x000028b8 store  0x00000004 , 0x000003c4 
- 00019313  0x000028ba fetch  0x00000004 , 0x000003c4 
- 00019314  0x000028bb isub  0x00000028 , 0x0000003f 
- 00019315  0x000028bc nbranch  0x00004b6e , 0x00000002 
- 00019316  0x000028bd rshift  0x0000003f , 0x0000001b 
- 00019317  0x000028be call  0x00004b91 
- 00019318  0x000028bf rtn  0x00000034 
- 00019319  0x000028c0 jam  0x0000000c , 0x00004803 
- 00019320  0x000028c1 arg  0x00001800 , 0x00000002 
- 00019321  0x000028c2 storet  0x00000002 , 0x00004800 
- 00019322  0x000028c5 call  0x0000561c 
- 00019323  0x000028c6 nrtn  0x00000034 
- 00019324  0x000028c7 jam  0x00000014 , 0x000044c2 
- 00019325  0x000028c8 jam  0x0000001b , 0x00000b7d 
- 00019326  0x000028c9 call  0x00005620 
- 00019327  0x000028ca fetch  0x00000002 , 0x00000419 
- 00019328  0x000028cb iforce  0x00000005 
- 00019329  0x000028cc fetch  0x00000002 , 0x00004800 
- 00019330  0x000028cd iforce  0x00000006 
- 00019331  0x000028ce arg  0x00000014 , 0x00000039 
- 00019332  0x000028cf call  0x00007e45 
- 00019333  0x000028d0 deposit  0x00000006 
- 00019334  0x000028d1 store  0x00000002 , 0x00004800 
- 00019335  0x000028d2 fetch  0x00000002 , 0x00004805 
- 00019336  0x000028d3 increase  0xffffffec , 0x0000003f 
- 00019337  0x000028d4 store  0x00000002 , 0x00004805 
- 00019338  0x000028d5 rtn  0x00000002 
- 00019339  0x000028d6 jam  0x00000000 , 0x00004803 
- 00019340  0x000028d7 rtn 
- 00019341  0x000028db fetch  0x00000001 , 0x00004804 
- 00019342  0x000028dc call  0x00004be2 
- 00019343  0x000028dd jam  0x00000000 , 0x00004803 
- 00019344  0x000028de rtn 
- 00019345  0x000028e2 call  0x00004b97 
- 00019346  0x000028e3 setarg  0x00001800 
- 00019347  0x000028e4 isub  0x00000005 , 0x0000003f 
- 00019348  0x000028e5 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00019349  0x000028e6 store  0x00000002 , 0x00004805 
- 00019350  0x000028e7 rtn 
- 00019351  0x000028ec disable  0x00000010 
- 00019352  0x000028ed arg  0x00001800 , 0x00000005 
- 00019353  0x000028ef rtn  0x00000003 
- 00019354  0x000028f0 hfetch  0x00000001 , 0x0000811e 
- 00019355  0x000028f1 bbit0  0x00000005 , 0x00004b99 
- 00019356  0x000028f2 copy  0x00000019 , 0x00000002 
- 00019357  0x000028f3 arg  0x00000080 , 0x00000039 
- 00019358  0x000028f4 call  0x00007e3b 
- 00019359  0x000028f5 arg  0x00001800 , 0x00000005 
- 00019360  0x000028f6 arg  0x00000000 , 0x00000013 
- 00019361  0x000028f8 arg  0x000000b4 , 0x0000001b 
- 00019362  0x000028fa rtn  0x00000003 
- 00019363  0x000028fb hfetch  0x00000001 , 0x0000811e 
- 00019364  0x000028fc ixor  0x00000013 , 0x0000003f 
- 00019365  0x000028fd bbit1  0x00000005 , 0x00004ba2 
- 00019366  0x000028fe copy  0x00000019 , 0x0000003f 
- 00019367  0x000028ff iforce  0x00000030 
- 00019368  0x00002900 call  0x00007e78 
- 00019369  0x00002901 sub  0x0000003f , 0x000000ff , 0x0000003e 
- 00019370  0x00002902 branch  0x00004ba2 , 0x00000002 
- 00019371  0x00002903 isolate0  0x00000005 , 0x00000013 
- 00019372  0x00002904 setflag  0x00000001 , 0x00000017 , 0x0000003f 
- 00019373  0x00002905 istore  0x00000003 , 0x00000005 
- 00019374  0x00002906 rshift8  0x00000005 , 0x0000003f 
- 00019375  0x00002907 rtneq  0x0000001c 
- 00019376  0x00002908 copy  0x00000030 , 0x00000002 
- 00019377  0x00002909 xor_into  0x00000020 , 0x00000013 
- 00019378  0x0000290a branch  0x00004ba1 
- 00019379  0x0000290f branch  0x00004bc7 , 0x00000028 
- 00019380  0x00002910 branch  0x00004bca , 0x0000002c 
- 00019381  0x00002912 arg  0x00004826 , 0x00000002 
- 00019382  0x00002913 fetch  0x00000001 , 0x00004825 
- 00019383  0x00002914 iadd  0x00000002 , 0x0000003f 
- 00019384  0x00002915 isub  0x00000011 , 0x0000003e 
- 00019385  0x00002916 branch  0x00004bda , 0x00000005 
- 00019386  0x00002917 ifetch  0x00000001 , 0x00000011 
- 00019387  0x00002918 copy  0x00000006 , 0x00000011 
- 00019388  0x00002919 bbit0  0x00000007 , 0x00004bc1 
- 00019389  0x0000291a enable  0x0000002c 
- 00019390  0x0000291b and  0x0000003f , 0x0000007f , 0x00000012 
- 00019391  0x0000291c lshift3  0x00000011 , 0x00000011 
- 00019392  0x0000291d branch  0x00004bca 
- 00019393  0x0000291f rshift4  0x0000003f , 0x00000008 
- 00019394  0x00002920 and_into  0x0000000f , 0x0000003f 
- 00019395  0x00002921 isub  0x00000008 , 0x0000003e 
- 00019396  0x00002922 rtn  0x00000005 
- 00019397  0x00002923 enable  0x00000028 
- 00019398  0x00002924 rtn 
- 00019399  0x00002926 deposit  0x00000008 
- 00019400  0x00002927 disable  0x00000028 
- 00019401  0x00002928 rtn 
- 00019402  0x0000292a deposit  0x00000012 
- 00019403  0x0000292b branch  0x00004bd6 , 0x00000034 
- 00019404  0x0000292c and  0x00000011 , 0x00000007 , 0x00000007 
- 00019405  0x0000292d rshift3  0x00000011 , 0x00000006 
- 00019406  0x0000292e ifetch  0x00000001 , 0x00000006 
- 00019407  0x0000292f increase  0x00000001 , 0x00000011 
- 00019408  0x00002930 increase  0xffffffff , 0x00000012 
- 00019409  0x00002931 qisolate0  0x0000003f 
- 00019410  0x00002932 fetch  0x00000001 , 0x00004807 
- 00019411  0x00002933 branch  0x00004bc1 , 0x00000001 
- 00019412  0x00002934 fetch  0x00000001 , 0x00004808 
- 00019413  0x00002935 branch  0x00004bc1 
- 00019414  0x00002937 disable  0x0000002c 
- 00019415  0x00002938 increase  0x00000007 , 0x00000011 
- 00019416  0x00002939 rshift3  0x00000011 , 0x00000011 
- 00019417  0x0000293a branch  0x00004bb5 
- 00019418  0x0000293c setarg  0x000000ff 
- 00019419  0x0000293d rtn 
- 00019420  0x00002941 lshift  0x0000003f , 0x00000006 
- 00019421  0x00002942 iadd  0x00000006 , 0x0000003f 
- 00019422  0x00002943 arg  0x00004809 , 0x00000006 
- 00019423  0x00002944 iadd  0x00000006 , 0x00000006 
- 00019424  0x00002945 ifetch  0x00000003 , 0x00000006 
- 00019425  0x00002946 rtn 
- 00019426  0x0000294a enable  0x00000010 
- 00019427  0x0000294b iforce  0x00000039 
- 00019428  0x0000294d disable  0x00000028 
- 00019429  0x0000294e disable  0x0000002c 
- 00019430  0x0000294f arg  0x00004826 , 0x00000011 
- 00019431  0x00002951 call  0x00004bb3 
- 00019432  0x00002952 beq  0x000000ff , 0x00004bf1 
- 00019433  0x00002953 call  0x00004bdc 
- 00019434  0x00002954 bbit0  0x00000017 , 0x00004bed 
- 00019435  0x00002955 set0  0x00000017 , 0x0000003f 
- 00019436  0x00002956 hjam  0x0000009e , 0x000080a0 
- 00019437  0x00002958 iforce  0x0000001b 
- 00019438  0x00002959 until  0x0000003e , 0x00000003 
- 00019439  0x0000295a hjam  0x00000000 , 0x000080a0 
- 00019440  0x0000295b branch  0x00004be7 
- 00019441  0x0000295d loop  0x00004be4 
- 00019442  0x0000295e rtn 
- 00019443  0x00002965 call  0x00004c21 
- 00019444  0x00002966 setarg  0x00004d21 
- 00019445  0x00002967 store  0x00000002 , 0x00004290 
- 00019446  0x00002968 setarg  0x00004c59 
- 00019447  0x00002969 store  0x00000002 , 0x0000428e 
- 00019448  0x0000296a setarg  0x00004d37 
- 00019449  0x0000296b store  0x00000002 , 0x00004292 
- 00019450  0x0000296c setarg  0x00004d7e 
- 00019451  0x0000296d store  0x00000002 , 0x0000428a 
- 00019452  0x0000296e setarg  0x00004d7b 
- 00019453  0x0000296f store  0x00000002 , 0x00004294 
- 00019454  0x00002970 setarg  0x00004d7e 
- 00019455  0x00002971 store  0x00000002 , 0x00004288 
- 00019456  0x00002972 setarg  0x00004d22 
- 00019457  0x00002973 store  0x00000002 , 0x00004286 
- 00019458  0x00002974 rtn  0x0000002b 
- 00019459  0x00002976 fetch  0x00000002 , 0x000047f4 
- 00019460  0x00002977 bbit1  0x0000000c , 0x00003f79 
- 00019461  0x00002978 call  0x00003f23 
- 00019462  0x00002979 branch  0x00004d79 , 0x00000034 
- 00019463  0x0000297a call  0x00003f7e 
- 00019464  0x0000297b branch  0x00003f6e 
- 00019465  0x0000297f call  0x00004c21 
- 00019466  0x00002980 setarg  0x00004d21 
- 00019467  0x00002981 store  0x00000002 , 0x00004290 
- 00019468  0x00002982 setarg  0x00004c59 
- 00019469  0x00002983 store  0x00000002 , 0x0000428e 
- 00019470  0x00002984 setarg  0x00004d37 
- 00019471  0x00002985 store  0x00000002 , 0x00004292 
- 00019472  0x00002986 setarg  0x00004d7e 
- 00019473  0x00002987 store  0x00000002 , 0x0000428a 
- 00019474  0x00002988 setarg  0x00004d7b 
- 00019475  0x00002989 store  0x00000002 , 0x00004294 
- 00019476  0x0000298a setarg  0x00004d7e 
- 00019477  0x0000298b store  0x00000002 , 0x00004288 
- 00019478  0x0000298c setarg  0x00004d22 
- 00019479  0x0000298d store  0x00000002 , 0x00004286 
- 00019480  0x0000298e rtn  0x0000002b 
- 00019481  0x00002990 jam  0x00000000 , 0x000007dc 
- 00019482  0x00002991 jam  0x00000000 , 0x000007dd 
- 00019483  0x00002993 fetch  0x00000002 , 0x000047f4 
- 00019484  0x00002994 bbit1  0x0000000c , 0x00003f79 
- 00019485  0x00002995 call  0x00003f23 
- 00019486  0x00002996 branch  0x00004d79 , 0x00000034 
- 00019487  0x00002997 call  0x00003f7e 
- 00019488  0x00002998 branch  0x00003f6e 
- 00019489  0x0000299d set1  0x00000025 , 0x00000000 
- 00019490  0x0000299e bpatch  0x000000b6 , 0x00004036 
- 00019491  0x000029a0 fetch  0x00000001 , 0x00008140 
- 00019492  0x000029a1 branch  0x00003bf1 , 0x00000034 
- 00019493  0x000029a2 hjam  0x00000000 , 0x00008070 
- 00019494  0x000029a3 hjam  0x000000ff , 0x00008078 
- 00019495  0x000029a5 hjam  0x000000ff , 0x00008071 
- 00019496  0x000029a6 hjam  0x000000ff , 0x00008072 
- 00019497  0x000029a7 hfetch  0x00000001 , 0x00008073 
- 00019498  0x000029a8 or_into  0x0000000f , 0x0000003f 
- 00019499  0x000029a9 hstore  0x00000001 , 0x00008073 
- 00019500  0x000029ab hjam  0x00000000 , 0x00008080 
- 00019501  0x000029ac hjam  0x00000000 , 0x00008081 
- 00019502  0x000029ad hjam  0x000000ff , 0x00008083 
- 00019503  0x000029ae hjam  0x000000ff , 0x00008084 
- 00019504  0x000029af hfetch  0x00000001 , 0x00008085 
- 00019505  0x000029b0 or_into  0x00000003 , 0x0000003f 
- 00019506  0x000029b1 hstore  0x00000001 , 0x00008085 
- 00019507  0x000029b2 hjam  0x00000000 , 0x0000806f 
- 00019508  0x000029b3 setarg  0x00000013 
- 00019509  0x000029b4 lshift3  0x0000003f , 0x0000003f 
- 00019510  0x000029b5 add  0x0000003f , 0x00000007 , 0x0000003f 
- 00019511  0x000029b6 hstore  0x00000001 , 0x00008064 
- 00019512  0x000029b8 hfetch  0x00000001 , 0x00008043 
- 00019513  0x000029b9 set1  0x00000002 , 0x0000003f 
- 00019514  0x000029ba hstore  0x00000001 , 0x00008043 
- 00019515  0x000029bb hfetch  0x00000001 , 0x00008051 
- 00019516  0x000029bc set0  0x00000001 , 0x0000003f 
- 00019517  0x000029bd hstore  0x00000001 , 0x00008051 
- 00019518  0x000029be hjam  0x0000000d , 0x00008063 
- 00019519  0x000029bf hjam  0x000000d3 , 0x00008067 
- 00019520  0x000029c0 hjam  0x00000000 , 0x00008065 
- 00019521  0x000029c1 hjam  0x00000031 , 0x00008066 
- 00019522  0x000029c2 call  0x00003e0b 
- 00019523  0x000029c3 fetcht  0x00000001 , 0x0000480e 
- 00019524  0x000029c4 call  0x000069da 
- 00019525  0x000029c5 fetcht  0x00000001 , 0x0000480f 
- 00019526  0x000029c6 call  0x000069da 
- 00019527  0x000029c7 fetcht  0x00000001 , 0x00004810 
- 00019528  0x000029c8 call  0x000069da 
- 00019529  0x000029c9 rtn 
- 00019530  0x000029cc set1  0x00000025 , 0x00000000 
- 00019531  0x000029cd bpatch  0x000000b7 , 0x00004036 
- 00019532  0x000029ce ifetch  0x00000001 , 0x00000006 
- 00019533  0x000029cf copy  0x0000003f , 0x00000011 
- 00019534  0x000029d0 fetcht  0x00000001 , 0x0000480f 
- 00019535  0x000029d1 isolate1  0x00000000 , 0x00000011 
- 00019536  0x000029d2 call  0x000069f0 
- 00019537  0x000029d3 fetcht  0x00000001 , 0x0000480e 
- 00019538  0x000029d4 isolate1  0x00000001 , 0x00000011 
- 00019539  0x000029d5 call  0x000069f0 
- 00019540  0x000029d6 fetcht  0x00000001 , 0x00004810 
- 00019541  0x000029d7 isolate1  0x00000002 , 0x00000011 
- 00019542  0x000029d8 call  0x000069f0 
- 00019543  0x000029d9 jam  0x00000001 , 0x00004809 
- 00019544  0x000029da rtn 
- 00019545  0x000029df call  0x00004c99 
- 00019546  0x000029e0 nrtn  0x00000028 
- 00019547  0x000029e1 nrtn  0x0000002c 
- 00019548  0x000029e3 fetch  0x00000001 , 0x00000450 
- 00019549  0x000029e4 beq  0x00000001 , 0x00004c69 
- 00019550  0x000029e5 fetch  0x00000001 , 0x000042bc 
- 00019551  0x000029e6 rtnne  0x0000003f 
- 00019552  0x000029e8 arg  0x0000000a , 0x00000011 
- 00019553  0x000029e9 call  0x00004b2c 
- 00019554  0x000029ea fetch  0x00000002 , 0x000042b7 
- 00019555  0x000029eb istore  0x00000002 , 0x00000005 
- 00019556  0x000029ec setarg  0x000001a1 
- 00019557  0x000029ed istore  0x00000002 , 0x00000005 
- 00019558  0x000029ee fetch  0x00000008 , 0x00004800 
- 00019559  0x000029ef istore  0x00000008 , 0x00000005 
- 00019560  0x000029f0 rtn 
- 00019561  0x000029f3 fetcht  0x00000001 , 0x0000054f 
- 00019562  0x000029f4 setarg  0x00000550 
- 00019563  0x000029f5 iadd  0x00000002 , 0x00000005 
- 00019564  0x000029f6 fetch  0x00000001 , 0x00004802 
- 00019565  0x000029f7 branch  0x00004c72 , 0x00000034 
- 00019566  0x000029f8 beq  0x0000002a , 0x00004c74 
- 00019567  0x000029f9 bne  0x00000028 , 0x00004c7e 
- 00019568  0x000029fa storet  0x00000001 , 0x0000054f 
- 00019569  0x000029fb branch  0x00003f6a 
- 00019570  0x000029fe storet  0x00000001 , 0x0000054f 
- 00019571  0x000029ff rtn 
- 00019572  0x00002a01 fetch  0x00000001 , 0x0000054f 
- 00019573  0x00002a02 rtn  0x00000034 
- 00019574  0x00002a03 increase  0xffffffff , 0x0000003f 
- 00019575  0x00002a04 store  0x00000001 , 0x0000054f 
- 00019576  0x00002a05 arg  0x00000550 , 0x00000005 
- 00019577  0x00002a06 iadd  0x00000005 , 0x00000005 
- 00019578  0x00002a07 setarg  0x00000000 
- 00019579  0x00002a08 istore  0x00000001 , 0x00000005 
- 00019580  0x00002a09 enable  0x0000002c 
- 00019581  0x00002a0a branch  0x00004c8d 
- 00019582  0x00002a0c sub  0x0000003f , 0x0000001d , 0x0000003e 
- 00019583  0x00002a0d rtn  0x00000002 
- 00019584  0x00002a0e arg  0x00000030 , 0x00000002 
- 00019585  0x00002a0f sub  0x0000003f , 0x00000027 , 0x0000003e 
- 00019586  0x00002a10 nrtn  0x00000002 
- 00019587  0x00002a11 branch  0x00004c87 , 0x00000005 
- 00019588  0x00002a12 arg  0x0000001d , 0x00000002 
- 00019589  0x00002a13 isub  0x00000002 , 0x00000002 
- 00019590  0x00002a14 or_into  0x00000030 , 0x00000002 
- 00019591  0x00002a16 istoret  0x00000001 , 0x00000005 
- 00019592  0x00002a17 fetch  0x00000001 , 0x0000054f 
- 00019593  0x00002a18 increase  0x00000001 , 0x0000003f 
- 00019594  0x00002a19 store  0x00000001 , 0x0000054f 
- 00019595  0x00002a1a disable  0x0000002c 
- 00019596  0x00002a1b branch  0x00004c8d 
- 00019597  0x00002a1e fetch  0x00000002 , 0x000042b7 
- 00019598  0x00002a1f rtn  0x00000034 
- 00019599  0x00002a20 arg  0x00000003 , 0x00000011 
- 00019600  0x00002a21 call  0x00004b2c 
- 00019601  0x00002a22 fetch  0x00000002 , 0x000042b7 
- 00019602  0x00002a23 istore  0x00000002 , 0x00000005 
- 00019603  0x00002a24 setarg  0x0000ffa1 
- 00019604  0x00002a25 istore  0x00000002 , 0x00000005 
- 00019605  0x00002a26 setarg  0x00000000 
- 00019606  0x00002a27 setflag  0x0000002c , 0x00000000 , 0x0000003f 
- 00019607  0x00002a28 istore  0x00000001 , 0x00000005 
- 00019608  0x00002a29 rtn 
- 00019609  0x00002a2e disable  0x00000028 
- 00019610  0x00002a2f disable  0x0000002c 
- 00019611  0x00002a30 hfetch  0x00000001 , 0x00008119 
- 00019612  0x00002a31 rtnbit1  0x00000000 
- 00019613  0x00002a34 hfetch  0x00000001 , 0x0000811b 
- 00019614  0x00002a35 bbit1  0x00000000 , 0x00004ca3 
- 00019615  0x00002a36 hfetch  0x00000001 , 0x00008119 
- 00019616  0x00002a37 bbit0  0x00000006 , 0x00004ca3 
- 00019617  0x00002a38 hfetch  0x00000001 , 0x0000811a 
- 00019618  0x00002a39 branch  0x00004c99 
- 00019619  0x00002a3c enable  0x00000028 
- 00019620  0x00002a3d enable  0x0000002c 
- 00019621  0x00002a3e hfetch  0x00000001 , 0x0000811b 
- 00019622  0x00002a3f isolate0  0x00000000 , 0x0000003f 
- 00019623  0x00002a40 hfetch  0x00000001 , 0x0000811a 
- 00019624  0x00002a41 arg  0x00004811 , 0x00000006 
- 00019625  0x00002a42 iadd  0x00000006 , 0x00000006 
- 00019626  0x00002a43 ifetch  0x00000001 , 0x00000006 
- 00019627  0x00002a44 bbit1  0x00000007 , 0x00004ce4 
- 00019628  0x00002a45 nbranch  0x00004ccc , 0x00000001 
- 00019629  0x00002a46 disable  0x0000002c 
- 00019630  0x00002a47 iforce  0x00000002 
- 00019631  0x00002a48 fetch  0x00000001 , 0x00004808 
- 00019632  0x00002a49 sub  0x0000003f , 0x00000004 , 0x0000003e 
- 00019633  0x00002a4a nrtn  0x00000002 
- 00019634  0x00002a4b copy  0x0000003f , 0x00000011 
- 00019635  0x00002a4c arg  0x00000003 , 0x00000039 
- 00019636  0x00002a4d arg  0x00004802 , 0x00000006 
- 00019637  0x00002a4f ifetch  0x00000001 , 0x00000006 
- 00019638  0x00002a50 isub  0x00000002 , 0x0000003e 
- 00019639  0x00002a51 branch  0x00004c99 , 0x00000005 
- 00019640  0x00002a52 loop  0x00004cb5 
- 00019641  0x00002a54 copy  0x00000011 , 0x0000003f 
- 00019642  0x00002a55 arg  0x00004802 , 0x00000005 
- 00019643  0x00002a56 iadd  0x00000005 , 0x00000005 
- 00019644  0x00002a57 istoret  0x00000001 , 0x00000005 
- 00019645  0x00002a58 increase  0x00000001 , 0x0000003f 
- 00019646  0x00002a59 store  0x00000001 , 0x00004808 
- 00019647  0x00002a5a hfetch  0x00000001 , 0x0000811b 
- 00019648  0x00002a5b rshift3  0x0000003f , 0x0000003f 
- 00019649  0x00002a5c nbranch  0x00004cc3 , 0x00000034 
- 00019650  0x00002a5d branch  0x00004cca 
- 00019651  0x00002a60 increase  0xffffffff , 0x0000003f 
- 00019652  0x00002a61 branch  0x00004cca , 0x00000005 
- 00019653  0x00002a62 hfetch  0x00000001 , 0x0000811b 
- 00019654  0x00002a63 and_into  0x00000001 , 0x0000003f 
- 00019655  0x00002a64 beq  0x00000000 , 0x00004c99 
- 00019656  0x00002a65 beq  0x00000001 , 0x00004cca 
- 00019657  0x00002a66 rtn 
- 00019658  0x00002a68 enable  0x0000002c 
- 00019659  0x00002a69 rtn 
- 00019660  0x00002a6c and  0x0000003f , 0x000000ff , 0x00000002 
- 00019661  0x00002a6d fetch  0x00000001 , 0x00004808 
- 00019662  0x00002a6e rtn  0x00000034 
- 00019663  0x00002a6f iforce  0x00000039 
- 00019664  0x00002a70 arg  0x00004802 , 0x00000006 
- 00019665  0x00002a72 ifetch  0x00000001 , 0x00000006 
- 00019666  0x00002a73 isub  0x00000002 , 0x0000003e 
- 00019667  0x00002a74 branch  0x00004cd6 , 0x00000005 
- 00019668  0x00002a75 loop  0x00004cd1 
- 00019669  0x00002a76 rtn 
- 00019670  0x00002a78 add  0x00000006 , 0xffffffff , 0x00000005 
- 00019671  0x00002a79 call  0x00007e45 
- 00019672  0x00002a7a fetch  0x00000001 , 0x00004808 
- 00019673  0x00002a7b increase  0xffffffff , 0x0000003f 
- 00019674  0x00002a7c store  0x00000001 , 0x00004808 
- 00019675  0x00002a7d hfetch  0x00000001 , 0x0000811b 
- 00019676  0x00002a7e rshift3  0x0000003f , 0x0000003f 
- 00019677  0x00002a7f nbranch  0x00004cdf , 0x00000034 
- 00019678  0x00002a80 rtn 
- 00019679  0x00002a83 hfetch  0x00000001 , 0x0000811b 
- 00019680  0x00002a84 and_into  0x00000001 , 0x0000003f 
- 00019681  0x00002a85 beq  0x00000000 , 0x00004cca 
- 00019682  0x00002a86 beq  0x00000001 , 0x00004c99 
- 00019683  0x00002a87 rtn 
- 00019684  0x00002a8a and  0x0000003f , 0x00000007 , 0x00000007 
- 00019685  0x00002a8b fetch  0x00000001 , 0x00004800 
- 00019686  0x00002a8c qsetflag  0x00000001 , 0x0000003f 
- 00019687  0x00002a8d store  0x00000001 , 0x00004800 
- 00019688  0x00002a8e rtn 
- 00019689  0x00002a91 setarg  0x00000000 
- 00019690  0x00002a92 store  0x00000008 , 0x00004800 
- 00019691  0x00002a93 store  0x00000001 , 0x00004808 
- 00019692  0x00002a94 rtn 
- 00019693  0x00002a97 hfetch  0x00000001 , 0x0000811b 
- 00019694  0x00002a98 hfetch  0x00000001 , 0x0000811a 
- 00019695  0x00002a99 hfetch  0x00000001 , 0x00008119 
- 00019696  0x00002a9a bbit0  0x00000000 , 0x00004ced 
- 00019697  0x00002a9b setarg  0x000000ff 
- 00019698  0x00002a9c enable  0x00000028 
- 00019699  0x00002a9d rtn 
- 00019700  0x00002aa0 fetcht  0x00000002 , 0x000044c2 
- 00019701  0x00002aa1 call  0x00005866 
- 00019702  0x00002aa2 rtnbit0  0x00000000 
- 00019703  0x00002aa3 fetch  0x00000001 , 0x000046f8 
- 00019704  0x00002aa4 rtnbit0  0x00000000 
- 00019705  0x00002aa5 call  0x0000561c 
- 00019706  0x00002aa6 nrtn  0x00000034 
- 00019707  0x00002aa7 call  0x00004c99 
- 00019708  0x00002aa8 nrtn  0x00000028 
- 00019709  0x00002aa9 nrtn  0x0000002c 
- 00019710  0x00002aab call  0x00003f5e 
- 00019711  0x00002aac jam  0x00000002 , 0x00004213 
- 00019712  0x00002aad fetcht  0x00000002 , 0x000044c2 
- 00019713  0x00002aae call  0x00005a88 
- 00019714  0x00002aaf add  0x00000006 , 0x00000001 , 0x00000005 
- 00019715  0x00002ab0 fetch  0x00000008 , 0x00004800 
- 00019716  0x00002ab1 istore  0x00000008 , 0x00000005 
- 00019717  0x00002ab2 jam  0x0000001b , 0x00000b7d 
- 00019718  0x00002ab3 call  0x00005620 
- 00019719  0x00002ab4 fetch  0x00000001 , 0x000003e4 
- 00019720  0x00002ab5 bbit1  0x00000003 , 0x00003bf2 
- 00019721  0x00002ab6 rtn 
- 00019722  0x00002ab8 copy  0x00000013 , 0x0000003f 
- 00019723  0x00002ab9 beq  0x00000010 , 0x00004d15 
- 00019724  0x00002abb beq  0x00000014 , 0x00004d13 
- 00019725  0x00002abc beq  0x00000028 , 0x00004d11 
- 00019726  0x00002abd beq  0x00000029 , 0x00004d11 
- 00019727  0x00002abe beq  0x0000002e , 0x00003f57 
- 00019728  0x00002abf rtn 
- 00019729  0x00002ac2 call  0x00003fa4 
- 00019730  0x00002ac3 branch  0x00003f92 
- 00019731  0x00002ac5 call  0x00004ced 
- 00019732  0x00002ac6 branch  0x00004ce9 
- 00019733  0x00002ac9 call  0x00005b30 
- 00019734  0x00002aca call  0x00003f90 
- 00019735  0x00002acb call  0x00003f88 
- 00019736  0x00002acc branch  0x00003f94 
- 00019737  0x00002acf fetch  0x00000001 , 0x0000442e 
- 00019738  0x00002ad0 rtn  0x00000034 
- 00019739  0x00002ad1 increase  0xffffffff , 0x0000003f 
- 00019740  0x00002ad2 store  0x00000001 , 0x0000442e 
- 00019741  0x00002ad3 nrtn  0x00000034 
- 00019742  0x00002ad4 fetch  0x00000001 , 0x000044db 
- 00019743  0x00002ad5 rtn  0x00000034 
- 00019744  0x00002ad6 branch  0x00003f98 
- 00019745  0x00002ada branch  0x00004d2e 
- 00019746  0x00002ade hfetch  0x00000003 , 0x0000811c 
- 00019747  0x00002adf copy  0x0000003f , 0x00000012 
- 00019748  0x00002ae0 hfetch  0x00000001 , 0x0000811f 
- 00019749  0x00002ae1 and_into  0x0000000f , 0x0000003f 
- 00019750  0x00002ae2 lshift16  0x0000003f , 0x0000003f 
- 00019751  0x00002ae3 lshift8  0x0000003f , 0x0000003f 
- 00019752  0x00002ae4 ior  0x00000012 , 0x0000003f 
- 00019753  0x00002ae5 fetcht  0x00000004 , 0x0000480a 
- 00019754  0x00002ae6 isub  0x00000002 , 0x0000003f 
- 00019755  0x00002ae7 rtn  0x00000034 
- 00019756  0x00002ae8 arg  0x000000bb , 0x00000012 
- 00019757  0x00002ae9 branch  0x00003f5e 
- 00019758  0x00002aed fetch  0x00000001 , 0x00004133 
- 00019759  0x00002aee nrtn  0x00000034 
- 00019760  0x00002aef fetch  0x00000001 , 0x0000427f 
- 00019761  0x00002af0 nrtn  0x00000034 
- 00019762  0x00002af1 fetch  0x00000001 , 0x000047ea 
- 00019763  0x00002af2 rtn  0x00000034 
- 00019764  0x00002af3 fetch  0x00000001 , 0x000047eb 
- 00019765  0x00002af4 nrtn  0x00000034 
- 00019766  0x00002af5 branch  0x00003f9a 
- 00019767  0x00002af8 copy  0x00000013 , 0x0000003f 
- 00019768  0x00002af9 beq  0x00000006 , 0x00004d8b 
- 00019769  0x00002afa beq  0x0000000a , 0x00004d7c 
- 00019770  0x00002afb beq  0x00000006 , 0x00004d8f 
- 00019771  0x00002afc beq  0x00000010 , 0x00004d68 
- 00019772  0x00002afd beq  0x0000002e , 0x00003f57 
- 00019773  0x00002afe beq  0x00000001 , 0x00004d77 
- 00019774  0x00002aff beq  0x00000002 , 0x00004d51 
- 00019775  0x00002b01 beq  0x00000004 , 0x00004d4e 
- 00019776  0x00002b02 beq  0x00000013 , 0x00004d4e 
- 00019777  0x00002b03 and  0x0000003f , 0x0000000f , 0x00000002 
- 00019778  0x00002b04 and_into  0x000000f0 , 0x0000003f 
- 00019779  0x00002b05 beq  0x00000050 , 0x00004d45 
- 00019780  0x00002b06 rtn 
- 00019781  0x00002b09 set1  0x00000025 , 0x00000000 
- 00019782  0x00002b0a bpatch  0x000000b8 , 0x00004037 
- 00019783  0x00002b0b storet  0x00000001 , 0x00000259 
- 00019784  0x00002b0d fetch  0x00000001 , 0x00000259 
- 00019785  0x00002b0e rtn  0x00000034 
- 00019786  0x00002b0f increase  0xffffffff , 0x0000003f 
- 00019787  0x00002b10 store  0x00000001 , 0x00000259 
- 00019788  0x00002b12 call  0x00004d62 
- 00019789  0x00002b13 branch  0x00004d48 
- 00019790  0x00002b16 fetch  0x00000002 , 0x000047f4 
- 00019791  0x00002b17 bbit1  0x0000000c , 0x00004d79 
- 00019792  0x00002b18 branch  0x00003f10 
- 00019793  0x00002b1c set1  0x00000025 , 0x00000000 
- 00019794  0x00002b1d bpatch  0x000000b9 , 0x00004037 
- 00019795  0x00002b1e call  0x00004d59 
- 00019796  0x00002b1f fetch  0x00000002 , 0x000042a0 
- 00019797  0x00002b21 bbit1  0x00000000 , 0x00003f12 
- 00019798  0x00002b22 bbit1  0x00000001 , 0x00004d5c 
- 00019799  0x00002b23 bbit1  0x00000002 , 0x00004d5f 
- 00019800  0x00002b24 branch  0x00004d79 
- 00019801  0x00002b26 jam  0x00000000 , 0x0000425e 
- 00019802  0x00002b27 jam  0x00000000 , 0x0000448b 
- 00019803  0x00002b28 rtn 
- 00019804  0x00002b2b bbit1  0x00000005 , 0x00003f10 
- 00019805  0x00002b2c bbit1  0x00000003 , 0x00003f10 
- 00019806  0x00002b2d branch  0x00004d79 
- 00019807  0x00002b2f fetch  0x00000002 , 0x000047f4 
- 00019808  0x00002b30 bbit1  0x0000000c , 0x00004d79 
- 00019809  0x00002b31 branch  0x00003f10 
- 00019810  0x00002b36 fetch  0x00000001 , 0x000047f2 
- 00019811  0x00002b37 rtn  0x00000034 
- 00019812  0x00002b38 increase  0xffffffff , 0x0000003f 
- 00019813  0x00002b39 store  0x00000001 , 0x000047f2 
- 00019814  0x00002b3a nrtn  0x00000034 
- 00019815  0x00002b3b branch  0x00004d8f 
- 00019816  0x00002b3f call  0x00004d6a 
- 00019817  0x00002b40 branch  0x00004d79 
- 00019818  0x00002b43 set1  0x00000025 , 0x00000000 
- 00019819  0x00002b44 bpatch  0x000000ba , 0x00004037 
- 00019820  0x00002b45 fetch  0x00000002 , 0x000047f4 
- 00019821  0x00002b46 isolate1  0x00000007 , 0x0000003f 
- 00019822  0x00002b47 call  0x00003f75 , 0x00000001 
- 00019823  0x00002b48 fetch  0x00000002 , 0x000047fe 
- 00019824  0x00002b49 store  0x00000002 , 0x000047f0 
- 00019825  0x00002b4a fetch  0x00000002 , 0x000042a2 
- 00019826  0x00002b4b set1  0x00000000 , 0x0000003f 
- 00019827  0x00002b4c store  0x00000002 , 0x000042a2 
- 00019828  0x00002b4d fetch  0x00000002 , 0x000047f4 
- 00019829  0x00002b4e bbit1  0x00000000 , 0x00003f77 
- 00019830  0x00002b4f rtn 
- 00019831  0x00002b53 call  0x00003f7e 
- 00019832  0x00002b54 branch  0x00003f98 
- 00019833  0x00002b57 call  0x00003f7c 
- 00019834  0x00002b58 branch  0x00003f94 
- 00019835  0x00002b5b branch  0x00003f9a 
- 00019836  0x00002b5e jam  0x00000000 , 0x0000054f 
- 00019837  0x00002b5f rtn 
- 00019838  0x00002b65 hjam  0x00000000 , 0x00008083 
- 00019839  0x00002b66 hjam  0x00000000 , 0x00008084 
- 00019840  0x00002b67 hfetch  0x00000001 , 0x00008085 
- 00019841  0x00002b68 and_into  0x000000f0 , 0x0000003f 
- 00019842  0x00002b69 hstore  0x00000001 , 0x00008085 
- 00019843  0x00002b6a setarg  0x00000000 
- 00019844  0x00002b6b store  0x00000004 , 0x000000a7 
- 00019845  0x00002b6c setarg  0x000000ff 
- 00019846  0x00002b6d fetcht  0x00000001 , 0x000047fd 
- 00019847  0x00002b6e copy  0x00000002 , 0x00000007 
- 00019848  0x00002b6f qset1  0x0000003f 
- 00019849  0x00002b70 store  0x00000004 , 0x000000a3 
- 00019850  0x00002b71 rtn 
- 00019851  0x00002b74 setarg  0x00000002 
- 00019852  0x00002b75 store  0x00000001 , 0x000047f2 
- 00019853  0x00002b76 call  0x00004ced 
- 00019854  0x00002b7a branch  0x00004ce9 
- 00019855  0x00002b7c set1  0x00000025 , 0x00000000 
- 00019856  0x00002b7d bpatch  0x000000bb , 0x00004037 
- 00019857  0x00002b7e jam  0x00000001 , 0x0000427f 
- 00019858  0x00002b7f call  0x00003fa4 
- 00019859  0x00002b80 call  0x00003fa2 
- 00019860  0x00002b82 setarg  0x00000000 
- 00019861  0x00002b83 store  0x00000002 , 0x000047f0 
- 00019862  0x00002b84 store  0x00000001 , 0x000047f2 
- 00019863  0x00002b85 branch  0x00003f9e 
- 00019864  0x00002b8d branch  0x00004d9d , 0x0000002b 
- 00019865  0x00002b8f setarg  0x000043ce 
- 00019866  0x00002b90 arg  0x000042af , 0x00000005 
- 00019867  0x00002b91 isub  0x00000005 , 0x00000039 
- 00019868  0x00002b92 call  0x00007e3f 
- 00019869  0x00002b94 set1  0x00000025 , 0x00000000 
- 00019870  0x00002b95 bpatch  0x00000016 , 0x00004022 
- 00019871  0x00002b96 setarg  0x000004de 
- 00019872  0x00002b97 arg  0x000004a9 , 0x00000005 
- 00019873  0x00002b98 isub  0x00000005 , 0x00000039 
- 00019874  0x00002b99 call  0x00007e3f 
- 00019875  0x00002b9a setarg  0x00000330 
- 00019876  0x00002b9b arg  0x000002c4 , 0x00000005 
- 00019877  0x00002b9c isub  0x00000005 , 0x00000039 
- 00019878  0x00002b9d call  0x00007e3f 
- 00019879  0x00002b9e branch  0x0000532a 
- 00019880  0x00002ba1 set1  0x00000025 , 0x00000000 
- 00019881  0x00002ba2 bpatch  0x00000017 , 0x00004022 
- 00019882  0x00002ba3 copy  0x00000006 , 0x00000002 
- 00019883  0x00002ba6 copy  0x00000002 , 0x00000006 
- 00019884  0x00002ba7 ifetch  0x00000002 , 0x00000006 
- 00019885  0x00002ba8 store  0x00000002 , 0x000002cd 
- 00019886  0x00002ba9 ifetch  0x00000002 , 0x00000006 
- 00019887  0x00002baa store  0x00000002 , 0x000002cf 
- 00019888  0x00002bab deposit  0x00000006 
- 00019889  0x00002bac store  0x00000002 , 0x000002cb 
- 00019890  0x00002bad fetch  0x00000001 , 0x000047f3 
- 00019891  0x00002bae beq  0x00000000 , 0x00004db5 
- 00019892  0x00002baf branch  0x000050fa 
- 00019893  0x00002bb2 set1  0x00000025 , 0x00000000 
- 00019894  0x00002bb3 bpatch  0x00000018 , 0x00004023 
- 00019895  0x00002bb4 fetch  0x00000002 , 0x000002cd 
- 00019896  0x00002bb5 branch  0x00004dfc , 0x00000034 
- 00019897  0x00002bb6 fetch  0x00000001 , 0x000002cf 
- 00019898  0x00002bb7 beq  0x00000001 , 0x00004dc0 
- 00019899  0x00002bb9 beq  0x00000050 , 0x00004de7 
- 00019900  0x00002bba beq  0x00000051 , 0x00004df4 
- 00019901  0x00002bbb beq  0x00000052 , 0x00004df2 
- 00019902  0x00002bbc beq  0x00000053 , 0x00004df2 
- 00019903  0x00002bbd branch  0x00004dfc 
- 00019904  0x00002bc0 call  0x0000527a 
- 00019905  0x00002bc1 nrtn  0x00000034 
- 00019906  0x00002bc2 jam  0x00000000 , 0x000043cd 
- 00019907  0x00002bc4 call  0x000052c4 
- 00019908  0x00002bc5 call  0x00004e01 
- 00019909  0x00002bc6 fetcht  0x00000002 , 0x000002d6 
- 00019910  0x00002bc7 branch  0x00004dfb , 0x00000034 
- 00019911  0x00002bc8 call  0x000052ce 
- 00019912  0x00002bc9 fetch  0x00000002 , 0x000002d6 
- 00019913  0x00002bca istore  0x00000002 , 0x00000005 
- 00019914  0x00002bcb force  0x00000001 , 0x0000003f 
- 00019915  0x00002bcc istore  0x00000002 , 0x00000005 
- 00019916  0x00002bcd branch  0x00004dfc 
- 00019917  0x00002bd0 fetch  0x00000001 , 0x00004132 
- 00019918  0x00002bd1 rtneq  0x00000001 
- 00019919  0x00002bd2 fetch  0x00000001 , 0x000043cd 
- 00019920  0x00002bd3 rtn  0x00000034 
- 00019921  0x00002bd4 copy  0x0000003f , 0x00000011 
- 00019922  0x00002bd5 fetch  0x00000004 , 0x0000033c 
- 00019923  0x00002bd6 arg  0x00000100 , 0x00000002 
- 00019924  0x00002bd7 iadd  0x00000002 , 0x00000002 
- 00019925  0x00002bd8 copy  0x00000022 , 0x0000003f 
- 00019926  0x00002bd9 isub  0x00000002 , 0x0000003e 
- 00019927  0x00002bda nrtn  0x00000002 
- 00019928  0x00002bdb jam  0x00000000 , 0x000043cd 
- 00019929  0x00002bdc copy  0x00000011 , 0x0000003f 
- 00019930  0x00002bdd beq  0x00000050 , 0x00004ddc 
- 00019931  0x00002bde branch  0x00003bf1 
- 00019932  0x00002be0 call  0x000052c4 
- 00019933  0x00002be1 call  0x00004e84 
- 00019934  0x00002be2 call  0x000052d0 
- 00019935  0x00002be3 call  0x00007e1c 
- 00019936  0x00002be4 call  0x00004eb7 
- 00019937  0x00002be5 call  0x000052ce 
- 00019938  0x00002be7 setarg  0x0000000c 
- 00019939  0x00002be8 istore  0x00000002 , 0x00000005 
- 00019940  0x00002be9 force  0x00000001 , 0x0000003f 
- 00019941  0x00002bea istore  0x00000002 , 0x00000005 
- 00019942  0x00002beb branch  0x00004dfc 
- 00019943  0x00002bee call  0x0000527e 
- 00019944  0x00002bef nrtn  0x00000034 
- 00019945  0x00002bf0 call  0x000052d2 
- 00019946  0x00002bf1 call  0x00006f72 
- 00019947  0x00002bf2 call  0x000052dc 
- 00019948  0x00002bf3 fetch  0x00000002 , 0x000002dc 
- 00019949  0x00002bf4 branch  0x00004dfb , 0x00000034 
- 00019950  0x00002bf5 istore  0x00000002 , 0x00000005 
- 00019951  0x00002bf6 fetch  0x00000002 , 0x000042b1 
- 00019952  0x00002bf7 istore  0x00000002 , 0x00000005 
- 00019953  0x00002bf8 branch  0x00004dfc 
- 00019954  0x00002bfb call  0x00004af8 
- 00019955  0x00002bfc branch  0x00004dfc 
- 00019956  0x00002bff set1  0x00000025 , 0x00000000 
- 00019957  0x00002c00 bpatch  0x00000019 , 0x00004023 
- 00019958  0x00002c01 jam  0x00000000 , 0x000002eb 
- 00019959  0x00002c02 call  0x00006bdc 
- 00019960  0x00002c03 fetch  0x00000001 , 0x000002eb 
- 00019961  0x00002c04 rtneq  0x00000001 
- 00019962  0x00002c05 branch  0x00004dfc 
- 00019963  0x00002c07 call  0x0000526f 
- 00019964  0x00002c0a setarg  0x00000000 
- 00019965  0x00002c0b store  0x00000002 , 0x000002cd 
- 00019966  0x00002c0c store  0x00000002 , 0x000002cf 
- 00019967  0x00002c0d jam  0x00000001 , 0x000002d1 
- 00019968  0x00002c0e rtn 
- 00019969  0x00002c11 set1  0x00000025 , 0x00000000 
- 00019970  0x00002c12 bpatch  0x0000001a , 0x00004023 
- 00019971  0x00002c13 call  0x000052d0 
- 00019972  0x00002c14 force  0x00000000 , 0x00000012 
- 00019973  0x00002c15 fetch  0x00000002 , 0x000002cd 
- 00019974  0x00002c16 copy  0x0000003f , 0x00000013 
- 00019975  0x00002c17 fetch  0x00000002 , 0x000002cb 
- 00019976  0x00002c18 iforce  0x00000006 
- 00019977  0x00002c1a call  0x00004e11 
- 00019978  0x00002c1b deposit  0x00000013 
- 00019979  0x00002c1c increase  0xfffffffc , 0x00000013 
- 00019980  0x00002c1d increase  0xfffffffc , 0x0000003f 
- 00019981  0x00002c1e nbranch  0x00004e09 , 0x00000034 
- 00019982  0x00002c1f copy  0x00000012 , 0x0000003f 
- 00019983  0x00002c20 store  0x00000002 , 0x000002d6 
- 00019984  0x00002c21 rtn 
- 00019985  0x00002c24 set1  0x00000025 , 0x00000000 
- 00019986  0x00002c25 bpatch  0x0000001b , 0x00004023 
- 00019987  0x00002c26 ifetch  0x00000001 , 0x00000006 
- 00019988  0x00002c27 beq  0x00000001 , 0x00004e54 
- 00019989  0x00002c28 beq  0x00000002 , 0x00004e5c 
- 00019990  0x00002c29 beq  0x00000003 , 0x00004ee0 
- 00019991  0x00002c2a beq  0x00000004 , 0x00004f0f 
- 00019992  0x00002c2b beq  0x00000005 , 0x00004fad 
- 00019993  0x00002c2c beq  0x00000006 , 0x00004fd5 
- 00019994  0x00002c2d beq  0x00000007 , 0x00005024 
- 00019995  0x00002c2e beq  0x00000008 , 0x00005058 
- 00019996  0x00002c2f beq  0x00000009 , 0x00005068 
- 00019997  0x00002c30 beq  0x0000000a , 0x00004e21 
- 00019998  0x00002c31 beq  0x0000000b , 0x00005069 
- 00019999  0x00002c32 call  0x0000506a 
- 00020000  0x00002c34 rtn 
- 00020001  0x00002c37 ifetch  0x00000001 , 0x00000006 
- 00020002  0x00002c38 copy  0x0000003f , 0x00000007 
- 00020003  0x00002c39 ifetch  0x00000002 , 0x00000006 
- 00020004  0x00002c3a copy  0x0000003f , 0x00000011 
- 00020005  0x00002c3b copy  0x00000013 , 0x0000003f 
- 00020006  0x00002c3c isub  0x00000011 , 0x00000013 
- 00020007  0x00002c3d copy  0x00000011 , 0x0000003f 
- 00020008  0x00002c3e iadd  0x00000006 , 0x00000006 
- 00020009  0x00002c3f setarg  0x0000000b 
- 00020010  0x00002c40 istore  0x00000001 , 0x00000005 
- 00020011  0x00002c41 copy  0x00000007 , 0x0000003f 
- 00020012  0x00002c42 istore  0x00000001 , 0x00000005 
- 00020013  0x00002c43 force  0x00000008 , 0x0000003f 
- 00020014  0x00002c44 istore  0x00000002 , 0x00000005 
- 00020015  0x00002c45 force  0x00000002 , 0x0000003f 
- 00020016  0x00002c46 istore  0x00000002 , 0x00000005 
- 00020017  0x00002c47 force  0x00000000 , 0x0000003f 
- 00020018  0x00002c48 istore  0x00000002 , 0x00000005 
- 00020019  0x00002c49 force  0x00000400 , 0x0000003f 
- 00020020  0x00002c4a istore  0x00000002 , 0x00000005 
- 00020021  0x00002c4b force  0x00000000 , 0x0000003f 
- 00020022  0x00002c4c istore  0x00000002 , 0x00000005 
- 00020023  0x00002c4d force  0x0000000c , 0x0000003f 
- 00020024  0x00002c4e iadd  0x00000012 , 0x00000012 
- 00020025  0x00002c4f branch  0x00004e20 
- 00020026  0x00002c52 ifetch  0x00000001 , 0x00000006 
- 00020027  0x00002c53 copy  0x0000003f , 0x00000007 
- 00020028  0x00002c54 ifetch  0x00000002 , 0x00000006 
- 00020029  0x00002c55 copy  0x0000003f , 0x00000011 
- 00020030  0x00002c56 copy  0x00000013 , 0x0000003f 
- 00020031  0x00002c57 isub  0x00000011 , 0x00000013 
- 00020032  0x00002c58 copy  0x00000011 , 0x0000003f 
- 00020033  0x00002c59 iadd  0x00000006 , 0x00000006 
- 00020034  0x00002c5a call  0x000052d0 
- 00020035  0x00002c5b setarg  0x0000000b 
- 00020036  0x00002c5c istore  0x00000001 , 0x00000005 
- 00020037  0x00002c5d copy  0x00000007 , 0x0000003f 
- 00020038  0x00002c5e istore  0x00000001 , 0x00000005 
- 00020039  0x00002c5f force  0x00000008 , 0x0000003f 
- 00020040  0x00002c60 istore  0x00000002 , 0x00000005 
- 00020041  0x00002c61 force  0x00000002 , 0x0000003f 
- 00020042  0x00002c62 istore  0x00000002 , 0x00000005 
- 00020043  0x00002c63 force  0x00000000 , 0x0000003f 
- 00020044  0x00002c64 istore  0x00000002 , 0x00000005 
- 00020045  0x00002c65 force  0x00000400 , 0x0000003f 
- 00020046  0x00002c66 istore  0x00000002 , 0x00000005 
- 00020047  0x00002c67 force  0x00000000 , 0x0000003f 
- 00020048  0x00002c68 istore  0x00000002 , 0x00000005 
- 00020049  0x00002c69 force  0x0000000c , 0x0000003f 
- 00020050  0x00002c6a iadd  0x00000012 , 0x00000012 
- 00020051  0x00002c6c branch  0x00004e20 
- 00020052  0x00002c71 ifetch  0x00000001 , 0x00000006 
- 00020053  0x00002c72 copy  0x0000003f , 0x00000007 
- 00020054  0x00002c73 ifetch  0x00000002 , 0x00000006 
- 00020055  0x00002c74 copy  0x0000003f , 0x00000011 
- 00020056  0x00002c75 iadd  0x00000006 , 0x00000006 
- 00020057  0x00002c76 copy  0x00000013 , 0x0000003f 
- 00020058  0x00002c77 isub  0x00000011 , 0x00000013 
- 00020059  0x00002c79 branch  0x00004e20 
- 00020060  0x00002c7c call  0x00007e1c 
- 00020061  0x00002c7f call  0x00007e21 
- 00020062  0x00002c80 arg  0x00000000 , 0x00000008 
- 00020063  0x00002c81 ifetch  0x00000001 , 0x00000006 
- 00020064  0x00002c82 copy  0x0000003f , 0x00000007 
- 00020065  0x00002c83 ifetch  0x00000002 , 0x00000006 
- 00020066  0x00002c84 copy  0x0000003f , 0x00000011 
- 00020067  0x00002c85 ifetch  0x00000002 , 0x00000006 
- 00020068  0x00002c86 copy  0x0000003f , 0x00000002 
- 00020069  0x00002c87 ifetch  0x00000002 , 0x00000006 
- 00020070  0x00002c88 copy  0x0000003f , 0x0000000b 
- 00020071  0x00002c89 copy  0x00000002 , 0x0000003f 
- 00020072  0x00002c8a beq  0x00000001 , 0x00004e6e 
- 00020073  0x00002c8b beq  0x00000003 , 0x00004e90 
- 00020074  0x00002c8c beq  0x00000011 , 0x00004e9c 
- 00020075  0x00002c8d beq  0x00000013 , 0x00004ea7 
- 00020076  0x00002c8e call  0x0000506a 
- 00020077  0x00002c8f branch  0x00004edf 
- 00020078  0x00002c92 call  0x00007e1c 
- 00020079  0x00002c93 arg  0x00000050 , 0x00000002 
- 00020080  0x00002c94 fetch  0x00000002 , 0x000042b1 
- 00020081  0x00002c95 nbranch  0x00004ed9 , 0x00000034 
- 00020082  0x00002c96 copy  0x0000000b , 0x0000003f 
- 00020083  0x00002c97 store  0x00000002 , 0x000042b1 
- 00020084  0x00002c98 copy  0x00000022 , 0x0000003f 
- 00020085  0x00002c99 store  0x00000004 , 0x0000033c 
- 00020086  0x00002c9a call  0x00004e78 
- 00020087  0x00002c9b branch  0x00004eb3 
- 00020088  0x00002c9e storet  0x00000002 , 0x0000033a 
- 00020089  0x00002c9f deposit  0x0000000b 
- 00020090  0x00002ca0 store  0x00000002 , 0x00000330 
- 00020091  0x00002ca1 deposit  0x00000011 
- 00020092  0x00002ca2 store  0x00000002 , 0x00000332 
- 00020093  0x00002ca3 deposit  0x00000012 
- 00020094  0x00002ca4 store  0x00000002 , 0x00000334 
- 00020095  0x00002ca5 deposit  0x00000013 
- 00020096  0x00002ca6 store  0x00000002 , 0x00000336 
- 00020097  0x00002ca7 deposit  0x00000007 
- 00020098  0x00002ca8 store  0x00000002 , 0x00000338 
- 00020099  0x00002ca9 rtn 
- 00020100  0x00002cac fetcht  0x00000002 , 0x0000033a 
- 00020101  0x00002cad fetch  0x00000002 , 0x00000330 
- 00020102  0x00002cae copy  0x0000003f , 0x0000000b 
- 00020103  0x00002caf fetch  0x00000002 , 0x00000332 
- 00020104  0x00002cb0 copy  0x0000003f , 0x00000011 
- 00020105  0x00002cb1 fetch  0x00000002 , 0x00000334 
- 00020106  0x00002cb2 copy  0x0000003f , 0x00000012 
- 00020107  0x00002cb3 fetch  0x00000002 , 0x00000336 
- 00020108  0x00002cb4 copy  0x0000003f , 0x00000013 
- 00020109  0x00002cb5 fetch  0x00000002 , 0x00000338 
- 00020110  0x00002cb6 copy  0x0000003f , 0x00000007 
- 00020111  0x00002cb7 rtn 
- 00020112  0x00002cba call  0x00007e1c 
- 00020113  0x00002cbb setarg  0x00000051 
- 00020114  0x00002cbc arg  0x00000051 , 0x00000002 
- 00020115  0x00002cbd fetch  0x00000002 , 0x000042b3 
- 00020116  0x00002cbe nbranch  0x00004ed9 , 0x00000034 
- 00020117  0x00002cbf copy  0x0000000b , 0x0000003f 
- 00020118  0x00002cc0 store  0x00000002 , 0x000042b3 
- 00020119  0x00002cc1 fetch  0x00000001 , 0x000042ba 
- 00020120  0x00002cc2 set1  0x00000000 , 0x0000003f 
- 00020121  0x00002cc3 set1  0x00000001 , 0x0000003f 
- 00020122  0x00002cc4 store  0x00000001 , 0x000042ba 
- 00020123  0x00002cc5 branch  0x00004ebb 
- 00020124  0x00002cc7 call  0x00007e1c 
- 00020125  0x00002cc8 arg  0x00000052 , 0x00000002 
- 00020126  0x00002cc9 fetch  0x00000002 , 0x000042b5 
- 00020127  0x00002cca nbranch  0x00004ed9 , 0x00000034 
- 00020128  0x00002ccb copy  0x0000000b , 0x0000003f 
- 00020129  0x00002ccc store  0x00000002 , 0x000042b5 
- 00020130  0x00002ccd fetch  0x00000001 , 0x000042bb 
- 00020131  0x00002cce set1  0x00000000 , 0x0000003f 
- 00020132  0x00002ccf set1  0x00000001 , 0x0000003f 
- 00020133  0x00002cd0 store  0x00000001 , 0x000042bb 
- 00020134  0x00002cd1 branch  0x00004ebb 
- 00020135  0x00002cd3 call  0x00007e1c 
- 00020136  0x00002cd4 deposit  0x0000001a 
- 00020137  0x00002cd5 arg  0x00000053 , 0x00000002 
- 00020138  0x00002cd6 fetch  0x00000002 , 0x000042b7 
- 00020139  0x00002cd7 nbranch  0x00004ed9 , 0x00000034 
- 00020140  0x00002cd8 copy  0x0000000b , 0x0000003f 
- 00020141  0x00002cd9 store  0x00000002 , 0x000042b7 
- 00020142  0x00002cda fetch  0x00000001 , 0x000042bc 
- 00020143  0x00002cdb set1  0x00000000 , 0x0000003f 
- 00020144  0x00002cdc set1  0x00000001 , 0x0000003f 
- 00020145  0x00002cdd store  0x00000001 , 0x000042bc 
- 00020146  0x00002cde branch  0x00004ebb 
- 00020147  0x00002ce1 setarg  0x00000001 
- 00020148  0x00002ce2 store  0x00000002 , 0x000002e4 
- 00020149  0x00002ce3 jam  0x00000050 , 0x000043cd 
- 00020150  0x00002ce4 branch  0x00004ebd 
- 00020151  0x00002ce6 fetch  0x00000001 , 0x000042b9 
- 00020152  0x00002ce7 set1  0x00000000 , 0x0000003f 
- 00020153  0x00002ce8 set1  0x00000001 , 0x0000003f 
- 00020154  0x00002ce9 store  0x00000001 , 0x000042b9 
- 00020155  0x00002ceb setarg  0x00000000 
- 00020156  0x00002cec store  0x00000002 , 0x000002e4 
- 00020157  0x00002cee set1  0x00000025 , 0x00000000 
- 00020158  0x00002cef bpatch  0x0000001c , 0x00004023 
- 00020159  0x00002cf0 call  0x00007e21 
- 00020160  0x00002cf1 setarg  0x00000003 
- 00020161  0x00002cf2 istore  0x00000001 , 0x00000005 
- 00020162  0x00002cf3 copy  0x00000007 , 0x0000003f 
- 00020163  0x00002cf4 istore  0x00000001 , 0x00000005 
- 00020164  0x00002cf5 setarg  0x00000008 
- 00020165  0x00002cf6 istore  0x00000002 , 0x00000005 
- 00020166  0x00002cf7 copy  0x00000002 , 0x0000003f 
- 00020167  0x00002cf8 istore  0x00000002 , 0x00000005 
- 00020168  0x00002cf9 copy  0x0000000b , 0x0000003f 
- 00020169  0x00002cfa istore  0x00000002 , 0x00000005 
- 00020170  0x00002cfb fetch  0x00000002 , 0x000002e4 
- 00020171  0x00002cfc beq  0x00000001 , 0x00004ed4 
- 00020172  0x00002cfd isolate0  0x00000000 , 0x00000008 
- 00020173  0x00002cfe branch  0x00004ecf , 0x00000001 
- 00020174  0x00002cff setarg  0x00000004 
- 00020175  0x00002d01 istore  0x00000002 , 0x00000005 
- 00020176  0x00002d02 force  0x00000000 , 0x0000003f 
- 00020177  0x00002d03 istore  0x00000002 , 0x00000005 
- 00020178  0x00002d04 setarg  0x0000000c 
- 00020179  0x00002d05 branch  0x00004edb 
- 00020180  0x00002d07 istore  0x00000002 , 0x00000005 
- 00020181  0x00002d08 force  0x00000002 , 0x0000003f 
- 00020182  0x00002d09 istore  0x00000002 , 0x00000005 
- 00020183  0x00002d0a setarg  0x0000000c 
- 00020184  0x00002d0b branch  0x00004edb 
- 00020185  0x00002d0e set1  0x00000000 , 0x00000008 
- 00020186  0x00002d0f branch  0x00004ebb 
- 00020187  0x00002d11 iadd  0x00000012 , 0x00000012 
- 00020188  0x00002d12 copy  0x00000013 , 0x0000003f 
- 00020189  0x00002d13 isub  0x00000011 , 0x00000013 
- 00020190  0x00002d14 branch  0x00004edf 
- 00020191  0x00002d16 branch  0x00004e20 
- 00020192  0x00002d19 ifetch  0x00000001 , 0x00000006 
- 00020193  0x00002d1a copy  0x0000003f , 0x00000007 
- 00020194  0x00002d1b ifetch  0x00000002 , 0x00000006 
- 00020195  0x00002d1c copy  0x0000003f , 0x00000011 
- 00020196  0x00002d1d copy  0x00000013 , 0x0000003f 
- 00020197  0x00002d1e isub  0x00000011 , 0x00000013 
- 00020198  0x00002d1f ifetch  0x00000002 , 0x00000006 
- 00020199  0x00002d20 copy  0x0000003f , 0x0000000b 
- 00020200  0x00002d21 ifetch  0x00000002 , 0x00000006 
- 00020201  0x00002d22 copy  0x0000003f , 0x00000002 
- 00020202  0x00002d23 setarg  0x00000050 
- 00020203  0x00002d24 isub  0x00000002 , 0x0000003e 
- 00020204  0x00002d25 branch  0x00004ef7 , 0x00000005 
- 00020205  0x00002d26 setarg  0x00000051 
- 00020206  0x00002d27 isub  0x00000002 , 0x0000003e 
- 00020207  0x00002d28 branch  0x00004efd , 0x00000005 
- 00020208  0x00002d29 setarg  0x00000052 
- 00020209  0x00002d2a isub  0x00000002 , 0x0000003e 
- 00020210  0x00002d2b branch  0x00004f09 , 0x00000005 
- 00020211  0x00002d2c setarg  0x00000053 
- 00020212  0x00002d2d isub  0x00000002 , 0x0000003e 
- 00020213  0x00002d2e branch  0x00004f03 , 0x00000005 
- 00020214  0x00002d2f rtn 
- 00020215  0x00002d32 copy  0x0000000b , 0x0000003f 
- 00020216  0x00002d33 store  0x00000002 , 0x000042b1 
- 00020217  0x00002d34 fetch  0x00000001 , 0x000042b9 
- 00020218  0x00002d35 set1  0x00000001 , 0x0000003f 
- 00020219  0x00002d36 store  0x00000001 , 0x000042b9 
- 00020220  0x00002d37 branch  0x00004e20 
- 00020221  0x00002d39 copy  0x0000000b , 0x0000003f 
- 00020222  0x00002d3a store  0x00000002 , 0x000042b3 
- 00020223  0x00002d3b fetch  0x00000001 , 0x000042ba 
- 00020224  0x00002d3c set1  0x00000001 , 0x0000003f 
- 00020225  0x00002d3d store  0x00000001 , 0x000042ba 
- 00020226  0x00002d3e rtn 
- 00020227  0x00002d40 copy  0x0000000b , 0x0000003f 
- 00020228  0x00002d41 store  0x00000002 , 0x000042b5 
- 00020229  0x00002d42 fetch  0x00000001 , 0x000042bc 
- 00020230  0x00002d43 set1  0x00000001 , 0x0000003f 
- 00020231  0x00002d44 store  0x00000001 , 0x000042bc 
- 00020232  0x00002d45 rtn 
- 00020233  0x00002d47 copy  0x0000000b , 0x0000003f 
- 00020234  0x00002d48 store  0x00000002 , 0x000042b7 
- 00020235  0x00002d49 fetch  0x00000001 , 0x000042bb 
- 00020236  0x00002d4a set1  0x00000001 , 0x0000003f 
- 00020237  0x00002d4b store  0x00000001 , 0x000042bb 
- 00020238  0x00002d4c rtn 
- 00020239  0x00002d4f ifetch  0x00000001 , 0x00000006 
- 00020240  0x00002d50 copy  0x0000003f , 0x00000007 
- 00020241  0x00002d51 ifetch  0x00000002 , 0x00000006 
- 00020242  0x00002d52 copy  0x0000003f , 0x00000011 
- 00020243  0x00002d53 copy  0x00000013 , 0x0000003f 
- 00020244  0x00002d54 isub  0x00000011 , 0x00000013 
- 00020245  0x00002d55 ifetch  0x00000002 , 0x00000006 
- 00020246  0x00002d56 copy  0x0000003f , 0x00000002 
- 00020247  0x00002d57 copy  0x00000002 , 0x00000011 
- 00020248  0x00002d58 setarg  0x00000050 
- 00020249  0x00002d59 isub  0x00000002 , 0x0000003e 
- 00020250  0x00002d5a branch  0x00004f25 , 0x00000005 
- 00020251  0x00002d5b setarg  0x00000051 
- 00020252  0x00002d5c isub  0x00000002 , 0x0000003e 
- 00020253  0x00002d5d branch  0x00004f43 , 0x00000005 
- 00020254  0x00002d5e setarg  0x00000052 
- 00020255  0x00002d5f isub  0x00000002 , 0x0000003e 
- 00020256  0x00002d60 branch  0x00004f2f , 0x00000005 
- 00020257  0x00002d61 setarg  0x00000053 
- 00020258  0x00002d62 isub  0x00000002 , 0x0000003e 
- 00020259  0x00002d63 branch  0x00004f39 , 0x00000005 
- 00020260  0x00002d64 branch  0x0000506a 
- 00020261  0x00002d67 copy  0x00000005 , 0x0000000b 
- 00020262  0x00002d68 fetch  0x00000001 , 0x000042b9 
- 00020263  0x00002d69 set1  0x00000004 , 0x0000003f 
- 00020264  0x00002d6a set1  0x00000003 , 0x0000003f 
- 00020265  0x00002d6c store  0x00000001 , 0x000042b9 
- 00020266  0x00002d6d copy  0x0000000b , 0x00000005 
- 00020267  0x00002d6e arg  0x00000050 , 0x0000000b 
- 00020268  0x00002d6f fetch  0x00000002 , 0x000042b1 
- 00020269  0x00002d70 copy  0x0000003f , 0x00000002 
- 00020270  0x00002d71 branch  0x00004f4c 
- 00020271  0x00002d73 copy  0x00000005 , 0x0000000b 
- 00020272  0x00002d74 fetch  0x00000001 , 0x000042bb 
- 00020273  0x00002d75 set1  0x00000004 , 0x0000003f 
- 00020274  0x00002d76 set1  0x00000003 , 0x0000003f 
- 00020275  0x00002d78 store  0x00000001 , 0x000042bb 
- 00020276  0x00002d79 copy  0x0000000b , 0x00000005 
- 00020277  0x00002d7a arg  0x00000052 , 0x0000000b 
- 00020278  0x00002d7b fetch  0x00000002 , 0x000042b5 
- 00020279  0x00002d7c copy  0x0000003f , 0x00000002 
- 00020280  0x00002d7d branch  0x00004f4c 
- 00020281  0x00002d7f copy  0x00000005 , 0x0000000b 
- 00020282  0x00002d80 fetch  0x00000001 , 0x000042bc 
- 00020283  0x00002d81 set1  0x00000004 , 0x0000003f 
- 00020284  0x00002d82 set1  0x00000003 , 0x0000003f 
- 00020285  0x00002d84 store  0x00000001 , 0x000042bc 
- 00020286  0x00002d85 copy  0x0000000b , 0x00000005 
- 00020287  0x00002d86 arg  0x00000053 , 0x0000000b 
- 00020288  0x00002d87 fetch  0x00000002 , 0x000042b7 
- 00020289  0x00002d88 copy  0x0000003f , 0x00000002 
- 00020290  0x00002d89 branch  0x00004f4c 
- 00020291  0x00002d8b copy  0x00000005 , 0x0000000b 
- 00020292  0x00002d8c fetch  0x00000001 , 0x000042ba 
- 00020293  0x00002d8d set1  0x00000004 , 0x0000003f 
- 00020294  0x00002d8e set1  0x00000003 , 0x0000003f 
- 00020295  0x00002d90 store  0x00000001 , 0x000042ba 
- 00020296  0x00002d92 copy  0x0000000b , 0x00000005 
- 00020297  0x00002d93 arg  0x00000051 , 0x0000000b 
- 00020298  0x00002d94 fetch  0x00000002 , 0x000042b3 
- 00020299  0x00002d95 copy  0x0000003f , 0x00000002 
- 00020300  0x00002d97 set1  0x00000025 , 0x00000000 
- 00020301  0x00002d98 bpatch  0x0000001d , 0x00004023 
- 00020302  0x00002d99 setarg  0x00000005 
- 00020303  0x00002d9a istore  0x00000001 , 0x00000005 
- 00020304  0x00002d9b copy  0x00000007 , 0x0000003f 
- 00020305  0x00002d9c istore  0x00000001 , 0x00000005 
- 00020306  0x00002d9d setarg  0x00000006 
- 00020307  0x00002d9e istore  0x00000002 , 0x00000005 
- 00020308  0x00002d9f copy  0x00000002 , 0x0000003f 
- 00020309  0x00002da0 istore  0x00000002 , 0x00000005 
- 00020310  0x00002da1 force  0x00000000 , 0x0000003f 
- 00020311  0x00002da2 istore  0x00000002 , 0x00000005 
- 00020312  0x00002da3 force  0x00000000 , 0x0000003f 
- 00020313  0x00002da4 istore  0x00000002 , 0x00000005 
- 00020314  0x00002da5 force  0x0000000a , 0x0000003f 
- 00020315  0x00002da6 iadd  0x00000012 , 0x00000012 
- 00020316  0x00002da8 storet  0x00000002 , 0x000002e9 
- 00020317  0x00002da9 copy  0x00000007 , 0x0000003f 
- 00020318  0x00002daa store  0x00000001 , 0x000002e8 
- 00020319  0x00002dab force  0x00000050 , 0x0000003f 
- 00020320  0x00002dac icompare  0x000000ff , 0x0000000b 
- 00020321  0x00002dad branch  0x00004f63 , 0x00000001 
- 00020322  0x00002dae increase  0x00000001 , 0x0000003f 
- 00020323  0x00002db1 rtn 
- 00020324  0x00002db3 disable  0x00000028 
- 00020325  0x00002db4 rtnbit1  0x00000002 , 0x0000003f 
- 00020326  0x00002db5 rtnbit0  0x00000000 , 0x0000003f 
- 00020327  0x00002db6 rtnbit0  0x00000001 , 0x0000003f 
- 00020328  0x00002db7 set1  0x00000002 , 0x0000003f 
- 00020329  0x00002db8 copy  0x00000006 , 0x00000005 
- 00020330  0x00002db9 increase  0xffffffff , 0x00000005 
- 00020331  0x00002dba istore  0x00000001 , 0x00000005 
- 00020332  0x00002dbb enable  0x00000028 
- 00020333  0x00002dbc rtn 
- 00020334  0x00002dbf fetch  0x00000001 , 0x000042b9 
- 00020335  0x00002dc0 call  0x00004f64 
- 00020336  0x00002dc1 nbranch  0x00004f75 , 0x00000028 
- 00020337  0x00002dc2 jam  0x00000050 , 0x000002e7 
- 00020338  0x00002dc3 fetch  0x00000002 , 0x000042b1 
- 00020339  0x00002dc4 store  0x00000002 , 0x000002e9 
- 00020340  0x00002dc5 branch  0x00004f89 
- 00020341  0x00002dc7 fetch  0x00000001 , 0x000042ba 
- 00020342  0x00002dc8 call  0x00004f64 
- 00020343  0x00002dc9 nbranch  0x00004f7c , 0x00000028 
- 00020344  0x00002dca jam  0x00000051 , 0x000002e7 
- 00020345  0x00002dcb fetch  0x00000002 , 0x000042b3 
- 00020346  0x00002dcc store  0x00000002 , 0x000002e9 
- 00020347  0x00002dcd branch  0x00004f89 
- 00020348  0x00002dcf fetch  0x00000001 , 0x000042bb 
- 00020349  0x00002dd0 call  0x00004f64 
- 00020350  0x00002dd1 nbranch  0x00004f83 , 0x00000028 
- 00020351  0x00002dd2 jam  0x00000052 , 0x000002e7 
- 00020352  0x00002dd3 fetch  0x00000002 , 0x000042b5 
- 00020353  0x00002dd4 store  0x00000002 , 0x000002e9 
- 00020354  0x00002dd5 branch  0x00004f89 
- 00020355  0x00002dd7 fetch  0x00000001 , 0x000042bc 
- 00020356  0x00002dd8 call  0x00004f64 
- 00020357  0x00002dd9 nrtn  0x00000028 
- 00020358  0x00002dda jam  0x00000053 , 0x000002e7 
- 00020359  0x00002ddb fetch  0x00000002 , 0x000042b7 
- 00020360  0x00002ddc store  0x00000002 , 0x000002e9 
- 00020361  0x00002de0 set1  0x00000025 , 0x00000000 
- 00020362  0x00002de1 bpatch  0x0000001e , 0x00004023 
- 00020363  0x00002de2 call  0x00005242 
- 00020364  0x00002de3 call  0x000052c4 
- 00020365  0x00002de4 force  0x00000000 , 0x00000012 
- 00020366  0x00002de5 call  0x000052d0 
- 00020367  0x00002de6 force  0x00000004 , 0x0000003f 
- 00020368  0x00002de7 istore  0x00000001 , 0x00000005 
- 00020369  0x00002de8 fetch  0x00000001 , 0x000042be 
- 00020370  0x00002de9 istore  0x00000001 , 0x00000005 
- 00020371  0x00002dea setarg  0x00000008 
- 00020372  0x00002deb istore  0x00000002 , 0x00000005 
- 00020373  0x00002dec fetch  0x00000002 , 0x000002e9 
- 00020374  0x00002ded istore  0x00000002 , 0x00000005 
- 00020375  0x00002dee setarg  0x00000000 
- 00020376  0x00002def istore  0x00000002 , 0x00000005 
- 00020377  0x00002df0 force  0x00000001 , 0x0000003f 
- 00020378  0x00002df1 istore  0x00000001 , 0x00000005 
- 00020379  0x00002df2 force  0x00000002 , 0x0000003f 
- 00020380  0x00002df3 istore  0x00000001 , 0x00000005 
- 00020381  0x00002df4 fetch  0x00000001 , 0x000002e7 
- 00020382  0x00002df5 beq  0x00000051 , 0x00004fa2 
- 00020383  0x00002df6 setarg  0x00000030 
- 00020384  0x00002df7 istore  0x00000002 , 0x00000005 
- 00020385  0x00002df8 branch  0x00004fa4 
- 00020386  0x00002dfa setarg  0x000003e3 
- 00020387  0x00002dfb istore  0x00000002 , 0x00000005 
- 00020388  0x00002dfd arg  0x0000000c , 0x00000002 
- 00020389  0x00002dfe storet  0x00000002 , 0x000002d6 
- 00020390  0x00002dff call  0x000052ce 
- 00020391  0x00002e00 fetch  0x00000002 , 0x000002d6 
- 00020392  0x00002e01 istore  0x00000002 , 0x00000005 
- 00020393  0x00002e02 force  0x00000001 , 0x0000003f 
- 00020394  0x00002e03 istore  0x00000002 , 0x00000005 
- 00020395  0x00002e04 jam  0x00000000 , 0x000002e7 
- 00020396  0x00002e06 branch  0x00004e20 
- 00020397  0x00002e09 increase  0x00000001 , 0x00000006 
- 00020398  0x00002e0a ifetch  0x00000002 , 0x00000006 
- 00020399  0x00002e0b copy  0x0000003f , 0x00000011 
- 00020400  0x00002e0c copy  0x00000013 , 0x0000003f 
- 00020401  0x00002e0d isub  0x00000011 , 0x00000013 
- 00020402  0x00002e0e ifetch  0x00000002 , 0x00000006 
- 00020403  0x00002e0f copy  0x0000003f , 0x00000011 
- 00020404  0x00002e10 setarg  0x00000050 
- 00020405  0x00002e11 isub  0x00000011 , 0x0000003e 
- 00020406  0x00002e12 branch  0x00004fc4 , 0x00000005 
- 00020407  0x00002e13 setarg  0x00000051 
- 00020408  0x00002e14 isub  0x00000011 , 0x0000003e 
- 00020409  0x00002e15 branch  0x00004fc8 , 0x00000005 
- 00020410  0x00002e16 setarg  0x00000052 
- 00020411  0x00002e17 isub  0x00000011 , 0x0000003e 
- 00020412  0x00002e18 branch  0x00004fcc , 0x00000005 
- 00020413  0x00002e19 setarg  0x00000053 
- 00020414  0x00002e1a isub  0x00000011 , 0x0000003e 
- 00020415  0x00002e1b branch  0x00004fd0 , 0x00000005 
- 00020416  0x00002e1c increase  0x00000002 , 0x00000006 
- 00020417  0x00002e1d ifetch  0x00000002 , 0x00000006 
- 00020418  0x00002e1e iforce  0x0000003e 
- 00020419  0x00002e1f branch  0x00004e20 
- 00020420  0x00002e21 fetch  0x00000001 , 0x000042b9 
- 00020421  0x00002e22 set1  0x00000005 , 0x0000003f 
- 00020422  0x00002e23 store  0x00000001 , 0x000042b9 
- 00020423  0x00002e24 branch  0x00004e20 
- 00020424  0x00002e26 fetch  0x00000001 , 0x000042ba 
- 00020425  0x00002e27 set1  0x00000005 , 0x0000003f 
- 00020426  0x00002e28 store  0x00000001 , 0x000042ba 
- 00020427  0x00002e29 branch  0x00004e20 
- 00020428  0x00002e2b fetch  0x00000001 , 0x000042bb 
- 00020429  0x00002e2c set1  0x00000005 , 0x0000003f 
- 00020430  0x00002e2d store  0x00000001 , 0x000042bb 
- 00020431  0x00002e2e branch  0x00004e20 
- 00020432  0x00002e30 fetch  0x00000001 , 0x000042bc 
- 00020433  0x00002e31 set1  0x00000005 , 0x0000003f 
- 00020434  0x00002e32 store  0x00000001 , 0x000042bc 
- 00020435  0x00002e33 jam  0x00000006 , 0x00000b7d 
- 00020436  0x00002e34 branch  0x00007c27 
- 00020437  0x00002e39 ifetch  0x00000001 , 0x00000006 
- 00020438  0x00002e3a copy  0x0000003f , 0x00000007 
- 00020439  0x00002e3b ifetch  0x00000002 , 0x00000006 
- 00020440  0x00002e3c copy  0x0000003f , 0x00000011 
- 00020441  0x00002e3d copy  0x00000013 , 0x0000003f 
- 00020442  0x00002e3e isub  0x00000011 , 0x00000013 
- 00020443  0x00002e3f ifetch  0x00000002 , 0x00000006 
- 00020444  0x00002e40 copy  0x0000003f , 0x00000011 
- 00020445  0x00002e41 ifetch  0x00000002 , 0x00000006 
- 00020446  0x00002e42 copy  0x0000003f , 0x0000000b 
- 00020447  0x00002e43 copy  0x00000011 , 0x00000002 
- 00020448  0x00002e44 call  0x00007e1c 
- 00020449  0x00002e45 setarg  0x00000050 
- 00020450  0x00002e46 isub  0x00000002 , 0x0000003e 
- 00020451  0x00002e47 branch  0x00004ffb , 0x00000005 
- 00020452  0x00002e48 setarg  0x00000051 
- 00020453  0x00002e49 isub  0x00000002 , 0x0000003e 
- 00020454  0x00002e4a branch  0x0000500b , 0x00000005 
- 00020455  0x00002e4b setarg  0x00000052 
- 00020456  0x00002e4c isub  0x00000002 , 0x0000003e 
- 00020457  0x00002e4d branch  0x00004fef , 0x00000005 
- 00020458  0x00002e4e setarg  0x00000053 
- 00020459  0x00002e4f isub  0x00000002 , 0x0000003e 
- 00020460  0x00002e50 branch  0x00004ff5 , 0x00000005 
- 00020461  0x00002e51 call  0x0000506a 
- 00020462  0x00002e52 branch  0x00005020 
- 00020463  0x00002e54 copy  0x0000000b , 0x00000002 
- 00020464  0x00002e55 fetch  0x00000002 , 0x000042b5 
- 00020465  0x00002e56 isub  0x00000002 , 0x0000003e 
- 00020466  0x00002e57 branch  0x00005001 , 0x00000005 
- 00020467  0x00002e58 call  0x0000506a 
- 00020468  0x00002e59 branch  0x00005020 
- 00020469  0x00002e5b copy  0x0000000b , 0x00000002 
- 00020470  0x00002e5c fetch  0x00000002 , 0x000042b7 
- 00020471  0x00002e5d isub  0x00000002 , 0x0000003e 
- 00020472  0x00002e5e branch  0x00005003 , 0x00000005 
- 00020473  0x00002e5f call  0x0000506a 
- 00020474  0x00002e60 branch  0x00005020 
- 00020475  0x00002e63 copy  0x0000000b , 0x00000002 
- 00020476  0x00002e64 fetch  0x00000002 , 0x000042b1 
- 00020477  0x00002e65 isub  0x00000002 , 0x0000003e 
- 00020478  0x00002e66 branch  0x00005007 , 0x00000005 
- 00020479  0x00002e67 call  0x0000506a 
- 00020480  0x00002e68 branch  0x00005020 
- 00020481  0x00002e6a call  0x00005081 
- 00020482  0x00002e6b branch  0x00005013 
- 00020483  0x00002e6d call  0x00005087 
- 00020484  0x00002e6e fetch  0x00000002 , 0x000042b5 
- 00020485  0x00002e6f branch  0x00005013 , 0x00000034 
- 00020486  0x00002e77 branch  0x00005013 
- 00020487  0x00002e7a call  0x0000507c 
- 00020488  0x00002e7b fetch  0x00000001 , 0x000002ef 
- 00020489  0x00002e7c nbranch  0x00005013 , 0x00000034 
- 00020490  0x00002e7f branch  0x00005013 
- 00020491  0x00002e81 copy  0x0000000b , 0x00000002 
- 00020492  0x00002e82 fetch  0x00000002 , 0x000042b3 
- 00020493  0x00002e83 isub  0x00000002 , 0x0000003e 
- 00020494  0x00002e84 branch  0x00005011 , 0x00000005 
- 00020495  0x00002e85 call  0x0000506a 
- 00020496  0x00002e86 branch  0x00005020 
- 00020497  0x00002e88 call  0x00005077 
- 00020498  0x00002e89 branch  0x00005013 
- 00020499  0x00002e8b call  0x00007e21 
- 00020500  0x00002e8c setarg  0x00000007 
- 00020501  0x00002e8d istore  0x00000001 , 0x00000005 
- 00020502  0x00002e8e copy  0x00000007 , 0x0000003f 
- 00020503  0x00002e8f istore  0x00000001 , 0x00000005 
- 00020504  0x00002e90 setarg  0x00000004 
- 00020505  0x00002e91 istore  0x00000002 , 0x00000005 
- 00020506  0x00002e92 copy  0x00000011 , 0x0000003f 
- 00020507  0x00002e93 istore  0x00000002 , 0x00000005 
- 00020508  0x00002e94 copy  0x0000000b , 0x0000003f 
- 00020509  0x00002e95 istore  0x00000002 , 0x00000005 
- 00020510  0x00002e96 force  0x00000008 , 0x0000003f 
- 00020511  0x00002e97 branch  0x00005022 
- 00020512  0x00002e99 call  0x00007e21 
- 00020513  0x00002e9a branch  0x00005022 
- 00020514  0x00002e9c iadd  0x00000012 , 0x00000012 
- 00020515  0x00002e9d branch  0x00004e20 
- 00020516  0x00002e9f ifetch  0x00000001 , 0x00000006 
- 00020517  0x00002ea0 copy  0x0000003f , 0x00000007 
- 00020518  0x00002ea1 ifetch  0x00000002 , 0x00000006 
- 00020519  0x00002ea2 copy  0x0000003f , 0x00000011 
- 00020520  0x00002ea3 copy  0x00000013 , 0x0000003f 
- 00020521  0x00002ea4 isub  0x00000011 , 0x00000013 
- 00020522  0x00002ea5 ifetch  0x00000002 , 0x00000006 
- 00020523  0x00002ea6 copy  0x0000003f , 0x0000000b 
- 00020524  0x00002ea7 ifetch  0x00000002 , 0x00000006 
- 00020525  0x00002ea8 copy  0x0000003f , 0x00000002 
- 00020526  0x00002ea9 call  0x00007e1c 
- 00020527  0x00002eaa setarg  0x00000050 
- 00020528  0x00002eab isub  0x00000002 , 0x0000003e 
- 00020529  0x00002eac branch  0x0000503d , 0x00000005 
- 00020530  0x00002ead setarg  0x00000051 
- 00020531  0x00002eae isub  0x00000002 , 0x0000003e 
- 00020532  0x00002eaf branch  0x00005043 , 0x00000005 
- 00020533  0x00002eb0 setarg  0x00000052 
- 00020534  0x00002eb1 isub  0x00000002 , 0x0000003e 
- 00020535  0x00002eb2 branch  0x00005049 , 0x00000005 
- 00020536  0x00002eb3 setarg  0x00000053 
- 00020537  0x00002eb4 isub  0x00000002 , 0x0000003e 
- 00020538  0x00002eb5 branch  0x0000504f , 0x00000005 
- 00020539  0x00002eb6 call  0x0000506a 
- 00020540  0x00002eb7 branch  0x00005057 
- 00020541  0x00002eb9 copy  0x00000002 , 0x00000011 
- 00020542  0x00002eba copy  0x0000000b , 0x00000002 
- 00020543  0x00002ebb fetch  0x00000002 , 0x000042b1 
- 00020544  0x00002ebc isub  0x00000002 , 0x0000003e 
- 00020545  0x00002ebd call  0x0000507c , 0x00000005 
- 00020546  0x00002ebe branch  0x00005055 
- 00020547  0x00002ec0 copy  0x00000002 , 0x00000011 
- 00020548  0x00002ec1 copy  0x0000000b , 0x00000002 
- 00020549  0x00002ec2 fetch  0x00000002 , 0x000042b3 
- 00020550  0x00002ec3 isub  0x00000002 , 0x0000003e 
- 00020551  0x00002ec4 call  0x00005077 , 0x00000005 
- 00020552  0x00002ec5 branch  0x00005055 
- 00020553  0x00002ec7 copy  0x00000002 , 0x00000011 
- 00020554  0x00002ec8 copy  0x0000000b , 0x00000002 
- 00020555  0x00002ec9 fetch  0x00000002 , 0x000042b5 
- 00020556  0x00002eca isub  0x00000002 , 0x0000003e 
- 00020557  0x00002ecb call  0x00005081 , 0x00000005 
- 00020558  0x00002ecc branch  0x00005055 
- 00020559  0x00002ece copy  0x00000002 , 0x00000011 
- 00020560  0x00002ecf copy  0x0000000b , 0x00000002 
- 00020561  0x00002ed0 fetch  0x00000002 , 0x000042b7 
- 00020562  0x00002ed1 isub  0x00000002 , 0x0000003e 
- 00020563  0x00002ed2 call  0x00005087 , 0x00000005 
- 00020564  0x00002ed3 branch  0x00005055 
- 00020565  0x00002ed5 call  0x00007e21 
- 00020566  0x00002ed6 branch  0x00004e20 
- 00020567  0x00002ed8 branch  0x00004e20 
- 00020568  0x00002edc ifetch  0x00000001 , 0x00000006 
- 00020569  0x00002edd copy  0x0000003f , 0x00000007 
- 00020570  0x00002ede ifetch  0x00000002 , 0x00000006 
- 00020571  0x00002edf copy  0x0000003f , 0x00000011 
- 00020572  0x00002ee0 iadd  0x00000006 , 0x00000006 
- 00020573  0x00002ee1 setarg  0x00000009 
- 00020574  0x00002ee2 istore  0x00000001 , 0x00000005 
- 00020575  0x00002ee3 copy  0x00000007 , 0x0000003f 
- 00020576  0x00002ee4 istore  0x00000001 , 0x00000005 
- 00020577  0x00002ee5 force  0x00000000 , 0x0000003f 
- 00020578  0x00002ee6 istore  0x00000002 , 0x00000005 
- 00020579  0x00002ee7 force  0x00000004 , 0x0000003f 
- 00020580  0x00002ee8 iadd  0x00000012 , 0x00000012 
- 00020581  0x00002ee9 copy  0x00000013 , 0x0000003f 
- 00020582  0x00002eea isub  0x00000011 , 0x00000013 
- 00020583  0x00002eeb branch  0x00004e20 
- 00020584  0x00002eed branch  0x00004e20 
- 00020585  0x00002ef0 branch  0x00004e20 
- 00020586  0x00002ef2 force  0x00000000 , 0x00000012 
- 00020587  0x00002ef3 call  0x000052d0 
- 00020588  0x00002ef4 setarg  0x00000001 
- 00020589  0x00002ef5 istore  0x00000001 , 0x00000005 
- 00020590  0x00002ef6 copy  0x00000007 , 0x0000003f 
- 00020591  0x00002ef7 istore  0x00000001 , 0x00000005 
- 00020592  0x00002ef8 setarg  0x00000002 
- 00020593  0x00002ef9 istore  0x00000002 , 0x00000005 
- 00020594  0x00002efa setarg  0x00000000 
- 00020595  0x00002efb istore  0x00000002 , 0x00000005 
- 00020596  0x00002efc increase  0x00000006 , 0x00000012 
- 00020597  0x00002efd arg  0x00000004 , 0x00000013 
- 00020598  0x00002efe branch  0x00004e20 
- 00020599  0x00002f03 setarg  0x00000000 
- 00020600  0x00002f04 store  0x00000002 , 0x000002e2 
- 00020601  0x00002f05 store  0x00000002 , 0x000042b3 
- 00020602  0x00002f06 jam  0x00000000 , 0x000042ba 
- 00020603  0x00002f07 rtn 
- 00020604  0x00002f09 setarg  0x00000000 
- 00020605  0x00002f0a store  0x00000002 , 0x000002dc 
- 00020606  0x00002f0b store  0x00000002 , 0x000042b1 
- 00020607  0x00002f0c jam  0x00000000 , 0x000042b9 
- 00020608  0x00002f0d rtn 
- 00020609  0x00002f0f setarg  0x00000000 
- 00020610  0x00002f10 store  0x00000002 , 0x000042b5 
- 00020611  0x00002f11 jam  0x00000000 , 0x000042bb 
- 00020612  0x00002f12 fetch  0x00000001 , 0x000042bc 
- 00020613  0x00002f13 beq  0x00000000 , 0x0000508d 
- 00020614  0x00002f14 rtn 
- 00020615  0x00002f17 setarg  0x00000000 
- 00020616  0x00002f18 store  0x00000002 , 0x000042b7 
- 00020617  0x00002f19 jam  0x00000000 , 0x000042bc 
- 00020618  0x00002f1a fetch  0x00000001 , 0x000042bb 
- 00020619  0x00002f1b beq  0x00000000 , 0x0000508d 
- 00020620  0x00002f1c rtn 
- 00020621  0x00002f1f jam  0x00000007 , 0x00000b7d 
- 00020622  0x00002f20 branch  0x00007c27 
- 00020623  0x00002f23 fetch  0x00000001 , 0x000002e6 
- 00020624  0x00002f24 set0  0x00000000 , 0x0000003f 
- 00020625  0x00002f25 store  0x00000001 , 0x000002e6 
- 00020626  0x00002f26 fetch  0x00000002 , 0x000042b7 
- 00020627  0x00002f27 rtn  0x00000034 
- 00020628  0x00002f28 call  0x000052c4 
- 00020629  0x00002f29 fetch  0x00000002 , 0x000042b7 
- 00020630  0x00002f2a copy  0x0000003f , 0x00000011 
- 00020631  0x00002f2b force  0x00000053 , 0x00000012 
- 00020632  0x00002f2c branch  0x000050a2 
- 00020633  0x00002f2e fetch  0x00000001 , 0x000002e6 
- 00020634  0x00002f2f set0  0x00000007 , 0x0000003f 
- 00020635  0x00002f30 store  0x00000001 , 0x000002e6 
- 00020636  0x00002f31 fetch  0x00000002 , 0x000042b5 
- 00020637  0x00002f32 rtn  0x00000034 
- 00020638  0x00002f33 call  0x000052c4 
- 00020639  0x00002f34 fetch  0x00000002 , 0x000042b5 
- 00020640  0x00002f35 copy  0x0000003f , 0x00000011 
- 00020641  0x00002f36 force  0x00000052 , 0x00000012 
- 00020642  0x00002f38 call  0x00005242 
- 00020643  0x00002f39 call  0x000052d0 
- 00020644  0x00002f3a force  0x00000006 , 0x0000003f 
- 00020645  0x00002f3b istore  0x00000001 , 0x00000005 
- 00020646  0x00002f3c fetch  0x00000001 , 0x000042be 
- 00020647  0x00002f3d istore  0x00000001 , 0x00000005 
- 00020648  0x00002f3e setarg  0x00000004 
- 00020649  0x00002f3f istore  0x00000002 , 0x00000005 
- 00020650  0x00002f40 copy  0x00000011 , 0x0000003f 
- 00020651  0x00002f41 istore  0x00000002 , 0x00000005 
- 00020652  0x00002f42 copy  0x00000012 , 0x0000003f 
- 00020653  0x00002f43 istore  0x00000002 , 0x00000005 
- 00020654  0x00002f44 force  0x00000008 , 0x00000002 
- 00020655  0x00002f45 branch  0x000050e9 
- 00020656  0x00002f48 set1  0x00000025 , 0x00000000 
- 00020657  0x00002f49 bpatch  0x0000001f , 0x00004023 
- 00020658  0x00002f4a call  0x00005242 
- 00020659  0x00002f4b call  0x000052d0 
- 00020660  0x00002f4c setarg  0x00000002 
- 00020661  0x00002f4d istore  0x00000001 , 0x00000005 
- 00020662  0x00002f4e fetch  0x00000001 , 0x000042be 
- 00020663  0x00002f4f istore  0x00000001 , 0x00000005 
- 00020664  0x00002f50 setarg  0x00000004 
- 00020665  0x00002f51 istore  0x00000002 , 0x00000005 
- 00020666  0x00002f52 copy  0x00000002 , 0x0000003f 
- 00020667  0x00002f53 istore  0x00000002 , 0x00000005 
- 00020668  0x00002f54 copy  0x0000000b , 0x0000003f 
- 00020669  0x00002f55 istore  0x00000002 , 0x00000005 
- 00020670  0x00002f56 arg  0x00000008 , 0x00000002 
- 00020671  0x00002f57 branch  0x000050e9 
- 00020672  0x00002f59 set1  0x00000025 , 0x00000000 
- 00020673  0x00002f5a bpatch  0x00000020 , 0x00004024 
- 00020674  0x00002f5b call  0x00005242 
- 00020675  0x00002f5c call  0x000052d0 
- 00020676  0x00002f5d setarg  0x00000004 
- 00020677  0x00002f5e istore  0x00000001 , 0x00000005 
- 00020678  0x00002f5f fetch  0x00000001 , 0x000042be 
- 00020679  0x00002f60 istore  0x00000001 , 0x00000005 
- 00020680  0x00002f61 setarg  0x00000008 
- 00020681  0x00002f62 istore  0x00000002 , 0x00000005 
- 00020682  0x00002f64 copy  0x00000002 , 0x0000003f 
- 00020683  0x00002f66 istore  0x00000002 , 0x00000005 
- 00020684  0x00002f67 setarg  0x00000000 
- 00020685  0x00002f68 istore  0x00000002 , 0x00000005 
- 00020686  0x00002f69 setarg  0x00000001 
- 00020687  0x00002f6a istore  0x00000001 , 0x00000005 
- 00020688  0x00002f6b setarg  0x00000002 
- 00020689  0x00002f6c istore  0x00000001 , 0x00000005 
- 00020690  0x00002f6d setarg  0x000003e3 
- 00020691  0x00002f6e istore  0x00000002 , 0x00000005 
- 00020692  0x00002f6f arg  0x0000000c , 0x00000002 
- 00020693  0x00002f70 branch  0x000050e9 
- 00020694  0x00002f72 set1  0x00000025 , 0x00000000 
- 00020695  0x00002f73 bpatch  0x00000021 , 0x00004024 
- 00020696  0x00002f74 call  0x00005242 
- 00020697  0x00002f75 call  0x000052d0 
- 00020698  0x00002f76 setarg  0x00000006 
- 00020699  0x00002f77 istore  0x00000001 , 0x00000005 
- 00020700  0x00002f78 fetch  0x00000001 , 0x000042be 
- 00020701  0x00002f79 increase  0x00000001 , 0x0000003f 
- 00020702  0x00002f7a copy  0x00000005 , 0x00000011 
- 00020703  0x00002f7b store  0x00000001 , 0x000042be 
- 00020704  0x00002f7c copy  0x00000011 , 0x00000005 
- 00020705  0x00002f7d istore  0x00000001 , 0x00000005 
- 00020706  0x00002f7e setarg  0x00000004 
- 00020707  0x00002f7f istore  0x00000002 , 0x00000005 
- 00020708  0x00002f80 copy  0x00000002 , 0x0000003f 
- 00020709  0x00002f81 istore  0x00000002 , 0x00000005 
- 00020710  0x00002f82 copy  0x0000000b , 0x0000003f 
- 00020711  0x00002f83 istore  0x00000002 , 0x00000005 
- 00020712  0x00002f84 arg  0x00000008 , 0x00000002 
- 00020713  0x00002f88 storet  0x00000002 , 0x000002d6 
- 00020714  0x00002f89 copy  0x00000002 , 0x0000003f 
- 00020715  0x00002f8a branch  0x0000526f , 0x00000034 
- 00020716  0x00002f8b call  0x000052ce 
- 00020717  0x00002f8c fetch  0x00000002 , 0x000002d6 
- 00020718  0x00002f8d istore  0x00000002 , 0x00000005 
- 00020719  0x00002f8e force  0x00000001 , 0x0000003f 
- 00020720  0x00002f8f istore  0x00000002 , 0x00000005 
- 00020721  0x00002f90 rtn 
- 00020722  0x00002f93 fetch  0x00000002 , 0x000002dc 
- 00020723  0x00002f94 branch  0x00003bf1 , 0x00000034 
- 00020724  0x00002f95 call  0x000052dc 
- 00020725  0x00002f96 fetch  0x00000002 , 0x000002dc 
- 00020726  0x00002f97 istore  0x00000002 , 0x00000005 
- 00020727  0x00002f98 fetch  0x00000002 , 0x000042b1 
- 00020728  0x00002f99 istore  0x00000002 , 0x00000005 
- 00020729  0x00002f9a rtn 
- 00020730  0x00002f9c set1  0x00000025 , 0x00000000 
- 00020731  0x00002f9d bpatch  0x00000022 , 0x00004024 
- 00020732  0x00002f9e fetch  0x00000002 , 0x000002cd 
- 00020733  0x00002f9f branch  0x00004dfc , 0x00000034 
- 00020734  0x00002fa0 fetch  0x00000001 , 0x000002cf 
- 00020735  0x00002fa1 beq  0x00000001 , 0x00005105 
- 00020736  0x00002fa2 beq  0x00000050 , 0x00004de7 
- 00020737  0x00002fa3 beq  0x00000051 , 0x00004df4 
- 00020738  0x00002fa4 beq  0x00000052 , 0x00004df2 
- 00020739  0x00002fa5 beq  0x00000053 , 0x00004df2 
- 00020740  0x00002fa6 branch  0x00004dfc 
- 00020741  0x00002fa9 set1  0x00000025 , 0x00000000 
- 00020742  0x00002faa bpatch  0x00000023 , 0x00004024 
- 00020743  0x00002fab call  0x000052c4 
- 00020744  0x00002fac force  0x00000000 , 0x00000012 
- 00020745  0x00002fad call  0x000052d0 
- 00020746  0x00002fae copy  0x0000003f , 0x00000005 
- 00020747  0x00002faf fetch  0x00000002 , 0x000002cd 
- 00020748  0x00002fb0 copy  0x0000003f , 0x00000013 
- 00020749  0x00002fb1 fetch  0x00000002 , 0x000002cb 
- 00020750  0x00002fb2 iforce  0x00000006 
- 00020751  0x00002fb4 call  0x00005115 
- 00020752  0x00002fb5 increase  0xfffffffc , 0x00000013 
- 00020753  0x00002fb6 nbranch  0x0000510f , 0x00000005 
- 00020754  0x00002fb7 copy  0x00000012 , 0x00000002 
- 00020755  0x00002fb8 call  0x000050e9 
- 00020756  0x00002fb9 branch  0x00004dfc 
- 00020757  0x00002fbc ifetch  0x00000001 , 0x00000006 
- 00020758  0x00002fbd beq  0x00000002 , 0x00005120 
- 00020759  0x00002fbe beq  0x00000001 , 0x00005123 
- 00020760  0x00002fbf beq  0x00000003 , 0x0000512d 
- 00020761  0x00002fc0 beq  0x00000005 , 0x00005168 
- 00020762  0x00002fc1 beq  0x00000004 , 0x00005199 
- 00020763  0x00002fc2 beq  0x00000007 , 0x0000521c 
- 00020764  0x00002fc3 beq  0x00000006 , 0x000051eb 
- 00020765  0x00002fc4 beq  0x00000008 , 0x00005058 
- 00020766  0x00002fc5 beq  0x0000000a , 0x00004e3a 
- 00020767  0x00002fc6 branch  0x00005236 
- 00020768  0x00002fc9 call  0x00007e1c 
- 00020769  0x00002fcb call  0x00007e21 
- 00020770  0x00002fcc branch  0x00004e5c 
- 00020771  0x00002fce ifetch  0x00000001 , 0x00000006 
- 00020772  0x00002fcf copy  0x0000003f , 0x00000007 
- 00020773  0x00002fd0 ifetch  0x00000002 , 0x00000006 
- 00020774  0x00002fd1 copy  0x0000003f , 0x00000011 
- 00020775  0x00002fd2 copy  0x00000013 , 0x0000003f 
- 00020776  0x00002fd3 isub  0x00000011 , 0x00000013 
- 00020777  0x00002fd5 ifetch  0x00000001 , 0x00000006 
- 00020778  0x00002fd6 increase  0xffffffff , 0x00000011 
- 00020779  0x00002fd7 nbranch  0x00005129 , 0x00000005 
- 00020780  0x00002fd8 rtn 
- 00020781  0x00002fda ifetch  0x00000001 , 0x00000006 
- 00020782  0x00002fdb copy  0x0000003f , 0x00000007 
- 00020783  0x00002fdc ifetch  0x00000002 , 0x00000006 
- 00020784  0x00002fdd copy  0x0000003f , 0x00000011 
- 00020785  0x00002fde ifetch  0x00000002 , 0x00000006 
- 00020786  0x00002fdf copy  0x0000003f , 0x0000000b 
- 00020787  0x00002fe0 ifetch  0x00000002 , 0x00000006 
- 00020788  0x00002fe1 copy  0x0000003f , 0x00000002 
- 00020789  0x00002fe2 ifetch  0x00000002 , 0x00000006 
- 00020790  0x00002fe3 sub  0x0000003f , 0x00000000 , 0x0000003e 
- 00020791  0x00002fe4 branch  0x0000513f , 0x00000005 
- 00020792  0x00002fe5 beq  0x00000002 , 0x0000513b 
- 00020793  0x00002fe6 beq  0x00000004 , 0x0000513b 
- 00020794  0x00002fe7 branch  0x0000513d 
- 00020795  0x00002fe9 jam  0x00000016 , 0x00000b7d 
- 00020796  0x00002fea call  0x00007c27 
- 00020797  0x00002fec ifetch  0x00000002 , 0x00000006 
- 00020798  0x00002fed branch  0x00005165 
- 00020799  0x00002fef call  0x00007e1c 
- 00020800  0x00002ff3 setarg  0x00000050 
- 00020801  0x00002ff4 isub  0x00000002 , 0x0000003e 
- 00020802  0x00002ff5 branch  0x0000514d , 0x00000005 
- 00020803  0x00002ff6 setarg  0x00000051 
- 00020804  0x00002ff7 isub  0x00000002 , 0x0000003e 
- 00020805  0x00002ff8 branch  0x00005153 , 0x00000005 
- 00020806  0x00002ff9 setarg  0x00000053 
- 00020807  0x00002ffa isub  0x00000002 , 0x0000003e 
- 00020808  0x00002ffb branch  0x0000515f , 0x00000005 
- 00020809  0x00002ffc setarg  0x00000052 
- 00020810  0x00002ffd isub  0x00000002 , 0x0000003e 
- 00020811  0x00002ffe branch  0x00005159 , 0x00000005 
- 00020812  0x00002fff branch  0x00005165 
- 00020813  0x00003001 copy  0x0000000b , 0x0000003f 
- 00020814  0x00003002 store  0x00000002 , 0x000042b1 
- 00020815  0x00003003 fetch  0x00000001 , 0x000042b9 
- 00020816  0x00003004 set1  0x00000001 
- 00020817  0x00003005 store  0x00000001 , 0x000042b9 
- 00020818  0x00003006 branch  0x00005164 
- 00020819  0x00003008 copy  0x0000000b , 0x0000003f 
- 00020820  0x00003009 store  0x00000002 , 0x000042b3 
- 00020821  0x0000300a fetch  0x00000001 , 0x000042ba 
- 00020822  0x0000300b set1  0x00000001 
- 00020823  0x0000300c store  0x00000001 , 0x000042ba 
- 00020824  0x0000300d branch  0x00005164 
- 00020825  0x0000300f copy  0x0000000b , 0x0000003f 
- 00020826  0x00003010 store  0x00000002 , 0x000042b5 
- 00020827  0x00003011 fetch  0x00000001 , 0x000042bb 
- 00020828  0x00003012 set1  0x00000001 
- 00020829  0x00003013 store  0x00000001 , 0x000042bb 
- 00020830  0x00003014 branch  0x00005164 
- 00020831  0x00003016 copy  0x0000000b , 0x0000003f 
- 00020832  0x00003017 store  0x00000002 , 0x000042b7 
- 00020833  0x00003018 fetch  0x00000001 , 0x000042bc 
- 00020834  0x00003019 set1  0x00000001 
- 00020835  0x0000301a store  0x00000001 , 0x000042bc 
- 00020836  0x0000301e call  0x00007e21 
- 00020837  0x00003020 copy  0x00000013 , 0x0000003f 
- 00020838  0x00003021 isub  0x00000011 , 0x00000013 
- 00020839  0x00003022 rtn 
- 00020840  0x00003025 ifetch  0x00000001 , 0x00000006 
- 00020841  0x00003026 copy  0x0000003f , 0x00000007 
- 00020842  0x00003027 ifetch  0x00000002 , 0x00000006 
- 00020843  0x00003028 copy  0x0000003f , 0x00000011 
- 00020844  0x00003029 copy  0x00000013 , 0x0000003f 
- 00020845  0x0000302a isub  0x00000011 , 0x00000013 
- 00020846  0x0000302b ifetch  0x00000002 , 0x00000006 
- 00020847  0x0000302c copy  0x0000003f , 0x0000000b 
- 00020848  0x0000302d ifetch  0x00000002 , 0x00000006 
- 00020849  0x0000302e ifetch  0x00000002 , 0x00000006 
- 00020850  0x0000302f nbranch  0x00005193 , 0x00000034 
- 00020851  0x00003030 call  0x00007e1c 
- 00020852  0x00003034 copy  0x0000000b , 0x00000002 
- 00020853  0x00003035 setarg  0x00000050 
- 00020854  0x00003036 isub  0x00000002 , 0x0000003e 
- 00020855  0x00003037 branch  0x00005181 , 0x00000005 
- 00020856  0x00003038 setarg  0x00000051 
- 00020857  0x00003039 isub  0x00000002 , 0x0000003e 
- 00020858  0x0000303a branch  0x00005185 , 0x00000005 
- 00020859  0x0000303b setarg  0x00000052 
- 00020860  0x0000303c isub  0x00000002 , 0x0000003e 
- 00020861  0x0000303d branch  0x00005189 , 0x00000005 
- 00020862  0x0000303e setarg  0x00000053 
- 00020863  0x0000303f isub  0x00000002 , 0x0000003e 
- 00020864  0x00003040 branch  0x0000518d , 0x00000005 
- 00020865  0x00003042 fetch  0x00000001 , 0x000042b9 
- 00020866  0x00003043 set1  0x00000005 
- 00020867  0x00003044 store  0x00000001 , 0x000042b9 
- 00020868  0x00003045 rtn 
- 00020869  0x00003047 fetch  0x00000001 , 0x000042ba 
- 00020870  0x00003048 set1  0x00000005 
- 00020871  0x00003049 store  0x00000001 , 0x000042ba 
- 00020872  0x0000304a rtn 
- 00020873  0x0000304c fetch  0x00000001 , 0x000042bb 
- 00020874  0x0000304d set1  0x00000005 
- 00020875  0x0000304e store  0x00000001 , 0x000042bb 
- 00020876  0x0000304f rtn 
- 00020877  0x00003051 fetch  0x00000001 , 0x000042bc 
- 00020878  0x00003052 set1  0x00000005 
- 00020879  0x00003053 store  0x00000001 , 0x000042bc 
- 00020880  0x00003054 jam  0x00000006 , 0x00000b7d 
- 00020881  0x00003055 branch  0x00007c27 
- 00020882  0x00003059 call  0x00007e21 
- 00020883  0x0000305b increase  0xfffffffa , 0x00000011 
- 00020884  0x0000305d branch  0x00005198 , 0x00000005 
- 00020885  0x0000305e increase  0x00000001 , 0x00000006 
- 00020886  0x0000305f increase  0xffffffff , 0x00000011 
- 00020887  0x00003060 branch  0x00005194 
- 00020888  0x00003062 rtn 
- 00020889  0x00003064 ifetch  0x00000001 , 0x00000006 
- 00020890  0x00003065 copy  0x0000003f , 0x00000007 
- 00020891  0x00003066 ifetch  0x00000002 , 0x00000006 
- 00020892  0x00003067 copy  0x0000003f , 0x00000011 
- 00020893  0x00003068 copy  0x00000013 , 0x0000003f 
- 00020894  0x00003069 isub  0x00000011 , 0x00000013 
- 00020895  0x0000306a ifetch  0x00000002 , 0x00000006 
- 00020896  0x0000306b increase  0x00000002 , 0x00000006 
- 00020897  0x0000306c copy  0x0000003f , 0x00000002 
- 00020898  0x0000306d setarg  0x00000005 
- 00020899  0x0000306e istore  0x00000001 , 0x00000005 
- 00020900  0x0000306f copy  0x00000007 , 0x0000003f 
- 00020901  0x00003070 istore  0x00000001 , 0x00000005 
- 00020902  0x00003071 increase  0x00000002 , 0x00000011 
- 00020903  0x00003072 copy  0x00000011 , 0x0000003f 
- 00020904  0x00003073 istore  0x00000002 , 0x00000005 
- 00020905  0x00003074 call  0x00007e1c 
- 00020906  0x00003075 setarg  0x00000050 
- 00020907  0x00003076 isub  0x00000002 , 0x0000003e 
- 00020908  0x00003077 branch  0x000051b7 , 0x00000005 
- 00020909  0x00003078 setarg  0x00000051 
- 00020910  0x00003079 isub  0x00000002 , 0x0000003e 
- 00020911  0x0000307a branch  0x000051c8 , 0x00000005 
- 00020912  0x0000307b setarg  0x00000052 
- 00020913  0x0000307c isub  0x00000002 , 0x0000003e 
- 00020914  0x0000307d branch  0x000051ce , 0x00000005 
- 00020915  0x0000307e setarg  0x00000053 
- 00020916  0x0000307f isub  0x00000002 , 0x0000003e 
- 00020917  0x00003080 branch  0x000051d4 , 0x00000005 
- 00020918  0x00003081 branch  0x000051d9 
- 00020919  0x00003083 fetch  0x00000001 , 0x000042b9 
- 00020920  0x00003084 set1  0x00000004 , 0x0000003f 
- 00020921  0x00003085 set1  0x00000003 , 0x0000003f 
- 00020922  0x00003086 store  0x00000001 , 0x000042b9 
- 00020923  0x00003087 bbit1  0x00000002 , 0x000051c5 
- 00020924  0x00003088 fetcht  0x00000001 , 0x000002e6 
- 00020925  0x00003089 set1  0x00000006 , 0x00000002 
- 00020926  0x0000308a storet  0x00000001 , 0x000002e6 
- 00020927  0x0000308b copy  0x00000007 , 0x0000003f 
- 00020928  0x0000308c increase  0x00000001 , 0x0000003f 
- 00020929  0x0000308d store  0x00000001 , 0x000002e8 
- 00020930  0x0000308e fetch  0x00000001 , 0x000042b9 
- 00020931  0x0000308f set1  0x00000002 , 0x0000003f 
- 00020932  0x00003090 store  0x00000001 , 0x000042b9 
- 00020933  0x00003092 fetch  0x00000002 , 0x000042b1 
- 00020934  0x00003093 store  0x00000002 , 0x000002e9 
- 00020935  0x00003094 branch  0x000051d9 
- 00020936  0x00003096 fetch  0x00000001 , 0x000042ba 
- 00020937  0x00003097 set1  0x00000004 , 0x0000003f 
- 00020938  0x00003098 set1  0x00000003 , 0x0000003f 
- 00020939  0x00003099 store  0x00000001 , 0x000042ba 
- 00020940  0x0000309a fetch  0x00000002 , 0x000042b3 
- 00020941  0x0000309b branch  0x000051d9 
- 00020942  0x0000309d fetch  0x00000001 , 0x000042bb 
- 00020943  0x0000309e set1  0x00000004 , 0x0000003f 
- 00020944  0x0000309f set1  0x00000003 , 0x0000003f 
- 00020945  0x000030a0 store  0x00000001 , 0x000042bb 
- 00020946  0x000030a1 fetch  0x00000002 , 0x000042b5 
- 00020947  0x000030a2 branch  0x000051d9 
- 00020948  0x000030a4 fetch  0x00000001 , 0x000042bc 
- 00020949  0x000030a5 set1  0x00000004 , 0x0000003f 
- 00020950  0x000030a6 set1  0x00000003 , 0x0000003f 
- 00020951  0x000030a7 store  0x00000001 , 0x000042bc 
- 00020952  0x000030a8 fetch  0x00000002 , 0x000042b7 
- 00020953  0x000030ac copy  0x0000003f , 0x0000000b 
- 00020954  0x000030ad call  0x00007e21 
- 00020955  0x000030af copy  0x0000000b , 0x0000003f 
- 00020956  0x000030b1 istore  0x00000002 , 0x00000005 
- 00020957  0x000030b2 force  0x00000000 , 0x0000003f 
- 00020958  0x000030b3 istore  0x00000002 , 0x00000005 
- 00020959  0x000030b4 force  0x00000000 , 0x0000003f 
- 00020960  0x000030b5 istore  0x00000002 , 0x00000005 
- 00020961  0x000030b6 force  0x0000000a , 0x0000003f 
- 00020962  0x000030b7 iadd  0x00000012 , 0x00000012 
- 00020963  0x000030b8 increase  0xfffffffa , 0x00000011 
- 00020964  0x000030ba branch  0x000051ea , 0x00000005 
- 00020965  0x000030bb ifetch  0x00000001 , 0x00000006 
- 00020966  0x000030bc istore  0x00000001 , 0x00000005 
- 00020967  0x000030bd increase  0x00000001 , 0x00000012 
- 00020968  0x000030be increase  0xffffffff , 0x00000011 
- 00020969  0x000030bf branch  0x000051e4 
- 00020970  0x000030c1 rtn 
- 00020971  0x000030c3 ifetch  0x00000001 , 0x00000006 
- 00020972  0x000030c4 copy  0x0000003f , 0x00000007 
- 00020973  0x000030c5 ifetch  0x00000002 , 0x00000006 
- 00020974  0x000030c6 copy  0x0000003f , 0x00000011 
- 00020975  0x000030c7 copy  0x00000013 , 0x0000003f 
- 00020976  0x000030c8 isub  0x00000011 , 0x00000013 
- 00020977  0x000030ca ifetch  0x00000002 , 0x00000006 
- 00020978  0x000030cb copy  0x0000003f , 0x00000011 
- 00020979  0x000030cc ifetch  0x00000002 , 0x00000006 
- 00020980  0x000030cd copy  0x0000003f , 0x0000000b 
- 00020981  0x000030ce call  0x00007e1c 
- 00020982  0x000030cf setarg  0x00000050 
- 00020983  0x000030d0 copy  0x00000011 , 0x00000002 
- 00020984  0x000030d1 isub  0x00000002 , 0x0000003e 
- 00020985  0x000030d2 branch  0x00005203 , 0x00000005 
- 00020986  0x000030d3 setarg  0x00000052 
- 00020987  0x000030d4 copy  0x00000011 , 0x00000002 
- 00020988  0x000030d5 isub  0x00000002 , 0x0000003e 
- 00020989  0x000030d6 branch  0x00005208 , 0x00000005 
- 00020990  0x000030d7 setarg  0x00000053 
- 00020991  0x000030d8 copy  0x00000011 , 0x00000002 
- 00020992  0x000030d9 isub  0x00000002 , 0x0000003e 
- 00020993  0x000030da branch  0x0000520a , 0x00000005 
- 00020994  0x000030db branch  0x0000520c 
- 00020995  0x000030dd setarg  0x00000000 
- 00020996  0x000030de store  0x00000002 , 0x000002dc 
- 00020997  0x000030df store  0x00000002 , 0x000042b1 
- 00020998  0x000030e0 store  0x00000001 , 0x000042b9 
- 00020999  0x000030e1 branch  0x0000520e 
- 00021000  0x000030e3 call  0x00005081 
- 00021001  0x000030e4 branch  0x0000520e 
- 00021002  0x000030e6 call  0x00005087 
- 00021003  0x000030ec branch  0x0000520e 
- 00021004  0x000030ee setarg  0x00000000 
- 00021005  0x000030ef store  0x00000002 , 0x000002e2 
- 00021006  0x000030f1 call  0x00007e21 
- 00021007  0x000030f2 setarg  0x00000007 
- 00021008  0x000030f3 istore  0x00000001 , 0x00000005 
- 00021009  0x000030f4 copy  0x00000007 , 0x0000003f 
- 00021010  0x000030f5 istore  0x00000001 , 0x00000005 
- 00021011  0x000030f6 setarg  0x00000004 
- 00021012  0x000030f7 istore  0x00000002 , 0x00000005 
- 00021013  0x000030f8 copy  0x00000011 , 0x0000003f 
- 00021014  0x000030f9 istore  0x00000002 , 0x00000005 
- 00021015  0x000030fa copy  0x0000000b , 0x0000003f 
- 00021016  0x000030fb istore  0x00000002 , 0x00000005 
- 00021017  0x000030fc force  0x00000008 , 0x0000003f 
- 00021018  0x000030fd iadd  0x00000012 , 0x00000012 
- 00021019  0x000030fe rtn 
- 00021020  0x00003101 ifetch  0x00000001 , 0x00000006 
- 00021021  0x00003102 copy  0x0000003f , 0x00000007 
- 00021022  0x00003103 ifetch  0x00000002 , 0x00000006 
- 00021023  0x00003104 copy  0x0000003f , 0x00000011 
- 00021024  0x00003105 ifetch  0x00000002 , 0x00000006 
- 00021025  0x00003106 copy  0x0000003f , 0x0000000b 
- 00021026  0x00003107 ifetch  0x00000002 , 0x00000006 
- 00021027  0x00003108 copy  0x0000003f , 0x00000002 
- 00021028  0x00003109 call  0x00007e1c 
- 00021029  0x0000310a fetch  0x00000001 , 0x000042be 
- 00021030  0x0000310b icompare  0x000000ff , 0x00000007 
- 00021031  0x0000310c nbranch  0x00005232 , 0x00000001 
- 00021032  0x0000310d setarg  0x00000050 
- 00021033  0x0000310e isub  0x00000002 , 0x0000003e 
- 00021034  0x0000310f branch  0x0000522f , 0x00000005 
- 00021035  0x00003110 setarg  0x00000051 
- 00021036  0x00003111 isub  0x00000002 , 0x0000003e 
- 00021037  0x00003112 branch  0x00005232 , 0x00000005 
- 00021038  0x00003113 branch  0x00005232 
- 00021039  0x00003115 jam  0x00000000 , 0x000042b1 
- 00021040  0x00003116 jam  0x00000000 , 0x000042b9 
- 00021041  0x00003117 branch  0x00005232 
- 00021042  0x0000311c call  0x00007e21 
- 00021043  0x0000311d copy  0x00000013 , 0x0000003f 
- 00021044  0x0000311e isub  0x00000011 , 0x00000013 
- 00021045  0x0000311f rtn 
- 00021046  0x00003122 setarg  0x00000001 
- 00021047  0x00003123 istore  0x00000001 , 0x00000005 
- 00021048  0x00003124 ifetch  0x00000001 , 0x00000006 
- 00021049  0x00003125 istore  0x00000001 , 0x00000005 
- 00021050  0x00003126 setarg  0x00000002 
- 00021051  0x00003127 istore  0x00000002 , 0x00000005 
- 00021052  0x00003128 setarg  0x00000000 
- 00021053  0x00003129 istore  0x00000002 , 0x00000005 
- 00021054  0x0000312a setarg  0x00000006 
- 00021055  0x0000312b iadd  0x00000012 , 0x00000012 
- 00021056  0x0000312c force  0x00000004 , 0x00000013 
- 00021057  0x0000312d rtn 
- 00021058  0x00003131 fetch  0x00000001 , 0x000042be 
- 00021059  0x00003132 increase  0x00000001 , 0x0000003f 
- 00021060  0x00003133 bne  0x00000000 , 0x00005246 
- 00021061  0x00003134 increase  0x00000001 , 0x0000003f 
- 00021062  0x00003136 store  0x00000001 , 0x000042be 
- 00021063  0x00003137 rtn 
- 00021064  0x00003142 set1  0x00000025 , 0x00000000 
- 00021065  0x00003143 bpatch  0x00000024 , 0x00004024 
- 00021066  0x00003144 arg  0x00000000 , 0x00000012 
- 00021067  0x00003145 call  0x0000527a 
- 00021068  0x00003146 nbranch  0x00003bf1 , 0x00000034 
- 00021069  0x00003147 call  0x00005287 
- 00021070  0x00003148 arg  0x00001800 , 0x00000012 
- 00021071  0x00003149 arg  0x00000000 , 0x00000007 
- 00021072  0x0000314b fetcht  0x00000001 , 0x000042bf 
- 00021073  0x0000314c qisolate1  0x00000002 
- 00021074  0x0000314d branch  0x00005258 , 0x00000001 
- 00021075  0x0000314e call  0x000052ab 
- 00021076  0x0000314f sub  0x0000000b , 0x00000000 , 0x0000003e 
- 00021077  0x00003150 branch  0x00005258 , 0x00000002 
- 00021078  0x00003151 call  0x00005292 
- 00021079  0x00003152 branch  0x0000525e 
- 00021080  0x00003154 increase  0x00000080 , 0x00000012 
- 00021081  0x00003155 increase  0x00000001 , 0x00000007 
- 00021082  0x00003156 setarg  0x00000008 
- 00021083  0x00003157 isub  0x00000007 , 0x0000003e 
- 00021084  0x00003158 branch  0x00005250 , 0x00000002 
- 00021085  0x00003159 arg  0x00000000 , 0x00000012 
- 00021086  0x0000315b copy  0x00000012 , 0x0000003f 
- 00021087  0x0000315c branch  0x00003bf1 , 0x00000034 
- 00021088  0x0000315d rtn 
- 00021089  0x00003166 set1  0x00000025 , 0x00000000 
- 00021090  0x00003167 bpatch  0x00000025 , 0x00004024 
- 00021091  0x00003168 call  0x00005280 
- 00021092  0x00003169 increase  0x00000001 , 0x00000006 
- 00021093  0x0000316a ifetch  0x00000002 , 0x00000006 
- 00021094  0x0000316b rtn 
- 00021095  0x00003172 set1  0x00000025 , 0x00000000 
- 00021096  0x00003173 bpatch  0x00000026 , 0x00004024 
- 00021097  0x00003174 call  0x00005280 
- 00021098  0x00003175 copy  0x00000006 , 0x00000005 
- 00021099  0x00003176 copy  0x00000006 , 0x00000002 
- 00021100  0x00003177 setarg  0x00000000 
- 00021101  0x00003178 istore  0x00000003 , 0x00000005 
- 00021102  0x00003179 rtn 
- 00021103  0x0000317f set1  0x00000025 , 0x00000000 
- 00021104  0x00003180 bpatch  0x00000027 , 0x00004024 
- 00021105  0x00003181 call  0x0000527e 
- 00021106  0x00003182 branch  0x00003bf1 , 0x00000034 
- 00021107  0x00003183 fetch  0x00000003 , 0x000042c6 
- 00021108  0x00003184 store  0x00000003 , 0x000042c9 
- 00021109  0x00003185 fetch  0x00000003 , 0x000042c3 
- 00021110  0x00003186 store  0x00000003 , 0x000042c6 
- 00021111  0x00003187 fetch  0x00000003 , 0x000042c0 
- 00021112  0x00003188 store  0x00000003 , 0x000042c3 
- 00021113  0x00003189 rtn 
- 00021114  0x00003190 fetch  0x00000003 , 0x000042c0 
- 00021115  0x00003191 rtn 
- 00021116  0x00003198 fetch  0x00000003 , 0x000042c3 
- 00021117  0x00003199 rtn 
- 00021118  0x000031a0 fetch  0x00000003 , 0x000042c9 
- 00021119  0x000031a1 rtn 
- 00021120  0x000031a7 call  0x0000527e 
- 00021121  0x000031a8 branch  0x00003bf1 , 0x00000034 
- 00021122  0x000031a9 arg  0x000042c0 , 0x00000006 
- 00021123  0x000031ab ifetch  0x00000003 , 0x00000006 
- 00021124  0x000031ac branch  0x00005283 , 0x00000034 
- 00021125  0x000031ad increase  0xfffffffd , 0x00000006 
- 00021126  0x000031ae rtn 
- 00021127  0x000031b6 set1  0x00000025 , 0x00000000 
- 00021128  0x000031b7 bpatch  0x00000028 , 0x00004025 
- 00021129  0x000031b8 arg  0x00000004 , 0x00000039 
- 00021130  0x000031b9 arg  0x000042c0 , 0x00000006 
- 00021131  0x000031ba arg  0x00000000 , 0x00000002 
- 00021132  0x000031bc ifetch  0x00000003 , 0x00000006 
- 00021133  0x000031bd and  0x0000003f , 0x000000ff , 0x0000003f 
- 00021134  0x000031be ior  0x00000002 , 0x00000002 
- 00021135  0x000031bf loop  0x0000528c 
- 00021136  0x000031c0 storet  0x00000001 , 0x000042bf 
- 00021137  0x000031c1 rtn 
- 00021138  0x000031ca set1  0x00000025 , 0x00000000 
- 00021139  0x000031cb bpatch  0x00000029 , 0x00004025 
- 00021140  0x000031cc call  0x0000527a 
- 00021141  0x000031cd nbranch  0x00003bf1 , 0x00000034 
- 00021142  0x000031ce call  0x0000527e 
- 00021143  0x000031cf branch  0x000052a0 , 0x00000034 
- 00021144  0x000031d0 fetch  0x00000003 , 0x000042c3 
- 00021145  0x000031d1 store  0x00000003 , 0x000042c0 
- 00021146  0x000031d2 ifetch  0x00000003 , 0x00000006 
- 00021147  0x000031d3 istore  0x00000003 , 0x00000005 
- 00021148  0x000031d4 ifetch  0x00000003 , 0x00000006 
- 00021149  0x000031d5 istore  0x00000003 , 0x00000005 
- 00021150  0x000031d6 setarg  0x00000000 
- 00021151  0x000031d7 istore  0x00000003 , 0x00000005 
- 00021152  0x000031d9 arg  0x00000000 , 0x00000002 
- 00021153  0x000031da copy  0x0000000b , 0x0000003f 
- 00021154  0x000031db iadd  0x00000007 , 0x0000003f 
- 00021155  0x000031dd qset1  0x00000002 
- 00021156  0x000031de increase  0x00000001 , 0x00000007 
- 00021157  0x000031df isub  0x00000007 , 0x0000003e 
- 00021158  0x000031e0 nbranch  0x000052a3 , 0x00000005 
- 00021159  0x000031e2 lshift8  0x00000012 , 0x0000003f 
- 00021160  0x000031e3 ior  0x00000002 , 0x0000003f 
- 00021161  0x000031e4 store  0x00000003 , 0x000042c9 
- 00021162  0x000031e5 rtn 
- 00021163  0x000031f0 set1  0x00000025 , 0x00000000 
- 00021164  0x000031f1 bpatch  0x0000002a , 0x00004025 
- 00021165  0x000031f2 call  0x00005287 
- 00021166  0x000031f3 copy  0x00000007 , 0x00000013 
- 00021167  0x000031f4 arg  0x00000000 , 0x00000002 
- 00021168  0x000031f5 arg  0x00000000 , 0x0000000b 
- 00021169  0x000031f8 copy  0x00000007 , 0x0000003f 
- 00021170  0x000031f9 beq  0x00000008 , 0x000052bc 
- 00021171  0x000031fa fetch  0x00000001 , 0x000042bf 
- 00021172  0x000031fb qisolate1  0x0000003f 
- 00021173  0x000031fc branch  0x000052bc , 0x00000001 
- 00021174  0x000031fd increase  0x00000080 , 0x00000002 
- 00021175  0x000031fe increase  0x00000001 , 0x00000007 
- 00021176  0x000031ff copy  0x00000011 , 0x0000003f 
- 00021177  0x00003200 isub  0x00000002 , 0x0000003e 
- 00021178  0x00003201 branch  0x000052bc , 0x00000005 
- 00021179  0x00003202 branch  0x000052b1 , 0x00000002 
- 00021180  0x00003204 copy  0x00000002 , 0x0000003f 
- 00021181  0x00003205 isub  0x00000011 , 0x0000003e 
- 00021182  0x00003206 nbranch  0x000052c2 , 0x00000002 
- 00021183  0x00003207 copy  0x00000007 , 0x0000003f 
- 00021184  0x00003208 copy  0x00000013 , 0x00000002 
- 00021185  0x00003209 isub  0x00000002 , 0x0000000b 
- 00021186  0x0000320b copy  0x00000013 , 0x00000007 
- 00021187  0x0000320c rtn 
- 00021188  0x00003210 set1  0x00000025 , 0x00000000 
- 00021189  0x00003211 bpatch  0x0000002b , 0x00004025 
- 00021190  0x00003212 arg  0x0000007f , 0x00000011 
- 00021191  0x00003213 call  0x00005248 
- 00021192  0x00003214 store  0x00000002 , 0x000002d2 
- 00021193  0x00003215 increase  0x00000004 , 0x0000003f 
- 00021194  0x00003216 store  0x00000002 , 0x000002d4 
- 00021195  0x00003217 setarg  0x00000000 
- 00021196  0x00003218 store  0x00000002 , 0x000002d6 
- 00021197  0x00003219 rtn 
- 00021198  0x0000321c fetch  0x00000002 , 0x000002d2 
- 00021199  0x0000321d branch  0x000052f2 
- 00021200  0x00003220 fetch  0x00000002 , 0x000002d4 
- 00021201  0x00003221 branch  0x000052f2 
- 00021202  0x00003225 set1  0x00000025 , 0x00000000 
- 00021203  0x00003226 bpatch  0x0000002c , 0x00004025 
- 00021204  0x00003227 arg  0x000002ff , 0x00000011 
- 00021205  0x00003228 call  0x00005248 
- 00021206  0x00003229 store  0x00000002 , 0x000002d8 
- 00021207  0x0000322a increase  0x00000004 , 0x0000003f 
- 00021208  0x0000322b store  0x00000002 , 0x000002da 
- 00021209  0x0000322c setarg  0x00000000 
- 00021210  0x0000322d store  0x00000002 , 0x000002dc 
- 00021211  0x0000322e rtn 
- 00021212  0x00003231 fetch  0x00000002 , 0x000002d8 
- 00021213  0x00003232 branch  0x000052f2 
- 00021214  0x00003235 fetch  0x00000002 , 0x000002da 
- 00021215  0x00003236 branch  0x000052f2 
- 00021216  0x0000323a set1  0x00000025 , 0x00000000 
- 00021217  0x0000323b bpatch  0x0000002d , 0x00004025 
- 00021218  0x0000323c call  0x00007e00 
- 00021219  0x0000323d jam  0x00000001 , 0x000002eb 
- 00021220  0x0000323e call  0x0000527a 
- 00021221  0x0000323f nrtn  0x00000034 
- 00021222  0x00003240 arg  0x0000007f , 0x00000011 
- 00021223  0x00003241 call  0x00005248 
- 00021224  0x00003242 store  0x00000002 , 0x000002de 
- 00021225  0x00003243 increase  0x00000004 , 0x0000003f 
- 00021226  0x00003244 store  0x00000002 , 0x000002e0 
- 00021227  0x00003245 setarg  0x00000000 
- 00021228  0x00003246 store  0x00000002 , 0x000002e2 
- 00021229  0x00003247 jam  0x00000000 , 0x000002eb 
- 00021230  0x00003248 branch  0x00007e0e 
- 00021231  0x0000324b fetch  0x00000002 , 0x000002de 
- 00021232  0x0000324c branch  0x000052f2 
- 00021233  0x0000324f fetch  0x00000002 , 0x000002e0 
- 00021234  0x00003252 branch  0x00003bf1 , 0x00000034 
- 00021235  0x00003253 copy  0x0000003f , 0x00000005 
- 00021236  0x00003254 rtn 
- 00021237  0x00003258 set1  0x00000025 , 0x00000000 
- 00021238  0x00003259 bpatch  0x0000002e , 0x00004025 
- 00021239  0x0000325a arg  0x00000000 , 0x00000012 
- 00021240  0x0000325b arg  0x000042c0 , 0x00000011 
- 00021241  0x0000325c increase  0xfffffffe , 0x00000011 
- 00021242  0x0000325e increase  0x00000002 , 0x00000011 
- 00021243  0x0000325f setarg  0x000042cc 
- 00021244  0x00003260 isub  0x00000011 , 0x0000003e 
- 00021245  0x00003261 branch  0x00005306 , 0x00000005 
- 00021246  0x00003262 ifetch  0x00000001 , 0x00000011 
- 00021247  0x00003263 increase  0x00000001 , 0x00000011 
- 00021248  0x00003264 branch  0x000052fa , 0x00000034 
- 00021249  0x00003265 ifetcht  0x00000002 , 0x00000011 
- 00021250  0x00003266 ifetch  0x00000002 , 0x00000002 
- 00021251  0x00003267 iadd  0x00000012 , 0x00000012 
- 00021252  0x00003268 increase  0x00000004 , 0x00000012 
- 00021253  0x00003269 branch  0x000052fa 
- 00021254  0x0000326b copy  0x00000012 , 0x0000003f 
- 00021255  0x0000326c rtn 
- 00021256  0x00003270 arg  0x0000000c , 0x00000007 
- 00021257  0x00003271 branch  0x00003dc2 
- 00021258  0x00003274 arg  0x0000000c , 0x00000007 
- 00021259  0x00003275 branch  0x00003dc6 
- 00021260  0x00003278 set1  0x00000025 , 0x00000000 
- 00021261  0x00003279 bpatch  0x0000002f , 0x00004025 
- 00021262  0x0000327a call  0x00005287 
- 00021263  0x0000327b fetch  0x00000001 , 0x000042bf 
- 00021264  0x0000327c rtn  0x00000034 
- 00021265  0x0000327d call  0x000052f5 
- 00021266  0x0000327e arg  0x00000100 , 0x00000002 
- 00021267  0x0000327f isub  0x00000002 , 0x0000003e 
- 00021268  0x00003280 branch  0x00005308 , 0x00000002 
- 00021269  0x00003281 call  0x0000530a 
- 00021270  0x00003282 arg  0x000042cc , 0x00000005 
- 00021271  0x00003283 arg  0x000042c0 , 0x00000011 
- 00021272  0x00003285 setarg  0x000042cc 
- 00021273  0x00003286 isub  0x00000011 , 0x0000003e 
- 00021274  0x00003287 rtn  0x00000005 
- 00021275  0x00003288 ifetch  0x00000001 , 0x00000011 
- 00021276  0x00003289 increase  0x00000001 , 0x00000011 
- 00021277  0x0000328a nbranch  0x00005321 , 0x00000034 
- 00021278  0x0000328b istore  0x00000002 , 0x00000005 
- 00021279  0x0000328c increase  0x00000002 , 0x00000011 
- 00021280  0x0000328d branch  0x00005318 
- 00021281  0x0000328f ifetch  0x00000002 , 0x00000011 
- 00021282  0x00003290 increase  0x00000002 , 0x00000011 
- 00021283  0x00003291 copy  0x0000003f , 0x00000006 
- 00021284  0x00003292 ifetch  0x00000002 , 0x00000006 
- 00021285  0x00003293 istore  0x00000002 , 0x00000005 
- 00021286  0x00003294 copy  0x0000003f , 0x00000039 
- 00021287  0x00003295 increase  0x00000002 , 0x00000039 
- 00021288  0x00003296 call  0x00007e45 
- 00021289  0x00003297 branch  0x00005318 
- 00021290  0x0000329a set1  0x00000025 , 0x00000000 
- 00021291  0x0000329b bpatch  0x00000030 , 0x00004026 
- 00021292  0x0000329c call  0x00005287 
- 00021293  0x0000329d fetch  0x00000001 , 0x000042bf 
- 00021294  0x0000329e rtn  0x00000034 
- 00021295  0x0000329f arg  0x000042c1 , 0x00000011 
- 00021296  0x000032a0 increase  0xfffffffd , 0x00000011 
- 00021297  0x000032a1 arg  0x000042cc , 0x00000006 
- 00021298  0x000032a3 increase  0x00000003 , 0x00000011 
- 00021299  0x000032a4 setarg  0x000042cd 
- 00021300  0x000032a5 isub  0x00000011 , 0x0000003e 
- 00021301  0x000032a6 rtn  0x00000005 
- 00021302  0x000032a7 ifetch  0x00000002 , 0x00000006 
- 00021303  0x000032a8 branch  0x00005332 , 0x00000034 
- 00021304  0x000032a9 increase  0x00000004 , 0x0000003f 
- 00021305  0x000032aa copy  0x0000003f , 0x00000039 
- 00021306  0x000032ab copy  0x00000006 , 0x00000012 
- 00021307  0x000032ac ifetch  0x00000002 , 0x00000011 
- 00021308  0x000032ad copy  0x0000003f , 0x00000005 
- 00021309  0x000032ae copy  0x00000012 , 0x00000006 
- 00021310  0x000032af increase  0xfffffffe , 0x00000006 
- 00021311  0x000032b0 call  0x00007e45 
- 00021312  0x000032b1 branch  0x00005332 
- 00021313  0x000032ba rtn  0x0000002b 
- 00021314  0x000032bb setarg  0x00000010 
- 00021315  0x000032bc store  0x00000002 , 0x000043d3 
- 00021316  0x000032bd setarg  0x00000010 
- 00021317  0x000032be store  0x00000002 , 0x000043d5 
- 00021318  0x000032bf rtn 
- 00021319  0x000032c2 arg  0x00000014 , 0x00000002 
- 00021320  0x000032c3 call  0x00005a88 
- 00021321  0x000032c4 add  0x00000006 , 0x00000001 , 0x0000003f 
- 00021322  0x000032c5 store  0x00000002 , 0x00000419 
- 00021323  0x000032c6 rtn 
- 00021324  0x000032c9 set1  0x00000025 , 0x00000000 
- 00021325  0x000032ca bpatch  0x00000032 , 0x00004026 
- 00021326  0x000032cb disable  0x0000002b 
- 00021327  0x000032cc jam  0x00000001 , 0x0000427e 
- 00021328  0x000032cd jam  0x00000001 , 0x000003d6 
- 00021329  0x000032ce jam  0x00000003 , 0x000003c0 
- 00021330  0x000032cf jam  0x00000001 , 0x000003d7 
- 00021331  0x000032d0 setarg  0xffffffff 
- 00021332  0x000032d1 store  0x00000002 , 0x000003da 
- 00021333  0x000032d2 force  0x00000000 , 0x0000003f 
- 00021334  0x000032d3 store  0x00000001 , 0x000003e3 
- 00021335  0x000032d4 store  0x00000001 , 0x000003d8 
- 00021336  0x000032d5 store  0x00000001 , 0x000003e4 
- 00021337  0x000032d6 store  0x00000003 , 0x0000420a 
- 00021338  0x000032d7 store  0x00000003 , 0x0000420d 
- 00021339  0x000032d8 store  0x00000005 , 0x00004465 
- 00021340  0x000032d9 set1  0x00000027 , 0x0000003f 
- 00021341  0x000032da store  0x00000005 , 0x0000446a 
- 00021342  0x000032db branch  0x00005a0b 
- 00021343  0x000032de set1  0x00000025 , 0x00000000 
- 00021344  0x000032df bpatch  0x00000033 , 0x00004026 
- 00021345  0x000032e0 enable  0x00000029 
- 00021346  0x000032e1 jam  0x00000003 , 0x000003c1 
- 00021347  0x000032e2 jam  0x00000001 , 0x000003fa 
- 00021348  0x000032e3 jam  0x00000001 , 0x000044bc 
- 00021349  0x000032e4 setarg  0x0000ffff 
- 00021350  0x000032e5 store  0x00000002 , 0x000044be 
- 00021351  0x000032e6 force  0x00000000 , 0x0000003f 
- 00021352  0x000032e7 store  0x00000005 , 0x0000446a 
- 00021353  0x000032e8 set1  0x00000027 , 0x0000003f 
- 00021354  0x000032e9 store  0x00000005 , 0x00004465 
- 00021355  0x000032ea branch  0x0000534c 
- 00021356  0x000032ee set1  0x00000025 , 0x00000000 
- 00021357  0x000032ef bpatch  0x00000034 , 0x00004026 
- 00021358  0x000032f0 disable  0x00000029 
- 00021359  0x000032f1 jam  0x00000001 , 0x000003c1 
- 00021360  0x000032f2 jam  0x00000000 , 0x000043d8 
- 00021361  0x000032f3 jam  0x00000000 , 0x000000a2 
- 00021362  0x000032f4 branch  0x0000534c 
- 00021363  0x000032fb call  0x000053d2 
- 00021364  0x000032fc call  0x000055d3 
- 00021365  0x000032fd call  0x00005a0e 
- 00021366  0x000032fe branch  0x000053d7 
- 00021367  0x00003301 set1  0x00000025 , 0x00000000 
- 00021368  0x00003302 bpatch  0x00000035 , 0x00004026 
- 00021369  0x00003303 call  0x000053d2 
- 00021370  0x00003304 call  0x00003e71 
- 00021371  0x00003305 fetch  0x00000001 , 0x000003c1 
- 00021372  0x00003306 beq  0x00000003 , 0x0000537e 
- 00021373  0x00003307 branch  0x00005395 
- 00021374  0x0000330e set1  0x00000025 , 0x00000000 
- 00021375  0x0000330f bpatch  0x00000036 , 0x00004026 
- 00021376  0x00003310 enable  0x00000029 
- 00021377  0x00003311 call  0x00005a02 
- 00021378  0x00003312 branch  0x00005392 , 0x00000002 
- 00021379  0x00003313 call  0x00003e28 
- 00021380  0x00003314 call  0x0000541c 
- 00021381  0x00003315 call  0x00005622 
- 00021382  0x00003316 disable  0x0000002d 
- 00021383  0x00003317 call  0x000054b2 
- 00021384  0x00003318 nrtn  0x0000002d 
- 00021385  0x00003319 set1  0x00000025 , 0x00000000 
- 00021386  0x0000331a bpatch  0x00000037 , 0x00004026 
- 00021387  0x0000331b fetch  0x00000001 , 0x00000005 
- 00021388  0x0000331c increase  0x00000001 , 0x0000003f 
- 00021389  0x0000331d store  0x00000001 , 0x00000005 
- 00021390  0x0000331e call  0x000055a2 
- 00021391  0x0000331f call  0x00005a99 
- 00021392  0x00003320 disable  0x00000029 
- 00021393  0x00003321 rtn 
- 00021394  0x00003324 call  0x000053ba 
- 00021395  0x00003325 disable  0x00000029 
- 00021396  0x00003326 rtn 
- 00021397  0x0000332c set1  0x00000025 , 0x00000000 
- 00021398  0x0000332d bpatch  0x00000038 , 0x00004027 
- 00021399  0x0000332e disable  0x0000002e 
- 00021400  0x0000332f call  0x00005a02 
- 00021401  0x00003330 branch  0x000053ba , 0x00000002 
- 00021402  0x00003331 call  0x00003e28 
- 00021403  0x00003332 call  0x0000541c 
- 00021404  0x00003333 call  0x00005478 
- 00021405  0x00003334 nbranch  0x000053ad , 0x0000002d 
- 00021406  0x00003336 set1  0x00000025 , 0x00000000 
- 00021407  0x00003337 bpatch  0x00000039 , 0x00004027 
- 00021408  0x00003338 call  0x000053c8 
- 00021409  0x00003339 call  0x000055a2 
- 00021410  0x0000333a call  0x00005622 
- 00021411  0x0000333b fetch  0x00000001 , 0x00000340 
- 00021412  0x0000333c bbit1  0x00000004 , 0x000053b4 
- 00021413  0x0000333d call  0x0000561a 
- 00021414  0x0000333e nbranch  0x000053b4 , 0x00000034 
- 00021415  0x00003340 set1  0x00000025 , 0x00000000 
- 00021416  0x00003341 bpatch  0x0000003a , 0x00004027 
- 00021417  0x00003342 call  0x000054bb 
- 00021418  0x00003344 call  0x00007c45 
- 00021419  0x00003345 fetch  0x00000001 , 0x000003e4 
- 00021420  0x00003346 bbit1  0x00000003 , 0x000053ba 
- 00021421  0x00003348 set1  0x00000025 , 0x00000000 
- 00021422  0x00003349 bpatch  0x0000003b , 0x00004027 
- 00021423  0x0000334a call  0x00007f44 
- 00021424  0x0000334b call  0x00005b19 
- 00021425  0x0000334c call  0x00005594 
- 00021426  0x0000334d call  0x00005576 
- 00021427  0x0000334e branch  0x000039ac 
- 00021428  0x00003351 set1  0x00000025 , 0x00000000 
- 00021429  0x00003352 bpatch  0x0000003c , 0x00004027 
- 00021430  0x00003353 enable  0x0000002e 
- 00021431  0x00003354 call  0x000054b2 
- 00021432  0x00003355 branch  0x0000539e , 0x0000002d 
- 00021433  0x00003356 branch  0x000053aa 
- 00021434  0x0000335c set1  0x00000025 , 0x00000000 
- 00021435  0x0000335d bpatch  0x0000003d , 0x00004027 
- 00021436  0x0000335e call  0x000053c0 
- 00021437  0x0000335f call  0x00003f1d 
- 00021438  0x00003360 jam  0x00000015 , 0x00000b7d 
- 00021439  0x00003361 branch  0x00007c27 
- 00021440  0x00003364 fetcht  0x00000001 , 0x000003d6 
- 00021441  0x00003365 jam  0x00000008 , 0x000002c0 
- 00021442  0x00003366 call  0x000048c4 
- 00021443  0x00003367 jam  0x00000000 , 0x000003d6 
- 00021444  0x00003368 jam  0x00000000 , 0x000003c1 
- 00021445  0x00003369 jam  0x00000000 , 0x000003c0 
- 00021446  0x0000336a jam  0x00000000 , 0x0000427e 
- 00021447  0x0000336b rtn 
- 00021448  0x0000336e fetch  0x00000001 , 0x00000005 
- 00021449  0x0000336f increase  0x00000001 , 0x0000003f 
- 00021450  0x00003370 store  0x00000001 , 0x00000005 
- 00021451  0x00003371 fetch  0x00000001 , 0x000003c0 
- 00021452  0x00003372 rtnbit1  0x00000003 
- 00021453  0x00003373 set1  0x00000003 
- 00021454  0x00003374 store  0x00000001 , 0x000003c0 
- 00021455  0x00003375 setarg  0x00000000 
- 00021456  0x00003376 store  0x00000004 , 0x000046f9 
- 00021457  0x00003377 rtn 
- 00021458  0x0000337d set1  0x00000025 , 0x00000000 
- 00021459  0x0000337e bpatch  0x0000003e , 0x00004027 
- 00021460  0x0000337f enable  0x00000036 
- 00021461  0x00003380 hjam  0x00000007 , 0x00008914 
- 00021462  0x00003381 branch  0x00003e28 
- 00021463  0x00003384 set1  0x00000025 , 0x00000000 
- 00021464  0x00003385 bpatch  0x0000003f , 0x00004027 
- 00021465  0x00003386 disable  0x00000036 
- 00021466  0x00003387 hjam  0x00000003 , 0x00008914 
- 00021467  0x00003388 arg  0x00000000 , 0x0000001b 
- 00021468  0x00003389 rtn 
- 00021469  0x0000338c disable  0x00000009 
- 00021470  0x0000338d disable  0x00000007 
- 00021471  0x0000338e fetch  0x00000003 , 0x000003e9 
- 00021472  0x0000338f iforce  0x0000000f 
- 00021473  0x00003390 fetch  0x00000001 , 0x00000016 
- 00021474  0x00003391 reverse  0x0000003f , 0x00000002 
- 00021475  0x00003392 set1  0x00000001 , 0x00000002 
- 00021476  0x00003393 rshift  0x00000002 , 0x0000000e 
- 00021477  0x00003394 rtn 
- 00021478  0x00003398 call  0x000053ee 
- 00021479  0x00003399 call  0x00003a82 
- 00021480  0x0000339a setarg  0x00000500 
- 00021481  0x0000339b call  0x00003bf3 
- 00021482  0x0000339c branch  0x00003a87 
- 00021483  0x0000339f branch  0x00003a98 , 0x0000002d 
- 00021484  0x000033a0 call  0x000053ee 
- 00021485  0x000033a1 branch  0x00003a91 
- 00021486  0x000033a3 set1  0x00000025 , 0x00000000 
- 00021487  0x000033a4 bpatch  0x00000040 , 0x00004028 
- 00021488  0x000033a5 call  0x00003a7a 
- 00021489  0x000033a6 fetch  0x00000001 , 0x0000040d 
- 00021490  0x000033a7 nbranch  0x00005402 , 0x00000034 
- 00021491  0x000033a8 fetch  0x00000001 , 0x00000016 
- 00021492  0x000033a9 sub  0x0000003f , 0x00000024 , 0x0000003e 
- 00021493  0x000033aa branch  0x000053fc , 0x00000002 
- 00021494  0x000033ab force  0x00000000 , 0x00000002 
- 00021495  0x000033ac rtneq  0x00000025 
- 00021496  0x000033ad force  0x00000018 , 0x00000002 
- 00021497  0x000033ae rtneq  0x00000026 
- 00021498  0x000033af force  0x0000004e , 0x00000002 
- 00021499  0x000033b0 rtn 
- 00021500  0x000033b3 sub  0x0000003f , 0x0000000a , 0x0000003e 
- 00021501  0x000033b4 branch  0x000053ff , 0x00000002 
- 00021502  0x000033b5 increase  0x00000001 , 0x0000003f 
- 00021503  0x000033b8 lshift  0x0000003f , 0x0000003f 
- 00021504  0x000033b9 add  0x0000003f , 0x00000002 , 0x00000002 
- 00021505  0x000033ba rtn 
- 00021506  0x000033bd fetch  0x00000001 , 0x00000016 
- 00021507  0x000033be lshift  0x0000003f , 0x00000002 
- 00021508  0x000033bf rtn 
- 00021509  0x000033c2 arg  0x000001f4 , 0x00000002 
- 00021510  0x000033c3 rtn  0x00000034 
- 00021511  0x000033c4 arg  0x000000fa , 0x00000002 
- 00021512  0x000033c5 rtneq  0x00000001 
- 00021513  0x000033c6 arg  0x00000096 , 0x00000002 
- 00021514  0x000033c7 rtneq  0x00000002 
- 00021515  0x000033c8 arg  0x00000064 , 0x00000002 
- 00021516  0x000033c9 rtneq  0x00000003 
- 00021517  0x000033ca arg  0x0000004b , 0x00000002 
- 00021518  0x000033cb rtneq  0x00000004 
- 00021519  0x000033cc arg  0x00000032 , 0x00000002 
- 00021520  0x000033cd rtneq  0x00000005 
- 00021521  0x000033ce arg  0x00000028 , 0x00000002 
- 00021522  0x000033cf rtneq  0x00000006 
- 00021523  0x000033d0 arg  0x00000014 , 0x00000002 
- 00021524  0x000033d1 rtn 
- 00021525  0x000033d6 setarg  0x008e89be 
- 00021526  0x000033d7 lshift8  0x0000003f , 0x0000003f 
- 00021527  0x000033d8 or_into  0x000000d6 , 0x0000003f 
- 00021528  0x000033d9 iforce  0x00000009 
- 00021529  0x000033da setarg  0x00555555 
- 00021530  0x000033db store  0x00000003 , 0x000003e9 
- 00021531  0x000033dc rtn 
- 00021532  0x000033df set1  0x00000025 , 0x00000000 
- 00021533  0x000033e0 bpatch  0x00000041 , 0x00004028 
- 00021534  0x000033e1 enable  0x00000010 
- 00021535  0x000033e2 fetch  0x00000004 , 0x000003e5 
- 00021536  0x000033e3 iforce  0x00000009 
- 00021537  0x000033e4 call  0x00005453 
- 00021538  0x000033e5 setarg  0x00000200 
- 00021539  0x000033e6 branch  0x00005426 , 0x00000029 
- 00021540  0x000033e7 fetch  0x00000002 , 0x000003ce 
- 00021541  0x000033e8 rshift  0x0000003f , 0x0000003f 
- 00021542  0x000033ea arg  0x00000500 , 0x00000002 
- 00021543  0x000033eb iadd  0x00000002 , 0x0000003f 
- 00021544  0x000033ec call  0x00003b7d 
- 00021545  0x000033ed deposit  0x0000001a 
- 00021546  0x000033ee store  0x00000006 , 0x00000412 
- 00021547  0x000033ef rtn 
- 00021548  0x000033f2 set1  0x00000025 , 0x00000000 
- 00021549  0x000033f3 bpatch  0x00000042 , 0x00004028 
- 00021550  0x000033f4 fetch  0x00000001 , 0x00000016 
- 00021551  0x000033f5 increase  0x00000001 , 0x0000003f 
- 00021552  0x000033f6 store  0x00000001 , 0x00000016 
- 00021553  0x000033f7 rtnne  0x00000028 
- 00021554  0x000033f8 jam  0x00000025 , 0x00000016 
- 00021555  0x000033f9 rtn 
- 00021556  0x000033fc set1  0x00000025 , 0x00000000 
- 00021557  0x000033fd bpatch  0x00000043 , 0x00004028 
- 00021558  0x000033fe add  0x00000011 , 0x00000001 , 0x00000006 
- 00021559  0x000033ff ifetch  0x00000001 , 0x00000006 
- 00021560  0x00003400 rtnbit0  0x00000000 
- 00021561  0x00003401 add  0x00000011 , 0x0000001a , 0x00000005 
- 00021562  0x00003402 ifetch  0x00000002 , 0x00000005 
- 00021563  0x00003403 increase  0x00000001 , 0x0000003f 
- 00021564  0x00003404 istore  0x00000002 , 0x00000005 
- 00021565  0x00003405 add  0x00000011 , 0x00000019 , 0x00000006 
- 00021566  0x00003406 ifetch  0x00000001 , 0x00000006 
- 00021567  0x00003407 add  0x00000011 , 0x00000018 , 0x00000005 
- 00021568  0x00003408 ifetcht  0x00000001 , 0x00000005 
- 00021569  0x00003409 iadd  0x00000002 , 0x0000003f 
- 00021570  0x0000340a sub  0x0000003f , 0x00000024 , 0x0000003e 
- 00021571  0x0000340b branch  0x00005445 , 0x00000002 
- 00021572  0x0000340c increase  0xffffffdb , 0x0000003f 
- 00021573  0x0000340e istore  0x00000001 , 0x00000005 
- 00021574  0x0000340f rtn 
- 00021575  0x00003413 set1  0x00000025 , 0x00000000 
- 00021576  0x00003414 bpatch  0x00000044 , 0x00004028 
- 00021577  0x00003415 fetch  0x00000005 , 0x000003f1 
- 00021578  0x00003416 force  0x00000000 , 0x00000002 
- 00021579  0x00003417 force  0x00000025 , 0x00000039 
- 00021580  0x00003419 bbit0  0x00000000 , 0x0000544e 
- 00021581  0x0000341a increase  0x00000001 , 0x00000002 
- 00021582  0x0000341c rshift  0x0000003f , 0x0000003f 
- 00021583  0x0000341d loop  0x0000544c 
- 00021584  0x0000341e add  0x00000002 , 0xffffffff , 0x0000003f 
- 00021585  0x0000341f store  0x00000001 , 0x000003e2 
- 00021586  0x00003420 rtn 
- 00021587  0x00003423 set1  0x00000025 , 0x00000000 
- 00021588  0x00003424 bpatch  0x00000045 , 0x00004028 
- 00021589  0x00003425 fetch  0x00000001 , 0x000003d8 
- 00021590  0x00003426 iforce  0x00000007 
- 00021591  0x00003427 fetcht  0x00000005 , 0x000003f1 
- 00021592  0x00003428 qisolate1  0x00000002 
- 00021593  0x00003429 branch  0x0000546b , 0x00000001 
- 00021594  0x0000342b set1  0x00000025 , 0x00000000 
- 00021595  0x0000342c bpatch  0x00000046 , 0x00004028 
- 00021596  0x0000342d fetch  0x00000001 , 0x000003e2 
- 00021597  0x0000342e isub  0x00000007 , 0x0000003f 
- 00021598  0x0000342f branch  0x00005461 , 0x00000002 
- 00021599  0x00003430 sub  0x0000003f , 0xffffffff , 0x00000007 
- 00021600  0x00003431 branch  0x0000545a 
- 00021601  0x00003433 copy  0x00000007 , 0x00000039 
- 00021602  0x00003434 force  0x00000000 , 0x00000007 
- 00021603  0x00003436 qisolate1  0x00000002 
- 00021604  0x00003437 branch  0x00005466 , 0x00000001 
- 00021605  0x00003438 increase  0x00000001 , 0x00000039 
- 00021606  0x0000343a deposit  0x00000039 
- 00021607  0x0000343b branch  0x0000546b , 0x00000034 
- 00021608  0x0000343c increase  0x00000001 , 0x00000007 
- 00021609  0x0000343d increase  0xffffffff , 0x00000039 
- 00021610  0x0000343e branch  0x00005463 
- 00021611  0x00003440 deposit  0x00000007 
- 00021612  0x00003441 store  0x00000001 , 0x00000016 
- 00021613  0x00003442 rtn 
- 00021614  0x00003446 branch  0x00005471 , 0x00000029 
- 00021615  0x00003447 until  0x0000003e , 0x00000003 
- 00021616  0x00003448 rtn 
- 00021617  0x0000344b arg  0x00000ea0 , 0x0000000b 
- 00021618  0x0000344c until  0x00000023 , 0x00000026 
- 00021619  0x0000344d rtn 
- 00021620  0x00003450 disable  0x00000010 
- 00021621  0x00003451 fetch  0x00000002 , 0x000043d5 
- 00021622  0x00003452 copy  0x0000003f , 0x0000000b 
- 00021623  0x00003453 branch  0x0000547e 
- 00021624  0x00003457 set1  0x00000025 , 0x00000000 
- 00021625  0x00003458 bpatch  0x00000047 , 0x00004028 
- 00021626  0x00003459 enable  0x00000010 
- 00021627  0x0000345a fetch  0x00000002 , 0x000003ce 
- 00021628  0x0000345b fetcht  0x00000004 , 0x000046f9 
- 00021629  0x0000345c iadd  0x00000002 , 0x0000000b 
- 00021630  0x0000345e call  0x000053e6 
- 00021631  0x00003460 set1  0x00000025 , 0x00000000 
- 00021632  0x00003461 bpatch  0x00000048 , 0x00004029 
- 00021633  0x00003462 call  0x000053dd 
- 00021634  0x00003463 disable  0x0000002d 
- 00021635  0x00003464 enable  0x0000000d 
- 00021636  0x00003465 enable  0x00000021 
- 00021637  0x00003466 disable  0x00000020 
- 00021638  0x00003467 copy  0x0000000b , 0x0000001b 
- 00021639  0x00003468 correlate  0x0000003e , 0x00000003 
- 00021640  0x00003469 branch  0x0000548b , 0x0000002e 
- 00021641  0x0000346a copy  0x0000001a , 0x00000002 
- 00021642  0x0000346b storet  0x00000006 , 0x0000009c 
- 00021643  0x0000346d nbranch  0x0000375c , 0x00000018 
- 00021644  0x0000346e branch  0x00005492 , 0x0000002e 
- 00021645  0x0000346f arg  0x000001e0 , 0x00000029 
- 00021646  0x00003470 copy  0x00000021 , 0x00000028 
- 00021647  0x00003471 fetch  0x00000001 , 0x000003c0 
- 00021648  0x00003472 bbit0  0x00000003 , 0x00005492 
- 00021649  0x00003473 call  0x00003cb6 , 0x0000002b 
- 00021650  0x00003475 set1  0x00000025 , 0x00000000 
- 00021651  0x00003476 bpatch  0x00000049 , 0x00004029 
- 00021652  0x00003477 call  0x00003af3 
- 00021653  0x00003478 enable  0x00000007 
- 00021654  0x00003479 enable  0x00000009 
- 00021655  0x0000347a parse  0x00000003 , 0x00000000 , 0x00000008 
- 00021656  0x0000347b rshift3  0x0000000c , 0x0000003f 
- 00021657  0x0000347c store  0x00000001 , 0x00000340 
- 00021658  0x0000347d parse  0x00000003 , 0x00000000 , 0x00000008 
- 00021659  0x0000347e rshift3  0x0000000c , 0x0000003f 
- 00021660  0x0000347f istore  0x00000001 , 0x00000005 
- 00021661  0x00003480 and  0x0000003f , 0x0000003f , 0x00000039 
- 00021662  0x00003481 branch  0x000054a3 , 0x00000005 
- 00021663  0x00003484 parse  0x00000003 , 0x00000000 , 0x00000008 
- 00021664  0x00003485 rshift3  0x0000000c , 0x0000003f 
- 00021665  0x00003486 istore  0x00000001 , 0x00000005 
- 00021666  0x00003487 loop  0x0000549f 
- 00021667  0x0000348a set1  0x00000025 , 0x00000000 
- 00021668  0x0000348b bpatch  0x0000004a , 0x00004029 
- 00021669  0x0000348c parse  0x00000003 , 0x00000000 , 0x00000018 
- 00021670  0x0000348d enable  0x00000010 
- 00021671  0x0000348e arg  0x00000664 , 0x0000001b 
- 00021672  0x0000348f rshift32  0x0000003f , 0x0000003f 
- 00021673  0x00003490 rshift16  0x0000003f , 0x0000003f 
- 00021674  0x00003491 istore  0x00000003 , 0x00000005 
- 00021675  0x00003492 branch  0x0000375c , 0x00000006 
- 00021676  0x00003493 enable  0x0000002d 
- 00021677  0x00003494 fetch  0x00000001 , 0x00000017 
- 00021678  0x00003495 add  0x0000003f , 0x00000002 , 0x00000011 
- 00021679  0x00003496 call  0x00003ab6 
- 00021680  0x00003497 disable  0x0000000d 
- 00021681  0x00003498 branch  0x00003a7a 
- 00021682  0x0000349b set1  0x00000025 , 0x00000000 
- 00021683  0x0000349c bpatch  0x0000004b , 0x00004029 
- 00021684  0x0000349d call  0x000054bd 
- 00021685  0x0000349e fetcht  0x00000001 , 0x00000017 
- 00021686  0x0000349f call  0x00003a82 
- 00021687  0x000034a0 call  0x00003a87 
- 00021688  0x000034a1 enable  0x00000010 
- 00021689  0x000034a2 arg  0x00001388 , 0x0000000b 
- 00021690  0x000034a3 branch  0x0000547f 
- 00021691  0x000034a6 call  0x000054bd 
- 00021692  0x000034a7 branch  0x0000375c 
- 00021693  0x000034aa set1  0x00000025 , 0x00000000 
- 00021694  0x000034ab bpatch  0x0000004c , 0x00004029 
- 00021695  0x000034ac call  0x000053dd 
- 00021696  0x000034ad call  0x000053eb 
- 00021697  0x000034ae set1  0x00000000 , 0x00000015 
- 00021698  0x000034af enable  0x0000001d 
- 00021699  0x000034b0 enable  0x00000020 
- 00021700  0x000034b1 disable  0x00000021 
- 00021701  0x000034b2 call  0x0000546e 
- 00021702  0x000034b3 rshift16  0x00000009 , 0x0000003f 
- 00021703  0x000034b4 rshift8  0x0000003f , 0x0000003f 
- 00021704  0x000034b5 rshift4  0x0000003f , 0x0000003f 
- 00021705  0x000034b6 inject  0x00000003 , 0x00000028 
- 00021706  0x000034b7 enable  0x00000007 
- 00021707  0x000034b8 enable  0x00000009 
- 00021708  0x000034b9 set1  0x00000025 , 0x00000000 
- 00021709  0x000034ba bpatch  0x0000004d , 0x00004029 
- 00021710  0x000034bb fetch  0x00000001 , 0x0000443e 
- 00021711  0x000034bc inject  0x00000003 , 0x00000008 
- 00021712  0x000034bd ifetch  0x00000001 , 0x00000006 
- 00021713  0x000034be and  0x0000003f , 0x0000003f , 0x00000039 
- 00021714  0x000034bf inject  0x00000003 , 0x00000008 
- 00021715  0x000034c0 branch  0x000054d7 , 0x00000005 
- 00021716  0x000034c2 ifetch  0x00000001 , 0x00000006 
- 00021717  0x000034c3 inject  0x00000003 , 0x00000008 
- 00021718  0x000034c4 loop  0x000054d4 
- 00021719  0x000034c7 enable  0x00000008 
- 00021720  0x000034c8 inject  0x00000003 , 0x00000018 
- 00021721  0x000034c9 disable  0x00000008 
- 00021722  0x000034ca until  0x0000003e , 0x00000027 
- 00021723  0x000034cb nop  0x00000064 
- 00021724  0x000034cc disable  0x0000001d 
- 00021725  0x000034cd rtn 
- 00021726  0x000034d0 set1  0x00000025 , 0x00000000 
- 00021727  0x000034d1 bpatch  0x0000004e , 0x00004029 
- 00021728  0x000034d2 fetch  0x00000001 , 0x000044db 
- 00021729  0x000034d3 beq  0x00000001 , 0x000054ef 
- 00021730  0x000034d4 fetch  0x00000001 , 0x000044dc 
- 00021731  0x000034d5 lshift4  0x0000003f , 0x0000003f 
- 00021732  0x000034d6 lshift2  0x0000003f , 0x0000003f 
- 00021733  0x000034d7 store  0x00000001 , 0x0000443e 
- 00021734  0x000034d8 fetcht  0x00000001 , 0x000043d9 
- 00021735  0x000034d9 add  0x00000002 , 0x00000006 , 0x0000003f 
- 00021736  0x000034da store  0x00000001 , 0x0000443f 
- 00021737  0x000034db fetch  0x00000006 , 0x000044f9 
- 00021738  0x000034dc store  0x00000006 , 0x00004440 
- 00021739  0x000034dd copy  0x00000002 , 0x00000039 
- 00021740  0x000034de arg  0x000043da , 0x00000006 
- 00021741  0x000034df call  0x00007e45 
- 00021742  0x000034e0 branch  0x000054ff 
- 00021743  0x000034e2 fetcht  0x00000002 , 0x000044c2 
- 00021744  0x000034e3 call  0x00005866 
- 00021745  0x000034e4 copy  0x00000011 , 0x00000005 
- 00021746  0x000034e5 setarg  0x00000001 
- 00021747  0x000034e6 istore  0x00000001 , 0x00000005 
- 00021748  0x000034e7 fetch  0x00000001 , 0x000044dd 
- 00021749  0x000034e8 lshift4  0x0000003f , 0x0000003f 
- 00021750  0x000034e9 lshift2  0x0000003f , 0x0000003f 
- 00021751  0x000034ea increase  0x00000001 , 0x0000003f 
- 00021752  0x000034eb store  0x00000001 , 0x0000443e 
- 00021753  0x000034ec setarg  0x0000000c 
- 00021754  0x000034ed store  0x00000001 , 0x0000443f 
- 00021755  0x000034ee fetch  0x00000006 , 0x000044f9 
- 00021756  0x000034ef store  0x00000006 , 0x00004440 
- 00021757  0x000034f0 fetch  0x00000006 , 0x00004274 
- 00021758  0x000034f1 istore  0x00000006 , 0x00000005 
- 00021759  0x000034f3 set1  0x00000025 , 0x00000000 
- 00021760  0x000034f4 bpatch  0x0000004f , 0x00004029 
- 00021761  0x000034f5 fetch  0x00000001 , 0x00000000 
- 00021762  0x000034f6 increase  0x00000001 , 0x0000003f 
- 00021763  0x000034f7 store  0x00000001 , 0x00000000 
- 00021764  0x000034f8 arg  0x00000708 , 0x0000001b 
- 00021765  0x000034f9 disable  0x0000002d 
- 00021766  0x000034fa branch  0x000054b2 
- 00021767  0x000034fd set1  0x00000025 , 0x00000000 
- 00021768  0x000034fe bpatch  0x00000050 , 0x0000402a 
- 00021769  0x000034ff fetch  0x00000001 , 0x000044f6 
- 00021770  0x00003500 rtnne  0x00000001 , 0x0000003f 
- 00021771  0x00003501 fetch  0x00000001 , 0x00000000 
- 00021772  0x00003502 increase  0x00000001 , 0x0000003f 
- 00021773  0x00003503 store  0x00000001 , 0x00000000 
- 00021774  0x00003504 arg  0x00000c03 , 0x00000002 
- 00021775  0x00003505 fetch  0x00000001 , 0x000044f7 
- 00021776  0x00003506 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
- 00021777  0x00003507 copy  0x00000011 , 0x0000003f 
- 00021778  0x00003508 nsetflag  0x00000034 , 0x00000007 , 0x00000002 
- 00021779  0x00003509 storet  0x00000002 , 0x0000443e 
- 00021780  0x0000350a fetch  0x00000006 , 0x000044f9 
- 00021781  0x0000350b istore  0x00000006 , 0x00000005 
- 00021782  0x0000350c fetch  0x00000006 , 0x000003d0 
- 00021783  0x0000350d istore  0x00000006 , 0x00000005 
- 00021784  0x0000350e branch  0x000054b2 
- 00021785  0x00003512 set1  0x00000025 , 0x00000000 
- 00021786  0x00003513 bpatch  0x00000051 , 0x0000402a 
- 00021787  0x00003514 arg  0x00000004 , 0x00000002 
- 00021788  0x00003515 fetch  0x00000001 , 0x000044dc 
- 00021789  0x00003516 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
- 00021790  0x00003517 storet  0x00000001 , 0x0000443e 
- 00021791  0x00003518 fetcht  0x00000001 , 0x000043f9 
- 00021792  0x00003519 add  0x00000002 , 0x00000006 , 0x0000003f 
- 00021793  0x0000351a store  0x00000001 , 0x0000443f 
- 00021794  0x0000351b fetch  0x00000006 , 0x000044f9 
- 00021795  0x0000351c store  0x00000006 , 0x00004440 
- 00021796  0x0000351d arg  0x000043fa , 0x00000006 
- 00021797  0x0000351e copy  0x00000002 , 0x00000039 
- 00021798  0x0000351f call  0x00007e45 
- 00021799  0x00003520 branch  0x000054bb 
- 00021800  0x00003524 set1  0x00000025 , 0x00000000 
- 00021801  0x00003525 bpatch  0x00000052 , 0x0000402a 
- 00021802  0x00003526 force  0xffffffff , 0x0000003f 
- 00021803  0x00003527 setsect  0x00000002 , 0x00000001 
- 00021804  0x00003528 store  0x00000005 , 0x000003f1 
- 00021805  0x00003529 call  0x00005447 
- 00021806  0x0000352a force  0x00000004 , 0x00000039 
- 00021807  0x0000352b arg  0x000003e5 , 0x00000005 
- 00021808  0x0000352c call  0x00006227 
- 00021809  0x0000352d fetch  0x00000002 , 0x000044f4 
- 00021810  0x0000352e store  0x00000002 , 0x000003ef 
- 00021811  0x00003530 random  0x0000003f 
- 00021812  0x00003531 and_into  0x0000000f , 0x0000003f 
- 00021813  0x00003532 sub  0x0000003f , 0x00000004 , 0x0000003e 
- 00021814  0x00003533 branch  0x00005533 , 0x00000002 
- 00021815  0x00003534 store  0x00000001 , 0x000003d9 
- 00021816  0x00003535 store  0x00000001 , 0x00000682 
- 00021817  0x00003536 set1  0x00000025 , 0x00000000 
- 00021818  0x00003537 bpatch  0x00000053 , 0x0000402a 
- 00021819  0x00003538 fetcht  0x00000002 , 0x000043d0 
- 00021820  0x00003539 storet  0x00000002 , 0x000003c2 
- 00021821  0x0000353a copy  0x00000002 , 0x00000013 
- 00021822  0x0000353b add  0x00000022 , 0x00000007 , 0x0000003f 
- 00021823  0x0000353c idiv  0x00000013 
- 00021824  0x0000353d call  0x00007efd 
- 00021825  0x0000353e remainder  0x00000011 
- 00021826  0x0000353f isub  0x00000011 , 0x0000003f 
- 00021827  0x00003540 iadd  0x00000013 , 0x0000003f 
- 00021828  0x00003541 fetcht  0x00000002 , 0x000043ce 
- 00021829  0x00003542 iadd  0x00000002 , 0x0000003f 
- 00021830  0x00003543 store  0x00000004 , 0x000003c4 
- 00021831  0x00003544 isub  0x00000022 , 0x00000011 
- 00021832  0x00003545 increase  0xfffffffa , 0x00000011 
- 00021833  0x00003546 arg  0x00002205 , 0x00000012 
- 00021834  0x00003547 fetch  0x00000001 , 0x000044ed 
- 00021835  0x00003548 nsetflag  0x00000034 , 0x00000006 , 0x00000012 
- 00021836  0x00003549 fetch  0x00000001 , 0x000044e6 
- 00021837  0x0000354a nsetflag  0x00000034 , 0x00000007 , 0x00000012 
- 00021838  0x0000354b copy  0x00000012 , 0x0000003f 
- 00021839  0x0000354c store  0x00000002 , 0x0000443e 
- 00021840  0x0000354d fetch  0x00000006 , 0x000044f9 
- 00021841  0x0000354e istore  0x00000006 , 0x00000005 
- 00021842  0x0000354f fetch  0x00000006 , 0x000003d0 
- 00021843  0x00003550 istore  0x00000006 , 0x00000005 
- 00021844  0x00003551 fetch  0x00000004 , 0x000003e5 
- 00021845  0x00003552 istore  0x00000004 , 0x00000005 
- 00021846  0x00003553 random  0x0000003f 
- 00021847  0x00003554 istore  0x00000002 , 0x00000005 
- 00021848  0x00003555 random  0x0000003f 
- 00021849  0x00003556 istore  0x00000001 , 0x00000005 
- 00021850  0x00003557 force  0x00000002 , 0x0000003f 
- 00021851  0x00003558 istore  0x00000001 , 0x00000005 
- 00021852  0x00003559 rshift2  0x00000011 , 0x0000003f 
- 00021853  0x0000355a istore  0x00000002 , 0x00000005 
- 00021854  0x0000355b rshift2  0x00000013 , 0x0000003f 
- 00021855  0x0000355c istore  0x00000002 , 0x00000005 
- 00021856  0x0000355d set1  0x00000025 , 0x00000000 
- 00021857  0x0000355e bpatch  0x00000054 , 0x0000402a 
- 00021858  0x0000355f fetch  0x00000002 , 0x000044f2 
- 00021859  0x00003560 istore  0x00000002 , 0x00000005 
- 00021860  0x00003561 fetch  0x00000002 , 0x000044f4 
- 00021861  0x00003562 istore  0x00000002 , 0x00000005 
- 00021862  0x00003563 fetch  0x00000005 , 0x000003f1 
- 00021863  0x00003564 istore  0x00000005 , 0x00000005 
- 00021864  0x00003565 fetch  0x00000001 , 0x000003d9 
- 00021865  0x00003566 arg  0x000000a0 , 0x00000002 
- 00021866  0x00003567 ior  0x00000002 , 0x0000003f 
- 00021867  0x00003568 istore  0x00000001 , 0x00000005 
- 00021868  0x00003569 call  0x000054bb 
- 00021869  0x0000356a setarg  0x0000443e 
- 00021870  0x0000356b add  0x0000003f , 0x00000012 , 0x00000006 
- 00021871  0x0000356c ifetch  0x00000003 , 0x00000006 
- 00021872  0x0000356d store  0x00000003 , 0x000003e9 
- 00021873  0x0000356e rtn 
- 00021874  0x00003571 set1  0x00000025 , 0x00000000 
- 00021875  0x00003572 bpatch  0x00000055 , 0x0000402a 
- 00021876  0x00003573 disable  0x00000029 
- 00021877  0x00003574 branch  0x00005415 
- 00021878  0x00003579 set1  0x00000025 , 0x00000000 
- 00021879  0x0000357a bpatch  0x00000056 , 0x0000402a 
- 00021880  0x0000357b fetch  0x00000001 , 0x000003c0 
- 00021881  0x0000357c rtnbit0  0x00000005 
- 00021882  0x0000357d fetch  0x00000002 , 0x000003da 
- 00021883  0x0000357e fetcht  0x00000002 , 0x000003e0 
- 00021884  0x0000357f isub  0x00000002 , 0x0000003f 
- 00021885  0x00003580 nrtn  0x00000002 
- 00021886  0x00003581 fetch  0x00000001 , 0x000003c0 
- 00021887  0x00003582 set0  0x00000005 , 0x0000003f 
- 00021888  0x00003583 set0  0x00000003 , 0x0000003f 
- 00021889  0x00003584 store  0x00000001 , 0x000003c0 
- 00021890  0x00003585 fetch  0x00000004 , 0x000003c4 
- 00021891  0x00003586 fetcht  0x00000002 , 0x000003c2 
- 00021892  0x00003587 isub  0x00000002 , 0x00000011 
- 00021893  0x00003588 set1  0x00000025 , 0x00000000 
- 00021894  0x00003589 bpatch  0x00000057 , 0x0000402a 
- 00021895  0x0000358a fetch  0x00000001 , 0x00004434 
- 00021896  0x0000358b store  0x00000001 , 0x000003ec 
- 00021897  0x0000358c ifetcht  0x00000002 , 0x00000006 
- 00021898  0x0000358d ifetch  0x00000002 , 0x00000006 
- 00021899  0x0000358e lshift2  0x0000003f , 0x0000003f 
- 00021900  0x0000358f store  0x00000002 , 0x000003c2 
- 00021901  0x00003590 lshift2  0x00000002 , 0x00000002 
- 00021902  0x00003591 iadd  0x00000002 , 0x0000003f 
- 00021903  0x00003592 ifetcht  0x00000004 , 0x00000006 
- 00021904  0x00003593 storet  0x00000004 , 0x000003ed 
- 00021905  0x00003594 iadd  0x00000011 , 0x0000003f 
- 00021906  0x00003595 store  0x00000004 , 0x000003c4 
- 00021907  0x00003596 branch  0x00005a2b 
- 00021908  0x00003599 set1  0x00000025 , 0x00000000 
- 00021909  0x0000359a bpatch  0x00000058 , 0x0000402b 
- 00021910  0x0000359b fetch  0x00000001 , 0x000003c0 
- 00021911  0x0000359c rtnbit0  0x00000006 
- 00021912  0x0000359d fetch  0x00000002 , 0x000003da 
- 00021913  0x0000359e fetcht  0x00000002 , 0x000003e0 
- 00021914  0x0000359f isub  0x00000002 , 0x0000003f 
- 00021915  0x000035a0 nrtn  0x00000002 
- 00021916  0x000035a1 fetch  0x00000001 , 0x000003c0 
- 00021917  0x000035a2 set0  0x00000006 , 0x0000003f 
- 00021918  0x000035a3 store  0x00000001 , 0x000003c0 
- 00021919  0x000035a4 fetch  0x00000005 , 0x0000442f 
- 00021920  0x000035a5 store  0x00000005 , 0x000003f1 
- 00021921  0x000035a6 branch  0x00005447 
- 00021922  0x000035aa set1  0x00000025 , 0x00000000 
- 00021923  0x000035ab bpatch  0x00000059 , 0x0000402b 
- 00021924  0x000035ac call  0x00005a0b 
- 00021925  0x000035ad call  0x000055b7 
- 00021926  0x000035ae fetch  0x00000001 , 0x00000340 
- 00021927  0x000035af rshift  0x0000003f , 0x0000003f 
- 00021928  0x000035b0 ixor  0x00000002 , 0x0000003f 
- 00021929  0x000035b1 isolate1  0x00000002 , 0x0000003f 
- 00021930  0x000035b2 setflag  0x00000001 , 0x0000000f , 0x00000000 
- 00021931  0x000035b3 fetch  0x00000001 , 0x00000341 
- 00021932  0x000035b4 branch  0x000055b2 , 0x00000034 
- 00021933  0x000035b5 fetch  0x00000001 , 0x000003c0 
- 00021934  0x000035b6 bbit0  0x00000004 , 0x000055b2 
- 00021935  0x000035b7 call  0x00007599 
- 00021936  0x000035b8 call  0x0000750e 
- 00021937  0x000035b9 nrtn  0x00000034 
- 00021938  0x000035bb rtnmark1  0x0000000f 
- 00021939  0x000035bc fetcht  0x00000001 , 0x000003d7 
- 00021940  0x000035bd setflip  0x00000002 , 0x00000002 
- 00021941  0x000035be storet  0x00000001 , 0x000003d7 
- 00021942  0x000035bf branch  0x000058ac 
- 00021943  0x000035c2 set1  0x00000025 , 0x00000000 
- 00021944  0x000035c3 bpatch  0x0000005a , 0x0000402b 
- 00021945  0x000035c4 fetcht  0x00000001 , 0x000003d7 
- 00021946  0x000035c5 isolate0  0x00000005 , 0x00000002 
- 00021947  0x000035c6 rtn  0x00000001 
- 00021948  0x000035c7 fetch  0x00000001 , 0x00000340 
- 00021949  0x000035c8 lshift  0x0000003f , 0x0000003f 
- 00021950  0x000035c9 ixor  0x00000002 , 0x0000003f 
- 00021951  0x000035ca rtnbit0  0x00000003 
- 00021952  0x000035cb set0  0x00000005 , 0x00000002 
- 00021953  0x000035cc setflip  0x00000003 , 0x00000002 
- 00021954  0x000035cd storet  0x00000001 , 0x000003d7 
- 00021955  0x000035ce compare  0x00000003 , 0x00000002 , 0x00000003 
- 00021956  0x000035cf nrtn  0x00000001 
- 00021957  0x000035d0 fetch  0x00000001 , 0x00004440 
- 00021958  0x000035d1 rtnne  0x00000005 
- 00021959  0x000035d2 fetch  0x00000001 , 0x000003c0 
- 00021960  0x000035d3 set1  0x00000004 , 0x0000003f 
- 00021961  0x000035d4 store  0x00000001 , 0x000003c0 
- 00021962  0x000035d5 rtn 
- 00021963  0x000035d8 set1  0x00000025 , 0x00000000 
- 00021964  0x000035d9 bpatch  0x0000005b , 0x0000402b 
- 00021965  0x000035da call  0x0000542c 
- 00021966  0x000035db call  0x00005474 
- 00021967  0x000035dc fetch  0x00000001 , 0x00000001 
- 00021968  0x000035dd increase  0x00000001 , 0x0000003f 
- 00021969  0x000035de store  0x00000001 , 0x00000001 
- 00021970  0x000035df rtn 
- 00021971  0x000035e2 set1  0x00000025 , 0x00000000 
- 00021972  0x000035e3 bpatch  0x0000005c , 0x0000402b 
- 00021973  0x000035e4 fetch  0x00000001 , 0x000043d2 
- 00021974  0x000035e5 rtnne  0x00000001 
- 00021975  0x000035e6 arg  0x00000003 , 0x00000007 
- 00021976  0x000035e7 call  0x00007e53 
- 00021977  0x000035e8 nrtn  0x00000034 
- 00021978  0x000035e9 fetch  0x00000002 , 0x000043d3 
- 00021979  0x000035ea fetcht  0x00000002 , 0x000043d5 
- 00021980  0x000035eb isub  0x00000002 , 0x0000003f 
- 00021981  0x000035ec arg  0x00000003 , 0x00000007 
- 00021982  0x000035ed call  0x00007e4c 
- 00021983  0x000035ee disable  0x00000029 
- 00021984  0x000035ef call  0x00005572 
- 00021985  0x000035f0 call  0x000055cb 
- 00021986  0x000035f1 nrtn  0x0000002d 
- 00021987  0x000035f2 set1  0x00000025 , 0x00000000 
- 00021988  0x000035f3 bpatch  0x0000005d , 0x0000402b 
- 00021989  0x000035f4 fetch  0x00000006 , 0x00000342 
- 00021990  0x000035f5 store  0x00000006 , 0x000003d0 
- 00021991  0x000035f6 call  0x000042a7 
- 00021992  0x000035f7 call  0x00005b39 
- 00021993  0x000035f9 fetch  0x00000001 , 0x00000002 
- 00021994  0x000035fa increase  0x00000001 , 0x0000003f 
- 00021995  0x000035fb store  0x00000001 , 0x00000002 
- 00021996  0x000035fc call  0x000055f9 
- 00021997  0x000035fd rtn  0x00000029 
- 00021998  0x000035fe call  0x000048d1 
- 00021999  0x000035ff call  0x00005507 
- 00022000  0x00003600 nrtn  0x0000002d 
- 00022001  0x00003601 set1  0x00000025 , 0x00000000 
- 00022002  0x00003602 bpatch  0x0000005e , 0x0000402b 
- 00022003  0x00003603 fetch  0x00000001 , 0x00000004 
- 00022004  0x00003604 increase  0x00000001 , 0x0000003f 
- 00022005  0x00003605 store  0x00000001 , 0x00000004 
- 00022006  0x00003606 fetch  0x00000009 , 0x00000348 
- 00022007  0x00003607 store  0x00000009 , 0x00000103 
- 00022008  0x00003608 branch  0x000048d1 
- 00022009  0x0000360b set1  0x00000025 , 0x00000000 
- 00022010  0x0000360c bpatch  0x0000005f , 0x0000402b 
- 00022011  0x0000360d fetch  0x00000001 , 0x0000041c 
- 00022012  0x0000360e rtnne  0x0000001b , 0x0000003f 
- 00022013  0x0000360f fetch  0x00000006 , 0x000003d0 
- 00022014  0x00003610 fetcht  0x00000006 , 0x000044e7 
- 00022015  0x00003611 isub  0x00000002 , 0x0000003e 
- 00022016  0x00003612 nrtn  0x00000005 
- 00022017  0x00003613 call  0x000032d6 
- 00022018  0x00003614 nrtn  0x00000005 
- 00022019  0x00003615 call  0x00005528 
- 00022020  0x00003616 call  0x0000535f 
- 00022021  0x00003617 set1  0x00000025 , 0x00000000 
- 00022022  0x00003618 bpatch  0x00000060 , 0x0000402c 
- 00022023  0x00003619 jam  0x00000000 , 0x00004272 
- 00022024  0x0000361a jam  0x00000000 , 0x000003f8 
- 00022025  0x0000361b fetch  0x00000001 , 0x00004132 
- 00022026  0x0000361c bne  0x00000004 , 0x0000560c 
- 00022027  0x0000361d jam  0x00000021 , 0x000003e3 
- 00022028  0x0000361f arg  0x00000000 , 0x00000002 
- 00022029  0x00003620 call  0x000048ea 
- 00022030  0x00003621 jam  0x00000000 , 0x000043d2 
- 00022031  0x00003622 jam  0x00000000 , 0x0000041c 
- 00022032  0x00003623 jam  0x0000002c , 0x00000b7d 
- 00022033  0x00003624 call  0x00005620 
- 00022034  0x00003625 branch  0x000032bd 
- 00022035  0x00003628 arg  0x00000001 , 0x00000011 
- 00022036  0x00003629 fetch  0x00000001 , 0x00000340 
- 00022037  0x0000362a rtnbit1  0x00000006 
- 00022038  0x0000362b arg  0x00000000 , 0x00000011 
- 00022039  0x0000362c rtn 
- 00022040  0x0000362f arg  0x000044ff , 0x00000006 
- 00022041  0x00003630 branch  0x00007fb2 
- 00022042  0x00003633 arg  0x000044ff , 0x00000011 
- 00022043  0x00003634 branch  0x00007fac 
- 00022044  0x00003637 arg  0x000044ff , 0x00000011 
- 00022045  0x00003638 branch  0x00007fae 
- 00022046  0x0000363b arg  0x000044ff , 0x00000011 
- 00022047  0x0000363c branch  0x00007fb0 
- 00022048  0x0000363f arg  0x000044ff , 0x00000011 
- 00022049  0x00003640 branch  0x00007f92 
- 00022050  0x00003643 set1  0x00000025 , 0x00000000 
- 00022051  0x00003644 bpatch  0x00000061 , 0x0000402c 
- 00022052  0x00003645 fetch  0x00000001 , 0x000003d7 
- 00022053  0x00003646 rtnbit1  0x00000005 
- 00022054  0x00003647 arg  0x000044ff , 0x00000011 
- 00022055  0x00003648 call  0x00007f9f 
- 00022056  0x00003649 nbranch  0x00005630 , 0x00000034 
- 00022057  0x0000364a fetch  0x00000001 , 0x00004132 
- 00022058  0x0000364b bne  0x00000001 , 0x00005890 
- 00022059  0x0000364c arg  0x00000000 , 0x00000001 
- 00022060  0x0000364d call  0x000044a3 
- 00022061  0x0000364e copy  0x00000001 , 0x0000003f 
- 00022062  0x0000364f nrtn  0x00000034 
- 00022063  0x00003650 branch  0x00005890 
- 00022064  0x00003652 copy  0x0000003f , 0x00000002 
- 00022065  0x00003653 set1  0x00000025 , 0x00000000 
- 00022066  0x00003654 bpatch  0x00000062 , 0x0000402c 
- 00022067  0x00003655 copy  0x00000002 , 0x0000003f 
- 00022068  0x00003656 bbit0  0x00000005 , 0x0000564b 
- 00022069  0x00003657 force  0x00000003 , 0x00000001 
- 00022070  0x00003658 set0  0x00000005 , 0x0000003f 
- 00022071  0x00003659 store  0x00000001 , 0x00004440 
- 00022072  0x0000365a set1  0x00000025 , 0x00000000 
- 00022073  0x0000365b bpatch  0x00000063 , 0x0000402c 
- 00022074  0x0000365c fetch  0x00000001 , 0x00004440 
- 00022075  0x0000365d beq  0x00000000 , 0x0000568f 
- 00022076  0x0000365e beq  0x00000001 , 0x00005691 
- 00022077  0x0000365f beq  0x00000002 , 0x00005693 
- 00022078  0x00003660 beq  0x00000003 , 0x00005695 
- 00022079  0x00003661 beq  0x00000004 , 0x000056a6 
- 00022080  0x00003662 beq  0x00000005 , 0x000056b7 
- 00022081  0x00003663 beq  0x00000006 , 0x000056b9 
- 00022082  0x00003664 beq  0x00000007 , 0x000056bf 
- 00022083  0x00003665 beq  0x00000008 , 0x000056c1 
- 00022084  0x00003666 beq  0x00000009 , 0x000056c1 
- 00022085  0x00003667 beq  0x0000000a , 0x000056c5 
- 00022086  0x00003668 beq  0x0000000b , 0x000056c7 
- 00022087  0x00003669 beq  0x0000000c , 0x000056c9 
- 00022088  0x0000366a beq  0x0000000d , 0x000056cf 
- 00022089  0x0000366b beq  0x0000000f , 0x000056d1 
- 00022090  0x0000366c branch  0x00003bf1 
- 00022091  0x0000366f jam  0x00000000 , 0x00004443 
- 00022092  0x00003670 force  0x00000002 , 0x00000001 
- 00022093  0x00003671 bbit0  0x00000006 , 0x00005662 
- 00022094  0x00003672 beq  0x00000052 , 0x00005662 
- 00022095  0x00003673 beq  0x000000d2 , 0x00005662 
- 00022096  0x00003674 jam  0x00000006 , 0x00004442 
- 00022097  0x00003675 set0  0x00000006 , 0x0000003f 
- 00022098  0x00003676 store  0x00000001 , 0x00004444 
- 00022099  0x00003678 set1  0x00000025 , 0x00000000 
- 00022100  0x00003679 bpatch  0x00000064 , 0x0000402c 
- 00022101  0x0000367a fetch  0x00000001 , 0x00004444 
- 00022102  0x0000367c beq  0x00000001 , 0x000056e5 
- 00022103  0x0000367d beq  0x00000002 , 0x000056ed 
- 00022104  0x0000367e beq  0x00000003 , 0x000056f5 
- 00022105  0x0000367f beq  0x00000004 , 0x000056fa 
- 00022106  0x00003680 beq  0x00000005 , 0x000056ff 
- 00022107  0x00003681 beq  0x00000006 , 0x00005701 
- 00022108  0x00003682 beq  0x00000007 , 0x0000570b 
- 00022109  0x00003683 beq  0x00000008 , 0x00005712 
- 00022110  0x00003684 beq  0x00000009 , 0x00005717 
- 00022111  0x00003685 beq  0x0000000a , 0x0000571e 
- 00022112  0x00003686 beq  0x0000000b , 0x00005721 
- 00022113  0x00003687 branch  0x00003bf1 
- 00022114  0x0000368a jam  0x00000004 , 0x00004442 
- 00022115  0x0000368b store  0x00000001 , 0x00004444 
- 00022116  0x0000368c set1  0x00000025 , 0x00000000 
- 00022117  0x0000368d bpatch  0x00000065 , 0x0000402c 
- 00022118  0x0000368f fetch  0x00000001 , 0x00004444 
- 00022119  0x00003690 beq  0x00000001 , 0x00005729 
- 00022120  0x00003691 beq  0x00000002 , 0x0000572f 
- 00022121  0x00003692 beq  0x00000003 , 0x0000572f 
- 00022122  0x00003693 beq  0x00000004 , 0x00005732 
- 00022123  0x00003694 beq  0x00000005 , 0x00005737 
- 00022124  0x00003695 beq  0x00000006 , 0x00005748 
- 00022125  0x00003696 beq  0x00000007 , 0x00005752 
- 00022126  0x00003697 beq  0x00000008 , 0x00005793 
- 00022127  0x00003698 beq  0x00000009 , 0x0000579b 
- 00022128  0x00003699 beq  0x0000000a , 0x000057be 
- 00022129  0x0000369a beq  0x0000000b , 0x000057c6 
- 00022130  0x0000369b beq  0x0000000c , 0x000057d1 
- 00022131  0x0000369c beq  0x0000000d , 0x000057d6 
- 00022132  0x0000369d beq  0x0000000e , 0x000057e5 
- 00022133  0x0000369e beq  0x0000000f , 0x000057ec 
- 00022134  0x0000369f beq  0x00000010 , 0x00005812 
- 00022135  0x000036a0 beq  0x00000011 , 0x0000581a 
- 00022136  0x000036a1 beq  0x00000012 , 0x0000583e 
- 00022137  0x000036a2 beq  0x00000013 , 0x00005845 
- 00022138  0x000036a3 beq  0x00000016 , 0x0000585e 
- 00022139  0x000036a4 beq  0x00000017 , 0x00005860 
- 00022140  0x000036a5 beq  0x00000018 , 0x00005862 
- 00022141  0x000036a6 beq  0x00000019 , 0x00005864 
- 00022142  0x000036a7 beq  0x0000001b , 0x00005873 
- 00022143  0x000036a8 beq  0x0000001d , 0x00005882 
- 00022144  0x000036a9 beq  0x0000001e , 0x00005884 
- 00022145  0x000036aa beq  0x00000052 , 0x00005886 
- 00022146  0x000036ab beq  0x000000d2 , 0x00005888 
- 00022147  0x000036ac beq  0x0000009e , 0x00005686 
- 00022148  0x000036ad beq  0x0000009f , 0x00005688 
- 00022149  0x000036ae branch  0x00003bf1 
- 00022150  0x000036b1 jam  0x00000010 , 0x00000b7d 
- 00022151  0x000036b2 call  0x00005620 
- 00022152  0x000036b5 setarg  0x00000011 
- 00022153  0x000036b6 store  0x00000002 , 0x0000443e 
- 00022154  0x000036b7 fetch  0x00000001 , 0x000003d7 
- 00022155  0x000036b8 set1  0x00000005 , 0x0000003f 
- 00022156  0x000036b9 store  0x00000001 , 0x000003d7 
- 00022157  0x000036ba jam  0x00000012 , 0x00000b7d 
- 00022158  0x000036bb branch  0x00005620 
- 00022159  0x000036be force  0x0000000c , 0x00000002 
- 00022160  0x000036bf branch  0x00005892 
- 00022161  0x000036c2 force  0x00000008 , 0x00000002 
- 00022162  0x000036c3 branch  0x00005892 
- 00022163  0x000036c6 force  0x00000002 , 0x00000002 
- 00022164  0x000036c7 branch  0x00005892 
- 00022165  0x000036ca force  0x00000000 , 0x0000003f 
- 00022166  0x000036cb istore  0x00000008 , 0x00000005 
- 00022167  0x000036cc istore  0x00000002 , 0x00000005 
- 00022168  0x000036cd copy  0x00000005 , 0x00000002 
- 00022169  0x000036ce arg  0x00000380 , 0x00000005 
- 00022170  0x000036cf force  0x00000008 , 0x00000039 
- 00022171  0x000036d0 call  0x00006227 
- 00022172  0x000036d1 fetch  0x00000008 , 0x00000380 
- 00022173  0x000036d2 istore  0x00000008 , 0x00000002 
- 00022174  0x000036d3 copy  0x00000005 , 0x00000002 
- 00022175  0x000036d4 arg  0x00004473 , 0x00000005 
- 00022176  0x000036d5 force  0x00000004 , 0x00000039 
- 00022177  0x000036d6 call  0x00006227 
- 00022178  0x000036d7 fetch  0x00000004 , 0x00004473 
- 00022179  0x000036d8 istore  0x00000004 , 0x00000002 
- 00022180  0x000036d9 force  0x00000017 , 0x00000002 
- 00022181  0x000036da branch  0x00005892 
- 00022182  0x000036dd copy  0x00000005 , 0x00000002 
- 00022183  0x000036de arg  0x00000388 , 0x00000005 
- 00022184  0x000036df force  0x00000008 , 0x00000039 
- 00022185  0x000036e0 call  0x00006227 
- 00022186  0x000036e1 fetch  0x00000008 , 0x00000388 
- 00022187  0x000036e2 istore  0x00000008 , 0x00000002 
- 00022188  0x000036e3 copy  0x00000005 , 0x00000002 
- 00022189  0x000036e4 arg  0x00004477 , 0x00000005 
- 00022190  0x000036e5 force  0x00000004 , 0x00000039 
- 00022191  0x000036e6 call  0x00006227 
- 00022192  0x000036e7 fetch  0x00000004 , 0x00004477 
- 00022193  0x000036e8 istore  0x00000004 , 0x00000002 
- 00022194  0x000036e9 call  0x000074b6 
- 00022195  0x000036ea jam  0x00000025 , 0x00000b7d 
- 00022196  0x000036eb call  0x00005620 
- 00022197  0x000036ec force  0x0000000d , 0x00000002 
- 00022198  0x000036ed branch  0x00005892 
- 00022199  0x000036f0 force  0x00000001 , 0x00000002 
- 00022200  0x000036f1 branch  0x00005892 
- 00022201  0x000036f4 force  0x00000001 , 0x00000002 
- 00022202  0x000036f5 branch  0x00005892 , 0x00000029 
- 00022203  0x000036f6 jam  0x00000046 , 0x00000b7d 
- 00022204  0x000036f7 call  0x00005620 
- 00022205  0x000036f8 force  0x00000001 , 0x00000002 
- 00022206  0x000036f9 branch  0x00005892 
- 00022207  0x000036fc force  0x00000002 , 0x00000002 
- 00022208  0x000036fd branch  0x00005892 
- 00022209  0x00003700 setarg  0x00000001 
- 00022210  0x00003701 istore  0x00000008 , 0x00000005 
- 00022211  0x00003702 force  0x00000009 , 0x00000002 
- 00022212  0x00003703 branch  0x00005892 
- 00022213  0x00003706 force  0x00000006 , 0x00000002 
- 00022214  0x00003707 branch  0x00005892 
- 00022215  0x0000370a force  0x00000006 , 0x00000002 
- 00022216  0x0000370b branch  0x00005892 
- 00022217  0x0000370e setarg  0x00000a06 
- 00022218  0x0000370f istore  0x00000003 , 0x00000005 
- 00022219  0x00003710 setarg  0x00001d87 
- 00022220  0x00003711 istore  0x00000002 , 0x00000005 
- 00022221  0x00003712 force  0x00000006 , 0x00000002 
- 00022222  0x00003713 branch  0x00005892 
- 00022223  0x00003716 force  0x00000002 , 0x00000002 
- 00022224  0x00003717 branch  0x00005892 
- 00022225  0x0000371a increase  0xffffffff , 0x00000005 
- 00022226  0x0000371b setarg  0x0000000c 
- 00022227  0x0000371c istore  0x00000002 , 0x00000005 
- 00022228  0x0000371d setarg  0x00000005 
- 00022229  0x0000371e istore  0x00000002 , 0x00000005 
- 00022230  0x0000371f setarg  0x0000b412 
- 00022231  0x00003720 istore  0x00000002 , 0x00000005 
- 00022232  0x00003721 setarg  0x00000008 
- 00022233  0x00003722 istore  0x00000002 , 0x00000005 
- 00022234  0x00003723 setarg  0x00000008 
- 00022235  0x00003724 istore  0x00000002 , 0x00000005 
- 00022236  0x00003725 setarg  0x00000010 
- 00022237  0x00003726 istore  0x00000002 , 0x00000005 
- 00022238  0x00003727 setarg  0x00000000 
- 00022239  0x00003728 istore  0x00000002 , 0x00000005 
- 00022240  0x00003729 setarg  0x0000012c 
- 00022241  0x0000372a istore  0x00000002 , 0x00000005 
- 00022242  0x0000372b call  0x0000588a 
- 00022243  0x0000372c force  0x00000002 , 0x00000001 
- 00022244  0x0000372d branch  0x00005892 
- 00022245  0x00003730 setarg  0x01000401 
- 00022246  0x00003731 store  0x00000004 , 0x000044ae 
- 00022247  0x00003732 setarg  0x00070710 
- 00022248  0x00003733 istore  0x00000003 , 0x00000005 
- 00022249  0x00003734 fetch  0x00000006 , 0x000044af 
- 00022250  0x00003735 store  0x00000006 , 0x00004445 
- 00022251  0x00003736 force  0x0000000b , 0x00000002 
- 00022252  0x00003737 branch  0x00005892 
- 00022253  0x0000373a setarg  0x01000302 
- 00022254  0x0000373b store  0x00000004 , 0x000044b5 
- 00022255  0x0000373c setarg  0x00010410 
- 00022256  0x0000373d istore  0x00000003 , 0x00000005 
- 00022257  0x0000373e fetch  0x00000006 , 0x000044b6 
- 00022258  0x0000373f store  0x00000006 , 0x00004445 
- 00022259  0x00003740 force  0x0000000b , 0x00000002 
- 00022260  0x00003741 branch  0x00005892 
- 00022261  0x00003744 call  0x000074b0 
- 00022262  0x00003745 arg  0x00004445 , 0x00000005 
- 00022263  0x00003746 call  0x000075a3 
- 00022264  0x00003747 force  0x00000015 , 0x00000002 
- 00022265  0x00003748 branch  0x00005892 
- 00022266  0x0000374b fetch  0x00000008 , 0x000003b0 
- 00022267  0x0000374c branch  0x000056fd , 0x00000029 
- 00022268  0x0000374d fetch  0x00000008 , 0x0000449c 
- 00022269  0x00003750 call  0x00005723 
- 00022270  0x00003751 branch  0x00005892 
- 00022271  0x00003754 force  0x00000006 , 0x00000002 
- 00022272  0x00003755 branch  0x00005892 
- 00022273  0x00003758 jam  0x00000029 , 0x00000b7d 
- 00022274  0x00003759 call  0x00007c27 
- 00022275  0x0000375a jam  0x00000047 , 0x00000b7d 
- 00022276  0x0000375b call  0x00005620 
- 00022277  0x0000375c arg  0x000003a0 , 0x00000005 
- 00022278  0x0000375d call  0x00006226 
- 00022279  0x0000375e fetch  0x00000008 , 0x000003a0 
- 00022280  0x0000375f fetch  0x00000008 , 0x0000447b 
- 00022281  0x00003760 call  0x00005723 
- 00022282  0x00003761 branch  0x00005892 
- 00022283  0x00003764 jam  0x00000048 , 0x00000b7d 
- 00022284  0x00003765 call  0x00005620 
- 00022285  0x00003766 arg  0x00004445 , 0x00000005 
- 00022286  0x00003767 force  0x00000008 , 0x00000039 
- 00022287  0x00003768 call  0x00006227 
- 00022288  0x00003769 force  0x0000000f , 0x00000002 
- 00022289  0x0000376a branch  0x00005892 
- 00022290  0x0000376d jam  0x00000049 , 0x00000b7d 
- 00022291  0x0000376e call  0x00005620 
- 00022292  0x0000376f arg  0x00004445 , 0x00000005 
- 00022293  0x00003770 call  0x00006226 
- 00022294  0x00003771 branch  0x0000588a 
- 00022295  0x00003774 jam  0x0000004a , 0x00000b7d 
- 00022296  0x00003775 call  0x00005620 
- 00022297  0x00003776 force  0x00000000 , 0x0000003f 
- 00022298  0x00003777 store  0x00000001 , 0x00004445 
- 00022299  0x00003778 fetch  0x00000006 , 0x000044f9 
- 00022300  0x00003779 istore  0x00000006 , 0x00000005 
- 00022301  0x0000377a branch  0x0000588a 
- 00022302  0x0000377d arg  0x00004445 , 0x00000005 
- 00022303  0x0000377e call  0x00006226 
- 00022304  0x0000377f branch  0x0000588a 
- 00022305  0x00003782 force  0x00000006 , 0x00000002 
- 00022306  0x00003783 branch  0x00005892 
- 00022307  0x00003786 store  0x00000008 , 0x00004445 
- 00022308  0x00003787 ifetch  0x00000008 , 0x00000006 
- 00022309  0x00003788 istore  0x00000008 , 0x00000005 
- 00022310  0x00003789 force  0x00000015 , 0x00000002 
- 00022311  0x0000378a rtn 
- 00022312  0x0000378d jam  0x0000000a , 0x000003fc 
- 00022313  0x0000378f jam  0x00000001 , 0x00004444 
- 00022314  0x00003790 fetch  0x00000003 , 0x000003f9 
- 00022315  0x00003791 store  0x00000003 , 0x00004445 
- 00022316  0x00003792 fetch  0x00000001 , 0x000003fc 
- 00022317  0x00003793 istore  0x00000001 , 0x00000005 
- 00022318  0x00003794 branch  0x0000588a 
- 00022319  0x00003797 setarg  0x00000017 
- 00022320  0x00003798 istore  0x00000002 , 0x00000005 
- 00022321  0x00003799 branch  0x0000588a 
- 00022322  0x0000379c fetch  0x00000002 , 0x000044bc 
- 00022323  0x0000379d store  0x00000002 , 0x00004445 
- 00022324  0x0000379e fetch  0x00000002 , 0x000044be 
- 00022325  0x0000379f istore  0x00000002 , 0x00000005 
- 00022326  0x000037a0 branch  0x0000588a 
- 00022327  0x000037a5 force  0x00000001 , 0x0000003f 
- 00022328  0x000037a6 store  0x00000001 , 0x00004445 
- 00022329  0x000037a7 call  0x00005a74 
- 00022330  0x000037a9 call  0x00005a7d 
- 00022331  0x000037aa branch  0x00005746 , 0x00000034 
- 00022332  0x000037ab nbranch  0x00005744 , 0x00000002 
- 00022333  0x000037ac disable  0x00000028 
- 00022334  0x000037ad istore  0x00000002 , 0x00000005 
- 00022335  0x000037ae ifetch  0x00000002 , 0x00000006 
- 00022336  0x000037af istore  0x00000002 , 0x00000005 
- 00022337  0x000037b1 ifetch  0x00000001 , 0x00000006 
- 00022338  0x000037b2 iadd  0x00000006 , 0x00000006 
- 00022339  0x000037b3 branch  0x0000573a 
- 00022340  0x000037b5 increase  0x00000002 , 0x00000006 
- 00022341  0x000037b6 branch  0x00005741 
- 00022342  0x000037b8 branch  0x00005728 , 0x00000028 
- 00022343  0x000037b9 branch  0x0000588a 
- 00022344  0x000037bd fetch  0x00000002 , 0x000044bc 
- 00022345  0x000037be branch  0x00005688 , 0x00000034 
- 00022346  0x000037bf store  0x00000002 , 0x00004445 
- 00022347  0x000037c0 fetch  0x00000002 , 0x000044be 
- 00022348  0x000037c2 istore  0x00000002 , 0x00000005 
- 00022349  0x000037c3 fetch  0x00000002 , 0x000044c4 
- 00022350  0x000037c5 istore  0x00000002 , 0x00000005 
- 00022351  0x000037c6 fetch  0x00000002 , 0x000044c0 
- 00022352  0x000037c8 istore  0x00000002 , 0x00000005 
- 00022353  0x000037c9 branch  0x0000588a 
- 00022354  0x000037cd call  0x0000577b 
- 00022355  0x000037ce rtn  0x00000028 
- 00022356  0x000037cf fetcht  0x00000002 , 0x000044c4 
- 00022357  0x000037d0 setarg  0x00002800 
- 00022358  0x000037d1 isub  0x00000002 , 0x0000003e 
- 00022359  0x000037d2 branch  0x00005762 , 0x00000005 
- 00022360  0x000037d3 setarg  0x00002801 
- 00022361  0x000037d4 isub  0x00000002 , 0x0000003e 
- 00022362  0x000037d5 branch  0x00005728 , 0x00000005 
- 00022363  0x000037d6 setarg  0x00002802 
- 00022364  0x000037d7 isub  0x00000002 , 0x0000003e 
- 00022365  0x000037d8 branch  0x00005728 , 0x00000005 
- 00022366  0x000037d9 setarg  0x00002803 
- 00022367  0x000037da isub  0x00000002 , 0x0000003e 
- 00022368  0x000037db branch  0x00005728 , 0x00000005 
- 00022369  0x000037dc branch  0x00005728 
- 00022370  0x000037df fetcht  0x00000002 , 0x000044c0 
- 00022371  0x000037e0 increase  0x00000002 , 0x00000006 
- 00022372  0x000037e1 ifetch  0x00000001 , 0x00000006 
- 00022373  0x000037e2 icopy  0x00000013 
- 00022374  0x000037e3 increase  0x00000001 , 0x00000013 
- 00022375  0x000037e6 increase  0xffffffff , 0x00000013 
- 00022376  0x000037e7 branch  0x00005728 , 0x00000005 
- 00022377  0x000037e8 ifetch  0x00000002 , 0x00000006 
- 00022378  0x000037e9 isub  0x00000002 , 0x0000003e 
- 00022379  0x000037ea branch  0x0000576e , 0x00000005 
- 00022380  0x000037eb increase  0x00000004 , 0x00000006 
- 00022381  0x000037ec branch  0x00005767 
- 00022382  0x000037ef ifetch  0x00000002 , 0x00000006 
- 00022383  0x000037f0 icopy  0x00000011 
- 00022384  0x000037f1 ifetch  0x00000002 , 0x00000006 
- 00022385  0x000037f2 icopy  0x00000012 
- 00022386  0x000037f3 call  0x00005785 
- 00022387  0x000037f4 rtn  0x00000028 
- 00022388  0x000037f5 jam  0x00000007 , 0x00004444 
- 00022389  0x000037f6 deposit  0x00000011 
- 00022390  0x000037f7 store  0x00000002 , 0x00004445 
- 00022391  0x000037f8 deposit  0x00000012 
- 00022392  0x000037f9 istore  0x00000002 , 0x00000005 
- 00022393  0x000037fa force  0x00000009 , 0x00000002 
- 00022394  0x000037fb branch  0x00005892 
- 00022395  0x00003801 disable  0x00000028 
- 00022396  0x00003802 fetcht  0x00000002 , 0x000044bc 
- 00022397  0x00003803 fetch  0x00000002 , 0x000044be 
- 00022398  0x00003804 isub  0x00000002 , 0x0000003e 
- 00022399  0x00003805 nbranch  0x00005782 , 0x00000002 
- 00022400  0x00003806 deposit  0x00000002 
- 00022401  0x00003807 rtnne  0x00000000 
- 00022402  0x0000380a enable  0x00000028 
- 00022403  0x0000380c jam  0x00000001 , 0x000003fc 
- 00022404  0x0000380d branch  0x00005729 
- 00022405  0x00003810 disable  0x00000028 
- 00022406  0x00003811 fetcht  0x00000002 , 0x000044bc 
- 00022407  0x00003812 deposit  0x00000011 
- 00022408  0x00003813 isub  0x00000002 , 0x0000003e 
- 00022409  0x00003814 nbranch  0x00005791 , 0x00000002 
- 00022410  0x00003815 fetch  0x00000002 , 0x000044be 
- 00022411  0x00003816 isub  0x00000012 , 0x0000003e 
- 00022412  0x00003817 nbranch  0x00005791 , 0x00000002 
- 00022413  0x00003818 deposit  0x00000012 
- 00022414  0x00003819 isub  0x00000011 , 0x0000003e 
- 00022415  0x0000381a nbranch  0x00005791 , 0x00000002 
- 00022416  0x0000381b rtn 
- 00022417  0x0000381e enable  0x00000028 
- 00022418  0x0000381f branch  0x00005728 
- 00022419  0x00003823 fetch  0x00000002 , 0x000044bc 
- 00022420  0x00003825 istore  0x00000002 , 0x00000005 
- 00022421  0x00003826 fetch  0x00000002 , 0x000044be 
- 00022422  0x00003828 istore  0x00000002 , 0x00000005 
- 00022423  0x00003829 fetch  0x00000002 , 0x000044c0 
- 00022424  0x0000382a istore  0x00000002 , 0x00000005 
- 00022425  0x0000382b force  0x0000000b , 0x00000002 
- 00022426  0x0000382c branch  0x00005892 
- 00022427  0x00003830 fetcht  0x00000002 , 0x000044c0 
- 00022428  0x00003831 setarg  0x00002803 
- 00022429  0x00003832 isub  0x00000002 , 0x0000003e 
- 00022430  0x00003833 setarg  0x00000007 
- 00022431  0x00003834 branch  0x000057a5 , 0x00000005 
- 00022432  0x00003835 setarg  0x00002800 
- 00022433  0x00003836 isub  0x00000002 , 0x0000003e 
- 00022434  0x00003837 setarg  0x00000006 
- 00022435  0x00003838 branch  0x000057a5 , 0x00000005 
- 00022436  0x00003839 branch  0x00005728 
- 00022437  0x0000383b store  0x00000001 , 0x00004445 
- 00022438  0x0000383c call  0x00005a74 
- 00022439  0x0000383d force  0x00000003 , 0x00000030 
- 00022440  0x0000383f call  0x00005a7d 
- 00022441  0x00003840 branch  0x000057bc , 0x00000034 
- 00022442  0x00003841 nbranch  0x000057b8 , 0x00000002 
- 00022443  0x00003842 iforce  0x00000011 
- 00022444  0x00003843 ifetch  0x00000002 , 0x00000006 
- 00022445  0x00003844 isub  0x00000002 , 0x0000003e 
- 00022446  0x00003845 nbranch  0x000057b9 , 0x00000005 
- 00022447  0x00003846 disable  0x00000028 
- 00022448  0x00003847 deposit  0x00000011 
- 00022449  0x00003848 istore  0x00000002 , 0x00000005 
- 00022450  0x00003849 ifetch  0x00000001 , 0x00000006 
- 00022451  0x0000384a add  0x0000003f , 0x00000004 , 0x00000039 
- 00022452  0x0000384b call  0x00007e45 
- 00022453  0x0000384c increase  0xffffffff , 0x00000030 
- 00022454  0x0000384d branch  0x000057bc , 0x00000005 
- 00022455  0x0000384e branch  0x000057b9 
- 00022456  0x00003850 increase  0x00000002 , 0x00000006 
- 00022457  0x00003852 ifetch  0x00000001 , 0x00000006 
- 00022458  0x00003853 iadd  0x00000006 , 0x00000006 
- 00022459  0x00003854 branch  0x000057a8 
- 00022460  0x00003856 branch  0x00005728 , 0x00000028 
- 00022461  0x00003857 branch  0x0000588a 
- 00022462  0x0000385b fetch  0x00000001 , 0x0000443d 
- 00022463  0x0000385d increase  0xffffffff , 0x0000003f 
- 00022464  0x0000385e store  0x00000001 , 0x0000443d 
- 00022465  0x0000385f lshift  0x0000003f , 0x0000003f 
- 00022466  0x00003861 iadd  0x00000006 , 0x00000006 
- 00022467  0x00003862 ifetcht  0x00000002 , 0x00000006 
- 00022468  0x00003863 storet  0x00000002 , 0x00004445 
- 00022469  0x00003864 branch  0x0000588a 
- 00022470  0x00003867 fetcht  0x00000002 , 0x000003fa 
- 00022471  0x00003868 call  0x00005a88 
- 00022472  0x00003869 branch  0x00005728 , 0x00000034 
- 00022473  0x0000386a ifetch  0x00000001 , 0x00000006 
- 00022474  0x0000386b branch  0x0000588a , 0x00000034 
- 00022475  0x0000386c sub  0x0000003f , 0x00000016 , 0x0000003e 
- 00022476  0x0000386d branch  0x000057ce , 0x00000002 
- 00022477  0x0000386e force  0x00000016 , 0x0000003f 
- 00022478  0x00003870 icopy  0x00000039 
- 00022479  0x00003871 call  0x00007e45 
- 00022480  0x00003872 branch  0x0000588a 
- 00022481  0x00003876 setarg  0x00000003 
- 00022482  0x00003877 store  0x00000002 , 0x00004445 
- 00022483  0x00003878 setarg  0x00000008 
- 00022484  0x00003879 istore  0x00000002 , 0x00000005 
- 00022485  0x0000387a branch  0x0000588a 
- 00022486  0x0000387d fetch  0x00000002 , 0x000044c0 
- 00022487  0x0000387e iforce  0x00000011 
- 00022488  0x0000387f fetcht  0x00000002 , 0x000003fa 
- 00022489  0x00003880 call  0x00005a88 
- 00022490  0x00003881 branch  0x00005728 , 0x00000034 
- 00022491  0x00003882 ifetch  0x00000001 , 0x00000006 
- 00022492  0x00003883 isub  0x00000011 , 0x00000039 
- 00022493  0x00003884 nbranch  0x00005728 , 0x00000002 
- 00022494  0x00003885 sub  0x00000039 , 0x00000016 , 0x0000003e 
- 00022495  0x00003886 branch  0x000057e1 , 0x00000002 
- 00022496  0x00003887 force  0x00000016 , 0x00000039 
- 00022497  0x00003889 deposit  0x00000011 
- 00022498  0x0000388a iadd  0x00000006 , 0x00000006 
- 00022499  0x0000388b call  0x00007e45 
- 00022500  0x0000388c branch  0x0000588a 
- 00022501  0x0000388f setarg  0x00000003 
- 00022502  0x00003890 istore  0x00000002 , 0x00000005 
- 00022503  0x00003891 setarg  0x00000007 
- 00022504  0x00003892 istore  0x00000002 , 0x00000005 
- 00022505  0x00003893 setarg  0x00000009 
- 00022506  0x00003894 istore  0x00000002 , 0x00000005 
- 00022507  0x00003895 branch  0x0000588a 
- 00022508  0x00003898 fetch  0x00000001 , 0x0000443d 
- 00022509  0x00003899 icopy  0x00000013 
- 00022510  0x0000389a arg  0x00000347 , 0x00000011 
- 00022511  0x0000389b arg  0x00004445 , 0x00000012 
- 00022512  0x0000389c arg  0x00000000 , 0x0000000b 
- 00022513  0x0000389d disable  0x00000031 
- 00022514  0x000038a0 copy  0x00000011 , 0x00000006 
- 00022515  0x000038a1 ifetcht  0x00000002 , 0x00000006 
- 00022516  0x000038a2 copy  0x00000006 , 0x00000011 
- 00022517  0x000038a3 call  0x00005a88 
- 00022518  0x000038a4 branch  0x00005805 , 0x00000034 
- 00022519  0x000038a5 ifetch  0x00000001 , 0x00000006 
- 00022520  0x000038a6 icopy  0x00000039 
- 00022521  0x000038a7 iadd  0x0000000b , 0x0000000b 
- 00022522  0x000038ab sub  0x0000000b , 0x00000018 , 0x0000003e 
- 00022523  0x000038ac nbranch  0x0000580a , 0x00000002 
- 00022524  0x000038ad copy  0x00000012 , 0x00000005 
- 00022525  0x000038b0 ifetch  0x00000001 , 0x00000006 
- 00022526  0x000038b1 istore  0x00000001 , 0x00000005 
- 00022527  0x000038b2 loop  0x000057fd 
- 00022528  0x000038b3 copy  0x00000005 , 0x00000012 
- 00022529  0x000038b4 enable  0x00000031 
- 00022530  0x000038b5 increase  0xffffffff , 0x00000013 
- 00022531  0x000038b6 branch  0x00005805 , 0x00000005 
- 00022532  0x000038b7 branch  0x000057f2 
- 00022533  0x000038ba nbranch  0x00005810 , 0x00000031 
- 00022534  0x000038bb disable  0x00000031 
- 00022535  0x000038bc copy  0x0000000b , 0x00000002 
- 00022536  0x000038bd increase  0x00000005 , 0x00000002 
- 00022537  0x000038be branch  0x00005892 
- 00022538  0x000038c1 nbranch  0x00005810 , 0x00000031 
- 00022539  0x000038c2 disable  0x00000031 
- 00022540  0x000038c3 deposit  0x0000000b 
- 00022541  0x000038c4 isub  0x00000039 , 0x00000002 
- 00022542  0x000038c5 increase  0x00000005 , 0x00000002 
- 00022543  0x000038c6 branch  0x00005892 
- 00022544  0x000038c9 jam  0x00000010 , 0x000003fc 
- 00022545  0x000038ca branch  0x00005729 
- 00022546  0x000038ce fetch  0x00000002 , 0x000003fa 
- 00022547  0x000038cf branch  0x00005688 , 0x00000034 
- 00022548  0x000038d0 istore  0x00000002 , 0x00000005 
- 00022549  0x000038d1 setarg  0x0000ffff 
- 00022550  0x000038d2 istore  0x00000002 , 0x00000005 
- 00022551  0x000038d3 setarg  0x00002800 
- 00022552  0x000038d4 istore  0x00000002 , 0x00000005 
- 00022553  0x000038d5 branch  0x0000588a 
- 00022554  0x000038d9 setarg  0x00000006 
- 00022555  0x000038da store  0x00000001 , 0x00004445 
- 00022556  0x000038db fetch  0x00000002 , 0x000044c0 
- 00022557  0x000038dc iforce  0x00000011 
- 00022558  0x000038dd call  0x00005a74 
- 00022559  0x000038de force  0x00000003 , 0x00000039 
- 00022560  0x000038e0 call  0x00005a7d 
- 00022561  0x000038e1 branch  0x00005835 , 0x00000034 
- 00022562  0x000038e2 nbranch  0x0000583a , 0x00000002 
- 00022563  0x000038e3 iforce  0x00000030 
- 00022564  0x000038e4 ifetch  0x00000002 , 0x00000006 
- 00022565  0x000038e5 isub  0x00000011 , 0x0000003e 
- 00022566  0x000038e6 nbranch  0x0000583b , 0x00000005 
- 00022567  0x000038e7 deposit  0x00000030 
- 00022568  0x000038e8 branch  0x0000582f , 0x00000028 
- 00022569  0x000038e9 increase  0xffffffff , 0x0000003f 
- 00022570  0x000038ea istore  0x00000002 , 0x00000005 
- 00022571  0x000038eb istoret  0x00000002 , 0x00000005 
- 00022572  0x000038ec increase  0x00000001 , 0x0000003f 
- 00022573  0x000038ed increase  0xffffffff , 0x00000039 
- 00022574  0x000038ee branch  0x0000588a , 0x00000005 
- 00022575  0x000038f0 disable  0x00000028 
- 00022576  0x000038f1 istore  0x00000002 , 0x00000005 
- 00022577  0x000038f2 increase  0x00000001 , 0x00000006 
- 00022578  0x000038f3 ifetcht  0x00000002 , 0x00000006 
- 00022579  0x000038f4 increase  0xfffffffd , 0x00000006 
- 00022580  0x000038f5 branch  0x0000583b 
- 00022581  0x000038f7 branch  0x00005728 , 0x00000028 
- 00022582  0x000038f8 force  0xffffffff , 0x0000003f 
- 00022583  0x000038f9 istore  0x00000002 , 0x00000005 
- 00022584  0x000038fa istoret  0x00000002 , 0x00000005 
- 00022585  0x000038fb branch  0x0000588a 
- 00022586  0x000038fd increase  0x00000002 , 0x00000006 
- 00022587  0x000038ff ifetch  0x00000001 , 0x00000006 
- 00022588  0x00003900 iadd  0x00000006 , 0x00000006 
- 00022589  0x00003901 branch  0x00005820 
- 00022590  0x00003906 fetch  0x00000002 , 0x000044c2 
- 00022591  0x00003907 store  0x00000002 , 0x00004445 
- 00022592  0x00003908 fetch  0x00000001 , 0x000044c6 
- 00022593  0x00003909 copy  0x0000003f , 0x00000039 
- 00022594  0x0000390a arg  0x000044c7 , 0x00000006 
- 00022595  0x0000390b call  0x00007e45 
- 00022596  0x0000390c branch  0x0000588a 
- 00022597  0x0000390f fetcht  0x00000002 , 0x000003fa 
- 00022598  0x00003910 call  0x00005a88 
- 00022599  0x00003911 branch  0x0000585c , 0x00000034 
- 00022600  0x00003912 increase  0xfffffffe , 0x00000006 
- 00022601  0x00003913 ifetcht  0x00000002 , 0x00000006 
- 00022602  0x00003914 setarg  0x00002902 
- 00022603  0x00003915 isub  0x00000002 , 0x0000003e 
- 00022604  0x00003916 nbranch  0x0000585c , 0x00000005 
- 00022605  0x00003917 increase  0x00000001 , 0x00000006 
- 00022606  0x00003918 ifetcht  0x00000002 , 0x00000006 
- 00022607  0x00003919 setarg  0x00000001 
- 00022608  0x0000391a isub  0x00000002 , 0x0000003e 
- 00022609  0x0000391b branch  0x00005856 , 0x00000005 
- 00022610  0x0000391c setarg  0x00000000 
- 00022611  0x0000391d isub  0x00000002 , 0x0000003e 
- 00022612  0x0000391e nbranch  0x0000585c , 0x00000005 
- 00022613  0x0000391f branch  0x0000585c 
- 00022614  0x00003922 increase  0xfffffff9 , 0x00000006 
- 00022615  0x00003923 ifetch  0x00000002 , 0x00000006 
- 00022616  0x00003924 increase  0xffffffff , 0x0000003f 
- 00022617  0x00003925 store  0x00000002 , 0x000044c2 
- 00022618  0x00003926 jam  0x0000001b , 0x00000b7d 
- 00022619  0x00003927 call  0x00005620 
- 00022620  0x0000392b force  0x00000005 , 0x00000002 
- 00022621  0x0000392c branch  0x00005892 
- 00022622  0x0000392f force  0x00000006 , 0x00000002 
- 00022623  0x00003930 branch  0x00005892 
- 00022624  0x00003933 force  0x00000006 , 0x00000002 
- 00022625  0x00003934 branch  0x00005892 
- 00022626  0x00003937 force  0x00000006 , 0x00000002 
- 00022627  0x00003938 branch  0x00005892 
- 00022628  0x0000393b force  0x00000006 , 0x00000002 
- 00022629  0x0000393c branch  0x00005892 
- 00022630  0x0000393f set1  0x00000025 , 0x00000000 
- 00022631  0x00003940 bpatch  0x00000066 , 0x0000402c 
- 00022632  0x00003941 increase  0x00000001 , 0x00000002 
- 00022633  0x00003942 call  0x00005a88 
- 00022634  0x00003943 increase  0xfffffffe , 0x00000006 
- 00022635  0x00003944 ifetch  0x00000002 , 0x00000006 
- 00022636  0x00003945 arg  0x00002902 , 0x00000002 
- 00022637  0x00003946 isub  0x00000002 , 0x0000003e 
- 00022638  0x00003947 nrtn  0x00000005 
- 00022639  0x00003948 increase  0x00000001 , 0x00000006 
- 00022640  0x00003949 copy  0x00000006 , 0x00000011 
- 00022641  0x0000394a ifetch  0x00000001 , 0x00000006 
- 00022642  0x0000394b rtn 
- 00022643  0x0000394e jam  0x00000000 , 0x0000041b 
- 00022644  0x0000394f fetch  0x00000002 , 0x00004298 
- 00022645  0x00003950 call  0x00007f66 
- 00022646  0x00003951 arg  0x00004444 , 0x00000005 
- 00022647  0x00003952 increase  0x00000001 , 0x00000005 
- 00022648  0x00003953 fetcht  0x00000002 , 0x000044c2 
- 00022649  0x00003954 istoret  0x00000002 , 0x00000005 
- 00022650  0x00003955 call  0x00005a88 
- 00022651  0x00003956 ifetch  0x00000001 , 0x00000006 
- 00022652  0x00003957 icopy  0x00000039 
- 00022653  0x00003958 call  0x00007e45 
- 00022654  0x00003959 fetcht  0x00000001 , 0x0000041b 
- 00022655  0x0000395a increase  0x00000007 , 0x00000002 
- 00022656  0x0000395b call  0x00005892 
- 00022657  0x0000395c branch  0x00005ace 
- 00022658  0x0000395f force  0x00000006 , 0x00000002 
- 00022659  0x00003960 branch  0x00005892 
- 00022660  0x00003963 force  0x00000006 , 0x00000002 
- 00022661  0x00003964 branch  0x00005892 
- 00022662  0x00003967 force  0x00000006 , 0x00000002 
- 00022663  0x00003968 branch  0x00005892 
- 00022664  0x0000396b force  0x00000006 , 0x00000002 
- 00022665  0x0000396c branch  0x00005892 
- 00022666  0x00003970 set1  0x00000025 , 0x00000000 
- 00022667  0x00003971 bpatch  0x00000067 , 0x0000402c 
- 00022668  0x00003972 setarg  0x00004440 
- 00022669  0x00003973 isub  0x00000005 , 0x0000003f 
- 00022670  0x00003974 sub  0x0000003f , 0x00000000 , 0x00000002 
- 00022671  0x00003975 branch  0x00005892 
- 00022672  0x00003979 force  0x00000000 , 0x00000002 
- 00022673  0x0000397a force  0x00000001 , 0x00000001 
- 00022674  0x0000397d set1  0x00000025 , 0x00000000 
- 00022675  0x0000397e bpatch  0x00000068 , 0x0000402d 
- 00022676  0x0000397f storet  0x00000001 , 0x0000443f 
- 00022677  0x00003980 compare  0x00000002 , 0x00000001 , 0x00000003 
- 00022678  0x00003981 nbranch  0x00005899 , 0x00000001 
- 00022679  0x00003982 add  0x00000002 , 0xfffffffc , 0x0000003f 
- 00022680  0x00003983 store  0x00000002 , 0x00004440 
- 00022681  0x00003986 fetcht  0x00000001 , 0x000003d7 
- 00022682  0x00003987 call  0x0000561a 
- 00022683  0x00003988 nsetflag  0x00000034 , 0x00000004 , 0x00000002 
- 00022684  0x00003989 set1  0x00000005 , 0x00000002 
- 00022685  0x0000398a and  0x00000002 , 0x000000fc , 0x0000003f 
- 00022686  0x0000398b ior  0x00000001 , 0x0000003f 
- 00022687  0x0000398c store  0x00000001 , 0x000003d7 
- 00022688  0x0000398d and_into  0x0000001f , 0x0000003f 
- 00022689  0x0000398e store  0x00000001 , 0x0000443e 
- 00022690  0x0000398f set1  0x00000025 , 0x00000000 
- 00022691  0x00003990 bpatch  0x00000069 , 0x0000402d 
- 00022692  0x00003991 fetch  0x00000001 , 0x0000443e 
- 00022693  0x00003992 compare  0x00000001 , 0x00000001 , 0x00000003 
- 00022694  0x00003993 rtn  0x00000001 
- 00022695  0x00003994 fetch  0x00000007 , 0x0000443f 
- 00022696  0x00003995 fetch  0x00000001 , 0x000003c0 
- 00022697  0x00003996 rtnbit0  0x00000004 
- 00022698  0x00003997 call  0x00007599 
- 00022699  0x00003998 branch  0x000074f7 
- 00022700  0x0000399b set1  0x00000025 , 0x00000000 
- 00022701  0x0000399c bpatch  0x0000006a , 0x0000402d 
- 00022702  0x0000399d call  0x0000561c 
- 00022703  0x0000399e nbranch  0x00003bf1 , 0x00000034 
- 00022704  0x0000399f nrtn  0x00000034 
- 00022705  0x000039a0 fetch  0x00000001 , 0x00000341 
- 00022706  0x000039a1 rtn  0x00000034 
- 00022707  0x000039a2 fetch  0x00000001 , 0x00000340 
- 00022708  0x000039a3 compare  0x00000001 , 0x0000003f , 0x00000003 
- 00022709  0x000039a4 branch  0x000058cf , 0x00000001 
- 00022710  0x000039a5 fetch  0x00000007 , 0x00000341 
- 00022711  0x000039a6 fetch  0x00000001 , 0x00000340 
- 00022712  0x000039a7 compare  0x00000002 , 0x0000003f , 0x00000003 
- 00022713  0x000039a8 branch  0x000058cf , 0x00000001 
- 00022714  0x000039a9 fetch  0x00000001 , 0x00000342 
- 00022715  0x000039aa store  0x00000001 , 0x00000418 
- 00022716  0x000039ab copy  0x0000003f , 0x00000013 
- 00022717  0x000039ac set1  0x00000025 , 0x00000000 
- 00022718  0x000039ad bpatch  0x0000006b , 0x0000402d 
- 00022719  0x000039ae copy  0x00000013 , 0x0000003f 
- 00022720  0x000039af beq  0x00000000 , 0x00005924 
- 00022721  0x000039b0 beq  0x00000001 , 0x0000592c 
- 00022722  0x000039b1 beq  0x00000002 , 0x00005934 
- 00022723  0x000039b2 beq  0x00000003 , 0x00005938 
- 00022724  0x000039b3 beq  0x00000004 , 0x0000593f 
- 00022725  0x000039b4 beq  0x00000005 , 0x00005944 
- 00022726  0x000039b5 beq  0x00000006 , 0x00005949 
- 00022727  0x000039b6 beq  0x00000007 , 0x0000594c 
- 00022728  0x000039b7 beq  0x00000008 , 0x0000594d 
- 00022729  0x000039b8 beq  0x00000009 , 0x0000594f 
- 00022730  0x000039b9 beq  0x0000000a , 0x00005950 
- 00022731  0x000039ba beq  0x0000000b , 0x00005951 
- 00022732  0x000039bb beq  0x0000000c , 0x00005952 
- 00022733  0x000039bc beq  0x0000000d , 0x00005955 
- 00022734  0x000039bd branch  0x00003bf1 
- 00022735  0x000039c0 fetch  0x00000001 , 0x00000341 
- 00022736  0x000039c1 and  0x0000003f , 0x0000001f , 0x0000003f 
- 00022737  0x000039c2 rtn  0x00000034 
- 00022738  0x000039c3 fetch  0x00000001 , 0x00004132 
- 00022739  0x000039c4 beq  0x00000001 , 0x000058d8 
- 00022740  0x000039c5 fetch  0x00000002 , 0x00000344 
- 00022741  0x000039c6 beq  0x00000004 , 0x00005903 
- 00022742  0x000039c7 beq  0x00000006 , 0x000058f4 
- 00022743  0x000039c8 rtn 
- 00022744  0x000039cb set1  0x00000025 , 0x00000000 
- 00022745  0x000039cc bpatch  0x0000006c , 0x0000402d 
- 00022746  0x000039cd call  0x00004972 
- 00022747  0x000039ce fetch  0x00000001 , 0x000003d6 
- 00022748  0x000039cf fetcht  0x00000001 , 0x00000340 
- 00022749  0x000039d0 and_into  0x00000003 , 0x00000002 
- 00022750  0x000039d1 lshift8  0x00000002 , 0x00000002 
- 00022751  0x000039d2 lshift4  0x00000002 , 0x00000002 
- 00022752  0x000039d3 ior  0x00000002 , 0x0000003f 
- 00022753  0x000039d4 istore  0x00000002 , 0x0000000a 
- 00022754  0x000039d5 fetcht  0x00000001 , 0x00000341 
- 00022755  0x000039d6 and  0x00000002 , 0x0000001f , 0x00000002 
- 00022756  0x000039d7 istoret  0x00000002 , 0x0000000a 
- 00022757  0x000039d8 copy  0x00000002 , 0x00000039 
- 00022758  0x000039d9 call  0x00004976 
- 00022759  0x000039da add  0x00000002 , 0x00000004 , 0x00000039 
- 00022760  0x000039db call  0x00004424 
- 00022761  0x000039dc branch  0x00004435 
- 00022762  0x000039df set1  0x00000025 , 0x00000000 
- 00022763  0x000039e0 bpatch  0x0000006d , 0x0000402d 
- 00022764  0x000039e1 arg  0x00000002 , 0x00000001 
- 00022765  0x000039e2 ifetch  0x00000002 , 0x00000003 
- 00022766  0x000039e3 ifetch  0x00000002 , 0x00000003 
- 00022767  0x000039e4 branch  0x00003bf1 , 0x00000034 
- 00022768  0x000039e5 copy  0x0000003f , 0x00000039 
- 00022769  0x000039e6 arg  0x00004440 , 0x00000005 
- 00022770  0x000039e7 call  0x0000497c 
- 00022771  0x000039e8 branch  0x0000588a 
- 00022772  0x000039eb set1  0x00000025 , 0x00000000 
- 00022773  0x000039ec bpatch  0x0000006e , 0x0000402d 
- 00022774  0x000039ed ifetch  0x00000001 , 0x00000006 
- 00022775  0x000039ee beq  0x00000001 , 0x00005956 
- 00022776  0x000039ef beq  0x00000002 , 0x0000595b 
- 00022777  0x000039f0 beq  0x00000003 , 0x00005960 
- 00022778  0x000039f1 beq  0x00000004 , 0x00005966 
- 00022779  0x000039f2 beq  0x00000005 , 0x0000596f 
- 00022780  0x000039f3 beq  0x00000006 , 0x00005970 
- 00022781  0x000039f4 beq  0x00000007 , 0x00005972 
- 00022782  0x000039f5 beq  0x00000008 , 0x00005973 
- 00022783  0x000039f6 beq  0x00000009 , 0x00005974 
- 00022784  0x000039f7 beq  0x0000000a , 0x00005975 
- 00022785  0x000039f8 beq  0x0000000b , 0x00005976 
- 00022786  0x000039f9 branch  0x00003bf1 
- 00022787  0x000039fc set1  0x00000025 , 0x00000000 
- 00022788  0x000039fd bpatch  0x0000006f , 0x0000402d 
- 00022789  0x000039fe ifetch  0x00000003 , 0x00000006 
- 00022790  0x000039ff store  0x00000003 , 0x000003f9 
- 00022791  0x00003a01 beq  0x00000001 , 0x00005977 
- 00022792  0x00003a02 beq  0x00000002 , 0x0000598e 
- 00022793  0x00003a03 beq  0x00000003 , 0x00005990 
- 00022794  0x00003a04 beq  0x00000004 , 0x00005991 
- 00022795  0x00003a05 beq  0x00000005 , 0x00005997 
- 00022796  0x00003a06 beq  0x00000006 , 0x0000599a 
- 00022797  0x00003a07 beq  0x00000007 , 0x000059a4 
- 00022798  0x00003a08 beq  0x00000008 , 0x000059a5 
- 00022799  0x00003a09 beq  0x00000009 , 0x000059ad 
- 00022800  0x00003a0a beq  0x0000000a , 0x000059ae 
- 00022801  0x00003a0b beq  0x0000000b , 0x000059b2 
- 00022802  0x00003a0c beq  0x0000000c , 0x000059b5 
- 00022803  0x00003a0d beq  0x0000000d , 0x000059b9 
- 00022804  0x00003a0e beq  0x0000000e , 0x000059ba 
- 00022805  0x00003a0f beq  0x0000000f , 0x000059c0 
- 00022806  0x00003a10 beq  0x00000010 , 0x000059c1 
- 00022807  0x00003a11 beq  0x00000011 , 0x000059c9 
- 00022808  0x00003a12 beq  0x00000012 , 0x000059ca 
- 00022809  0x00003a13 beq  0x00000013 , 0x000059da 
- 00022810  0x00003a14 beq  0x00000016 , 0x000059dc 
- 00022811  0x00003a15 beq  0x00000017 , 0x000059dd 
- 00022812  0x00003a16 beq  0x00000018 , 0x000059de 
- 00022813  0x00003a17 beq  0x00000019 , 0x000059df 
- 00022814  0x00003a18 beq  0x0000001b , 0x000059e0 
- 00022815  0x00003a19 beq  0x0000001d , 0x000059eb 
- 00022816  0x00003a1a beq  0x0000001e , 0x000059ec 
- 00022817  0x00003a1b beq  0x00000052 , 0x000059ed 
- 00022818  0x00003a1c beq  0x000000d2 , 0x00005a01 
- 00022819  0x00003a1d branch  0x00003bf1 
- 00022820  0x00003a21 ifetch  0x00000009 , 0x00000006 
- 00022821  0x00003a22 store  0x00000009 , 0x00004434 
- 00022822  0x00003a23 ifetch  0x00000002 , 0x00000006 
- 00022823  0x00003a24 store  0x00000002 , 0x000003e0 
- 00022824  0x00003a25 fetch  0x00000001 , 0x000003c0 
- 00022825  0x00003a26 set1  0x00000005 , 0x0000003f 
- 00022826  0x00003a27 store  0x00000001 , 0x000003c0 
- 00022827  0x00003a28 rtn 
- 00022828  0x00003a2b ifetch  0x00000005 , 0x00000006 
- 00022829  0x00003a2c store  0x00000005 , 0x0000442f 
- 00022830  0x00003a2d ifetch  0x00000002 , 0x00000006 
- 00022831  0x00003a2e store  0x00000002 , 0x000003e0 
- 00022832  0x00003a2f fetch  0x00000001 , 0x000003c0 
- 00022833  0x00003a30 set1  0x00000006 , 0x0000003f 
- 00022834  0x00003a31 store  0x00000001 , 0x000003c0 
- 00022835  0x00003a32 rtn 
- 00022836  0x00003a35 fetch  0x00000001 , 0x000003e4 
- 00022837  0x00003a36 set1  0x00000003 , 0x0000003f 
- 00022838  0x00003a37 store  0x00000001 , 0x000003e4 
- 00022839  0x00003a38 rtn 
- 00022840  0x00003a3b increase  0x0000000a , 0x00000006 
- 00022841  0x00003a3c ifetch  0x00000008 , 0x00000006 
- 00022842  0x00003a3d store  0x00000008 , 0x00000380 
- 00022843  0x00003a3e ifetch  0x00000004 , 0x00000006 
- 00022844  0x00003a3f store  0x00000004 , 0x00004473 
- 00022845  0x00003a40 jam  0x00000024 , 0x00000b7d 
- 00022846  0x00003a41 branch  0x00005620 
- 00022847  0x00003a44 ifetch  0x00000008 , 0x00000006 
- 00022848  0x00003a45 store  0x00000008 , 0x00000388 
- 00022849  0x00003a46 ifetch  0x00000004 , 0x00000006 
- 00022850  0x00003a47 store  0x00000004 , 0x00004477 
- 00022851  0x00003a48 branch  0x000074b6 
- 00022852  0x00003a4b fetch  0x00000001 , 0x000003c0 
- 00022853  0x00003a4c set1  0x00000004 , 0x0000003f 
- 00022854  0x00003a4d store  0x00000001 , 0x000003c0 
- 00022855  0x00003a4e jam  0x00000026 , 0x00000b7d 
- 00022856  0x00003a4f branch  0x00005620 
- 00022857  0x00003a52 rtn  0x00000029 
- 00022858  0x00003a53 jam  0x00000026 , 0x00000b7d 
- 00022859  0x00003a54 branch  0x00005620 
- 00022860  0x00003a57 rtn 
- 00022861  0x00003a5a jam  0x00000029 , 0x00000b7d 
- 00022862  0x00003a5b branch  0x00005620 
- 00022863  0x00003a5e rtn 
- 00022864  0x00003a61 rtn 
- 00022865  0x00003a64 rtn 
- 00022866  0x00003a67 rtn  0x00000029 
- 00022867  0x00003a68 jam  0x0000002c , 0x00000b7d 
- 00022868  0x00003a69 branch  0x00005620 
- 00022869  0x00003a6c rtn 
- 00022870  0x00003a70 store  0x00000001 , 0x000044ae 
- 00022871  0x00003a71 ifetch  0x00000006 , 0x00000006 
- 00022872  0x00003a72 istore  0x00000006 , 0x00000005 
- 00022873  0x00003a73 jam  0x00000042 , 0x00000b7d 
- 00022874  0x00003a74 branch  0x00005620 
- 00022875  0x00003a77 store  0x00000001 , 0x000044b5 
- 00022876  0x00003a78 ifetch  0x00000006 , 0x00000006 
- 00022877  0x00003a79 istore  0x00000006 , 0x00000005 
- 00022878  0x00003a7a jam  0x00000043 , 0x00000b7d 
- 00022879  0x00003a7b branch  0x00005620 
- 00022880  0x00003a7e arg  0x0000448c , 0x00000005 
- 00022881  0x00003a7f call  0x00007e35 
- 00022882  0x00003a80 jam  0x00000044 , 0x00000b7d 
- 00022883  0x00003a81 branch  0x00005620 , 0x00000029 
- 00022884  0x00003a82 jam  0x00000043 , 0x00000b7d 
- 00022885  0x00003a83 branch  0x00005620 
- 00022886  0x00003a86 call  0x000074a8 
- 00022887  0x00003a87 branch  0x0000596a , 0x00000005 
- 00022888  0x00003a88 jam  0x00000045 , 0x00000b7d 
- 00022889  0x00003a89 branch  0x00005620 
- 00022890  0x00003a8c call  0x000074a5 
- 00022891  0x00003a8d jam  0x00000023 , 0x00000b7d 
- 00022892  0x00003a8e branch  0x00005620 , 0x00000029 
- 00022893  0x00003a8f jam  0x00000044 , 0x00000b7d 
- 00022894  0x00003a90 branch  0x00005620 
- 00022895  0x00003a93 rtn 
- 00022896  0x00003a96 arg  0x00000390 , 0x00000005 
- 00022897  0x00003a97 branch  0x00007e35 
- 00022898  0x00003a9a rtn 
- 00022899  0x00003a9d rtn 
- 00022900  0x00003aa0 rtn 
- 00022901  0x00003aa3 rtn 
- 00022902  0x00003aa6 rtn 
- 00022903  0x00003aa9 increase  0xfffffffe , 0x00000006 
- 00022904  0x00003aaa ifetcht  0x00000001 , 0x00000006 
- 00022905  0x00003aab setarg  0x00000006 
- 00022906  0x00003aac isub  0x00000002 , 0x0000003e 
- 00022907  0x00003aad branch  0x00005989 , 0x00000005 
- 00022908  0x00003aae setarg  0x00000004 
- 00022909  0x00003aaf isub  0x00000002 , 0x0000003e 
- 00022910  0x00003ab0 branch  0x0000598a , 0x00000005 
- 00022911  0x00003ab1 setarg  0x00000008 
- 00022912  0x00003ab2 isub  0x00000002 , 0x0000003e 
- 00022913  0x00003ab3 branch  0x0000598b , 0x00000005 
- 00022914  0x00003ab4 setarg  0x0000000c 
- 00022915  0x00003ab5 isub  0x00000002 , 0x0000003e 
- 00022916  0x00003ab6 branch  0x0000598c , 0x00000005 
- 00022917  0x00003ab7 setarg  0x0000000e 
- 00022918  0x00003ab8 isub  0x00000002 , 0x0000003e 
- 00022919  0x00003ab9 branch  0x0000598d , 0x00000005 
- 00022920  0x00003aba rtn 
- 00022921  0x00003abd rtn 
- 00022922  0x00003ac0 rtn 
- 00022923  0x00003ac3 rtn 
- 00022924  0x00003ac6 rtn 
- 00022925  0x00003ac9 rtn 
- 00022926  0x00003acd jam  0x00000003 , 0x00000b7d 
- 00022927  0x00003ace branch  0x00005620 
- 00022928  0x00003ad1 rtn 
- 00022929  0x00003ad4 rshift8  0x0000003f , 0x0000003f 
- 00022930  0x00003ad5 store  0x00000002 , 0x000044bc 
- 00022931  0x00003ad6 ifetch  0x00000002 , 0x00000006 
- 00022932  0x00003ad7 store  0x00000002 , 0x000044be 
- 00022933  0x00003ad8 jam  0x00000005 , 0x00000b7d 
- 00022934  0x00003ad9 branch  0x00005620 
- 00022935  0x00003adc rtn 
- 00022936  0x00003adf rtn 
- 00022937  0x00003ae2 rtn 
- 00022938  0x00003ae5 rshift8  0x0000003f , 0x0000003f 
- 00022939  0x00003ae6 store  0x00000002 , 0x000044bc 
- 00022940  0x00003ae7 ifetch  0x00000002 , 0x00000006 
- 00022941  0x00003ae8 store  0x00000002 , 0x000044be 
- 00022942  0x00003ae9 ifetch  0x00000002 , 0x00000006 
- 00022943  0x00003aea store  0x00000002 , 0x000044c4 
- 00022944  0x00003aeb ifetch  0x00000002 , 0x00000006 
- 00022945  0x00003aec store  0x00000002 , 0x000044c0 
- 00022946  0x00003aed jam  0x00000007 , 0x00000b7d 
- 00022947  0x00003aee branch  0x00005620 
- 00022948  0x00003af2 rtn 
- 00022949  0x00003af5 rshift8  0x0000003f , 0x0000003f 
- 00022950  0x00003af6 store  0x00000002 , 0x000044bc 
- 00022951  0x00003af7 ifetch  0x00000002 , 0x00000006 
- 00022952  0x00003af8 store  0x00000002 , 0x000044be 
- 00022953  0x00003af9 ifetch  0x00000002 , 0x00000006 
- 00022954  0x00003afa store  0x00000002 , 0x000044c0 
- 00022955  0x00003afb jam  0x00000009 , 0x00000b7d 
- 00022956  0x00003afc branch  0x00005620 
- 00022957  0x00003aff rtn 
- 00022958  0x00003b02 fetch  0x00000002 , 0x00000347 
- 00022959  0x00003b03 store  0x00000002 , 0x000003fa 
- 00022960  0x00003b04 jam  0x0000000b , 0x00000b7d 
- 00022961  0x00003b05 branch  0x00005620 
- 00022962  0x00003b08 rtn 
- 00022963  0x00003b0b rtn 
- 00022964  0x00003b0e rtn 
- 00022965  0x00003b12 ifetch  0x00000002 , 0x00000006 
- 00022966  0x00003b13 store  0x00000002 , 0x000044c0 
- 00022967  0x00003b14 jam  0x0000000d , 0x00000b7d 
- 00022968  0x00003b15 branch  0x00005620 
- 00022969  0x00003b18 rtn 
- 00022970  0x00003b1b fetch  0x00000001 , 0x00000341 
- 00022971  0x00003b1c increase  0xfffffffb , 0x0000003f 
- 00022972  0x00003b1d rshift  0x0000003f , 0x0000003f 
- 00022973  0x00003b1e store  0x00000001 , 0x0000443d 
- 00022974  0x00003b1f jam  0x0000000f , 0x00000b7d 
- 00022975  0x00003b20 branch  0x00005620 
- 00022976  0x00003b23 rtn 
- 00022977  0x00003b26 rshift8  0x0000003f , 0x0000003f 
- 00022978  0x00003b27 store  0x00000002 , 0x000044bc 
- 00022979  0x00003b28 ifetch  0x00000002 , 0x00000006 
- 00022980  0x00003b29 store  0x00000002 , 0x000044be 
- 00022981  0x00003b2a ifetch  0x00000002 , 0x00000006 
- 00022982  0x00003b2b store  0x00000002 , 0x000044c0 
- 00022983  0x00003b2c jam  0x00000011 , 0x00000b7d 
- 00022984  0x00003b2d branch  0x00005620 
- 00022985  0x00003b30 rtn 
- 00022986  0x00003b33 fetch  0x00000001 , 0x00000341 
- 00022987  0x00003b34 increase  0xfffffff9 , 0x0000003f 
- 00022988  0x00003b35 icopy  0x00000039 
- 00022989  0x00003b36 fetcht  0x00000002 , 0x000003fa 
- 00022990  0x00003b37 call  0x00005a88 
- 00022991  0x00003b38 branch  0x000059d8 , 0x00000034 
- 00022992  0x00003b39 ifetch  0x00000001 , 0x00000006 
- 00022993  0x00003b3a isub  0x00000039 , 0x0000003e 
- 00022994  0x00003b3b nbranch  0x000059d8 , 0x00000002 
- 00022995  0x00003b3c copy  0x00000006 , 0x00000005 
- 00022996  0x00003b3e arg  0x00000349 , 0x00000006 
- 00022997  0x00003b3f call  0x00007e45 
- 00022998  0x00003b40 jam  0x00000028 , 0x00000b7d 
- 00022999  0x00003b41 call  0x00007c27 
- 00023000  0x00003b43 jam  0x00000013 , 0x00000b7d 
- 00023001  0x00003b44 branch  0x00005620 
- 00023002  0x00003b47 fetch  0x00000001 , 0x000003e3 
- 00023003  0x00003b48 rtn 
- 00023004  0x00003b4b rtn 
- 00023005  0x00003b4e rtn 
- 00023006  0x00003b51 rtn 
- 00023007  0x00003b54 rtn 
- 00023008  0x00003b5d ifetch  0x00000005 , 0x00000006 
- 00023009  0x00003b5e store  0x00000005 , 0x00000ff1 
- 00023010  0x00003b5f jam  0x00000001 , 0x00000ff0 
- 00023011  0x00003b61 call  0x00007cdb 
- 00023012  0x00003b62 rtn 
- 00023013  0x00003b64 copy  0x00000011 , 0x00000006 
- 00023014  0x00003b65 ifetch  0x00000008 , 0x00000006 
- 00023015  0x00003b66 store  0x00000008 , 0x00000ff1 
- 00023016  0x00003b67 jam  0x00000002 , 0x00000ff0 
- 00023017  0x00003b68 call  0x00007cdb 
- 00023018  0x00003b69 rtn 
- 00023019  0x00003b6c rtn 
- 00023020  0x00003b6f rtn 
- 00023021  0x00003b72 fetch  0x00000001 , 0x00000341 
- 00023022  0x00003b73 increase  0xfffffff9 , 0x0000003f 
- 00023023  0x00003b74 icopy  0x00000039 
- 00023024  0x00003b75 fetcht  0x00000002 , 0x000003fa 
- 00023025  0x00003b76 call  0x00005a88 
- 00023026  0x00003b77 branch  0x000059fd , 0x00000034 
- 00023027  0x00003b78 ifetch  0x00000001 , 0x00000006 
- 00023028  0x00003b79 isub  0x00000039 , 0x0000003e 
- 00023029  0x00003b7a nbranch  0x000059fd , 0x00000002 
- 00023030  0x00003b7b copy  0x00000006 , 0x00000005 
- 00023031  0x00003b7c copy  0x00000006 , 0x00000011 
- 00023032  0x00003b7d copy  0x00000039 , 0x00000012 
- 00023033  0x00003b7e arg  0x00000349 , 0x00000006 
- 00023034  0x00003b7f call  0x00007e45 
- 00023035  0x00003b80 jam  0x00000001 , 0x00000481 
- 00023036  0x00003b81 call  0x000059fe 
- 00023037  0x00003b83 rtn 
- 00023038  0x00003b87 fetch  0x00000002 , 0x00004296 
- 00023039  0x00003b88 rtn  0x00000034 
- 00023040  0x00003b89 iforce  0x0000003d 
- 00023041  0x00003b8d rtn 
- 00023042  0x00003b90 fetcht  0x00000004 , 0x000003dc 
- 00023043  0x00003b91 call  0x00003bde 
- 00023044  0x00003b92 isub  0x00000002 , 0x0000000b 
- 00023045  0x00003b93 deposit  0x0000000b 
- 00023046  0x00003b94 fetcht  0x00000002 , 0x000003ef 
- 00023047  0x00003b95 lshift4  0x00000002 , 0x00000002 
- 00023048  0x00003b96 lshift  0x00000002 , 0x00000002 
- 00023049  0x00003b97 isub  0x00000002 , 0x0000003f 
- 00023050  0x00003b98 rtn 
- 00023051  0x00003b9b call  0x00003bde 
- 00023052  0x00003b9c store  0x00000004 , 0x000003dc 
- 00023053  0x00003b9d rtn 
- 00023054  0x00003ba2 set1  0x00000025 , 0x00000000 
- 00023055  0x00003ba3 bpatch  0x00000070 , 0x0000402e 
- 00023056  0x00003ba4 fetch  0x00000001 , 0x000043d8 
- 00023057  0x00003ba5 rtn  0x00000034 
- 00023058  0x00003ba6 arg  0x00000001 , 0x00000007 
- 00023059  0x00003ba7 call  0x00007e53 
- 00023060  0x00003ba8 nrtn  0x00000034 
- 00023061  0x00003ba9 disable  0x00000029 
- 00023062  0x00003baa enable  0x00000010 
- 00023063  0x00003bab call  0x00005572 
- 00023064  0x00003bac call  0x0000542c 
- 00023065  0x00003bad call  0x000054de 
- 00023066  0x00003bae nbranch  0x00005a24 , 0x0000002d 
- 00023067  0x00003baf set1  0x00000025 , 0x00000000 
- 00023068  0x00003bb0 bpatch  0x00000071 , 0x0000402e 
- 00023069  0x00003bb1 fetch  0x00000001 , 0x00000003 
- 00023070  0x00003bb2 increase  0x00000001 , 0x0000003f 
- 00023071  0x00003bb3 store  0x00000001 , 0x00000003 
- 00023072  0x00003bb4 fetch  0x00000001 , 0x00000340 
- 00023073  0x00003bb5 and  0x0000003f , 0x0000000f , 0x0000003f 
- 00023074  0x00003bb6 beq  0x00000003 , 0x00005519 
- 00023075  0x00003bb7 beq  0x00000005 , 0x00005a41 
- 00023076  0x00003bb9 nop  0x00002710 
- 00023077  0x00003bba fetch  0x00000001 , 0x00000016 
- 00023078  0x00003bbb bne  0x00000027 , 0x00005a0e 
- 00023079  0x00003bbc call  0x00005ad8 
- 00023080  0x00003bbd arg  0x00000001 , 0x00000007 
- 00023081  0x00003bbe fetch  0x00000002 , 0x000044d9 
- 00023082  0x00003bbf branch  0x00007e4c 
- 00023083  0x00003bc3 set1  0x00000025 , 0x00000000 
- 00023084  0x00003bc4 bpatch  0x00000072 , 0x0000402e 
- 00023085  0x00003bc5 fetch  0x00000001 , 0x000003f8 
- 00023086  0x00003bc6 call  0x00005405 
- 00023087  0x00003bc7 fetch  0x00000002 , 0x000003c2 
- 00023088  0x00003bc8 imul32  0x00000002 , 0x0000003f 
- 00023089  0x00003bc9 arg  0x00000177 , 0x00000002 
- 00023090  0x00003bca imul32  0x00000002 , 0x0000003f 
- 00023091  0x00003bcb arg  0x000186a0 , 0x00000002 
- 00023092  0x00003bcc idiv  0x00000002 
- 00023093  0x00003bcd fetch  0x00000001 , 0x000003ec 
- 00023094  0x00003bce arg  0x00004e20 , 0x00000002 
- 00023095  0x00003bcf imul32  0x00000002 , 0x0000003f 
- 00023096  0x00003bd0 store  0x00000004 , 0x000046f9 
- 00023097  0x00003bd1 set1  0x00000025 , 0x00000000 
- 00023098  0x00003bd2 bpatch  0x00000073 , 0x0000402e 
- 00023099  0x00003bd3 fetch  0x00000002 , 0x00004161 
- 00023100  0x00003bd4 call  0x00007efd 
- 00023101  0x00003bd5 quotient  0x00000002 
- 00023102  0x00003bd6 iadd  0x00000002 , 0x0000003f 
- 00023103  0x00003bd7 store  0x00000002 , 0x000003ce 
- 00023104  0x00003bd8 rtn 
- 00023105  0x00003bdb set1  0x00000025 , 0x00000000 
- 00023106  0x00003bdc bpatch  0x00000074 , 0x0000402e 
- 00023107  0x00003bdd fetch  0x00000006 , 0x00000348 
- 00023108  0x00003bde fetcht  0x00000006 , 0x000044f9 
- 00023109  0x00003bdf isub  0x00000002 , 0x0000003e 
- 00023110  0x00003be0 nrtn  0x00000005 
- 00023111  0x00003be1 call  0x00005613 
- 00023112  0x00003be2 copy  0x00000011 , 0x0000003f 
- 00023113  0x00003be3 store  0x00000001 , 0x000044e6 
- 00023114  0x00003be4 fetch  0x00000007 , 0x00000355 
- 00023115  0x00003be5 store  0x00000007 , 0x00000103 
- 00023116  0x00003be6 ifetch  0x00000008 , 0x00000006 
- 00023117  0x00003be7 istore  0x00000008 , 0x00000005 
- 00023118  0x00003be8 fetch  0x00000006 , 0x00000342 
- 00023119  0x00003be9 store  0x00000006 , 0x000003d0 
- 00023120  0x00003bea set1  0x00000025 , 0x00000000 
- 00023121  0x00003beb bpatch  0x00000075 , 0x0000402e 
- 00023122  0x00003bec increase  0x00000006 , 0x00000006 
- 00023123  0x00003bed ifetch  0x00000008 , 0x00000006 
- 00023124  0x00003bee store  0x00000008 , 0x000003e5 
- 00023125  0x00003bef ifetcht  0x00000002 , 0x00000006 
- 00023126  0x00003bf0 lshift2  0x00000002 , 0x00000002 
- 00023127  0x00003bf1 ifetch  0x00000002 , 0x00000006 
- 00023128  0x00003bf2 lshift2  0x0000003f , 0x0000003f 
- 00023129  0x00003bf3 store  0x00000002 , 0x000003c2 
- 00023130  0x00003bf4 store  0x00000004 , 0x000003c4 
- 00023131  0x00003bf5 isub  0x00000002 , 0x0000003f 
- 00023132  0x00003bf6 add  0x0000003f , 0xfffffffe , 0x00000028 
- 00023133  0x00003bf7 ifetch  0x00000009 , 0x00000006 
- 00023134  0x00003bf8 store  0x00000009 , 0x000003ed 
- 00023135  0x00003bf9 set1  0x00000025 , 0x00000000 
- 00023136  0x00003bfa bpatch  0x00000076 , 0x0000402e 
- 00023137  0x00003bfb ifetch  0x00000001 , 0x00000006 
- 00023138  0x00003bfc rshift4  0x0000003f , 0x00000002 
- 00023139  0x00003bfd rshift  0x00000002 , 0x00000002 
- 00023140  0x00003bfe storet  0x00000001 , 0x000003f8 
- 00023141  0x00003bff and_into  0x0000001f , 0x0000003f 
- 00023142  0x00003c00 store  0x00000001 , 0x000003d9 
- 00023143  0x00003c01 call  0x00005a2b 
- 00023144  0x00003c02 call  0x00005447 
- 00023145  0x00003c03 call  0x0000536c 
- 00023146  0x00003c04 call  0x000032d6 
- 00023147  0x00003c05 nrtn  0x00000005 
- 00023148  0x00003c06 set1  0x00000025 , 0x00000000 
- 00023149  0x00003c07 bpatch  0x00000077 , 0x0000402e 
- 00023150  0x00003c08 arg  0x00000000 , 0x00000002 
- 00023151  0x00003c09 call  0x000048ea 
- 00023152  0x00003c0a call  0x000039ac 
- 00023153  0x00003c0b jam  0x00000014 , 0x00000b7d 
- 00023154  0x00003c0c call  0x00007c27 
- 00023155  0x00003c0e branch  0x000032bd 
- 00023156  0x00003c12 set1  0x00000025 , 0x00000000 
- 00023157  0x00003c13 bpatch  0x00000078 , 0x0000402f 
- 00023158  0x00003c14 fetch  0x00000002 , 0x000044bc 
- 00023159  0x00003c15 iforce  0x00000012 
- 00023160  0x00003c16 fetch  0x00000002 , 0x000044be 
- 00023161  0x00003c17 iforce  0x00000013 
- 00023162  0x00003c18 arg  0x00004504 , 0x00000006 
- 00023163  0x00003c19 enable  0x00000028 
- 00023164  0x00003c1a rtn 
- 00023165  0x00003c1e ifetch  0x00000002 , 0x00000006 
- 00023166  0x00003c1f rtn  0x00000034 
- 00023167  0x00003c20 isub  0x00000012 , 0x0000003e 
- 00023168  0x00003c21 nrtn  0x00000002 
- 00023169  0x00003c22 isub  0x00000013 , 0x0000003e 
- 00023170  0x00003c23 rtn  0x00000005 
- 00023171  0x00003c24 branch  0x00005a86 , 0x00000002 
- 00023172  0x00003c25 force  0x00000001 , 0x0000003e 
- 00023173  0x00003c26 rtn 
- 00023174  0x00003c28 force  0x00000000 , 0x0000003f 
- 00023175  0x00003c29 rtn 
- 00023176  0x00003c2d arg  0x00004504 , 0x00000006 
- 00023177  0x00003c2f ifetch  0x00000002 , 0x00000006 
- 00023178  0x00003c30 rtn  0x00000034 
- 00023179  0x00003c31 increase  0x00000002 , 0x00000006 
- 00023180  0x00003c32 isub  0x00000002 , 0x0000003e 
- 00023181  0x00003c33 rtn  0x00000005 
- 00023182  0x00003c34 ifetch  0x00000001 , 0x00000006 
- 00023183  0x00003c35 iadd  0x00000006 , 0x00000006 
- 00023184  0x00003c36 branch  0x00005a89 
- 00023185  0x00003c39 jam  0x00000002 , 0x000044c6 
- 00023186  0x00003c3a setarg  0x00000001 
- 00023187  0x00003c3b store  0x00000002 , 0x000044c7 
- 00023188  0x00003c3c jam  0x00000025 , 0x000003e3 
- 00023189  0x00003c3d jam  0x00000012 , 0x00000b7d 
- 00023190  0x00003c3e branch  0x00005620 
- 00023191  0x00003c41 rtn 
- 00023192  0x00003c43 rtn 
- 00023193  0x00003c45 set1  0x00000025 , 0x00000000 
- 00023194  0x00003c46 bpatch  0x00000079 , 0x0000402f 
- 00023195  0x00003c47 fetch  0x00000001 , 0x00004132 
- 00023196  0x00003c48 rtnne  0x00000004 
- 00023197  0x00003c49 fetch  0x00000001 , 0x000003e3 
- 00023198  0x00003c4a beq  0x00000021 , 0x00005a91 
- 00023199  0x00003c4b beq  0x00000025 , 0x00005a97 
- 00023200  0x00003c4c beq  0x00000026 , 0x00005a98 
- 00023201  0x00003c4d rtn 
- 00023202  0x00003c50 setarg  0x00005aae 
- 00023203  0x00003c51 store  0x00000002 , 0x0000428c 
- 00023204  0x00003c52 hjam  0x00000081 , 0x00008062 
- 00023205  0x00003c53 setarg  0x000001a0 
- 00023206  0x00003c54 hstore  0x00000002 , 0x00008052 
- 00023207  0x00003c55 hjam  0x00000001 , 0x00008043 
- 00023208  0x00003c56 hjam  0x00000004 , 0x00008081 
- 00023209  0x00003c57 setarg  0x00005ac6 
- 00023210  0x00003c58 store  0x00000002 , 0x00004296 
- 00023211  0x00003c59 call  0x00005347 
- 00023212  0x00003c5a rtn  0x0000002b 
- 00023213  0x00003c5b branch  0x0000691d 
- 00023214  0x00003c5f fetch  0x00000001 , 0x000003c1 
- 00023215  0x00003c60 compare  0x00000001 , 0x0000003f , 0x000000ff 
- 00023216  0x00003c61 setarg  0x00000005 
- 00023217  0x00003c62 call  0x00006a04 , 0x00000001 
- 00023218  0x00003c63 ncall  0x000069ff , 0x00000001 
- 00023219  0x00003c64 call  0x000068fd 
- 00023220  0x00003c65 branch  0x00005abe , 0x00000034 
- 00023221  0x00003c66 fetch  0x00000002 , 0x00000419 
- 00023222  0x00003c67 iforce  0x00000005 
- 00023223  0x00003c68 sub  0x00000039 , 0x00000014 , 0x0000003e 
- 00023224  0x00003c69 branch  0x00005aba , 0x00000002 
- 00023225  0x00003c6a force  0x00000014 , 0x00000039 
- 00023226  0x00003c6c ifetch  0x00000001 , 0x00000003 
- 00023227  0x00003c6d istore  0x00000001 , 0x00000005 
- 00023228  0x00003c6e loop  0x00005aba 
- 00023229  0x00003c6f call  0x00006906 
- 00023230  0x00003c71 jam  0x00000014 , 0x000044c2 
- 00023231  0x00003c72 fetcht  0x00000002 , 0x00000419 
- 00023232  0x00003c73 ifetch  0x00000001 , 0x00000002 
- 00023233  0x00003c74 rtn  0x00000034 
- 00023234  0x00003c75 call  0x0000561c 
- 00023235  0x00003c76 nrtn  0x00000034 
- 00023236  0x00003c77 jam  0x0000001b , 0x00000b7d 
- 00023237  0x00003c78 branch  0x00005620 
- 00023238  0x00003c7b copy  0x00000012 , 0x00000002 
- 00023239  0x00003c7c call  0x000068f7 
- 00023240  0x00003c7d copy  0x00000011 , 0x00000006 
- 00023241  0x00003c7e copy  0x00000012 , 0x00000039 
- 00023242  0x00003c80 ifetch  0x00000001 , 0x00000006 
- 00023243  0x00003c81 istore  0x00000001 , 0x0000000a 
- 00023244  0x00003c82 loop  0x00005aca 
- 00023245  0x00003c83 branch  0x000068fa 
- 00023246  0x00003c86 fetch  0x00000001 , 0x00004132 
- 00023247  0x00003c87 rtnne  0x00000006 
- 00023248  0x00003c88 fetch  0x00000002 , 0x000044c2 
- 00023249  0x00003c89 rtnne  0x00000014 
- 00023250  0x00003c8a fetcht  0x00000002 , 0x00000419 
- 00023251  0x00003c8b setarg  0x00000000 
- 00023252  0x00003c8c istore  0x00000009 , 0x00000002 
- 00023253  0x00003c8d istore  0x00000009 , 0x00000005 
- 00023254  0x00003c8e istore  0x00000002 , 0x00000005 
- 00023255  0x00003c8f rtn 
- 00023256  0x00003c93 fetcht  0x00000001 , 0x000043d7 
- 00023257  0x00003c94 setflip  0x00000007 , 0x00000002 
- 00023258  0x00003c95 branch  0x000069f3 
- 00023259  0x00003c99 set1  0x00000025 , 0x00000000 
- 00023260  0x00003c9a bpatch  0x0000007a , 0x0000402f 
- 00023261  0x00003c9b call  0x00005adf 
- 00023262  0x00003c9c branch  0x00005aed 
- 00023263  0x00003c9f fetch  0x00000001 , 0x00004419 
- 00023264  0x00003ca0 copy  0x0000003f , 0x00000039 
- 00023265  0x00003ca1 arg  0x00002a00 , 0x00000002 
- 00023266  0x00003ca2 call  0x00005b0c 
- 00023267  0x00003ca3 increase  0x00000001 , 0x00000006 
- 00023268  0x00003ca4 copy  0x00000006 , 0x00000005 
- 00023269  0x00003ca5 arg  0x0000441a , 0x00000006 
- 00023270  0x00003ca6 call  0x00007e45 
- 00023271  0x00003ca7 fetch  0x00000001 , 0x00004419 
- 00023272  0x00003ca8 sub  0x0000003f , 0x00000014 , 0x00000039 
- 00023273  0x00003ca9 copy  0x00000039 , 0x00000002 
- 00023274  0x00003caa copy  0x00000039 , 0x0000003f 
- 00023275  0x00003cab ncall  0x00005b15 , 0x00000034 
- 00023276  0x00003cac rtn 
- 00023277  0x00003caf fetch  0x00000001 , 0x000043d9 
- 00023278  0x00003cb0 fetcht  0x00000001 , 0x000043da 
- 00023279  0x00003cb1 isub  0x00000002 , 0x0000003f 
- 00023280  0x00003cb2 copy  0x0000003f , 0x00000039 
- 00023281  0x00003cb3 copy  0x0000003f , 0x00000011 
- 00023282  0x00003cb4 fetch  0x00000001 , 0x000043da 
- 00023283  0x00003cb5 increase  0x00000001 , 0x0000003f 
- 00023284  0x00003cb6 arg  0x000043da , 0x00000006 
- 00023285  0x00003cb7 iadd  0x00000006 , 0x00000006 
- 00023286  0x00003cb8 arg  0x0000041d , 0x00000005 
- 00023287  0x00003cb9 call  0x00007e45 
- 00023288  0x00003cba set1  0x00000025 , 0x00000000 
- 00023289  0x00003cbb bpatch  0x0000007b , 0x0000402f 
- 00023290  0x00003cbc fetch  0x00000001 , 0x00004419 
- 00023291  0x00003cbd copy  0x0000003f , 0x00000039 
- 00023292  0x00003cbe increase  0x00000001 , 0x0000003f 
- 00023293  0x00003cbf store  0x00000001 , 0x000043da 
- 00023294  0x00003cc0 arg  0x000043dc , 0x00000005 
- 00023295  0x00003cc1 arg  0x0000441a , 0x00000006 
- 00023296  0x00003cc2 call  0x00007e45 
- 00023297  0x00003cc3 copy  0x00000011 , 0x00000039 
- 00023298  0x00003cc4 arg  0x0000041d , 0x00000006 
- 00023299  0x00003cc5 call  0x00007e45 
- 00023300  0x00003cc6 fetch  0x00000001 , 0x000043da 
- 00023301  0x00003cc7 iadd  0x00000011 , 0x0000003f 
- 00023302  0x00003cc8 store  0x00000001 , 0x000043d9 
- 00023303  0x00003cc9 rtn 
- 00023304  0x00003ccd set1  0x00000025 , 0x00000000 
- 00023305  0x00003cce bpatch  0x0000007c , 0x0000402f 
- 00023306  0x00003ccf arg  0x00002a00 , 0x00000002 
- 00023307  0x00003cd0 branch  0x00005b0c 
- 00023308  0x00003cd4 arg  0x00004504 , 0x00000006 
- 00023309  0x00003cd6 ifetch  0x00000002 , 0x00000006 
- 00023310  0x00003cd7 branch  0x00003bf1 , 0x00000034 
- 00023311  0x00003cd8 ifetch  0x00000002 , 0x00000006 
- 00023312  0x00003cd9 isub  0x00000002 , 0x0000003e 
- 00023313  0x00003cda rtn  0x00000005 
- 00023314  0x00003cdb ifetch  0x00000001 , 0x00000006 
- 00023315  0x00003cdc iadd  0x00000006 , 0x00000006 
- 00023316  0x00003cdd branch  0x00005b0d 
- 00023317  0x00003ce1 setarg  0x00000020 
- 00023318  0x00003ce2 istore  0x00000001 , 0x00000005 
- 00023319  0x00003ce3 loop  0x00005b15 
- 00023320  0x00003ce4 rtn 
- 00023321  0x00003ce8 set1  0x00000025 , 0x00000000 
- 00023322  0x00003ce9 bpatch  0x0000007d , 0x0000402f 
- 00023323  0x00003cea disable  0x0000002b 
- 00023324  0x00003ceb branch  0x00005b1e , 0x0000002e 
- 00023325  0x00003cec nbranch  0x00005b2a , 0x0000002d 
- 00023326  0x00003cee call  0x00003d76 
- 00023327  0x00003cef fetch  0x00000002 , 0x00004161 
- 00023328  0x00003cf0 store  0x00000002 , 0x000003ce 
- 00023329  0x00003cf1 fetch  0x00000001 , 0x00000340 
- 00023330  0x00003cf2 compare  0x00000001 , 0x0000003f , 0x00000003 
- 00023331  0x00003cf3 nbranch  0x00003d8a , 0x00000001 
- 00023332  0x00003cf4 fetch  0x00000001 , 0x0000443e 
- 00023333  0x00003cf5 compare  0x00000001 , 0x0000003f , 0x00000003 
- 00023334  0x00003cf6 nbranch  0x00003d8a , 0x00000001 
- 00023335  0x00003cf7 fetch  0x00000001 , 0x000003c0 
- 00023336  0x00003cf8 bbit1  0x00000005 , 0x00003d8a 
- 00023337  0x00003cf9 branch  0x00003d6f 
- 00023338  0x00003cfc fetcht  0x00000002 , 0x00004161 
- 00023339  0x00003cfd rshift  0x00000002 , 0x00000002 
- 00023340  0x00003cfe fetch  0x00000002 , 0x000003ce 
- 00023341  0x00003cff iadd  0x00000002 , 0x0000003f 
- 00023342  0x00003d00 store  0x00000002 , 0x000003ce 
- 00023343  0x00003d01 branch  0x00003d82 
- 00023344  0x00003d04 set1  0x00000025 , 0x00000000 
- 00023345  0x00003d05 bpatch  0x0000007e , 0x0000402f 
- 00023346  0x00003d06 jam  0x00000000 , 0x000046f8 
- 00023347  0x00003d07 fetcht  0x00000002 , 0x000044c2 
- 00023348  0x00003d08 call  0x00005866 
- 00023349  0x00003d09 copy  0x00000011 , 0x00000005 
- 00023350  0x00003d0a setarg  0x00000000 
- 00023351  0x00003d0b istore  0x00000001 , 0x00000005 
- 00023352  0x00003d0c rtn 
- 00023353  0x00003d0e fetch  0x00000001 , 0x00004132 
- 00023354  0x00003d0f rtnne  0x0000000a 
- 00023355  0x00003d10 call  0x00007f6e 
- 00023356  0x00003d11 arg  0x000003d0 , 0x00000011 
- 00023357  0x00003d12 call  0x00007e9d 
- 00023358  0x00003d13 setarg  0x0000002c 
- 00023359  0x00003d14 istore  0x00000001 , 0x0000000a 
- 00023360  0x00003d15 call  0x000041d4 
- 00023361  0x00003d16 branch  0x000068fa 
- 00023362  0x00003d1a arg  0x00000014 , 0x00000002 
- 00023363  0x00003d1b call  0x00005866 
- 00023364  0x00003d1c rtnbit0  0x00000000 
- 00023365  0x00003d1d call  0x0000561c 
- 00023366  0x00003d1e nrtn  0x00000034 
- 00023367  0x00003d1f arg  0x00000014 , 0x00000002 
- 00023368  0x00003d20 storet  0x00000002 , 0x000044c2 
- 00023369  0x00003d21 call  0x00005a88 
- 00023370  0x00003d22 branch  0x00003bf1 , 0x00000034 
- 00023371  0x00003d23 add  0x00000006 , 0x00000001 , 0x00000005 
- 00023372  0x00003d24 arg  0x00000014 , 0x00000039 
- 00023373  0x00003d25 arg  0x0000046d , 0x00000006 
- 00023374  0x00003d26 call  0x00007e45 
- 00023375  0x00003d27 jam  0x0000001b , 0x00000b7d 
- 00023376  0x00003d28 branch  0x00005620 
- 00023377  0x00003d2a rtn 
- 00023378  0x00003d2e set1  0x00000025 , 0x00000000 
- 00023379  0x00003d2f bpatch  0x0000007f , 0x0000402f 
- 00023380  0x00003d30 fetch  0x00000001 , 0x00000341 
- 00023381  0x00003d31 arg  0x00000348 , 0x00000006 
- 00023382  0x00003d32 iadd  0x00000006 , 0x00000039 
- 00023383  0x00003d34 ifetcht  0x00000001 , 0x00000006 
- 00023384  0x00003d35 ifetch  0x00000001 , 0x00000006 
- 00023385  0x00003d36 isub  0x00000011 , 0x0000003e 
- 00023386  0x00003d37 rtn  0x00000005 
- 00023387  0x00003d38 add  0x00000002 , 0xffffffff , 0x0000003f 
- 00023388  0x00003d39 iadd  0x00000006 , 0x00000006 
- 00023389  0x00003d3a deposit  0x00000039 
- 00023390  0x00003d3b isub  0x00000006 , 0x0000003e 
- 00023391  0x00003d3c branch  0x00005b57 , 0x00000002 
- 00023392  0x00003d3d force  0x00000001 , 0x0000003e 
- 00023393  0x00003d3e rtn 
- 00023394  0x00003d46 rtn  0x0000002b 
- 00023395  0x00003d48 setarg  0x00000000 
- 00023396  0x00003d49 store  0x00000001 , 0x00000048 
- 00023397  0x00003d4a store  0x00000001 , 0x00000055 
- 00023398  0x00003d4b store  0x00000001 , 0x00000078 
- 00023399  0x00003d4c store  0x00000001 , 0x0000007c 
- 00023400  0x00003d4d store  0x00000001 , 0x000041f9 
- 00023401  0x00003d4e store  0x00000001 , 0x00000453 
- 00023402  0x00003d4f store  0x00000001 , 0x00000177 
- 00023403  0x00003d50 store  0x00000001 , 0x000007e1 
- 00023404  0x00003d51 jam  0x00000000 , 0x00004748 
- 00023405  0x00003d52 jam  0x00000000 , 0x00000258 
- 00023406  0x00003d53 jam  0x00000000 , 0x00000454 
- 00023407  0x00003d55 set1  0x00000025 , 0x00000000 
- 00023408  0x00003d56 bpatch  0x000000e0 , 0x0000403c 
- 00023409  0x00003d57 jam  0x00000000 , 0x000007e1 
- 00023410  0x00003d58 jam  0x00000000 , 0x000007e0 
- 00023411  0x00003d59 jam  0x00000000 , 0x0000044d 
- 00023412  0x00003d5a fetch  0x00000001 , 0x00004132 
- 00023413  0x00003d5b rtnne  0x00000001 , 0x0000003f 
- 00023414  0x00003d5c jam  0x00000000 , 0x0000425e 
- 00023415  0x00003d5f rtn 
- 00023416  0x00003d62 set1  0x00000025 , 0x00000000 
- 00023417  0x00003d63 bpatch  0x000000e1 , 0x0000403c 
- 00023418  0x00003d64 call  0x00006219 , 0x00000029 
- 00023419  0x00003d65 ncall  0x0000621d , 0x00000029 
- 00023420  0x00003d66 fetch  0x00000001 , 0x0000007c 
- 00023421  0x00003d67 ncall  0x000061d9 , 0x00000034 
- 00023422  0x00003d68 fetch  0x00000001 , 0x0000007c 
- 00023423  0x00003d69 nrtn  0x00000034 
- 00023424  0x00003d6a fetch  0x00000001 , 0x0000004c 
- 00023425  0x00003d6b rtnbit0  0x00000006 
- 00023426  0x00003d6c set0  0x00000006 , 0x0000003f 
- 00023427  0x00003d6d set0  0x00000001 , 0x00000000 
- 00023428  0x00003d6e store  0x00000001 , 0x0000004c 
- 00023429  0x00003d6f fetch  0x00000001 , 0x000004de 
- 00023430  0x00003d70 fetcht  0x00000001 , 0x0000004c 
- 00023431  0x00003d71 isolate1  0x00000000 , 0x0000003f 
- 00023432  0x00003d72 setflag  0x00000001 , 0x00000001 , 0x00000002 
- 00023433  0x00003d73 storet  0x00000001 , 0x0000004c 
- 00023434  0x00003d74 and_into  0x00000002 , 0x00000002 
- 00023435  0x00003d75 storet  0x00000001 , 0x0000007f 
- 00023436  0x00003d76 fetcht  0x00000001 , 0x0000004c 
- 00023437  0x00003d77 rshift  0x0000003f , 0x0000003f 
- 00023438  0x00003d78 store  0x00000001 , 0x0000007d 
- 00023439  0x00003d79 set1  0x00000025 , 0x00000000 
- 00023440  0x00003d7a bpatch  0x000000e2 , 0x0000403c 
- 00023441  0x00003d7b fetch  0x00000001 , 0x0000007d 
- 00023442  0x00003d7c beq  0x0000007f , 0x00005bdc 
- 00023443  0x00003d7d beq  0x00000003 , 0x00005c56 
- 00023444  0x00003d7e beq  0x00000004 , 0x00005c67 
- 00023445  0x00003d7f beq  0x0000003c , 0x00005bcf 
- 00023446  0x00003d80 beq  0x00000005 , 0x00005bcb 
- 00023447  0x00003d81 beq  0x0000000f , 0x00005e48 
- 00023448  0x00003d82 beq  0x00000010 , 0x00005ce1 
- 00023449  0x00003d83 beq  0x00000023 , 0x00005cff 
- 00023450  0x00003d84 beq  0x00000039 , 0x00005e67 
- 00023451  0x00003d85 beq  0x00000038 , 0x00005e62 
- 00023452  0x00003d86 beq  0x00000031 , 0x00005ce4 
- 00023453  0x00003d87 beq  0x00000037 , 0x00005d72 
- 00023454  0x00003d88 beq  0x00000027 , 0x00005d6e 
- 00023455  0x00003d89 beq  0x00000033 , 0x00005d68 
- 00023456  0x00003d8a beq  0x00000025 , 0x00005d70 
- 00023457  0x00003d8b beq  0x00000026 , 0x00005cfb 
- 00023458  0x00003d8c beq  0x00000007 , 0x00005cf3 
- 00023459  0x00003d8d beq  0x0000002d , 0x00005cea 
- 00023460  0x00003d8e beq  0x0000002e , 0x00005ceb 
- 00023461  0x00003d8f beq  0x00000001 , 0x00005d64 
- 00023462  0x00003d90 beq  0x00000002 , 0x00005d4f 
- 00023463  0x00003d91 beq  0x00000028 , 0x00005e53 
- 00023464  0x00003d92 beq  0x00000009 , 0x00005d45 
- 00023465  0x00003d93 beq  0x0000000b , 0x00005d1a 
- 00023466  0x00003d94 beq  0x00000008 , 0x00005d00 
- 00023467  0x00003d95 beq  0x0000000c , 0x00005d2c 
- 00023468  0x00003d96 beq  0x0000001f , 0x00005cf7 
- 00023469  0x00003d97 beq  0x00000020 , 0x00005cf9 
- 00023470  0x00003d98 beq  0x00000021 , 0x00005d8d 
- 00023471  0x00003d99 beq  0x00000022 , 0x00005d8e 
- 00023472  0x00003d9a beq  0x00000035 , 0x00005d8f 
- 00023473  0x00003d9b beq  0x00000036 , 0x00005d90 
- 00023474  0x00003d9c beq  0x00000024 , 0x00005d91 
- 00023475  0x00003d9d beq  0x0000002c , 0x00005d92 
- 00023476  0x00003d9e beq  0x0000002b , 0x00005d95 
- 00023477  0x00003d9f beq  0x00000034 , 0x00005d9f 
- 00023478  0x00003da0 beq  0x00000017 , 0x00005da2 
- 00023479  0x00003da1 beq  0x00000011 , 0x00005db7 
- 00023480  0x00003da2 beq  0x00000012 , 0x00005dbb 
- 00023481  0x00003da3 beq  0x00000013 , 0x00005dbd 
- 00023482  0x00003da4 beq  0x0000000d , 0x00005dcf 
- 00023483  0x00003da5 beq  0x0000000e , 0x00005dd0 
- 00023484  0x00003da6 beq  0x0000002f , 0x00005d6c 
- 00023485  0x00003da7 beq  0x00000030 , 0x00005dd1 
- 00023486  0x00003da8 beq  0x0000000a , 0x00005dd2 
- 00023487  0x00003da9 beq  0x00000018 , 0x00005dd3 
- 00023488  0x00003daa beq  0x00000032 , 0x00005dda 
- 00023489  0x00003dab beq  0x0000003d , 0x00005ddb 
- 00023490  0x00003dac beq  0x0000003e , 0x00005dff 
- 00023491  0x00003dad beq  0x0000003f , 0x00005df9 
- 00023492  0x00003dae beq  0x00000040 , 0x00005e22 
- 00023493  0x00003daf beq  0x00000041 , 0x00005e34 
- 00023494  0x00003db0 beq  0x00000006 , 0x00005e47 
- 00023495  0x00003db1 beq  0x0000003a , 0x00005bcd 
- 00023496  0x00003db5 jam  0x00000019 , 0x0000007e 
- 00023497  0x00003db7 jam  0x00000004 , 0x0000007c 
- 00023498  0x00003db8 rtn 
- 00023499  0x00003dbb jam  0x00000006 , 0x0000007c 
- 00023500  0x00003dbc rtn 
- 00023501  0x00003dbf jam  0x0000003b , 0x0000007c 
- 00023502  0x00003dc0 rtn 
- 00023503  0x00003dc3 fetch  0x00000004 , 0x000004df 
- 00023504  0x00003dc4 lshift  0x0000003f , 0x0000003f 
- 00023505  0x00003dc5 store  0x00000004 , 0x00004173 
- 00023506  0x00003dc6 fetch  0x00000001 , 0x000004e3 
- 00023507  0x00003dc7 store  0x00000001 , 0x0000417a 
- 00023508  0x00003dc8 fetch  0x00000005 , 0x000004e4 
- 00023509  0x00003dc9 store  0x00000005 , 0x00004188 
- 00023510  0x00003dca fetch  0x00000005 , 0x000004e9 
- 00023511  0x00003dcb istore  0x00000005 , 0x00000005 
- 00023512  0x00003dcc fetch  0x00000001 , 0x00000031 
- 00023513  0x00003dcd set1  0x00000003 , 0x0000003f 
- 00023514  0x00003dce store  0x00000001 , 0x00000031 
- 00023515  0x00003dcf rtn 
- 00023516  0x00003dd1 fetch  0x00000001 , 0x000004df 
- 00023517  0x00003dd2 set1  0x00000007 , 0x0000003f 
- 00023518  0x00003dd3 store  0x00000001 , 0x0000007d 
- 00023519  0x00003dd4 beq  0x00000081 , 0x00005c26 
- 00023520  0x00003dd5 beq  0x00000082 , 0x00005c2e 
- 00023521  0x00003dd6 beq  0x00000095 , 0x00005d73 
- 00023522  0x00003dd7 beq  0x00000096 , 0x00005d8c 
- 00023523  0x00003dd8 beq  0x0000008b , 0x00005d81 
- 00023524  0x00003dd9 beq  0x00000083 , 0x00005c49 
- 00023525  0x00003dda beq  0x00000084 , 0x00005c4b 
- 00023526  0x00003ddb beq  0x00000090 , 0x00005bf1 
- 00023527  0x00003ddc beq  0x00000097 , 0x00005c42 
- 00023528  0x00003ddd beq  0x00000098 , 0x00005c47 
- 00023529  0x00003dde beq  0x00000099 , 0x00005c14 
- 00023530  0x00003ddf beq  0x0000009a , 0x00005c19 
- 00023531  0x00003de0 beq  0x0000008d , 0x00005c11 
- 00023532  0x00003de1 beq  0x0000008c , 0x00005bf4 
- 00023533  0x00003de2 rtneq  0x00000084 
- 00023534  0x00003de6 jam  0x00000082 , 0x0000007c 
- 00023535  0x00003de7 jam  0x00000019 , 0x0000007e 
- 00023536  0x00003de9 rtn 
- 00023537  0x00003deb jam  0x00000082 , 0x0000007c 
- 00023538  0x00003dec jam  0x0000002e , 0x0000007e 
- 00023539  0x00003ded rtn 
- 00023540  0x00003df0 fetch  0x00000001 , 0x000004e0 
- 00023541  0x00003df1 store  0x00000001 , 0x000000ad 
- 00023542  0x00003df2 fetch  0x00000001 , 0x000004e1 
- 00023543  0x00003df3 store  0x00000001 , 0x000041f9 
- 00023544  0x00003df4 fetch  0x00000001 , 0x000004e3 
- 00023545  0x00003df5 store  0x00000001 , 0x000000af 
- 00023546  0x00003df6 fetch  0x00000001 , 0x000004e7 
- 00023547  0x00003df7 store  0x00000001 , 0x000000b0 
- 00023548  0x00003df8 fetch  0x00000001 , 0x000004ec 
- 00023549  0x00003df9 store  0x00000001 , 0x000000ab 
- 00023550  0x00003dfa bmark1  0x00000007 , 0x00005c07 
- 00023551  0x00003dfb set1  0x00000007 , 0x00000000 
- 00023552  0x00003dfc call  0x00005d16 
- 00023553  0x00003dfd store  0x00000001 , 0x00000452 
- 00023554  0x00003dfe force  0x00000000 , 0x00000002 
- 00023555  0x00003dff branch  0x00004839 
- 00023556  0x00003e02 jam  0x0000008c , 0x0000007c 
- 00023557  0x00003e03 jam  0x00000001 , 0x000000b1 
- 00023558  0x00003e04 branch  0x000049bc 
- 00023559  0x00003e07 fetch  0x00000001 , 0x000000b0 
- 00023560  0x00003e08 bne  0x00000007 , 0x00005c0b 
- 00023561  0x00003e09 jam  0x00000081 , 0x0000007c 
- 00023562  0x00003e0a branch  0x00005c0f 
- 00023563  0x00003e0c set0  0x00000007 , 0x00000000 
- 00023564  0x00003e0d jam  0x00000082 , 0x0000007c 
- 00023565  0x00003e0e force  0x00000001 , 0x00000002 
- 00023566  0x00003e0f call  0x00004914 
- 00023567  0x00003e11 jam  0x0000008c , 0x0000007d 
- 00023568  0x00003e12 rtn 
- 00023569  0x00003e16 jam  0x00000081 , 0x0000007c 
- 00023570  0x00003e17 jam  0x0000008d , 0x0000007d 
- 00023571  0x00003e18 branch  0x00003869 
- 00023572  0x00003e1b call  0x00005c1d 
- 00023573  0x00003e1c fetch  0x00000001 , 0x00004132 
- 00023574  0x00003e1d beq  0x00000001 , 0x00005c21 
- 00023575  0x00003e1e jam  0x0000009a , 0x0000007c 
- 00023576  0x00003e1f rtn 
- 00023577  0x00003e22 call  0x00005c1d 
- 00023578  0x00003e23 fetch  0x00000001 , 0x00004132 
- 00023579  0x00003e24 beq  0x00000001 , 0x00005c21 
- 00023580  0x00003e25 branch  0x00005c22 
- 00023581  0x00003e28 arg  0x000007e9 , 0x00000005 
- 00023582  0x00003e29 fetch  0x00000003 , 0x000004e0 
- 00023583  0x00003e2a istore  0x00000003 , 0x00000005 
- 00023584  0x00003e2b rtn 
- 00023585  0x00003e2e call  0x0000480f 
- 00023586  0x00003e30 call  0x00006216 
- 00023587  0x00003e31 ncall  0x0000481b , 0x00000001 
- 00023588  0x00003e32 branch  0x0000780f , 0x00000001 
- 00023589  0x00003e33 rtn 
- 00023590  0x00003e35 fetch  0x00000001 , 0x000004e1 
- 00023591  0x00003e36 set1  0x00000007 , 0x0000003f 
- 00023592  0x00003e37 store  0x00000001 , 0x00000445 
- 00023593  0x00003e38 beq  0x0000008b , 0x00005c36 
- 00023594  0x00003e39 beq  0x0000008c , 0x0000384a 
- 00023595  0x00003e3a beq  0x0000008d , 0x00005c2d 
- 00023596  0x00003e3b rtn 
- 00023597  0x00003e3e branch  0x00003869 
- 00023598  0x00003e41 fetch  0x00000001 , 0x000004e1 
- 00023599  0x00003e42 set1  0x00000007 , 0x0000003f 
- 00023600  0x00003e43 store  0x00000001 , 0x00000445 
- 00023601  0x00003e44 beq  0x0000008b , 0x00005c3a 
- 00023602  0x00003e45 beq  0x0000008c , 0x00005c34 
- 00023603  0x00003e46 rtn 
- 00023604  0x00003e49 set0  0x00000007 , 0x00000000 
- 00023605  0x00003e4a rtn 
- 00023606  0x00003e4d fetch  0x00000001 , 0x000041fb 
- 00023607  0x00003e4e fetcht  0x00000001 , 0x0000004c 
- 00023608  0x00003e4f nsetflag  0x00000034 , 0x00000005 , 0x00000002 
- 00023609  0x00003e50 storet  0x00000001 , 0x0000004c 
- 00023610  0x00003e52 fetch  0x00000001 , 0x00000030 
- 00023611  0x00003e53 rtnbit0  0x00000005 
- 00023612  0x00003e54 set0  0x00000005 , 0x0000003f 
- 00023613  0x00003e55 store  0x00000001 , 0x00000030 
- 00023614  0x00003e56 fetch  0x00000001 , 0x00000453 
- 00023615  0x00003e57 nbranch  0x00004872 , 0x00000034 
- 00023616  0x00003e58 jam  0x00000031 , 0x0000007c 
- 00023617  0x00003e59 rtn 
- 00023618  0x00003e5c nbranch  0x00005c45 , 0x00000029 
- 00023619  0x00003e5d jam  0x00000012 , 0x0000007c 
- 00023620  0x00003e5e branch  0x00006205 
- 00023621  0x00003e61 jam  0x00000097 , 0x0000007c 
- 00023622  0x00003e62 rtn 
- 00023623  0x00003e67 call  0x00006205 
- 00023624  0x00003e68 branch  0x00005ecd 
- 00023625  0x00003e6b jam  0x00000084 , 0x0000007c 
- 00023626  0x00003e6c rtn 
- 00023627  0x00003e6f fetcht  0x00000001 , 0x000004e2 
- 00023628  0x00003e70 and  0x00000002 , 0x00000001 , 0x00000002 
- 00023629  0x00003e71 storet  0x00000001 , 0x0000044c 
- 00023630  0x00003e72 fetch  0x00000001 , 0x00004272 
- 00023631  0x00003e73 bne  0x00000051 , 0x00005c52 
- 00023632  0x00003e74 jam  0x00000000 , 0x00004272 
- 00023633  0x00003e75 call  0x000047f9 
- 00023634  0x00003e77 fetch  0x00000001 , 0x00000055 
- 00023635  0x00003e78 rtnne  0x00000015 
- 00023636  0x00003e79 jam  0x00000004 , 0x00000055 
- 00023637  0x00003e7a branch  0x00006235 
- 00023638  0x00003e7d fetch  0x00000001 , 0x000004df 
- 00023639  0x00003e7e store  0x00000001 , 0x00000445 
- 00023640  0x00003e7f beq  0x00000033 , 0x00005c7d 
- 00023641  0x00003e80 beq  0x00000008 , 0x00005c90 
- 00023642  0x00003e81 beq  0x0000000f , 0x00005c97 
- 00023643  0x00003e82 beq  0x00000010 , 0x00005c9d 
- 00023644  0x00003e83 beq  0x00000011 , 0x00005c9e 
- 00023645  0x00003e84 beq  0x00000012 , 0x00005ca6 
- 00023646  0x00003e85 beq  0x00000018 , 0x00005ccc 
- 00023647  0x00003e86 beq  0x00000017 , 0x00005cd1 
- 00023648  0x00003e87 beq  0x0000002b , 0x0000384a 
- 00023649  0x00003e89 beq  0x00000013 , 0x00005c74 
- 00023650  0x00003e8b beq  0x0000003d , 0x00005de9 
- 00023651  0x00003e8c beq  0x0000003e , 0x00005e18 
- 00023652  0x00003e8d beq  0x00000040 , 0x00005deb 
- 00023653  0x00003e8e beq  0x00000041 , 0x00005def 
- 00023654  0x00003e8f rtn 
- 00023655  0x00003e92 fetch  0x00000001 , 0x000004df 
- 00023656  0x00003e93 store  0x00000001 , 0x00000445 
- 00023657  0x00003e94 beq  0x00000001 , 0x00005cc3 
- 00023658  0x00003e95 beq  0x00000033 , 0x00005c87 
- 00023659  0x00003e96 beq  0x0000000b , 0x00005ca7 
- 00023660  0x00003e97 beq  0x0000002b , 0x00005c8e 
- 00023661  0x00003e98 beq  0x00000008 , 0x00005cba 
- 00023662  0x00003e99 beq  0x00000013 , 0x00005c77 
- 00023663  0x00003e9b beq  0x00000040 , 0x00005cc4 
- 00023664  0x00003e9c beq  0x00000041 , 0x00005cc7 
- 00023665  0x00003e9d beq  0x00000018 , 0x00005cca 
- 00023666  0x00003e9e beq  0x00000017 , 0x00005cdf 
- 00023667  0x00003e9f rtn 
- 00023668  0x00003ea2 jam  0x00000020 , 0x00000b7d 
- 00023669  0x00003ea3 call  0x00007c27 
- 00023670  0x00003ea4 branch  0x00003245 
- 00023671  0x00003ea6 jam  0x00000019 , 0x00000b7d 
- 00023672  0x00003ea7 call  0x00007c27 
- 00023673  0x00003ea8 jam  0x00000002 , 0x00004748 
- 00023674  0x00003ea9 setarg  0x00000050 
- 00023675  0x00003eaa arg  0x0000000a , 0x00000007 
- 00023676  0x00003eab branch  0x00007e4c 
- 00023677  0x00003eb1 fetch  0x00000001 , 0x0000044d 
- 00023678  0x00003eb2 set1  0x00000000 , 0x0000003f 
- 00023679  0x00003eb3 store  0x00000001 , 0x0000044d 
- 00023680  0x00003eb4 jam  0x00000001 , 0x00000b7d 
- 00023681  0x00003eb5 call  0x00007c27 
- 00023682  0x00003eb6 jam  0x0000008b , 0x0000007c 
- 00023683  0x00003eba fetch  0x00000001 , 0x00000055 
- 00023684  0x00003ebb bne  0x00000005 , 0x00005b77 
- 00023685  0x00003ebe jam  0x00000006 , 0x00000055 
- 00023686  0x00003ebf rtn 
- 00023687  0x00003ec8 jam  0x0000000b , 0x00000446 
- 00023688  0x00003ec9 jam  0x00000007 , 0x0000007c 
- 00023689  0x00003eca force  0x00000010 , 0x00000002 
- 00023690  0x00003ecb call  0x00004826 
- 00023691  0x00003ecd jam  0x00000000 , 0x00000055 
- 00023692  0x00003ecf branch  0x00005b77 , 0x00000001 
- 00023693  0x00003ed0 rtn 
- 00023694  0x00003ed3 jam  0x0000002b , 0x0000007c 
- 00023695  0x00003ed4 rtn 
- 00023696  0x00003ed8 fetch  0x00000001 , 0x0000425e 
- 00023697  0x00003ed9 nrtn  0x00000034 
- 00023698  0x00003eda call  0x00003507 
- 00023699  0x00003edb call  0x00005ecb 
- 00023700  0x00003edc rtn  0x00000029 
- 00023701  0x00003edd set1  0x00000021 , 0x00000000 
- 00023702  0x00003ede rtn 
- 00023703  0x00003ee1 nrtn  0x00000029 
- 00023704  0x00003ee2 jam  0x00000010 , 0x0000007c 
- 00023705  0x00003ee3 fetch  0x00000001 , 0x0000004c 
- 00023706  0x00003ee4 rtnbit0  0x00000002 
- 00023707  0x00003ee5 jam  0x00000012 , 0x0000007c 
- 00023708  0x00003ee6 rtn 
- 00023709  0x00003ee9 branch  0x00005ecd 
- 00023710  0x00003eec call  0x00005f2d 
- 00023711  0x00003eed fetch  0x00000001 , 0x00000030 
- 00023712  0x00003eee rtnbit1  0x00000004 
- 00023713  0x00003eef jam  0x00000031 , 0x0000007c 
- 00023714  0x00003ef0 fetch  0x00000001 , 0x00000055 
- 00023715  0x00003ef1 rtnne  0x0000000a 
- 00023716  0x00003ef2 jam  0x0000000b , 0x00000055 
- 00023717  0x00003ef3 rtn 
- 00023718  0x00003efd rtn 
- 00023719  0x00003f00 fetch  0x00000001 , 0x00004132 
- 00023720  0x00003f01 bne  0x00000001 , 0x00005cb7 
- 00023721  0x00003f02 fetch  0x00000001 , 0x0000425e 
- 00023722  0x00003f03 rtn  0x00000034 
- 00023723  0x00003f04 fetcht  0x00000001 , 0x00000055 
- 00023724  0x00003f05 jam  0x00000000 , 0x00000055 
- 00023725  0x00003f06 jam  0x00000000 , 0x0000425e 
- 00023726  0x00003f07 fetch  0x00000001 , 0x000004e0 
- 00023727  0x00003f08 rtnne  0x00000006 
- 00023728  0x00003f09 storet  0x00000001 , 0x00000055 
- 00023729  0x00003f0a jam  0x00000001 , 0x000007e0 
- 00023730  0x00003f0b fetch  0x00000002 , 0x0000044a 
- 00023731  0x00003f0c fetcht  0x00000001 , 0x0000044c 
- 00023732  0x00003f0d iand  0x00000002 , 0x0000003f 
- 00023733  0x00003f0e branch  0x000049da , 0x00000034 
- 00023734  0x00003f0f branch  0x000049d7 
- 00023735  0x00003f12 jam  0x00000007 , 0x0000007c 
- 00023736  0x00003f13 jam  0x00000013 , 0x00000446 
- 00023737  0x00003f14 rtn 
- 00023738  0x00003f17 fetch  0x00000001 , 0x000004e0 
- 00023739  0x00003f18 beq  0x00000006 , 0x00005cc0 
- 00023740  0x00003f19 rtnne  0x00000018 
- 00023741  0x00003f1a jam  0x00000018 , 0x00000446 
- 00023742  0x00003f1b jam  0x00000007 , 0x0000007c 
- 00023743  0x00003f1c rtn 
- 00023744  0x00003f1e jam  0x00000006 , 0x00000446 
- 00023745  0x00003f1f jam  0x00000007 , 0x0000007c 
- 00023746  0x00003f20 rtn 
- 00023747  0x00003f23 rtn 
- 00023748  0x00003f26 jam  0x00000000 , 0x000007da 
- 00023749  0x00003f27 jam  0x00000007 , 0x0000007c 
- 00023750  0x00003f28 branch  0x00005b77 
- 00023751  0x00003f2b jam  0x00000000 , 0x000007da 
- 00023752  0x00003f2c jam  0x00000007 , 0x0000007c 
- 00023753  0x00003f2d branch  0x00005b77 
- 00023754  0x00003f2f jam  0x00000024 , 0x00000b7d 
- 00023755  0x00003f30 branch  0x00007c27 
- 00023756  0x00003f33 jam  0x00000023 , 0x00000b7d 
- 00023757  0x00003f34 call  0x00007c27 
- 00023758  0x00003f35 call  0x00003806 
- 00023759  0x00003f36 force  0x00000000 , 0x00000002 
- 00023760  0x00003f37 branch  0x00004907 
- 00023761  0x00003f3a jam  0x00000022 , 0x00000b7d 
- 00023762  0x00003f3b call  0x00007c27 
- 00023763  0x00003f3c force  0x00000002 , 0x00000002 
- 00023764  0x00003f3d call  0x00004907 
- 00023765  0x00003f3e setarg  0x00000000 
- 00023766  0x00003f3f store  0x00000002 , 0x00000075 
- 00023767  0x00003f40 fetch  0x00000002 , 0x00004280 
- 00023768  0x00003f41 lshift  0x0000003f , 0x0000003f 
- 00023769  0x00003f42 store  0x00000002 , 0x00000032 
- 00023770  0x00003f43 fetch  0x00000001 , 0x00004282 
- 00023771  0x00003f44 store  0x00000001 , 0x00000073 
- 00023772  0x00003f45 fetch  0x00000001 , 0x00004284 
- 00023773  0x00003f46 store  0x00000001 , 0x00000074 
- 00023774  0x00003f47 branch  0x000037e1 
- 00023775  0x00003f4a jam  0x00000021 , 0x00000b7d 
- 00023776  0x00003f4b branch  0x00007c27 
- 00023777  0x00003f4e fetcht  0x00000001 , 0x000004df 
- 00023778  0x00003f4f storet  0x00000001 , 0x00000054 
- 00023779  0x00003f50 branch  0x00005cf5 
- 00023780  0x00003f53 fetch  0x00000001 , 0x0000044d 
- 00023781  0x00003f54 set1  0x00000002 , 0x0000003f 
- 00023782  0x00003f55 store  0x00000001 , 0x0000044d 
- 00023783  0x00003f56 rtnbit1  0x00000003 
- 00023784  0x00003f57 jam  0x00000031 , 0x0000007c 
- 00023785  0x00003f58 branch  0x00005b77 
- 00023786  0x00003f5d rtn 
- 00023787  0x00003f60 fetch  0x00000001 , 0x00004171 
- 00023788  0x00003f61 fetcht  0x00000001 , 0x000004df 
- 00023789  0x00003f62 isub  0x00000002 , 0x0000003e 
- 00023790  0x00003f64 branch  0x00005cf5 , 0x00000002 
- 00023791  0x00003f65 jam  0x00000004 , 0x0000007c 
- 00023792  0x00003f66 jam  0x0000001f , 0x0000007e 
- 00023793  0x00003f67 jam  0x0000002e , 0x0000007d 
- 00023794  0x00003f68 rtn 
- 00023795  0x00003f6b call  0x0000605a 
- 00023796  0x00003f6c branch  0x00005cf5 
- 00023797  0x00003f6f jam  0x00000003 , 0x0000007c 
- 00023798  0x00003f70 rtn 
- 00023799  0x00003f73 jam  0x00000021 , 0x0000007c 
- 00023800  0x00003f74 rtn 
- 00023801  0x00003f77 jam  0x00000022 , 0x0000007c 
- 00023802  0x00003f78 rtn 
- 00023803  0x00003f7b fetch  0x00000001 , 0x00000055 
- 00023804  0x00003f7c rtneq  0x00000013 
- 00023805  0x00003f7e jam  0x00000002 , 0x00000055 
- 00023806  0x00003f80 rtn 
- 00023807  0x00003f84 rtn 
- 00023808  0x00003f87 call  0x00005ec8 
- 00023809  0x00003f88 jam  0x00000001 , 0x00000450 
- 00023810  0x00003f89 fetch  0x00000001 , 0x00004132 
- 00023811  0x00003f8a beq  0x00000001 , 0x00005d06 
- 00023812  0x00003f8b jam  0x0000000a , 0x00000b7d 
- 00023813  0x00003f8c call  0x00007c27 
- 00023814  0x00003f8e call  0x0000487b 
- 00023815  0x00003f8f call  0x0000620d 
- 00023816  0x00003f90 nbranch  0x00005ed0 , 0x00000001 
- 00023817  0x00003f91 nbranch  0x00005d0e , 0x00000029 
- 00023818  0x00003f92 jam  0x00000004 , 0x0000007c 
- 00023819  0x00003f93 jam  0x00000008 , 0x0000007d 
- 00023820  0x00003f94 jam  0x00000023 , 0x0000007e 
- 00023821  0x00003f95 rtn 
- 00023822  0x00003f97 fetch  0x00000001 , 0x0000004b 
- 00023823  0x00003f98 set1  0x00000002 , 0x0000003f 
- 00023824  0x00003f99 store  0x00000001 , 0x0000004b 
- 00023825  0x00003f9a rtn 
- 00023826  0x00003f9e fetcht  0x00000001 , 0x0000004c 
- 00023827  0x00003f9f nsetflag  0x00000034 , 0x00000001 , 0x00000002 
- 00023828  0x00003fa0 storet  0x00000001 , 0x0000004c 
- 00023829  0x00003fa1 rtn 
- 00023830  0x00003fa5 fetch  0x00000001 , 0x0000007f 
- 00023831  0x00003fa6 rshift  0x0000003f , 0x0000003f 
- 00023832  0x00003fa7 and_into  0x00000001 , 0x0000003f 
- 00023833  0x00003fa8 rtn 
- 00023834  0x00003fab call  0x00005d16 
- 00023835  0x00003fac store  0x00000001 , 0x00000451 
- 00023836  0x00003fad call  0x00005ec8 
- 00023837  0x00003fae jam  0x0000000c , 0x0000007c 
- 00023838  0x00003faf fetch  0x00000001 , 0x0000425e 
- 00023839  0x00003fb0 nrtn  0x00000034 
- 00023840  0x00003fb1 fetch  0x00000001 , 0x00000030 
- 00023841  0x00003fb2 rtnbit1  0x00000006 
- 00023842  0x00003fb3 jam  0x00000006 , 0x0000007e 
- 00023843  0x00003fb4 fetch  0x00000001 , 0x00004132 
- 00023844  0x00003fb5 bne  0x00000001 , 0x00005bc9 
- 00023845  0x00003fb6 fetch  0x00000001 , 0x00000453 
- 00023846  0x00003fb7 nbranch  0x00005bc9 , 0x00000034 
- 00023847  0x00003fb8 jam  0x00000000 , 0x0000007c 
- 00023848  0x00003fba fetch  0x00000001 , 0x0000004b 
- 00023849  0x00003fbb set1  0x00000000 , 0x0000003f 
- 00023850  0x00003fbc store  0x00000001 , 0x0000004b 
- 00023851  0x00003fbd branch  0x00004872 
- 00023852  0x00003fc0 arg  0x00000040 , 0x00000011 
- 00023853  0x00003fc1 call  0x0000739d 
- 00023854  0x00003fc2 fetch  0x00000004 , 0x000004df 
- 00023855  0x00003fc3 fetcht  0x00000004 , 0x0000051f 
- 00023856  0x00003fc4 isub  0x00000002 , 0x0000003e 
- 00023857  0x00003fc5 branch  0x00005d35 , 0x00000005 
- 00023858  0x00003fc6 jam  0x00000007 , 0x0000007c 
- 00023859  0x00003fc7 jam  0x00000005 , 0x00000446 
- 00023860  0x00003fc8 rtn 
- 00023861  0x00003fca call  0x0000749b 
- 00023862  0x00003fcb call  0x00003211 
- 00023863  0x00003fcc fetch  0x00000001 , 0x0000004b 
- 00023864  0x00003fcd isolate1  0x00000001 , 0x0000003f 
- 00023865  0x00003fce set0  0x00000001 , 0x0000003f 
- 00023866  0x00003fcf store  0x00000001 , 0x0000004b 
- 00023867  0x00003fd0 call  0x000048bc , 0x00000001 
- 00023868  0x00003fd1 fetch  0x00000001 , 0x00000055 
- 00023869  0x00003fd2 beq  0x00000019 , 0x00005d40 
- 00023870  0x00003fd3 beq  0x00000018 , 0x00005d40 
- 00023871  0x00003fd4 rtn 
- 00023872  0x00003fd6 fetch  0x00000001 , 0x000007e1 
- 00023873  0x00003fd7 rtnne  0x00000000 
- 00023874  0x00003fd8 fetch  0x00000001 , 0x0000004c 
- 00023875  0x00003fd9 rtnbit1  0x00000002 
- 00023876  0x00003fda branch  0x000062cf 
- 00023877  0x00003fdd arg  0x000004df , 0x00000011 
- 00023878  0x00003fde arg  0x0000050f , 0x00000012 
- 00023879  0x00003fdf arg  0x000004ef , 0x00000005 
- 00023880  0x00003fe0 call  0x00007467 
- 00023881  0x00003fe1 arg  0x00000040 , 0x00000011 
- 00023882  0x00003fe2 call  0x0000622b 
- 00023883  0x00003fe3 jam  0x0000000b , 0x0000007c 
- 00023884  0x00003fe4 fetch  0x00000001 , 0x00000030 
- 00023885  0x00003fe5 bbit0  0x00000006 , 0x00005ecb 
- 00023886  0x00003fe6 rtn 
- 00023887  0x00003fe9 fetch  0x00000002 , 0x00000169 
- 00023888  0x00003fea add  0x0000003f , 0xfffffffd , 0x00000039 
- 00023889  0x00003feb fetcht  0x00000001 , 0x000004df 
- 00023890  0x00003fec setarg  0x00000103 
- 00023891  0x00003fed iadd  0x00000002 , 0x00000005 
- 00023892  0x00003fee arg  0x000004e1 , 0x00000006 
- 00023893  0x00003fef call  0x00007e45 
- 00023894  0x00003ff0 fetcht  0x00000001 , 0x00000053 
- 00023895  0x00003ff1 fetch  0x00000001 , 0x000004e0 
- 00023896  0x00003ff2 isub  0x00000002 , 0x0000003f 
- 00023897  0x00003ff3 sub  0x0000003f , 0x0000000e , 0x0000003e 
- 00023898  0x00003ff4 branch  0x00005d5f , 0x00000002 
- 00023899  0x00003ff5 add  0x00000002 , 0x0000000e , 0x0000003f 
- 00023900  0x00003ff6 store  0x00000001 , 0x00000053 
- 00023901  0x00003ff7 jam  0x00000001 , 0x0000007c 
- 00023902  0x00003ff8 rtn 
- 00023903  0x00003ffa fetch  0x00000001 , 0x0000004c 
- 00023904  0x00003ffb set1  0x00000003 , 0x0000003f 
- 00023905  0x00003ffc store  0x00000001 , 0x0000004c 
- 00023906  0x00003ffd bbit1  0x00000004 , 0x00005ed5 
- 00023907  0x00004000 rtn 
- 00023908  0x00004002 fetch  0x00000001 , 0x000004df 
- 00023909  0x00004003 store  0x00000001 , 0x0000007d 
- 00023910  0x00004004 jam  0x00000002 , 0x0000007c 
- 00023911  0x00004005 rtn 
- 00023912  0x00004008 fetch  0x00000001 , 0x00004132 
- 00023913  0x00004009 bne  0x00000001 , 0x00005cf5 
- 00023914  0x0000400a force  0x00000001 , 0x00000002 
- 00023915  0x0000400b branch  0x00004839 
- 00023916  0x0000400e jam  0x00000030 , 0x0000007c 
- 00023917  0x0000400f rtn 
- 00023918  0x00004012 jam  0x00000028 , 0x0000007c 
- 00023919  0x00004013 rtn 
- 00023920  0x00004016 jam  0x00000026 , 0x0000007c 
- 00023921  0x00004017 rtn 
- 00023922  0x0000401c rtn 
- 00023923  0x00004021 fetch  0x00000002 , 0x00000032 
- 00023924  0x00004022 iforce  0x00000002 
- 00023925  0x00004023 fetch  0x00000001 , 0x000004e0 
- 00023926  0x00004024 store  0x00000001 , 0x00000097 
- 00023927  0x00004025 imul32  0x00000002 , 0x00000002 
- 00023928  0x00004026 fetch  0x00000002 , 0x000004e1 
- 00023929  0x00004027 lshift  0x0000003f , 0x0000003f 
- 00023930  0x00004028 store  0x00000002 , 0x00000098 
- 00023931  0x00004029 fetch  0x00000004 , 0x000004e3 
- 00023932  0x0000402a lshift  0x0000003f , 0x0000003f 
- 00023933  0x0000402b store  0x00000004 , 0x00000093 
- 00023934  0x0000402d deposit  0x00000002 
- 00023935  0x0000402e store  0x00000002 , 0x0000009a 
- 00023936  0x0000402f rtn 
- 00023937  0x00004031 fetcht  0x00000001 , 0x000041fb 
- 00023938  0x00004032 fetch  0x00000001 , 0x000004e0 
- 00023939  0x00004033 ixor  0x00000002 , 0x0000003e 
- 00023940  0x00004034 nbranch  0x00005bee , 0x00000005 
- 00023941  0x00004035 isolate1  0x00000000 , 0x0000003f 
- 00023942  0x00004036 fetch  0x00000001 , 0x0000004c 
- 00023943  0x00004037 setflag  0x00000001 , 0x00000005 , 0x0000003f 
- 00023944  0x00004038 store  0x00000001 , 0x0000004c 
- 00023945  0x00004039 jam  0x00000081 , 0x0000007c 
- 00023946  0x0000403a jam  0x0000008b , 0x0000007d 
- 00023947  0x0000403b rtn 
- 00023948  0x0000403f rtn 
- 00023949  0x00004042 rtn 
- 00023950  0x00004044 rtn 
- 00023951  0x00004047 branch  0x00005cf5 
- 00023952  0x0000404b branch  0x00005cf5 
- 00023953  0x0000404d rtn 
- 00023954  0x0000404f call  0x0000385e 
- 00023955  0x00004050 jam  0x0000002c , 0x0000007d 
- 00023956  0x00004051 branch  0x00005cf5 
- 00023957  0x00004055 fetch  0x00000001 , 0x000004df 
- 00023958  0x00004056 store  0x00000001 , 0x000000ad 
- 00023959  0x00004057 fetch  0x00000001 , 0x000004e1 
- 00023960  0x00004058 store  0x00000001 , 0x000000af 
- 00023961  0x00004059 fetch  0x00000001 , 0x000004e4 
- 00023962  0x0000405a store  0x00000001 , 0x000000ab 
- 00023963  0x0000405b call  0x00005d16 
- 00023964  0x0000405c store  0x00000001 , 0x00000452 
- 00023965  0x0000405d force  0x00000000 , 0x00000002 
- 00023966  0x0000405e branch  0x00004839 
- 00023967  0x00004061 fetch  0x00000002 , 0x000004df 
- 00023968  0x00004062 store  0x00000002 , 0x0000017b 
- 00023969  0x00004063 rtn 
- 00023970  0x00004066 fetch  0x00000001 , 0x00000030 
- 00023971  0x00004067 bbit1  0x00000001 , 0x00005db5 
- 00023972  0x00004068 fetch  0x00000002 , 0x000004e0 
- 00023973  0x00004069 lshift  0x0000003f , 0x0000003f 
- 00023974  0x0000406a store  0x00000002 , 0x00000075 
- 00023975  0x0000406b fetch  0x00000002 , 0x000004e2 
- 00023976  0x0000406c lshift  0x0000003f , 0x0000003f 
- 00023977  0x0000406d store  0x00000002 , 0x00000032 
- 00023978  0x0000406e fetch  0x00000002 , 0x000004e4 
- 00023979  0x0000406f store  0x00000001 , 0x00000073 
- 00023980  0x00004070 iforce  0x00000002 
- 00023981  0x00004071 fetch  0x00000002 , 0x000004e6 
- 00023982  0x00004072 store  0x00000001 , 0x00000074 
- 00023983  0x00004073 isub  0x00000002 , 0x0000003e 
- 00023984  0x00004074 nbranch  0x00005db2 , 0x00000002 
- 00023985  0x00004075 store  0x00000001 , 0x00000073 
- 00023986  0x00004078 jam  0x00000003 , 0x0000007c 
- 00023987  0x00004079 jam  0x00000017 , 0x0000007d 
- 00023988  0x0000407a rtn 
- 00023989  0x0000407d jam  0x00000024 , 0x0000007e 
- 00023990  0x0000407e branch  0x00005bc9 
- 00023991  0x00004081 call  0x00005cf5 
- 00023992  0x00004082 call  0x00005ec8 
- 00023993  0x00004083 call  0x000073a0 
- 00023994  0x00004084 branch  0x000037d0 
- 00023995  0x00004087 call  0x00005cf5 
- 00023996  0x00004088 branch  0x000037da 
- 00023997  0x0000408c fetch  0x00000004 , 0x000004df 
- 00023998  0x0000408d lshift  0x0000003f , 0x0000003f 
- 00023999  0x0000408f branch  0x00005dc9 , 0x00000029 
- 00024000  0x00004090 fetcht  0x00000001 , 0x0000425e 
- 00024001  0x00004091 nbranch  0x00005dc6 , 0x00000034 
- 00024002  0x00004093 jam  0x00000004 , 0x0000007c 
- 00024003  0x00004094 jam  0x00000013 , 0x0000007d 
- 00024004  0x00004095 jam  0x00000024 , 0x0000007e 
- 00024005  0x00004096 rtn 
- 00024006  0x00004098 jam  0x00000034 , 0x0000007c 
- 00024007  0x00004099 jam  0x00000000 , 0x00000055 
- 00024008  0x0000409a branch  0x00003241 
- 00024009  0x0000409d call  0x00003241 
- 00024010  0x0000409e set1  0x00000022 , 0x00000000 
- 00024011  0x0000409f fetch  0x00000001 , 0x00000177 
- 00024012  0x000040a0 set0  0x00000002 , 0x0000003f 
- 00024013  0x000040a1 store  0x00000001 , 0x00000177 
- 00024014  0x000040a2 branch  0x00005cf5 
- 00024015  0x000040a7 rtn 
- 00024016  0x000040a9 rtn 
- 00024017  0x000040ab rtn 
- 00024018  0x000040af rtn 
- 00024019  0x000040b3 jam  0x00000003 , 0x0000007c 
- 00024020  0x000040b4 jam  0x00000018 , 0x0000007d 
- 00024021  0x000040b5 jam  0x0000002e , 0x00000b7d 
- 00024022  0x000040b6 call  0x00007c27 
- 00024023  0x000040b7 force  0x00000000 , 0x00000002 
- 00024024  0x000040b8 call  0x00004907 
- 00024025  0x000040b9 branch  0x00003806 
- 00024026  0x000040bb rtn 
- 00024027  0x000040be fetch  0x00000001 , 0x000004df 
- 00024028  0x000040bf bne  0x00000001 , 0x00005de7 
- 00024029  0x000040c0 fetch  0x00000001 , 0x000004e0 
- 00024030  0x000040c1 bne  0x00000001 , 0x00005de7 
- 00024031  0x000040c2 fetch  0x00000001 , 0x000004e1 
- 00024032  0x000040c3 bne  0x00000030 , 0x00005de7 
- 00024033  0x000040c4 call  0x00006216 
- 00024034  0x000040c5 branch  0x00005de4 , 0x00000001 
- 00024035  0x000040c6 jam  0x00000001 , 0x000007da 
- 00024036  0x000040c8 jam  0x00000003 , 0x0000007c 
- 00024037  0x000040c9 jam  0x0000003d , 0x0000007d 
- 00024038  0x000040ca branch  0x00005b77 
- 00024039  0x000040cd jam  0x00000024 , 0x0000007e 
- 00024040  0x000040ce branch  0x00005bc9 
- 00024041  0x000040d3 jam  0x0000003e , 0x0000007c 
- 00024042  0x000040d5 rtn 
- 00024043  0x000040d7 call  0x00006216 
- 00024044  0x000040d8 rtn  0x00000001 
- 00024045  0x000040d9 jam  0x00000008 , 0x000007da 
- 00024046  0x000040da rtn 
- 00024047  0x000040de call  0x00006216 
- 00024048  0x000040df ncall  0x00007a9d , 0x00000001 
- 00024049  0x000040e0 call  0x00007aab , 0x00000001 
- 00024050  0x000040e1 call  0x00004860 
- 00024051  0x000040e2 call  0x00004869 
- 00024052  0x000040e3 call  0x00006216 
- 00024053  0x000040e4 rtn  0x00000001 
- 00024054  0x000040e5 jam  0x0000000c , 0x000007da 
- 00024055  0x000040e6 jam  0x00000001 , 0x000007dc 
- 00024056  0x000040e7 rtn 
- 00024057  0x000040ea arg  0x00000888 , 0x00000005 
- 00024058  0x000040eb fetch  0x00000008 , 0x000004df 
- 00024059  0x000040ec istore  0x00000008 , 0x00000005 
- 00024060  0x000040ed fetch  0x00000008 , 0x000004e7 
- 00024061  0x000040ee istore  0x00000008 , 0x00000005 
- 00024062  0x000040ef branch  0x0000780f 
- 00024063  0x000040f2 fetch  0x00000001 , 0x000007db 
- 00024064  0x000040f3 beq  0x00000007 , 0x00005e03 
- 00024065  0x000040f4 fetch  0x00000001 , 0x000007da 
- 00024066  0x000040f5 bne  0x00000001 , 0x00005e16 
- 00024067  0x000040f7 fetch  0x00000001 , 0x000007e3 
- 00024068  0x000040f8 sub  0x0000003f , 0x00000020 , 0x00000005 
- 00024069  0x000040f9 nbranch  0x00005e16 , 0x00000002 
- 00024070  0x000040fa arg  0x000007f0 , 0x00000005 
- 00024071  0x000040fb iadd  0x00000005 , 0x00000005 
- 00024072  0x000040fc fetch  0x00000008 , 0x000004df 
- 00024073  0x000040fd istore  0x00000008 , 0x00000005 
- 00024074  0x000040fe fetch  0x00000008 , 0x000004e7 
- 00024075  0x000040ff istore  0x00000008 , 0x00000005 
- 00024076  0x00004100 fetch  0x00000001 , 0x000007e3 
- 00024077  0x00004101 increase  0x00000010 , 0x0000003f 
- 00024078  0x00004102 store  0x00000001 , 0x000007e3 
- 00024079  0x00004103 bne  0x00000030 , 0x00005cf5 
- 00024080  0x00004105 call  0x00006216 
- 00024081  0x00004106 branch  0x00005cf5 , 0x00000001 
- 00024082  0x00004107 jam  0x00000001 , 0x000007e4 
- 00024083  0x00004108 jam  0x00000002 , 0x000007da 
- 00024084  0x00004109 jam  0x00000001 , 0x000007dc 
- 00024085  0x0000410a branch  0x00005cf5 
- 00024086  0x0000410c jam  0x00000024 , 0x0000007e 
- 00024087  0x0000410d branch  0x00005bc9 
- 00024088  0x0000410f fetch  0x00000001 , 0x000007e2 
- 00024089  0x00004110 beq  0x00000030 , 0x00005e1c 
- 00024090  0x00004111 jam  0x0000003e , 0x0000007c 
- 00024091  0x00004112 branch  0x00005b77 
- 00024092  0x00004114 call  0x00006216 
- 00024093  0x00004115 branch  0x00005e21 , 0x00000001 
- 00024094  0x00004116 jam  0x00000001 , 0x000007dc 
- 00024095  0x00004117 jam  0x00000004 , 0x000007da 
- 00024096  0x00004118 branch  0x00005b77 
- 00024097  0x0000411b branch  0x00005b77 
- 00024098  0x0000411e fetch  0x00000001 , 0x000007db 
- 00024099  0x0000411f beq  0x00000007 , 0x00005e26 
- 00024100  0x00004120 fetch  0x00000001 , 0x000007da 
- 00024101  0x00004121 bne  0x00000006 , 0x00005e32 
- 00024102  0x00004123 arg  0x00000848 , 0x00000005 
- 00024103  0x00004124 fetch  0x00000008 , 0x000004df 
- 00024104  0x00004125 istore  0x00000008 , 0x00000005 
- 00024105  0x00004126 fetch  0x00000008 , 0x000004e7 
- 00024106  0x00004127 istore  0x00000008 , 0x00000005 
- 00024107  0x00004128 call  0x00006216 
- 00024108  0x00004129 branch  0x00005e30 , 0x00000001 
- 00024109  0x0000412a jam  0x00000007 , 0x000007da 
- 00024110  0x0000412b jam  0x00000001 , 0x000007dc 
- 00024111  0x0000412c branch  0x00005cf5 
- 00024112  0x0000412e jam  0x00000004 , 0x000007db 
- 00024113  0x0000412f branch  0x0000780f 
- 00024114  0x00004133 jam  0x00000024 , 0x0000007e 
- 00024115  0x00004134 branch  0x00005bc9 
- 00024116  0x00004137 fetch  0x00000001 , 0x000007db 
- 00024117  0x00004138 beq  0x0000000b , 0x00005e38 
- 00024118  0x00004139 fetch  0x00000001 , 0x000007da 
- 00024119  0x0000413a bne  0x00000008 , 0x00005e45 
- 00024120  0x0000413c arg  0x00000878 , 0x00000005 
- 00024121  0x0000413d fetch  0x00000008 , 0x000004df 
- 00024122  0x0000413e istore  0x00000008 , 0x00000005 
- 00024123  0x0000413f fetch  0x00000008 , 0x000004e7 
- 00024124  0x00004140 istore  0x00000008 , 0x00000005 
- 00024125  0x00004141 call  0x00006216 
- 00024126  0x00004142 branch  0x00005e42 , 0x00000001 
- 00024127  0x00004143 jam  0x00000009 , 0x000007da 
- 00024128  0x00004144 jam  0x00000001 , 0x000007dc 
- 00024129  0x00004145 branch  0x00005b77 
- 00024130  0x00004147 jam  0x00000009 , 0x000007db 
- 00024131  0x00004148 jam  0x00000001 , 0x000007dd 
- 00024132  0x00004149 branch  0x00005b77 
- 00024133  0x0000414b jam  0x00000024 , 0x0000007e 
- 00024134  0x0000414c branch  0x00005bc9 
- 00024135  0x0000414f branch  0x00005b77 
- 00024136  0x00004152 fetch  0x00000001 , 0x00000177 
- 00024137  0x00004153 set0  0x00000001 
- 00024138  0x00004154 store  0x00000001 , 0x00000177 
- 00024139  0x00004155 call  0x00005cf5 
- 00024140  0x00004156 nrtn  0x00000029 
- 00024141  0x00004157 fetch  0x00000001 , 0x000004df 
- 00024142  0x00004158 fetcht  0x00000001 , 0x0000004b 
- 00024143  0x00004159 setflag  0x00000034 , 0x00000004 , 0x00000002 
- 00024144  0x0000415a nsetflag  0x00000034 , 0x00000005 , 0x00000002 
- 00024145  0x0000415b storet  0x00000001 , 0x0000004b 
- 00024146  0x0000415c rtn 
- 00024147  0x0000415f fetcht  0x00000008 , 0x000004df 
- 00024148  0x00004160 fetch  0x00000001 , 0x00004272 
- 00024149  0x00004161 bne  0x00000050 , 0x00005e58 
- 00024150  0x00004162 jam  0x00000000 , 0x00004272 
- 00024151  0x00004163 call  0x000047e5 
- 00024152  0x00004165 fetch  0x00000001 , 0x00000055 
- 00024153  0x00004166 rtnne  0x00000003 
- 00024154  0x00004167 fetch  0x00000001 , 0x00004132 
- 00024155  0x00004168 beq  0x00000001 , 0x00005e5e 
- 00024156  0x00004169 fetch  0x00000001 , 0x00000177 
- 00024157  0x0000416a bbit0  0x00000004 , 0x00005e60 
- 00024158  0x0000416c jam  0x00000014 , 0x00000055 
- 00024159  0x0000416d rtn 
- 00024160  0x0000416f jam  0x00000004 , 0x00000055 
- 00024161  0x00004170 rtn 
- 00024162  0x00004172 fetch  0x00000001 , 0x00000189 
- 00024163  0x00004173 store  0x00000001 , 0x0000015d 
- 00024164  0x00004174 jam  0x00000003 , 0x0000007c 
- 00024165  0x00004175 jam  0x00000038 , 0x0000007d 
- 00024166  0x00004176 rtn 
- 00024167  0x0000417a jam  0x00000003 , 0x0000007c 
- 00024168  0x0000417b jam  0x00000039 , 0x0000007d 
- 00024169  0x0000417c force  0x00000009 , 0x00000039 
- 00024170  0x0000417d arg  0x000004df , 0x00000006 
- 00024171  0x0000417e arg  0x00000154 , 0x00000005 
- 00024172  0x00004180 ifetch  0x00000001 , 0x00000006 
- 00024173  0x00004181 xor_into  0x00000055 , 0x0000003f 
- 00024174  0x00004182 istore  0x00000001 , 0x00000005 
- 00024175  0x00004183 loop  0x00005e6c 
- 00024176  0x00004184 fetch  0x00000001 , 0x00000154 
- 00024177  0x00004185 fetcht  0x00000001 , 0x00000153 
- 00024178  0x00004186 set0  0x00000007 , 0x00000002 
- 00024179  0x00004187 set0  0x00000004 , 0x00000002 
- 00024180  0x00004188 beq  0x000000ff , 0x00005e80 
- 00024181  0x00004189 beq  0x00000000 , 0x00005e99 
- 00024182  0x0000418a beq  0x00000005 , 0x00005e8d 
- 00024183  0x0000418b beq  0x00000007 , 0x00005e8c 
- 00024184  0x0000418c beq  0x00000006 , 0x00005e8d 
- 00024185  0x0000418d beq  0x00000008 , 0x00005e8c 
- 00024186  0x0000418e beq  0x00000001 , 0x00005e85 
- 00024187  0x0000418f beq  0x00000002 , 0x00005e85 
- 00024188  0x00004190 beq  0x00000003 , 0x00005e85 
- 00024189  0x00004191 beq  0x00000009 , 0x00005e85 
- 00024190  0x00004192 beq  0x00000004 , 0x00005e85 
- 00024191  0x00004193 rtn 
- 00024192  0x00004196 fetch  0x00000001 , 0x00000153 
- 00024193  0x00004197 set1  0x00000003 , 0x0000003f 
- 00024194  0x00004198 set1  0x00000002 , 0x0000003f 
- 00024195  0x00004199 store  0x00000001 , 0x00000153 
- 00024196  0x0000419a rtn 
- 00024197  0x0000419c set1  0x00000004 , 0x00000002 
- 00024198  0x0000419d jam  0x00000005 , 0x0000018a 
- 00024199  0x0000419e fetch  0x00000002 , 0x0000015b 
- 00024200  0x0000419f iforce  0x00000039 
- 00024201  0x000041a0 store  0x00000002 , 0x00000169 
- 00024202  0x000041a1 arg  0x000004de , 0x00000005 
- 00024203  0x000041a2 call  0x00007ed8 
- 00024204  0x000041a4 set1  0x00000007 , 0x00000002 
- 00024205  0x000041a6 set1  0x00000002 , 0x00000002 
- 00024206  0x000041a7 force  0x00000000 , 0x0000003f 
- 00024207  0x000041a8 store  0x00000001 , 0x0000000b 
- 00024208  0x000041a9 store  0x00000002 , 0x000000fc 
- 00024209  0x000041aa store  0x00000002 , 0x000000fe 
- 00024210  0x000041ab store  0x00000002 , 0x000000fa 
- 00024211  0x000041ac store  0x00000002 , 0x000000f8 
- 00024212  0x000041ad fetch  0x00000001 , 0x00000155 
- 00024213  0x000041ae compare  0x00000000 , 0x0000003f , 0x000000ff 
- 00024214  0x000041af setflag  0x00000001 , 0x00000006 , 0x00000002 
- 00024215  0x000041b0 storet  0x00000001 , 0x00000153 
- 00024216  0x000041b1 rtn 
- 00024217  0x000041b4 set0  0x00000011 , 0x00000000 
- 00024218  0x000041b5 jam  0x00000000 , 0x00000153 
- 00024219  0x000041b6 fetch  0x00000001 , 0x00000189 
- 00024220  0x000041b7 set0  0x00000006 , 0x0000003f 
- 00024221  0x000041b8 store  0x00000001 , 0x00000189 
- 00024222  0x000041b9 rtn 
- 00024223  0x000041bc fetch  0x00000001 , 0x00000153 
- 00024224  0x000041bd rtnbit0  0x00000002 
- 00024225  0x000041be fetch  0x00000001 , 0x0000015e 
- 00024226  0x000041bf increase  0x00000001 , 0x0000003f 
- 00024227  0x000041c0 store  0x00000001 , 0x0000015e 
- 00024228  0x000041c1 rtnne  0x00000005 
- 00024229  0x000041c2 jam  0x00000000 , 0x0000015e 
- 00024230  0x000041c3 fetch  0x00000001 , 0x00000153 
- 00024231  0x000041c4 set0  0x00000002 , 0x0000003f 
- 00024232  0x000041c5 store  0x00000001 , 0x00000153 
- 00024233  0x000041c6 bbit1  0x00000003 , 0x00005ec0 
- 00024234  0x000041c7 isolate1  0x00000007 , 0x0000003f 
- 00024235  0x000041c8 call  0x00007f86 , 0x00000001 
- 00024236  0x000041c9 ncall  0x00007f8a , 0x00000001 
- 00024237  0x000041ca fetch  0x00000001 , 0x0000015a 
- 00024238  0x000041cb compare  0x00000020 , 0x0000003f , 0x00000030 
- 00024239  0x000041cc fetch  0x00000001 , 0x0000004c 
- 00024240  0x000041cd setflag  0x00000001 , 0x00000005 , 0x0000003f 
- 00024241  0x000041ce store  0x00000001 , 0x0000004c 
- 00024242  0x000041cf fetch  0x00000001 , 0x00000153 
- 00024243  0x000041d0 fetcht  0x00000001 , 0x00000189 
- 00024244  0x000041d1 isolate1  0x00000004 , 0x0000003f 
- 00024245  0x000041d2 setflag  0x00000001 , 0x00000006 , 0x00000002 
- 00024246  0x000041d3 isolate1  0x00000006 , 0x0000003f 
- 00024247  0x000041d4 setflag  0x00000001 , 0x00000004 , 0x00000002 
- 00024248  0x000041d5 setflag  0x00000001 , 0x00000005 , 0x00000002 
- 00024249  0x000041d6 storet  0x00000001 , 0x00000189 
- 00024250  0x000041d7 fetch  0x00000001 , 0x00000156 
- 00024251  0x000041d8 store  0x00000001 , 0x00000447 
- 00024252  0x000041d9 fetch  0x00000001 , 0x00000157 
- 00024253  0x000041da store  0x00000001 , 0x00000448 
- 00024254  0x000041db set1  0x00000011 , 0x00000000 
- 00024255  0x000041dc rtn 
- 00024256  0x000041df set0  0x00000011 , 0x00000000 
- 00024257  0x000041e0 jam  0x00000000 , 0x00000153 
- 00024258  0x000041e1 fetch  0x00000001 , 0x0000015d 
- 00024259  0x000041e2 store  0x00000001 , 0x00000189 
- 00024260  0x000041e3 hfetch  0x00000001 , 0x00008043 
- 00024261  0x000041e4 and_into  0x000000fb , 0x0000003f 
- 00024262  0x000041e5 hstore  0x00000001 , 0x00008043 
- 00024263  0x000041e6 rtn 
- 00024264  0x000041ea arg  0x000004df , 0x00000006 
- 00024265  0x000041eb arg  0x000004ef , 0x00000005 
- 00024266  0x000041ec branch  0x00007e35 
- 00024267  0x000041ef jam  0x00000009 , 0x0000007c 
- 00024268  0x000041f0 rtn 
- 00024269  0x000041f3 nrtn  0x00000029 
- 00024270  0x000041f4 jam  0x00000011 , 0x0000007c 
- 00024271  0x000041f5 rtn 
- 00024272  0x000041f8 arg  0x00004140 , 0x00000011 
- 00024273  0x000041f9 call  0x0000736a 
- 00024274  0x000041fa jam  0x00000003 , 0x0000007c 
- 00024275  0x000041fb jam  0x00000008 , 0x0000007d 
- 00024276  0x000041fc rtn 
- 00024277  0x000041ff jam  0x0000000a , 0x00000072 
- 00024278  0x00004200 jam  0x00000007 , 0x0000007c 
- 00024279  0x00004201 jam  0x00000016 , 0x00000446 
- 00024280  0x00004202 rtn 
- 00024281  0x00004209 set1  0x00000025 , 0x00000000 
- 00024282  0x0000420a bpatch  0x000000e3 , 0x0000403c 
- 00024283  0x0000420b disable  0x00000028 
- 00024284  0x0000420c call  0x000061d9 
- 00024285  0x0000420d fetch  0x00000001 , 0x00000048 
- 00024286  0x0000420e rtn  0x00000034 
- 00024287  0x00004213 bbit1  0x00000007 , 0x00005f10 
- 00024288  0x00004214 beq  0x00000001 , 0x00006072 
- 00024289  0x00004215 beq  0x00000002 , 0x00005f9b 
- 00024290  0x00004216 beq  0x00000003 , 0x00005f1d 
- 00024291  0x00004217 beq  0x00000004 , 0x00005f36 
- 00024292  0x00004218 beq  0x00000027 , 0x000060f2 
- 00024293  0x00004219 beq  0x00000028 , 0x00005fbf 
- 00024294  0x0000421a beq  0x00000030 , 0x00005fab 
- 00024295  0x0000421b beq  0x00000025 , 0x000060ed 
- 00024296  0x0000421c beq  0x00000026 , 0x00005fba 
- 00024297  0x0000421d beq  0x00000031 , 0x000060dc 
- 00024298  0x0000421e beq  0x00000037 , 0x0000606d 
- 00024299  0x0000421f beq  0x00000033 , 0x0000605f 
- 00024300  0x00004220 beq  0x00000008 , 0x00006174 
- 00024301  0x00004221 beq  0x00000009 , 0x0000616a 
- 00024302  0x00004222 beq  0x0000000b , 0x0000617f 
- 00024303  0x00004223 beq  0x0000000c , 0x00006188 
- 00024304  0x00004224 beq  0x0000000f , 0x00006065 
- 00024305  0x00004225 beq  0x00000010 , 0x000061af 
- 00024306  0x00004226 beq  0x00000011 , 0x000061a5 
- 00024307  0x00004227 beq  0x00000007 , 0x00006055 
- 00024308  0x00004228 beq  0x0000002a , 0x00006081 
- 00024309  0x00004229 beq  0x0000000a , 0x00006082 
- 00024310  0x0000422b beq  0x0000002b , 0x000060b5 
- 00024311  0x0000422c beq  0x00000006 , 0x00005fb0 
- 00024312  0x0000422d beq  0x00000021 , 0x00006062 
- 00024313  0x0000422e beq  0x0000002d , 0x000060d2 
- 00024314  0x0000422f beq  0x0000002e , 0x000060d7 
- 00024315  0x00004230 beq  0x00000022 , 0x00006062 
- 00024316  0x00004231 beq  0x0000002c , 0x000060cb 
- 00024317  0x00004232 beq  0x00000034 , 0x00006083 
- 00024318  0x00004233 beq  0x00000013 , 0x00006098 
- 00024319  0x00004234 beq  0x00000017 , 0x000060a7 
- 00024320  0x00004235 beq  0x00000012 , 0x000061ac 
- 00024321  0x00004236 beq  0x0000002f , 0x000060ad 
- 00024322  0x00004237 beq  0x00000018 , 0x000060b2 
- 00024323  0x00004238 beq  0x0000003d , 0x00006119 
- 00024324  0x00004239 beq  0x0000003e , 0x00006125 
- 00024325  0x0000423a beq  0x0000003f , 0x00006137 
- 00024326  0x0000423b beq  0x00000040 , 0x00006142 
- 00024327  0x0000423c beq  0x00000041 , 0x00006157 
- 00024328  0x0000423d beq  0x00000023 , 0x00006166 
- 00024329  0x0000423e beq  0x0000003b , 0x00006161 
- 00024330  0x00004240 beq  0x00000005 , 0x00006167 
- 00024331  0x00004241 beq  0x00000029 , 0x00006168 
- 00024332  0x00004242 beq  0x00000038 , 0x00006169 
- 00024333  0x00004243 beq  0x00000039 , 0x00006078 
- 00024334  0x00004245 branch  0x00003bf1 
- 00024335  0x00004246 rtn 
- 00024336  0x00004248 beq  0x0000008c , 0x00005fc4 
- 00024337  0x00004249 beq  0x0000008d , 0x00005fe3 
- 00024338  0x0000424a beq  0x00000081 , 0x00005f43 
- 00024339  0x0000424b beq  0x00000084 , 0x00005f76 
- 00024340  0x0000424c beq  0x00000082 , 0x00005f50 
- 00024341  0x0000424d beq  0x00000083 , 0x00005fec 
- 00024342  0x0000424e beq  0x0000008b , 0x00005ff7 
- 00024343  0x0000424f beq  0x00000097 , 0x00006051 
- 00024344  0x00004250 beq  0x00000099 , 0x00005f8c 
- 00024345  0x00004251 beq  0x0000009a , 0x00005f81 
- 00024346  0x00004252 beq  0x00000095 , 0x00005f91 
- 00024347  0x00004253 beq  0x00000096 , 0x00005f92 
- 00024348  0x00004254 branch  0x00003bf1 
- 00024349  0x0000425b force  0x00000002 , 0x0000003f 
- 00024350  0x0000425c call  0x000061b5 
- 00024351  0x0000425d fetch  0x00000001 , 0x00000049 
- 00024352  0x0000425e istore  0x00000001 , 0x00000005 
- 00024353  0x0000425f beq  0x0000002b , 0x00005f5a 
- 00024354  0x00004260 call  0x000061c4 
- 00024355  0x00004261 fetch  0x00000001 , 0x00000049 
- 00024356  0x00004262 beq  0x00000008 , 0x00005f5d 
- 00024357  0x00004263 beq  0x0000000f , 0x00005f61 
- 00024358  0x00004264 beq  0x00000010 , 0x00005f6c 
- 00024359  0x00004265 beq  0x00000017 , 0x00005f33 
- 00024360  0x00004266 beq  0x00000033 , 0x00005f6f 
- 00024361  0x00004267 beq  0x0000002c , 0x00005f74 
- 00024362  0x00004268 beq  0x00000041 , 0x00005f75 
- 00024363  0x00004269 beq  0x00000011 , 0x00005f2d 
- 00024364  0x0000426a rtn 
- 00024365  0x0000426d fetch  0x00000001 , 0x00000055 
- 00024366  0x0000426e rtn  0x00000034 
- 00024367  0x0000426f jam  0x0000001b , 0x00000055 
- 00024368  0x00004270 setarg  0x0000000c 
- 00024369  0x00004271 arg  0x0000000b , 0x00000007 
- 00024370  0x00004272 branch  0x00007e4c 
- 00024371  0x00004275 force  0x00000002 , 0x00000002 
- 00024372  0x00004276 call  0x00004907 
- 00024373  0x00004277 branch  0x000037e1 
- 00024374  0x00004279 force  0x00000003 , 0x0000003f 
- 00024375  0x0000427a call  0x000061b5 
- 00024376  0x0000427b fetch  0x00000001 , 0x00000049 
- 00024377  0x0000427c beq  0x0000000b , 0x00005f3e 
- 00024378  0x0000427d istore  0x00000001 , 0x00000005 
- 00024379  0x0000427e fetch  0x00000001 , 0x0000004a 
- 00024380  0x0000427f istore  0x00000001 , 0x00000005 
- 00024381  0x00004280 branch  0x000061c4 
- 00024382  0x00004283 istore  0x00000001 , 0x00000005 
- 00024383  0x00004284 fetch  0x00000001 , 0x0000004a 
- 00024384  0x00004285 istore  0x00000001 , 0x00000005 
- 00024385  0x00004286 arg  0x00000451 , 0x00000002 
- 00024386  0x00004287 branch  0x000061fb 
- 00024387  0x0000428a force  0x00000004 , 0x00000007 
- 00024388  0x0000428b call  0x000061bd 
- 00024389  0x0000428c setarg  0x0000007f 
- 00024390  0x0000428d istore  0x00000001 , 0x00000005 
- 00024391  0x0000428e fetch  0x00000001 , 0x00000049 
- 00024392  0x0000428f set0  0x00000007 , 0x0000003f 
- 00024393  0x00004290 istore  0x00000001 , 0x00000005 
- 00024394  0x00004291 fetch  0x00000001 , 0x00000049 
- 00024395  0x00004292 beq  0x0000008c , 0x00005f5a 
- 00024396  0x00004293 call  0x000061c4 
- 00024397  0x00004294 fetch  0x00000001 , 0x00000049 
- 00024398  0x00004295 beq  0x0000008d , 0x00005f74 
- 00024399  0x00004296 rtn 
- 00024400  0x00004299 force  0x00000005 , 0x00000007 
- 00024401  0x0000429a call  0x000061bd 
- 00024402  0x0000429b setarg  0x0000007f 
- 00024403  0x0000429c istore  0x00000001 , 0x00000005 
- 00024404  0x0000429d fetch  0x00000001 , 0x00000049 
- 00024405  0x0000429e set0  0x00000007 , 0x0000003f 
- 00024406  0x0000429f istore  0x00000001 , 0x00000005 
- 00024407  0x000042a0 fetch  0x00000001 , 0x0000004a 
- 00024408  0x000042a1 istore  0x00000001 , 0x00000005 
- 00024409  0x000042a2 branch  0x000061c4 
- 00024410  0x000042a5 call  0x0000384a 
- 00024411  0x000042a6 arg  0x00000452 , 0x00000002 
- 00024412  0x000042a7 branch  0x000061fb 
- 00024413  0x000042ab call  0x00003507 
- 00024414  0x000042ac call  0x0000620d 
- 00024415  0x000042ad rtn  0x00000001 
- 00024416  0x000042ae branch  0x00005ecb 
- 00024417  0x000042b1 fetch  0x00000001 , 0x0000004b 
- 00024418  0x000042b2 bbit1  0x00000005 , 0x00005f68 
- 00024419  0x000042b3 rtnbit0  0x00000004 
- 00024420  0x000042b4 jam  0x00000012 , 0x0000007c 
- 00024421  0x000042b5 set0  0x00000004 , 0x0000003f 
- 00024422  0x000042b6 call  0x00006205 
- 00024423  0x000042b7 branch  0x00005f6a 
- 00024424  0x000042b9 jam  0x00000010 , 0x0000007c 
- 00024425  0x000042ba set0  0x00000005 , 0x0000003f 
- 00024426  0x000042bc store  0x00000001 , 0x0000004b 
- 00024427  0x000042bd rtn 
- 00024428  0x000042c0 call  0x00006216 
- 00024429  0x000042c1 branch  0x00005ecd , 0x00000001 
- 00024430  0x000042c2 rtn 
- 00024431  0x000042c6 fetch  0x00000001 , 0x0000044d 
- 00024432  0x000042c7 set1  0x00000000 , 0x0000003f 
- 00024433  0x000042c8 store  0x00000001 , 0x0000044d 
- 00024434  0x000042c9 jam  0x00000001 , 0x00000b7d 
- 00024435  0x000042ca branch  0x00007c27 
- 00024436  0x000042ce rtn 
- 00024437  0x000042d1 rtn 
- 00024438  0x000042d6 force  0x0000000c , 0x00000007 
- 00024439  0x000042d7 call  0x000061bd 
- 00024440  0x000042d8 setarg  0x00000001 
- 00024441  0x000042d9 istore  0x00000001 , 0x00000005 
- 00024442  0x000042da fetch  0x00000002 , 0x0000044a 
- 00024443  0x000042db istore  0x00000002 , 0x00000005 
- 00024444  0x000042dc setarg  0x00000000 
- 00024445  0x000042dd istore  0x00000003 , 0x00000005 
- 00024446  0x000042de setarg  0x00000000 
- 00024447  0x000042df istore  0x00000004 , 0x00000005 
- 00024448  0x000042e0 branch  0x000061cd 
- 00024449  0x000042e3 force  0x00000005 , 0x00000007 
- 00024450  0x000042e4 call  0x000061bd 
- 00024451  0x000042e5 fetch  0x00000001 , 0x00004132 
- 00024452  0x000042e6 beq  0x00000001 , 0x00005f89 
- 00024453  0x000042e7 setarg  0x00040003 
- 00024454  0x000042e8 istore  0x00000003 , 0x00000005 
- 00024455  0x000042e9 store  0x00000003 , 0x000007e6 
- 00024456  0x000042ea branch  0x000061cd 
- 00024457  0x000042ec fetch  0x00000003 , 0x000007e6 
- 00024458  0x000042ed istore  0x00000003 , 0x00000005 
- 00024459  0x000042ee branch  0x000061cd 
- 00024460  0x000042f1 force  0x00000005 , 0x00000007 
- 00024461  0x000042f2 call  0x000061bd 
- 00024462  0x000042f3 fetch  0x00000003 , 0x000007e6 
- 00024463  0x000042f4 istore  0x00000003 , 0x00000005 
- 00024464  0x000042f5 branch  0x000061cf 
- 00024465  0x000042fa rtn 
- 00024466  0x000042fc force  0x00000009 , 0x00000007 
- 00024467  0x000042fd call  0x000061bd 
- 00024468  0x000042fe fetch  0x00000001 , 0x00000097 
- 00024469  0x000042ff istore  0x00000001 , 0x00000005 
- 00024470  0x00004300 fetch  0x00000002 , 0x00000098 
- 00024471  0x00004301 istore  0x00000002 , 0x00000005 
- 00024472  0x00004302 fetch  0x00000004 , 0x00000093 
- 00024473  0x00004303 istore  0x00000004 , 0x00000005 
- 00024474  0x00004304 branch  0x000061cd 
- 00024475  0x00004307 force  0x00000011 , 0x0000003f 
- 00024476  0x00004308 call  0x000061b5 
- 00024477  0x00004309 fetch  0x00000001 , 0x00000049 
- 00024478  0x0000430a copy  0x0000003f , 0x00000002 
- 00024479  0x0000430b beq  0x00000000 , 0x00005fa3 
- 00024480  0x0000430c beq  0x0000000e , 0x00005fa3 
- 00024481  0x0000430d beq  0x0000001c , 0x00005fa3 
- 00024482  0x0000430e rtn 
- 00024483  0x00004310 istore  0x00000001 , 0x00000005 
- 00024484  0x00004311 fetch  0x00000001 , 0x00004702 
- 00024485  0x00004312 istore  0x00000001 , 0x00000005 
- 00024486  0x00004313 copy  0x0000003f , 0x00000039 
- 00024487  0x00004314 setarg  0x00004703 
- 00024488  0x00004315 iadd  0x00000002 , 0x00000006 
- 00024489  0x00004316 call  0x00007e45 
- 00024490  0x00004317 branch  0x000061cd 
- 00024491  0x0000431b force  0x00000003 , 0x0000003f 
- 00024492  0x0000431c call  0x000061b5 
- 00024493  0x0000431d setarg  0x00000114 
- 00024494  0x0000431e istore  0x00000002 , 0x00000005 
- 00024495  0x0000431f branch  0x000061cd 
- 00024496  0x00004323 force  0x00000003 , 0x0000003f 
- 00024497  0x00004324 call  0x000061b5 
- 00024498  0x00004325 fetch  0x00000004 , 0x0000016f 
- 00024499  0x00004326 isub  0x00000022 , 0x0000003f 
- 00024500  0x00004327 branch  0x00005fb6 , 0x00000029 
- 00024501  0x00004328 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00024502  0x0000432b rshift2  0x0000003f , 0x0000003f 
- 00024503  0x0000432c set0  0x0000000f , 0x0000003f 
- 00024504  0x0000432d istore  0x00000002 , 0x00000005 
- 00024505  0x0000432e branch  0x000061cd 
- 00024506  0x00004331 force  0x00000006 , 0x0000003f 
- 00024507  0x00004332 call  0x000061b5 
- 00024508  0x00004333 fetch  0x00000005 , 0x000046fd 
- 00024509  0x00004334 istore  0x00000005 , 0x00000005 
- 00024510  0x00004335 branch  0x000061cd 
- 00024511  0x00004338 force  0x00000009 , 0x0000003f 
- 00024512  0x00004339 call  0x000061b5 
- 00024513  0x0000433a fetch  0x00000008 , 0x00004138 
- 00024514  0x0000433b istore  0x00000008 , 0x00000005 
- 00024515  0x0000433c branch  0x000061cd 
- 00024516  0x00004343 branch  0x00005fc6 , 0x00000029 
- 00024517  0x00004346 branch  0x00005fc7 
- 00024518  0x00004348 jam  0x00000007 , 0x000041f9 
- 00024519  0x0000434a jam  0x00000000 , 0x000000af 
- 00024520  0x0000434b force  0x00000010 , 0x00000007 
- 00024521  0x0000434c call  0x000061bd 
- 00024522  0x0000434d fetch  0x00000001 , 0x000000ad 
- 00024523  0x0000434e istore  0x00000001 , 0x00000005 
- 00024524  0x0000434f fetch  0x00000001 , 0x000041f9 
- 00024525  0x00004350 istore  0x00000001 , 0x00000005 
- 00024526  0x00004351 setarg  0x00000000 
- 00024527  0x00004352 istore  0x00000001 , 0x00000005 
- 00024528  0x00004353 fetch  0x00000001 , 0x000000af 
- 00024529  0x00004354 istore  0x00000001 , 0x00000005 
- 00024530  0x00004355 setarg  0x00000006 
- 00024531  0x00004356 istore  0x00000001 , 0x00000005 
- 00024532  0x00004357 setarg  0x00000002 
- 00024533  0x00004358 istore  0x00000001 , 0x00000005 
- 00024534  0x00004359 setarg  0x00000007 
- 00024535  0x0000435a istore  0x00000001 , 0x00000005 
- 00024536  0x0000435b istore  0x00000001 , 0x00000005 
- 00024537  0x0000435c setarg  0x0000001e 
- 00024538  0x0000435d istore  0x00000002 , 0x00000005 
- 00024539  0x0000435e istore  0x00000002 , 0x00000005 
- 00024540  0x0000435f fetch  0x00000001 , 0x000000ab 
- 00024541  0x00004360 istore  0x00000001 , 0x00000005 
- 00024542  0x00004361 fetch  0x00000001 , 0x000000b1 
- 00024543  0x00004362 istore  0x00000001 , 0x00000005 
- 00024544  0x00004363 nbranch  0x000061cd , 0x00000034 
- 00024545  0x00004364 branch  0x000061cd , 0x00000029 
- 00024546  0x00004365 branch  0x000061cf 
- 00024547  0x00004368 force  0x00000004 , 0x00000007 
- 00024548  0x00004369 call  0x000061bd 
- 00024549  0x0000436a fetch  0x00000001 , 0x000000ad 
- 00024550  0x0000436b istore  0x00000001 , 0x00000005 
- 00024551  0x0000436c fetch  0x00000001 , 0x00000446 
- 00024552  0x0000436d istore  0x00000001 , 0x00000005 
- 00024553  0x0000436e fetch  0x00000001 , 0x000000b4 
- 00024554  0x0000436f store  0x00000001 , 0x00000047 
- 00024555  0x00004370 branch  0x000061cf 
- 00024556  0x00004374 force  0x0000000c , 0x00000007 
- 00024557  0x00004375 call  0x000061bd 
- 00024558  0x00004376 setarg  0x00000001 
- 00024559  0x00004377 istore  0x00000001 , 0x00000005 
- 00024560  0x00004378 fetch  0x00000002 , 0x0000044a 
- 00024561  0x00004379 istore  0x00000002 , 0x00000005 
- 00024562  0x0000437a setarg  0x00000000 
- 00024563  0x0000437b istore  0x00000003 , 0x00000005 
- 00024564  0x0000437c setarg  0x00000000 
- 00024565  0x0000437d istore  0x00000004 , 0x00000005 
- 00024566  0x0000437e branch  0x000061cf 
- 00024567  0x00004381 force  0x00000003 , 0x00000007 
- 00024568  0x00004382 call  0x000061bd 
- 00024569  0x00004383 fetch  0x00000001 , 0x000041fb 
- 00024570  0x00004384 istore  0x00000001 , 0x00000005 
- 00024571  0x00004385 disable  0x00000028 
- 00024572  0x00004386 call  0x000061cf 
- 00024573  0x00004387 nrtn  0x00000028 
- 00024574  0x00004388 nrtn  0x00000029 
- 00024575  0x00004389 fetch  0x00000001 , 0x00004179 
- 00024576  0x0000438a rtnbit0  0x00000000 
- 00024577  0x0000438b call  0x0000600f 
- 00024578  0x0000438c branch  0x00006019 
- 00024579  0x00004390 fetch  0x00000001 , 0x0000413e 
- 00024580  0x00004391 set1  0x00000003 , 0x0000003f 
- 00024581  0x00004392 store  0x00000001 , 0x0000413e 
- 00024582  0x00004393 setarg  0x00000101 
- 00024583  0x00004394 store  0x00000002 , 0x0000044a 
- 00024584  0x00004395 rtn 
- 00024585  0x00004398 fetch  0x00000001 , 0x0000413e 
- 00024586  0x00004399 set0  0x00000003 , 0x0000003f 
- 00024587  0x0000439a store  0x00000001 , 0x0000413e 
- 00024588  0x0000439b setarg  0x00000000 
- 00024589  0x0000439c store  0x00000002 , 0x0000044a 
- 00024590  0x0000439d rtn 
- 00024591  0x000043a0 jam  0x00000003 , 0x00004179 
- 00024592  0x000043a1 setarg  0x00000000 
- 00024593  0x000043a2 store  0x00000004 , 0x000041e3 
- 00024594  0x000043a3 arg  0x0000417b , 0x00000005 
- 00024595  0x000043a4 call  0x00006023 
- 00024596  0x000043a5 arg  0x00004188 , 0x00000005 
- 00024597  0x000043a6 call  0x00006023 
- 00024598  0x000043a7 arg  0x000041e7 , 0x00000005 
- 00024599  0x000043a8 call  0x00006023 
- 00024600  0x000043a9 branch  0x0000602a 
- 00024601  0x000043ab arg  0x00004188 , 0x00000005 
- 00024602  0x000043ac call  0x00006023 
- 00024603  0x000043ad call  0x0000602a 
- 00024604  0x000043ae branch  0x0000602d 
- 00024605  0x000043b2 fetch  0x00000005 , 0x000041e7 
- 00024606  0x000043b3 store  0x00000005 , 0x00004188 
- 00024607  0x000043b4 ifetch  0x00000005 , 0x00000006 
- 00024608  0x000043b5 istore  0x00000005 , 0x00000005 
- 00024609  0x000043b6 call  0x0000602a 
- 00024610  0x000043b7 branch  0x0000602d 
- 00024611  0x000043ba setarg  0x00ffffff 
- 00024612  0x000043bb istore  0x00000003 , 0x00000005 
- 00024613  0x000043bc istore  0x00000003 , 0x00000005 
- 00024614  0x000043bd istore  0x00000003 , 0x00000005 
- 00024615  0x000043be setarg  0x0000007f 
- 00024616  0x000043bf istore  0x00000001 , 0x00000005 
- 00024617  0x000043c0 rtn 
- 00024618  0x000043c2 setarg  0x00000000 
- 00024619  0x000043c3 store  0x00000002 , 0x00004177 
- 00024620  0x000043c4 rtn 
- 00024621  0x000043c6 fetch  0x00000001 , 0x00004179 
- 00024622  0x000043c7 set1  0x00000002 , 0x0000003f 
- 00024623  0x000043c8 store  0x00000001 , 0x00004179 
- 00024624  0x000043c9 rtn 
- 00024625  0x000043cb nrtn  0x00000029 
- 00024626  0x000043cc force  0x00000010 , 0x0000003f 
- 00024627  0x000043cd call  0x000061b5 
- 00024628  0x000043ce deposit  0x00000022 
- 00024629  0x000043cf arg  0x000001dc , 0x00000002 
- 00024630  0x000043d0 iadd  0x00000002 , 0x0000003f 
- 00024631  0x000043d1 rshift  0x0000003f , 0x0000003f 
- 00024632  0x000043d2 increase  0x00000001 , 0x0000003f 
- 00024633  0x000043d3 set0  0x00000000 , 0x0000003f 
- 00024634  0x000043d4 istore  0x00000004 , 0x00000005 
- 00024635  0x000043d5 copy  0x0000003f , 0x00000002 
- 00024636  0x000043d6 setarg  0x00000001 
- 00024637  0x000043d7 istore  0x00000001 , 0x00000005 
- 00024638  0x000043d8 fetch  0x00000005 , 0x00004188 
- 00024639  0x000043d9 istore  0x00000005 , 0x00000005 
- 00024640  0x000043da ifetch  0x00000005 , 0x00000006 
- 00024641  0x000043db istore  0x00000005 , 0x00000005 
- 00024642  0x000043dc lshift  0x00000002 , 0x00000002 
- 00024643  0x000043dd storet  0x00000004 , 0x00004173 
- 00024644  0x000043de call  0x000061cf 
- 00024645  0x000043df fetch  0x00000001 , 0x00000031 
- 00024646  0x000043e0 set1  0x00000003 , 0x0000003f 
- 00024647  0x000043e1 store  0x00000001 , 0x00000031 
- 00024648  0x000043e2 jam  0x00000001 , 0x0000417a 
- 00024649  0x000043e3 fetch  0x00000004 , 0x00004173 
- 00024650  0x000043e4 arg  0x0002ee00 , 0x00000002 
- 00024651  0x000043e5 iadd  0x00000002 , 0x0000003f 
- 00024652  0x000043e6 store  0x00000004 , 0x000041e3 
- 00024653  0x000043e7 fetch  0x00000001 , 0x00004179 
- 00024654  0x000043e8 rtnbit1  0x00000004 
- 00024655  0x000043e9 jam  0x00000090 , 0x0000007c 
- 00024656  0x000043ea rtn 
- 00024657  0x000043ee force  0x00000002 , 0x00000007 
- 00024658  0x000043ef call  0x000061bd 
- 00024659  0x000043f0 nbranch  0x000061cd , 0x00000029 
- 00024660  0x000043f2 branch  0x000061cf 
- 00024661  0x000043f7 force  0x00000002 , 0x0000003f 
- 00024662  0x000043f8 call  0x000061b5 
- 00024663  0x000043f9 fetch  0x00000001 , 0x00000446 
- 00024664  0x000043fa istore  0x00000001 , 0x00000005 
- 00024665  0x000043fb call  0x000061cf 
- 00024666  0x000043fd fetch  0x00000001 , 0x0000004b 
- 00024667  0x000043fe set1  0x00000003 , 0x0000003f 
- 00024668  0x000043ff store  0x00000001 , 0x0000004b 
- 00024669  0x00004400 jam  0x00000032 , 0x00000072 
- 00024670  0x00004401 rtn 
- 00024671  0x00004405 force  0x00000001 , 0x0000003f 
- 00024672  0x00004406 call  0x000061b5 
- 00024673  0x00004407 branch  0x000061cf 
- 00024674  0x00004409 force  0x00000001 , 0x0000003f 
- 00024675  0x0000440a call  0x000061b5 
- 00024676  0x0000440b branch  0x000061cd 
- 00024677  0x0000440f force  0x00000002 , 0x0000003f 
- 00024678  0x00004410 call  0x000061b5 
- 00024679  0x00004411 fetch  0x00000001 , 0x0000004c 
- 00024680  0x00004412 isolate0  0x00000002 , 0x0000003f 
- 00024681  0x00004413 setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00024682  0x00004414 and_into  0x00000001 , 0x0000003f 
- 00024683  0x00004415 istore  0x00000001 , 0x00000005 
- 00024684  0x00004416 branch  0x000061cf 
- 00024685  0x0000441a force  0x00000003 , 0x0000003f 
- 00024686  0x0000441b call  0x000061b5 
- 00024687  0x0000441c fetch  0x00000002 , 0x00000051 
- 00024688  0x0000441d istore  0x00000002 , 0x00000005 
- 00024689  0x0000441e branch  0x000061cf 
- 00024690  0x00004421 jam  0x000000fa , 0x00000072 
- 00024691  0x00004422 force  0x00000002 , 0x0000003f 
- 00024692  0x00004423 call  0x000061b5 
- 00024693  0x00004424 fetch  0x00000001 , 0x00000053 
- 00024694  0x00004425 istore  0x00000001 , 0x00000005 
- 00024695  0x00004426 branch  0x000061cf 
- 00024696  0x00004429 force  0x0000000a , 0x0000003f 
- 00024697  0x0000442a call  0x000061b5 
- 00024698  0x0000442b arg  0x00000154 , 0x00000006 
- 00024699  0x0000442c force  0x00000009 , 0x00000039 
- 00024700  0x0000442e ifetch  0x00000001 , 0x00000006 
- 00024701  0x0000442f xor_into  0x00000055 , 0x0000003f 
- 00024702  0x00004430 istore  0x00000001 , 0x00000005 
- 00024703  0x00004431 loop  0x0000607c 
- 00024704  0x00004432 branch  0x000061cf 
- 00024705  0x00004435 branch  0x000061cf 
- 00024706  0x00004437 branch  0x000061cf 
- 00024707  0x0000443a rtn  0x00000029 
- 00024708  0x0000443b call  0x00003997 
- 00024709  0x0000443c force  0x00000009 , 0x0000003f 
- 00024710  0x0000443d call  0x000061b5 
- 00024711  0x0000443e fetch  0x00000002 , 0x0000017b 
- 00024712  0x0000443f istore  0x00000002 , 0x00000005 
- 00024713  0x00004440 fetch  0x00000003 , 0x00004140 
- 00024714  0x00004441 istore  0x00000003 , 0x00000005 
- 00024715  0x00004442 fetch  0x00000001 , 0x00004143 
- 00024716  0x00004443 istore  0x00000001 , 0x00000005 
- 00024717  0x00004444 fetch  0x00000002 , 0x00004144 
- 00024718  0x00004445 istore  0x00000002 , 0x00000005 
- 00024719  0x00004446 bmark0  0x00000003 , 0x00006094 
- 00024720  0x00004447 set0  0x00000003 , 0x00000000 
- 00024721  0x00004448 call  0x000061cf 
- 00024722  0x00004449 jam  0x00000013 , 0x0000007c 
- 00024723  0x0000444a rtn 
- 00024724  0x0000444c call  0x000061cd 
- 00024725  0x0000444d jam  0x00000003 , 0x0000007c 
- 00024726  0x0000444e jam  0x00000013 , 0x0000007d 
- 00024727  0x0000444f rtn 
- 00024728  0x00004452 arg  0x00000200 , 0x00000002 
- 00024729  0x00004453 branch  0x0000609c , 0x00000029 
- 00024730  0x00004454 deposit  0x00000028 
- 00024731  0x00004455 branch  0x0000609d 
- 00024732  0x00004457 deposit  0x00000022 
- 00024733  0x00004459 deposit  0x00000021 
- 00024734  0x0000445a iadd  0x00000002 , 0x0000003f 
- 00024735  0x0000445b and_into  0x000001fc , 0x0000003f 
- 00024736  0x0000445c store  0x00000004 , 0x00000034 
- 00024737  0x0000445d force  0x00000005 , 0x0000003f 
- 00024738  0x0000445e call  0x000061b5 
- 00024739  0x0000445f fetch  0x00000004 , 0x00000034 
- 00024740  0x00004460 rshift  0x0000003f , 0x0000003f 
- 00024741  0x00004461 istore  0x00000004 , 0x00000005 
- 00024742  0x00004462 branch  0x000061cf 
- 00024743  0x00004465 force  0x0000000a , 0x0000003f 
- 00024744  0x00004466 call  0x000061b5 
- 00024745  0x00004467 arg  0x00000455 , 0x00000006 
- 00024746  0x00004468 ifetch  0x00000009 , 0x00000006 
- 00024747  0x00004469 istore  0x00000009 , 0x00000005 
- 00024748  0x0000446a branch  0x000061cf 
- 00024749  0x0000446f force  0x00000003 , 0x0000003f 
- 00024750  0x00004470 call  0x000061b5 
- 00024751  0x00004471 setarg  0x00000114 
- 00024752  0x00004472 istore  0x00000002 , 0x00000005 
- 00024753  0x00004473 branch  0x000061cf 
- 00024754  0x00004477 force  0x00000001 , 0x0000003f 
- 00024755  0x00004478 call  0x000061b5 
- 00024756  0x00004481 branch  0x000061cf 
- 00024757  0x00004484 branch  0x000060ba , 0x00000029 
- 00024758  0x00004485 jam  0x00000000 , 0x000000ad 
- 00024759  0x00004486 fetch  0x00000001 , 0x00000031 
- 00024760  0x00004487 set1  0x00000004 , 0x0000003f 
- 00024761  0x00004488 store  0x00000001 , 0x00000031 
- 00024762  0x0000448a jam  0x00000000 , 0x000000af 
- 00024763  0x0000448b force  0x00000007 , 0x0000003f 
- 00024764  0x0000448c call  0x000061b5 
- 00024765  0x0000448d fetch  0x00000001 , 0x000000ad 
- 00024766  0x0000448e istore  0x00000001 , 0x00000005 
- 00024767  0x0000448f setarg  0x00000000 
- 00024768  0x00004490 istore  0x00000001 , 0x00000005 
- 00024769  0x00004491 fetch  0x00000001 , 0x000000af 
- 00024770  0x00004492 istore  0x00000001 , 0x00000005 
- 00024771  0x00004493 setarg  0x00000006 
- 00024772  0x00004494 istore  0x00000001 , 0x00000005 
- 00024773  0x00004495 setarg  0x00000002 
- 00024774  0x00004496 istore  0x00000001 , 0x00000005 
- 00024775  0x00004497 fetch  0x00000001 , 0x000000ab 
- 00024776  0x00004498 istore  0x00000001 , 0x00000005 
- 00024777  0x00004499 branch  0x000061cd , 0x00000029 
- 00024778  0x0000449a branch  0x000061ca 
- 00024779  0x0000449e force  0x00000003 , 0x0000003f 
- 00024780  0x0000449f call  0x000061b5 
- 00024781  0x000044a0 fetch  0x00000001 , 0x000000ad 
- 00024782  0x000044a1 istore  0x00000001 , 0x00000005 
- 00024783  0x000044a2 force  0x00000013 , 0x0000003f 
- 00024784  0x000044a3 istore  0x00000001 , 0x00000005 
- 00024785  0x000044a4 branch  0x000061cf 
- 00024786  0x000044a7 force  0x00000002 , 0x0000003f 
- 00024787  0x000044a8 call  0x000061b5 
- 00024788  0x000044a9 fetch  0x00000001 , 0x00004171 
- 00024789  0x000044aa istore  0x00000001 , 0x00000005 
- 00024790  0x000044ab branch  0x000061cf 
- 00024791  0x000044af force  0x00000002 , 0x0000003f 
- 00024792  0x000044b0 call  0x000061b5 
- 00024793  0x000044b1 setarg  0x00000005 
- 00024794  0x000044b2 istore  0x00000001 , 0x00000005 
- 00024795  0x000044b3 branch  0x000061cf 
- 00024796  0x000044b6 fetch  0x00000001 , 0x00000030 
- 00024797  0x000044b7 set1  0x00000004 , 0x0000003f 
- 00024798  0x000044b8 store  0x00000001 , 0x00000030 
- 00024799  0x000044b9 copy  0x00000022 , 0x0000003f 
- 00024800  0x000044ba store  0x00000004 , 0x00000465 
- 00024801  0x000044bb fetch  0x00000001 , 0x0000044d 
- 00024802  0x000044bc bbit1  0x00000003 , 0x000060eb 
- 00024803  0x000044bd set1  0x00000003 , 0x0000003f 
- 00024804  0x000044be store  0x00000001 , 0x0000044d 
- 00024805  0x000044bf jam  0x00000005 , 0x00000b7d 
- 00024806  0x000044c0 call  0x00007c27 
- 00024807  0x000044c1 call  0x00004825 
- 00024808  0x000044c2 force  0x00000001 , 0x0000003f 
- 00024809  0x000044c3 call  0x000061b5 
- 00024810  0x000044c4 branch  0x000061cf 
- 00024811  0x000044c6 jam  0x00000000 , 0x00000048 
- 00024812  0x000044c7 rtn 
- 00024813  0x000044ca force  0x00000006 , 0x0000003f 
- 00024814  0x000044cb call  0x000061b5 
- 00024815  0x000044cc fetch  0x00000005 , 0x000046fd 
- 00024816  0x000044cd istore  0x00000005 , 0x00000005 
- 00024817  0x000044ce branch  0x000061cf 
- 00024818  0x000044d1 force  0x00000009 , 0x0000003f 
- 00024819  0x000044d2 call  0x000061b5 
- 00024820  0x000044d3 fetch  0x00000008 , 0x00004138 
- 00024821  0x000044d4 istore  0x00000008 , 0x00000005 
- 00024822  0x000044d5 branch  0x000061cf 
- 00024823  0x000044d8 call  0x0000481b 
- 00024824  0x000044d9 fetch  0x00000001 , 0x00004132 
- 00024825  0x000044da beq  0x00000001 , 0x000060fd 
- 00024826  0x000044db jam  0x00000001 , 0x000007dd 
- 00024827  0x000044dc fetch  0x00000001 , 0x00004793 
- 00024828  0x000044dd rtnne  0x00000001 
- 00024829  0x000044df jam  0x00000013 , 0x000007db 
- 00024830  0x000044e0 rtn 
- 00024831  0x000044e3 call  0x00006209 
- 00024832  0x000044e4 jam  0x00000099 , 0x0000007c 
- 00024833  0x000044e5 jam  0x00000003 , 0x000007db 
- 00024834  0x000044e6 rtn 
- 00024835  0x000044ea call  0x00006209 
- 00024836  0x000044eb jam  0x0000003d , 0x0000007c 
- 00024837  0x000044ec jam  0x00000007 , 0x000007db 
- 00024838  0x000044ed rtn 
- 00024839  0x000044f0 arg  0x00000868 , 0x00000011 
- 00024840  0x000044f1 arg  0x00000888 , 0x00000012 
- 00024841  0x000044f2 arg  0x00000010 , 0x00000039 
- 00024842  0x000044f3 call  0x00007f25 
- 00024843  0x000044f4 branch  0x00006111 , 0x00000005 
- 00024844  0x000044f5 jam  0x00000000 , 0x000007db 
- 00024845  0x000044f6 call  0x00007811 
- 00024846  0x000044f7 jam  0x00000024 , 0x0000007e 
- 00024847  0x000044f8 jam  0x00000040 , 0x0000007d 
- 00024848  0x000044f9 branch  0x00005bc9 
- 00024849  0x000044fb jam  0x0000000a , 0x000007db 
- 00024850  0x000044fc call  0x0000780f 
- 00024851  0x000044fd jam  0x00000040 , 0x0000007d 
- 00024852  0x000044fe branch  0x00005cf5 
- 00024853  0x00004503 jam  0x00000040 , 0x0000007c 
- 00024854  0x00004504 rtn 
- 00024855  0x0000450b jam  0x0000003d , 0x0000007c 
- 00024856  0x0000450d rtn 
- 00024857  0x00004514 jam  0x00000000 , 0x000007e2 
- 00024858  0x00004515 force  0x00000004 , 0x0000003f 
- 00024859  0x00004516 call  0x000061b5 
- 00024860  0x00004517 force  0x00000001 , 0x0000003f 
- 00024861  0x00004518 istore  0x00000001 , 0x00000005 
- 00024862  0x00004519 force  0x00000001 , 0x0000003f 
- 00024863  0x0000451a istore  0x00000001 , 0x00000005 
- 00024864  0x0000451b force  0x00000030 , 0x0000003f 
- 00024865  0x0000451c istore  0x00000001 , 0x00000005 
- 00024866  0x0000451d call  0x00006216 
- 00024867  0x0000451e branch  0x000061cf , 0x00000001 
- 00024868  0x0000451f branch  0x000061cd 
- 00024869  0x00004523 force  0x00000011 , 0x0000003f 
- 00024870  0x00004524 call  0x000061b5 
- 00024871  0x00004525 fetch  0x00000001 , 0x000007e2 
- 00024872  0x00004526 arg  0x000047ac , 0x00000006 
- 00024873  0x00004527 iadd  0x00000006 , 0x00000006 
- 00024874  0x00004528 ifetch  0x00000008 , 0x00000006 
- 00024875  0x00004529 istore  0x00000008 , 0x00000005 
- 00024876  0x0000452a ifetch  0x00000008 , 0x00000006 
- 00024877  0x0000452b istore  0x00000008 , 0x00000005 
- 00024878  0x0000452c fetch  0x00000001 , 0x000007e2 
- 00024879  0x0000452d increase  0x00000010 , 0x0000003f 
- 00024880  0x0000452e store  0x00000001 , 0x000007e2 
- 00024881  0x0000452f call  0x00006216 
- 00024882  0x00004530 branch  0x000061cf , 0x00000001 
- 00024883  0x00004531 branch  0x000061cd 
- 00024884  0x00004535 jam  0x00000006 , 0x000007da 
- 00024885  0x00004536 jam  0x0000003f , 0x0000007c 
- 00024886  0x00004537 rtn 
- 00024887  0x0000453b force  0x00000011 , 0x0000003f 
- 00024888  0x0000453c call  0x000061b5 
- 00024889  0x0000453d arg  0x00000868 , 0x00000006 
- 00024890  0x0000453e ifetch  0x00000008 , 0x00000006 
- 00024891  0x0000453f istore  0x00000008 , 0x00000005 
- 00024892  0x00004540 ifetch  0x00000008 , 0x00000006 
- 00024893  0x00004541 istore  0x00000008 , 0x00000005 
- 00024894  0x00004542 branch  0x000061cd 
- 00024895  0x00004545 call  0x000061d9 
- 00024896  0x00004547 jam  0x00000040 , 0x0000007c 
- 00024897  0x00004548 rtn 
- 00024898  0x0000454c call  0x00006216 
- 00024899  0x0000454d call  0x0000774d , 0x00000001 
- 00024900  0x0000454e force  0x00000011 , 0x0000003f 
- 00024901  0x0000454f call  0x000061b5 
- 00024902  0x00004550 arg  0x00000838 , 0x00000006 
- 00024903  0x00004551 ifetch  0x00000008 , 0x00000006 
- 00024904  0x00004552 istore  0x00000008 , 0x00000005 
- 00024905  0x00004553 ifetch  0x00000008 , 0x00000006 
- 00024906  0x00004554 istore  0x00000008 , 0x00000005 
- 00024907  0x00004555 call  0x00006216 
- 00024908  0x00004556 nbranch  0x000061cd , 0x00000001 
- 00024909  0x00004557 branch  0x000061cf , 0x00000001 
- 00024910  0x0000455b jam  0x0000000f , 0x000007db 
- 00024911  0x0000455d call  0x00006209 
- 00024912  0x0000455e jam  0x0000000b , 0x0000007c 
- 00024913  0x0000455f call  0x00006221 
- 00024914  0x00004560 branch  0x00007785 , 0x00000001 
- 00024915  0x00004561 branch  0x0000778f 
- 00024916  0x00004563 call  0x00006205 
- 00024917  0x00004565 jam  0x00000041 , 0x0000007c 
- 00024918  0x00004566 rtn 
- 00024919  0x00004569 force  0x00000011 , 0x0000003f 
- 00024920  0x0000456a call  0x000061b5 
- 00024921  0x0000456b arg  0x00000868 , 0x00000006 
- 00024922  0x0000456c ifetch  0x00000008 , 0x00000006 
- 00024923  0x0000456d istore  0x00000008 , 0x00000005 
- 00024924  0x0000456e ifetch  0x00000008 , 0x00000006 
- 00024925  0x0000456f istore  0x00000008 , 0x00000005 
- 00024926  0x00004570 call  0x00006216 
- 00024927  0x00004571 nbranch  0x000061cd , 0x00000001 
- 00024928  0x00004572 branch  0x000061cf , 0x00000001 
- 00024929  0x00004575 force  0x00000003 , 0x0000003f 
- 00024930  0x00004576 call  0x000061b5 
- 00024931  0x00004577 setarg  0x0000fffe 
- 00024932  0x00004578 istore  0x00000002 , 0x00000005 
- 00024933  0x00004579 branch  0x000061cd 
- 00024934  0x0000457c branch  0x000061cf 
- 00024935  0x0000457e branch  0x000061cf 
- 00024936  0x00004580 branch  0x000061cf 
- 00024937  0x00004582 branch  0x000061cf 
- 00024938  0x00004588 call  0x00006225 
- 00024939  0x00004589 arg  0x00004140 , 0x00000011 
- 00024940  0x0000458a call  0x0000622b 
- 00024941  0x0000458b force  0x00000011 , 0x0000003f 
- 00024942  0x0000458c call  0x000061b5 
- 00024943  0x0000458d arg  0x0000050f , 0x00000011 
- 00024944  0x0000458e arg  0x000004ef , 0x00000012 
- 00024945  0x0000458f call  0x00007467 
- 00024946  0x00004590 nbranch  0x000061c4 , 0x00000029 
- 00024947  0x00004591 branch  0x000061ca 
- 00024948  0x00004594 call  0x00006225 
- 00024949  0x00004595 arg  0x00000040 , 0x00000011 
- 00024950  0x00004596 call  0x0000736a 
- 00024951  0x00004598 force  0x00000011 , 0x0000003f 
- 00024952  0x00004599 call  0x000061b5 
- 00024953  0x0000459a arg  0x000004ef , 0x00000006 
- 00024954  0x0000459b call  0x00007e35 
- 00024955  0x0000459c fetch  0x00000001 , 0x00000055 
- 00024956  0x0000459d beq  0x00000019 , 0x000061cf 
- 00024957  0x0000459e beq  0x00000018 , 0x000061cf 
- 00024958  0x0000459f branch  0x000061ca 
- 00024959  0x000045a2 fetch  0x00000001 , 0x000007e1 
- 00024960  0x000045a3 branch  0x00006185 , 0x00000034 
- 00024961  0x000045a4 call  0x00006216 
- 00024962  0x000045a5 call  0x00006209 , 0x00000001 
- 00024963  0x000045a6 ncall  0x00006205 , 0x00000001 
- 00024964  0x000045a7 branch  0x00006186 
- 00024965  0x000045a9 call  0x00006209 
- 00024966  0x000045ab call  0x00006225 
- 00024967  0x000045ac branch  0x00006177 
- 00024968  0x000045af arg  0x00004140 , 0x00000011 
- 00024969  0x000045b0 call  0x0000739d 
- 00024970  0x000045b1 force  0x00000005 , 0x0000003f 
- 00024971  0x000045b2 call  0x000061b5 
- 00024972  0x000045b3 fetch  0x00000004 , 0x0000051f 
- 00024973  0x000045b4 istore  0x00000004 , 0x00000005 
- 00024974  0x000045b5 arg  0x00000451 , 0x00000002 
- 00024975  0x000045b6 call  0x000061fb 
- 00024976  0x000045b7 call  0x0000749b 
- 00024977  0x000045b8 call  0x00006216 
- 00024978  0x000045b9 branch  0x00006197 , 0x00000001 
- 00024979  0x000045ba jam  0x00000001 , 0x00000454 
- 00024980  0x000045bb fetch  0x00000001 , 0x000007e1 
- 00024981  0x000045bc rtn  0x00000034 
- 00024982  0x000045bd jam  0x0000000b , 0x0000007c 
- 00024983  0x000045bf fetch  0x00000001 , 0x0000425e 
- 00024984  0x000045c0 rtn  0x00000034 
- 00024985  0x000045c1 call  0x00006216 
- 00024986  0x000045c2 call  0x00004852 , 0x00000001 
- 00024987  0x000045c4 call  0x00006216 
- 00024988  0x000045c5 nbranch  0x000061a1 , 0x00000001 
- 00024989  0x000045c6 fetch  0x00000001 , 0x00000453 
- 00024990  0x000045c7 rtn  0x00000034 
- 00024991  0x000045c8 jam  0x0000000f , 0x0000007c 
- 00024992  0x000045c9 rtn 
- 00024993  0x000045cb rtnmark0  0x00000021 
- 00024994  0x000045cc set0  0x00000021 , 0x00000000 
- 00024995  0x000045cd jam  0x0000000f , 0x0000007c 
- 00024996  0x000045ce rtn 
- 00024997  0x000045d3 call  0x00006225 
- 00024998  0x000045d4 call  0x000073a0 
- 00024999  0x000045d5 force  0x00000011 , 0x0000003f 
- 00025000  0x000045d6 call  0x000061b5 
- 00025001  0x000045d7 arg  0x000004ef , 0x00000006 
- 00025002  0x000045d8 call  0x00007e35 
- 00025003  0x000045d9 branch  0x000061ca 
- 00025004  0x000045dc force  0x00000001 , 0x0000003f 
- 00025005  0x000045dd call  0x000061b5 
- 00025006  0x000045de branch  0x000061ca 
- 00025007  0x000045e1 force  0x00000002 , 0x0000003f 
- 00025008  0x000045e2 call  0x000061b5 
- 00025009  0x000045e3 force  0x00000010 , 0x0000003f 
- 00025010  0x000045e4 istore  0x00000001 , 0x00000005 
- 00025011  0x000045e5 store  0x00000001 , 0x00000054 
- 00025012  0x000045e6 branch  0x000061ca 
- 00025013  0x000045ea lshift3  0x0000003f , 0x0000003f 
- 00025014  0x000045eb or_into  0x00000007 , 0x0000003f 
- 00025015  0x000045ec store  0x00000001 , 0x00000432 
- 00025016  0x000045ed arg  0x00000011 , 0x00000039 
- 00025017  0x000045ee arg  0x00000434 , 0x00000005 
- 00025018  0x000045ef call  0x00007e3f 
- 00025019  0x000045f0 arg  0x00000434 , 0x00000005 
- 00025020  0x000045f1 rtn 
- 00025021  0x000045f4 and  0x0000003f , 0x0000007f , 0x00000011 
- 00025022  0x000045f5 jam  0x0000007f , 0x00000048 
- 00025023  0x000045f6 deposit  0x00000007 
- 00025024  0x000045f7 call  0x000061b5 
- 00025025  0x000045f8 deposit  0x00000011 
- 00025026  0x000045f9 istore  0x00000001 , 0x00000005 
- 00025027  0x000045fa rtn 
- 00025028  0x000045fd fetch  0x00000001 , 0x00000048 
- 00025029  0x000045fe lshift  0x0000003f , 0x0000003f 
- 00025030  0x000045ff fetcht  0x00000001 , 0x0000004c 
- 00025031  0x00004600 isolate1  0x00000001 , 0x00000002 
- 00025032  0x00004601 setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00025033  0x00004602 branch  0x000061d4 
- 00025034  0x00004606 fetcht  0x00000001 , 0x0000004c 
- 00025035  0x00004607 and_into  0x00000001 , 0x00000002 
- 00025036  0x00004608 branch  0x000061d0 
- 00025037  0x0000460b force  0x00000000 , 0x00000002 
- 00025038  0x0000460c branch  0x000061d0 
- 00025039  0x0000460f force  0x00000001 , 0x00000002 
- 00025040  0x00004611 fetch  0x00000001 , 0x00000048 
- 00025041  0x00004612 lshift  0x0000003f , 0x0000003f 
- 00025042  0x00004613 setflag  0x00000029 , 0x00000000 , 0x0000003f 
- 00025043  0x00004614 ixor  0x00000002 , 0x0000003f 
- 00025044  0x00004616 store  0x00000001 , 0x00000433 
- 00025045  0x00004617 jam  0x00000000 , 0x00000048 
- 00025046  0x00004618 call  0x000061e0 
- 00025047  0x00004619 enable  0x00000028 
- 00025048  0x0000461a rtn 
- 00025049  0x0000461d set1  0x00000025 , 0x00000000 
- 00025050  0x0000461e bpatch  0x000000e4 , 0x0000403c 
- 00025051  0x0000461f fetch  0x00000001 , 0x00000048 
- 00025052  0x00004620 branch  0x000061e0 , 0x00000034 
- 00025053  0x00004621 fetch  0x00000001 , 0x00000078 
- 00025054  0x00004622 nrtn  0x00000034 
- 00025055  0x00004623 branch  0x000061ea 
- 00025056  0x00004625 fetch  0x00000001 , 0x00000078 
- 00025057  0x00004626 branch  0x000061f0 , 0x00000034 
- 00025058  0x00004627 fetch  0x00000003 , 0x00000078 
- 00025059  0x00004628 store  0x00000003 , 0x00000048 
- 00025060  0x00004629 fetcht  0x00000001 , 0x0000007b 
- 00025061  0x0000462a fetch  0x00000001 , 0x0000004c 
- 00025062  0x0000462b set0  0x00000001 , 0x0000003f 
- 00025063  0x0000462c ior  0x00000002 , 0x0000003f 
- 00025064  0x0000462d store  0x00000001 , 0x0000004c 
- 00025065  0x0000462e jam  0x00000000 , 0x00000078 
- 00025066  0x00004630 fetch  0x00000001 , 0x0000007c 
- 00025067  0x00004631 rtn  0x00000034 
- 00025068  0x00004632 fetch  0x00000004 , 0x0000007c 
- 00025069  0x00004633 store  0x00000004 , 0x00000078 
- 00025070  0x00004634 jam  0x00000000 , 0x0000007c 
- 00025071  0x00004635 rtn 
- 00025072  0x00004637 fetch  0x00000001 , 0x0000007c 
- 00025073  0x00004638 rtn  0x00000034 
- 00025074  0x00004639 fetch  0x00000003 , 0x0000007c 
- 00025075  0x0000463a store  0x00000003 , 0x00000048 
- 00025076  0x0000463b fetcht  0x00000001 , 0x0000007f 
- 00025077  0x0000463c fetch  0x00000001 , 0x0000004c 
- 00025078  0x0000463d set0  0x00000001 , 0x0000003f 
- 00025079  0x0000463e ior  0x00000002 , 0x0000003f 
- 00025080  0x0000463f store  0x00000001 , 0x0000004c 
- 00025081  0x00004640 jam  0x00000000 , 0x0000007c 
- 00025082  0x00004641 rtn 
- 00025083  0x00004645 set1  0x00000025 , 0x00000000 
- 00025084  0x00004646 bpatch  0x000000e5 , 0x0000403c 
- 00025085  0x00004647 fetch  0x00000001 , 0x0000004c 
- 00025086  0x00004648 copy  0x0000003f , 0x00000013 
- 00025087  0x00004649 ifetch  0x00000001 , 0x00000002 
- 00025088  0x0000464a call  0x00005d12 
- 00025089  0x0000464b call  0x000061c4 
- 00025090  0x0000464c copy  0x00000013 , 0x0000003f 
- 00025091  0x0000464d store  0x00000001 , 0x0000004c 
- 00025092  0x0000464e rtn 
- 00025093  0x00004651 fetcht  0x00000001 , 0x0000004c 
- 00025094  0x00004652 set0  0x00000000 , 0x00000002 
- 00025095  0x00004653 storet  0x00000001 , 0x0000004c 
- 00025096  0x00004654 rtn 
- 00025097  0x00004657 fetcht  0x00000001 , 0x0000004c 
- 00025098  0x00004658 set1  0x00000000 , 0x00000002 
- 00025099  0x00004659 storet  0x00000001 , 0x0000004c 
- 00025100  0x0000465a rtn 
- 00025101  0x0000465e nsetflag  0x00000029 , 0x00000001 , 0x0000003f 
- 00025102  0x0000465f fetcht  0x00000001 , 0x0000004c 
- 00025103  0x00004660 ixor  0x00000002 , 0x0000003f 
- 00025104  0x00004661 isolate1  0x00000001 , 0x0000003f 
- 00025105  0x00004662 rtn 
- 00025106  0x00004666 fetch  0x00000001 , 0x0000004c 
- 00025107  0x00004667 setflag  0x00000029 , 0x00000001 , 0x0000003f 
- 00025108  0x00004668 store  0x00000001 , 0x0000004c 
- 00025109  0x00004669 rtn 
- 00025110  0x0000466d fetch  0x00000001 , 0x000007e0 
- 00025111  0x0000466e compare  0x00000001 , 0x0000003f , 0x0000007f 
- 00025112  0x0000466f rtn 
- 00025113  0x00004671 fetch  0x00000001 , 0x000007e0 
- 00025114  0x00004672 set1  0x00000007 , 0x0000003f 
- 00025115  0x00004673 store  0x00000001 , 0x000007e0 
- 00025116  0x00004674 rtn 
- 00025117  0x00004676 fetch  0x00000001 , 0x000007e0 
- 00025118  0x00004677 set0  0x00000007 , 0x0000003f 
- 00025119  0x00004678 store  0x00000001 , 0x000007e0 
- 00025120  0x00004679 rtn 
- 00025121  0x0000467b fetch  0x00000001 , 0x000007e0 
- 00025122  0x0000467c isolate1  0x00000007 , 0x0000003f 
- 00025123  0x0000467d store  0x00000001 , 0x000007e0 
- 00025124  0x0000467e rtn 
- 00025125  0x00004682 arg  0x000004ef , 0x00000005 
- 00025126  0x00004684 force  0x00000010 , 0x00000039 
- 00025127  0x00004687 random  0x0000003f 
- 00025128  0x00004688 istore  0x00000001 , 0x00000005 
- 00025129  0x00004689 loop  0x00006227 
- 00025130  0x0000468a rtn 
- 00025131  0x0000468d call  0x0000736e 
- 00025132  0x0000468e arg  0x00004262 , 0x00000011 
- 00025133  0x0000468f arg  0x0000051f , 0x00000012 
- 00025134  0x00004690 ifetch  0x00000008 , 0x00000011 
- 00025135  0x00004691 fetcht  0x00000001 , 0x00000030 
- 00025136  0x00004692 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
- 00025137  0x00004693 storet  0x00000001 , 0x00000030 
- 00025138  0x00004694 copy  0x00000011 , 0x00000005 
- 00025139  0x00004695 call  0x00007467 
- 00025140  0x00004696 branch  0x00003229 
- 00025141  0x0000469e set1  0x00000025 , 0x00000000 
- 00025142  0x0000469f bpatch  0x000000e6 , 0x0000403c 
- 00025143  0x000046a0 fetch  0x00000001 , 0x0000007c 
- 00025144  0x000046a1 branch  0x0000623c , 0x00000034 
- 00025145  0x000046a2 call  0x000061d9 
- 00025146  0x000046a3 fetch  0x00000001 , 0x0000007c 
- 00025147  0x000046a4 nrtn  0x00000034 
- 00025148  0x000046a6 fetch  0x00000001 , 0x00000055 
- 00025149  0x000046a7 rtn  0x00000034 
- 00025150  0x000046ab beq  0x00000004 , 0x0000628d 
- 00025151  0x000046ac beq  0x00000005 , 0x00006292 
- 00025152  0x000046ad beq  0x00000002 , 0x00006284 
- 00025153  0x000046ae beq  0x00000003 , 0x0000629a 
- 00025154  0x000046af beq  0x0000000e , 0x00006287 
- 00025155  0x000046b0 beq  0x00000006 , 0x000062b6 
- 00025156  0x000046b1 beq  0x00000007 , 0x000062ce 
- 00025157  0x000046b2 beq  0x00000009 , 0x000062cf 
- 00025158  0x000046b3 beq  0x0000000a , 0x000062d8 
- 00025159  0x000046b4 beq  0x0000000b , 0x000062dc 
- 00025160  0x000046b5 beq  0x0000000c , 0x000062a4 
- 00025161  0x000046b6 beq  0x0000000d , 0x000062a7 
- 00025162  0x000046b7 beq  0x0000000f , 0x000062ad 
- 00025163  0x000046b8 beq  0x00000012 , 0x00006277 
- 00025164  0x000046b9 beq  0x00000013 , 0x0000629a 
- 00025165  0x000046ba beq  0x00000010 , 0x0000627a 
- 00025166  0x000046bb beq  0x00000014 , 0x00006274 
- 00025167  0x000046bc beq  0x00000015 , 0x0000629a 
- 00025168  0x000046bd beq  0x00000016 , 0x0000626e 
- 00025169  0x000046be beq  0x00000018 , 0x00006273 
- 00025170  0x000046bf beq  0x00000017 , 0x00006267 
- 00025171  0x000046c0 beq  0x00000019 , 0x0000626d 
- 00025172  0x000046c1 beq  0x0000001a , 0x00006258 
- 00025173  0x000046c2 beq  0x0000001b , 0x00006262 
- 00025174  0x000046c3 jam  0x00000000 , 0x00000055 
- 00025175  0x000046c5 rtn 
- 00025176  0x000046c7 fetch  0x00000001 , 0x0000044d 
- 00025177  0x000046c8 rtnbit0  0x00000002 
- 00025178  0x000046c9 rtnbit0  0x00000003 
- 00025179  0x000046ca jam  0x00000000 , 0x00000055 
- 00025180  0x000046cb call  0x0000625e 
- 00025181  0x000046cc branch  0x00006e41 
- 00025182  0x000046cf fetch  0x00000001 , 0x00000177 
- 00025183  0x000046d0 rtnbit0  0x00000001 
- 00025184  0x000046d1 jam  0x0000000a , 0x00000055 
- 00025185  0x000046d2 rtn 
- 00025186  0x000046d5 arg  0x0000000b , 0x00000007 
- 00025187  0x000046d6 call  0x00007e53 
- 00025188  0x000046d7 nrtn  0x00000034 
- 00025189  0x000046d8 jam  0x0000001a , 0x00000055 
- 00025190  0x000046d9 rtn 
- 00025191  0x000046dc fetch  0x00000001 , 0x00000177 
- 00025192  0x000046dd set0  0x00000000 , 0x0000003f 
- 00025193  0x000046de store  0x00000001 , 0x00000177 
- 00025194  0x000046df jam  0x00000019 , 0x00000055 
- 00025195  0x000046e0 jam  0x0000000b , 0x0000007c 
- 00025196  0x000046e1 rtn 
- 00025197  0x000046e3 rtn 
- 00025198  0x000046e5 fetch  0x00000001 , 0x00000450 
- 00025199  0x000046e6 rtnne  0x00000002 
- 00025200  0x000046e7 call  0x000062de 
- 00025201  0x000046e8 jam  0x00000018 , 0x00000055 
- 00025202  0x000046e9 rtn 
- 00025203  0x000046ec rtn 
- 00025204  0x000046ee jam  0x00000015 , 0x00000055 
- 00025205  0x000046ef jam  0x00000083 , 0x0000007c 
- 00025206  0x000046f0 rtn 
- 00025207  0x000046f2 jam  0x00000013 , 0x00000055 
- 00025208  0x000046f3 jam  0x00000025 , 0x0000007c 
- 00025209  0x000046f4 rtn 
- 00025210  0x000046f7 fetch  0x00000001 , 0x00004748 
- 00025211  0x000046f8 rtneq  0x00000000 
- 00025212  0x000046f9 beq  0x00000001 , 0x00006282 
- 00025213  0x000046fa arg  0x0000000a , 0x00000007 
- 00025214  0x000046fb call  0x00007e53 
- 00025215  0x000046fc nrtn  0x00000034 
- 00025216  0x000046fd jam  0x00000000 , 0x00004748 
- 00025217  0x000046fe branch  0x0000629b 
- 00025218  0x00004700 rtn  0x00000029 
- 00025219  0x00004701 branch  0x000062b6 
- 00025220  0x00004704 jam  0x00000003 , 0x00000055 
- 00025221  0x00004705 jam  0x00000027 , 0x0000007c 
- 00025222  0x00004706 rtn 
- 00025223  0x00004708 jam  0x00000013 , 0x0000007c 
- 00025224  0x00004709 set1  0x00000003 , 0x00000000 
- 00025225  0x0000470a jam  0x00000005 , 0x00000055 
- 00025226  0x0000470b setarg  0x000001ff 
- 00025227  0x0000470c store  0x00000002 , 0x0000044e 
- 00025228  0x0000470d rtn 
- 00025229  0x0000470f jam  0x00000005 , 0x00000055 
- 00025230  0x00004710 jam  0x000000ff , 0x0000044e 
- 00025231  0x00004711 set0  0x00000022 , 0x00000000 
- 00025232  0x00004712 jam  0x00000033 , 0x0000007c 
- 00025233  0x00004713 branch  0x00005b6f 
- 00025234  0x00004715 rtnmark1  0x00000022 
- 00025235  0x00004716 fetch  0x00000002 , 0x0000044e 
- 00025236  0x00004717 sub  0x0000003f , 0x00000001 , 0x0000003f 
- 00025237  0x00004718 branch  0x00006298 , 0x00000005 
- 00025238  0x00004719 store  0x00000002 , 0x0000044e 
- 00025239  0x0000471a rtn 
- 00025240  0x0000471c jam  0x0000000e , 0x00000055 
- 00025241  0x0000471d rtn 
- 00025242  0x00004720 rtn 
- 00025243  0x00004723 fetch  0x00000001 , 0x0000044d 
- 00025244  0x00004724 rtnbit0  0x00000003 
- 00025245  0x00004725 rtnbit0  0x00000002 
- 00025246  0x00004726 fetch  0x00000001 , 0x00000177 
- 00025247  0x00004727 set0  0x00000002 , 0x0000003f 
- 00025248  0x00004728 store  0x00000001 , 0x00000177 
- 00025249  0x00004729 jam  0x00000013 , 0x0000007c 
- 00025250  0x0000472a jam  0x00000010 , 0x00000055 
- 00025251  0x0000472b rtn 
- 00025252  0x0000472e jam  0x0000000d , 0x00000055 
- 00025253  0x0000472f jam  0x00000031 , 0x0000007c 
- 00025254  0x00004730 rtn 
- 00025255  0x00004733 fetch  0x00000001 , 0x0000044d 
- 00025256  0x00004734 rtnbit0  0x00000002 
- 00025257  0x00004735 jam  0x00000000 , 0x00000055 
- 00025258  0x00004737 rtn 
- 00025259  0x00004739 jam  0x00000006 , 0x00000055 
- 00025260  0x0000473a rtn 
- 00025261  0x0000473d fetch  0x00000001 , 0x0000044e 
- 00025262  0x0000473e increase  0xffffffff , 0x0000003f 
- 00025263  0x0000473f branch  0x000062b2 , 0x00000034 
- 00025264  0x00004740 store  0x00000001 , 0x0000044e 
- 00025265  0x00004741 rtn 
- 00025266  0x00004743 jam  0x00000007 , 0x0000007c 
- 00025267  0x00004744 jam  0x00000016 , 0x00000446 
- 00025268  0x00004745 jam  0x00000000 , 0x00000055 
- 00025269  0x00004746 rtn 
- 00025270  0x00004749 fetch  0x00000001 , 0x00000177 
- 00025271  0x0000474a bbit1  0x00000002 , 0x0000629b 
- 00025272  0x0000474b bbit1  0x00000000 , 0x000062bb 
- 00025273  0x0000474d jam  0x0000001a , 0x00000055 
- 00025274  0x0000474e rtn 
- 00025275  0x00004750 fetch  0x00000001 , 0x0000425e 
- 00025276  0x00004751 branch  0x000062c7 , 0x00000034 
- 00025277  0x00004752 fetch  0x00000001 , 0x0000044d 
- 00025278  0x00004753 rtnbit0  0x00000003 
- 00025279  0x00004754 rtnbit0  0x00000002 
- 00025280  0x00004755 fetch  0x00000004 , 0x00000465 
- 00025281  0x00004756 arg  0x00000064 , 0x00000002 
- 00025282  0x00004757 iadd  0x00000002 , 0x00000002 
- 00025283  0x00004758 copy  0x00000022 , 0x0000003f 
- 00025284  0x00004759 isub  0x00000002 , 0x0000003e 
- 00025285  0x0000475a nrtn  0x00000002 
- 00025286  0x0000475b branch  0x00006267 
- 00025287  0x00004760 jam  0x00000016 , 0x00000055 
- 00025288  0x00004761 jam  0x00000004 , 0x0000054f 
- 00025289  0x00004762 setarg  0x00003030 
- 00025290  0x00004763 store  0x00000002 , 0x00000550 
- 00025291  0x00004764 istore  0x00000002 , 0x00000005 
- 00025292  0x00004765 jam  0x00000002 , 0x00000450 
- 00025293  0x00004766 branch  0x0000626e 
- 00025294  0x00004769 rtn 
- 00025295  0x0000476b fetch  0x00000001 , 0x00000177 
- 00025296  0x0000476c bbit1  0x00000001 , 0x000062d3 
- 00025297  0x0000476d jam  0x0000001a , 0x00000055 
- 00025298  0x0000476e rtn 
- 00025299  0x00004771 fetch  0x00000001 , 0x00000177 
- 00025300  0x00004772 set0  0x00000001 , 0x0000003f 
- 00025301  0x00004773 store  0x00000001 , 0x00000177 
- 00025302  0x00004774 jam  0x0000000f , 0x0000007c 
- 00025303  0x00004775 rtn 
- 00025304  0x00004778 fetch  0x00000001 , 0x00000454 
- 00025305  0x00004779 rtn  0x00000034 
- 00025306  0x0000477a jam  0x00000000 , 0x00000055 
- 00025307  0x0000477b branch  0x000062d3 
- 00025308  0x0000477e jam  0x0000000c , 0x00000055 
- 00025309  0x0000477f rtn 
- 00025310  0x00004782 fetch  0x00000001 , 0x0000004b 
- 00025311  0x00004783 bbit1  0x00000002 , 0x000062e3 
- 00025312  0x00004784 call  0x00006209 
- 00025313  0x00004785 jam  0x00000008 , 0x0000007c 
- 00025314  0x00004786 branch  0x000049bc 
- 00025315  0x00004788 fetch  0x00000001 , 0x0000004b 
- 00025316  0x00004789 set0  0x00000002 , 0x0000003f 
- 00025317  0x0000478a store  0x00000001 , 0x0000004b 
- 00025318  0x0000478b call  0x00005ed0 
- 00025319  0x0000478c call  0x00006212 
- 00025320  0x0000478d branch  0x000049bc 
- 00025321  0x00004790 setarg  0x00000004 
- 00025322  0x00004791 store  0x00000001 , 0x0000054f 
- 00025323  0x00004792 setarg  0x00003030 
- 00025324  0x00004793 istore  0x00000002 , 0x00000005 
- 00025325  0x00004794 istore  0x00000002 , 0x00000005 
- 00025326  0x00004795 rtn 
- 00025327  0x0000479e rtn  0x0000002b 
- 00025328  0x0000479f jam  0x00000000 , 0x00004813 
- 00025329  0x000047a0 call  0x00006321 
- 00025330  0x000047a1 call  0x00006438 
- 00025331  0x000047a2 setarg  0x0000632e 
- 00025332  0x000047a3 store  0x00000002 , 0x00004290 
- 00025333  0x000047a4 setarg  0x0000632f 
- 00025334  0x000047a5 store  0x00000002 , 0x0000428e 
- 00025335  0x000047a6 setarg  0x00006337 
- 00025336  0x000047a7 store  0x00000002 , 0x00004292 
- 00025337  0x000047a8 setarg  0x000063b6 
- 00025338  0x000047a9 store  0x00000002 , 0x00004296 
- 00025339  0x000047aa setarg  0x0000632f 
- 00025340  0x000047ab store  0x00000002 , 0x0000428c 
- 00025341  0x000047ac set1  0x00000025 , 0x00000000 
- 00025342  0x000047ad bpatch  0x00000080 , 0x00004030 
- 00025343  0x000047ae setarg  0x0000632a 
- 00025344  0x000047af store  0x00000002 , 0x00004286 
- 00025345  0x000047b0 setarg  0x000063be 
- 00025346  0x000047b1 store  0x00000002 , 0x00004298 
- 00025347  0x000047b2 setarg  0x00000000 
- 00025348  0x000047b3 store  0x00000004 , 0x0000480a 
- 00025349  0x000047b4 store  0x00000002 , 0x00004810 
- 00025350  0x000047b5 call  0x0000630a 
- 00025351  0x000047b6 call  0x00003fc5 
- 00025352  0x000047b7 call  0x00003e2b 
- 00025353  0x000047b8 branch  0x0000691d 
- 00025354  0x000047bb rtn  0x0000002b 
- 00025355  0x000047bc setarg  0x000001a0 
- 00025356  0x000047bd store  0x00000002 , 0x000042ac 
- 00025357  0x000047bf call  0x00006a0d 
- 00025358  0x000047c0 setarg  0x00004a00 
- 00025359  0x000047c1 hstore  0x00000002 , 0x00008054 
- 00025360  0x000047c2 setarg  0x00004fff 
- 00025361  0x000047c3 hstore  0x00000002 , 0x00008056 
- 00025362  0x000047c4 setarg  0x00001c00 
- 00025363  0x000047c5 hstore  0x00000002 , 0x0000805a 
- 00025364  0x000047c6 setarg  0x00001fff 
- 00025365  0x000047c7 hstore  0x00000002 , 0x0000805c 
- 00025366  0x000047c8 hjam  0x00000004 , 0x00008081 
- 00025367  0x000047c9 jam  0x000000ff , 0x0000029f 
- 00025368  0x000047ca hjam  0x00000000 , 0x00008062 
- 00025369  0x000047cb setarg  0x00001c00 
- 00025370  0x000047cc hstore  0x00000002 , 0x0000805e 
- 00025371  0x000047cd hstore  0x00000002 , 0x00008060 
- 00025372  0x000047ce setarg  0x00004a00 
- 00025373  0x000047cf hstore  0x00000002 , 0x00008058 
- 00025374  0x000047d0 branch  0x00004480 
- 00025375  0x000047d4 call  0x0000630d 
- 00025376  0x000047d5 branch  0x00006321 
- 00025377  0x000047d9 call  0x00007bd9 
- 00025378  0x000047da call  0x00003f94 
- 00025379  0x000047dc fetcht  0x00000001 , 0x00004803 
- 00025380  0x000047dd call  0x000069da 
- 00025381  0x000047de call  0x0000639e 
- 00025382  0x000047e0 fetcht  0x00000001 , 0x00004801 
- 00025383  0x000047e1 call  0x000069d1 
- 00025384  0x000047e2 fetcht  0x00000001 , 0x00004800 
- 00025385  0x000047e3 branch  0x000069d2 
- 00025386  0x000047e6 fetcht  0x00000001 , 0x00004801 
- 00025387  0x000047e7 call  0x000069e5 
- 00025388  0x000047e8 nbranch  0x00003f5c , 0x00000001 
- 00025389  0x000047e9 branch  0x00003f5a 
- 00025390  0x000047ee branch  0x00006330 
- 00025391  0x000047f0 branch  0x00006330 
- 00025392  0x000047f2 set1  0x00000025 , 0x00000000 
- 00025393  0x000047f3 bpatch  0x00000081 , 0x00004030 
- 00025394  0x000047f4 call  0x0000641c 
- 00025395  0x000047f5 call  0x00006421 
- 00025396  0x000047f6 call  0x0000527a 
- 00025397  0x000047f7 nrtn  0x00000034 
- 00025398  0x000047f8 branch  0x000063a0 
- 00025399  0x000047fa copy  0x00000013 , 0x0000003f 
- 00025400  0x000047fb beq  0x0000000a , 0x00006368 
- 00025401  0x000047fc beq  0x00000004 , 0x00006383 
- 00025402  0x000047fd beq  0x00000013 , 0x00006387 
- 00025403  0x000047fe beq  0x00000002 , 0x0000634c 
- 00025404  0x000047ff beq  0x00000019 , 0x0000636a 
- 00025405  0x00004800 beq  0x00000020 , 0x0000636f 
- 00025406  0x00004801 beq  0x00000022 , 0x00006374 
- 00025407  0x00004802 beq  0x00000021 , 0x00006375 
- 00025408  0x00004803 beq  0x00000023 , 0x00006376 
- 00025409  0x00004804 beq  0x00000024 , 0x00006379 
- 00025410  0x00004805 beq  0x00000014 , 0x0000637a 
- 00025411  0x00004806 beq  0x00000001 , 0x00006382 
- 00025412  0x00004807 beq  0x00000015 , 0x00006364 
- 00025413  0x00004808 beq  0x00000005 , 0x0000635d 
- 00025414  0x00004809 beq  0x0000000b , 0x00006352 
- 00025415  0x0000480a beq  0x0000000c , 0x00003fa6 
- 00025416  0x0000480b and  0x0000003f , 0x0000000f , 0x00000002 
- 00025417  0x0000480c and_into  0x000000f0 , 0x0000003f 
- 00025418  0x0000480d beq  0x00000050 , 0x000063ec 
- 00025419  0x0000480e rtn 
- 00025420  0x00004811 call  0x0000638a 
- 00025421  0x00004812 fetch  0x00000002 , 0x000042a0 
- 00025422  0x00004813 rtnbit0  0x00000004 
- 00025423  0x00004814 arg  0x00000003 , 0x00000039 
- 00025424  0x00004815 arg  0x00004849 , 0x00000006 
- 00025425  0x00004816 branch  0x00007f71 
- 00025426  0x0000481b fetch  0x00000002 , 0x00004042 
- 00025427  0x0000481c rshift  0x0000003f , 0x0000003f 
- 00025428  0x0000481d fetcht  0x00000002 , 0x00004280 
- 00025429  0x0000481e isub  0x00000002 , 0x0000003e 
- 00025430  0x0000481f nbranch  0x00006358 , 0x00000005 
- 00025431  0x00004820 branch  0x00003fa4 
- 00025432  0x00004822 fetch  0x00000001 , 0x00004813 
- 00025433  0x00004823 rtnbit1  0x00000000 
- 00025434  0x00004824 hfetch  0x00000002 , 0x00008112 
- 00025435  0x00004825 ncall  0x0000640c , 0x00000034 
- 00025436  0x00004826 branch  0x00003f9c 
- 00025437  0x00004829 call  0x00006395 
- 00025438  0x0000482a call  0x0000642e 
- 00025439  0x0000482b branch  0x00006361 , 0x00000005 
- 00025440  0x0000482c branch  0x00003f77 
- 00025441  0x0000482e arg  0x00000004 , 0x00000039 
- 00025442  0x0000482f arg  0x0000488e , 0x00000006 
- 00025443  0x00004830 branch  0x00007f71 
- 00025444  0x00004833 call  0x0000638a 
- 00025445  0x00004834 arg  0x00000005 , 0x00000039 
- 00025446  0x00004835 arg  0x00004847 , 0x00000006 
- 00025447  0x00004836 branch  0x00007f71 
- 00025448  0x00004839 call  0x00003fc1 
- 00025449  0x0000483a branch  0x00003f6a 
- 00025450  0x0000483c fetch  0x00000001 , 0x00004813 
- 00025451  0x0000483d rtnbit0  0x00000004 
- 00025452  0x0000483e set0  0x00000004 , 0x0000003f 
- 00025453  0x0000483f store  0x00000001 , 0x00004813 
- 00025454  0x00004840 branch  0x0000427f 
- 00025455  0x00004843 fetch  0x00000001 , 0x00004813 
- 00025456  0x00004844 rtnbit0  0x00000004 
- 00025457  0x00004845 set0  0x00000004 , 0x0000003f 
- 00025458  0x00004846 store  0x00000001 , 0x00004813 
- 00025459  0x00004847 branch  0x00004286 
- 00025460  0x0000484a rtn 
- 00025461  0x0000484d rtn 
- 00025462  0x00004850 fetch  0x00000001 , 0x00004813 
- 00025463  0x00004851 bbit0  0x00000000 , 0x00003f9e 
- 00025464  0x00004852 branch  0x00006410 
- 00025465  0x00004855 rtn 
- 00025466  0x00004858 call  0x00006395 
- 00025467  0x00004859 arg  0x000003d0 , 0x00000012 
- 00025468  0x0000485a call  0x0000642e 
- 00025469  0x0000485b branch  0x0000637f , 0x00000005 
- 00025470  0x0000485c branch  0x00003f90 
- 00025471  0x0000485e arg  0x00000006 , 0x00000039 
- 00025472  0x0000485f arg  0x0000488c , 0x00000006 
- 00025473  0x00004860 branch  0x00007f71 
- 00025474  0x00004863 rtn 
- 00025475  0x00004867 arg  0x00000007 , 0x00000039 
- 00025476  0x00004868 arg  0x00004899 , 0x00000006 
- 00025477  0x00004869 call  0x00007f71 
- 00025478  0x0000486a branch  0x0000638a 
- 00025479  0x0000486c arg  0x00000007 , 0x00000039 
- 00025480  0x0000486d arg  0x00004892 , 0x00000006 
- 00025481  0x0000486e call  0x00007f71 
- 00025482  0x00004870 call  0x0000638c 
- 00025483  0x00004871 branch  0x00006393 
- 00025484  0x00004874 fetch  0x00000001 , 0x00004812 
- 00025485  0x00004875 isolate1  0x00000000 , 0x0000003f 
- 00025486  0x00004876 call  0x00003f7c , 0x00000001 
- 00025487  0x00004877 fetch  0x00000001 , 0x00004812 
- 00025488  0x00004878 isolate1  0x00000001 , 0x0000003f 
- 00025489  0x00004879 call  0x00003f88 , 0x00000001 
- 00025490  0x0000487a rtn 
- 00025491  0x0000487c fetcht  0x00000001 , 0x00004803 
- 00025492  0x0000487d branch  0x000069ef 
- 00025493  0x00004880 call  0x00006397 
- 00025494  0x00004881 branch  0x0000639e 
- 00025495  0x00004884 fetch  0x00000001 , 0x00004812 
- 00025496  0x00004885 isolate1  0x00000000 , 0x0000003f 
- 00025497  0x00004886 call  0x00003f7e , 0x00000001 
- 00025498  0x00004887 fetch  0x00000001 , 0x00004812 
- 00025499  0x00004888 isolate1  0x00000001 , 0x0000003f 
- 00025500  0x00004889 call  0x00003f86 , 0x00000001 
- 00025501  0x0000488a rtn 
- 00025502  0x0000488c fetcht  0x00000001 , 0x00004803 
- 00025503  0x0000488d branch  0x000069ed 
- 00025504  0x00004893 fetch  0x00000001 , 0x00004132 
- 00025505  0x00004894 rtnne  0x0000000a 
- 00025506  0x00004895 hfetch  0x00000002 , 0x00008112 
- 00025507  0x00004896 rtn  0x00000034 
- 00025508  0x00004897 store  0x00000002 , 0x0000480e 
- 00025509  0x00004899 call  0x000063a9 
- 00025510  0x0000489a branch  0x00003fef , 0x00000001 
- 00025511  0x0000489b call  0x00006400 
- 00025512  0x0000489c branch  0x000063af 
- 00025513  0x000048a0 fetcht  0x00000001 , 0x00004800 
- 00025514  0x000048a1 branch  0x000069e5 
- 00025515  0x000048a5 fetch  0x00000001 , 0x00004813 
- 00025516  0x000048a6 rtnbit1  0x00000000 
- 00025517  0x000048a7 call  0x0000640c 
- 00025518  0x000048a8 branch  0x00003f9c 
- 00025519  0x000048ab fetch  0x00000001 , 0x00004040 
- 00025520  0x000048ac bbit0  0x00000000 , 0x0000428c 
- 00025521  0x000048ad fetch  0x00000001 , 0x00004041 
- 00025522  0x000048ae bbit1  0x00000000 , 0x000063d5 
- 00025523  0x000048af call  0x00003f40 
- 00025524  0x000048b0 branch  0x000063ab , 0x00000001 
- 00025525  0x000048b1 branch  0x00006d97 
- 00025526  0x000048b4 call  0x00005a88 
- 00025527  0x000048b5 ifetch  0x00000001 , 0x00000006 
- 00025528  0x000048b6 copy  0x00000006 , 0x00000011 
- 00025529  0x000048b7 call  0x00007f6e 
- 00025530  0x000048b8 copy  0x00000012 , 0x00000039 
- 00025531  0x000048b9 copy  0x00000011 , 0x00000006 
- 00025532  0x000048ba call  0x00004976 
- 00025533  0x000048bb branch  0x000068fa 
- 00025534  0x000048c0 fetch  0x00000002 , 0x00004810 
- 00025535  0x000048c1 rtn  0x00000034 
- 00025536  0x000048c2 arg  0x00000014 , 0x00000002 
- 00025537  0x000048c3 call  0x00007fb9 
- 00025538  0x000048c4 store  0x00000002 , 0x00000469 
- 00025539  0x000048c6 copy  0x0000003f , 0x00000002 
- 00025540  0x000048c7 fetch  0x00000002 , 0x00004810 
- 00025541  0x000048c8 isub  0x00000002 , 0x0000003f 
- 00025542  0x000048c9 store  0x00000002 , 0x00004810 
- 00025543  0x000048ca nbranch  0x00003bf1 , 0x00000002 
- 00025544  0x000048cc arg  0x00000014 , 0x00000002 
- 00025545  0x000048cd storet  0x00000002 , 0x000044c2 
- 00025546  0x000048ce call  0x00005a88 
- 00025547  0x000048cf branch  0x00003bf1 , 0x00000034 
- 00025548  0x000048d0 add  0x00000006 , 0x00000001 , 0x00000005 
- 00025549  0x000048d2 fetch  0x00000002 , 0x00000469 
- 00025550  0x000048d3 copy  0x0000003f , 0x00000039 
- 00025551  0x000048d5 call  0x00007f6b 
- 00025552  0x000048d7 call  0x0000497c 
- 00025553  0x000048d9 fetch  0x00000002 , 0x00000469 
- 00025554  0x000048da store  0x00000002 , 0x0000480e 
- 00025555  0x000048db store  0x00000002 , 0x0000041b 
- 00025556  0x000048dc branch  0x0000428c 
- 00025557  0x000048e0 rtnmark0  0x00000009 
- 00025558  0x000048e1 call  0x000063d8 
- 00025559  0x000048e2 call  0x000063d8 
- 00025560  0x000048e4 call  0x0000561e 
- 00025561  0x000048e5 nrtn  0x00000034 
- 00025562  0x000048e6 hfetch  0x00000002 , 0x00008112 
- 00025563  0x000048e7 rtn  0x00000034 
- 00025564  0x000048e8 fetcht  0x00000002 , 0x00004810 
- 00025565  0x000048e9 isub  0x00000002 , 0x0000003f 
- 00025566  0x000048ea nbranch  0x00003bf1 , 0x00000002 
- 00025567  0x000048eb store  0x00000002 , 0x0000480e 
- 00025568  0x000048ec rtn  0x00000034 
- 00025569  0x000048ed call  0x00006407 
- 00025570  0x000048ee fetch  0x00000002 , 0x00004810 
- 00025571  0x000048ef fetcht  0x00000002 , 0x0000480e 
- 00025572  0x000048f0 iadd  0x00000002 , 0x0000003f 
- 00025573  0x000048f1 store  0x00000002 , 0x00004810 
- 00025574  0x000048f2 fetcht  0x00000002 , 0x00004810 
- 00025575  0x000048f3 hfetch  0x00000002 , 0x00008112 
- 00025576  0x000048f4 isub  0x00000002 , 0x00000011 
- 00025577  0x000048f5 nbranch  0x00003bf1 , 0x00000002 
- 00025578  0x000048f6 jam  0x0000001b , 0x00000b7d 
- 00025579  0x000048f7 branch  0x00005620 
- 00025580  0x000048fa storet  0x00000001 , 0x00000259 
- 00025581  0x000048fc fetch  0x00000001 , 0x00000259 
- 00025582  0x000048fd rtn  0x00000034 
- 00025583  0x000048fe increase  0xffffffff , 0x0000003f 
- 00025584  0x000048ff store  0x00000001 , 0x00000259 
- 00025585  0x00004900 call  0x000063f3 
- 00025586  0x00004901 branch  0x000063ed 
- 00025587  0x00004904 fetch  0x00000002 , 0x0000481a 
- 00025588  0x00004905 rtn  0x00000034 
- 00025589  0x00004906 increase  0xffffffff , 0x0000003f 
- 00025590  0x00004907 store  0x00000002 , 0x0000481a 
- 00025591  0x00004908 nrtn  0x00000034 
- 00025592  0x00004909 fetch  0x00000001 , 0x000042a4 
- 00025593  0x0000490a jam  0x00000000 , 0x000042a4 
- 00025594  0x0000490b bbit1  0x00000001 , 0x000063fd 
- 00025595  0x0000490c bbit1  0x00000000 , 0x000063fe 
- 00025596  0x0000490d branch  0x00003bf1 
- 00025597  0x0000490f branch  0x00003f8c 
- 00025598  0x00004911 jam  0x00000002 , 0x00004272 
- 00025599  0x00004912 rtn 
- 00025600  0x00004915 fetch  0x00000001 , 0x00004041 
- 00025601  0x00004916 bbit1  0x00000000 , 0x00006407 
- 00025602  0x00004917 fetch  0x00000002 , 0x0000480e 
- 00025603  0x00004918 arg  0x0000006e , 0x00000002 
- 00025604  0x0000491a call  0x00007fb9 
- 00025605  0x0000491b store  0x00000002 , 0x0000480e 
- 00025606  0x0000491c rtn 
- 00025607  0x0000491e fetch  0x00000002 , 0x0000480e 
- 00025608  0x0000491f arg  0x00000014 , 0x00000002 
- 00025609  0x00004920 call  0x00007fb9 
- 00025610  0x00004921 store  0x00000002 , 0x0000480e 
- 00025611  0x00004922 rtn 
- 00025612  0x00004925 fetch  0x00000001 , 0x00004813 
- 00025613  0x00004926 set1  0x00000000 , 0x0000003f 
- 00025614  0x00004927 store  0x00000001 , 0x00004813 
- 00025615  0x00004928 rtn 
- 00025616  0x0000492b fetch  0x00000001 , 0x00004813 
- 00025617  0x0000492c set0  0x00000000 , 0x0000003f 
- 00025618  0x0000492d store  0x00000001 , 0x00004813 
- 00025619  0x0000492e rtn 
- 00025620  0x00004931 fetch  0x00000001 , 0x00004813 
- 00025621  0x00004932 set1  0x00000007 , 0x0000003f 
- 00025622  0x00004933 store  0x00000001 , 0x00004813 
- 00025623  0x00004934 rtn 
- 00025624  0x00004937 fetch  0x00000001 , 0x00004813 
- 00025625  0x00004938 set0  0x00000007 , 0x0000003f 
- 00025626  0x00004939 store  0x00000001 , 0x00004813 
- 00025627  0x0000493a rtn 
- 00025628  0x0000493d set1  0x00000025 , 0x00000000 
- 00025629  0x0000493e bpatch  0x00000082 , 0x00004030 
- 00025630  0x0000493f call  0x00007f8e 
- 00025631  0x00004940 branch  0x00003f66 , 0x00000002 
- 00025632  0x00004941 branch  0x00003f68 
- 00025633  0x00004944 call  0x000063a9 
- 00025634  0x00004945 branch  0x00006428 , 0x00000001 
- 00025635  0x00004946 hfetcht  0x00000002 , 0x00008052 
- 00025636  0x00004947 fetch  0x00000002 , 0x000042ac 
- 00025637  0x00004948 isub  0x00000002 , 0x0000003e 
- 00025638  0x00004949 rtn  0x00000005 
- 00025639  0x0000494a branch  0x00006909 
- 00025640  0x0000494e hfetcht  0x00000002 , 0x00008052 
- 00025641  0x0000494f setarg  0x000001a0 
- 00025642  0x00004950 isub  0x00000002 , 0x0000003e 
- 00025643  0x00004951 rtn  0x00000005 
- 00025644  0x00004952 hstore  0x00000002 , 0x00008052 
- 00025645  0x00004953 rtn 
- 00025646  0x00004956 set1  0x00000025 , 0x00000000 
- 00025647  0x00004957 bpatch  0x00000083 , 0x00004030 
- 00025648  0x00004958 fetch  0x00000001 , 0x00004812 
- 00025649  0x00004959 isolate0  0x00000002 , 0x0000003f 
- 00025650  0x0000495a branch  0x00006436 , 0x00000001 
- 00025651  0x0000495b arg  0x00004814 , 0x00000011 
- 00025652  0x0000495c arg  0x00000006 , 0x00000039 
- 00025653  0x0000495d branch  0x00007f25 
- 00025654  0x0000495f force  0x00000000 , 0x0000003e 
- 00025655  0x00004960 rtn 
- 00025656  0x00004963 set1  0x00000025 , 0x00000000 
- 00025657  0x00004964 bpatch  0x00000084 , 0x00004030 
- 00025658  0x00004965 arg  0x0000481c , 0x00000005 
- 00025659  0x00004966 setsect  0x00000000 , 0x00035350 
- 00025660  0x00004967 setsect  0x00000001 , 0x00015115 
- 00025661  0x00004968 setsect  0x00000002 , 0x00012415 
- 00025662  0x00004969 setsect  0x00000003 , 0x00010951 
- 00025663  0x0000496a istore  0x00000009 , 0x00000005 
- 00025664  0x0000496b setsect  0x00000000 , 0x0002454c 
- 00025665  0x0000496c setsect  0x00000001 , 0x00035053 
- 00025666  0x0000496d setsect  0x00000002 , 0x00002454 
- 00025667  0x0000496e setsect  0x00000003 , 0x00011531 
- 00025668  0x0000496f istore  0x00000009 , 0x00000005 
- 00025669  0x00004970 setsect  0x00000000 , 0x00034441 
- 00025670  0x00004971 setsect  0x00000001 , 0x000194d4 
- 00025671  0x00004972 setsect  0x00000002 , 0x00012455 
- 00025672  0x00004973 setsect  0x00000003 , 0x00010d4d 
- 00025673  0x00004974 istore  0x00000009 , 0x00000005 
- 00025674  0x00004975 setsect  0x00000000 , 0x0003414c 
- 00025675  0x00004976 setsect  0x00000001 , 0x0000d4d4 
- 00025676  0x00004977 setsect  0x00000002 , 0x000124c4 
- 00025677  0x00004978 setsect  0x00000003 , 0x00013119 
- 00025678  0x00004979 istore  0x00000009 , 0x00000005 
- 00025679  0x0000497a setsect  0x00000000 , 0x00015247 
- 00025680  0x0000497b setsect  0x00000001 , 0x0003d0d1 
- 00025681  0x0000497c setsect  0x00000002 , 0x0000e4e4 
- 00025682  0x0000497d setsect  0x00000003 , 0x00011531 
- 00025683  0x0000497e istore  0x00000009 , 0x00000005 
- 00025684  0x0000497f setsect  0x00000000 , 0x00034944 
- 00025685  0x00004980 setsect  0x00000001 , 0x000114d4 
- 00025686  0x00004981 setsect  0x00000002 , 0x0000e535 
- 00025687  0x00004982 setsect  0x00000003 , 0x00015105 
- 00025688  0x00004983 istore  0x00000009 , 0x00000005 
- 00025689  0x00004984 setsect  0x00000000 , 0x00014c2b 
- 00025690  0x00004985 setsect  0x00000001 , 0x000114d2 
- 00025691  0x00004986 setsect  0x00000002 , 0x0000f525 
- 00025692  0x00004987 setsect  0x00000003 , 0x00011531 
- 00025693  0x00004988 istore  0x00000009 , 0x00000005 
- 00025694  0x00004989 setsect  0x00000000 , 0x00014e53 
- 00025695  0x0000498a setsect  0x00000001 , 0x00019192 
- 00025696  0x0000498b setsect  0x00000002 , 0x000044c4 
- 00025697  0x0000498c setsect  0x00000003 , 0x00015915 
- 00025698  0x0000498d istore  0x00000009 , 0x00000005 
- 00025699  0x0000498e setsect  0x00000000 , 0x00035352 
- 00025700  0x0000498f setsect  0x00000001 , 0x0000d254 
- 00025701  0x00004990 setsect  0x00000002 , 0x00005444 
- 00025702  0x00004991 setsect  0x00000003 , 0x00010959 
- 00025703  0x00004992 istore  0x00000009 , 0x00000005 
- 00025704  0x00004993 setsect  0x00000000 , 0x0001454c 
- 00025705  0x00004994 setsect  0x00000001 , 0x00005392 
- 00025706  0x00004995 setsect  0x00000002 , 0x00003525 
- 00025707  0x00004996 setsect  0x00000003 , 0x00013d35 
- 00025708  0x00004997 istore  0x00000009 , 0x00000005 
- 00025709  0x00004998 setsect  0x00000000 , 0x00014544 
- 00025710  0x00004999 setsect  0x00000001 , 0x000113d3 
- 00025711  0x0000499a setsect  0x00000002 , 0x00004454 
- 00025712  0x0000499b setsect  0x00000003 , 0x00014d35 
- 00025713  0x0000499c istore  0x00000009 , 0x00000005 
- 00025714  0x0000499d setsect  0x00000000 , 0x00004154 
- 00025715  0x0000499e setsect  0x00000001 , 0x00011155 
- 00025716  0x0000499f setsect  0x00000002 , 0x00013494 
- 00025717  0x000049a0 setsect  0x00000003 , 0x00013d0d 
- 00025718  0x000049a1 istore  0x00000009 , 0x00000005 
- 00025719  0x000049a2 setsect  0x00000000 , 0x00004f56 
- 00025720  0x000049a3 setsect  0x00000001 , 0x00031055 
- 00025721  0x000049a4 setsect  0x00000002 , 0x00003454 
- 00025722  0x000049a5 setsect  0x00000003 , 0x0001393d 
- 00025723  0x000049a6 istore  0x00000009 , 0x00000005 
- 00025724  0x000049a7 setsect  0x00000000 , 0x0001504e 
- 00025725  0x000049a8 setsect  0x00000001 , 0x000151d0 
- 00025726  0x000049a9 setsect  0x00000002 , 0x000154f4 
- 00025727  0x000049aa setsect  0x00000003 , 0x00014951 
- 00025728  0x000049ab istore  0x00000009 , 0x00000005 
- 00025729  0x000049ac setsect  0x00000000 , 0x00024345 
- 00025730  0x000049ad setsect  0x00000001 , 0x00025051 
- 00025731  0x000049ae setsect  0x00000002 , 0x000004c4 
- 00025732  0x000049af istore  0x00000006 , 0x00000005 
- 00025733  0x000049b0 rtn 
- 00025734  0x000049b5 setarg  0x000065d7 
- 00025735  0x000049b6 store  0x00000002 , 0x0000428c 
- 00025736  0x000049b7 setarg  0x0000652e 
- 00025737  0x000049b8 store  0x00000002 , 0x0000428e 
- 00025738  0x000049b9 setarg  0x000064e3 
- 00025739  0x000049ba store  0x00000002 , 0x0000428a 
- 00025740  0x000049bb setarg  0x000065f3 
- 00025741  0x000049bc store  0x00000002 , 0x00004292 
- 00025742  0x000049bd setarg  0x000064a9 
- 00025743  0x000049be store  0x00000002 , 0x00004290 
- 00025744  0x000049bf setarg  0x00006561 
- 00025745  0x000049c0 store  0x00000002 , 0x00004298 
- 00025746  0x000049c1 jam  0x00000000 , 0x000007dc 
- 00025747  0x000049c2 jam  0x00000000 , 0x000007dd 
- 00025748  0x000049c3 set0  0x00000025 , 0x00000000 
- 00025749  0x000049c4 bpatch  0x000000c0 , 0x00004018 
- 00025750  0x000049c5 call  0x000064c4 
- 00025751  0x000049c6 rtn  0x0000002b 
- 00025752  0x000049c7 call  0x0000649f 
- 00025753  0x000049c8 call  0x000064a7 
- 00025754  0x000049c9 setarg  0x000064e0 
- 00025755  0x000049ca store  0x00000002 , 0x00004288 
- 00025756  0x000049cb fetch  0x00000002 , 0x000047f4 
- 00025757  0x000049cc bbit1  0x0000000c , 0x00006697 
- 00025758  0x000049cd branch  0x00006693 
- 00025759  0x000049d0 call  0x00003f4d 
- 00025760  0x000049d1 branch  0x000064a4 , 0x00000005 
- 00025761  0x000049d2 call  0x00006963 
- 00025762  0x000049d3 call  0x000066ba 
- 00025763  0x000049d4 branch  0x00003f45 
- 00025764  0x000049d6 call  0x0000691d 
- 00025765  0x000049d7 call  0x00006967 
- 00025766  0x000049d8 branch  0x000066c0 
- 00025767  0x000049db jam  0x00000001 , 0x0000481c 
- 00025768  0x000049dc branch  0x000064bb 
- 00025769  0x000049df call  0x00007cd7 
- 00025770  0x000049e0 call  0x000064ac 
- 00025771  0x000049e1 branch  0x000064f6 
- 00025772  0x000049e4 fetcht  0x00000001 , 0x00004825 
- 00025773  0x000049e5 call  0x000069e5 
- 00025774  0x000049e6 nbranch  0x000064b3 , 0x00000001 
- 00025775  0x000049e8 fetch  0x00000001 , 0x0000481c 
- 00025776  0x000049e9 rtneq  0x00000000 
- 00025777  0x000049ea jam  0x00000000 , 0x0000481c 
- 00025778  0x000049eb rtn 
- 00025779  0x000049ed fetch  0x00000001 , 0x0000481c 
- 00025780  0x000049ee rtneq  0x00000001 
- 00025781  0x000049ef jam  0x00000001 , 0x0000481c 
- 00025782  0x000049f0 fetch  0x00000001 , 0x0000481b 
- 00025783  0x000049f1 increase  0x00000001 , 0x0000003f 
- 00025784  0x000049f2 and  0x0000003f , 0x00000003 , 0x0000003f 
- 00025785  0x000049f3 store  0x00000001 , 0x0000481b 
- 00025786  0x000049f4 branch  0x000064bb 
- 00025787  0x000049f6 setarg  0x00000006 
- 00025788  0x000049f7 call  0x000066d8 
- 00025789  0x000049f8 and  0x0000003f , 0x000000fc , 0x00000002 
- 00025790  0x000049f9 fetch  0x00000001 , 0x0000481b 
- 00025791  0x000049fa iadd  0x00000002 , 0x0000003f 
- 00025792  0x000049fb lshift8  0x0000003f , 0x0000003f 
- 00025793  0x000049fc add  0x0000003f , 0x00000006 , 0x0000003f 
- 00025794  0x000049fd call  0x000066d7 
- 00025795  0x000049fe branch  0x000066ba 
- 00025796  0x00004a01 call  0x000065c5 
- 00025797  0x00004a02 call  0x000064ca 
- 00025798  0x00004a03 hfetch  0x00000002 , 0x00008050 
- 00025799  0x00004a04 set0  0x0000000b , 0x0000003f 
- 00025800  0x00004a05 hstore  0x00000002 , 0x00008050 
- 00025801  0x00004a06 rtn 
- 00025802  0x00004a09 call  0x00003e0b 
- 00025803  0x00004a0a fetcht  0x00000001 , 0x00004827 
- 00025804  0x00004a0b call  0x000069d1 
- 00025805  0x00004a0c fetcht  0x00000001 , 0x00004828 
- 00025806  0x00004a0d call  0x000069d1 
- 00025807  0x00004a0e fetcht  0x00000001 , 0x00004822 
- 00025808  0x00004a0f call  0x000069d1 
- 00025809  0x00004a10 fetcht  0x00000001 , 0x00004823 
- 00025810  0x00004a11 call  0x000069d1 
- 00025811  0x00004a12 fetcht  0x00000001 , 0x00004824 
- 00025812  0x00004a13 call  0x000069d1 
- 00025813  0x00004a14 fetcht  0x00000001 , 0x00004826 
- 00025814  0x00004a15 call  0x000069d1 
- 00025815  0x00004a16 fetcht  0x00000001 , 0x00004825 
- 00025816  0x00004a17 call  0x000069d1 
- 00025817  0x00004a18 hfetch  0x00000001 , 0x0000807b 
- 00025818  0x00004a19 or_into  0x00000018 , 0x0000003f 
- 00025819  0x00004a1a hstore  0x00000001 , 0x0000807b 
- 00025820  0x00004a1b hfetch  0x00000001 , 0x0000807f 
- 00025821  0x00004a1c and_into  0x000000e7 , 0x0000003f 
- 00025822  0x00004a1d hstore  0x00000001 , 0x0000807f 
- 00025823  0x00004a1e rtn 
- 00025824  0x00004a22 setarg  0x0000bc05 
- 00025825  0x00004a23 call  0x000066d7 
- 00025826  0x00004a24 jam  0x00000001 , 0x000000a2 
- 00025827  0x00004a27 call  0x000064f6 
- 00025828  0x00004a28 arg  0x00000019 , 0x00000002 
- 00025829  0x00004a29 call  0x000069da 
- 00025830  0x00004a2a hjam  0x00000000 , 0x00008081 
- 00025831  0x00004a2b fetcht  0x00000001 , 0x00004827 
- 00025832  0x00004a2c call  0x000069b4 
- 00025833  0x00004a2d fetcht  0x00000001 , 0x00004828 
- 00025834  0x00004a2e call  0x000069b4 
- 00025835  0x00004a2f fetcht  0x00000001 , 0x00004822 
- 00025836  0x00004a30 call  0x000069b4 
- 00025837  0x00004a31 fetcht  0x00000001 , 0x00004823 
- 00025838  0x00004a32 call  0x000069b4 
- 00025839  0x00004a33 fetcht  0x00000001 , 0x00004824 
- 00025840  0x00004a34 call  0x000069b4 
- 00025841  0x00004a35 fetcht  0x00000001 , 0x00004826 
- 00025842  0x00004a36 call  0x000069b9 
- 00025843  0x00004a37 fetch  0x00000001 , 0x000000a2 
- 00025844  0x00004a38 nrtn  0x00000034 
- 00025845  0x00004a39 branch  0x000069c4 
- 00025846  0x00004a3c set0  0x00000025 , 0x00000000 
- 00025847  0x00004a3d bpatch  0x000000c1 , 0x00004018 
- 00025848  0x00004a3e arg  0x00000000 , 0x00000011 
- 00025849  0x00004a3f fetcht  0x00000001 , 0x00004827 
- 00025850  0x00004a40 call  0x000069e5 
- 00025851  0x00004a41 setflag  0x00000001 , 0x00000000 , 0x00000011 
- 00025852  0x00004a42 fetcht  0x00000001 , 0x00004828 
- 00025853  0x00004a43 call  0x000069e5 
- 00025854  0x00004a44 setflag  0x00000001 , 0x00000001 , 0x00000011 
- 00025855  0x00004a45 copy  0x00000011 , 0x0000003f 
- 00025856  0x00004a47 and_into  0x00000003 , 0x0000003f 
- 00025857  0x00004a48 fetcht  0x00000001 , 0x00004808 
- 00025858  0x00004a49 store  0x00000001 , 0x00004808 
- 00025859  0x00004a4a isub  0x00000002 , 0x0000003e 
- 00025860  0x00004a4b branch  0x00006514 , 0x00000005 
- 00025861  0x00004a4c fetch  0x00000001 , 0x00004807 
- 00025862  0x00004a4d store  0x00000001 , 0x00004806 
- 00025863  0x00004a4e storet  0x00000001 , 0x00004807 
- 00025864  0x00004a4f fetch  0x00000001 , 0x00004808 
- 00025865  0x00004a50 lshift4  0x0000003f , 0x0000003f 
- 00025866  0x00004a51 fetcht  0x00000001 , 0x00004807 
- 00025867  0x00004a52 lshift2  0x00000002 , 0x00000002 
- 00025868  0x00004a53 iadd  0x00000002 , 0x0000003f 
- 00025869  0x00004a54 fetcht  0x00000001 , 0x00004806 
- 00025870  0x00004a55 iadd  0x00000002 , 0x0000003f 
- 00025871  0x00004a56 beq  0x00000038 , 0x00006515 
- 00025872  0x00004a57 beq  0x00000034 , 0x00006519 
- 00025873  0x00004a58 beq  0x0000000b , 0x00006519 
- 00025874  0x00004a59 beq  0x00000007 , 0x00006515 
- 00025875  0x00004a5a rtn 
- 00025876  0x00004a5d rtn 
- 00025877  0x00004a60 fetch  0x00000001 , 0x00004809 
- 00025878  0x00004a61 increase  0x00000001 , 0x0000003f 
- 00025879  0x00004a62 store  0x00000001 , 0x00004809 
- 00025880  0x00004a63 rtn 
- 00025881  0x00004a66 fetch  0x00000001 , 0x00004809 
- 00025882  0x00004a67 increase  0xffffffff , 0x0000003f 
- 00025883  0x00004a68 store  0x00000001 , 0x00004809 
- 00025884  0x00004a69 rtn 
- 00025885  0x00004a6d rtn 
- 00025886  0x00004a6f setarg  0x0000b805 
- 00025887  0x00004a70 branch  0x000066d7 
- 00025888  0x00004a73 rtn 
- 00025889  0x00004a76 call  0x00003fa0 
- 00025890  0x00004a77 jam  0x00000002 , 0x00004820 
- 00025891  0x00004a78 call  0x00003fa4 
- 00025892  0x00004a7a branch  0x00003f92 
- 00025893  0x00004a7d fetch  0x00000002 , 0x0000481e 
- 00025894  0x00004a7e rtn  0x00000034 
- 00025895  0x00004a7f increase  0xffffffff , 0x0000003f 
- 00025896  0x00004a80 store  0x00000002 , 0x0000481e 
- 00025897  0x00004a81 nrtn  0x00000034 
- 00025898  0x00004a82 branch  0x00003f9a 
- 00025899  0x00004a85 setarg  0x00000002 
- 00025900  0x00004a86 store  0x00000001 , 0x000047f2 
- 00025901  0x00004a87 rtn 
- 00025902  0x00004a8a fetch  0x00000001 , 0x0000427f 
- 00025903  0x00004a8b rtn  0x00000034 
- 00025904  0x00004a8c call  0x0000527c 
- 00025905  0x00004a8d nrtn  0x00000034 
- 00025906  0x00004a8e call  0x00006578 
- 00025907  0x00004a8f nrtn  0x00000028 
- 00025908  0x00004a90 call  0x0000655e 
- 00025909  0x00004a91 call  0x0000655a 
- 00025910  0x00004a93 arg  0x00000008 , 0x00000011 
- 00025911  0x00004a94 call  0x00004b2c 
- 00025912  0x00004a95 fetch  0x00000002 , 0x000042b7 
- 00025913  0x00004a96 istore  0x00000002 , 0x00000005 
- 00025914  0x00004a97 setarg  0x000002a1 
- 00025915  0x00004a98 istore  0x00000002 , 0x00000005 
- 00025916  0x00004a99 fetch  0x00000001 , 0x00004805 
- 00025917  0x00004a9a istore  0x00000001 , 0x00000005 
- 00025918  0x00004a9b fetch  0x00000002 , 0x00004800 
- 00025919  0x00004a9c arg  0x00000fff , 0x00000002 
- 00025920  0x00004a9d iand  0x00000002 , 0x0000003f 
- 00025921  0x00004a9e fetcht  0x00000002 , 0x00004802 
- 00025922  0x00004a9f lshift4  0x00000002 , 0x00000002 
- 00025923  0x00004aa0 lshift8  0x00000002 , 0x00000002 
- 00025924  0x00004aa1 ior  0x00000002 , 0x0000003f 
- 00025925  0x00004aa2 istore  0x00000003 , 0x00000005 
- 00025926  0x00004aa3 fetch  0x00000001 , 0x00004804 
- 00025927  0x00004aa4 istore  0x00000001 , 0x00000005 
- 00025928  0x00004aa5 setarg  0x00000000 
- 00025929  0x00004aa6 istore  0x00000001 , 0x00000005 
- 00025930  0x00004aa7 jam  0x00000008 , 0x000008a8 
- 00025931  0x00004aa8 rtn 
- 00025932  0x00004aac set0  0x00000025 , 0x00000000 
- 00025933  0x00004aad bpatch  0x000000c2 , 0x00004018 
- 00025934  0x00004aae fetch  0x00000001 , 0x0000481a 
- 00025935  0x00004aaf rtn  0x00000034 
- 00025936  0x00004ab0 increase  0xffffffff , 0x0000003f 
- 00025937  0x00004ab1 store  0x00000001 , 0x0000481a 
- 00025938  0x00004ab2 nrtn  0x00000034 
- 00025939  0x00004ab3 call  0x0000527e 
- 00025940  0x00004ab4 nrtn  0x00000034 
- 00025941  0x00004ab5 setarg  0x00000000 
- 00025942  0x00004ab6 store  0x00000005 , 0x00004800 
- 00025943  0x00004ab7 call  0x00006536 
- 00025944  0x00004ab8 jam  0x00000050 , 0x0000481a 
- 00025945  0x00004ab9 rtn 
- 00025946  0x00004abb fetch  0x00000002 , 0x00004810 
- 00025947  0x00004abc store  0x00000002 , 0x00004818 
- 00025948  0x00004abd jam  0x00000050 , 0x0000481a 
- 00025949  0x00004abe rtn 
- 00025950  0x00004ac1 fetch  0x00000002 , 0x0000480e 
- 00025951  0x00004ac2 store  0x00000002 , 0x00004816 
- 00025952  0x00004ac3 rtn 
- 00025953  0x00004ac7 fetcht  0x00000002 , 0x000044c2 
- 00025954  0x00004ac8 call  0x00005a88 
- 00025955  0x00004ac9 ifetch  0x00000001 , 0x00000006 
- 00025956  0x00004aca store  0x00000001 , 0x0000041b 
- 00025957  0x00004acb rtn 
- 00025958  0x00004acf set0  0x00000025 , 0x00000000 
- 00025959  0x00004ad0 bpatch  0x000000c3 , 0x00004018 
- 00025960  0x00004ad1 fetcht  0x00000002 , 0x000044c2 
- 00025961  0x00004ad2 call  0x00005a88 
- 00025962  0x00004ad3 add  0x00000006 , 0x00000001 , 0x00000005 
- 00025963  0x00004ad5 fetch  0x00000001 , 0x00004805 
- 00025964  0x00004ad6 istore  0x00000001 , 0x00000005 
- 00025965  0x00004ad7 fetch  0x00000002 , 0x00004800 
- 00025966  0x00004ad8 arg  0x00000fff , 0x00000002 
- 00025967  0x00004ad9 iand  0x00000002 , 0x0000003f 
- 00025968  0x00004ada fetcht  0x00000002 , 0x00004802 
- 00025969  0x00004adb lshift4  0x00000002 , 0x00000002 
- 00025970  0x00004adc lshift8  0x00000002 , 0x00000002 
- 00025971  0x00004add ior  0x00000002 , 0x0000003f 
- 00025972  0x00004ade istore  0x00000003 , 0x00000005 
- 00025973  0x00004adf fetch  0x00000001 , 0x00004804 
- 00025974  0x00004ae0 istore  0x00000001 , 0x00000005 
- 00025975  0x00004ae1 rtn 
- 00025976  0x00004ae4 set0  0x00000025 , 0x00000000 
- 00025977  0x00004ae5 bpatch  0x000000c4 , 0x00004018 
- 00025978  0x00004ae6 disable  0x00000028 
- 00025979  0x00004ae7 setarg  0x00000000 
- 00025980  0x00004ae8 store  0x00000005 , 0x00004800 
- 00025981  0x00004ae9 call  0x00006581 
- 00025982  0x00004aea call  0x000065b4 
- 00025983  0x00004aeb call  0x0000659c 
- 00025984  0x00004aec branch  0x000065a2 
- 00025985  0x00004aef fetch  0x00000001 , 0x00004821 
- 00025986  0x00004af0 rtnne  0x00000002 
- 00025987  0x00004af1 fetch  0x00000001 , 0x0000480a 
- 00025988  0x00004af2 call  0x000065ba , 0x00000034 
- 00025989  0x00004af3 jam  0x00000001 , 0x0000480a 
- 00025990  0x00004af4 disable  0x00000028 
- 00025991  0x00004af5 fetcht  0x00000001 , 0x00004826 
- 00025992  0x00004af6 call  0x000069e5 
- 00025993  0x00004af7 nrtn  0x00000001 
- 00025994  0x00004af8 setarg  0x00000000 
- 00025995  0x00004af9 call  0x000066d8 
- 00025996  0x00004afa bne  0x00000030 , 0x000066c6 
- 00025997  0x00004afb setarg  0x00000002 
- 00025998  0x00004afc call  0x000066d8 
- 00025999  0x00004afd rtnbit0  0x00000007 
- 00026000  0x00004afe setarg  0x00000003 
- 00026001  0x00004aff call  0x000066d8 
- 00026002  0x00004b00 call  0x000065d3 
- 00026003  0x00004b01 store  0x00000002 , 0x00004800 
- 00026004  0x00004b02 setarg  0x00000004 
- 00026005  0x00004b03 call  0x000066d8 
- 00026006  0x00004b04 call  0x000065d3 
- 00026007  0x00004b05 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00026008  0x00004b06 store  0x00000002 , 0x00004802 
- 00026009  0x00004b07 fetch  0x00000004 , 0x00004800 
- 00026010  0x00004b08 enable  0x00000028 
- 00026011  0x00004b09 rtn 
- 00026012  0x00004b0b fetch  0x00000001 , 0x00004809 
- 00026013  0x00004b0c rtn  0x00000034 
- 00026014  0x00004b0d store  0x00000001 , 0x00004804 
- 00026015  0x00004b0e jam  0x00000000 , 0x00004809 
- 00026016  0x00004b0f enable  0x00000028 
- 00026017  0x00004b10 rtn 
- 00026018  0x00004b12 arg  0x00000000 , 0x00000011 
- 00026019  0x00004b13 fetcht  0x00000001 , 0x00004822 
- 00026020  0x00004b14 call  0x000069e5 
- 00026021  0x00004b15 setflag  0x00000001 , 0x00000000 , 0x00000011 
- 00026022  0x00004b16 fetcht  0x00000001 , 0x00004823 
- 00026023  0x00004b17 call  0x000069e5 
- 00026024  0x00004b18 setflag  0x00000001 , 0x00000001 , 0x00000011 
- 00026025  0x00004b19 fetcht  0x00000001 , 0x00004824 
- 00026026  0x00004b1a call  0x000069e5 
- 00026027  0x00004b1b setflag  0x00000001 , 0x00000002 , 0x00000011 
- 00026028  0x00004b1c deposit  0x00000011 
- 00026029  0x00004b1d fetcht  0x00000001 , 0x00004805 
- 00026030  0x00004b1e store  0x00000001 , 0x00004805 
- 00026031  0x00004b1f ixor  0x00000002 , 0x0000003f 
- 00026032  0x00004b20 sub  0x0000003f , 0x00000000 , 0x0000003e 
- 00026033  0x00004b21 rtn  0x00000005 
- 00026034  0x00004b22 enable  0x00000028 
- 00026035  0x00004b23 rtn 
- 00026036  0x00004b29 arg  0x0000001a , 0x00000002 
- 00026037  0x00004b2a call  0x000069e5 
- 00026038  0x00004b2b rtn  0x00000001 
- 00026039  0x00004b2c setarg  0x00000000 
- 00026040  0x00004b2d call  0x000066d8 
- 00026041  0x00004b2e branch  0x000065b4 
- 00026042  0x00004b31 arg  0x00000000 , 0x00000039 
- 00026043  0x00004b33 setarg  0x00000002 
- 00026044  0x00004b34 call  0x000066d8 
- 00026045  0x00004b35 nop  0x00000064 
- 00026046  0x00004b36 increase  0x00000001 , 0x00000039 
- 00026047  0x00004b37 fetcht  0x00000001 , 0x00004826 
- 00026048  0x00004b38 call  0x000069e5 
- 00026049  0x00004b39 branch  0x000065bb , 0x00000001 
- 00026050  0x00004b3a deposit  0x00000039 
- 00026051  0x00004b3b store  0x00000002 , 0x0000046b 
- 00026052  0x00004b3c rtn 
- 00026053  0x00004b3e call  0x0000678e 
- 00026054  0x00004b3f rtn  0x0000002b 
- 00026055  0x00004b42 setarg  0x00000000 
- 00026056  0x00004b43 call  0x000066d8 
- 00026057  0x00004b44 store  0x00000001 , 0x00000256 
- 00026058  0x00004b45 beq  0x00000030 , 0x000065ce 
- 00026059  0x00004b46 call  0x000066c6 
- 00026060  0x00004b47 nop  0x00002710 
- 00026061  0x00004b48 branch  0x000065c7 
- 00026062  0x00004b4a setarg  0x00008006 
- 00026063  0x00004b4b call  0x000066d7 
- 00026064  0x00004b4c nop  0x000003e8 
- 00026065  0x00004b4d jam  0x00000002 , 0x00004821 
- 00026066  0x00004b4e rtn 
- 00026067  0x00004b53 rtnbit0  0x00000007 
- 00026068  0x00004b54 arg  0x0000ff00 , 0x00000002 
- 00026069  0x00004b55 ior  0x00000002 , 0x0000003f 
- 00026070  0x00004b56 rtn 
- 00026071  0x00004b5b call  0x0000561e 
- 00026072  0x00004b5c nrtn  0x00000034 
- 00026073  0x00004b5d fetcht  0x00000002 , 0x000044c2 
- 00026074  0x00004b5e call  0x00005866 
- 00026075  0x00004b5f rtnbit0  0x00000000 
- 00026076  0x00004b60 fetch  0x00000001 , 0x000046f8 
- 00026077  0x00004b61 rtnbit0  0x00000000 
- 00026078  0x00004b62 call  0x00006578 
- 00026079  0x00004b64 nrtn  0x00000028 
- 00026080  0x00004b65 call  0x0000655e 
- 00026081  0x00004b67 jam  0x0000001b , 0x00000b7d 
- 00026082  0x00004b68 call  0x00005620 
- 00026083  0x00004b69 branch  0x00006566 
- 00026084  0x00004b6c rtn  0x00000028 
- 00026085  0x00004b6d fetch  0x00000001 , 0x0000481d 
- 00026086  0x00004b6e increase  0x00000001 , 0x0000003f 
- 00026087  0x00004b6f store  0x00000001 , 0x0000481d 
- 00026088  0x00004b70 arg  0x00000001 , 0x00000002 
- 00026089  0x00004b71 bbit0  0x00000007 , 0x000065eb 
- 00026090  0x00004b72 arg  0x0000ffff , 0x00000002 
- 00026091  0x00004b74 storet  0x00000005 , 0x00004800 
- 00026092  0x00004b75 enable  0x00000028 
- 00026093  0x00004b76 rtn 
- 00026094  0x00004b79 disable  0x00000028 
- 00026095  0x00004b7a fetch  0x00000001 , 0x00004820 
- 00026096  0x00004b7b rtneq  0x00000002 
- 00026097  0x00004b7c enable  0x00000028 
- 00026098  0x00004b7d rtn 
- 00026099  0x00004b80 copy  0x00000013 , 0x0000003f 
- 00026100  0x00004b81 beq  0x00000014 , 0x00006606 
- 00026101  0x00004b82 beq  0x00000001 , 0x000066a6 
- 00026102  0x00004b83 beq  0x00000015 , 0x00006617 
- 00026103  0x00004b84 beq  0x00000002 , 0x00006617 
- 00026104  0x00004b85 beq  0x00000005 , 0x00006616 
- 00026105  0x00004b86 beq  0x00000010 , 0x0000666a 
- 00026106  0x00004b87 beq  0x00000012 , 0x0000668a 
- 00026107  0x00004b88 beq  0x00000006 , 0x00006614 
- 00026108  0x00004b89 beq  0x00000028 , 0x00006521 
- 00026109  0x00004b8a beq  0x00000029 , 0x00006524 
- 00026110  0x00004b8b beq  0x00000004 , 0x00006611 
- 00026111  0x00004b8c beq  0x00000013 , 0x00006611 
- 00026112  0x00004b8d beq  0x0000000a , 0x0000660f 
- 00026113  0x00004b8e beq  0x0000002e , 0x00003f57 
- 00026114  0x00004b8f and  0x0000003f , 0x0000000f , 0x00000002 
- 00026115  0x00004b90 and_into  0x000000f0 , 0x0000003f 
- 00026116  0x00004b91 beq  0x00000050 , 0x00006634 
- 00026117  0x00004b92 rtn 
- 00026118  0x00004b95 fetch  0x00000002 , 0x000042a2 
- 00026119  0x00004b96 set0  0x00000000 , 0x0000003f 
- 00026120  0x00004b97 store  0x00000002 , 0x000042a2 
- 00026121  0x00004b98 setarg  0x00000000 
- 00026122  0x00004b99 store  0x00000002 , 0x00004814 
- 00026123  0x00004b9a fetch  0x00000001 , 0x00004829 
- 00026124  0x00004b9b increase  0x00000001 , 0x0000003f 
- 00026125  0x00004b9c store  0x00000001 , 0x00004829 
- 00026126  0x00004b9d branch  0x000066a6 
- 00026127  0x00004ba0 call  0x000062e9 
- 00026128  0x00004ba1 branch  0x00003f6a 
- 00026129  0x00004ba4 fetch  0x00000002 , 0x000047f4 
- 00026130  0x00004ba5 bbit1  0x0000000c , 0x00006697 
- 00026131  0x00004ba6 branch  0x00003f10 
- 00026132  0x00004baa call  0x0000652b 
- 00026133  0x00004bab rtn 
- 00026134  0x00004bad rtn 
- 00026135  0x00004bb0 set0  0x00000025 , 0x00000000 
- 00026136  0x00004bb1 bpatch  0x000000c5 , 0x00004018 
- 00026137  0x00004bb2 call  0x00006621 
- 00026138  0x00004bb3 fetch  0x00000002 , 0x000042a0 
- 00026139  0x00004bb4 bbit1  0x00000007 , 0x00006630 
- 00026140  0x00004bb5 bbit1  0x00000000 , 0x00003f12 
- 00026141  0x00004bb6 bbit1  0x00000001 , 0x0000662a 
- 00026142  0x00004bb7 bbit1  0x00000002 , 0x0000662d 
- 00026143  0x00004bb8 bbit1  0x00000003 , 0x0000662d 
- 00026144  0x00004bb9 branch  0x00006697 
- 00026145  0x00004bbb setarg  0x00000000 
- 00026146  0x00004bbc store  0x00000004 , 0x00004806 
- 00026147  0x00004bbd jam  0x00000000 , 0x0000481a 
- 00026148  0x00004bbe jam  0x00000000 , 0x0000480a 
- 00026149  0x00004bbf jam  0x00000000 , 0x0000427f 
- 00026150  0x00004bc0 jam  0x00000000 , 0x0000448b 
- 00026151  0x00004bc1 jam  0x00000000 , 0x00004820 
- 00026152  0x00004bc2 jam  0x00000000 , 0x0000480b 
- 00026153  0x00004bc3 rtn 
- 00026154  0x00004bc6 bbit1  0x00000005 , 0x0000662d 
- 00026155  0x00004bc7 bbit1  0x00000003 , 0x0000662d 
- 00026156  0x00004bc8 branch  0x00006697 
- 00026157  0x00004bca fetch  0x00000002 , 0x000047f4 
- 00026158  0x00004bcb bbit1  0x0000000c , 0x00006697 
- 00026159  0x00004bcc branch  0x00003f10 
- 00026160  0x00004bcf call  0x00005b30 
- 00026161  0x00004bd0 fetch  0x00000002 , 0x000042a0 
- 00026162  0x00004bd1 bbit1  0x00000000 , 0x00003f12 
- 00026163  0x00004bd2 branch  0x00003f10 
- 00026164  0x00004bd5 set0  0x00000025 , 0x00000000 
- 00026165  0x00004bd6 bpatch  0x000000c6 , 0x00004018 
- 00026166  0x00004bd7 storet  0x00000001 , 0x00000259 
- 00026167  0x00004bd9 fetch  0x00000001 , 0x00000259 
- 00026168  0x00004bda rtn  0x00000034 
- 00026169  0x00004bdb increase  0xffffffff , 0x0000003f 
- 00026170  0x00004bdc store  0x00000001 , 0x00000259 
- 00026171  0x00004bdf call  0x00006649 
- 00026172  0x00004be0 call  0x0000664f 
- 00026173  0x00004be1 call  0x00006656 
- 00026174  0x00004be2 call  0x00006664 
- 00026175  0x00004be4 fetch  0x00000001 , 0x00004820 
- 00026176  0x00004be5 compare  0x00000002 , 0x0000003f , 0x000000ff 
- 00026177  0x00004be6 call  0x00006648 , 0x00000001 
- 00026178  0x00004be7 fetch  0x00000001 , 0x00004820 
- 00026179  0x00004be8 compare  0x00000001 , 0x0000003f , 0x000000ff 
- 00026180  0x00004be9 call  0x00006646 , 0x00000001 
- 00026181  0x00004bea branch  0x00006637 
- 00026182  0x00004bee call  0x0000665d 
- 00026183  0x00004bef branch  0x0000654c 
- 00026184  0x00004bf3 rtn 
- 00026185  0x00004bf6 fetch  0x00000001 , 0x000047f2 
- 00026186  0x00004bf7 rtn  0x00000034 
- 00026187  0x00004bf8 increase  0xffffffff , 0x0000003f 
- 00026188  0x00004bf9 store  0x00000001 , 0x000047f2 
- 00026189  0x00004bfa nrtn  0x00000034 
- 00026190  0x00004bfb branch  0x0000668a 
- 00026191  0x00004bfe fetch  0x00000002 , 0x00004812 
- 00026192  0x00004bff rtn  0x00000034 
- 00026193  0x00004c00 increase  0xffffffff , 0x0000003f 
- 00026194  0x00004c01 store  0x00000002 , 0x00004812 
- 00026195  0x00004c02 nrtn  0x00000034 
- 00026196  0x00004c03 call  0x000066a6 
- 00026197  0x00004c04 branch  0x00003f9a 
- 00026198  0x00004c07 fetch  0x00000002 , 0x00004814 
- 00026199  0x00004c08 rtn  0x00000034 
- 00026200  0x00004c09 increase  0xffffffff , 0x0000003f 
- 00026201  0x00004c0a store  0x00000002 , 0x00004814 
- 00026202  0x00004c0b nrtn  0x00000034 
- 00026203  0x00004c0c call  0x00003f84 
- 00026204  0x00004c0d branch  0x00003f9a 
- 00026205  0x00004c10 fetch  0x00000002 , 0x00004818 
- 00026206  0x00004c11 rtn  0x00000034 
- 00026207  0x00004c12 increase  0xffffffff , 0x0000003f 
- 00026208  0x00004c13 store  0x00000002 , 0x00004818 
- 00026209  0x00004c14 nrtn  0x00000034 
- 00026210  0x00004c15 jam  0x00000000 , 0x0000481a 
- 00026211  0x00004c16 rtn 
- 00026212  0x00004c19 fetch  0x00000002 , 0x00004816 
- 00026213  0x00004c1a rtn  0x00000034 
- 00026214  0x00004c1b increase  0xffffffff , 0x0000003f 
- 00026215  0x00004c1c store  0x00000002 , 0x00004816 
- 00026216  0x00004c1d nrtn  0x00000034 
- 00026217  0x00004c1e branch  0x000066b1 
- 00026218  0x00004c21 set0  0x00000025 , 0x00000000 
- 00026219  0x00004c22 bpatch  0x000000c7 , 0x00004018 
- 00026220  0x00004c23 jam  0x00000000 , 0x0000481a 
- 00026221  0x00004c24 jam  0x00000001 , 0x0000480b 
- 00026222  0x00004c25 setarg  0x00000000 
- 00026223  0x00004c26 store  0x00000002 , 0x00004814 
- 00026224  0x00004c27 call  0x000066b1 
- 00026225  0x00004c28 fetch  0x00000001 , 0x00004132 
- 00026226  0x00004c29 isolate1  0x00000001 , 0x0000003f 
- 00026227  0x00004c2a call  0x00006688 , 0x00000001 
- 00026228  0x00004c2b fetch  0x00000001 , 0x00004132 
- 00026229  0x00004c2c isolate1  0x00000000 , 0x0000003f 
- 00026230  0x00004c2d call  0x00006684 , 0x00000001 
- 00026231  0x00004c2e call  0x00003fa6 
- 00026232  0x00004c2f branch  0x00006697 
- 00026233  0x00004c34 fetch  0x00000006 , 0x00004274 
- 00026234  0x00004c35 branch  0x00003f79 , 0x00000034 
- 00026235  0x00004c36 branch  0x00003f6e 
- 00026236  0x00004c39 fetch  0x00000006 , 0x00004274 
- 00026237  0x00004c3a branch  0x00006682 , 0x00000034 
- 00026238  0x00004c3b fetch  0x00000002 , 0x0000480c 
- 00026239  0x00004c3c store  0x00000002 , 0x00004814 
- 00026240  0x00004c3d call  0x00003fa4 
- 00026241  0x00004c3e branch  0x00003f82 
- 00026242  0x00004c40 call  0x00003f94 
- 00026243  0x00004c41 branch  0x00003f88 
- 00026244  0x00004c44 fetch  0x00000002 , 0x000047f4 
- 00026245  0x00004c45 isolate1  0x00000007 , 0x0000003f 
- 00026246  0x00004c46 call  0x00003f75 , 0x00000001 
- 00026247  0x00004c47 rtn 
- 00026248  0x00004c49 call  0x00005b30 
- 00026249  0x00004c4a rtn 
- 00026250  0x00004c4d jam  0x00000001 , 0x0000427f 
- 00026251  0x00004c4e call  0x00003fa4 
- 00026252  0x00004c4f call  0x00003fa2 
- 00026253  0x00004c50 jam  0x00000001 , 0x00004820 
- 00026254  0x00004c51 setarg  0x00000000 
- 00026255  0x00004c52 store  0x00000002 , 0x000047f0 
- 00026256  0x00004c53 store  0x00000001 , 0x000047f2 
- 00026257  0x00004c54 call  0x00003f9e 
- 00026258  0x00004c55 branch  0x0000655a 
- 00026259  0x00004c58 fetch  0x00000001 , 0x000042a9 
- 00026260  0x00004c59 beq  0x00000033 , 0x00006679 
- 00026261  0x00004c5a beq  0x00000034 , 0x0000667c 
- 00026262  0x00004c5b branch  0x00006697 
- 00026263  0x00004c5e set0  0x00000025 , 0x00000000 
- 00026264  0x00004c5f bpatch  0x000000c8 , 0x00004019 
- 00026265  0x00004c60 fetch  0x00000001 , 0x000044f9 
- 00026266  0x00004c61 increase  0x00000001 , 0x0000003f 
- 00026267  0x00004c62 store  0x00000001 , 0x000044f9 
- 00026268  0x00004c63 call  0x00003fa6 
- 00026269  0x00004c64 fetch  0x00000002 , 0x000047fe 
- 00026270  0x00004c65 store  0x00000002 , 0x00004812 
- 00026271  0x00004c66 fetch  0x00000001 , 0x00004132 
- 00026272  0x00004c67 isolate1  0x00000001 , 0x0000003f 
- 00026273  0x00004c68 call  0x00003f88 , 0x00000001 
- 00026274  0x00004c69 fetch  0x00000001 , 0x00004132 
- 00026275  0x00004c6a isolate1  0x00000000 , 0x0000003f 
- 00026276  0x00004c6b call  0x00003f7c , 0x00000001 
- 00026277  0x00004c6c branch  0x00003f94 
- 00026278  0x00004c6f set0  0x00000025 , 0x00000000 
- 00026279  0x00004c70 bpatch  0x000000c9 , 0x00004019 
- 00026280  0x00004c71 setarg  0x00000000 
- 00026281  0x00004c72 store  0x00000002 , 0x00004812 
- 00026282  0x00004c73 fetch  0x00000001 , 0x00004132 
- 00026283  0x00004c74 isolate1  0x00000001 , 0x0000003f 
- 00026284  0x00004c75 call  0x00003f86 , 0x00000001 
- 00026285  0x00004c76 fetch  0x00000001 , 0x00004132 
- 00026286  0x00004c77 isolate1  0x00000000 , 0x0000003f 
- 00026287  0x00004c78 call  0x00003f7e , 0x00000001 
- 00026288  0x00004c79 branch  0x00003f98 
- 00026289  0x00004c7c set0  0x00000025 , 0x00000000 
- 00026290  0x00004c7d bpatch  0x000000ca , 0x00004019 
- 00026291  0x00004c7e setarg  0x00000000 
- 00026292  0x00004c7f store  0x00000002 , 0x00004816 
- 00026293  0x00004c80 fetch  0x00000002 , 0x000047f4 
- 00026294  0x00004c81 bbit1  0x00000009 , 0x00003f90 
- 00026295  0x00004c82 fetch  0x00000002 , 0x000047f4 
- 00026296  0x00004c83 bbit1  0x00000000 , 0x00003f77 
- 00026297  0x00004c84 rtn 
- 00026298  0x00004c87 set0  0x00000025 , 0x00000000 
- 00026299  0x00004c88 bpatch  0x000000cb , 0x00004019 
- 00026300  0x00004c89 arg  0x00000001 , 0x00000002 
- 00026301  0x00004c8a arg  0x0000481b , 0x00000011 
- 00026302  0x00004c8b arg  0x000000c6 , 0x00000012 
- 00026303  0x00004c8c branch  0x0000683e 
- 00026304  0x00004c8f set0  0x00000025 , 0x00000000 
- 00026305  0x00004c90 bpatch  0x000000cc , 0x00004019 
- 00026306  0x00004c91 arg  0x00000001 , 0x00000002 
- 00026307  0x00004c92 arg  0x0000481b , 0x00000011 
- 00026308  0x00004c93 arg  0x000000c6 , 0x00000012 
- 00026309  0x00004c94 branch  0x0000681d 
- 00026310  0x00004c9d set0  0x00000025 , 0x00000000 
- 00026311  0x00004c9e bpatch  0x000000fe , 0x0000401f 
- 00026312  0x00004c9f hfetch  0x00000001 , 0x00008073 
- 00026313  0x00004ca0 arg  0x00000006 , 0x00000002 
- 00026314  0x00004ca1 ior  0x00000002 , 0x0000003f 
- 00026315  0x00004ca2 hstore  0x00000001 , 0x00008073 
- 00026316  0x00004ca3 hfetch  0x00000001 , 0x00008077 
- 00026317  0x00004ca4 ior  0x00000002 , 0x0000003f 
- 00026318  0x00004ca5 hstore  0x00000001 , 0x00008077 
- 00026319  0x00004ca6 hjam  0x00000000 , 0x00008081 
- 00026320  0x00004ca7 hfetch  0x00000001 , 0x00008077 
- 00026321  0x00004ca8 set0  0x00000001 , 0x0000003f 
- 00026322  0x00004ca9 set0  0x00000002 , 0x0000003f 
- 00026323  0x00004caa hstore  0x00000001 , 0x00008077 
- 00026324  0x00004cab nop  0x0000001e 
- 00026325  0x00004cac hjam  0x00000001 , 0x00008081 
- 00026326  0x00004cad rtn 
- 00026327  0x00004caf branch  0x000067a1 
- 00026328  0x00004cb2 branch  0x000067a9 
- 00026329  0x00004cba nbranch  0x000066dd , 0x00000028 
- 00026330  0x00004cbb hfetch  0x00000001 , 0x00008085 
- 00026331  0x00004cbc or_into  0x00000020 , 0x0000003f 
- 00026332  0x00004cbd hstore  0x00000001 , 0x00008085 
- 00026333  0x00004cbf copy  0x00000002 , 0x0000003e 
- 00026334  0x00004cc0 branch  0x000066e0 , 0x00000005 
- 00026335  0x00004cc1 copy  0x00000013 , 0x0000003d 
- 00026336  0x00004cc3 isolate0  0x00000000 , 0x0000003e 
- 00026337  0x00004cc4 branch  0x00006763 
- 00026338  0x00004cc8 force  0x00000004 , 0x00000002 
- 00026339  0x00004cca arg  0x0000022c , 0x00000011 
- 00026340  0x00004ccb hfetch  0x00000001 , 0x00008085 
- 00026341  0x00004ccc and_into  0x000000df , 0x0000003f 
- 00026342  0x00004ccd hstore  0x00000001 , 0x00008085 
- 00026343  0x00004cce call  0x000066dd 
- 00026344  0x00004ccf arg  0x000055aa , 0x00000011 
- 00026345  0x00004cd0 fetch  0x00000002 , 0x0000022c 
- 00026346  0x00004cd1 ifetcht  0x00000002 , 0x00000006 
- 00026347  0x00004cd2 isub  0x00000011 , 0x0000003e 
- 00026348  0x00004cd3 rtn 
- 00026349  0x00004cd6 arg  0x00000002 , 0x00000002 
- 00026350  0x00004cd7 arg  0x00000232 , 0x00000011 
- 00026351  0x00004cd8 call  0x000066dd 
- 00026352  0x00004cd9 fetch  0x00000002 , 0x00000232 
- 00026353  0x00004cda store  0x00000002 , 0x00000225 
- 00026354  0x00004cdb call  0x000066f4 , 0x00000028 
- 00026355  0x00004cdc rtn 
- 00026356  0x00004cdf arg  0x00000010 , 0x00000002 
- 00026357  0x00004ce0 arg  0x00000234 , 0x00000011 
- 00026358  0x00004ce1 hfetch  0x00000001 , 0x00008085 
- 00026359  0x00004ce2 and_into  0x000000df , 0x0000003f 
- 00026360  0x00004ce3 hstore  0x00000001 , 0x00008085 
- 00026361  0x00004ce4 call  0x000066dd 
- 00026362  0x00004ce5 arg  0x00000234 , 0x00000006 
- 00026363  0x00004ce6 arg  0x00000010 , 0x00000039 
- 00026364  0x00004ce7 call  0x00007584 
- 00026365  0x00004ce8 call  0x0000753d 
- 00026366  0x00004ce9 call  0x0000759d 
- 00026367  0x00004cea branch  0x00007534 
- 00026368  0x00004ced disable  0x0000002d 
- 00026369  0x00004cee call  0x000066e2 
- 00026370  0x00004cef nrtn  0x00000005 
- 00026371  0x00004cf0 enable  0x0000002d 
- 00026372  0x00004cf1 hjam  0x00000080 , 0x00008023 
- 00026373  0x00004cf2 hjam  0x00000000 , 0x00008022 
- 00026374  0x00004cf3 hjam  0x00000000 , 0x00008024 
- 00026375  0x00004cf4 arg  0x00008025 , 0x00000011 
- 00026376  0x00004cf5 call  0x000066d9 
- 00026377  0x00004cf6 hjam  0x00000000 , 0x00008023 
- 00026378  0x00004cf7 call  0x000066e2 
- 00026379  0x00004cf8 nrtn  0x00000005 
- 00026380  0x00004cf9 force  0x00000000 , 0x0000003f 
- 00026381  0x00004cfa hstore  0x00000002 , 0x00008288 
- 00026382  0x00004cfb arg  0x0000828a , 0x00000011 
- 00026383  0x00004cfc call  0x000066d9 
- 00026384  0x00004cfe arg  0x00000006 , 0x00000002 
- 00026385  0x00004cff call  0x000066e3 
- 00026386  0x00004d00 nrtn  0x00000005 
- 00026387  0x00004d01 ifetch  0x00000002 , 0x00000006 
- 00026388  0x00004d02 iforce  0x00000011 
- 00026389  0x00004d03 call  0x000066dd 
- 00026390  0x00004d04 branch  0x00006710 
- 00026391  0x00004d0b call  0x00007f36 
- 00026392  0x00004d0c setarg  0x00001000 
- 00026393  0x00004d0d store  0x00000002 , 0x00000225 
- 00026394  0x00004d0e arg  0x00006823 , 0x00000013 
- 00026395  0x00004d0f arg  0x00000002 , 0x00000039 
- 00026396  0x00004d11 call  0x000066e2 
- 00026397  0x00004d12 nrtn  0x00000005 
- 00026398  0x00004d13 fetch  0x00000002 , 0x00000225 
- 00026399  0x00004d14 byteswap  0x0000003f , 0x0000003f 
- 00026400  0x00004d15 iadd  0x00000002 , 0x0000003f 
- 00026401  0x00004d16 byteswap  0x0000003f , 0x0000003f 
- 00026402  0x00004d17 store  0x00000002 , 0x00000225 
- 00026403  0x00004d18 loop  0x0000671c 
- 00026404  0x00004d19 branch  0x00006710 
- 00026405  0x00004d1c hjam  0x00000025 , 0x00008050 
- 00026406  0x00004d1d hjam  0x00000005 , 0x00008280 
- 00026407  0x00004d1e call  0x00007f36 
- 00026408  0x00004d20 disable  0x00000028 
- 00026409  0x00004d21 call  0x0000688a 
- 00026410  0x00004d22 setarg  0x00000000 
- 00026411  0x00004d23 arg  0x00000221 , 0x00000011 
- 00026412  0x00004d24 arg  0x00000002 , 0x00000002 
- 00026413  0x00004d25 call  0x000068d3 
- 00026414  0x00004d26 fetch  0x00000002 , 0x00000221 
- 00026415  0x00004d27 bbit0  0x00000007 , 0x00006738 
- 00026416  0x00004d28 setarg  0x000007f0 
- 00026417  0x00004d29 arg  0x00000234 , 0x00000011 
- 00026418  0x00004d2a arg  0x00000010 , 0x00000002 
- 00026419  0x00004d2b call  0x000068d3 
- 00026420  0x00004d2c hjam  0x00000008 , 0x00008006 
- 00026421  0x00004d2d arg  0x00000234 , 0x00000006 
- 00026422  0x00004d2e call  0x00007590 
- 00026423  0x00004d2f enable  0x00000028 
- 00026424  0x00004d31 fetch  0x00000002 , 0x00000221 
- 00026425  0x00004d32 byteswap  0x0000003f , 0x0000003f 
- 00026426  0x00004d33 arg  0x000007ff , 0x00000002 
- 00026427  0x00004d34 iand  0x00000002 , 0x0000003f 
- 00026428  0x00004d35 branch  0x00006744 , 0x00000005 
- 00026429  0x00004d36 call  0x0000688f 
- 00026430  0x00004d37 arg  0x000068d8 , 0x00000013 
- 00026431  0x00004d38 call  0x000066f4 , 0x00000028 
- 00026432  0x00004d39 call  0x00006700 
- 00026433  0x00004d3a fetch  0x00000001 , 0x00000220 
- 00026434  0x00004d3b compare  0x00000003 , 0x0000003f , 0x00000003 
- 00026435  0x00004d3c nbranch  0x00006738 , 0x00000001 
- 00026436  0x00004d3e call  0x0000688d 
- 00026437  0x00004d3f fetch  0x00000001 , 0x00000221 
- 00026438  0x00004d40 bbit1  0x00000005 , 0x00006751 
- 00026439  0x00004d41 setarg  0x00000000 
- 00026440  0x00004d42 store  0x00000003 , 0x00000224 
- 00026441  0x00004d43 call  0x000067b9 
- 00026442  0x00004d44 arg  0x000067db , 0x00000013 
- 00026443  0x00004d45 call  0x000066ed 
- 00026444  0x00004d46 call  0x00006700 
- 00026445  0x00004d47 nbranch  0x00006751 , 0x0000002d 
- 00026446  0x00004d48 fetch  0x00000001 , 0x00000220 
- 00026447  0x00004d49 compare  0x00000003 , 0x0000003f , 0x00000003 
- 00026448  0x00004d4a nbranch  0x00006744 , 0x00000001 
- 00026449  0x00004d4c fetch  0x00000001 , 0x00000221 
- 00026450  0x00004d4d bbit1  0x00000006 , 0x0000675d 
- 00026451  0x00004d4e setarg  0x00000000 
- 00026452  0x00004d4f store  0x00000002 , 0x00000225 
- 00026453  0x00004d50 arg  0x00006823 , 0x00000013 
- 00026454  0x00004d51 call  0x00006805 
- 00026455  0x00004d52 call  0x000066ed 
- 00026456  0x00004d53 call  0x00006700 
- 00026457  0x00004d54 nbranch  0x0000675d , 0x0000002d 
- 00026458  0x00004d55 fetch  0x00000001 , 0x00000220 
- 00026459  0x00004d56 compare  0x00000003 , 0x0000003f , 0x00000003 
- 00026460  0x00004d57 nbranch  0x00006751 , 0x00000001 
- 00026461  0x00004d59 hjam  0x00000021 , 0x00008050 
- 00026462  0x00004d5a fetch  0x00000001 , 0x00000221 
- 00026463  0x00004d5b rtnbit0  0x00000004 
- 00026464  0x00004d5c call  0x00004461 
- 00026465  0x00004d5e call  0x000044a3 
- 00026466  0x00004d5f branch  0x00006761 
- 00026467  0x00004d63 fetch  0x00000001 , 0x00000220 
- 00026468  0x00004d64 lshift  0x0000003f , 0x0000003f 
- 00026469  0x00004d65 setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00026470  0x00004d66 isolate0  0x0000000f , 0x00000011 
- 00026471  0x00004d67 rtn  0x00000001 
- 00026472  0x00004d68 store  0x00000001 , 0x00000220 
- 00026473  0x00004d69 rtn 
- 00026474  0x00004d6d hfetch  0x00000001 , 0x00008085 
- 00026475  0x00004d6e rtnbit0  0x00000005 
- 00026476  0x00004d6f branch  0x00006770 
- 00026477  0x00004d71 hfetch  0x00000001 , 0x0000812c 
- 00026478  0x00004d72 qisolate1  0x0000003f 
- 00026479  0x00004d73 rtn  0x00000001 
- 00026480  0x00004d75 hfetch  0x00000001 , 0x00008108 
- 00026481  0x00004d76 bbit0  0x00000001 , 0x0000676d 
- 00026482  0x00004d77 call  0x00007534 
- 00026483  0x00004d78 branch  0x0000676d 
- 00026484  0x00004d7d copy  0x00000039 , 0x00000002 
- 00026485  0x00004d7e storet  0x00000002 , 0x0000423c 
- 00026486  0x00004d7f hjam  0x00000080 , 0x00008023 
- 00026487  0x00004d80 hjam  0x00000000 , 0x00008022 
- 00026488  0x00004d81 hjam  0x00000000 , 0x00008024 
- 00026489  0x00004d82 store  0x00000002 , 0x0000423a 
- 00026490  0x00004d83 iforce  0x00000005 
- 00026491  0x00004d84 lshift2  0x00000039 , 0x00000039 
- 00026492  0x00004d86 hfetch  0x00000001 , 0x00008025 
- 00026493  0x00004d87 istore  0x00000001 , 0x00000005 
- 00026494  0x00004d88 loop  0x0000677c 
- 00026495  0x00004d89 hjam  0x00000000 , 0x00008023 
- 00026496  0x00004d8a rtn 
- 00026497  0x00004d8d fetch  0x00000002 , 0x0000423a 
- 00026498  0x00004d8e rtn  0x00000034 
- 00026499  0x00004d8f hjam  0x00000080 , 0x00008023 
- 00026500  0x00004d90 hjam  0x00000000 , 0x00008022 
- 00026501  0x00004d91 hjam  0x00000000 , 0x00008024 
- 00026502  0x00004d92 fetcht  0x00000002 , 0x0000423c 
- 00026503  0x00004d93 lshift2  0x00000002 , 0x00000039 
- 00026504  0x00004d94 iforce  0x00000006 
- 00026505  0x00004d96 ifetch  0x00000001 , 0x00000006 
- 00026506  0x00004d97 hstore  0x00000001 , 0x00008025 
- 00026507  0x00004d98 loop  0x00006789 
- 00026508  0x00004d99 hjam  0x00000000 , 0x00008023 
- 00026509  0x00004d9a rtn 
- 00026510  0x00004da0 set0  0x00000025 , 0x00000000 
- 00026511  0x00004da1 bpatch  0x000000ff , 0x0000401f 
- 00026512  0x00004da2 hjam  0x00000075 , 0x00008086 
- 00026513  0x00004da3 hjam  0x0000000a , 0x00008087 
- 00026514  0x00004da4 setarg  0x00000223 
- 00026515  0x00004da5 hstore  0x00000002 , 0x0000808a 
- 00026516  0x00004da6 setarg  0x00000228 
- 00026517  0x00004da7 hstore  0x00000002 , 0x0000808c 
- 00026518  0x00004da8 hfetch  0x00000001 , 0x00008081 
- 00026519  0x00004da9 set1  0x00000000 , 0x0000003f 
- 00026520  0x00004daa set0  0x00000001 , 0x0000003f 
- 00026521  0x00004dab hstore  0x00000001 , 0x00008081 
- 00026522  0x00004dac rtn 
- 00026523  0x00004daf hfetch  0x00000001 , 0x00008086 
- 00026524  0x00004db0 set1  0x00000007 , 0x0000003f 
- 00026525  0x00004db1 hstore  0x00000001 , 0x00008086 
- 00026526  0x00004db2 set0  0x00000007 , 0x0000003f 
- 00026527  0x00004db3 hstore  0x00000001 , 0x00008086 
- 00026528  0x00004db4 rtn 
- 00026529  0x00004db9 set1  0x00000007 , 0x0000003f 
- 00026530  0x00004dba store  0x00000002 , 0x00000223 
- 00026531  0x00004dbb set1  0x00000025 , 0x00000000 
- 00026532  0x00004dbc bpatch  0x00000000 , 0x00004020 
- 00026533  0x00004dbd hjam  0x00000002 , 0x00008088 
- 00026534  0x00004dbe hjam  0x00000000 , 0x0000808e 
- 00026535  0x00004dbf hjam  0x00000002 , 0x00008006 
- 00026536  0x00004dc0 branch  0x000067b3 
- 00026537  0x00004dc4 force  0x00000001 , 0x00000002 
- 00026538  0x00004dc8 store  0x00000001 , 0x00000223 
- 00026539  0x00004dc9 set1  0x00000025 , 0x00000000 
- 00026540  0x00004dca bpatch  0x00000001 , 0x00004020 
- 00026541  0x00004dcb hjam  0x00000001 , 0x00008088 
- 00026542  0x00004dcc hstoret  0x00000002 , 0x0000808e 
- 00026543  0x00004dcd hjam  0x00000002 , 0x00008006 
- 00026544  0x00004dce call  0x000067b3 
- 00026545  0x00004dcf fetch  0x00000001 , 0x00000228 
- 00026546  0x00004dd0 rtn 
- 00026547  0x00004dd3 fetch  0x00000002 , 0x00004177 
- 00026548  0x00004dd4 increase  0x00000001 , 0x0000003f 
- 00026549  0x00004dd5 store  0x00000002 , 0x00004177 
- 00026550  0x00004dd6 hfetch  0x00000001 , 0x0000812c 
- 00026551  0x00004dd7 bbit0  0x00000003 , 0x000067b3 
- 00026552  0x00004dd8 rtn 
- 00026553  0x00004ddb hjam  0x00000040 , 0x00008086 
- 00026554  0x00004ddc hjam  0x00000000 , 0x00008087 
- 00026555  0x00004ddd hfetch  0x00000001 , 0x00008081 
- 00026556  0x00004dde set0  0x00000000 , 0x0000003f 
- 00026557  0x00004ddf set1  0x00000001 , 0x0000003f 
- 00026558  0x00004de0 hstore  0x00000001 , 0x00008081 
- 00026559  0x00004de1 setarg  0x00000000 
- 00026560  0x00004de2 store  0x00000004 , 0x00000223 
- 00026561  0x00004de3 rtn 
- 00026562  0x00004de6 setarg  0x00000000 
- 00026563  0x00004de7 hstore  0x00000002 , 0x0000808e 
- 00026564  0x00004de8 setarg  0x00000001 
- 00026565  0x00004de9 hstore  0x00000001 , 0x00008088 
- 00026566  0x00004dea setarg  0x00000223 
- 00026567  0x00004deb hstore  0x00000002 , 0x0000808a 
- 00026568  0x00004dec jam  0x00000006 , 0x00000223 
- 00026569  0x00004ded hjam  0x00000002 , 0x00008006 
- 00026570  0x00004dee branch  0x000067b3 
- 00026571  0x00004df3 increase  0x00000004 , 0x00000002 
- 00026572  0x00004df4 hstoret  0x00000002 , 0x00008088 
- 00026573  0x00004df5 increase  0xfffffffc , 0x00000011 
- 00026574  0x00004df6 arg  0x00000002 , 0x00000002 
- 00026575  0x00004df7 istoret  0x00000001 , 0x00000011 
- 00026576  0x00004df8 rshift16  0x0000003f , 0x00000002 
- 00026577  0x00004df9 istoret  0x00000001 , 0x00000005 
- 00026578  0x00004dfa rshift8  0x0000003f , 0x00000002 
- 00026579  0x00004dfb istoret  0x00000001 , 0x00000005 
- 00026580  0x00004dfc istore  0x00000001 , 0x00000005 
- 00026581  0x00004dfd deposit  0x00000011 
- 00026582  0x00004dfe hstore  0x00000002 , 0x0000808a 
- 00026583  0x00004dff setarg  0x00000000 
- 00026584  0x00004e00 hstore  0x00000002 , 0x0000808e 
- 00026585  0x00004e01 hjam  0x00000002 , 0x00008006 
- 00026586  0x00004e02 branch  0x000067b3 
- 00026587  0x00004e07 hstoret  0x00000002 , 0x0000808e 
- 00026588  0x00004e08 setarg  0x00000004 
- 00026589  0x00004e09 hstore  0x00000002 , 0x00008088 
- 00026590  0x00004e0a jam  0x00000003 , 0x00000223 
- 00026591  0x00004e0b setarg  0x00000223 
- 00026592  0x00004e0c hstore  0x00000002 , 0x0000808a 
- 00026593  0x00004e0d deposit  0x00000011 
- 00026594  0x00004e0e hstore  0x00000002 , 0x0000808c 
- 00026595  0x00004e0f hfetch  0x00000001 , 0x00008086 
- 00026596  0x00004e10 isolate0  0x0000000f , 0x00000011 
- 00026597  0x00004e11 setflag  0x00000001 , 0x00000006 , 0x0000003f 
- 00026598  0x00004e12 hstore  0x00000001 , 0x00008086 
- 00026599  0x00004e13 hjam  0x00000002 , 0x00008006 
- 00026600  0x00004e15 hfetch  0x00000001 , 0x0000812c 
- 00026601  0x00004e16 bbit1  0x00000007 , 0x000067e8 
- 00026602  0x00004e17 arg  0x00000003 , 0x00000007 
- 00026603  0x00004e18 call  0x0000676a 
- 00026604  0x00004e19 call  0x000067b3 
- 00026605  0x00004e1a isolate1  0x00000002 , 0x0000003f 
- 00026606  0x00004e1b call  0x00006763 
- 00026607  0x00004e1c fetch  0x00000001 , 0x00000224 
- 00026608  0x00004e1d lshift16  0x0000003f , 0x00000012 
- 00026609  0x00004e1e fetch  0x00000001 , 0x00000225 
- 00026610  0x00004e1f lshift8  0x0000003f , 0x0000003f 
- 00026611  0x00004e20 ior  0x00000012 , 0x00000012 
- 00026612  0x00004e21 fetch  0x00000001 , 0x00000226 
- 00026613  0x00004e22 ior  0x00000012 , 0x0000003f 
- 00026614  0x00004e23 iadd  0x00000002 , 0x0000003f 
- 00026615  0x00004e24 store  0x00000001 , 0x00000226 
- 00026616  0x00004e25 rshift8  0x0000003f , 0x0000003f 
- 00026617  0x00004e26 store  0x00000001 , 0x00000225 
- 00026618  0x00004e27 rshift8  0x0000003f , 0x0000003f 
- 00026619  0x00004e28 store  0x00000001 , 0x00000224 
- 00026620  0x00004e29 rtn 
- 00026621  0x00004e2e hjam  0x0000000a , 0x00008042 
- 00026622  0x00004e2f hjam  0x00000002 , 0x00008091 
- 00026623  0x00004e30 hjam  0x00000003 , 0x00008092 
- 00026624  0x00004e31 hjam  0x00000003 , 0x00008093 
- 00026625  0x00004e32 hjam  0x00000003 , 0x00008094 
- 00026626  0x00004e33 hjam  0x00000003 , 0x00008095 
- 00026627  0x00004e34 hjam  0x00000002 , 0x00008096 
- 00026628  0x00004e35 rtn 
- 00026629  0x00004e38 hjam  0x00000005 , 0x00008091 
- 00026630  0x00004e39 hjam  0x00000007 , 0x00008092 
- 00026631  0x00004e3a hjam  0x00000007 , 0x00008093 
- 00026632  0x00004e3b hjam  0x00000007 , 0x00008094 
- 00026633  0x00004e3c hjam  0x00000007 , 0x00008095 
- 00026634  0x00004e3d hjam  0x00000005 , 0x00008096 
- 00026635  0x00004e3e rtn 
- 00026636  0x00004e43 hfetch  0x00000001 , 0x0000812c 
- 00026637  0x00004e44 bbit0  0x00000005 , 0x0000680c 
- 00026638  0x00004e45 rtn 
- 00026639  0x00004e49 store  0x00000001 , 0x00000224 
- 00026640  0x00004e4a setarg  0x00000224 
- 00026641  0x00004e4b hstore  0x00000002 , 0x0000809a 
- 00026642  0x00004e4c setarg  0x00000001 
- 00026643  0x00004e4d hstore  0x00000002 , 0x00008098 
- 00026644  0x00004e4e hstoret  0x00000002 , 0x0000809e 
- 00026645  0x00004e4f deposit  0x00000011 
- 00026646  0x00004e50 hstore  0x00000002 , 0x0000809c 
- 00026647  0x00004e51 hjam  0x00000001 , 0x00008090 
- 00026648  0x00004e52 hjam  0x00000004 , 0x00008006 
- 00026649  0x00004e53 branch  0x0000680c 
- 00026650  0x00004e56 byteswap  0x0000003f , 0x0000003f 
- 00026651  0x00004e57 store  0x00000002 , 0x00000225 
- 00026652  0x00004e58 rtn 
- 00026653  0x00004e5f set1  0x00000025 , 0x00000000 
- 00026654  0x00004e60 bpatch  0x00000002 , 0x00004020 
- 00026655  0x00004e61 fetch  0x00000002 , 0x0000429b 
- 00026656  0x00004e62 iadd  0x00000012 , 0x0000003f 
- 00026657  0x00004e66 byteswap  0x0000003f , 0x0000003f 
- 00026658  0x00004e67 store  0x00000002 , 0x00000225 
- 00026659  0x00004e6b set1  0x00000025 , 0x00000000 
- 00026660  0x00004e6c bpatch  0x00000003 , 0x00004020 
- 00026661  0x00004e6d setarg  0x00000004 
- 00026662  0x00004e6e hstore  0x00000002 , 0x00008098 
- 00026663  0x00004e6f jam  0x000000a0 , 0x00000224 
- 00026664  0x00004e70 jam  0x000000a1 , 0x00000227 
- 00026665  0x00004e71 setarg  0x00000224 
- 00026666  0x00004e72 hstore  0x00000002 , 0x0000809a 
- 00026667  0x00004e73 hstoret  0x00000002 , 0x0000809e 
- 00026668  0x00004e74 deposit  0x00000011 
- 00026669  0x00004e75 hstore  0x00000002 , 0x0000809c 
- 00026670  0x00004e76 setarg  0x00000002 
- 00026671  0x00004e77 isolate0  0x0000000f , 0x00000011 
- 00026672  0x00004e78 setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00026673  0x00004e79 hstore  0x00000001 , 0x00008090 
- 00026674  0x00004e7a hjam  0x00000004 , 0x00008006 
- 00026675  0x00004e7b arg  0x00000005 , 0x00000007 
- 00026676  0x00004e7c call  0x0000676a 
- 00026677  0x00004e7d call  0x0000680c 
- 00026678  0x00004e7e isolate1  0x00000004 , 0x0000003f 
- 00026679  0x00004e7f call  0x00006763 
- 00026680  0x00004e80 fetch  0x00000002 , 0x00000225 
- 00026681  0x00004e81 byteswap  0x0000003f , 0x0000003f 
- 00026682  0x00004e82 iadd  0x00000002 , 0x0000003f 
- 00026683  0x00004e83 byteswap  0x0000003f , 0x0000003f 
- 00026684  0x00004e84 store  0x00000002 , 0x00000225 
- 00026685  0x00004e85 rtn 
- 00026686  0x00004e8c set1  0x00000025 , 0x00000000 
- 00026687  0x00004e8d bpatch  0x00000004 , 0x00004020 
- 00026688  0x00004e8e fetch  0x00000002 , 0x0000429b 
- 00026689  0x00004e8f iadd  0x00000012 , 0x0000003f 
- 00026690  0x00004e93 store  0x00000002 , 0x00000161 
- 00026691  0x00004e94 set1  0x00000025 , 0x00000000 
- 00026692  0x00004e95 bpatch  0x00000005 , 0x00004020 
- 00026693  0x00004e96 storet  0x00000002 , 0x000002a0 
- 00026694  0x00004e97 copy  0x00000011 , 0x0000003f 
- 00026695  0x00004e98 store  0x00000002 , 0x000002b7 
- 00026696  0x00004e9a call  0x00006858 
- 00026697  0x00004e9c fetcht  0x00000002 , 0x000002b0 
- 00026698  0x00004e9d fetch  0x00000002 , 0x000002b7 
- 00026699  0x00004e9e copy  0x0000003f , 0x00000011 
- 00026700  0x00004e9f fetch  0x00000002 , 0x00000161 
- 00026701  0x00004ea1 call  0x00006870 
- 00026702  0x00004ea3 fetch  0x00000002 , 0x000002b0 
- 00026703  0x00004ea4 fetcht  0x00000002 , 0x000002b7 
- 00026704  0x00004ea5 iadd  0x00000002 , 0x00000002 
- 00026705  0x00004ea6 storet  0x00000002 , 0x000002b7 
- 00026706  0x00004ea7 fetcht  0x00000002 , 0x00000161 
- 00026707  0x00004ea8 iadd  0x00000002 , 0x00000002 
- 00026708  0x00004ea9 storet  0x00000002 , 0x00000161 
- 00026709  0x00004eaa fetch  0x00000002 , 0x000002a0 
- 00026710  0x00004eab nbranch  0x00006848 , 0x00000034 
- 00026711  0x00004eac rtn 
- 00026712  0x00004eb5 set1  0x00000025 , 0x00000000 
- 00026713  0x00004eb6 bpatch  0x00000006 , 0x00004020 
- 00026714  0x00004eb7 fetch  0x00000002 , 0x000042aa 
- 00026715  0x00004eb8 increase  0xffffffff , 0x0000003f 
- 00026716  0x00004eb9 fetcht  0x00000002 , 0x00000161 
- 00026717  0x00004eba ior  0x00000002 , 0x0000003f 
- 00026718  0x00004ebb increase  0x00000001 , 0x0000003f 
- 00026719  0x00004ebc store  0x00000003 , 0x000002b4 
- 00026720  0x00004ebe fetch  0x00000002 , 0x000002a0 
- 00026721  0x00004ebf iadd  0x00000002 , 0x0000003f 
- 00026722  0x00004ec1 fetcht  0x00000003 , 0x000002b4 
- 00026723  0x00004ec2 isub  0x00000002 , 0x0000003f 
- 00026724  0x00004ec3 nbranch  0x0000686b , 0x00000002 
- 00026725  0x00004ec4 store  0x00000002 , 0x000002a0 
- 00026726  0x00004ec5 fetch  0x00000003 , 0x000002b4 
- 00026727  0x00004ec6 fetcht  0x00000002 , 0x00000161 
- 00026728  0x00004ec7 isub  0x00000002 , 0x0000003f 
- 00026729  0x00004ec8 store  0x00000002 , 0x000002b0 
- 00026730  0x00004ec9 rtn 
- 00026731  0x00004ecb fetch  0x00000002 , 0x000002a0 
- 00026732  0x00004ecc store  0x00000002 , 0x000002b0 
- 00026733  0x00004ecd setarg  0x00000000 
- 00026734  0x00004ece store  0x00000002 , 0x000002a0 
- 00026735  0x00004ecf rtn 
- 00026736  0x00004ed5 copy  0x0000003f , 0x00000012 
- 00026737  0x00004ed6 set1  0x00000025 , 0x00000000 
- 00026738  0x00004ed7 bpatch  0x00000007 , 0x00004020 
- 00026739  0x00004ed8 copy  0x00000012 , 0x0000003f 
- 00026740  0x00004ed9 increase  0x00000003 , 0x00000002 
- 00026741  0x00004eda hstoret  0x00000002 , 0x00008098 
- 00026742  0x00004edb increase  0xfffffffd , 0x00000011 
- 00026743  0x00004edc ifetcht  0x00000003 , 0x00000011 
- 00026744  0x00004edd copy  0x00000002 , 0x00000012 
- 00026745  0x00004ede arg  0x000000a0 , 0x00000002 
- 00026746  0x00004edf istoret  0x00000001 , 0x00000011 
- 00026747  0x00004ee0 byteswap  0x0000003f , 0x0000003f 
- 00026748  0x00004ee1 istore  0x00000002 , 0x00000005 
- 00026749  0x00004ee2 deposit  0x00000011 
- 00026750  0x00004ee3 hstore  0x00000002 , 0x0000809a 
- 00026751  0x00004ee4 setarg  0x00000000 
- 00026752  0x00004ee5 hstore  0x00000002 , 0x0000809e 
- 00026753  0x00004ee6 hjam  0x00000001 , 0x00008090 
- 00026754  0x00004ee7 hjam  0x00000004 , 0x00008006 
- 00026755  0x00004ee8 call  0x0000680c 
- 00026756  0x00004ee9 copy  0x00000012 , 0x0000003f 
- 00026757  0x00004eea istore  0x00000003 , 0x00000011 
- 00026758  0x00004eeb nop  0x00002710 
- 00026759  0x00004eec nop  0x00002710 
- 00026760  0x00004eed nop  0x00002710 
- 00026761  0x00004eee rtn 
- 00026762  0x00004ef3 hjam  0x00000070 , 0x00008973 
- 00026763  0x00004ef4 nop  0x00000bb8 
- 00026764  0x00004ef5 rtn 
- 00026765  0x00004ef8 hjam  0x00000030 , 0x00008973 
- 00026766  0x00004ef9 rtn 
- 00026767  0x00004efc lshift3  0x0000003f , 0x0000003f 
- 00026768  0x00004efd hstore  0x00000002 , 0x00008045 
- 00026769  0x00004efe hjam  0x00000000 , 0x0000804b 
- 00026770  0x00004eff rtn 
- 00026771  0x00004f03 call  0x0000688f 
- 00026772  0x00004f04 call  0x000068c0 
- 00026773  0x00004f06 ifetcht  0x00000001 , 0x00000011 
- 00026774  0x00004f07 increase  0x00000001 , 0x00000011 
- 00026775  0x00004f08 force  0x00000000 , 0x00000007 
- 00026776  0x00004f0a qisolate0  0x00000002 
- 00026777  0x00004f0b branch  0x000068b7 , 0x00000001 
- 00026778  0x00004f0c hfetch  0x00000001 , 0x00008046 
- 00026779  0x00004f0d set1  0x00000006 , 0x0000003f 
- 00026780  0x00004f0e set1  0x00000007 , 0x0000003f 
- 00026781  0x00004f0f hstore  0x00000001 , 0x00008046 
- 00026782  0x00004f10 hjam  0x00000002 , 0x00008047 
- 00026783  0x00004f11 hjam  0x00000082 , 0x00008047 
- 00026784  0x00004f12 set0  0x00000007 , 0x0000003f 
- 00026785  0x00004f13 hstore  0x00000001 , 0x00008046 
- 00026786  0x00004f14 hjam  0x0000008a , 0x00008047 
- 00026787  0x00004f15 nop  0x0000000b 
- 00026788  0x00004f16 hjam  0x000000ca , 0x00008047 
- 00026789  0x00004f17 nop  0x00000021 
- 00026790  0x00004f18 hjam  0x0000004a , 0x00008047 
- 00026791  0x00004f19 nop  0x0000002c 
- 00026792  0x00004f1a hjam  0x000000ca , 0x00008047 
- 00026793  0x00004f1b nop  0x00000016 
- 00026794  0x00004f1c hjam  0x0000008a , 0x00008047 
- 00026795  0x00004f1d nop  0x00000021 
- 00026796  0x00004f1e hjam  0x00000082 , 0x00008047 
- 00026797  0x00004f1f nop  0x00000001 
- 00026798  0x00004f20 hjam  0x00000092 , 0x00008047 
- 00026799  0x00004f21 nop  0x0000000a 
- 00026800  0x00004f22 hjam  0x000000b2 , 0x00008047 
- 00026801  0x00004f23 hfetch  0x00000001 , 0x00008007 
- 00026802  0x00004f24 hjam  0x00000092 , 0x00008047 
- 00026803  0x00004f25 nop  0x00000001 
- 00026804  0x00004f26 hjam  0x00000082 , 0x00008047 
- 00026805  0x00004f27 qisolate0  0x0000003f 
- 00026806  0x00004f28 branch  0x00006898 , 0x00000001 
- 00026807  0x00004f2a hfetch  0x00000002 , 0x00008045 
- 00026808  0x00004f2b increase  0x00000001 , 0x0000003f 
- 00026809  0x00004f2c hstore  0x00000002 , 0x00008045 
- 00026810  0x00004f2d increase  0x00000001 , 0x00000007 
- 00026811  0x00004f2e compare  0x00000008 , 0x00000007 , 0x0000000f 
- 00026812  0x00004f2f nbranch  0x00006898 , 0x00000001 
- 00026813  0x00004f30 loop  0x00006895 
- 00026814  0x00004f31 hjam  0x00000083 , 0x00008047 
- 00026815  0x00004f32 rtn 
- 00026816  0x00004f35 hjam  0x00000082 , 0x00008047 
- 00026817  0x00004f36 nop  0x0000000c 
- 00026818  0x00004f37 hjam  0x00000080 , 0x00008047 
- 00026819  0x00004f38 hjam  0x00000082 , 0x00008047 
- 00026820  0x00004f39 nop  0x00000096 
- 00026821  0x00004f3a rtn 
- 00026822  0x00004f3e call  0x000068c0 
- 00026823  0x00004f40 hjam  0x000000a2 , 0x00008047 
- 00026824  0x00004f41 deposit  0x00000011 
- 00026825  0x00004f42 hstore  0x00000002 , 0x00008048 
- 00026826  0x00004f43 set1  0x0000000b , 0x00000002 
- 00026827  0x00004f44 isolate0  0x0000000f , 0x0000003f 
- 00026828  0x00004f45 setflag  0x00000001 , 0x0000000f , 0x00000002 
- 00026829  0x00004f46 hstoret  0x00000002 , 0x0000804a 
- 00026830  0x00004f47 hjam  0x00000001 , 0x00008006 
- 00026831  0x00004f48 rtn 
- 00026832  0x00004f4b hfetch  0x00000001 , 0x0000812c 
- 00026833  0x00004f4c bbit0  0x00000001 , 0x000068d0 
- 00026834  0x00004f4d rtn 
- 00026835  0x00004f51 call  0x0000688f 
- 00026836  0x00004f52 call  0x000068c6 
- 00026837  0x00004f53 call  0x000068d0 
- 00026838  0x00004f54 hjam  0x00000083 , 0x00008047 
- 00026839  0x00004f55 rtn 
- 00026840  0x00004f5b hfetch  0x00000002 , 0x00008124 
- 00026841  0x00004f5c hstore  0x00000002 , 0x00008045 
- 00026842  0x00004f5d call  0x000068c6 
- 00026843  0x00004f5e arg  0x00000001 , 0x00000007 
- 00026844  0x00004f5f call  0x0000676a 
- 00026845  0x00004f60 call  0x000068d0 
- 00026846  0x00004f61 isolate1  0x00000000 , 0x0000003f 
- 00026847  0x00004f62 call  0x00006763 
- 00026848  0x00004f63 hjam  0x00000083 , 0x00008047 
- 00026849  0x00004f64 rtn 
- 00026850  0x00004f68 jam  0x00000001 , 0x0000427a 
- 00026851  0x00004f69 force  0x0000000e , 0x00000007 
- 00026852  0x00004f6a fetch  0x00000002 , 0x0000427c 
- 00026853  0x00004f6b branch  0x00007e4c 
- 00026854  0x00004f6d hfetch  0x00000002 , 0x00008112 
- 00026855  0x00004f6e rtn  0x00000034 
- 00026856  0x00004f6f fetcht  0x00000001 , 0x0000427b 
- 00026857  0x00004f70 isub  0x00000002 , 0x0000003e 
- 00026858  0x00004f71 branch  0x000068f2 , 0x00000002 
- 00026859  0x00004f72 fetch  0x00000001 , 0x0000427a 
- 00026860  0x00004f73 branch  0x000068e2 , 0x00000034 
- 00026861  0x00004f74 arg  0x0000000e , 0x00000007 
- 00026862  0x00004f75 call  0x00007e53 
- 00026863  0x00004f76 branch  0x000068f2 , 0x00000034 
- 00026864  0x00004f77 setarg  0x00000000 
- 00026865  0x00004f78 rtn 
- 00026866  0x00004f7a force  0x0000000e , 0x00000007 
- 00026867  0x00004f7b call  0x00007e4b 
- 00026868  0x00004f7c jam  0x00000000 , 0x0000427a 
- 00026869  0x00004f7d hfetch  0x00000002 , 0x00008112 
- 00026870  0x00004f7e rtn 
- 00026871  0x00004f86 hfetch  0x00000002 , 0x0000805e 
- 00026872  0x00004f87 iforce  0x0000000a 
- 00026873  0x00004f88 rtn 
- 00026874  0x00004f8b deposit  0x0000000a 
- 00026875  0x00004f8c hstore  0x00000002 , 0x0000805e 
- 00026876  0x00004f8d rtn 
- 00026877  0x00004f90 hfetch  0x00000002 , 0x00008112 
- 00026878  0x00004f91 rtn  0x00000034 
- 00026879  0x00004f92 iforce  0x00000039 
- 00026880  0x00004f93 hfetch  0x00000002 , 0x00008058 
- 00026881  0x00004f94 iforce  0x00000003 
- 00026882  0x00004f95 rtn 
- 00026883  0x00004f99 hfetch  0x00000002 , 0x00008058 
- 00026884  0x00004f9a iadd  0x00000002 , 0x0000003f 
- 00026885  0x00004f9b copy  0x0000003f , 0x00000003 
- 00026886  0x00004f9d deposit  0x00000003 
- 00026887  0x00004f9e hstore  0x00000002 , 0x00008058 
- 00026888  0x00004f9f rtn 
- 00026889  0x00004fa2 fetch  0x00000002 , 0x000042ac 
- 00026890  0x00004fa3 hstore  0x00000002 , 0x00008052 
- 00026891  0x00004fa4 rtn 
- 00026892  0x00004fa9 fetch  0x00000006 , 0x000003d0 
- 00026893  0x00004faa store  0x00000006 , 0x000001b4 
- 00026894  0x00004fab jam  0x00000034 , 0x000001b3 
- 00026895  0x00004fac branch  0x00006913 
- 00026896  0x00004fae fetch  0x00000006 , 0x00000040 
- 00026897  0x00004faf store  0x00000006 , 0x000001b4 
- 00026898  0x00004fb0 jam  0x00000033 , 0x000001b3 
- 00026899  0x00004fb2 set1  0x00000025 , 0x00000000 
- 00026900  0x00004fb3 bpatch  0x00000008 , 0x00004021 
- 00026901  0x00004fb4 call  0x00006954 
- 00026902  0x00004fb5 call  0x00006950 
- 00026903  0x00004fb6 fetch  0x00000001 , 0x000001b3 
- 00026904  0x00004fb7 beq  0x00000034 , 0x0000691b 
- 00026905  0x00004fb8 beq  0x00000033 , 0x0000697c 
- 00026906  0x00004fb9 rtn 
- 00026907  0x00004fbb call  0x0000697a 
- 00026908  0x00004fbc branch  0x00006963 
- 00026909  0x00004fc0 set1  0x00000025 , 0x00000000 
- 00026910  0x00004fc1 bpatch  0x00000009 , 0x00004021 
- 00026911  0x00004fc2 call  0x00006929 
- 00026912  0x00004fc3 fetch  0x00000001 , 0x000001b2 
- 00026913  0x00004fc4 rtneq  0x000000ff 
- 00026914  0x00004fc5 fetch  0x00000006 , 0x000001b4 
- 00026915  0x00004fc6 store  0x00000006 , 0x00004274 
- 00026916  0x00004fc7 fetch  0x00000001 , 0x000001b3 
- 00026917  0x00004fc8 store  0x00000001 , 0x000042a9 
- 00026918  0x00004fc9 beq  0x00000033 , 0x0000692d 
- 00026919  0x00004fca beq  0x00000034 , 0x0000692f 
- 00026920  0x00004fcb rtn 
- 00026921  0x00004fcd call  0x0000694c 
- 00026922  0x00004fce fetch  0x00000001 , 0x000001b2 
- 00026923  0x00004fcf rtneq  0x000000ff 
- 00026924  0x00004fd0 branch  0x0000696b 
- 00026925  0x00004fd2 call  0x00006983 
- 00026926  0x00004fd3 branch  0x000069a2 
- 00026927  0x00004fd5 call  0x00006981 
- 00026928  0x00004fd6 branch  0x000069a8 
- 00026929  0x00004fd8 call  0x00006988 
- 00026930  0x00004fd9 disable  0x00000028 
- 00026931  0x00004fda call  0x0000698c 
- 00026932  0x00004fdb nbranch  0x0000427f , 0x00000028 
- 00026933  0x00004fdd fetcht  0x00000002 , 0x000001ba 
- 00026934  0x00004fde increase  0xffffffff , 0x00000002 
- 00026935  0x00004fdf setarg  0x00000000 
- 00026936  0x00004fe0 istore  0x00000007 , 0x00000002 
- 00026937  0x00004fe1 arg  0x0000001c , 0x00000002 
- 00026938  0x00004fe2 arg  0x00000195 , 0x00000011 
- 00026939  0x00004fe3 arg  0x00000000 , 0x00000012 
- 00026940  0x00004fe4 branch  0x0000683e 
- 00026941  0x00004fe7 set1  0x00000025 , 0x00000000 
- 00026942  0x00004fe8 bpatch  0x0000000a , 0x00004021 
- 00026943  0x00004fe9 arg  0x0000018e , 0x00000005 
- 00026944  0x00004fea force  0x00000004 , 0x00000039 
- 00026945  0x00004feb call  0x00007e3b 
- 00026946  0x00004fec arg  0x0000001c , 0x00000002 
- 00026947  0x00004fed arg  0x0000018e , 0x00000011 
- 00026948  0x00004fee arg  0x00000000 , 0x00000012 
- 00026949  0x00004fef branch  0x0000683e 
- 00026950  0x00004ff2 set1  0x00000025 , 0x00000000 
- 00026951  0x00004ff3 bpatch  0x0000000b , 0x00004021 
- 00026952  0x00004ff4 setarg  0x00000000 
- 00026953  0x00004ff5 store  0x00000003 , 0x00000040 
- 00026954  0x00004ff6 istore  0x00000003 , 0x00000005 
- 00026955  0x00004ff7 branch  0x00006954 
- 00026956  0x00004ffa arg  0x00000001 , 0x00000002 
- 00026957  0x00004ffb arg  0x000001b2 , 0x00000011 
- 00026958  0x00004ffc arg  0x0000001c , 0x00000012 
- 00026959  0x00004ffd branch  0x0000681d 
- 00026960  0x00005000 arg  0x00000001 , 0x00000002 
- 00026961  0x00005001 arg  0x000001b2 , 0x00000011 
- 00026962  0x00005002 arg  0x0000001c , 0x00000012 
- 00026963  0x00005003 branch  0x0000683e 
- 00026964  0x00005007 set1  0x00000025 , 0x00000000 
- 00026965  0x00005008 bpatch  0x0000000c , 0x00004021 
- 00026966  0x00005009 call  0x00006988 
- 00026967  0x0000500a disable  0x00000028 
- 00026968  0x0000500b call  0x0000698c 
- 00026969  0x0000500c rtn  0x00000028 
- 00026970  0x0000500e jam  0x00000000 , 0x000001b2 
- 00026971  0x0000500f fetch  0x00000006 , 0x000001b4 
- 00026972  0x00005010 store  0x00000006 , 0x0000018f 
- 00026973  0x00005011 fetch  0x00000001 , 0x000001b3 
- 00026974  0x00005012 store  0x00000001 , 0x0000018e 
- 00026975  0x00005013 arg  0x0000001c , 0x00000002 
- 00026976  0x00005014 arg  0x0000018e , 0x00000011 
- 00026977  0x00005015 arg  0x00000000 , 0x00000012 
- 00026978  0x00005016 branch  0x0000683e 
- 00026979  0x0000501a arg  0x00000006 , 0x00000002 
- 00026980  0x0000501b arg  0x000044f9 , 0x00000011 
- 00026981  0x0000501c arg  0x0000001d , 0x00000012 
- 00026982  0x0000501d branch  0x0000683e 
- 00026983  0x00005020 arg  0x00000006 , 0x00000002 
- 00026984  0x00005021 arg  0x000044f9 , 0x00000011 
- 00026985  0x00005022 arg  0x0000001d , 0x00000012 
- 00026986  0x00005023 branch  0x0000681d 
- 00026987  0x00005027 set1  0x00000025 , 0x00000000 
- 00026988  0x00005028 bpatch  0x0000000d , 0x00004021 
- 00026989  0x00005029 arg  0x00000007 , 0x00000002 
- 00026990  0x0000502a arg  0x000001b3 , 0x00000011 
- 00026991  0x0000502b arg  0x00000000 , 0x00000012 
- 00026992  0x0000502c fetch  0x00000001 , 0x000001b2 
- 00026993  0x0000502d mul32  0x0000003f , 0x00000007 , 0x0000003f 
- 00026994  0x0000502e iadd  0x00000012 , 0x00000012 
- 00026995  0x0000502f branch  0x0000681d 
- 00026996  0x00005032 arg  0x00000010 , 0x00000002 
- 00026997  0x00005033 arg  0x00000023 , 0x00000012 
- 00026998  0x00005034 fetch  0x00000001 , 0x000001b2 
- 00026999  0x00005035 lshift4  0x0000003f , 0x0000003f 
- 00027000  0x00005036 iadd  0x00000012 , 0x00000012 
- 00027001  0x00005037 rtn 
- 00027002  0x0000503a arg  0x0000447b , 0x00000011 
- 00027003  0x0000503b branch  0x0000697d 
- 00027004  0x0000503d arg  0x00004262 , 0x00000011 
- 00027005  0x0000503f set1  0x00000025 , 0x00000000 
- 00027006  0x00005040 bpatch  0x0000000e , 0x00004021 
- 00027007  0x00005041 call  0x00006974 
- 00027008  0x00005042 branch  0x0000683e 
- 00027009  0x00005045 arg  0x0000447b , 0x00000011 
- 00027010  0x00005046 branch  0x00006984 
- 00027011  0x00005048 arg  0x00004262 , 0x00000011 
- 00027012  0x0000504a set1  0x00000025 , 0x00000000 
- 00027013  0x0000504b bpatch  0x0000000f , 0x00004021 
- 00027014  0x0000504c call  0x00006974 
- 00027015  0x0000504d branch  0x0000681d 
- 00027016  0x00005052 arg  0x0000001c , 0x00000002 
- 00027017  0x00005053 arg  0x00000195 , 0x00000011 
- 00027018  0x00005054 arg  0x00000000 , 0x00000012 
- 00027019  0x00005055 branch  0x0000681d 
- 00027020  0x00005058 set1  0x00000025 , 0x00000000 
- 00027021  0x00005059 bpatch  0x00000010 , 0x00004022 
- 00027022  0x0000505a setarg  0x00000195 
- 00027023  0x0000505b store  0x00000002 , 0x000001ba 
- 00027024  0x0000505c jam  0x00000000 , 0x000001b2 
- 00027025  0x0000505d arg  0x00000004 , 0x00000039 
- 00027026  0x0000505f copy  0x00000039 , 0x0000003f 
- 00027027  0x00005060 store  0x00000001 , 0x00000161 
- 00027028  0x00005061 fetch  0x00000002 , 0x000001ba 
- 00027029  0x00005062 copy  0x0000003f , 0x00000011 
- 00027030  0x00005063 call  0x000069ac 
- 00027031  0x00005064 rtn  0x00000028 
- 00027032  0x00005065 fetch  0x00000002 , 0x000001ba 
- 00027033  0x00005066 increase  0x00000007 , 0x0000003f 
- 00027034  0x00005067 store  0x00000002 , 0x000001ba 
- 00027035  0x00005068 fetch  0x00000001 , 0x000001b2 
- 00027036  0x00005069 increase  0x00000001 , 0x0000003f 
- 00027037  0x0000506a store  0x00000001 , 0x000001b2 
- 00027038  0x0000506b fetch  0x00000001 , 0x00000161 
- 00027039  0x0000506c copy  0x0000003f , 0x00000039 
- 00027040  0x0000506d loop  0x00006992 
- 00027041  0x0000506e rtn 
- 00027042  0x00005071 fetch  0x00000008 , 0x00004262 
- 00027043  0x00005072 fetcht  0x00000008 , 0x0000426a 
- 00027044  0x00005073 ior  0x00000002 , 0x0000003f 
- 00027045  0x00005074 rtn  0x00000034 
- 00027046  0x00005075 jam  0x00000001 , 0x0000425e 
- 00027047  0x00005076 rtn 
- 00027048  0x00005078 fetch  0x00000006 , 0x00004274 
- 00027049  0x00005079 rtn  0x00000034 
- 00027050  0x0000507a jam  0x00000001 , 0x0000448b 
- 00027051  0x0000507b rtn 
- 00027052  0x0000507e arg  0x000001b3 , 0x00000012 
- 00027053  0x0000507f arg  0x00000007 , 0x00000039 
- 00027054  0x00005080 call  0x00007f25 
- 00027055  0x00005081 branch  0x000069b1 , 0x00000005 
- 00027056  0x00005082 rtn 
- 00027057  0x00005084 enable  0x00000028 
- 00027058  0x00005085 rtn 
- 00027059  0x00005087 branch  0x00003bf1 
- 00027060  0x0000508f set1  0x00000025 , 0x00000000 
- 00027061  0x00005090 bpatch  0x00000011 , 0x00004022 
- 00027062  0x00005091 set1  0x00000007 , 0x00000002 
- 00027063  0x00005092 call  0x000069e5 
- 00027064  0x00005093 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
- 00027065  0x00005099 set1  0x00000025 , 0x00000000 
- 00027066  0x0000509a bpatch  0x00000012 , 0x00004022 
- 00027067  0x0000509b isolate0  0x00000007 , 0x00000002 
- 00027068  0x0000509c and  0x00000002 , 0x0000001f , 0x00000007 
- 00027069  0x0000509d fetch  0x00000004 , 0x000000a3 
- 00027070  0x0000509e qsetflag  0x00000001 , 0x0000003f 
- 00027071  0x0000509f store  0x00000004 , 0x000000a3 
- 00027072  0x000050a0 fetch  0x00000004 , 0x000000a7 
- 00027073  0x000050a1 nqsetflag  0x00000001 , 0x0000003f 
- 00027074  0x000050a2 store  0x00000004 , 0x000000a7 
- 00027075  0x000050a3 rtn 
- 00027076  0x000050a7 set1  0x00000025 , 0x00000000 
- 00027077  0x000050a8 bpatch  0x00000013 , 0x00004022 
- 00027078  0x000050a9 isolate0  0x00000007 , 0x00000002 
- 00027079  0x000050aa and  0x00000002 , 0x0000001f , 0x00000007 
- 00027080  0x000050ab fetch  0x00000004 , 0x000000a3 
- 00027081  0x000050ac qset0  0x0000003f 
- 00027082  0x000050ad store  0x00000004 , 0x000000a3 
- 00027083  0x000050ae fetch  0x00000004 , 0x000000a7 
- 00027084  0x000050af qset0  0x0000003f 
- 00027085  0x000050b0 store  0x00000004 , 0x000000a7 
- 00027086  0x000050b1 rtn 
- 00027087  0x000050b5 call  0x000069c4 
- 00027088  0x000050b6 branch  0x000069d2 
- 00027089  0x000050ba ncall  0x000069b9 , 0x0000002b 
- 00027090  0x000050bd arg  0x0000807c , 0x00000005 
- 00027091  0x000050be call  0x000069f4 
- 00027092  0x000050bf setflip  0x00000007 , 0x00000002 
- 00027093  0x000050c0 arg  0x00008078 , 0x00000005 
- 00027094  0x000050c1 call  0x000069f4 
- 00027095  0x000050c2 set0  0x00000007 , 0x00000002 
- 00027096  0x000050c3 arg  0x00008070 , 0x00000005 
- 00027097  0x000050c4 branch  0x000069f4 
- 00027098  0x000050c8 setflip  0x00000007 , 0x00000002 
- 00027099  0x000050c9 call  0x000069f3 
- 00027100  0x000050ca set1  0x00000007 , 0x00000002 
- 00027101  0x000050cb arg  0x00008070 , 0x00000005 
- 00027102  0x000050cc branch  0x000069f4 
- 00027103  0x000050cf and  0x00000002 , 0x00000007 , 0x00000007 
- 00027104  0x000050d0 rshift3  0x00000002 , 0x0000003f 
- 00027105  0x000050d1 and_into  0x00000003 , 0x0000003f 
- 00027106  0x000050d2 iadd  0x00000005 , 0x00000005 
- 00027107  0x000050d3 ifetch  0x00000001 , 0x00000005 
- 00027108  0x000050d4 rtn 
- 00027109  0x000050d9 arg  0x0000811c , 0x00000005 
- 00027110  0x000050da call  0x000069df 
- 00027111  0x000050db isolate1  0x00000007 , 0x00000002 
- 00027112  0x000050dc branch  0x000069eb , 0x00000001 
- 00027113  0x000050dd qisolate0  0x0000003f 
- 00027114  0x000050de rtn 
- 00027115  0x000050e0 qisolate1  0x0000003f 
- 00027116  0x000050e1 rtn 
- 00027117  0x000050e4 isolate1  0x00000007 , 0x0000003e 
- 00027118  0x000050e5 branch  0x000069f0 
- 00027119  0x000050e8 isolate0  0x00000007 , 0x0000003e 
- 00027120  0x000050ec setarg  0x00000000 
- 00027121  0x000050ed nsetflag  0x00000001 , 0x00000007 , 0x0000003f 
- 00027122  0x000050ee ixor  0x00000002 , 0x00000002 
- 00027123  0x000050f2 arg  0x00008074 , 0x00000005 
- 00027124  0x000050f6 call  0x000069df 
- 00027125  0x000050f7 isolate1  0x00000007 , 0x00000002 
- 00027126  0x000050f8 qsetflag  0x00000001 , 0x0000003f 
- 00027127  0x000050f9 istore  0x00000001 , 0x00000005 
- 00027128  0x000050fa rtn 
- 00027129  0x000050fd fetch  0x00000001 , 0x0000416e 
- 00027130  0x000050fe rtneq  0x0000007f 
- 00027131  0x000050ff hjam  0x00000000 , 0x00008077 
- 00027132  0x00005100 nop  0x0000001e 
- 00027133  0x00005101 hjam  0x00000008 , 0x00008077 
- 00027134  0x00005102 rtn 
- 00027135  0x00005108 lshift8  0x0000003f , 0x0000003f 
- 00027136  0x00005109 lshift4  0x0000003f , 0x0000003f 
- 00027137  0x0000510a hstore  0x00000002 , 0x000080a2 
- 00027138  0x0000510b hstore  0x00000002 , 0x000080a0 
- 00027139  0x0000510c rtn 
- 00027140  0x0000510f setarg  0x00000000 
- 00027141  0x00005110 hstore  0x00000002 , 0x000080a2 
- 00027142  0x00005111 setarg  0x00000001 
- 00027143  0x00005112 hstore  0x00000002 , 0x000080a0 
- 00027144  0x00005113 rtn 
- 00027145  0x00005116 setarg  0x00000000 
- 00027146  0x00005117 hstore  0x00000002 , 0x000080a2 
- 00027147  0x00005118 hstore  0x00000002 , 0x000080a0 
- 00027148  0x00005119 rtn 
- 00027149  0x0000511f arg  0x00008800 , 0x00000005 
- 00027150  0x00005120 arg  0x00000020 , 0x00000039 
- 00027151  0x00005121 call  0x00007e3b 
- 00027152  0x00005122 setarg  0x000004f9 
- 00027153  0x00005123 hstore  0x00000002 , 0x00008848 
- 00027154  0x00005124 hstore  0x00000002 , 0x0000884a 
- 00027155  0x00005125 hstore  0x00000002 , 0x0000884c 
- 00027156  0x00005126 hstore  0x00000002 , 0x0000886c 
- 00027157  0x00005127 hstore  0x00000002 , 0x0000888c 
- 00027158  0x00005128 hstore  0x00000002 , 0x000088ac 
- 00027159  0x00005129 setarg  0x00000204 
- 00027160  0x0000512a hstore  0x00000002 , 0x000088ae 
- 00027161  0x0000512b setarg  0x00000506 
- 00027162  0x0000512c hstore  0x00000002 , 0x000088b0 
- 00027163  0x0000512d setarg  0x00000504 
- 00027164  0x0000512e hstore  0x00000002 , 0x000088b2 
- 00027165  0x0000512f setarg  0x00000200 
- 00027166  0x00005130 hstore  0x00000002 , 0x000088b4 
- 00027167  0x00005131 setarg  0x0000fefb 
- 00027168  0x00005132 hstore  0x00000002 , 0x000088b6 
- 00027169  0x00005133 setarg  0x0000faf9 
- 00027170  0x00005134 hstore  0x00000002 , 0x000088b8 
- 00027171  0x00005135 setarg  0x0000fafb 
- 00027172  0x00005136 hstore  0x00000002 , 0x000088ba 
- 00027173  0x00005137 setarg  0x0000fd00 
- 00027174  0x00005138 hstore  0x00000002 , 0x000088bc 
- 00027175  0x00005139 setarg  0x00000408 
- 00027176  0x0000513a hstore  0x00000002 , 0x000088be 
- 00027177  0x0000513b setarg  0x00000a0c 
- 00027178  0x0000513c hstore  0x00000002 , 0x000088c0 
- 00027179  0x0000513d setarg  0x00000b09 
- 00027180  0x0000513e hstore  0x00000002 , 0x000088c2 
- 00027181  0x0000513f setarg  0x00000500 
- 00027182  0x00005140 hstore  0x00000002 , 0x000088c4 
- 00027183  0x00005141 setarg  0x0000f8f1 
- 00027184  0x00005142 hstore  0x00000002 , 0x000088c6 
- 00027185  0x00005143 setarg  0x0000ece8 
- 00027186  0x00005144 hstore  0x00000002 , 0x000088c8 
- 00027187  0x00005145 setarg  0x0000e9eb 
- 00027188  0x00005146 hstore  0x00000002 , 0x000088ca 
- 00027189  0x00005147 setarg  0x0000f500 
- 00027190  0x00005148 hstore  0x00000002 , 0x000088cc 
- 00027191  0x00005149 setarg  0x00001223 
- 00027192  0x0000514a hstore  0x00000002 , 0x000088ce 
- 00027193  0x0000514b setarg  0x0000374b 
- 00027194  0x0000514c hstore  0x00000002 , 0x000088d0 
- 00027195  0x0000514d setarg  0x00005e71 
- 00027196  0x0000514e hstore  0x00000002 , 0x000088d2 
- 00027197  0x0000514f setarg  0x0000787f 
- 00027198  0x00005150 hstore  0x00000002 , 0x000088d4 
- 00027199  0x00005151 rtn 
- 00027200  0x00005154 set1  0x00000025 , 0x00000000 
- 00027201  0x00005155 bpatch  0x00000014 , 0x00004022 
- 00027202  0x00005156 hfetch  0x00000002 , 0x00008050 
- 00027203  0x00005157 set0  0x0000000e , 0x0000003f 
- 00027204  0x00005158 hstore  0x00000002 , 0x00008050 
- 00027205  0x00005159 hjam  0x00000011 , 0x000080b0 
- 00027206  0x0000515a hjam  0x00000001 , 0x000080b1 
- 00027207  0x0000515b hjam  0x00000001 , 0x000080b2 
- 00027208  0x0000515c hjam  0x00000011 , 0x000080b3 
- 00027209  0x0000515d rtn 
- 00027210  0x00005160 set1  0x00000025 , 0x00000000 
- 00027211  0x00005161 bpatch  0x00000015 , 0x00004022 
- 00027212  0x00005162 hfetch  0x00000002 , 0x00008050 
- 00027213  0x00005163 set1  0x0000000e , 0x0000003f 
- 00027214  0x00005164 hstore  0x00000002 , 0x00008050 
- 00027215  0x00005165 hjam  0x00000004 , 0x000080b0 
- 00027216  0x00005166 hjam  0x00000004 , 0x000080b3 
- 00027217  0x00005167 hjam  0x00000000 , 0x000080b1 
- 00027218  0x00005168 hjam  0x00000000 , 0x000080b2 
- 00027219  0x00005169 rtn 
- 00027220  0x0000516e fetch  0x00000001 , 0x00000030 
- 00027221  0x0000516f rtnbit0  0x00000002 
- 00027222  0x00005170 arg  0x000000b5 , 0x00000005 
- 00027223  0x00005171 arg  0x0000001e , 0x00000039 
- 00027224  0x00005173 hfetch  0x00000001 , 0x00008134 
- 00027225  0x00005174 istore  0x00000001 , 0x00000005 
- 00027226  0x00005175 loop  0x00006a58 
- 00027227  0x00005176 rtn 
- 00027228  0x0000517a fetch  0x00000001 , 0x00000030 
- 00027229  0x0000517b rtnbit0  0x00000002 
- 00027230  0x0000517c arg  0x000000d3 , 0x00000006 
- 00027231  0x0000517d force  0x0000001e , 0x00000039 
- 00027232  0x0000517f ifetch  0x00000001 , 0x00000006 
- 00027233  0x00005180 hstore  0x00000001 , 0x00008009 
- 00027234  0x00005181 loop  0x00006a60 
- 00027235  0x00005182 rtn 
- 00027236  0x00005185 rtn 
- 00027237  0x0000518b call  0x00006a87 
- 00027238  0x0000518c arg  0x00000006 , 0x00000002 
- 00027239  0x0000518d branch  0x000069da 
- 00027240  0x00005190 call  0x00006a65 
- 00027241  0x00005191 arg  0x00000006 , 0x00000002 
- 00027242  0x00005192 branch  0x000069ed 
- 00027243  0x00005195 call  0x00006a65 
- 00027244  0x00005196 arg  0x00000006 , 0x00000002 
- 00027245  0x00005197 branch  0x000069ef 
- 00027246  0x0000519a call  0x00006a87 
- 00027247  0x0000519b arg  0x00000007 , 0x00000002 
- 00027248  0x0000519c branch  0x000069da 
- 00027249  0x0000519f call  0x00006a6e 
- 00027250  0x000051a0 arg  0x00000007 , 0x00000002 
- 00027251  0x000051a1 branch  0x000069ed 
- 00027252  0x000051a4 call  0x00006a6e 
- 00027253  0x000051a5 arg  0x00000007 , 0x00000002 
- 00027254  0x000051a6 branch  0x000069ef 
- 00027255  0x000051a9 call  0x00006a87 
- 00027256  0x000051aa hfetch  0x00000001 , 0x00008078 
- 00027257  0x000051ab set1  0x00000006 , 0x0000003f 
- 00027258  0x000051ac hstore  0x00000001 , 0x00008078 
- 00027259  0x000051ad arg  0x00000006 , 0x00000002 
- 00027260  0x000051ae branch  0x000069d1 
- 00027261  0x000051b1 call  0x00006a87 
- 00027262  0x000051b2 hfetch  0x00000001 , 0x00008078 
- 00027263  0x000051b3 set1  0x00000007 , 0x0000003f 
- 00027264  0x000051b4 hstore  0x00000001 , 0x00008078 
- 00027265  0x000051b5 arg  0x00000007 , 0x00000002 
- 00027266  0x000051b6 branch  0x000069d1 
- 00027267  0x000051b9 hfetch  0x00000001 , 0x00008081 
- 00027268  0x000051ba or_into  0x00000004 , 0x0000003f 
- 00027269  0x000051bb hstore  0x00000001 , 0x00008081 
- 00027270  0x000051bc rtn 
- 00027271  0x000051bf hfetch  0x00000001 , 0x00008081 
- 00027272  0x000051c0 and_into  0x000000fb , 0x0000003f 
- 00027273  0x000051c1 hstore  0x00000001 , 0x00008081 
- 00027274  0x000051c2 rtn 
- 00027275  0x000051c5 hfetch  0x00000001 , 0x00008081 
- 00027276  0x000051c6 isolate1  0x00000002 , 0x0000003f 
- 00027277  0x000051c7 rtn 
- 00027278  0x000051cb setarg  0x00006a91 
- 00027279  0x000051cc store  0x00000002 , 0x00004296 
- 00027280  0x000051cd rtn 
- 00027281  0x000051cf call  0x00006b14 
- 00027282  0x000051d0 fetch  0x00000001 , 0x00000481 
- 00027283  0x000051d1 beq  0x00000001 , 0x00006a96 
- 00027284  0x000051d2 beq  0x00000002 , 0x00006a9c 
- 00027285  0x000051d3 branch  0x00003bf1 
- 00027286  0x000051d5 arg  0x00000017 , 0x00000002 
- 00027287  0x000051d6 storet  0x00000002 , 0x000044c2 
- 00027288  0x000051d7 call  0x00005a88 
- 00027289  0x000051d8 ifetch  0x00000001 , 0x00000006 
- 00027290  0x000051d9 call  0x00006a9e 
- 00027291  0x000051da branch  0x00005b42 
- 00027292  0x000051dc call  0x00006a9e 
- 00027293  0x000051dd branch  0x00005b51 
- 00027294  0x000051df copy  0x00000006 , 0x00000011 
- 00027295  0x000051e0 set1  0x00000025 , 0x00000000 
- 00027296  0x000051e1 bpatch  0x00000031 , 0x00004026 
- 00027297  0x000051e2 ifetch  0x00000001 , 0x00000006 
- 00027298  0x000051e3 beq  0x00000000 , 0x00006ab7 
- 00027299  0x000051e4 beq  0x00000001 , 0x00006abc 
- 00027300  0x000051e5 beq  0x00000002 , 0x00006abd 
- 00027301  0x000051e6 beq  0x00000003 , 0x00006abe 
- 00027302  0x000051e7 beq  0x00000004 , 0x00006b50 
- 00027303  0x000051e8 beq  0x00000005 , 0x00006aff 
- 00027304  0x000051e9 beq  0x00000006 , 0x00006b51 
- 00027305  0x000051ea beq  0x00000007 , 0x00006b52 
- 00027306  0x000051eb beq  0x00000008 , 0x00006abf 
- 00027307  0x000051ec beq  0x00000009 , 0x00006ac0 
- 00027308  0x000051ed beq  0x0000000a , 0x00006ac1 
- 00027309  0x000051ee beq  0x0000000b , 0x00006ac2 
- 00027310  0x000051ef beq  0x0000000c , 0x00006ac3 
- 00027311  0x000051f0 beq  0x0000000d , 0x00006ad5 
- 00027312  0x000051f1 beq  0x0000000e , 0x00006ae3 
- 00027313  0x000051f2 beq  0x0000000f , 0x00006af0 
- 00027314  0x000051f3 beq  0x00000010 , 0x00006af1 
- 00027315  0x000051f4 beq  0x00000011 , 0x00006af8 
- 00027316  0x000051f5 beq  0x00000012 , 0x00006b19 
- 00027317  0x000051f6 beq  0x00000013 , 0x00006b45 
- 00027318  0x000051f7 rtn 
- 00027319  0x000051fb copy  0x00000011 , 0x00000006 
- 00027320  0x000051fc ifetch  0x00000001 , 0x00000006 
- 00027321  0x000051fd lshift8  0x0000003f , 0x0000003f 
- 00027322  0x000051fe store  0x00000003 , 0x0000046d 
- 00027323  0x000051ff rtn 
- 00027324  0x00005201 rtn 
- 00027325  0x00005203 rtn 
- 00027326  0x00005205 rtn 
- 00027327  0x0000520a rtn 
- 00027328  0x0000520c rtn 
- 00027329  0x0000520e rtn 
- 00027330  0x00005210 rtn 
- 00027331  0x00005215 ifetch  0x00000004 , 0x00000006 
- 00027332  0x00005216 hstore  0x00000001 , 0x00008082 
- 00027333  0x00005217 rshift8  0x0000003f , 0x0000003f 
- 00027334  0x00005218 hfetcht  0x00000001 , 0x00008081 
- 00027335  0x00005219 and_into  0x0000007f , 0x00000002 
- 00027336  0x0000521a ior  0x00000002 , 0x00000002 
- 00027337  0x0000521b hstoret  0x00000001 , 0x00008081 
- 00027338  0x0000521c rshift8  0x0000003f , 0x0000003f 
- 00027339  0x0000521d hfetcht  0x00000001 , 0x00008051 
- 00027340  0x0000521e and_into  0x000000df , 0x00000002 
- 00027341  0x0000521f ior  0x00000002 , 0x00000002 
- 00027342  0x00005220 hstoret  0x00000001 , 0x00008051 
- 00027343  0x00005221 rshift8  0x0000003f , 0x0000003f 
- 00027344  0x00005222 hfetcht  0x00000001 , 0x00008042 
- 00027345  0x00005223 and_into  0x0000003f , 0x00000002 
- 00027346  0x00005224 ior  0x00000002 , 0x00000002 
- 00027347  0x00005225 hstoret  0x00000001 , 0x00008042 
- 00027348  0x00005226 branch  0x00006ab7 
- 00027349  0x00005228 ifetch  0x00000009 , 0x00000006 
- 00027350  0x00005229 hfetcht  0x00000001 , 0x00008085 
- 00027351  0x0000522a and_into  0x0000003f , 0x00000002 
- 00027352  0x0000522b ior  0x00000002 , 0x00000002 
- 00027353  0x0000522c hstoret  0x00000001 , 0x00008085 
- 00027354  0x0000522d rshift8  0x0000003f , 0x0000003f 
- 00027355  0x0000522e hstore  0x00000002 , 0x000080a0 
- 00027356  0x0000522f rshift16  0x0000003f , 0x0000003f 
- 00027357  0x00005230 hstore  0x00000002 , 0x000080a2 
- 00027358  0x00005231 rshift16  0x0000003f , 0x0000003f 
- 00027359  0x00005232 hstore  0x00000002 , 0x000080a4 
- 00027360  0x00005233 rshift16  0x0000003f , 0x0000003f 
- 00027361  0x00005234 hstore  0x00000002 , 0x000080a6 
- 00027362  0x00005235 branch  0x00006ab7 
- 00027363  0x0000523a ifetch  0x00000004 , 0x00000006 
- 00027364  0x0000523b hstore  0x00000004 , 0x00008070 
- 00027365  0x0000523c ifetch  0x00000004 , 0x00000006 
- 00027366  0x0000523d hstore  0x00000004 , 0x00008078 
- 00027367  0x0000523e ifetch  0x00000004 , 0x00000006 
- 00027368  0x0000523f hstore  0x00000004 , 0x0000807c 
- 00027369  0x00005240 ifetch  0x00000001 , 0x00000006 
- 00027370  0x00005241 hstore  0x00000001 , 0x00008080 
- 00027371  0x00005242 ifetch  0x00000001 , 0x00000006 
- 00027372  0x00005243 hstore  0x00000001 , 0x00008081 
- 00027373  0x00005244 ifetch  0x00000001 , 0x00000006 
- 00027374  0x00005245 hstore  0x00000001 , 0x00008082 
- 00027375  0x00005246 branch  0x00006ab7 
- 00027376  0x00005248 branch  0x00006af1 
- 00027377  0x0000524a jam  0x00000010 , 0x0000046d 
- 00027378  0x0000524b arg  0x0000046e , 0x00000005 
- 00027379  0x0000524c hfetch  0x00000004 , 0x00008074 
- 00027380  0x0000524d istore  0x00000004 , 0x00000005 
- 00027381  0x0000524e hfetch  0x00000004 , 0x0000811c 
- 00027382  0x0000524f istore  0x00000004 , 0x00000005 
- 00027383  0x00005250 rtn 
- 00027384  0x00005252 ifetcht  0x00000001 , 0x00000006 
- 00027385  0x00005253 ifetch  0x00000001 , 0x00000006 
- 00027386  0x00005254 lshift3  0x0000003f , 0x0000003f 
- 00027387  0x00005255 lshift4  0x0000003f , 0x0000003f 
- 00027388  0x00005256 ior  0x00000002 , 0x00000002 
- 00027389  0x00005257 call  0x000069f3 
- 00027390  0x00005258 branch  0x00006ab7 
- 00027391  0x0000525e ifetcht  0x00000001 , 0x00000006 
- 00027392  0x0000525f hstoret  0x00000001 , 0x00008301 
- 00027393  0x00005260 ifetch  0x00000001 , 0x00000006 
- 00027394  0x00005261 compare  0x00000001 , 0x0000003f , 0x000000ff 
- 00027395  0x00005262 ifetch  0x00000001 , 0x00000006 
- 00027396  0x00005263 hstore  0x00000001 , 0x00008307 
- 00027397  0x00005264 branch  0x00006b08 , 0x00000001 
- 00027398  0x00005265 ifetch  0x00000001 , 0x00000006 
- 00027399  0x00005266 hstore  0x00000001 , 0x00008307 
- 00027400  0x00005268 ifetch  0x00000001 , 0x00000006 
- 00027401  0x00005269 copy  0x0000003f , 0x00000039 
- 00027402  0x0000526a increase  0xffffffff , 0x0000003f 
- 00027403  0x0000526b or_into  0x00000090 , 0x0000003f 
- 00027404  0x0000526c hstore  0x00000001 , 0x00008302 
- 00027405  0x0000526d hjam  0x00000002 , 0x00008303 
- 00027406  0x0000526e nop  0x00000001 
- 00027407  0x00005270 arg  0x0000046d , 0x00000005 
- 00027408  0x00005272 hfetch  0x00000001 , 0x00008307 
- 00027409  0x00005273 istore  0x00000001 , 0x00000005 
- 00027410  0x00005274 loop  0x00006b10 
- 00027411  0x00005275 rtn 
- 00027412  0x00005278 setarg  0x00000000 
- 00027413  0x00005279 store  0x00000004 , 0x0000046d 
- 00027414  0x0000527a istore  0x00000008 , 0x00000005 
- 00027415  0x0000527b istore  0x00000008 , 0x00000005 
- 00027416  0x0000527c rtn 
- 00027417  0x00005283 copy  0x00000011 , 0x0000003f 
- 00027418  0x00005284 increase  0x00000001 , 0x0000003f 
- 00027419  0x00005285 store  0x00000002 , 0x00000483 
- 00027420  0x00005286 fetch  0x00000002 , 0x00004749 
- 00027421  0x00005287 beq  0x00000000 , 0x00006b28 
- 00027422  0x00005289 fetch  0x00000002 , 0x00004749 
- 00027423  0x0000528a fetcht  0x00000002 , 0x00000483 
- 00027424  0x0000528b ifetcht  0x00000002 , 0x00000002 
- 00027425  0x0000528c iadd  0x00000002 , 0x0000003f 
- 00027426  0x0000528d fetcht  0x00000002 , 0x00000483 
- 00027427  0x0000528e increase  0x00000002 , 0x00000002 
- 00027428  0x0000528f copy  0x00000002 , 0x00000006 
- 00027429  0x00005290 ifetcht  0x00000001 , 0x00000006 
- 00027430  0x00005291 copy  0x00000006 , 0x00000011 
- 00027431  0x00005292 branch  0x00006842 
- 00027432  0x00005295 setarg  0x00000002 
- 00027433  0x00005296 byteswap  0x0000003f , 0x0000003f 
- 00027434  0x00005297 store  0x00000002 , 0x00000225 
- 00027435  0x00005298 arg  0x00006823 , 0x00000013 
- 00027436  0x00005299 arg  0x00000002 , 0x00000039 
- 00027437  0x0000529b call  0x000066e2 
- 00027438  0x0000529c nbranch  0x00006b36 , 0x00000005 
- 00027439  0x0000529d fetch  0x00000002 , 0x00000225 
- 00027440  0x0000529e byteswap  0x0000003f , 0x0000003f 
- 00027441  0x0000529f iadd  0x00000002 , 0x0000003f 
- 00027442  0x000052a0 store  0x00000002 , 0x00004749 
- 00027443  0x000052a1 byteswap  0x0000003f , 0x0000003f 
- 00027444  0x000052a2 store  0x00000002 , 0x00000225 
- 00027445  0x000052a3 loop  0x00006b2d 
- 00027446  0x000052a5 fetch  0x00000002 , 0x00004749 
- 00027447  0x000052a6 byteswap  0x0000003f , 0x0000003f 
- 00027448  0x000052a7 store  0x00000002 , 0x00000225 
- 00027449  0x000052a8 arg  0x00006823 , 0x00000013 
- 00027450  0x000052a9 arg  0x0000ffff , 0x00000039 
- 00027451  0x000052ab call  0x000066e2 
- 00027452  0x000052ac nbranch  0x00006b1e , 0x00000005 
- 00027453  0x000052ad fetch  0x00000002 , 0x00000225 
- 00027454  0x000052ae byteswap  0x0000003f , 0x0000003f 
- 00027455  0x000052af iadd  0x00000002 , 0x0000003f 
- 00027456  0x000052b0 increase  0x00000002 , 0x0000003f 
- 00027457  0x000052b1 store  0x00000002 , 0x00004749 
- 00027458  0x000052b2 byteswap  0x0000003f , 0x0000003f 
- 00027459  0x000052b3 store  0x00000002 , 0x00000225 
- 00027460  0x000052b4 loop  0x00006b3b 
- 00027461  0x000052b7 fetch  0x00000002 , 0x00004749 
- 00027462  0x000052b8 increase  0x00000002 , 0x0000003f 
- 00027463  0x000052b9 byteswap  0x0000003f , 0x0000003f 
- 00027464  0x000052ba store  0x00000002 , 0x00004749 
- 00027465  0x000052bb arg  0x00004749 , 0x00000011 
- 00027466  0x000052bc arg  0x00000002 , 0x00000002 
- 00027467  0x000052bd arg  0x00000000 , 0x0000003f 
- 00027468  0x000052be call  0x00006842 
- 00027469  0x000052bf setarg  0x00000000 
- 00027470  0x000052c0 store  0x00000002 , 0x00004749 
- 00027471  0x000052c1 rtn 
- 00027472  0x000052c4 rtn 
- 00027473  0x000052c6 rtn 
- 00027474  0x000052c8 rtn 
- 00027475  0x000052ce rtn  0x0000002b 
- 00027476  0x000052cf jam  0x00000000 , 0x00004755 
- 00027477  0x000052d0 jam  0x00000003 , 0x00000485 
- 00027478  0x000052d1 jam  0x00000003 , 0x00000486 
- 00027479  0x000052d2 jam  0x00000011 , 0x0000048a 
- 00027480  0x000052d3 jam  0x00000013 , 0x0000048b 
- 00027481  0x000052d4 setarg  0x00000000 
- 00027482  0x000052d5 store  0x00000003 , 0x00000487 
- 00027483  0x000052d6 store  0x00000001 , 0x000042bd 
- 00027484  0x000052d7 jam  0x00000000 , 0x000047f3 
- 00027485  0x000052da set1  0x00000025 , 0x00000000 
- 00027486  0x000052db bpatch  0x000000bf , 0x00004037 
- 00027487  0x000052dc setarg  0x00000000 
- 00027488  0x000052dd store  0x00000001 , 0x000042bd 
- 00027489  0x000052de store  0x00000001 , 0x00004752 
- 00027490  0x000052df store  0x00000001 , 0x0000474b 
- 00027491  0x000052e0 jam  0x00000050 , 0x00004757 
- 00027492  0x000052e1 rtn 
- 00027493  0x000052e4 or_into  0x00000002 , 0x00000002 
- 00027494  0x000052e5 rtn 
- 00027495  0x000052f2 copy  0x00000002 , 0x0000003f 
- 00027496  0x000052f3 reverse  0x0000003f , 0x0000003f 
- 00027497  0x000052f4 store  0x00000001 , 0x00004750 
- 00027498  0x000052f5 force  0x0000003f , 0x0000003f 
- 00027499  0x000052f6 reverse  0x0000003f , 0x0000003f 
- 00027500  0x000052f7 store  0x00000001 , 0x0000474f 
- 00027501  0x000052f8 force  0x00000001 , 0x0000003f 
- 00027502  0x000052f9 reverse  0x0000003f , 0x0000003f 
- 00027503  0x000052fa store  0x00000001 , 0x0000474e 
- 00027504  0x000052fb call  0x00006b9d 
- 00027505  0x000052fc copy  0x00000002 , 0x0000003f 
- 00027506  0x000052fd rtn 
- 00027507  0x000052ff reverse  0x0000003f , 0x0000003f 
- 00027508  0x00005300 store  0x00000001 , 0x00004750 
- 00027509  0x00005301 force  0x00000073 , 0x0000003f 
- 00027510  0x00005302 reverse  0x0000003f , 0x0000003f 
- 00027511  0x00005303 store  0x00000001 , 0x0000474f 
- 00027512  0x00005304 force  0x00000001 , 0x0000003f 
- 00027513  0x00005305 reverse  0x0000003f , 0x0000003f 
- 00027514  0x00005306 store  0x00000001 , 0x0000474e 
- 00027515  0x00005307 branch  0x00006b9d 
- 00027516  0x0000530a fetch  0x00000001 , 0x00004751 
- 00027517  0x0000530b branch  0x00006b80 , 0x00000034 
- 00027518  0x0000530c setarg  0x00000070 
- 00027519  0x0000530d rtn 
- 00027520  0x0000530f setarg  0x000000aa 
- 00027521  0x00005310 rtn 
- 00027522  0x00005313 reverse  0x0000003f , 0x0000003f 
- 00027523  0x00005314 store  0x00000001 , 0x00004750 
- 00027524  0x00005315 force  0x000000ef , 0x0000003f 
- 00027525  0x00005316 call  0x00006b91 
- 00027526  0x00005317 fetcht  0x00000002 , 0x0000048f 
- 00027527  0x00005318 copy  0x00000002 , 0x00000005 
- 00027528  0x00005319 istore  0x00000001 , 0x00000005 
- 00027529  0x0000531a copy  0x00000005 , 0x00000002 
- 00027530  0x0000531b storet  0x00000002 , 0x0000048f 
- 00027531  0x0000531c force  0x000000ff , 0x0000003f 
- 00027532  0x0000531d call  0x00006b91 
- 00027533  0x0000531e fetcht  0x00000002 , 0x0000048f 
- 00027534  0x0000531f copy  0x00000002 , 0x00000005 
- 00027535  0x00005320 istore  0x00000001 , 0x00000005 
- 00027536  0x00005321 rtn 
- 00027537  0x0000532b reverse  0x0000003f , 0x0000003f 
- 00027538  0x0000532c store  0x00000001 , 0x0000474f 
- 00027539  0x0000532d fetch  0x00000002 , 0x0000474f 
- 00027540  0x0000532e lshift8  0x0000003f , 0x0000003f 
- 00027541  0x0000532f store  0x00000003 , 0x0000048c 
- 00027542  0x00005330 arg  0x00000107 , 0x00000011 
- 00027543  0x00005331 arg  0x0000000f , 0x00000012 
- 00027544  0x00005332 call  0x00006baa 
- 00027545  0x00005333 xor_into  0x000000d7 , 0x0000003f 
- 00027546  0x00005334 invert  0x0000003f , 0x0000003f 
- 00027547  0x00005335 reverse  0x0000003f , 0x0000003f 
- 00027548  0x00005336 rtn 
- 00027549  0x00005341 fetch  0x00000003 , 0x0000474e 
- 00027550  0x00005342 store  0x00000003 , 0x0000048c 
- 00027551  0x00005343 arg  0x00000107 , 0x00000011 
- 00027552  0x00005344 arg  0x0000000f , 0x00000012 
- 00027553  0x00005345 call  0x00006baa 
- 00027554  0x00005346 lshift8  0x0000003f , 0x0000003f 
- 00027555  0x00005347 arg  0x00000007 , 0x00000012 
- 00027556  0x00005348 call  0x00006baa 
- 00027557  0x00005349 xor_into  0x0000002b , 0x0000003f 
- 00027558  0x0000534a invert  0x0000003f , 0x0000003f 
- 00027559  0x0000534b reverse  0x0000003f , 0x0000003f 
- 00027560  0x0000534c copy  0x0000003f , 0x00000002 
- 00027561  0x0000534d rtn 
- 00027562  0x00005350 arg  0x00000000 , 0x00000013 
- 00027563  0x00005351 copy  0x00000012 , 0x00000039 
- 00027564  0x00005352 call  0x00007dfb 
- 00027565  0x00005353 icopy  0x00000002 
- 00027566  0x00005359 copy  0x00000002 , 0x0000003f 
- 00027567  0x0000535a lshift  0x00000013 , 0x00000013 
- 00027568  0x0000535b bbit0  0x00000008 , 0x00006bb3 
- 00027569  0x0000535c ixor  0x00000011 , 0x00000002 
- 00027570  0x0000535d increase  0x00000001 , 0x00000013 
- 00027571  0x0000535f lshift  0x00000002 , 0x00000002 
- 00027572  0x00005360 fetch  0x00000003 , 0x0000048c 
- 00027573  0x00005361 increase  0xffffffff , 0x00000012 
- 00027574  0x00005362 compare  0x000000ff , 0x00000012 , 0x000000ff 
- 00027575  0x00005363 branch  0x00006bbd , 0x00000001 
- 00027576  0x00005364 copy  0x00000012 , 0x00000039 
- 00027577  0x00005365 call  0x00007dfb 
- 00027578  0x00005366 isolate1  0x00000000 , 0x0000003f 
- 00027579  0x00005367 setflag  0x00000001 , 0x00000000 , 0x00000002 
- 00027580  0x00005368 branch  0x00006bae 
- 00027581  0x0000536b rshift  0x00000002 , 0x0000003f 
- 00027582  0x0000536c rtn 
- 00027583  0x0000536f fetcht  0x00000001 , 0x0000474b 
- 00027584  0x00005372 lshift2  0x00000002 , 0x00000002 
- 00027585  0x00005373 set1  0x00000000 , 0x00000002 
- 00027586  0x00005374 fetch  0x00000001 , 0x00004751 
- 00027587  0x00005375 ncall  0x00006b65 , 0x00000034 
- 00027588  0x00005376 storet  0x00000001 , 0x000004a5 
- 00027589  0x00005377 rtn 
- 00027590  0x0000537b lshift2  0x00000002 , 0x00000002 
- 00027591  0x0000537c set1  0x00000000 , 0x00000002 
- 00027592  0x0000537d fetch  0x00000001 , 0x00004751 
- 00027593  0x0000537e call  0x00006b65 , 0x00000034 
- 00027594  0x0000537f rtn 
- 00027595  0x00005382 lshift  0x00000002 , 0x00000002 
- 00027596  0x00005383 fetch  0x00000001 , 0x00004751 
- 00027597  0x00005384 setflag  0x00000034 , 0x00000000 , 0x00000002 
- 00027598  0x00005386 rtn 
- 00027599  0x00005388 fetcht  0x00000001 , 0x00000494 
- 00027600  0x00005389 jam  0x000000d7 , 0x00000496 
- 00027601  0x0000538a call  0x00006cf6 
- 00027602  0x0000538b fetch  0x00000001 , 0x000042ba 
- 00027603  0x0000538c set1  0x00000006 , 0x0000003f 
- 00027604  0x0000538d set1  0x00000007 , 0x0000003f 
- 00027605  0x0000538e store  0x00000001 , 0x000042ba 
- 00027606  0x0000538f jam  0x00000000 , 0x00004751 
- 00027607  0x00005390 branch  0x00006cd7 
- 00027608  0x00005392 fetch  0x00000001 , 0x000042ba 
- 00027609  0x00005393 set1  0x00000007 , 0x0000003f 
- 00027610  0x00005394 store  0x00000001 , 0x000042ba 
- 00027611  0x00005395 branch  0x00006cd7 
- 00027612  0x00005399 set1  0x00000025 , 0x00000000 
- 00027613  0x0000539a bpatch  0x000000c0 , 0x00004038 
- 00027614  0x0000539b fetch  0x00000001 , 0x000047f3 
- 00027615  0x0000539c beq  0x00000000 , 0x00006be1 
- 00027616  0x0000539d branch  0x00006c8b 
- 00027617  0x000053a0 fetch  0x00000002 , 0x000002cb 
- 00027618  0x000053a1 copy  0x0000003f , 0x00000006 
- 00027619  0x000053a2 call  0x00006c0f 
- 00027620  0x000053a3 fetch  0x00000001 , 0x00000494 
- 00027621  0x000053a4 beq  0x00000000 , 0x00006be7 
- 00027622  0x000053a5 branch  0x00006c57 
- 00027623  0x000053a7 set1  0x00000025 , 0x00000000 
- 00027624  0x000053a8 bpatch  0x000000c1 , 0x00004038 
- 00027625  0x000053a9 fetch  0x00000001 , 0x00000495 
- 00027626  0x000053aa beq  0x0000003f , 0x00006bcf 
- 00027627  0x000053ab beq  0x00000073 , 0x00006bd8 
- 00027628  0x000053ac beq  0x000000ef , 0x00006bef 
- 00027629  0x000053ad rtneq  0x00000053 
- 00027630  0x000053ae branch  0x00003bf1 
- 00027631  0x000053b2 fetch  0x00000002 , 0x00000499 
- 00027632  0x000053b3 copy  0x0000003f , 0x00000006 
- 00027633  0x000053b4 call  0x00006c1a 
- 00027634  0x000053b5 fetch  0x00000001 , 0x0000049b 
- 00027635  0x000053b6 beq  0x00000041 , 0x00006bf8 
- 00027636  0x000053b7 beq  0x00000040 , 0x00006c04 
- 00027637  0x000053b8 beq  0x00000071 , 0x00006c3f 
- 00027638  0x000053b9 beq  0x00000070 , 0x00006c4e 
- 00027639  0x000053ba branch  0x00006cd7 
- 00027640  0x000053bd call  0x00006c06 
- 00027641  0x000053be fetch  0x00000001 , 0x0000474b 
- 00027642  0x000053bf rshift  0x0000003f , 0x0000003f 
- 00027643  0x000053c0 sub  0x0000003f , 0x00000001 , 0x0000003e 
- 00027644  0x000053c1 branch  0x00006bfe , 0x00000005 
- 00027645  0x000053c2 branch  0x00003bf1 
- 00027646  0x000053c4 fetch  0x00000001 , 0x000042bd 
- 00027647  0x000053c5 set1  0x00000000 , 0x0000003f 
- 00027648  0x000053c6 set1  0x00000001 , 0x0000003f 
- 00027649  0x000053c7 store  0x00000001 , 0x000042bd 
- 00027650  0x000053c8 call  0x00006d22 
- 00027651  0x000053c9 branch  0x00006cd7 
- 00027652  0x000053cc call  0x00006c06 
- 00027653  0x000053cd branch  0x00006cd7 
- 00027654  0x000053d0 call  0x00006c22 
- 00027655  0x000053d1 branch  0x00006c30 
- 00027656  0x000053d4 call  0x00006c22 
- 00027657  0x000053d5 ifetch  0x00000001 , 0x00000006 
- 00027658  0x000053d6 rshift3  0x0000003f , 0x0000003f 
- 00027659  0x000053d7 store  0x00000001 , 0x00004758 
- 00027660  0x000053d8 ifetch  0x00000001 , 0x00000006 
- 00027661  0x000053d9 store  0x00000001 , 0x000004a0 
- 00027662  0x000053da rtn 
- 00027663  0x000053de ifetch  0x00000001 , 0x00000006 
- 00027664  0x000053df store  0x00000001 , 0x00000493 
- 00027665  0x000053e0 rshift3  0x0000003f , 0x0000003f 
- 00027666  0x000053e1 store  0x00000001 , 0x00000494 
- 00027667  0x000053e2 ifetch  0x00000001 , 0x00000006 
- 00027668  0x000053e3 store  0x00000001 , 0x00000495 
- 00027669  0x000053e5 call  0x00006c27 
- 00027670  0x000053e6 storet  0x00000002 , 0x00000497 
- 00027671  0x000053e7 copy  0x00000006 , 0x0000003f 
- 00027672  0x000053e8 store  0x00000002 , 0x00000499 
- 00027673  0x000053e9 rtn 
- 00027674  0x000053ec ifetch  0x00000001 , 0x00000006 
- 00027675  0x000053ed rshift  0x0000003f , 0x0000003f 
- 00027676  0x000053ee store  0x00000001 , 0x0000049b 
- 00027677  0x000053ef call  0x00006c27 
- 00027678  0x000053f0 storet  0x00000002 , 0x0000049c 
- 00027679  0x000053f1 copy  0x00000006 , 0x0000003f 
- 00027680  0x000053f2 store  0x00000002 , 0x0000049e 
- 00027681  0x000053f3 rtn 
- 00027682  0x000053f7 fetch  0x00000002 , 0x0000049e 
- 00027683  0x000053f8 copy  0x0000003f , 0x00000006 
- 00027684  0x000053f9 rtn 
- 00027685  0x000053fc fetch  0x00000002 , 0x0000049e 
- 00027686  0x000053fd copy  0x0000003f , 0x00000006 
- 00027687  0x000053ff ifetch  0x00000001 , 0x00000006 
- 00027688  0x00005400 copy  0x0000003f , 0x00000002 
- 00027689  0x00005401 rshift  0x00000002 , 0x00000002 
- 00027690  0x00005402 rtnbit1  0x00000000 
- 00027691  0x00005403 ifetch  0x00000001 , 0x00000006 
- 00027692  0x00005404 lshift3  0x0000003f , 0x0000003f 
- 00027693  0x00005405 lshift4  0x0000003f , 0x0000003f 
- 00027694  0x00005406 iadd  0x00000002 , 0x00000002 
- 00027695  0x00005407 rtn 
- 00027696  0x0000540a ifetch  0x00000001 , 0x00000006 
- 00027697  0x0000540b store  0x00000001 , 0x0000474b 
- 00027698  0x0000540c ifetch  0x00000001 , 0x00000006 
- 00027699  0x0000540d store  0x00000001 , 0x000004a1 
- 00027700  0x0000540e ifetch  0x00000001 , 0x00000006 
- 00027701  0x0000540f store  0x00000001 , 0x000004a2 
- 00027702  0x00005410 ifetch  0x00000001 , 0x00000006 
- 00027703  0x00005411 store  0x00000001 , 0x000004a3 
- 00027704  0x00005412 ifetch  0x00000002 , 0x00000006 
- 00027705  0x00005413 store  0x00000002 , 0x0000474c 
- 00027706  0x00005414 ifetch  0x00000001 , 0x00000006 
- 00027707  0x00005415 store  0x00000001 , 0x000004a4 
- 00027708  0x00005416 ifetch  0x00000001 , 0x00000006 
- 00027709  0x00005417 store  0x00000001 , 0x00004756 
- 00027710  0x00005418 rtn 
- 00027711  0x0000541c call  0x00006c08 
- 00027712  0x0000541d fetch  0x00000001 , 0x00004758 
- 00027713  0x0000541e sub  0x0000003f , 0x00000001 , 0x0000003e 
- 00027714  0x0000541f branch  0x00006c44 , 0x00000005 
- 00027715  0x00005420 branch  0x00003bf1 
- 00027716  0x00005422 fetch  0x00000001 , 0x000042bd 
- 00027717  0x00005423 set1  0x00000005 , 0x0000003f 
- 00027718  0x00005424 set1  0x00000006 , 0x0000003f 
- 00027719  0x00005425 store  0x00000001 , 0x000042bd 
- 00027720  0x00005426 fetcht  0x00000001 , 0x0000474b 
- 00027721  0x00005427 lshift2  0x00000002 , 0x00000002 
- 00027722  0x00005428 or_into  0x00000003 , 0x00000002 
- 00027723  0x00005429 call  0x00006d55 
- 00027724  0x0000542a jam  0x00000003 , 0x00004755 
- 00027725  0x0000542b branch  0x00006cd7 
- 00027726  0x0000542e call  0x00006c08 
- 00027727  0x0000542f fetch  0x00000001 , 0x00004758 
- 00027728  0x00005430 sub  0x0000003f , 0x00000001 , 0x0000003e 
- 00027729  0x00005431 branch  0x00006c53 , 0x00000005 
- 00027730  0x00005432 branch  0x00003bf1 
- 00027731  0x00005434 fetch  0x00000001 , 0x000042bd 
- 00027732  0x00005435 set1  0x00000007 , 0x0000003f 
- 00027733  0x00005436 store  0x00000001 , 0x000042bd 
- 00027734  0x00005437 branch  0x00006cd7 
- 00027735  0x0000543a fetch  0x00000001 , 0x00000494 
- 00027736  0x0000543b sub  0x0000003f , 0x00000001 , 0x0000003e 
- 00027737  0x0000543c branch  0x00006c5b , 0x00000005 
- 00027738  0x0000543d branch  0x00003bf1 
- 00027739  0x0000543f fetch  0x00000001 , 0x00000495 
- 00027740  0x00005440 beq  0x00000073 , 0x00006c62 
- 00027741  0x00005441 beq  0x0000003f , 0x00006c66 
- 00027742  0x00005442 beq  0x000000ef , 0x00006c80 
- 00027743  0x00005443 beq  0x000000ff , 0x00006c78 
- 00027744  0x00005444 beq  0x00000053 , 0x00006c85 
- 00027745  0x00005445 branch  0x00003bf1 
- 00027746  0x00005447 fetch  0x00000001 , 0x000042bd 
- 00027747  0x00005448 set1  0x00000003 , 0x0000003f 
- 00027748  0x00005449 store  0x00000001 , 0x000042bd 
- 00027749  0x0000544a branch  0x00006cd7 
- 00027750  0x0000544c fetch  0x00000001 , 0x000042bd 
- 00027751  0x0000544d set1  0x00000003 , 0x0000003f 
- 00027752  0x0000544e set1  0x00000002 , 0x0000003f 
- 00027753  0x0000544f store  0x00000001 , 0x000042bd 
- 00027754  0x00005450 fetch  0x00000001 , 0x00000493 
- 00027755  0x00005451 call  0x00006b73 
- 00027756  0x00005452 store  0x00000001 , 0x00000496 
- 00027757  0x00005453 call  0x00006cf6 
- 00027758  0x00005454 fetch  0x00000001 , 0x00000493 
- 00027759  0x00005455 rshift2  0x0000003f , 0x0000003f 
- 00027760  0x00005456 store  0x00000001 , 0x0000474b 
- 00027761  0x00005457 lshift2  0x0000003f , 0x0000003f 
- 00027762  0x00005458 set0  0x00000001 , 0x0000003f 
- 00027763  0x00005459 set1  0x00000000 , 0x0000003f 
- 00027764  0x0000545a arg  0x00004753 , 0x00000002 
- 00027765  0x0000545b storet  0x00000002 , 0x0000048f 
- 00027766  0x0000545c call  0x00006b82 
- 00027767  0x0000545d branch  0x00006cd7 
- 00027768  0x00005460 fetch  0x00000002 , 0x00000499 
- 00027769  0x00005461 copy  0x0000003f , 0x00000006 
- 00027770  0x00005462 increase  0x00000001 , 0x0000003f 
- 00027771  0x00005463 store  0x00000002 , 0x00000499 
- 00027772  0x00005464 ifetch  0x00000001 , 0x00000006 
- 00027773  0x00005465 fetcht  0x00000001 , 0x00004756 
- 00027774  0x00005466 iadd  0x00000002 , 0x0000003f 
- 00027775  0x00005467 store  0x00000001 , 0x00004756 
- 00027776  0x00005469 call  0x00006d88 
- 00027777  0x0000546b call  0x00006bbf 
- 00027778  0x0000546c call  0x00006d6d 
- 00027779  0x0000546d call  0x00006d8e 
- 00027780  0x0000546e branch  0x00006cd7 
- 00027781  0x00005471 call  0x00006b5d 
- 00027782  0x00005472 fetch  0x00000001 , 0x00000493 
- 00027783  0x00005473 call  0x00006b73 
- 00027784  0x00005474 store  0x00000001 , 0x00000496 
- 00027785  0x00005475 call  0x00006cf6 
- 00027786  0x00005476 branch  0x00006cd7 
- 00027787  0x0000547c fetch  0x00000002 , 0x000002cb 
- 00027788  0x0000547d copy  0x0000003f , 0x00000006 
- 00027789  0x0000547e call  0x00006c0f 
- 00027790  0x0000547f fetch  0x00000001 , 0x00000494 
- 00027791  0x00005480 beq  0x00000000 , 0x00006c91 
- 00027792  0x00005481 branch  0x00006cc6 
- 00027793  0x00005484 set1  0x00000025 , 0x00000000 
- 00027794  0x00005485 bpatch  0x000000c2 , 0x00004038 
- 00027795  0x00005486 fetch  0x00000001 , 0x00000495 
- 00027796  0x00005487 beq  0x0000003f , 0x00006bcf 
- 00027797  0x00005488 beq  0x00000073 , 0x00006bd8 
- 00027798  0x00005489 beq  0x000000ef , 0x00006c98 
- 00027799  0x0000548a branch  0x00006cd7 
- 00027800  0x0000548c fetch  0x00000002 , 0x00000499 
- 00027801  0x0000548d copy  0x0000003f , 0x00000006 
- 00027802  0x0000548e call  0x00006c1a 
- 00027803  0x0000548f fetch  0x00000001 , 0x0000049b 
- 00027804  0x00005490 beq  0x00000041 , 0x00006ca1 
- 00027805  0x00005491 beq  0x00000040 , 0x00006ca1 
- 00027806  0x00005492 beq  0x00000071 , 0x00006cac 
- 00027807  0x00005493 beq  0x00000070 , 0x00006cbc 
- 00027808  0x00005494 branch  0x00006cd7 
- 00027809  0x00005497 call  0x00006c06 
- 00027810  0x00005498 fetch  0x00000001 , 0x0000474b 
- 00027811  0x00005499 rshift  0x0000003f , 0x0000003f 
- 00027812  0x0000549a fetcht  0x00000001 , 0x00004752 
- 00027813  0x0000549b isub  0x00000002 , 0x0000003e 
- 00027814  0x0000549c branch  0x00006ca8 , 0x00000005 
- 00027815  0x0000549d branch  0x00003bf1 
- 00027816  0x0000549f fetch  0x00000001 , 0x000042bd 
- 00027817  0x000054a0 set1  0x00000001 , 0x0000003f 
- 00027818  0x000054a1 store  0x00000001 , 0x000042bd 
- 00027819  0x000054a2 branch  0x00006cd7 
- 00027820  0x000054a5 call  0x00006c08 
- 00027821  0x000054a6 fetch  0x00000001 , 0x00004758 
- 00027822  0x000054a7 fetcht  0x00000001 , 0x00004752 
- 00027823  0x000054a8 isub  0x00000002 , 0x0000003e 
- 00027824  0x000054a9 branch  0x00006cb3 , 0x00000005 
- 00027825  0x000054aa branch  0x00003bf1 
- 00027826  0x000054ab branch  0x00006cd7 
- 00027827  0x000054ad fetch  0x00000001 , 0x000042bd 
- 00027828  0x000054ae set1  0x00000005 , 0x0000003f 
- 00027829  0x000054af set1  0x00000006 , 0x0000003f 
- 00027830  0x000054b0 store  0x00000001 , 0x000042bd 
- 00027831  0x000054b1 fetcht  0x00000001 , 0x0000474b 
- 00027832  0x000054b2 lshift2  0x00000002 , 0x00000002 
- 00027833  0x000054b3 or_into  0x00000003 , 0x00000002 
- 00027834  0x000054b4 call  0x00006d55 
- 00027835  0x000054b5 branch  0x00006cd7 
- 00027836  0x000054b8 call  0x00006c08 
- 00027837  0x000054b9 fetch  0x00000001 , 0x00004758 
- 00027838  0x000054ba fetcht  0x00000001 , 0x00004752 
- 00027839  0x000054bb isub  0x00000002 , 0x0000003e 
- 00027840  0x000054bc branch  0x00006cc2 , 0x00000005 
- 00027841  0x000054bd branch  0x00003bf1 
- 00027842  0x000054bf fetch  0x00000001 , 0x000042bd 
- 00027843  0x000054c0 set1  0x00000007 , 0x0000003f 
- 00027844  0x000054c1 store  0x00000001 , 0x000042bd 
- 00027845  0x000054c2 branch  0x00006cd7 
- 00027846  0x000054c5 fetch  0x00000001 , 0x00000494 
- 00027847  0x000054c6 fetcht  0x00000001 , 0x00004752 
- 00027848  0x000054c7 isub  0x00000002 , 0x0000003e 
- 00027849  0x000054c8 branch  0x00006ccc , 0x00000005 
- 00027850  0x000054c9 branch  0x00003bf1 
- 00027851  0x000054ca branch  0x00006cd7 
- 00027852  0x000054cd fetch  0x00000001 , 0x00000495 
- 00027853  0x000054ce beq  0x00000073 , 0x00006cd1 
- 00027854  0x000054cf beq  0x000000ef , 0x00006c80 
- 00027855  0x000054d0 beq  0x000000ff , 0x00006c78 
- 00027856  0x000054d1 beq  0x00000053 , 0x00006cd6 
- 00027857  0x000054d3 fetch  0x00000001 , 0x000042bd 
- 00027858  0x000054d4 set1  0x00000003 , 0x0000003f 
- 00027859  0x000054d5 store  0x00000001 , 0x000042bd 
- 00027860  0x000054d6 branch  0x00006cd7 
- 00027861  0x000054d8 branch  0x00006cd5 
- 00027862  0x000054da branch  0x00006c85 
- 00027863  0x000054dc rtn 
- 00027864  0x000054df fetch  0x00000001 , 0x00004755 
- 00027865  0x000054e0 rtn  0x00000034 
- 00027866  0x000054e1 beq  0x00000003 , 0x00006cdc 
- 00027867  0x000054e2 branch  0x00003bf1 
- 00027868  0x000054e5 jam  0x00000000 , 0x00004755 
- 00027869  0x000054e6 call  0x000052e0 
- 00027870  0x000054e7 arg  0x00000001 , 0x00000002 
- 00027871  0x000054e8 lshift3  0x00000002 , 0x00000002 
- 00027872  0x000054ea or_into  0x00000003 , 0x00000002 
- 00027873  0x000054eb arg  0x000000aa , 0x00000011 
- 00027874  0x000054ec call  0x00006d3f 
- 00027875  0x000054ed call  0x000052ef 
- 00027876  0x000054ee copy  0x00000005 , 0x00000006 
- 00027877  0x000054ef ifetch  0x00000002 , 0x00000006 
- 00027878  0x000054f0 branch  0x00003bf1 , 0x00000034 
- 00027879  0x000054f1 rtn 
- 00027880  0x000054f4 set1  0x00000025 , 0x00000000 
- 00027881  0x000054f5 bpatch  0x000000c3 , 0x00004038 
- 00027882  0x000054f6 call  0x000052ef 
- 00027883  0x000054f7 setarg  0x00000004 
- 00027884  0x000054f8 istore  0x00000002 , 0x00000005 
- 00027885  0x000054f9 fetch  0x00000002 , 0x000042b3 
- 00027886  0x000054fa istore  0x00000002 , 0x00000005 
- 00027887  0x000054fb fetch  0x00000001 , 0x00000493 
- 00027888  0x000054fc istore  0x00000001 , 0x00000005 
- 00027889  0x000054fd setarg  0x0000013f 
- 00027890  0x000054fe istore  0x00000002 , 0x00000005 
- 00027891  0x000054ff fetch  0x00000001 , 0x00000496 
- 00027892  0x00005500 istore  0x00000001 , 0x00000005 
- 00027893  0x00005501 rtn 
- 00027894  0x00005503 set1  0x00000025 , 0x00000000 
- 00027895  0x00005504 bpatch  0x000000c4 , 0x00004038 
- 00027896  0x00005505 call  0x000052e0 
- 00027897  0x00005506 call  0x000052ef 
- 00027898  0x00005507 setarg  0x00000004 
- 00027899  0x00005508 istore  0x00000002 , 0x00000005 
- 00027900  0x00005509 fetch  0x00000002 , 0x000042b3 
- 00027901  0x0000550a istore  0x00000002 , 0x00000005 
- 00027902  0x0000550b fetch  0x00000001 , 0x00000493 
- 00027903  0x0000550c istore  0x00000001 , 0x00000005 
- 00027904  0x0000550d setarg  0x00000173 
- 00027905  0x0000550e istore  0x00000002 , 0x00000005 
- 00027906  0x0000550f fetch  0x00000001 , 0x00000496 
- 00027907  0x00005510 istore  0x00000001 , 0x00000005 
- 00027908  0x00005511 rtn 
- 00027909  0x00005513 set1  0x00000025 , 0x00000000 
- 00027910  0x00005514 bpatch  0x000000c5 , 0x00004038 
- 00027911  0x00005515 call  0x000052ef 
- 00027912  0x00005516 setarg  0x0000000e 
- 00027913  0x00005517 istore  0x00000002 , 0x00000005 
- 00027914  0x00005518 fetch  0x00000002 , 0x000042b3 
- 00027915  0x00005519 istore  0x00000002 , 0x00000005 
- 00027916  0x0000551a fetch  0x00000001 , 0x00004751 
- 00027917  0x0000551b lshift  0x0000003f , 0x0000003f 
- 00027918  0x0000551c set1  0x00000000 , 0x0000003f 
- 00027919  0x0000551d istore  0x00000001 , 0x00000005 
- 00027920  0x0000551e setarg  0x000015ef 
- 00027921  0x0000551f istore  0x00000002 , 0x00000005 
- 00027922  0x00005520 setarg  0x00001183 
- 00027923  0x00005521 istore  0x00000002 , 0x00000005 
- 00027924  0x00005522 copy  0x00000002 , 0x0000003f 
- 00027925  0x00005523 istore  0x00000001 , 0x00000005 
- 00027926  0x00005524 setarg  0x000000f0 
- 00027927  0x00005525 istore  0x00000003 , 0x00000005 
- 00027928  0x00005526 setarg  0x0000007f 
- 00027929  0x00005527 istore  0x00000002 , 0x00000005 
- 00027930  0x00005528 setarg  0x00000000 
- 00027931  0x00005529 istore  0x00000001 , 0x00000005 
- 00027932  0x0000552a setarg  0x00000001 
- 00027933  0x0000552b istore  0x00000001 , 0x00000005 
- 00027934  0x0000552c call  0x00006b7c 
- 00027935  0x0000552d istore  0x00000001 , 0x00000005 
- 00027936  0x0000552e jam  0x00000010 , 0x00004757 
- 00027937  0x0000552f rtn 
- 00027938  0x00005531 set1  0x00000025 , 0x00000000 
- 00027939  0x00005532 bpatch  0x000000c6 , 0x00004038 
- 00027940  0x00005533 call  0x000052e0 
- 00027941  0x00005534 call  0x000052ef 
- 00027942  0x00005535 setarg  0x0000000e 
- 00027943  0x00005536 istore  0x00000002 , 0x00000005 
- 00027944  0x00005537 fetch  0x00000002 , 0x000042b3 
- 00027945  0x00005538 istore  0x00000002 , 0x00000005 
- 00027946  0x00005539 fetch  0x00000001 , 0x00004751 
- 00027947  0x0000553a lshift  0x0000003f , 0x0000003f 
- 00027948  0x0000553b set1  0x00000000 , 0x0000003f 
- 00027949  0x0000553c istore  0x00000001 , 0x00000005 
- 00027950  0x0000553d setarg  0x000015ef 
- 00027951  0x0000553e istore  0x00000002 , 0x00000005 
- 00027952  0x0000553f setarg  0x00001181 
- 00027953  0x00005540 istore  0x00000002 , 0x00000005 
- 00027954  0x00005541 fetch  0x00000001 , 0x0000474b 
- 00027955  0x00005542 istore  0x00000001 , 0x00000005 
- 00027956  0x00005543 setarg  0x000000e0 
- 00027957  0x00005544 istore  0x00000003 , 0x00000005 
- 00027958  0x00005545 setarg  0x0000007f 
- 00027959  0x00005546 istore  0x00000002 , 0x00000005 
- 00027960  0x00005547 setarg  0x00000000 
- 00027961  0x00005548 istore  0x00000001 , 0x00000005 
- 00027962  0x00005549 setarg  0x00000007 
- 00027963  0x0000554a istore  0x00000001 , 0x00000005 
- 00027964  0x0000554b call  0x00006b7c 
- 00027965  0x0000554c istore  0x00000001 , 0x00000005 
- 00027966  0x0000554d rtn 
- 00027967  0x0000554f set1  0x00000025 , 0x00000000 
- 00027968  0x00005550 bpatch  0x000000c7 , 0x00004038 
- 00027969  0x00005551 call  0x000052ef 
- 00027970  0x00005552 setarg  0x00000008 
- 00027971  0x00005553 istore  0x00000002 , 0x00000005 
- 00027972  0x00005554 fetch  0x00000002 , 0x000042b3 
- 00027973  0x00005555 istore  0x00000002 , 0x00000005 
- 00027974  0x00005556 fetch  0x00000001 , 0x00004751 
- 00027975  0x00005557 lshift  0x0000003f , 0x0000003f 
- 00027976  0x00005558 set1  0x00000000 , 0x0000003f 
- 00027977  0x00005559 istore  0x00000001 , 0x00000005 
- 00027978  0x0000555a setarg  0x000009ef 
- 00027979  0x0000555b istore  0x00000002 , 0x00000005 
- 00027980  0x0000555c setarg  0x000005e3 
- 00027981  0x0000555d istore  0x00000002 , 0x00000005 
- 00027982  0x0000555e copy  0x00000002 , 0x0000003f 
- 00027983  0x0000555f istore  0x00000001 , 0x00000005 
- 00027984  0x00005560 setarg  0x0000008d 
- 00027985  0x00005561 istore  0x00000001 , 0x00000005 
- 00027986  0x00005562 call  0x00006b7c 
- 00027987  0x00005563 istore  0x00000001 , 0x00000005 
- 00027988  0x00005564 rtn 
- 00027989  0x00005567 set1  0x00000025 , 0x00000000 
- 00027990  0x00005568 bpatch  0x000000c8 , 0x00004039 
- 00027991  0x00005569 call  0x000052e0 
- 00027992  0x0000556a call  0x000052ef 
- 00027993  0x0000556b setarg  0x00000008 
- 00027994  0x0000556c istore  0x00000002 , 0x00000005 
- 00027995  0x0000556d fetch  0x00000002 , 0x000042b3 
- 00027996  0x0000556e istore  0x00000002 , 0x00000005 
- 00027997  0x0000556f copy  0x00000002 , 0x0000000b 
- 00027998  0x00005570 fetch  0x00000001 , 0x00004751 
- 00027999  0x00005571 lshift  0x0000003f , 0x0000003f 
- 00028000  0x00005572 set1  0x00000000 , 0x0000003f 
- 00028001  0x00005573 istore  0x00000001 , 0x00000005 
- 00028002  0x00005574 setarg  0x000009ef 
- 00028003  0x00005575 istore  0x00000002 , 0x00000005 
- 00028004  0x00005576 setarg  0x000005e1 
- 00028005  0x00005577 istore  0x00000002 , 0x00000005 
- 00028006  0x00005578 copy  0x0000000b , 0x0000003f 
- 00028007  0x00005579 istore  0x00000001 , 0x00000005 
- 00028008  0x0000557a setarg  0x0000008d 
- 00028009  0x0000557b istore  0x00000001 , 0x00000005 
- 00028010  0x0000557c call  0x00006b7c 
- 00028011  0x0000557d istore  0x00000001 , 0x00000005 
- 00028012  0x0000557e rtn 
- 00028013  0x00005581 set1  0x00000025 , 0x00000000 
- 00028014  0x00005582 bpatch  0x000000c9 , 0x00004039 
- 00028015  0x00005583 fetch  0x00000001 , 0x00004757 
- 00028016  0x00005584 rtn  0x00000034 
- 00028017  0x00005585 hfetch  0x00000002 , 0x00008112 
- 00028018  0x00005586 nrtn  0x00000034 
- 00028019  0x00005587 copy  0x00000011 , 0x0000003f 
- 00028020  0x00005588 store  0x00000001 , 0x00000162 
- 00028021  0x00005589 storet  0x00000001 , 0x00000161 
- 00028022  0x0000558a call  0x0000527a 
- 00028023  0x0000558b nrtn  0x00000034 
- 00028024  0x0000558c call  0x000052e0 
- 00028025  0x0000558d call  0x000052ef 
- 00028026  0x0000558e setarg  0x00000005 
- 00028027  0x0000558f istore  0x00000002 , 0x00000005 
- 00028028  0x00005590 fetch  0x00000002 , 0x000042b3 
- 00028029  0x00005591 istore  0x00000002 , 0x00000005 
- 00028030  0x00005592 fetch  0x00000001 , 0x000004a5 
- 00028031  0x00005593 istore  0x00000001 , 0x00000005 
- 00028032  0x00005594 setarg  0x000001ff 
- 00028033  0x00005595 istore  0x00000002 , 0x00000005 
- 00028034  0x00005596 fetch  0x00000001 , 0x00004757 
- 00028035  0x00005597 istore  0x00000001 , 0x00000005 
- 00028036  0x00005598 fetch  0x00000001 , 0x00004754 
- 00028037  0x00005599 istore  0x00000001 , 0x00000005 
- 00028038  0x0000559a jam  0x00000000 , 0x00004757 
- 00028039  0x0000559b rtn 
- 00028040  0x0000559e fetch  0x00000002 , 0x00000497 
- 00028041  0x0000559f rtn  0x00000034 
- 00028042  0x000055a0 fetch  0x00000001 , 0x00004757 
- 00028043  0x000055a1 increase  0x00000001 , 0x0000003f 
- 00028044  0x000055a2 store  0x00000001 , 0x00004757 
- 00028045  0x000055a3 rtn 
- 00028046  0x000055a6 set1  0x00000025 , 0x00000000 
- 00028047  0x000055a7 bpatch  0x000000ca , 0x00004039 
- 00028048  0x000055a8 fetch  0x00000002 , 0x00000497 
- 00028049  0x000055a9 copy  0x0000003f , 0x00000039 
- 00028050  0x000055aa call  0x000068f7 
- 00028051  0x000055ab fetch  0x00000002 , 0x00000499 
- 00028052  0x000055ac copy  0x0000003f , 0x00000006 
- 00028053  0x000055ad call  0x00004976 
- 00028054  0x000055ae branch  0x000068fa 
- 00028055  0x000055b1 set1  0x00000025 , 0x00000000 
- 00028056  0x000055b2 bpatch  0x000000cb , 0x00004039 
- 00028057  0x000055b4 fetch  0x00000001 , 0x00004756 
- 00028058  0x000055b5 rtn  0x00000034 
- 00028059  0x000055b6 increase  0xffffffff , 0x0000003f 
- 00028060  0x000055b7 store  0x00000001 , 0x00004756 
- 00028061  0x000055b8 fetch  0x00000002 , 0x0000474c 
- 00028062  0x000055b9 fetcht  0x00000002 , 0x0000480e 
- 00028063  0x000055ba isub  0x00000002 , 0x0000003e 
- 00028064  0x000055bb branch  0x00006da2 , 0x00000002 
- 00028065  0x000055bc store  0x00000002 , 0x0000480e 
- 00028066  0x000055be fetch  0x00000001 , 0x00004757 
- 00028067  0x000055bf branch  0x00006daa , 0x00000034 
- 00028068  0x000055c0 jam  0x00000001 , 0x000004a8 
- 00028069  0x000055c1 fetch  0x00000001 , 0x00004754 
- 00028070  0x000055c2 store  0x00000001 , 0x000004a7 
- 00028071  0x000055c3 setarg  0x000000ff 
- 00028072  0x000055c4 store  0x00000001 , 0x000004a6 
- 00028073  0x000055c5 branch  0x00006daf 
- 00028074  0x000055c7 jam  0x00000000 , 0x000004a8 
- 00028075  0x000055c8 fetch  0x00000001 , 0x00004753 
- 00028076  0x000055c9 store  0x00000001 , 0x000004a7 
- 00028077  0x000055ca setarg  0x000000ef 
- 00028078  0x000055cb store  0x00000001 , 0x000004a6 
- 00028079  0x000055cd set1  0x00000025 , 0x00000000 
- 00028080  0x000055ce bpatch  0x000000cc , 0x00004039 
- 00028081  0x000055cf fetch  0x00000001 , 0x0000480e 
- 00028082  0x000055d0 sub  0x0000003f , 0x0000007f , 0x0000003e 
- 00028083  0x000055d1 branch  0x00006db7 , 0x00000002 
- 00028084  0x000055d2 fetch  0x00000001 , 0x000004a8 
- 00028085  0x000055d3 increase  0x00000001 , 0x0000003f 
- 00028086  0x000055d4 store  0x00000001 , 0x000004a8 
- 00028087  0x000055d6 call  0x00006bbf 
- 00028088  0x000055d7 fetch  0x00000002 , 0x0000480e 
- 00028089  0x000055d8 increase  0x00000008 , 0x0000003f 
- 00028090  0x000055d9 fetcht  0x00000001 , 0x000004a8 
- 00028091  0x000055da iadd  0x00000002 , 0x00000011 
- 00028092  0x000055dc call  0x00005248 
- 00028093  0x000055dd store  0x00000002 , 0x000002de 
- 00028094  0x000055de increase  0x00000004 , 0x0000003f 
- 00028095  0x000055df store  0x00000002 , 0x000002e0 
- 00028096  0x000055e0 copy  0x0000003f , 0x00000005 
- 00028097  0x000055e1 fetch  0x00000001 , 0x000004a5 
- 00028098  0x000055e2 istore  0x00000001 , 0x00000005 
- 00028099  0x000055e3 fetch  0x00000001 , 0x000004a6 
- 00028100  0x000055e4 istore  0x00000001 , 0x00000005 
- 00028101  0x000055e5 call  0x00006dd8 
- 00028102  0x000055e6 call  0x00006de8 
- 00028103  0x000055e7 call  0x00007f6b 
- 00028104  0x000055e8 fetch  0x00000001 , 0x0000480e 
- 00028105  0x000055e9 copy  0x0000003f , 0x00000039 
- 00028106  0x000055ea call  0x0000497c 
- 00028107  0x000055eb fetch  0x00000001 , 0x000004a7 
- 00028108  0x000055ec istore  0x00000001 , 0x00000005 
- 00028109  0x000055ed fetch  0x00000002 , 0x000002de 
- 00028110  0x000055ee copy  0x0000003f , 0x00000005 
- 00028111  0x000055ef fetch  0x00000002 , 0x0000480e 
- 00028112  0x000055f0 fetcht  0x00000001 , 0x000004a8 
- 00028113  0x000055f1 iadd  0x00000002 , 0x0000003f 
- 00028114  0x000055f2 increase  0x00000004 , 0x0000003f 
- 00028115  0x000055f3 istore  0x00000002 , 0x00000005 
- 00028116  0x000055f4 fetch  0x00000002 , 0x000042b3 
- 00028117  0x000055f5 istore  0x00000002 , 0x00000005 
- 00028118  0x000055f6 jam  0x00000000 , 0x00004757 
- 00028119  0x000055f7 branch  0x0000428c 
- 00028120  0x000055fa fetch  0x00000002 , 0x0000480e 
- 00028121  0x000055fb sub  0x0000003f , 0x0000007f , 0x0000003e 
- 00028122  0x000055fc nbranch  0x00006ddf , 0x00000002 
- 00028123  0x000055fd lshift  0x0000003f , 0x0000003f 
- 00028124  0x000055fe set1  0x00000000 , 0x0000003f 
- 00028125  0x000055ff istore  0x00000001 , 0x00000005 
- 00028126  0x00005600 rtn 
- 00028127  0x00005602 fetch  0x00000002 , 0x0000480e 
- 00028128  0x00005603 rshift3  0x0000003f , 0x0000003f 
- 00028129  0x00005604 rshift4  0x0000003f , 0x00000002 
- 00028130  0x00005605 and_into  0x0000007f , 0x0000003f 
- 00028131  0x00005606 lshift  0x0000003f , 0x0000003f 
- 00028132  0x00005607 set0  0x00000000 , 0x0000003f 
- 00028133  0x00005608 istore  0x00000001 , 0x00000005 
- 00028134  0x00005609 istoret  0x00000001 , 0x00000005 
- 00028135  0x0000560a rtn 
- 00028136  0x0000560c fetch  0x00000001 , 0x00004757 
- 00028137  0x0000560d rtn  0x00000034 
- 00028138  0x0000560e istore  0x00000001 , 0x00000005 
- 00028139  0x0000560f rtn 
- 00028140  0x00005615 set1  0x00000025 , 0x00000000 
- 00028141  0x00005616 bpatch  0x0000009d , 0x00004033 
- 00028142  0x00005617 call  0x00007c45 
- 00028143  0x00005618 call  0x00003e73 
- 00028144  0x00005619 call  0x00006235 
- 00028145  0x0000561b set1  0x00000025 , 0x00000000 
- 00028146  0x0000561c bpatch  0x0000009e , 0x00004033 
- 00028147  0x0000561d call  0x00007813 
- 00028148  0x0000561e call  0x000077ee 
- 00028149  0x0000561f call  0x000077fe 
- 00028150  0x00005621 set1  0x00000025 , 0x00000000 
- 00028151  0x00005622 bpatch  0x0000009f , 0x00004033 
- 00028152  0x00005623 fetch  0x00000001 , 0x00004132 
- 00028153  0x00005624 rtneq  0x00000001 
- 00028154  0x00005626 call  0x0000527a 
- 00028155  0x00005627 nrtn  0x00000034 
- 00028156  0x00005629 call  0x00004dcd 
- 00028157  0x0000562b call  0x0000527a 
- 00028158  0x0000562c nrtn  0x00000034 
- 00028159  0x0000562d set1  0x00000025 , 0x00000000 
- 00028160  0x0000562e bpatch  0x000000a0 , 0x00004034 
- 00028161  0x00005630 call  0x00006e47 
- 00028162  0x00005631 call  0x00004f6e 
- 00028163  0x00005632 call  0x00006cd8 
- 00028164  0x00005634 call  0x00006e0a 
- 00028165  0x00005635 set1  0x00000025 , 0x00000000 
- 00028166  0x00005636 bpatch  0x000000a1 , 0x00004034 
- 00028167  0x00005637 call  0x0000527a 
- 00028168  0x00005638 nrtn  0x00000034 
- 00028169  0x00005639 branch  0x00003e6f 
- 00028170  0x0000563c set1  0x00000025 , 0x00000000 
- 00028171  0x0000563d bpatch  0x000000a2 , 0x00004034 
- 00028172  0x0000563e fetch  0x00000001 , 0x000002e6 
- 00028173  0x0000563f bbit1  0x00000000 , 0x0000508f 
- 00028174  0x00005640 bbit1  0x00000007 , 0x00005099 
- 00028175  0x00005641 rtn 
- 00028176  0x00005644 set1  0x00000025 , 0x00000000 
- 00028177  0x00005645 bpatch  0x000000a3 , 0x00004034 
- 00028178  0x00005646 call  0x0000527e 
- 00028179  0x00005647 rtn  0x00000034 
- 00028180  0x00005648 fetch  0x00000001 , 0x0000004b 
- 00028181  0x00005649 rtnbit1  0x00000006 
- 00028182  0x0000564a call  0x00005261 
- 00028183  0x0000564b store  0x00000002 , 0x00000179 
- 00028184  0x0000564c copy  0x0000003f , 0x00000006 
- 00028185  0x0000564d ifetch  0x00000002 , 0x00000006 
- 00028186  0x0000564e increase  0x00000004 , 0x0000003f 
- 00028187  0x0000564f store  0x00000002 , 0x00000091 
- 00028188  0x00005650 jam  0x00000006 , 0x00000090 
- 00028189  0x00005651 set1  0x00000025 , 0x00000000 
- 00028190  0x00005652 bpatch  0x000000a4 , 0x00004034 
- 00028191  0x00005653 fetch  0x00000002 , 0x000042af 
- 00028192  0x00005654 branch  0x00006e2d , 0x00000034 
- 00028193  0x00005655 fetch  0x00000001 , 0x0000004b 
- 00028194  0x00005656 rtnbit0  0x00000007 
- 00028195  0x00005657 set0  0x00000007 , 0x0000003f 
- 00028196  0x00005658 store  0x00000001 , 0x0000004b 
- 00028197  0x00005659 jam  0x00000005 , 0x00000090 
- 00028198  0x0000565a fetcht  0x00000002 , 0x000042af 
- 00028199  0x0000565b fetch  0x00000002 , 0x00000179 
- 00028200  0x0000565c iadd  0x00000002 , 0x0000003f 
- 00028201  0x0000565d store  0x00000002 , 0x00000179 
- 00028202  0x0000565e fetch  0x00000002 , 0x00000091 
- 00028203  0x0000565f isub  0x00000002 , 0x0000003f 
- 00028204  0x00005660 store  0x00000002 , 0x00000091 
- 00028205  0x00005662 set1  0x00000025 , 0x00000000 
- 00028206  0x00005663 bpatch  0x000000a5 , 0x00004034 
- 00028207  0x00005664 fetch  0x00000002 , 0x00000091 
- 00028208  0x00005665 branch  0x00003bf1 , 0x00000034 
- 00028209  0x00005666 arg  0x00000104 , 0x00000002 
- 00028210  0x00005667 isub  0x00000002 , 0x0000003f 
- 00028211  0x00005668 nbranch  0x00006e3b , 0x00000002 
- 00028212  0x00005669 set1  0x00000025 , 0x00000000 
- 00028213  0x0000566a bpatch  0x000000a6 , 0x00004034 
- 00028214  0x0000566b storet  0x00000002 , 0x00000091 
- 00028215  0x0000566c fetch  0x00000002 , 0x000042af 
- 00028216  0x0000566d iadd  0x00000002 , 0x0000003f 
- 00028217  0x0000566e store  0x00000002 , 0x000042af 
- 00028218  0x0000566f branch  0x00006e3d 
- 00028219  0x00005671 setarg  0x00000000 
- 00028220  0x00005672 store  0x00000002 , 0x000042af 
- 00028221  0x00005674 fetch  0x00000001 , 0x0000004b 
- 00028222  0x00005675 set1  0x00000006 , 0x0000003f 
- 00028223  0x00005676 store  0x00000001 , 0x0000004b 
- 00028224  0x00005677 rtn 
- 00028225  0x0000567a fetch  0x00000001 , 0x000047f6 
- 00028226  0x0000567b bbit1  0x00000000 , 0x00006e45 
- 00028227  0x0000567c jam  0x00000001 , 0x000002ee 
- 00028228  0x0000567d rtn 
- 00028229  0x0000567f jam  0x0000000f , 0x000002ee 
- 00028230  0x00005680 rtn 
- 00028231  0x00005683 fetch  0x00000001 , 0x000047f3 
- 00028232  0x00005684 nbranch  0x00006e4d , 0x00000034 
- 00028233  0x00005686 fetch  0x00000001 , 0x000002ed 
- 00028234  0x00005688 rtn  0x00000034 
- 00028235  0x0000568a jam  0x00000000 , 0x000002ed 
- 00028236  0x0000568c rtn 
- 00028237  0x00005690 set1  0x00000025 , 0x00000000 
- 00028238  0x00005691 bpatch  0x000000a7 , 0x00004034 
- 00028239  0x00005692 fetch  0x00000001 , 0x000002ee 
- 00028240  0x00005693 rtn  0x00000034 
- 00028241  0x00005694 beq  0x00000001 , 0x00006e6e 
- 00028242  0x00005695 beq  0x00000002 , 0x00006ec7 
- 00028243  0x00005696 beq  0x00000003 , 0x00006e74 
- 00028244  0x00005697 beq  0x00000004 , 0x00006ecb 
- 00028245  0x00005698 beq  0x0000003b , 0x00006e7e 
- 00028246  0x00005699 beq  0x0000003c , 0x00006ece 
- 00028247  0x0000569a beq  0x0000000d , 0x00006e83 
- 00028248  0x0000569b beq  0x0000000e , 0x00006ed3 
- 00028249  0x0000569c beq  0x0000000f , 0x00006e86 
- 00028250  0x0000569d beq  0x00000010 , 0x00006ed9 
- 00028251  0x0000569e beq  0x00000011 , 0x00006e8c 
- 00028252  0x0000569f beq  0x00000012 , 0x00006edd 
- 00028253  0x000056a0 beq  0x00000013 , 0x00006e92 
- 00028254  0x000056a1 beq  0x00000014 , 0x00006ee1 
- 00028255  0x000056a2 beq  0x00000015 , 0x00006e98 
- 00028256  0x000056a3 beq  0x00000016 , 0x00006ee5 
- 00028257  0x000056a4 beq  0x00000017 , 0x00006e9e 
- 00028258  0x000056a5 beq  0x00000018 , 0x00006eea 
- 00028259  0x000056a6 beq  0x00000019 , 0x00006ea4 
- 00028260  0x000056a7 beq  0x0000001a , 0x00006eee 
- 00028261  0x000056a8 beq  0x0000001b , 0x00006eaa 
- 00028262  0x000056a9 beq  0x0000001c , 0x00006ef2 
- 00028263  0x000056aa beq  0x0000001d , 0x00006eb0 
- 00028264  0x000056ab beq  0x0000001e , 0x00006ef7 
- 00028265  0x000056ac beq  0x0000001f , 0x00006eb6 
- 00028266  0x000056ad beq  0x00000020 , 0x00006efb 
- 00028267  0x000056ae beq  0x00000021 , 0x00006ec1 
- 00028268  0x000056af beq  0x00000022 , 0x00006eff 
- 00028269  0x000056b1 rtn 
- 00028270  0x000056b3 call  0x00006f0a 
- 00028271  0x000056b4 jam  0x00000002 , 0x000002ee 
- 00028272  0x000056b5 fetch  0x00000001 , 0x000042b9 
- 00028273  0x000056b6 set1  0x00000000 , 0x0000003f 
- 00028274  0x000056b7 store  0x00000001 , 0x000042b9 
- 00028275  0x000056b8 rtn 
- 00028276  0x000056ba jam  0x00000004 , 0x000002ee 
- 00028277  0x000056bb fetch  0x00000001 , 0x000042b9 
- 00028278  0x000056bc rtnbit1  0x00000002 
- 00028279  0x000056bd jam  0x00000003 , 0x000002ee 
- 00028280  0x000056be call  0x00006f12 
- 00028281  0x000056bf jam  0x00000004 , 0x000002ee 
- 00028282  0x000056c0 fetch  0x00000001 , 0x000042b9 
- 00028283  0x000056c1 set1  0x00000002 , 0x0000003f 
- 00028284  0x000056c2 store  0x00000001 , 0x000042b9 
- 00028285  0x000056c3 rtn 
- 00028286  0x000056c5 call  0x0000527e 
- 00028287  0x000056c6 nrtn  0x00000034 
- 00028288  0x000056c7 call  0x00006f23 
- 00028289  0x000056c8 jam  0x0000003c , 0x000002ee 
- 00028290  0x000056c9 rtn 
- 00028291  0x000056cb call  0x00006f18 
- 00028292  0x000056cc jam  0x0000000e , 0x000002ee 
- 00028293  0x000056cd rtn 
- 00028294  0x000056cf call  0x00006f36 
- 00028295  0x000056d0 jam  0x00000010 , 0x000002ee 
- 00028296  0x000056d1 fetch  0x00000001 , 0x000042bb 
- 00028297  0x000056d2 set1  0x00000000 , 0x0000003f 
- 00028298  0x000056d3 store  0x00000001 , 0x000042bb 
- 00028299  0x000056d4 rtn 
- 00028300  0x000056d6 call  0x00006f3e 
- 00028301  0x000056d7 jam  0x00000012 , 0x000002ee 
- 00028302  0x000056d8 fetch  0x00000001 , 0x000042bb 
- 00028303  0x000056d9 set1  0x00000002 , 0x0000003f 
- 00028304  0x000056da store  0x00000001 , 0x000042bb 
- 00028305  0x000056db rtn 
- 00028306  0x000056dd call  0x00006f44 
- 00028307  0x000056de jam  0x00000014 , 0x000002ee 
- 00028308  0x000056df fetch  0x00000001 , 0x000042bc 
- 00028309  0x000056e0 set1  0x00000000 , 0x0000003f 
- 00028310  0x000056e1 store  0x00000001 , 0x000042bc 
- 00028311  0x000056e2 rtn 
- 00028312  0x000056e4 call  0x00006f4c 
- 00028313  0x000056e5 jam  0x00000016 , 0x000002ee 
- 00028314  0x000056e6 fetch  0x00000001 , 0x000042bc 
- 00028315  0x000056e7 set1  0x00000002 , 0x0000003f 
- 00028316  0x000056e8 store  0x00000001 , 0x000042bc 
- 00028317  0x000056e9 rtn 
- 00028318  0x000056eb call  0x00006f28 
- 00028319  0x000056ec jam  0x00000018 , 0x000002ee 
- 00028320  0x000056ed fetch  0x00000001 , 0x000042ba 
- 00028321  0x000056ee set1  0x00000000 , 0x0000003f 
- 00028322  0x000056ef store  0x00000001 , 0x000042ba 
- 00028323  0x000056f0 rtn 
- 00028324  0x000056f2 call  0x00006f30 
- 00028325  0x000056f3 jam  0x0000001a , 0x000002ee 
- 00028326  0x000056f4 fetch  0x00000001 , 0x000042ba 
- 00028327  0x000056f5 set1  0x00000002 , 0x0000003f 
- 00028328  0x000056f6 store  0x00000001 , 0x000042ba 
- 00028329  0x000056f7 rtn 
- 00028330  0x000056f9 call  0x00006f52 
- 00028331  0x000056fa jam  0x0000001c , 0x000002ee 
- 00028332  0x000056fb fetch  0x00000001 , 0x000042ba 
- 00028333  0x000056fc set1  0x00000006 , 0x0000003f 
- 00028334  0x000056fd store  0x00000001 , 0x000042ba 
- 00028335  0x000056fe rtn 
- 00028336  0x00005700 call  0x00006f5a 
- 00028337  0x00005701 fetch  0x00000001 , 0x000042bd 
- 00028338  0x00005702 set1  0x00000000 
- 00028339  0x00005703 store  0x00000001 , 0x000042bd 
- 00028340  0x00005704 jam  0x0000001e , 0x000002ee 
- 00028341  0x00005705 rtn 
- 00028342  0x00005707 call  0x00006f61 
- 00028343  0x00005708 fetch  0x00000001 , 0x000042bd 
- 00028344  0x00005709 set1  0x00000002 
- 00028345  0x0000570a store  0x00000001 , 0x000042bd 
- 00028346  0x0000570b jam  0x00000020 , 0x000002ee 
- 00028347  0x0000570c fetch  0x00000001 , 0x00004752 
- 00028348  0x0000570d lshift3  0x0000003f , 0x0000003f 
- 00028349  0x0000570e or_into  0x00000003 , 0x0000003f 
- 00028350  0x0000570f arg  0x00004753 , 0x00000002 
- 00028351  0x00005710 storet  0x00000002 , 0x0000048f 
- 00028352  0x00005711 branch  0x00006b82 
- 00028353  0x00005713 call  0x00006f6c 
- 00028354  0x00005714 fetch  0x00000001 , 0x000042bd 
- 00028355  0x00005715 set1  0x00000004 
- 00028356  0x00005716 store  0x00000001 , 0x000042bd 
- 00028357  0x00005717 jam  0x00000022 , 0x000002ee 
- 00028358  0x00005718 rtn 
- 00028359  0x0000571b fetch  0x00000001 , 0x000042b9 
- 00028360  0x0000571c rtnbit0  0x00000001 
- 00028361  0x0000571d jam  0x00000003 , 0x000002ee 
- 00028362  0x0000571e branch  0x00006e4d 
- 00028363  0x00005720 fetch  0x00000001 , 0x000042b9 
- 00028364  0x00005721 rtnne  0x0000003f 
- 00028365  0x00005722 jam  0x0000003b , 0x000002ee 
- 00028366  0x00005724 fetch  0x00000001 , 0x000002ec 
- 00028367  0x00005725 rtnne  0x00000017 
- 00028368  0x00005726 jam  0x00000000 , 0x000002ec 
- 00028369  0x00005727 jam  0x0000000d , 0x000002ee 
- 00028370  0x00005728 branch  0x00006e4d 
- 00028371  0x0000572a fetch  0x00000001 , 0x000042b9 
- 00028372  0x0000572b nrtn  0x00000034 
- 00028373  0x0000572c fetch  0x00000001 , 0x000047f6 
- 00028374  0x0000572d bbit1  0x00000000 , 0x00006f02 
- 00028375  0x0000572e bbit1  0x00000006 , 0x00006f04 
- 00028376  0x0000572f branch  0x00006f08 
- 00028377  0x00005731 fetch  0x00000001 , 0x000042bb 
- 00028378  0x00005732 rtnbit0  0x00000001 
- 00028379  0x00005733 jam  0x00000011 , 0x000002ee 
- 00028380  0x00005734 branch  0x00006e4d 
- 00028381  0x00005736 fetch  0x00000001 , 0x000042bb 
- 00028382  0x00005737 rtnne  0x0000003f 
- 00028383  0x00005738 jam  0x00000013 , 0x000002ee 
- 00028384  0x00005739 branch  0x00006e4d 
- 00028385  0x0000573b fetch  0x00000001 , 0x000042bc 
- 00028386  0x0000573c rtnbit0  0x00000001 
- 00028387  0x0000573d jam  0x00000015 , 0x000002ee 
- 00028388  0x0000573e branch  0x00006e4d 
- 00028389  0x00005740 fetch  0x00000001 , 0x000042bc 
- 00028390  0x00005741 rtnne  0x0000003f 
- 00028391  0x00005742 fetch  0x00000001 , 0x000047f6 
- 00028392  0x00005743 bbit1  0x00000006 , 0x00006f04 
- 00028393  0x00005744 branch  0x00006f08 
- 00028394  0x00005746 fetch  0x00000001 , 0x000042ba 
- 00028395  0x00005747 rtnbit0  0x00000001 
- 00028396  0x00005748 jam  0x00000019 , 0x000002ee 
- 00028397  0x00005749 branch  0x00006e4d 
- 00028398  0x0000574b fetch  0x00000001 , 0x000042ba 
- 00028399  0x0000574c rtnne  0x0000003f 
- 00028400  0x0000574d jam  0x0000001b , 0x000002ee 
- 00028401  0x0000574e branch  0x00006e4d 
- 00028402  0x00005750 fetch  0x00000001 , 0x000042ba 
- 00028403  0x00005751 rtnne  0x000000ff 
- 00028404  0x00005752 fetch  0x00000001 , 0x000047f6 
- 00028405  0x00005753 bbit1  0x00000006 , 0x00006f06 
- 00028406  0x00005754 branch  0x00006f08 
- 00028407  0x00005756 fetch  0x00000001 , 0x000042bd 
- 00028408  0x00005757 rtnbit0  0x00000001 
- 00028409  0x00005758 jam  0x0000001f , 0x000002ee 
- 00028410  0x00005759 branch  0x00006e4d 
- 00028411  0x0000575b fetch  0x00000001 , 0x000042bd 
- 00028412  0x0000575c rtnbit0  0x00000003 
- 00028413  0x0000575d jam  0x00000021 , 0x000002ee 
- 00028414  0x0000575e branch  0x00006e4d 
- 00028415  0x00005760 fetch  0x00000001 , 0x000042bd 
- 00028416  0x00005761 rtnne  0x000000ff 
- 00028417  0x00005762 branch  0x00006f08 
- 00028418  0x00005765 jam  0x0000000f , 0x000002ee 
- 00028419  0x00005766 branch  0x00006e4d 
- 00028420  0x00005769 jam  0x00000017 , 0x000002ee 
- 00028421  0x0000576a branch  0x00006e4d 
- 00028422  0x0000576c jam  0x0000001d , 0x000002ee 
- 00028423  0x0000576d branch  0x00006e4d 
- 00028424  0x00005772 jam  0x00000000 , 0x000002ee 
- 00028425  0x00005773 rtn 
- 00028426  0x00005775 set1  0x00000025 , 0x00000000 
- 00028427  0x00005776 bpatch  0x000000a8 , 0x00004035 
- 00028428  0x00005777 call  0x000052c4 
- 00028429  0x00005778 setarg  0x00000001 
- 00028430  0x00005779 copy  0x0000003f , 0x00000002 
- 00028431  0x0000577a setarg  0x00000050 
- 00028432  0x0000577b copy  0x0000003f , 0x0000000b 
- 00028433  0x0000577c branch  0x000050b0 
- 00028434  0x0000577f set1  0x00000025 , 0x00000000 
- 00028435  0x00005780 bpatch  0x000000a9 , 0x00004035 
- 00028436  0x00005781 call  0x000052c4 
- 00028437  0x00005782 fetch  0x00000002 , 0x000042b1 
- 00028438  0x00005783 copy  0x0000003f , 0x00000002 
- 00028439  0x00005784 branch  0x000050c0 
- 00028440  0x00005787 set1  0x00000025 , 0x00000000 
- 00028441  0x00005788 bpatch  0x000000aa , 0x00004035 
- 00028442  0x00005789 call  0x000052c4 
- 00028443  0x0000578a fetch  0x00000002 , 0x000042b1 
- 00028444  0x0000578b copy  0x0000003f , 0x00000002 
- 00028445  0x0000578c arg  0x00000050 , 0x0000000b 
- 00028446  0x0000578d call  0x000050d6 
- 00028447  0x0000578e fetch  0x00000001 , 0x000042b9 
- 00028448  0x0000578f set0  0x00000005 , 0x0000003f 
- 00028449  0x00005790 store  0x00000001 , 0x000042b9 
- 00028450  0x00005791 rtn 
- 00028451  0x00005794 set1  0x00000025 , 0x00000000 
- 00028452  0x00005795 bpatch  0x000000ab , 0x00004035 
- 00028453  0x00005796 call  0x000052d2 
- 00028454  0x00005797 call  0x000071b0 
- 00028455  0x00005798 branch  0x000050f2 
- 00028456  0x0000579b set1  0x00000025 , 0x00000000 
- 00028457  0x0000579c bpatch  0x000000ac , 0x00004035 
- 00028458  0x0000579d call  0x000052c4 
- 00028459  0x0000579e setarg  0x00000003 
- 00028460  0x0000579f copy  0x0000003f , 0x00000002 
- 00028461  0x000057a0 setarg  0x00000051 
- 00028462  0x000057a1 copy  0x0000003f , 0x0000000b 
- 00028463  0x000057a2 branch  0x000050b0 
- 00028464  0x000057a5 set1  0x00000025 , 0x00000000 
- 00028465  0x000057a6 bpatch  0x000000ad , 0x00004035 
- 00028466  0x000057a7 call  0x000052c4 
- 00028467  0x000057a8 fetch  0x00000002 , 0x000042b3 
- 00028468  0x000057a9 copy  0x0000003f , 0x00000002 
- 00028469  0x000057aa branch  0x000050c0 
- 00028470  0x000057ad set1  0x00000025 , 0x00000000 
- 00028471  0x000057ae bpatch  0x000000ae , 0x00004035 
- 00028472  0x000057af call  0x000052c4 
- 00028473  0x000057b0 setarg  0x00000011 
- 00028474  0x000057b1 copy  0x0000003f , 0x00000002 
- 00028475  0x000057b2 setarg  0x00000052 
- 00028476  0x000057b3 copy  0x0000003f , 0x0000000b 
- 00028477  0x000057b4 branch  0x000050b0 
- 00028478  0x000057b7 set1  0x00000025 , 0x00000000 
- 00028479  0x000057b8 bpatch  0x000000af , 0x00004035 
- 00028480  0x000057b9 call  0x000052c4 
- 00028481  0x000057ba fetch  0x00000002 , 0x000042b5 
- 00028482  0x000057bb copy  0x0000003f , 0x00000002 
- 00028483  0x000057bc branch  0x000050c0 
- 00028484  0x000057bf set1  0x00000025 , 0x00000000 
- 00028485  0x000057c0 bpatch  0x000000b0 , 0x00004036 
- 00028486  0x000057c1 call  0x000052c4 
- 00028487  0x000057c2 setarg  0x00000013 
- 00028488  0x000057c3 copy  0x0000003f , 0x00000002 
- 00028489  0x000057c4 setarg  0x00000053 
- 00028490  0x000057c5 copy  0x0000003f , 0x0000000b 
- 00028491  0x000057c6 branch  0x000050b0 
- 00028492  0x000057c9 set1  0x00000025 , 0x00000000 
- 00028493  0x000057ca bpatch  0x000000b1 , 0x00004036 
- 00028494  0x000057cb call  0x000052c4 
- 00028495  0x000057cc fetch  0x00000002 , 0x000042b7 
- 00028496  0x000057cd copy  0x0000003f , 0x00000002 
- 00028497  0x000057ce branch  0x000050c0 
- 00028498  0x000057d1 set1  0x00000025 , 0x00000000 
- 00028499  0x000057d2 bpatch  0x000000b2 , 0x00004036 
- 00028500  0x000057d3 call  0x000052e0 
- 00028501  0x000057d5 jam  0x00000003 , 0x00000493 
- 00028502  0x000057d6 jam  0x0000001c , 0x00000496 
- 00028503  0x000057d7 call  0x00006ce8 
- 00028504  0x000057d8 jam  0x00000001 , 0x00004751 
- 00028505  0x000057d9 rtn 
- 00028506  0x000057dc set1  0x00000025 , 0x00000000 
- 00028507  0x000057dd bpatch  0x000000b3 , 0x00004036 
- 00028508  0x000057de call  0x000052e0 
- 00028509  0x000057df fetcht  0x00000001 , 0x00004752 
- 00028510  0x000057e0 call  0x00006bcb 
- 00028511  0x000057e1 storet  0x00000001 , 0x0000474b 
- 00028512  0x000057e2 branch  0x00006d05 
- 00028513  0x000057e5 set1  0x00000025 , 0x00000000 
- 00028514  0x000057e6 bpatch  0x000000b4 , 0x00004036 
- 00028515  0x000057e7 call  0x000052e0 
- 00028516  0x000057e8 fetcht  0x00000001 , 0x0000474b 
- 00028517  0x000057e9 call  0x00006bc0 
- 00028518  0x000057ea call  0x00006b67 
- 00028519  0x000057eb store  0x00000001 , 0x00000496 
- 00028520  0x000057ec fetcht  0x00000001 , 0x0000474b 
- 00028521  0x000057ed call  0x00006bc0 
- 00028522  0x000057ee storet  0x00000001 , 0x00000493 
- 00028523  0x000057ef branch  0x00006ce8 
- 00028524  0x000057f2 set1  0x00000025 , 0x00000000 
- 00028525  0x000057f3 bpatch  0x000000b5 , 0x00004036 
- 00028526  0x000057f4 call  0x000052e0 
- 00028527  0x000057f5 fetcht  0x00000001 , 0x0000474b 
- 00028528  0x000057f6 call  0x00006bc0 
- 00028529  0x000057f7 branch  0x00006d3f 
- 00028530  0x00005805 set1  0x00000025 , 0x00000000 
- 00028531  0x00005806 bpatch  0x000000e7 , 0x0000403c 
- 00028532  0x00005807 fetch  0x00000002 , 0x000002cb 
- 00028533  0x00005808 iforce  0x00000006 
- 00028534  0x00005809 ifetch  0x00000001 , 0x00000006 
- 00028535  0x0000580a copy  0x0000003f , 0x00000012 
- 00028536  0x0000580b store  0x00000001 , 0x000004af 
- 00028537  0x0000580c ifetch  0x00000002 , 0x00000006 
- 00028538  0x0000580d store  0x00000002 , 0x000004b0 
- 00028539  0x0000580e ifetch  0x00000001 , 0x00000006 
- 00028540  0x0000580f lshift8  0x0000003f , 0x0000000b 
- 00028541  0x00005810 ifetch  0x00000001 , 0x00000006 
- 00028542  0x00005811 iadd  0x0000000b , 0x0000000b 
- 00028543  0x00005812 set1  0x00000025 , 0x00000000 
- 00028544  0x00005813 bpatch  0x000000e8 , 0x0000403d 
- 00028545  0x00005814 deposit  0x00000012 
- 00028546  0x00005815 beq  0x00000002 , 0x00006f87 
- 00028547  0x00005816 beq  0x00000004 , 0x00006fb0 
- 00028548  0x00005817 beq  0x00000006 , 0x0000708b 
- 00028549  0x00005818 beq  0x00000007 , 0x000071c7 
- 00028550  0x00005819 branch  0x0000723e 
- 00028551  0x00005825 call  0x0000724d 
- 00028552  0x00005826 compare  0x00000001 , 0x00000002 , 0x000000ff 
- 00028553  0x00005827 branch  0x000072bb , 0x00000001 
- 00028554  0x00005828 compare  0x000000ff , 0x00000002 , 0x000000ff 
- 00028555  0x00005829 branch  0x00007241 , 0x00000001 
- 00028556  0x0000582b ifetch  0x00000002 , 0x00000006 
- 00028557  0x0000582c store  0x00000002 , 0x000004b4 
- 00028558  0x0000582d increase  0xfffffffe , 0x0000000b 
- 00028559  0x0000582f increase  0xffffffff , 0x0000000b 
- 00028560  0x00005830 nbranch  0x0000723b , 0x00000005 
- 00028561  0x00005831 arg  0x000004a9 , 0x0000000b 
- 00028562  0x00005832 ifetch  0x00000002 , 0x0000000b 
- 00028563  0x00005833 rtn  0x00000034 
- 00028564  0x00005834 increase  0x00000002 , 0x0000000b 
- 00028565  0x00005835 call  0x00007307 
- 00028566  0x00005836 call  0x000052de 
- 00028567  0x00005837 force  0x00000003 , 0x0000003f 
- 00028568  0x00005838 istore  0x00000001 , 0x00000005 
- 00028569  0x00005839 fetch  0x00000002 , 0x000004b0 
- 00028570  0x0000583a istore  0x00000002 , 0x00000005 
- 00028571  0x0000583b lshift2  0x00000007 , 0x0000003f 
- 00028572  0x0000583c add  0x0000003f , 0x00000005 , 0x0000003f 
- 00028573  0x0000583d add  0x0000003f , 0x00000005 , 0x00000013 
- 00028574  0x0000583e byteswap  0x0000003f , 0x0000003f 
- 00028575  0x0000583f istore  0x00000002 , 0x00000005 
- 00028576  0x00005840 deposit  0x00000007 
- 00028577  0x00005841 byteswap  0x0000003f , 0x0000003f 
- 00028578  0x00005842 istore  0x00000002 , 0x00000005 
- 00028579  0x00005843 istore  0x00000002 , 0x00000005 
- 00028580  0x00005844 arg  0x000004c5 , 0x00000006 
- 00028581  0x00005845 copy  0x00000007 , 0x00000039 
- 00028582  0x00005846 branch  0x00006faa , 0x00000005 
- 00028583  0x00005848 ifetch  0x00000004 , 0x00000006 
- 00028584  0x00005849 istore  0x00000004 , 0x00000005 
- 00028585  0x0000584a loop  0x00006fa7 
- 00028586  0x0000584c force  0x00000000 , 0x0000003f 
- 00028587  0x0000584d istore  0x00000001 , 0x00000005 
- 00028588  0x0000584e deposit  0x00000013 
- 00028589  0x0000584f store  0x00000001 , 0x000002dc 
- 00028590  0x00005850 branch  0x00003bf1 , 0x00000034 
- 00028591  0x00005851 rtn 
- 00028592  0x0000585d ifetch  0x00000004 , 0x00000006 
- 00028593  0x0000585e store  0x00000004 , 0x000004be 
- 00028594  0x0000585f increase  0xfffffffc , 0x0000000b 
- 00028595  0x00005860 iforce  0x00000002 
- 00028596  0x00005861 ifetch  0x00000002 , 0x00000006 
- 00028597  0x00005862 byteswap  0x0000003f , 0x0000003f 
- 00028598  0x00005863 increase  0xffffffee , 0x0000003f 
- 00028599  0x00005864 store  0x00000002 , 0x000004b2 
- 00028600  0x00005865 increase  0xfffffffe , 0x0000000b 
- 00028601  0x00005866 call  0x000072a4 
- 00028602  0x00005867 branch  0x00007241 , 0x00000005 
- 00028603  0x00005868 compare  0x00000005 , 0x00000011 , 0x000000ff 
- 00028604  0x0000586a branch  0x00006fc0 , 0x00000001 
- 00028605  0x0000586c arg  0x00000491 , 0x00000005 
- 00028606  0x0000586d force  0x00000000 , 0x00000007 
- 00028607  0x0000586e branch  0x00006fd0 
- 00028608  0x00005870 ifetch  0x00000001 , 0x00000006 
- 00028609  0x00005871 bne  0x0000000a , 0x00007241 
- 00028610  0x00005872 ifetch  0x00000002 , 0x00000006 
- 00028611  0x00005873 nbranch  0x00006fce , 0x00000034 
- 00028612  0x00005874 ifetch  0x00000001 , 0x00000006 
- 00028613  0x00005875 bne  0x000000ff , 0x00006fcc 
- 00028614  0x00005876 ifetch  0x00000001 , 0x00000006 
- 00028615  0x00005877 bne  0x000000ff , 0x00006fca 
- 00028616  0x00005878 increase  0xfffffffb , 0x00000006 
- 00028617  0x00005879 branch  0x00007022 
- 00028618  0x0000587b increase  0xfffffffb , 0x00000006 
- 00028619  0x0000587c branch  0x00006fbd 
- 00028620  0x0000587e increase  0xfffffffc , 0x00000006 
- 00028621  0x0000587f branch  0x00006fbd 
- 00028622  0x00005881 increase  0xfffffffd , 0x00000006 
- 00028623  0x00005882 branch  0x00006fbd 
- 00028624  0x00005884 ifetch  0x00000001 , 0x00000006 
- 00028625  0x00005885 beq  0x00000009 , 0x00006fe5 
- 00028626  0x00005886 beq  0x0000000a , 0x00006fd3 
- 00028627  0x00005888 ifetch  0x00000002 , 0x00000006 
- 00028628  0x00005889 istore  0x00000002 , 0x00000005 
- 00028629  0x0000588a increase  0x00000001 , 0x00000007 
- 00028630  0x0000588b byteswap  0x0000003f , 0x00000012 
- 00028631  0x0000588c ifetch  0x00000002 , 0x00000006 
- 00028632  0x0000588d byteswap  0x0000003f , 0x0000003f 
- 00028633  0x0000588f increase  0x00000001 , 0x00000012 
- 00028634  0x00005890 isub  0x00000012 , 0x0000003e 
- 00028635  0x00005891 nbranch  0x00006fe2 , 0x00000002 
- 00028636  0x00005892 copy  0x0000003f , 0x00000013 
- 00028637  0x00005893 byteswap  0x00000012 , 0x0000003f 
- 00028638  0x00005894 istore  0x00000002 , 0x00000005 
- 00028639  0x00005895 increase  0x00000001 , 0x00000007 
- 00028640  0x00005896 copy  0x00000013 , 0x0000003f 
- 00028641  0x00005897 branch  0x00006fd9 
- 00028642  0x00005899 increase  0xfffffffb , 0x0000000b 
- 00028643  0x0000589a increase  0xfffffffb , 0x00000011 
- 00028644  0x0000589b branch  0x00006fea 
- 00028645  0x0000589d ifetch  0x00000002 , 0x00000006 
- 00028646  0x0000589e istore  0x00000002 , 0x00000005 
- 00028647  0x0000589f increase  0x00000001 , 0x00000007 
- 00028648  0x000058a0 increase  0xfffffffd , 0x0000000b 
- 00028649  0x000058a1 increase  0xfffffffd , 0x00000011 
- 00028650  0x000058a3 nbranch  0x00007241 , 0x00000002 
- 00028651  0x000058a4 nbranch  0x00006fd0 , 0x00000005 
- 00028652  0x000058a5 increase  0xffffffff , 0x0000000b 
- 00028653  0x000058a6 nbranch  0x00007241 , 0x00000005 
- 00028654  0x000058a8 call  0x000052de 
- 00028655  0x000058a9 increase  0x0000000a , 0x00000005 
- 00028656  0x000058aa arg  0x00000491 , 0x00000011 
- 00028657  0x000058ac copy  0x00000007 , 0x0000003f 
- 00028658  0x000058ad branch  0x00007004 , 0x00000034 
- 00028659  0x000058ae ifetch  0x00000002 , 0x00000011 
- 00028660  0x000058af branch  0x00007004 , 0x00000034 
- 00028661  0x000058b0 iforce  0x00000012 
- 00028662  0x000058b1 fetch  0x00000004 , 0x000004be 
- 00028663  0x000058b2 iforce  0x00000002 
- 00028664  0x000058b3 call  0x0000734e 
- 00028665  0x000058b4 branch  0x00007001 , 0x00000034 
- 00028666  0x000058b5 increase  0xfffffffd , 0x00000006 
- 00028667  0x000058b6 ifetch  0x00000003 , 0x00000006 
- 00028668  0x000058b7 istore  0x00000003 , 0x00000005 
- 00028669  0x000058b8 call  0x00007199 
- 00028670  0x000058b9 branch  0x00007001 , 0x00000034 
- 00028671  0x000058ba iforce  0x00000039 
- 00028672  0x000058bb call  0x00007e45 
- 00028673  0x000058bd increase  0x00000002 , 0x00000011 
- 00028674  0x000058be increase  0xffffffff , 0x00000007 
- 00028675  0x000058bf branch  0x00006ff1 
- 00028676  0x000058c2 force  0x00000000 , 0x0000003f 
- 00028677  0x000058c3 istore  0x00000001 , 0x00000005 
- 00028678  0x000058c4 increase  0xffffffff , 0x00000005 
- 00028679  0x000058c5 fetcht  0x00000002 , 0x000002da 
- 00028680  0x000058c6 add  0x00000002 , 0x0000000a , 0x0000003f 
- 00028681  0x000058c7 isub  0x00000005 , 0x0000003f 
- 00028682  0x000058c8 sub  0x0000003f , 0x00000000 , 0x00000011 
- 00028683  0x000058c9 byteswap  0x00000011 , 0x0000003f 
- 00028684  0x000058ca add  0x00000002 , 0x00000008 , 0x00000012 
- 00028685  0x000058cb istore  0x00000002 , 0x00000012 
- 00028686  0x000058cc increase  0x00000003 , 0x00000011 
- 00028687  0x000058cd byteswap  0x00000011 , 0x0000003f 
- 00028688  0x000058ce add  0x00000002 , 0x00000005 , 0x00000012 
- 00028689  0x000058cf istore  0x00000002 , 0x00000012 
- 00028690  0x000058d0 increase  0x00000003 , 0x00000011 
- 00028691  0x000058d1 byteswap  0x00000011 , 0x0000003f 
- 00028692  0x000058d2 add  0x00000002 , 0x00000003 , 0x00000012 
- 00028693  0x000058d3 istore  0x00000002 , 0x00000012 
- 00028694  0x000058d4 increase  0x00000005 , 0x00000011 
- 00028695  0x000058d5 copy  0x00000011 , 0x0000003f 
- 00028696  0x000058d6 store  0x00000002 , 0x000002dc 
- 00028697  0x000058d7 setarg  0x00000036 
- 00028698  0x000058d8 add  0x00000002 , 0x00000007 , 0x00000012 
- 00028699  0x000058d9 istore  0x00000001 , 0x00000012 
- 00028700  0x000058da setarg  0x00000005 
- 00028701  0x000058db istore  0x00000001 , 0x00000002 
- 00028702  0x000058dc fetch  0x00000002 , 0x000004b0 
- 00028703  0x000058dd add  0x00000002 , 0x00000001 , 0x00000012 
- 00028704  0x000058de istore  0x00000002 , 0x00000012 
- 00028705  0x000058df rtn 
- 00028706  0x000058e1 ifetch  0x00000001 , 0x00000006 
- 00028707  0x000058e2 bne  0x0000000a , 0x00007241 
- 00028708  0x000058e3 ifetch  0x00000002 , 0x00000006 
- 00028709  0x000058e4 nbranch  0x00007241 , 0x00000034 
- 00028710  0x000058e5 ifetch  0x00000001 , 0x00000006 
- 00028711  0x000058e6 bne  0x000000ff , 0x00007241 
- 00028712  0x000058e7 ifetch  0x00000001 , 0x00000006 
- 00028713  0x000058e8 bne  0x000000ff , 0x00007241 
- 00028714  0x000058e9 increase  0xfffffffb , 0x0000000b 
- 00028715  0x000058ea ifetch  0x00000001 , 0x00000006 
- 00028716  0x000058eb beq  0x00000000 , 0x0000702f 
- 00028717  0x000058ec beq  0x00000001 , 0x00007032 
- 00028718  0x000058ed beq  0x00000002 , 0x00007036 
- 00028719  0x000058ef store  0x00000002 , 0x000004ad 
- 00028720  0x000058f0 increase  0xffffffff , 0x0000000b 
- 00028721  0x000058f1 branch  0x0000703a 
- 00028722  0x000058f3 ifetch  0x00000001 , 0x00000006 
- 00028723  0x000058f4 store  0x00000002 , 0x000004ad 
- 00028724  0x000058f5 increase  0xfffffffe , 0x0000000b 
- 00028725  0x000058f6 branch  0x0000703a 
- 00028726  0x000058f8 ifetch  0x00000002 , 0x00000006 
- 00028727  0x000058f9 byteswap  0x0000003f , 0x0000003f 
- 00028728  0x000058fa store  0x00000002 , 0x000004ad 
- 00028729  0x000058fb increase  0xfffffffd , 0x0000000b 
- 00028730  0x000058fd nbranch  0x0000723b , 0x00000005 
- 00028731  0x000058fe call  0x0000731e 
- 00028732  0x000058ff nbranch  0x00007238 , 0x00000005 
- 00028733  0x00005900 copy  0x00000006 , 0x00000011 
- 00028734  0x00005901 call  0x000052de 
- 00028735  0x00005902 copy  0x00000011 , 0x00000006 
- 00028736  0x00005903 increase  0x00000003 , 0x00000005 
- 00028737  0x00005904 copy  0x00000006 , 0x0000000b 
- 00028738  0x00005905 call  0x000072e8 
- 00028739  0x00005906 copy  0x0000003f , 0x00000011 
- 00028740  0x00005907 fetch  0x00000002 , 0x000004ad 
- 00028741  0x00005908 copy  0x0000003f , 0x00000012 
- 00028742  0x00005909 copy  0x00000011 , 0x0000003f 
- 00028743  0x0000590a isub  0x00000012 , 0x00000012 
- 00028744  0x0000590b fetch  0x00000002 , 0x000004b2 
- 00028745  0x0000590c isub  0x00000012 , 0x0000003e 
- 00028746  0x0000590d nbranch  0x00007066 , 0x00000002 
- 00028747  0x0000590f disable  0x00000028 
- 00028748  0x00005910 fetch  0x00000002 , 0x000004ad 
- 00028749  0x00005911 branch  0x00007059 , 0x00000034 
- 00028750  0x00005912 iadd  0x0000000b , 0x00000006 
- 00028751  0x00005913 increase  0x00000003 , 0x00000012 
- 00028752  0x00005914 copy  0x00000012 , 0x00000039 
- 00028753  0x00005915 copy  0x00000039 , 0x0000003f 
- 00028754  0x00005916 increase  0x00000003 , 0x0000003f 
- 00028755  0x00005917 byteswap  0x0000003f , 0x0000003f 
- 00028756  0x00005918 istore  0x00000002 , 0x00000005 
- 00028757  0x00005919 copy  0x00000039 , 0x0000003f 
- 00028758  0x0000591a byteswap  0x0000003f , 0x0000003f 
- 00028759  0x0000591b istore  0x00000002 , 0x00000005 
- 00028760  0x0000591c branch  0x00007074 
- 00028761  0x0000591e add  0x00000011 , 0x00000006 , 0x00000039 
- 00028762  0x0000591f branch  0x0000705d , 0x00000028 
- 00028763  0x00005920 byteswap  0x00000039 , 0x0000003f 
- 00028764  0x00005921 branch  0x00007060 
- 00028765  0x00005923 copy  0x00000039 , 0x0000003f 
- 00028766  0x00005924 increase  0x00000002 , 0x0000003f 
- 00028767  0x00005925 byteswap  0x0000003f , 0x0000003f 
- 00028768  0x00005927 istore  0x00000002 , 0x00000005 
- 00028769  0x00005928 increase  0xfffffffd , 0x00000039 
- 00028770  0x00005929 byteswap  0x00000039 , 0x0000003f 
- 00028771  0x0000592a istore  0x00000002 , 0x00000005 
- 00028772  0x0000592b copy  0x0000000b , 0x00000006 
- 00028773  0x0000592c branch  0x00007074 
- 00028774  0x0000592e enable  0x00000028 
- 00028775  0x0000592f fetch  0x00000002 , 0x000004b2 
- 00028776  0x00005930 copy  0x0000003f , 0x00000011 
- 00028777  0x00005931 copy  0x0000003f , 0x00000039 
- 00028778  0x00005932 fetch  0x00000002 , 0x000004ad 
- 00028779  0x00005933 branch  0x00007059 , 0x00000034 
- 00028780  0x00005934 iadd  0x0000000b , 0x00000006 
- 00028781  0x00005935 copy  0x00000011 , 0x0000003f 
- 00028782  0x00005936 increase  0x00000005 , 0x0000003f 
- 00028783  0x00005937 byteswap  0x0000003f , 0x0000003f 
- 00028784  0x00005938 istore  0x00000002 , 0x00000005 
- 00028785  0x00005939 copy  0x00000011 , 0x0000003f 
- 00028786  0x0000593a byteswap  0x0000003f , 0x0000003f 
- 00028787  0x0000593b istore  0x00000002 , 0x00000005 
- 00028788  0x0000593d ifetch  0x00000001 , 0x00000006 
- 00028789  0x0000593e istore  0x00000001 , 0x00000005 
- 00028790  0x0000593f loop  0x00007074 
- 00028791  0x00005940 nbranch  0x0000707f , 0x00000028 
- 00028792  0x00005941 force  0x00000002 , 0x0000003f 
- 00028793  0x00005942 istore  0x00000001 , 0x00000005 
- 00028794  0x00005943 copy  0x00000006 , 0x0000003f 
- 00028795  0x00005944 isub  0x0000000b , 0x0000003f 
- 00028796  0x00005945 byteswap  0x0000003f , 0x0000003f 
- 00028797  0x00005946 istore  0x00000002 , 0x00000005 
- 00028798  0x00005947 branch  0x00007081 
- 00028799  0x00005949 force  0x00000000 , 0x0000003f 
- 00028800  0x0000594a istore  0x00000001 , 0x00000005 
- 00028801  0x0000594c fetch  0x00000002 , 0x000002da 
- 00028802  0x0000594d isub  0x00000005 , 0x0000003f 
- 00028803  0x0000594e sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00028804  0x0000594f store  0x00000002 , 0x000002dc 
- 00028805  0x00005950 call  0x000052de 
- 00028806  0x00005951 setarg  0x00000005 
- 00028807  0x00005952 istore  0x00000001 , 0x00000005 
- 00028808  0x00005953 fetch  0x00000002 , 0x000004b0 
- 00028809  0x00005954 istore  0x00000002 , 0x00000005 
- 00028810  0x00005955 rtn 
- 00028811  0x00005962 call  0x0000724d 
- 00028812  0x00005963 compare  0x000000ff , 0x00000002 , 0x000000ff 
- 00028813  0x00005964 branch  0x000070b4 , 0x00000001 
- 00028814  0x00005965 ifetch  0x00000002 , 0x00000006 
- 00028815  0x00005966 store  0x00000002 , 0x000004b2 
- 00028816  0x00005967 increase  0xfffffffe , 0x0000000b 
- 00028817  0x00005968 call  0x000072a4 
- 00028818  0x00005969 arg  0x00000491 , 0x00000005 
- 00028819  0x0000596a force  0x00000000 , 0x00000007 
- 00028820  0x0000596c ifetch  0x00000003 , 0x00000006 
- 00028821  0x0000596d bne  0x00000009 , 0x000070b4 
- 00028822  0x0000596f rshift8  0x0000003f , 0x0000003f 
- 00028823  0x00005970 istore  0x00000002 , 0x00000005 
- 00028824  0x00005971 increase  0x00000001 , 0x00000007 
- 00028825  0x00005972 increase  0xfffffffd , 0x0000000b 
- 00028826  0x00005973 increase  0xfffffffd , 0x00000011 
- 00028827  0x00005974 nbranch  0x00007241 , 0x00000002 
- 00028828  0x00005975 nbranch  0x00007094 , 0x00000005 
- 00028829  0x00005976 increase  0xffffffff , 0x0000000b 
- 00028830  0x00005977 nbranch  0x00007241 , 0x00000005 
- 00028831  0x00005979 call  0x000052de 
- 00028832  0x0000597a increase  0x0000000d , 0x00000005 
- 00028833  0x0000597b fetch  0x00000002 , 0x000004a9 
- 00028834  0x0000597c iforce  0x00000013 
- 00028835  0x0000597d arg  0x00000491 , 0x00000011 
- 00028836  0x0000597f ifetch  0x00000004 , 0x00000011 
- 00028837  0x00005980 branch  0x000070c4 , 0x00000034 
- 00028838  0x00005981 ifetch  0x00000002 , 0x00000011 
- 00028839  0x00005982 iforce  0x00000012 
- 00028840  0x00005983 call  0x0000732a 
- 00028841  0x00005984 branch  0x000070b2 , 0x00000034 
- 00028842  0x00005985 increase  0xfffffffd , 0x00000006 
- 00028843  0x00005986 ifetch  0x00000003 , 0x00000006 
- 00028844  0x00005987 istore  0x00000003 , 0x00000005 
- 00028845  0x00005988 call  0x00007199 
- 00028846  0x00005989 iforce  0x00000039 
- 00028847  0x0000598b ifetch  0x00000001 , 0x00000006 
- 00028848  0x0000598c istore  0x00000001 , 0x00000005 
- 00028849  0x0000598d loop  0x000070af 
- 00028850  0x0000598f increase  0x00000002 , 0x00000011 
- 00028851  0x00005990 branch  0x000070a4 
- 00028852  0x00005995 ifetch  0x00000001 , 0x00000006 
- 00028853  0x00005997 ifetch  0x00000001 , 0x00000006 
- 00028854  0x00005999 increase  0xfffffffb , 0x0000000b 
- 00028855  0x0000599a increase  0xfffffffb , 0x00000011 
- 00028856  0x0000599b nbranch  0x00007241 , 0x00000002 
- 00028857  0x0000599c arg  0x000004a9 , 0x0000000b 
- 00028858  0x0000599d ifetch  0x00000002 , 0x0000000b 
- 00028859  0x0000599f increase  0x00000002 , 0x0000000b 
- 00028860  0x000059a0 call  0x00007307 
- 00028861  0x000059a1 deposit  0x00000007 
- 00028862  0x000059a2 store  0x00000001 , 0x000004dd 
- 00028863  0x000059a3 branch  0x000072be , 0x00000034 
- 00028864  0x000059a4 arg  0x00000000 , 0x00000007 
- 00028865  0x000059a5 call  0x000052de 
- 00028866  0x000059a6 increase  0x0000000a , 0x00000005 
- 00028867  0x000059a7 branch  0x00007108 
- 00028868  0x000059a9 force  0x00000000 , 0x0000003f 
- 00028869  0x000059aa istore  0x00000001 , 0x00000005 
- 00028870  0x000059ab increase  0xffffffff , 0x00000005 
- 00028871  0x000059ac fetcht  0x00000002 , 0x000002da 
- 00028872  0x000059ad add  0x00000002 , 0x0000000d , 0x0000003f 
- 00028873  0x000059ae isub  0x00000005 , 0x0000003f 
- 00028874  0x000059af branch  0x000070e8 , 0x00000005 
- 00028875  0x000059b0 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00028876  0x000059b1 add  0x00000002 , 0x0000000c , 0x00000012 
- 00028877  0x000059b2 istore  0x00000001 , 0x00000012 
- 00028878  0x000059b3 increase  0x00000003 , 0x0000003f 
- 00028879  0x000059b4 add  0x00000002 , 0x00000009 , 0x00000012 
- 00028880  0x000059b5 istore  0x00000001 , 0x00000012 
- 00028881  0x000059b6 increase  0x00000003 , 0x0000003f 
- 00028882  0x000059b7 byteswap  0x0000003f , 0x0000003f 
- 00028883  0x000059b8 add  0x00000002 , 0x00000005 , 0x00000012 
- 00028884  0x000059b9 istore  0x00000002 , 0x00000012 
- 00028885  0x000059ba rshift8  0x0000003f , 0x0000003f 
- 00028886  0x000059bb increase  0x00000003 , 0x0000003f 
- 00028887  0x000059bc byteswap  0x0000003f , 0x0000003f 
- 00028888  0x000059bd add  0x00000002 , 0x00000003 , 0x00000012 
- 00028889  0x000059be istore  0x00000002 , 0x00000012 
- 00028890  0x000059bf rshift8  0x0000003f , 0x0000003f 
- 00028891  0x000059c0 increase  0x00000005 , 0x0000003f 
- 00028892  0x000059c1 store  0x00000001 , 0x000002dc 
- 00028893  0x000059c3 fetch  0x00000002 , 0x000004b0 
- 00028894  0x000059c4 add  0x00000002 , 0x00000001 , 0x00000012 
- 00028895  0x000059c5 istore  0x00000002 , 0x00000012 
- 00028896  0x000059c6 setarg  0x00000007 
- 00028897  0x000059c7 istore  0x00000001 , 0x00000002 
- 00028898  0x000059cc setarg  0x00000036 
- 00028899  0x000059cd add  0x00000002 , 0x00000007 , 0x00000012 
- 00028900  0x000059ce istore  0x00000002 , 0x00000012 
- 00028901  0x000059cf add  0x00000002 , 0x0000000a , 0x00000012 
- 00028902  0x000059d0 istore  0x00000002 , 0x00000012 
- 00028903  0x000059d1 rtn 
- 00028904  0x000059d3 jam  0x0000000a , 0x000002dc 
- 00028905  0x000059d4 call  0x000052de 
- 00028906  0x000059d6 setarg  0x00000007 
- 00028907  0x000059d7 istore  0x00000001 , 0x00000005 
- 00028908  0x000059d8 fetch  0x00000002 , 0x000004b0 
- 00028909  0x000059d9 istore  0x00000002 , 0x00000005 
- 00028910  0x000059dd setarg  0x00000500 
- 00028911  0x000059de istore  0x00000002 , 0x00000005 
- 00028912  0x000059e1 setarg  0x00000200 
- 00028913  0x000059e2 istore  0x00000002 , 0x00000005 
- 00028914  0x000059e6 setarg  0x00000035 
- 00028915  0x000059e7 istore  0x00000003 , 0x00000005 
- 00028916  0x000059e8 rtn 
- 00028917  0x000059eb ifetch  0x00000001 , 0x00000006 
- 00028918  0x000059ec istore  0x00000001 , 0x00000005 
- 00028919  0x000059ed increase  0x00000001 , 0x00000012 
- 00028920  0x000059ee increase  0xffffffff , 0x00000011 
- 00028921  0x000059ef branch  0x000070fb , 0x00000005 
- 00028922  0x000059f0 loop  0x000070f5 
- 00028923  0x000059f2 copy  0x00000005 , 0x0000000b 
- 00028924  0x000059f3 copy  0x00000012 , 0x0000003f 
- 00028925  0x000059f4 store  0x00000002 , 0x000004ad 
- 00028926  0x000059f5 copy  0x00000011 , 0x0000003f 
- 00028927  0x000059f6 store  0x00000002 , 0x000004b2 
- 00028928  0x000059f7 branch  0x00007117 , 0x00000034 
- 00028929  0x000059f8 branch  0x00007152 , 0x00000028 
- 00028930  0x000059f9 copy  0x0000000b , 0x00000005 
- 00028931  0x000059fb increase  0x00000001 , 0x00000007 
- 00028932  0x000059fc fetch  0x00000001 , 0x000004dd 
- 00028933  0x000059fd isub  0x00000007 , 0x0000003e 
- 00028934  0x000059fe nbranch  0x00007108 , 0x00000005 
- 00028935  0x000059ff branch  0x00007171 
- 00028936  0x00005a01 arg  0x000004c5 , 0x00000006 
- 00028937  0x00005a02 lshift2  0x00000007 , 0x0000003f 
- 00028938  0x00005a03 iadd  0x00000006 , 0x00000006 
- 00028939  0x00005a04 ifetch  0x00000004 , 0x00000006 
- 00028940  0x00005a05 iforce  0x00000002 
- 00028941  0x00005a06 call  0x0000731e 
- 00028942  0x00005a07 copy  0x00000006 , 0x0000000b 
- 00028943  0x00005a08 call  0x000072e8 
- 00028944  0x00005a09 add  0x0000003f , 0x00000003 , 0x00000039 
- 00028945  0x00005a0a fetch  0x00000002 , 0x000004b2 
- 00028946  0x00005a0b copy  0x0000003f , 0x00000011 
- 00028947  0x00005a0c fetch  0x00000002 , 0x000004ad 
- 00028948  0x00005a0d copy  0x0000003f , 0x00000012 
- 00028949  0x00005a0e copy  0x0000000b , 0x00000006 
- 00028950  0x00005a0f branch  0x000070f5 
- 00028951  0x00005a11 arg  0x00000000 , 0x00000007 
- 00028952  0x00005a12 arg  0x00000000 , 0x00000012 
- 00028953  0x00005a14 arg  0x000004c5 , 0x00000006 
- 00028954  0x00005a15 lshift2  0x00000007 , 0x0000003f 
- 00028955  0x00005a16 iadd  0x00000006 , 0x00000006 
- 00028956  0x00005a17 ifetch  0x00000004 , 0x00000006 
- 00028957  0x00005a18 iforce  0x00000002 
- 00028958  0x00005a19 call  0x0000731e 
- 00028959  0x00005a1a call  0x000072e8 
- 00028960  0x00005a1b add  0x0000003f , 0x00000003 , 0x0000003f 
- 00028961  0x00005a1c iadd  0x00000012 , 0x00000012 
- 00028962  0x00005a1d increase  0x00000001 , 0x00000007 
- 00028963  0x00005a1e fetch  0x00000001 , 0x000004dd 
- 00028964  0x00005a1f isub  0x00000007 , 0x0000003e 
- 00028965  0x00005a20 nbranch  0x00007119 , 0x00000005 
- 00028966  0x00005a22 copy  0x0000000b , 0x00000005 
- 00028967  0x00005a23 force  0x00000002 , 0x0000003f 
- 00028968  0x00005a24 istore  0x00000001 , 0x00000005 
- 00028969  0x00005a25 fetch  0x00000002 , 0x000004ad 
- 00028970  0x00005a26 byteswap  0x0000003f , 0x0000003f 
- 00028971  0x00005a27 istore  0x00000002 , 0x00000005 
- 00028972  0x00005a28 increase  0xfffffffd , 0x00000005 
- 00028973  0x00005a29 fetcht  0x00000002 , 0x000002da 
- 00028974  0x00005a2a add  0x00000002 , 0x0000000a , 0x0000003f 
- 00028975  0x00005a2b isub  0x00000005 , 0x0000003f 
- 00028976  0x00005a2c sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00028977  0x00005a2d iforce  0x00000011 
- 00028978  0x00005a2f deposit  0x00000012 
- 00028979  0x00005a30 add  0x00000002 , 0x00000009 , 0x00000012 
- 00028980  0x00005a31 istore  0x00000001 , 0x00000012 
- 00028981  0x00005a32 rshift8  0x0000003f , 0x0000003f 
- 00028982  0x00005a33 add  0x00000002 , 0x00000008 , 0x00000012 
- 00028983  0x00005a34 istore  0x00000001 , 0x00000012 
- 00028984  0x00005a35 increase  0x00000003 , 0x00000011 
- 00028985  0x00005a36 deposit  0x00000011 
- 00028986  0x00005a37 add  0x00000002 , 0x00000006 , 0x00000012 
- 00028987  0x00005a38 istore  0x00000001 , 0x00000012 
- 00028988  0x00005a39 rshift8  0x0000003f , 0x0000003f 
- 00028989  0x00005a3a add  0x00000002 , 0x00000005 , 0x00000012 
- 00028990  0x00005a3b istore  0x00000001 , 0x00000012 
- 00028991  0x00005a3c increase  0x00000005 , 0x00000011 
- 00028992  0x00005a3d deposit  0x00000011 
- 00028993  0x00005a3e add  0x00000002 , 0x00000004 , 0x00000012 
- 00028994  0x00005a3f istore  0x00000001 , 0x00000012 
- 00028995  0x00005a40 rshift8  0x0000003f , 0x0000003f 
- 00028996  0x00005a41 add  0x00000002 , 0x00000003 , 0x00000012 
- 00028997  0x00005a42 istore  0x00000001 , 0x00000012 
- 00028998  0x00005a43 increase  0x00000005 , 0x00000011 
- 00028999  0x00005a44 deposit  0x00000011 
- 00029000  0x00005a45 store  0x00000002 , 0x000002dc 
- 00029001  0x00005a46 setarg  0x00000007 
- 00029002  0x00005a47 istore  0x00000001 , 0x00000002 
- 00029003  0x00005a48 setarg  0x00000036 
- 00029004  0x00005a49 add  0x00000002 , 0x00000007 , 0x00000012 
- 00029005  0x00005a4a istore  0x00000001 , 0x00000012 
- 00029006  0x00005a4b add  0x00000002 , 0x00000001 , 0x00000012 
- 00029007  0x00005a4c fetch  0x00000002 , 0x000004b0 
- 00029008  0x00005a4d istore  0x00000002 , 0x00000012 
- 00029009  0x00005a4e rtn 
- 00029010  0x00005a50 copy  0x0000000b , 0x00000005 
- 00029011  0x00005a51 force  0x00000000 , 0x0000003f 
- 00029012  0x00005a52 istore  0x00000001 , 0x00000005 
- 00029013  0x00005a53 increase  0xffffffff , 0x00000005 
- 00029014  0x00005a54 fetcht  0x00000002 , 0x000002da 
- 00029015  0x00005a55 add  0x00000002 , 0x00000007 , 0x0000003f 
- 00029016  0x00005a56 isub  0x00000005 , 0x0000003f 
- 00029017  0x00005a57 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00029018  0x00005a58 iforce  0x00000011 
- 00029019  0x00005a5a deposit  0x00000011 
- 00029020  0x00005a5b add  0x00000002 , 0x00000006 , 0x00000012 
- 00029021  0x00005a5c istore  0x00000001 , 0x00000012 
- 00029022  0x00005a5d rshift8  0x0000003f , 0x0000003f 
- 00029023  0x00005a5e add  0x00000002 , 0x00000005 , 0x00000012 
- 00029024  0x00005a5f istore  0x00000001 , 0x00000012 
- 00029025  0x00005a60 increase  0x00000003 , 0x00000011 
- 00029026  0x00005a61 deposit  0x00000011 
- 00029027  0x00005a62 add  0x00000002 , 0x00000004 , 0x00000012 
- 00029028  0x00005a63 istore  0x00000001 , 0x00000012 
- 00029029  0x00005a64 rshift8  0x0000003f , 0x0000003f 
- 00029030  0x00005a65 add  0x00000002 , 0x00000003 , 0x00000012 
- 00029031  0x00005a66 istore  0x00000001 , 0x00000012 
- 00029032  0x00005a67 increase  0x00000005 , 0x00000011 
- 00029033  0x00005a68 deposit  0x00000011 
- 00029034  0x00005a69 store  0x00000002 , 0x000002dc 
- 00029035  0x00005a6b setarg  0x00000007 
- 00029036  0x00005a6c istore  0x00000001 , 0x00000002 
- 00029037  0x00005a6e fetch  0x00000002 , 0x000004b0 
- 00029038  0x00005a6f add  0x00000002 , 0x00000001 , 0x00000012 
- 00029039  0x00005a70 istore  0x00000002 , 0x00000012 
- 00029040  0x00005a71 rtn 
- 00029041  0x00005a74 force  0x00000000 , 0x0000003f 
- 00029042  0x00005a75 istore  0x00000001 , 0x00000005 
- 00029043  0x00005a76 increase  0xffffffff , 0x00000005 
- 00029044  0x00005a77 fetcht  0x00000002 , 0x000002da 
- 00029045  0x00005a78 add  0x00000002 , 0x0000000a , 0x0000003f 
- 00029046  0x00005a79 isub  0x00000005 , 0x0000003f 
- 00029047  0x00005a7a sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00029048  0x00005a7b iforce  0x00000011 
- 00029049  0x00005a7d deposit  0x00000011 
- 00029050  0x00005a7e add  0x00000002 , 0x00000009 , 0x00000012 
- 00029051  0x00005a7f istore  0x00000001 , 0x00000012 
- 00029052  0x00005a80 rshift8  0x0000003f , 0x0000003f 
- 00029053  0x00005a81 add  0x00000002 , 0x00000008 , 0x00000012 
- 00029054  0x00005a82 istore  0x00000001 , 0x00000012 
- 00029055  0x00005a84 increase  0x00000003 , 0x00000011 
- 00029056  0x00005a85 deposit  0x00000011 
- 00029057  0x00005a86 add  0x00000002 , 0x00000006 , 0x00000012 
- 00029058  0x00005a87 istore  0x00000001 , 0x00000012 
- 00029059  0x00005a88 rshift8  0x0000003f , 0x0000003f 
- 00029060  0x00005a89 add  0x00000002 , 0x00000005 , 0x00000012 
- 00029061  0x00005a8a istore  0x00000001 , 0x00000012 
- 00029062  0x00005a8b increase  0x00000003 , 0x00000011 
- 00029063  0x00005a8c deposit  0x00000011 
- 00029064  0x00005a8d add  0x00000002 , 0x00000004 , 0x00000012 
- 00029065  0x00005a8e istore  0x00000001 , 0x00000012 
- 00029066  0x00005a8f rshift8  0x0000003f , 0x0000003f 
- 00029067  0x00005a90 add  0x00000002 , 0x00000003 , 0x00000012 
- 00029068  0x00005a91 istore  0x00000001 , 0x00000012 
- 00029069  0x00005a92 increase  0x00000005 , 0x00000011 
- 00029070  0x00005a93 deposit  0x00000011 
- 00029071  0x00005a94 store  0x00000002 , 0x000002dc 
- 00029072  0x00005a95 setarg  0x00000036 
- 00029073  0x00005a96 add  0x00000002 , 0x00000007 , 0x00000012 
- 00029074  0x00005a97 istore  0x00000001 , 0x00000012 
- 00029075  0x00005a98 setarg  0x00000007 
- 00029076  0x00005a99 istore  0x00000001 , 0x00000002 
- 00029077  0x00005a9a fetch  0x00000002 , 0x000004b0 
- 00029078  0x00005a9b add  0x00000002 , 0x00000001 , 0x00000012 
- 00029079  0x00005a9c istore  0x00000002 , 0x00000012 
- 00029080  0x00005a9d rtn 
- 00029081  0x00005a9f copy  0x00000006 , 0x0000000b 
- 00029082  0x00005aa0 ifetch  0x00000001 , 0x00000006 
- 00029083  0x00005aa1 and  0x0000003f , 0x00000007 , 0x00000039 
- 00029084  0x00005aa2 rshift3  0x0000003f , 0x0000003f 
- 00029085  0x00005aa3 beq  0x00000006 , 0x000071a2 
- 00029086  0x00005aa4 beq  0x00000001 , 0x000072e0 
- 00029087  0x00005aa5 beq  0x00000004 , 0x000072e5 
- 00029088  0x00005aa6 beq  0x00000005 , 0x000072e3 
- 00029089  0x00005aa7 branch  0x000072de 
- 00029090  0x00005aa9 call  0x000071a4 
- 00029091  0x00005aaa branch  0x000072de 
- 00029092  0x00005aac deposit  0x00000039 
- 00029093  0x00005aad beq  0x00000005 , 0x000071a9 
- 00029094  0x00005aae beq  0x00000006 , 0x000071ac 
- 00029095  0x00005aaf force  0x00000003 , 0x00000039 
- 00029096  0x00005ab0 branch  0x000072ef 
- 00029097  0x00005ab2 ifetch  0x00000001 , 0x00000006 
- 00029098  0x00005ab3 increase  0x00000002 , 0x0000003f 
- 00029099  0x00005ab4 rtn 
- 00029100  0x00005ab6 ifetch  0x00000002 , 0x00000006 
- 00029101  0x00005ab7 byteswap  0x0000003f , 0x0000003f 
- 00029102  0x00005ab8 increase  0x00000003 , 0x0000003f 
- 00029103  0x00005ab9 rtn 
- 00029104  0x00005abc call  0x000052de 
- 00029105  0x00005abd copy  0x0000003f , 0x00000005 
- 00029106  0x00005abe setarg  0x00000006 
- 00029107  0x00005abf istore  0x00000001 , 0x00000005 
- 00029108  0x00005ac0 setarg  0x0000006e 
- 00029109  0x00005ac1 istore  0x00000002 , 0x00000005 
- 00029110  0x00005ac2 setarg  0x00000f00 
- 00029111  0x00005ac3 istore  0x00000002 , 0x00000005 
- 00029112  0x00005ac4 setarg  0x001a0535 
- 00029113  0x00005ac5 istore  0x00000003 , 0x00000005 
- 00029114  0x00005ac6 setarg  0x00000111 
- 00029115  0x00005ac7 lshift16  0x0000003f , 0x0000003f 
- 00029116  0x00005ac8 istore  0x00000004 , 0x00000005 
- 00029117  0x00005ac9 setarg  0x00002600 
- 00029118  0x00005aca istore  0x00000002 , 0x00000005 
- 00029119  0x00005acb setarg  0x00000335 
- 00029120  0x00005acc istore  0x00000002 , 0x00000005 
- 00029121  0x00005acd setarg  0x00000009 
- 00029122  0x00005ace istore  0x00000002 , 0x00000005 
- 00029123  0x00005acf setarg  0x00000004 
- 00029124  0x00005ad0 istore  0x00000002 , 0x00000005 
- 00029125  0x00005ad1 jam  0x00000014 , 0x000002dc 
- 00029126  0x00005ad2 rtn 
- 00029127  0x00005add copy  0x00000006 , 0x00000002 
- 00029128  0x00005ade fetch  0x00000002 , 0x000004b0 
- 00029129  0x00005adf beq  0x0000006e , 0x000071cb 
- 00029130  0x00005ae2 branch  0x000071d4 
- 00029131  0x00005ae5 copy  0x00000002 , 0x00000006 
- 00029132  0x00005ae6 increase  0xfffffffd , 0x0000000b 
- 00029133  0x00005ae7 copy  0x0000000b , 0x0000003f 
- 00029134  0x00005ae8 beq  0x00000002 , 0x000071d4 
- 00029135  0x00005ae9 call  0x000071d5 
- 00029136  0x00005aea rtn  0x00000028 
- 00029137  0x00005aeb store  0x00000001 , 0x00004752 
- 00029138  0x00005aec jam  0x00000017 , 0x000002ec 
- 00029139  0x00005aed rtn 
- 00029140  0x00005af0 rtn 
- 00029141  0x00005af7 enable  0x00000028 
- 00029142  0x00005af8 copy  0x0000003f , 0x00000039 
- 00029143  0x00005af9 arg  0x00000400 , 0x00000002 
- 00029144  0x00005afb ifetch  0x00000002 , 0x00000006 
- 00029145  0x00005afc isub  0x00000002 , 0x0000003e 
- 00029146  0x00005afd branch  0x000071de , 0x00000005 
- 00029147  0x00005afe increase  0xffffffff , 0x00000006 
- 00029148  0x00005aff loop  0x000071d8 
- 00029149  0x00005b00 rtn 
- 00029150  0x00005b02 arg  0x00000300 , 0x00000002 
- 00029151  0x00005b04 ifetch  0x00000002 , 0x00000006 
- 00029152  0x00005b05 isub  0x00000002 , 0x0000003e 
- 00029153  0x00005b06 branch  0x000071e5 , 0x00000005 
- 00029154  0x00005b07 increase  0xffffffff , 0x00000006 
- 00029155  0x00005b08 loop  0x000071df 
- 00029156  0x00005b09 rtn 
- 00029157  0x00005b0b ifetch  0x00000001 , 0x00000006 
- 00029158  0x00005b0c ifetch  0x00000001 , 0x00000006 
- 00029159  0x00005b0d disable  0x00000028 
- 00029160  0x00005b0e rtn 
- 00029161  0x00005b1a call  0x000072a4 
- 00029162  0x00005b1b branch  0x00007236 , 0x00000005 
- 00029163  0x00005b1c force  0x00000000 , 0x00000012 
- 00029164  0x00005b1d ifetch  0x00000001 , 0x00000006 
- 00029165  0x00005b1e increase  0xffffffff , 0x00000011 
- 00029166  0x00005b1f increase  0xffffffff , 0x0000000b 
- 00029167  0x00005b20 compare  0x00000018 , 0x0000003f , 0x000000f8 
- 00029168  0x00005b21 nbranch  0x00007230 , 0x00000001 
- 00029169  0x00005b22 compare  0x00000004 , 0x0000003f , 0x00000007 
- 00029170  0x00005b23 nbranch  0x000071f8 , 0x00000001 
- 00029171  0x00005b24 force  0x00000001 , 0x00000012 
- 00029172  0x00005b26 increase  0x00000002 , 0x00000006 
- 00029173  0x00005b27 increase  0xfffffffe , 0x00000011 
- 00029174  0x00005b28 increase  0xfffffffe , 0x0000000b 
- 00029175  0x00005b29 branch  0x000071fd 
- 00029176  0x00005b2b compare  0x00000002 , 0x0000003f , 0x00000007 
- 00029177  0x00005b2c nbranch  0x000071fb , 0x00000001 
- 00029178  0x00005b2d branch  0x000071f4 
- 00029179  0x00005b2f compare  0x00000001 , 0x0000003f , 0x00000007 
- 00029180  0x00005b30 nbranch  0x00007230 , 0x00000001 
- 00029181  0x00005b32 ifetch  0x00000001 , 0x00000006 
- 00029182  0x00005b33 increase  0xffffffff , 0x00000011 
- 00029183  0x00005b34 increase  0xffffffff , 0x0000000b 
- 00029184  0x00005b35 bne  0x00000001 , 0x00007207 
- 00029185  0x00005b36 ifetch  0x00000001 , 0x00000006 
- 00029186  0x00005b37 increase  0xffffffff , 0x00000011 
- 00029187  0x00005b38 increase  0xffffffff , 0x0000000b 
- 00029188  0x00005b39 bne  0x00000000 , 0x00007230 
- 00029189  0x00005b3a jam  0x000000ff , 0x000004c3 
- 00029190  0x00005b3b branch  0x00007230 
- 00029191  0x00005b3d bne  0x00000000 , 0x00007230 
- 00029192  0x00005b3e ifetch  0x00000001 , 0x00000006 
- 00029193  0x00005b3f increase  0xffffffff , 0x00000011 
- 00029194  0x00005b40 increase  0xffffffff , 0x0000000b 
- 00029195  0x00005b41 bne  0x00000003 , 0x00007230 
- 00029196  0x00005b42 copy  0x00000012 , 0x0000003e 
- 00029197  0x00005b43 branch  0x00007210 , 0x00000005 
- 00029198  0x00005b44 increase  0xfffffff4 , 0x00000006 
- 00029199  0x00005b45 increase  0xfffffff4 , 0x0000000b 
- 00029200  0x00005b47 force  0x000000ff , 0x0000003f 
- 00029201  0x00005b48 store  0x00000001 , 0x000004c4 
- 00029202  0x00005b49 ifetch  0x00000001 , 0x00000006 
- 00029203  0x00005b4a increase  0xffffffff , 0x00000011 
- 00029204  0x00005b4b increase  0xffffffff , 0x0000000b 
- 00029205  0x00005b4c compare  0x00000008 , 0x0000003f , 0x000000f8 
- 00029206  0x00005b4d nbranch  0x00007230 , 0x00000001 
- 00029207  0x00005b4e compare  0x00000000 , 0x0000003f , 0x00000007 
- 00029208  0x00005b4f branch  0x0000722d , 0x00000001 
- 00029209  0x00005b50 compare  0x00000001 , 0x0000003f , 0x00000007 
- 00029210  0x00005b51 branch  0x0000722a , 0x00000001 
- 00029211  0x00005b52 compare  0x00000002 , 0x0000003f , 0x00000007 
- 00029212  0x00005b53 branch  0x00007227 , 0x00000001 
- 00029213  0x00005b54 compare  0x00000003 , 0x0000003f , 0x00000007 
- 00029214  0x00005b55 branch  0x00007224 , 0x00000001 
- 00029215  0x00005b56 compare  0x00000004 , 0x0000003f , 0x00000007 
- 00029216  0x00005b57 nbranch  0x00007230 , 0x00000001 
- 00029217  0x00005b58 increase  0x00000008 , 0x00000006 
- 00029218  0x00005b59 increase  0xfffffff8 , 0x00000011 
- 00029219  0x00005b5a increase  0xfffffff8 , 0x0000000b 
- 00029220  0x00005b5c increase  0x00000004 , 0x00000006 
- 00029221  0x00005b5d increase  0xfffffffc , 0x00000011 
- 00029222  0x00005b5e increase  0xfffffffc , 0x0000000b 
- 00029223  0x00005b60 increase  0x00000002 , 0x00000006 
- 00029224  0x00005b61 increase  0xfffffffe , 0x00000011 
- 00029225  0x00005b62 increase  0xfffffffe , 0x0000000b 
- 00029226  0x00005b64 increase  0x00000001 , 0x00000006 
- 00029227  0x00005b65 increase  0xffffffff , 0x00000011 
- 00029228  0x00005b66 increase  0xffffffff , 0x0000000b 
- 00029229  0x00005b68 ifetch  0x00000001 , 0x00000006 
- 00029230  0x00005b69 increase  0xffffffff , 0x00000011 
- 00029231  0x00005b6a increase  0xffffffff , 0x0000000b 
- 00029232  0x00005b6c increase  0xffffffff , 0x0000000b 
- 00029233  0x00005b6d increase  0xffffffff , 0x00000011 
- 00029234  0x00005b6e branch  0x00007230 , 0x00000002 
- 00029235  0x00005b6f increase  0x00000001 , 0x0000000b 
- 00029236  0x00005b70 force  0x00000001 , 0x0000003f 
- 00029237  0x00005b71 rtn ,
- 00029238  0x00005b73 force  0x00000000 , 0x0000003f 
- 00029239  0x00005b74 rtn ,
- 00029240  0x00005b77 setarg  0x00000200 
- 00029241  0x00005b78 store  0x00000002 , 0x000004b6 
- 00029242  0x00005b79 branch  0x00007243 
- 00029243  0x00005b7b setarg  0x00000400 
- 00029244  0x00005b7c store  0x00000002 , 0x000004b6 
- 00029245  0x00005b7d branch  0x00007243 
- 00029246  0x00005b7f setarg  0x00000600 
- 00029247  0x00005b80 store  0x00000002 , 0x000004b6 
- 00029248  0x00005b81 branch  0x00007243 
- 00029249  0x00005b83 setarg  0x00000300 
- 00029250  0x00005b84 store  0x00000002 , 0x000004b6 
- 00029251  0x00005b86 call  0x000052de 
- 00029252  0x00005b87 istore  0x00000001 , 0x00000005 
- 00029253  0x00005b88 fetch  0x00000002 , 0x000004b0 
- 00029254  0x00005b89 istore  0x00000002 , 0x00000005 
- 00029255  0x00005b8a setarg  0x00000200 
- 00029256  0x00005b8b istore  0x00000002 , 0x00000005 
- 00029257  0x00005b8c fetch  0x00000002 , 0x000004b6 
- 00029258  0x00005b8d istore  0x00000002 , 0x00000005 
- 00029259  0x00005b8e jam  0x00000007 , 0x000002dc 
- 00029260  0x00005b8f rtn 
- 00029261  0x00005b92 force  0x00000000 , 0x00000002 
- 00029262  0x00005b93 arg  0x000004a9 , 0x00000005 
- 00029263  0x00005b94 call  0x000072a4 
- 00029264  0x00005b95 branch  0x000072a2 , 0x00000005 
- 00029265  0x00005b97 ifetch  0x00000001 , 0x00000006 
- 00029266  0x00005b98 increase  0xffffffff , 0x00000011 
- 00029267  0x00005b99 increase  0xffffffff , 0x0000000b 
- 00029268  0x00005b9a compare  0x00000018 , 0x0000003f , 0x000000f8 
- 00029269  0x00005b9b nbranch  0x000072a2 , 0x00000001 
- 00029270  0x00005b9c compare  0x00000004 , 0x0000003f , 0x00000007 
- 00029271  0x00005b9d nbranch  0x0000726e , 0x00000001 
- 00029272  0x00005b9e force  0x00000001 , 0x00000002 
- 00029273  0x00005ba0 ifetch  0x00000001 , 0x00000006 
- 00029274  0x00005ba1 increase  0xffffffff , 0x00000011 
- 00029275  0x00005ba2 increase  0xffffffff , 0x0000000b 
- 00029276  0x00005ba3 bne  0x00000000 , 0x00007262 
- 00029277  0x00005ba4 ifetch  0x00000001 , 0x00000006 
- 00029278  0x00005ba5 increase  0xffffffff , 0x00000011 
- 00029279  0x00005ba6 increase  0xffffffff , 0x0000000b 
- 00029280  0x00005ba7 beq  0x00000000 , 0x00007273 
- 00029281  0x00005ba8 branch  0x00007265 
- 00029282  0x00005baa increase  0x00000001 , 0x00000006 
- 00029283  0x00005bab increase  0xffffffff , 0x00000011 
- 00029284  0x00005bac increase  0xffffffff , 0x0000000b 
- 00029285  0x00005bae increase  0x00000002 , 0x00000006 
- 00029286  0x00005baf increase  0xfffffffe , 0x00000011 
- 00029287  0x00005bb0 increase  0xfffffffe , 0x0000000b 
- 00029288  0x00005bb1 compare  0x00000000 , 0x00000002 , 0x000000ff 
- 00029289  0x00005bb2 branch  0x0000729d , 0x00000001 
- 00029290  0x00005bb3 increase  0x0000000c , 0x00000006 
- 00029291  0x00005bb4 increase  0xfffffff4 , 0x00000011 
- 00029292  0x00005bb5 increase  0xfffffff4 , 0x0000000b 
- 00029293  0x00005bb6 branch  0x0000729d 
- 00029294  0x00005bb8 compare  0x00000002 , 0x0000003f , 0x00000007 
- 00029295  0x00005bb9 nbranch  0x00007271 , 0x00000001 
- 00029296  0x00005bba branch  0x00007259 
- 00029297  0x00005bbc compare  0x00000001 , 0x0000003f , 0x00000007 
- 00029298  0x00005bbd nbranch  0x000072a2 , 0x00000001 
- 00029299  0x00005bbf ifetch  0x00000002 , 0x00000006 
- 00029300  0x00005bc0 increase  0xfffffffe , 0x00000011 
- 00029301  0x00005bc1 increase  0xfffffffe , 0x0000000b 
- 00029302  0x00005bc2 istore  0x00000002 , 0x00000005 
- 00029303  0x00005bc4 compare  0x00000000 , 0x00000002 , 0x000000ff 
- 00029304  0x00005bc5 branch  0x0000729d , 0x00000001 
- 00029305  0x00005bc6 copy  0x00000006 , 0x00000002 
- 00029306  0x00005bc7 ifetch  0x00000001 , 0x00000006 
- 00029307  0x00005bc8 bne  0x00000000 , 0x00007292 
- 00029308  0x00005bc9 ifetch  0x00000001 , 0x00000006 
- 00029309  0x00005bca bne  0x00000000 , 0x00007292 
- 00029310  0x00005bcb ifetch  0x00000001 , 0x00000006 
- 00029311  0x00005bcc bne  0x00000010 , 0x00007292 
- 00029312  0x00005bcd ifetch  0x00000001 , 0x00000006 
- 00029313  0x00005bce bne  0x00000000 , 0x00007292 
- 00029314  0x00005bcf ifetch  0x00000001 , 0x00000006 
- 00029315  0x00005bd0 bne  0x00000080 , 0x00007292 
- 00029316  0x00005bd1 ifetch  0x00000001 , 0x00000006 
- 00029317  0x00005bd2 bne  0x00000000 , 0x00007292 
- 00029318  0x00005bd3 ifetch  0x00000001 , 0x00000006 
- 00029319  0x00005bd4 bne  0x00000000 , 0x00007292 
- 00029320  0x00005bd5 ifetch  0x00000001 , 0x00000006 
- 00029321  0x00005bd6 bne  0x00000080 , 0x00007292 
- 00029322  0x00005bd7 ifetch  0x00000001 , 0x00000006 
- 00029323  0x00005bd8 bne  0x0000005f , 0x00007292 
- 00029324  0x00005bd9 ifetch  0x00000001 , 0x00000006 
- 00029325  0x00005bda bne  0x0000009b , 0x00007292 
- 00029326  0x00005bdb ifetch  0x00000001 , 0x00000006 
- 00029327  0x00005bdc bne  0x00000034 , 0x00007292 
- 00029328  0x00005bdd ifetch  0x00000001 , 0x00000006 
- 00029329  0x00005bde beq  0x000000fb , 0x0000729b 
- 00029330  0x00005be0 copy  0x00000002 , 0x00000006 
- 00029331  0x00005be2 increase  0x0000000c , 0x00000006 
- 00029332  0x00005be3 force  0x00000000 , 0x00000007 
- 00029333  0x00005be4 force  0x00000000 , 0x00000002 
- 00029334  0x00005be5 branch  0x0000729b 
- 00029335  0x00005be7 ifetch  0x00000001 , 0x00000006 
- 00029336  0x00005be8 increase  0xffffffff , 0x00000011 
- 00029337  0x00005be9 increase  0xffffffff , 0x0000000b 
- 00029338  0x00005bea branch  0x00007277 
- 00029339  0x00005bec increase  0xfffffff4 , 0x0000000b 
- 00029340  0x00005bed increase  0xfffffff4 , 0x00000011 
- 00029341  0x00005bef compare  0x00000000 , 0x00000011 , 0x000000ff 
- 00029342  0x00005bf0 nbranch  0x00007251 , 0x00000001 
- 00029343  0x00005bf1 force  0x00000000 , 0x0000003f 
- 00029344  0x00005bf2 istore  0x00000002 , 0x00000005 
- 00029345  0x00005bf3 rtn ,
- 00029346  0x00005bf5 arg  0x000000ff , 0x00000002 
- 00029347  0x00005bf6 rtn 
- 00029348  0x00005c01 ifetch  0x00000001 , 0x00000006 
- 00029349  0x00005c02 increase  0xffffffff , 0x0000000b 
- 00029350  0x00005c03 compare  0x00000030 , 0x0000003f , 0x000000f8 
- 00029351  0x00005c04 nbranch  0x000072b9 , 0x00000001 
- 00029352  0x00005c05 compare  0x00000007 , 0x0000003f , 0x00000007 
- 00029353  0x00005c06 branch  0x000072b2 , 0x00000001 
- 00029354  0x00005c07 compare  0x00000006 , 0x0000003f , 0x00000007 
- 00029355  0x00005c08 branch  0x000072b4 , 0x00000001 
- 00029356  0x00005c09 compare  0x00000005 , 0x0000003f , 0x00000007 
- 00029357  0x00005c0a nbranch  0x000072b9 , 0x00000001 
- 00029358  0x00005c0b ifetch  0x00000001 , 0x00000006 
- 00029359  0x00005c0c copy  0x0000003f , 0x00000011 
- 00029360  0x00005c0d increase  0xffffffff , 0x0000000b 
- 00029361  0x00005c0e branch  0x000072b7 
- 00029362  0x00005c10 increase  0x00000002 , 0x00000006 
- 00029363  0x00005c11 increase  0xfffffffe , 0x0000000b 
- 00029364  0x00005c13 ifetch  0x00000002 , 0x00000006 
- 00029365  0x00005c14 byteswap  0x0000003f , 0x00000011 
- 00029366  0x00005c15 increase  0xfffffffe , 0x0000000b 
- 00029367  0x00005c18 force  0x00000001 , 0x0000003f 
- 00029368  0x00005c19 rtn 
- 00029369  0x00005c1c force  0x00000000 , 0x0000003f 
- 00029370  0x00005c1d rtn 
- 00029371  0x00005c28 setarg  0x00000003 
- 00029372  0x00005c29 store  0x00000001 , 0x000004af 
- 00029373  0x00005c2a branch  0x000072c0 
- 00029374  0x00005c2c setarg  0x00000007 
- 00029375  0x00005c2d store  0x00000001 , 0x000004af 
- 00029376  0x00005c2f call  0x000052de 
- 00029377  0x00005c30 fetch  0x00000001 , 0x000004af 
- 00029378  0x00005c31 istore  0x00000001 , 0x00000005 
- 00029379  0x00005c32 copy  0x0000003f , 0x00000012 
- 00029380  0x00005c33 fetch  0x00000002 , 0x000004b0 
- 00029381  0x00005c34 istore  0x00000002 , 0x00000005 
- 00029382  0x00005c36 setarg  0x00000500 
- 00029383  0x00005c37 istore  0x00000002 , 0x00000005 
- 00029384  0x00005c38 compare  0x00000005 , 0x00000012 , 0x000000ff 
- 00029385  0x00005c39 branch  0x000072d0 , 0x00000001 
- 00029386  0x00005c3a compare  0x00000007 , 0x00000012 , 0x000000ff 
- 00029387  0x00005c3b branch  0x000072d0 , 0x00000001 
- 00029388  0x00005c3c setarg  0x00000000 
- 00029389  0x00005c3d istore  0x00000003 , 0x00000005 
- 00029390  0x00005c3e istore  0x00000002 , 0x00000005 
- 00029391  0x00005c3f branch  0x000072d4 
- 00029392  0x00005c48 setarg  0x00350200 
- 00029393  0x00005c49 istore  0x00000003 , 0x00000005 
- 00029394  0x00005c4e setarg  0x00000000 
- 00029395  0x00005c4f istore  0x00000002 , 0x00000005 
- 00029396  0x00005c51 jam  0x0000000a , 0x000002dc 
- 00029397  0x00005c52 rtn 
- 00029398  0x00005c55 copy  0x00000006 , 0x0000000b 
- 00029399  0x00005c56 ifetch  0x00000001 , 0x00000006 
- 00029400  0x00005c57 and  0x0000003f , 0x00000007 , 0x00000039 
- 00029401  0x00005c58 rshift3  0x0000003f , 0x0000003f 
- 00029402  0x00005c59 beq  0x00000006 , 0x000072e5 
- 00029403  0x00005c5a beq  0x00000001 , 0x000072e0 
- 00029404  0x00005c5b beq  0x00000004 , 0x000072e5 
- 00029405  0x00005c5c beq  0x00000005 , 0x000072e3 
- 00029406  0x00005c5e copy  0x0000000b , 0x00000006 
- 00029407  0x00005c5f rtn 
- 00029408  0x00005c61 call  0x00007301 
- 00029409  0x00005c62 increase  0x00000001 , 0x0000003f 
- 00029410  0x00005c63 branch  0x000072de 
- 00029411  0x00005c65 force  0x00000002 , 0x0000003f 
- 00029412  0x00005c66 branch  0x000072de 
- 00029413  0x00005c68 call  0x000072f7 
- 00029414  0x00005c69 increase  0x00000002 , 0x0000003f 
- 00029415  0x00005c6a branch  0x000072de 
- 00029416  0x00005c6d ifetch  0x00000001 , 0x00000006 
- 00029417  0x00005c6e and  0x0000003f , 0x00000007 , 0x00000039 
- 00029418  0x00005c6f rshift3  0x0000003f , 0x0000003f 
- 00029419  0x00005c70 beq  0x00000006 , 0x000072f7 
- 00029420  0x00005c71 beq  0x00000001 , 0x000072ef 
- 00029421  0x00005c72 beq  0x00000005 , 0x000072fc 
- 00029422  0x00005c73 rtn 
- 00029423  0x00005c75 call  0x00007301 
- 00029424  0x00005c76 iforce  0x00000039 
- 00029425  0x00005c77 force  0x00000000 , 0x00000002 
- 00029426  0x00005c79 lshift8  0x00000002 , 0x00000002 
- 00029427  0x00005c7a ifetch  0x00000001 , 0x00000006 
- 00029428  0x00005c7b ior  0x00000002 , 0x00000002 
- 00029429  0x00005c7c loop  0x000072f2 
- 00029430  0x00005c7d rtn 
- 00029431  0x00005c7f deposit  0x00000039 
- 00029432  0x00005c80 beq  0x00000005 , 0x000072fc 
- 00029433  0x00005c81 beq  0x00000006 , 0x000072fe 
- 00029434  0x00005c82 force  0x00000003 , 0x00000039 
- 00029435  0x00005c83 branch  0x000072ef 
- 00029436  0x00005c85 ifetch  0x00000001 , 0x00000006 
- 00029437  0x00005c86 rtn 
- 00029438  0x00005c88 ifetch  0x00000002 , 0x00000006 
- 00029439  0x00005c89 byteswap  0x0000003f , 0x0000003f 
- 00029440  0x00005c8a rtn 
- 00029441  0x00005c8e force  0x00000001 , 0x0000003f 
- 00029442  0x00005c8f copy  0x00000039 , 0x0000003e 
- 00029443  0x00005c90 rtn  0x00000005 
- 00029444  0x00005c92 lshift  0x0000003f , 0x0000003f 
- 00029445  0x00005c93 loop  0x00007304 
- 00029446  0x00005c94 rtn 
- 00029447  0x00005c9a iforce  0x00000013 
- 00029448  0x00005c9b set1  0x00000025 , 0x00000000 
- 00029449  0x00005c9c bpatch  0x000000e9 , 0x0000403d 
- 00029450  0x00005c9d force  0x00000000 , 0x00000007 
- 00029451  0x00005c9e fetch  0x00000002 , 0x00004759 
- 00029452  0x00005c9f iforce  0x00000006 
- 00029453  0x00005ca0 arg  0x000004c5 , 0x00000005 
- 00029454  0x00005ca2 disable  0x00000028 
- 00029455  0x00005ca3 ifetch  0x00000001 , 0x00000006 
- 00029456  0x00005ca4 rtn  0x00000034 
- 00029457  0x00005ca5 iforce  0x00000039 
- 00029458  0x00005ca7 ifetch  0x00000002 , 0x00000006 
- 00029459  0x00005ca8 isub  0x00000013 , 0x0000003e 
- 00029460  0x00005ca9 nbranch  0x00007316 , 0x00000005 
- 00029461  0x00005caa enable  0x00000028 
- 00029462  0x00005cac loop  0x00007312 
- 00029463  0x00005cad ifetch  0x00000004 , 0x00000006 
- 00029464  0x00005cae nbranch  0x0000731b , 0x00000028 
- 00029465  0x00005caf istore  0x00000004 , 0x00000005 
- 00029466  0x00005cb0 increase  0x00000001 , 0x00000007 
- 00029467  0x00005cb2 call  0x000072e8 
- 00029468  0x00005cb3 iadd  0x00000006 , 0x00000006 
- 00029469  0x00005cb4 branch  0x0000730e 
- 00029470  0x00005cb8 fetch  0x00000002 , 0x00004759 
- 00029471  0x00005cb9 iforce  0x00000006 
- 00029472  0x00005cbb ifetch  0x00000001 , 0x00000006 
- 00029473  0x00005cbc rtn  0x00000034 
- 00029474  0x00005cbd lshift  0x0000003f , 0x0000003f 
- 00029475  0x00005cbe iadd  0x00000006 , 0x00000006 
- 00029476  0x00005cbf ifetch  0x00000004 , 0x00000006 
- 00029477  0x00005cc0 isub  0x00000002 , 0x0000003e 
- 00029478  0x00005cc1 rtn  0x00000005 
- 00029479  0x00005cc2 call  0x000072e8 
- 00029480  0x00005cc3 iadd  0x00000006 , 0x00000006 
- 00029481  0x00005cc4 branch  0x00007320 
- 00029482  0x00005ccc set1  0x00000025 , 0x00000000 
- 00029483  0x00005ccd bpatch  0x000000ea , 0x0000403d 
- 00029484  0x00005cce fetch  0x00000002 , 0x00004759 
- 00029485  0x00005ccf iforce  0x00000006 
- 00029486  0x00005cd1 ifetch  0x00000001 , 0x00000006 
- 00029487  0x00005cd2 branch  0x0000734b , 0x00000034 
- 00029488  0x00005cd3 iforce  0x00000039 
- 00029489  0x00005cd5 ifetch  0x00000002 , 0x00000006 
- 00029490  0x00005cd6 isub  0x00000013 , 0x0000003e 
- 00029491  0x00005cd7 branch  0x00007339 , 0x00000005 
- 00029492  0x00005cd8 loop  0x00007331 
- 00029493  0x00005cd9 increase  0x00000004 , 0x00000006 
- 00029494  0x00005cda call  0x000072e8 
- 00029495  0x00005cdb iadd  0x00000006 , 0x00000006 
- 00029496  0x00005cdc branch  0x0000732e 
- 00029497  0x00005cde increase  0xffffffff , 0x00000039 
- 00029498  0x00005cdf lshift  0x00000039 , 0x0000003f 
- 00029499  0x00005ce0 iadd  0x00000006 , 0x00000006 
- 00029500  0x00005ce1 increase  0x00000004 , 0x00000006 
- 00029501  0x00005ce2 call  0x000072e8 
- 00029502  0x00005ce3 iadd  0x00000006 , 0x00000002 
- 00029503  0x00005ce5 increase  0x00000001 , 0x00000006 
- 00029504  0x00005ce6 ifetch  0x00000002 , 0x00000006 
- 00029505  0x00005ce7 isub  0x00000012 , 0x0000000b 
- 00029506  0x00005ce9 setflag  0x00000005 , 0x00000000 , 0x0000003f 
- 00029507  0x00005cea copy  0x0000000b , 0x0000000b 
- 00029508  0x00005ceb rtn  0x00000005 
- 00029509  0x00005cec call  0x000072d6 
- 00029510  0x00005ced iadd  0x00000006 , 0x00000006 
- 00029511  0x00005cee deposit  0x00000002 
- 00029512  0x00005cef isub  0x00000006 , 0x0000003e 
- 00029513  0x00005cf0 branch  0x0000734b , 0x00000005 
- 00029514  0x00005cf1 branch  0x0000733f 
- 00029515  0x00005cf3 force  0x00000000 , 0x00000006 
- 00029516  0x00005cf4 force  0x00000000 , 0x0000003f 
- 00029517  0x00005cf5 rtn 
- 00029518  0x00005cfc set1  0x00000025 , 0x00000000 
- 00029519  0x00005cfd bpatch  0x000000eb , 0x0000403d 
- 00029520  0x00005cfe fetch  0x00000002 , 0x00004759 
- 00029521  0x00005cff iforce  0x00000006 
- 00029522  0x00005d01 ifetch  0x00000001 , 0x00000006 
- 00029523  0x00005d02 branch  0x00007368 , 0x00000034 
- 00029524  0x00005d03 lshift  0x0000003f , 0x0000003f 
- 00029525  0x00005d04 iadd  0x00000006 , 0x00000006 
- 00029526  0x00005d05 ifetch  0x00000004 , 0x00000006 
- 00029527  0x00005d06 isub  0x00000002 , 0x0000003e 
- 00029528  0x00005d07 branch  0x0000735c , 0x00000005 
- 00029529  0x00005d08 call  0x000072e8 
- 00029530  0x00005d09 iadd  0x00000006 , 0x00000006 
- 00029531  0x00005d0a branch  0x00007352 
- 00029532  0x00005d0c call  0x000072e8 
- 00029533  0x00005d0d iadd  0x00000006 , 0x00000002 
- 00029534  0x00005d0f increase  0x00000001 , 0x00000006 
- 00029535  0x00005d10 ifetch  0x00000002 , 0x00000006 
- 00029536  0x00005d11 isub  0x00000012 , 0x0000003e 
- 00029537  0x00005d12 rtn  0x00000005 
- 00029538  0x00005d13 call  0x000072d6 
- 00029539  0x00005d14 iadd  0x00000006 , 0x00000006 
- 00029540  0x00005d15 deposit  0x00000002 
- 00029541  0x00005d16 isub  0x00000006 , 0x0000003e 
- 00029542  0x00005d17 branch  0x00007368 , 0x00000005 
- 00029543  0x00005d18 branch  0x0000735e 
- 00029544  0x00005d1a force  0x00000000 , 0x00000006 
- 00029545  0x00005d1b rtn 
- 00029546  0x00005d1f call  0x0000737d 
- 00029547  0x00005d20 arg  0x0000051f , 0x00000006 
- 00029548  0x00005d21 arg  0x0000050f , 0x00000005 
- 00029549  0x00005d22 branch  0x00007e35 
- 00029550  0x00005d26 disable  0x00000028 
- 00029551  0x00005d27 call  0x00007474 
- 00029552  0x00005d28 arg  0x000004ef , 0x00000006 
- 00029553  0x00005d29 arg  0x0000052f , 0x00000005 
- 00029554  0x00005d2a force  0x0000000f , 0x00000039 
- 00029555  0x00005d2b call  0x00007e45 
- 00029556  0x00005d2c ifetch  0x00000001 , 0x00000006 
- 00029557  0x00005d2d xor_into  0x00000006 , 0x0000003f 
- 00029558  0x00005d2e istore  0x00000001 , 0x00000005 
- 00029559  0x00005d2f setarg  0x0000053f 
- 00029560  0x00005d30 store  0x00000002 , 0x00000574 
- 00029561  0x00005d31 setarg  0x0000052f 
- 00029562  0x00005d32 store  0x00000002 , 0x00000572 
- 00029563  0x00005d33 set1  0x00000012 , 0x00000000 
- 00029564  0x00005d34 branch  0x000073bd 
- 00029565  0x00005d39 fetcht  0x00000001 , 0x0000054f 
- 00029566  0x00005d3a force  0x00000010 , 0x00000012 
- 00029567  0x00005d3b add  0x00000002 , 0x00000006 , 0x00000013 
- 00029568  0x00005d3c sub  0x00000013 , 0x00000010 , 0x0000003e 
- 00029569  0x00005d3d branch  0x00007383 , 0x00000002 
- 00029570  0x00005d3e force  0x00000010 , 0x00000013 
- 00029571  0x00005d40 arg  0x0000052f , 0x00000005 
- 00029572  0x00005d42 arg  0x00000550 , 0x00000006 
- 00029573  0x00005d43 copy  0x00000002 , 0x00000039 
- 00029574  0x00005d44 disable  0x00000028 
- 00029575  0x00005d46 ifetch  0x00000001 , 0x00000006 
- 00029576  0x00005d47 istore  0x00000001 , 0x00000005 
- 00029577  0x00005d48 increase  0xffffffff , 0x00000012 
- 00029578  0x00005d49 branch  0x00007391 , 0x00000005 
- 00029579  0x00005d4a loop  0x00007387 
- 00029580  0x00005d4b branch  0x00007384 , 0x00000028 
- 00029581  0x00005d4c enable  0x00000028 
- 00029582  0x00005d4d force  0x00000006 , 0x00000039 
- 00029583  0x00005d4e copy  0x00000011 , 0x00000006 
- 00029584  0x00005d4f branch  0x00007387 
- 00029585  0x00005d51 arg  0x000004ef , 0x00000006 
- 00029586  0x00005d52 arg  0x0000053f , 0x00000005 
- 00029587  0x00005d53 call  0x00007e35 
- 00029588  0x00005d54 fetch  0x00000001 , 0x0000054e 
- 00029589  0x00005d55 ixor  0x00000013 , 0x0000003f 
- 00029590  0x00005d56 store  0x00000001 , 0x0000054e 
- 00029591  0x00005d57 setarg  0x0000053f 
- 00029592  0x00005d58 store  0x00000002 , 0x00000574 
- 00029593  0x00005d59 setarg  0x0000052f 
- 00029594  0x00005d5a store  0x00000002 , 0x00000572 
- 00029595  0x00005d5b set1  0x00000012 , 0x00000000 
- 00029596  0x00005d5c branch  0x000073bd 
- 00029597  0x00005d62 disable  0x00000028 
- 00029598  0x00005d63 call  0x00007474 
- 00029599  0x00005d64 branch  0x000073a7 
- 00029600  0x00005d67 arg  0x00000056 , 0x00000011 
- 00029601  0x00005d68 enable  0x00000028 
- 00029602  0x00005d69 call  0x00007474 
- 00029603  0x00005d6a call  0x000073a7 
- 00029604  0x00005d6b arg  0x0000051f , 0x00000006 
- 00029605  0x00005d6c arg  0x00000062 , 0x00000005 
- 00029606  0x00005d6d branch  0x00007e35 
- 00029607  0x00005d71 setarg  0x000004ef 
- 00029608  0x00005d72 store  0x00000002 , 0x00000574 
- 00029609  0x00005d73 setarg  0x00004262 
- 00029610  0x00005d74 store  0x00000002 , 0x00000572 
- 00029611  0x00005d75 set0  0x00000012 , 0x00000000 
- 00029612  0x00005d76 call  0x000073bd 
- 00029613  0x00005d77 arg  0x0000051f , 0x00000011 
- 00029614  0x00005d78 arg  0x000004ef , 0x00000012 
- 00029615  0x00005d79 arg  0x0000052f , 0x00000005 
- 00029616  0x00005d7a call  0x00007467 
- 00029617  0x00005d7b arg  0x0000052f , 0x00000011 
- 00029618  0x00005d7c arg  0x0000053f , 0x00000012 
- 00029619  0x00005d7d copy  0x00000012 , 0x00000005 
- 00029620  0x00005d7e enable  0x00000028 
- 00029621  0x00005d7f call  0x00007465 
- 00029622  0x00005d80 call  0x0000747f 
- 00029623  0x00005d81 setarg  0x0000053f 
- 00029624  0x00005d82 store  0x00000002 , 0x00000574 
- 00029625  0x00005d83 setarg  0x0000052f 
- 00029626  0x00005d84 store  0x00000002 , 0x00000572 
- 00029627  0x00005d85 set1  0x00000012 , 0x00000000 
- 00029628  0x00005d86 branch  0x000073bd 
- 00029629  0x00005d8b jam  0x00000000 , 0x00000576 
- 00029630  0x00005d8c fetch  0x00000002 , 0x00000572 
- 00029631  0x00005d8d iforce  0x00000006 
- 00029632  0x00005d8e arg  0x00000560 , 0x00000005 
- 00029633  0x00005d8f call  0x00007e35 
- 00029634  0x00005d90 fetch  0x00000002 , 0x00000574 
- 00029635  0x00005d91 iforce  0x00000006 
- 00029636  0x00005d92 arg  0x0000051f , 0x00000005 
- 00029637  0x00005d93 call  0x00007e35 
- 00029638  0x00005d96 call  0x000073e4 
- 00029639  0x00005d97 disable  0x00000028 
- 00029640  0x00005d98 bmark0  0x00000012 , 0x000073ce 
- 00029641  0x00005d99 fetch  0x00000001 , 0x00000576 
- 00029642  0x00005d9a bne  0x00000004 , 0x000073ce 
- 00029643  0x00005d9b fetch  0x00000002 , 0x00000574 
- 00029644  0x00005d9c iforce  0x00000012 
- 00029645  0x00005d9d call  0x00007416 
- 00029646  0x00005d9f call  0x00007415 
- 00029647  0x00005da0 call  0x00007428 
- 00029648  0x00005da1 fetch  0x00000001 , 0x00000576 
- 00029649  0x00005da2 increase  0x00000001 , 0x0000003f 
- 00029650  0x00005da3 store  0x00000001 , 0x00000576 
- 00029651  0x00005da5 call  0x000073e4 
- 00029652  0x00005da6 enable  0x00000028 
- 00029653  0x00005da7 call  0x00007415 
- 00029654  0x00005da8 call  0x00007437 
- 00029655  0x00005da9 call  0x00007446 
- 00029656  0x00005daa call  0x00007437 
- 00029657  0x00005dab call  0x00007446 
- 00029658  0x00005dac call  0x00007437 
- 00029659  0x00005dad call  0x00007446 
- 00029660  0x00005dae call  0x00007437 
- 00029661  0x00005daf fetch  0x00000001 , 0x00000576 
- 00029662  0x00005db0 increase  0x00000001 , 0x0000003f 
- 00029663  0x00005db1 store  0x00000001 , 0x00000576 
- 00029664  0x00005db2 bne  0x00000010 , 0x000073c6 
- 00029665  0x00005db3 call  0x000073e4 
- 00029666  0x00005db4 disable  0x00000028 
- 00029667  0x00005db5 branch  0x00007415 
- 00029668  0x00005dba fetch  0x00000001 , 0x00000576 
- 00029669  0x00005dbb arg  0x00000560 , 0x00000006 
- 00029670  0x00005dbc branch  0x0000740b , 0x00000034 
- 00029671  0x00005dbd iforce  0x00000012 
- 00029672  0x00005dbe force  0x00000011 , 0x00000039 
- 00029673  0x00005dbf copy  0x00000006 , 0x00000005 
- 00029674  0x00005dc1 ifetch  0x00000001 , 0x00000006 
- 00029675  0x00005dc2 lshift3  0x0000003f , 0x00000002 
- 00029676  0x00005dc3 rshift2  0x0000003f , 0x0000003f 
- 00029677  0x00005dc4 rshift3  0x0000003f , 0x0000003f 
- 00029678  0x00005dc5 ior  0x00000002 , 0x0000003f 
- 00029679  0x00005dc6 istore  0x00000001 , 0x00000005 
- 00029680  0x00005dc7 loop  0x000073ea 
- 00029681  0x00005dc8 setarg  0x00000560 
- 00029682  0x00005dc9 iadd  0x00000012 , 0x00000006 
- 00029683  0x00005dca force  0x00000010 , 0x00000039 
- 00029684  0x00005dcb arg  0x000004ff , 0x00000005 
- 00029685  0x00005dcd ifetch  0x00000001 , 0x00000006 
- 00029686  0x00005dce istore  0x00000001 , 0x00000005 
- 00029687  0x00005dcf compare  0x00000571 , 0x00000006 , 0x000000ff 
- 00029688  0x00005dd0 nbranch  0x000073fa , 0x00000001 
- 00029689  0x00005dd1 increase  0xffffffef , 0x00000006 
- 00029690  0x00005dd3 loop  0x000073f5 
- 00029691  0x00005dd4 force  0x00000000 , 0x00000011 
- 00029692  0x00005dd5 add  0x00000012 , 0xffffffff , 0x00000013 
- 00029693  0x00005dd6 lshift2  0x00000013 , 0x00000013 
- 00029694  0x00005dd7 lshift2  0x00000013 , 0x00000013 
- 00029695  0x00005dd8 call  0x000075c5 
- 00029696  0x00005dd9 setarg  0x00008400 
- 00029697  0x00005dda iadd  0x00000013 , 0x00000013 
- 00029698  0x00005ddb arg  0x000004ff , 0x00000005 
- 00029699  0x00005ddc force  0x00000010 , 0x00000039 
- 00029700  0x00005dde ifetcht  0x00000001 , 0x00000013 
- 00029701  0x00005ddf ifetch  0x00000001 , 0x00000005 
- 00029702  0x00005de0 iadd  0x00000002 , 0x0000003f 
- 00029703  0x00005de1 istore  0x00000001 , 0x00000005 
- 00029704  0x00005de2 increase  0x00000001 , 0x00000013 
- 00029705  0x00005de3 loop  0x00007404 
- 00029706  0x00005de4 branch  0x000075c9 
- 00029707  0x00005de7 force  0x00000010 , 0x00000039 
- 00029708  0x00005de8 force  0x00000000 , 0x00000002 
- 00029709  0x00005dea ifetch  0x00000001 , 0x00000006 
- 00029710  0x00005deb ixor  0x00000002 , 0x00000002 
- 00029711  0x00005dec loop  0x0000740d 
- 00029712  0x00005ded deposit  0x00000002 
- 00029713  0x00005dee istore  0x00000001 , 0x00000006 
- 00029714  0x00005def arg  0x00000560 , 0x00000006 
- 00029715  0x00005df0 arg  0x000004ff , 0x00000005 
- 00029716  0x00005df1 branch  0x00007e35 
- 00029717  0x00005df4 arg  0x000004ff , 0x00000012 
- 00029718  0x00005df6 force  0x00000010 , 0x00000039 
- 00029719  0x00005df7 arg  0x0000051f , 0x00000011 
- 00029720  0x00005df8 copy  0x00000011 , 0x00000005 
- 00029721  0x00005dfa ifetcht  0x00000001 , 0x00000011 
- 00029722  0x00005dfb ifetch  0x00000001 , 0x00000012 
- 00029723  0x00005dfc ixor  0x00000002 , 0x00000030 
- 00029724  0x00005dfd and  0x00000039 , 0x00000003 , 0x00000013 
- 00029725  0x00005dfe nbranch  0x0000741f , 0x00000028 
- 00029726  0x00005dff xor_into  0x00000003 , 0x00000013 
- 00029727  0x00005e01 sub  0x00000013 , 0x00000001 , 0x00000013 
- 00029728  0x00005e02 branch  0x00007422 , 0x00000002 
- 00029729  0x00005e03 iadd  0x00000002 , 0x00000030 
- 00029730  0x00005e05 deposit  0x00000030 
- 00029731  0x00005e06 istore  0x00000001 , 0x00000005 
- 00029732  0x00005e07 increase  0x00000001 , 0x00000011 
- 00029733  0x00005e08 increase  0x00000001 , 0x00000012 
- 00029734  0x00005e09 loop  0x00007419 
- 00029735  0x00005e0a rtn 
- 00029736  0x00005e0d call  0x000075c5 
- 00029737  0x00005e0e force  0x00000010 , 0x00000039 
- 00029738  0x00005e0f arg  0x0000051f , 0x00000011 
- 00029739  0x00005e11 ifetch  0x00000001 , 0x00000011 
- 00029740  0x00005e12 arg  0x00008500 , 0x00000006 
- 00029741  0x00005e13 and  0x00000039 , 0x00000003 , 0x00000013 
- 00029742  0x00005e14 sub  0x00000013 , 0x00000001 , 0x0000003e 
- 00029743  0x00005e15 branch  0x00007431 , 0x00000002 
- 00029744  0x00005e16 arg  0x00008600 , 0x00000006 
- 00029745  0x00005e18 iadd  0x00000006 , 0x00000006 
- 00029746  0x00005e19 ifetch  0x00000001 , 0x00000006 
- 00029747  0x00005e1a istore  0x00000001 , 0x00000011 
- 00029748  0x00005e1b increase  0x00000001 , 0x00000011 
- 00029749  0x00005e1c loop  0x0000742b 
- 00029750  0x00005e1d branch  0x000075c9 
- 00029751  0x00005e20 force  0x00000008 , 0x00000039 
- 00029752  0x00005e21 arg  0x0000051f , 0x00000006 
- 00029753  0x00005e22 copy  0x00000006 , 0x00000005 
- 00029754  0x00005e24 ifetch  0x00000001 , 0x00000006 
- 00029755  0x00005e25 iforce  0x00000011 
- 00029756  0x00005e26 ifetch  0x00000001 , 0x00000006 
- 00029757  0x00005e27 iforce  0x00000012 
- 00029758  0x00005e28 lshift  0x00000011 , 0x0000003f 
- 00029759  0x00005e29 iadd  0x00000012 , 0x0000003f 
- 00029760  0x00005e2a istore  0x00000001 , 0x00000005 
- 00029761  0x00005e2b deposit  0x00000011 
- 00029762  0x00005e2c iadd  0x00000012 , 0x0000003f 
- 00029763  0x00005e2d istore  0x00000001 , 0x00000005 
- 00029764  0x00005e2e loop  0x0000743a 
- 00029765  0x00005e2f rtn 
- 00029766  0x00005e33 setarg  0x008ae42c 
- 00029767  0x00005e34 iforce  0x00000002 
- 00029768  0x00005e35 force  0x00000007 , 0x00000039 
- 00029769  0x00005e36 call  0x00007455 
- 00029770  0x00005e37 setarg  0x000d751b 
- 00029771  0x00005e38 iforce  0x00000002 
- 00029772  0x00005e39 force  0x00000005 , 0x00000039 
- 00029773  0x00005e3a call  0x00007455 
- 00029774  0x00005e3b fetch  0x00000001 , 0x0000052e 
- 00029775  0x00005e3c iforce  0x00000011 
- 00029776  0x00005e3d fetch  0x00000001 , 0x00000522 
- 00029777  0x00005e3e store  0x00000001 , 0x0000052e 
- 00029778  0x00005e3f deposit  0x00000011 
- 00029779  0x00005e40 store  0x00000001 , 0x00000522 
- 00029780  0x00005e41 rtn 
- 00029781  0x00005e44 and  0x00000002 , 0x0000000f , 0x00000012 
- 00029782  0x00005e46 and  0x00000002 , 0x0000000f , 0x0000003f 
- 00029783  0x00005e47 arg  0x0000051f , 0x00000005 
- 00029784  0x00005e48 iadd  0x00000005 , 0x00000005 
- 00029785  0x00005e49 ifetch  0x00000001 , 0x00000005 
- 00029786  0x00005e4a iforce  0x00000013 
- 00029787  0x00005e4b deposit  0x00000011 
- 00029788  0x00005e4c istore  0x00000001 , 0x00000005 
- 00029789  0x00005e4d copy  0x00000013 , 0x00000011 
- 00029790  0x00005e4e rshift4  0x00000002 , 0x00000002 
- 00029791  0x00005e4f loop  0x00007456 
- 00029792  0x00005e50 setarg  0x0000051f 
- 00029793  0x00005e51 iadd  0x00000012 , 0x00000005 
- 00029794  0x00005e52 deposit  0x00000011 
- 00029795  0x00005e53 istore  0x00000001 , 0x00000005 
- 00029796  0x00005e54 rtn 
- 00029797  0x00005e57 enable  0x00000028 
- 00029798  0x00005e58 branch  0x00007468 
- 00029799  0x00005e5b disable  0x00000028 
- 00029800  0x00005e5d force  0x00000010 , 0x00000039 
- 00029801  0x00005e5f ifetcht  0x00000001 , 0x00000011 
- 00029802  0x00005e60 ifetch  0x00000001 , 0x00000012 
- 00029803  0x00005e61 branch  0x0000746e , 0x00000028 
- 00029804  0x00005e62 ixor  0x00000002 , 0x0000003f 
- 00029805  0x00005e63 branch  0x0000746f 
- 00029806  0x00005e65 iadd  0x00000002 , 0x0000003f 
- 00029807  0x00005e67 istore  0x00000001 , 0x00000005 
- 00029808  0x00005e68 increase  0x00000001 , 0x00000011 
- 00029809  0x00005e69 increase  0x00000001 , 0x00000012 
- 00029810  0x00005e6a loop  0x00007469 
- 00029811  0x00005e6b rtn 
- 00029812  0x00005e6f arg  0x0000053f , 0x00000005 
- 00029813  0x00005e70 ifetch  0x00000006 , 0x00000011 
- 00029814  0x00005e71 istore  0x00000006 , 0x00000005 
- 00029815  0x00005e72 branch  0x0000747a , 0x00000028 
- 00029816  0x00005e73 ifetch  0x00000006 , 0x00000011 
- 00029817  0x00005e74 branch  0x0000747b 
- 00029818  0x00005e76 ifetch  0x00000006 , 0x00000006 
- 00029819  0x00005e78 istore  0x00000006 , 0x00000005 
- 00029820  0x00005e79 ifetch  0x00000004 , 0x00000011 
- 00029821  0x00005e7a istore  0x00000004 , 0x00000005 
- 00029822  0x00005e7b rtn 
- 00029823  0x00005e7e arg  0x00004262 , 0x00000006 
- 00029824  0x00005e7f arg  0x0000052f , 0x00000005 
- 00029825  0x00005e80 arg  0x00000000 , 0x00000002 
- 00029826  0x00005e81 setarg  0x008395a7 
- 00029827  0x00005e82 call  0x000074a0 
- 00029828  0x00005e83 setarg  0x00b3c1df 
- 00029829  0x00005e84 call  0x000074a0 
- 00029830  0x00005e85 setarg  0x0000e5e9 
- 00029831  0x00005e86 call  0x000074a1 
- 00029832  0x00005e87 copy  0x00000002 , 0x00000014 
- 00029833  0x00005e88 disable  0x00000028 
- 00029834  0x00005e89 call  0x0000748e 
- 00029835  0x00005e8a copy  0x00000014 , 0x00000002 
- 00029836  0x00005e8b enable  0x00000028 
- 00029837  0x00005e8c branch  0x0000748e 
- 00029838  0x00005e8f force  0x00000008 , 0x00000039 
- 00029839  0x00005e91 ifetch  0x00000001 , 0x00000006 
- 00029840  0x00005e92 compare  0x00000001 , 0x00000039 , 0x00000001 
- 00029841  0x00005e93 branch  0x00007495 , 0x00000028 
- 00029842  0x00005e94 branch  0x00007496 , 0x00000001 
- 00029843  0x00005e96 iadd  0x00000002 , 0x0000003f 
- 00029844  0x00005e97 branch  0x00007497 
- 00029845  0x00005e99 branch  0x00007493 , 0x00000001 
- 00029846  0x00005e9b ixor  0x00000002 , 0x0000003f 
- 00029847  0x00005e9d istore  0x00000001 , 0x00000005 
- 00029848  0x00005e9e rshift8  0x00000002 , 0x00000002 
- 00029849  0x00005e9f loop  0x0000748f 
- 00029850  0x00005ea0 rtn 
- 00029851  0x00005ea3 fetch  0x00000006 , 0x00000523 
- 00029852  0x00005ea4 store  0x00000006 , 0x00000056 
- 00029853  0x00005ea5 ifetch  0x00000006 , 0x00000006 
- 00029854  0x00005ea6 istore  0x00000006 , 0x00000005 
- 00029855  0x00005ea7 rtn 
- 00029856  0x00005eaa lshift8  0x00000002 , 0x00000002 
- 00029857  0x00005eac lshift16  0x00000002 , 0x00000002 
- 00029858  0x00005ead ior  0x00000002 , 0x00000002 
- 00029859  0x00005eae rtn 
- 00029860  0x00005eb2 branch  0x000074a4 
- 00029861  0x00005eb7 call  0x00007540 
- 00029862  0x00005eb8 arg  0x0000447b , 0x00000005 
- 00029863  0x00005eb9 branch  0x000075a3 
- 00029864  0x00005ebd arg  0x0000449c , 0x00000005 
- 00029865  0x00005ebe branch  0x000074ab , 0x00000029 
- 00029866  0x00005ebf arg  0x000003b0 , 0x00000005 
- 00029867  0x00005ec1 copy  0x00000006 , 0x00000011 
- 00029868  0x00005ec2 call  0x00007e35 
- 00029869  0x00005ec3 call  0x00007551 
- 00029870  0x00005ec4 arg  0x0000448c , 0x00000006 
- 00029871  0x00005ec5 branch  0x000075bc 
- 00029872  0x00005ec8 arg  0x000003b0 , 0x00000011 
- 00029873  0x00005ec9 branch  0x000074b3 , 0x00000029 
- 00029874  0x00005eca arg  0x0000449c , 0x00000011 
- 00029875  0x00005ecc copy  0x00000011 , 0x00000005 
- 00029876  0x00005ecd call  0x00006226 
- 00029877  0x00005ece branch  0x00007551 
- 00029878  0x00005ed1 arg  0x00000380 , 0x00000006 
- 00029879  0x00005ed2 call  0x00007592 
- 00029880  0x00005ed3 arg  0x0000447b , 0x00000006 
- 00029881  0x00005ed4 call  0x00007593 
- 00029882  0x00005ed5 force  0x00000038 , 0x00000036 
- 00029883  0x00005ed6 force  0x00000000 , 0x00000036 
- 00029884  0x00005ed7 call  0x0000752f 
- 00029885  0x00005ed8 arg  0x000003fd , 0x00000005 
- 00029886  0x00005ed9 branch  0x000075a3 
- 00029887  0x00005edd force  0x00000049 , 0x0000003f 
- 00029888  0x00005ede branch  0x000074c2 
- 00029889  0x00005ee0 force  0x00000001 , 0x0000003f 
- 00029890  0x00005ee2 force  0x00000000 , 0x00000038 
- 00029891  0x00005ee3 lshift8  0x00000002 , 0x0000002f 
- 00029892  0x00005ee4 ior  0x0000002f , 0x0000002f 
- 00029893  0x00005ee5 increase  0x00000001 , 0x00000038 
- 00029894  0x00005ee6 rshift8  0x00000002 , 0x0000002f 
- 00029895  0x00005ee7 rshift16  0x0000002f , 0x0000002f 
- 00029896  0x00005ee8 fetch  0x00000002 , 0x00004473 
- 00029897  0x00005ee9 lshift16 , 0x0000003f , 0x0000003f 
- 00029898  0x00005eea ior  0x0000002f , 0x0000002f 
- 00029899  0x00005eeb increase  0x00000001 , 0x00000038 
- 00029900  0x00005eec ifetch  0x00000004 , 0x00000006 
- 00029901  0x00005eed iforce  0x0000002f 
- 00029902  0x00005eee increase  0x00000001 , 0x00000038 
- 00029903  0x00005eef ifetch  0x00000002 , 0x00000006 
- 00029904  0x00005ef0 byteswap  0x00000011 , 0x0000002f 
- 00029905  0x00005ef1 lshift16  0x0000002f , 0x0000002f 
- 00029906  0x00005ef2 ior  0x0000002f , 0x0000002f 
- 00029907  0x00005ef3 increase  0x00000001 , 0x00000038 
- 00029908  0x00005ef4 rtn 
- 00029909  0x00005ef9 add  0x00000013 , 0x00000001 , 0x00000006 
- 00029910  0x00005efa ifetch  0x00000001 , 0x00000006 
- 00029911  0x00005efb iforce  0x00000011 
- 00029912  0x00005efc call  0x000074bf 
- 00029913  0x00005efd call  0x00007531 
- 00029914  0x00005eff force  0x00000000 , 0x00000038 
- 00029915  0x00005f00 ifetch  0x00000001 , 0x00000013 
- 00029916  0x00005f01 and_into  0x00000003 , 0x0000003f 
- 00029917  0x00005f02 lshift16  0x0000003f , 0x0000002f 
- 00029918  0x00005f03 set1  0x00000008 , 0x0000002f 
- 00029919  0x00005f04 call  0x0000759b 
- 00029920  0x00005f05 call  0x00007534 
- 00029921  0x00005f07 copy  0x00000011 , 0x00000039 
- 00029922  0x00005f08 add  0x00000013 , 0x00000002 , 0x00000006 
- 00029923  0x00005f09 call  0x0000757a 
- 00029924  0x00005f0b call  0x00007584 
- 00029925  0x00005f0c call  0x00007534 
- 00029926  0x00005f0d deposit  0x00000039 
- 00029927  0x00005f0e branch  0x000074e9 , 0x00000034 
- 00029928  0x00005f0f branch  0x000074e4 
- 00029929  0x00005f11 force  0x0000000c , 0x00000038 
- 00029930  0x00005f12 deposit  0x0000002f 
- 00029931  0x00005f13 store  0x00000004 , 0x00000378 
- 00029932  0x00005f14 rtn 
- 00029933  0x00005f17 increase  0x00000001 , 0x00000011 
- 00029934  0x00005f18 call  0x000074c1 
- 00029935  0x00005f19 copy  0x00000013 , 0x00000006 
- 00029936  0x00005f1a call  0x0000758e 
- 00029937  0x00005f1b call  0x00007537 
- 00029938  0x00005f1c call  0x000075aa 
- 00029939  0x00005f1d increase  0x00000010 , 0x00000013 
- 00029940  0x00005f1e increase  0xfffffff0 , 0x00000012 
- 00029941  0x00005f1f branch  0x000074ed , 0x00000002 
- 00029942  0x00005f20 rtn 
- 00029943  0x00005f23 arg  0x0000443e , 0x00000013 
- 00029944  0x00005f24 fetcht  0x00000005 , 0x00004465 
- 00029945  0x00005f25 call  0x000074d5 
- 00029946  0x00005f26 force  0x00000008 , 0x00000038 
- 00029947  0x00005f27 iforce  0x0000002f 
- 00029948  0x00005f28 force  0x00000000 , 0x00000011 
- 00029949  0x00005f29 call  0x000074c1 
- 00029950  0x00005f2a call  0x00007537 
- 00029951  0x00005f2b arg  0x00004440 , 0x00000013 
- 00029952  0x00005f2c fetch  0x00000001 , 0x0000443f 
- 00029953  0x00005f2d add  0x0000003f , 0xffffffff , 0x00000012 
- 00029954  0x00005f2e iadd  0x00000013 , 0x00000005 
- 00029955  0x00005f2f force  0x0000000c , 0x00000038 
- 00029956  0x00005f30 deposit  0x0000002f 
- 00029957  0x00005f31 istore  0x00000004 , 0x00000005 
- 00029958  0x00005f32 call  0x000074ed 
- 00029959  0x00005f33 fetch  0x00000001 , 0x0000443f 
- 00029960  0x00005f34 increase  0x00000004 , 0x0000003f 
- 00029961  0x00005f35 store  0x00000001 , 0x0000443f 
- 00029962  0x00005f36 fetcht  0x00000005 , 0x00004465 
- 00029963  0x00005f37 increase  0x00000001 , 0x00000002 
- 00029964  0x00005f38 storet  0x00000005 , 0x00004465 
- 00029965  0x00005f39 rtn 
- 00029966  0x00005f3c fetch  0x00000001 , 0x00000341 
- 00029967  0x00005f3d sub  0x0000003f , 0x00000014 , 0x0000003e 
- 00029968  0x00005f3e branch  0x00007511 , 0x00000002 
- 00029969  0x00005f40 arg  0x00000342 , 0x00000013 
- 00029970  0x00005f41 add  0x0000003f , 0xffffffff , 0x00000012 
- 00029971  0x00005f42 increase  0xfffffffc , 0x0000003f 
- 00029972  0x00005f43 store  0x00000001 , 0x00000341 
- 00029973  0x00005f44 iadd  0x00000013 , 0x00000006 
- 00029974  0x00005f45 ifetch  0x00000004 , 0x00000006 
- 00029975  0x00005f46 force  0x00000008 , 0x00000038 
- 00029976  0x00005f47 iforce  0x0000002f 
- 00029977  0x00005f48 force  0x00000000 , 0x00000011 
- 00029978  0x00005f49 fetcht  0x00000005 , 0x0000446a 
- 00029979  0x00005f4a call  0x000074c1 
- 00029980  0x00005f4b call  0x00007537 
- 00029981  0x00005f4c force  0x0000000c , 0x00000038 
- 00029982  0x00005f4d deposit  0x0000002f 
- 00029983  0x00005f4e store  0x00000004 , 0x0000037c 
- 00029984  0x00005f4f call  0x000074ed 
- 00029985  0x00005f50 arg  0x00000340 , 0x00000013 
- 00029986  0x00005f51 call  0x000074d5 
- 00029987  0x00005f52 fetcht  0x00000004 , 0x0000037c 
- 00029988  0x00005f53 isub  0x00000002 , 0x0000003f 
- 00029989  0x00005f54 nrtn  0x00000034 
- 00029990  0x00005f55 fetch  0x00000004 , 0x0000446f 
- 00029991  0x00005f56 isub  0x00000002 , 0x0000003f 
- 00029992  0x00005f57 rtn  0x00000034 
- 00029993  0x00005f58 storet  0x00000004 , 0x0000446f 
- 00029994  0x00005f59 fetch  0x00000005 , 0x0000446a 
- 00029995  0x00005f5a increase  0x00000001 , 0x0000003f 
- 00029996  0x00005f5b store  0x00000005 , 0x0000446a 
- 00029997  0x00005f5c force  0x00000000 , 0x0000003f 
- 00029998  0x00005f5d rtn 
- 00029999  0x00005f60 nbranch  0x0000752f , 0x00000037 
- 00030000  0x00005f61 rtn 
- 00030001  0x00005f64 force  0x00000030 , 0x00000036 
- 00030002  0x00005f65 force  0x00000000 , 0x00000036 
- 00030003  0x00005f66 branch  0x0000752f 
- 00030004  0x00005f69 force  0x00000032 , 0x00000036 
- 00030005  0x00005f6a force  0x00000002 , 0x00000036 
- 00030006  0x00005f6b branch  0x0000752f 
- 00030007  0x00005f6e force  0x00000034 , 0x00000036 
- 00030008  0x00005f6f force  0x00000004 , 0x00000036 
- 00030009  0x00005f70 branch  0x0000752f 
- 00030010  0x00005f73 force  0x00000036 , 0x00000036 
- 00030011  0x00005f74 force  0x00000006 , 0x00000036 
- 00030012  0x00005f75 branch  0x0000752f 
- 00030013  0x00005f78 force  0x00000001 , 0x00000036 
- 00030014  0x00005f79 force  0x00000000 , 0x00000036 
- 00030015  0x00005f7a rtn 
- 00030016  0x00005f7c force  0x00000000 , 0x00000038 
- 00030017  0x00005f7d fetch  0x00000004 , 0x000003b0 
- 00030018  0x00005f7e iforce  0x0000002f 
- 00030019  0x00005f7f increase  0x00000001 , 0x00000038 
- 00030020  0x00005f80 ifetch  0x00000004 , 0x00000006 
- 00030021  0x00005f81 iforce  0x0000002f 
- 00030022  0x00005f82 increase  0x00000001 , 0x00000038 
- 00030023  0x00005f83 fetch  0x00000004 , 0x0000449c 
- 00030024  0x00005f84 iforce  0x0000002f 
- 00030025  0x00005f85 increase  0x00000001 , 0x00000038 
- 00030026  0x00005f86 ifetch  0x00000004 , 0x00000006 
- 00030027  0x00005f87 iforce  0x0000002f 
- 00030028  0x00005f88 increase  0x00000001 , 0x00000038 
- 00030029  0x00005f89 call  0x0000759e 
- 00030030  0x00005f8a force  0x00000038 , 0x00000036 
- 00030031  0x00005f8b force  0x00000008 , 0x00000036 
- 00030032  0x00005f8c branch  0x0000752f 
- 00030033  0x00005f90 fetch  0x00000006 , 0x000044f9 
- 00030034  0x00005f91 fetcht  0x00000006 , 0x000003d0 
- 00030035  0x00005f92 branch  0x00007556 , 0x00000029 
- 00030036  0x00005f93 fetch  0x00000006 , 0x000003d0 
- 00030037  0x00005f94 fetcht  0x00000006 , 0x000044f9 
- 00030038  0x00005f96 force  0x00000008 , 0x00000038 
- 00030039  0x00005f97 copy  0x00000002 , 0x0000002f 
- 00030040  0x00005f98 increase  0x00000001 , 0x00000038 
- 00030041  0x00005f99 rshift32  0x00000002 , 0x0000002f 
- 00030042  0x00005f9a lshift16  0x0000003f , 0x0000003f 
- 00030043  0x00005f9b ior  0x0000002f , 0x0000002f 
- 00030044  0x00005f9c increase  0x00000001 , 0x00000038 
- 00030045  0x00005f9d rshift32  0x0000003f , 0x0000002f 
- 00030046  0x00005f9e increase  0x00000001 , 0x00000038 
- 00030047  0x00005f9f force  0x00000000 , 0x0000002f 
- 00030048  0x00005fa0 force  0x00000000 , 0x0000003f 
- 00030049  0x00005fa1 fetch  0x00000001 , 0x000044e6 
- 00030050  0x00005fa2 fetcht  0x00000001 , 0x000044dc 
- 00030051  0x00005fa3 nbranch  0x00007566 , 0x00000029 
- 00030052  0x00005fa5 fetch  0x00000001 , 0x000044ed 
- 00030053  0x00005fa6 fetcht  0x00000001 , 0x000044e6 
- 00030054  0x00005fa8 store  0x00000001 , 0x000044ac 
- 00030055  0x00005fa9 storet  0x00000001 , 0x000044ad 
- 00030056  0x00005faa force  0x00000000 , 0x00000038 
- 00030057  0x00005fab arg  0x000044ac , 0x00000012 
- 00030058  0x00005fac force  0x00000004 , 0x00000039 
- 00030059  0x00005fae ifetch  0x00000004 , 0x00000011 
- 00030060  0x00005faf ifetcht  0x00000004 , 0x00000012 
- 00030061  0x00005fb0 ixor  0x00000002 , 0x0000002f 
- 00030062  0x00005fb1 increase  0x00000001 , 0x00000038 
- 00030063  0x00005fb2 increase  0x00000004 , 0x00000011 
- 00030064  0x00005fb3 increase  0x00000004 , 0x00000012 
- 00030065  0x00005fb4 loop  0x0000756b 
- 00030066  0x00005fb5 call  0x0000759e 
- 00030067  0x00005fb6 force  0x00000038 , 0x00000036 
- 00030068  0x00005fb7 force  0x0000000c , 0x00000036 
- 00030069  0x00005fb8 call  0x0000752f 
- 00030070  0x00005fba call  0x0000759d 
- 00030071  0x00005fbb force  0x0000003a , 0x00000036 
- 00030072  0x00005fbc force  0x00000008 , 0x00000036 
- 00030073  0x00005fbd branch  0x0000752f 
- 00030074  0x00005fc0 compare  0x00000000 , 0x00000039 , 0x00000003 
- 00030075  0x00005fc1 rtn  0x00000001 
- 00030076  0x00005fc2 deposit  0x00000006 
- 00030077  0x00005fc3 iadd  0x00000039 , 0x00000005 
- 00030078  0x00005fc4 force  0x00000000 , 0x0000003f 
- 00030079  0x00005fc6 istore  0x00000001 , 0x00000005 
- 00030080  0x00005fc7 increase  0x00000001 , 0x00000039 
- 00030081  0x00005fc8 compare  0x00000000 , 0x00000039 , 0x00000003 
- 00030082  0x00005fc9 rtn  0x00000001 
- 00030083  0x00005fca branch  0x0000757f 
- 00030084  0x00005fcd force  0x00000000 , 0x00000038 
- 00030085  0x00005fcf deposit  0x00000039 
- 00030086  0x00005fd0 branch  0x00007589 , 0x00000034 
- 00030087  0x00005fd1 ifetch  0x00000004 , 0x00000006 
- 00030088  0x00005fd2 increase  0xfffffffc , 0x00000039 
- 00030089  0x00005fd4 iforce  0x0000002f 
- 00030090  0x00005fd5 increase  0x00000001 , 0x00000038 
- 00030091  0x00005fd6 compare  0x00000004 , 0x00000038 , 0x0000000f 
- 00030092  0x00005fd7 rtn  0x00000001 
- 00030093  0x00005fd8 branch  0x00007585 
- 00030094  0x00005fdb force  0x00000008 , 0x00000038 
- 00030095  0x00005fdc branch  0x00007593 
- 00030096  0x00005fde force  0x00000004 , 0x00000038 
- 00030097  0x00005fdf branch  0x00007593 
- 00030098  0x00005fe1 force  0x00000000 , 0x00000038 
- 00030099  0x00005fe3 force  0x00000004 , 0x00000039 
- 00030100  0x00005fe5 ifetch  0x00000004 , 0x00000006 
- 00030101  0x00005fe6 iforce  0x0000002f 
- 00030102  0x00005fe7 increase  0x00000001 , 0x00000038 
- 00030103  0x00005fe8 loop  0x00007594 
- 00030104  0x00005fe9 rtn 
- 00030105  0x00005fec arg  0x000003fd , 0x00000006 
- 00030106  0x00005fed branch  0x00007590 
- 00030107  0x00005ff0 force  0x00000004 , 0x00000039 
- 00030108  0x00005ff1 branch  0x000075a0 
- 00030109  0x00005ff4 force  0x00000000 , 0x00000038 
- 00030110  0x00005ff6 force  0x00000004 , 0x00000039 
- 00030111  0x00005ff8 force  0x00000000 , 0x0000002f 
- 00030112  0x00005ffa increase  0x00000001 , 0x00000038 
- 00030113  0x00005ffb loop  0x0000759f 
- 00030114  0x00005ffc rtn 
- 00030115  0x00005fff force  0x0000000c , 0x00000038 
- 00030116  0x00006000 force  0x00000004 , 0x00000039 
- 00030117  0x00006002 deposit  0x0000002f 
- 00030118  0x00006003 istore  0x00000004 , 0x00000005 
- 00030119  0x00006004 increase  0x00000001 , 0x00000038 
- 00030120  0x00006005 loop  0x000075a5 
- 00030121  0x00006006 rtn 
- 00030122  0x00006009 force  0x0000000c , 0x00000038 
- 00030123  0x0000600a copy  0x00000013 , 0x00000005 
- 00030124  0x0000600b add  0x00000012 , 0x00000001 , 0x00000039 
- 00030125  0x0000600c sub  0x00000039 , 0x0000000f , 0x0000003e 
- 00030126  0x0000600d branch  0x000075b0 , 0x00000002 
- 00030127  0x0000600e force  0x00000010 , 0x00000039 
- 00030128  0x00006010 deposit  0x0000002f 
- 00030129  0x00006011 sub  0x00000039 , 0x00000003 , 0x0000003e 
- 00030130  0x00006012 branch  0x000075b8 , 0x00000002 
- 00030131  0x00006013 istore  0x00000004 , 0x00000005 
- 00030132  0x00006014 increase  0xfffffffc , 0x00000039 
- 00030133  0x00006015 rtn  0x00000005 
- 00030134  0x00006016 increase  0x00000001 , 0x00000038 
- 00030135  0x00006017 branch  0x000075b0 
- 00030136  0x00006019 istore  0x00000001 , 0x00000005 
- 00030137  0x0000601a rshift8  0x0000003f , 0x0000003f 
- 00030138  0x0000601b loop  0x000075b8 
- 00030139  0x0000601c rtn 
- 00030140  0x00006020 force  0x0000000c , 0x00000038 
- 00030141  0x00006021 force  0x00000004 , 0x00000039 
- 00030142  0x00006023 ifetch  0x00000004 , 0x00000006 
- 00030143  0x00006024 isub  0x0000002f , 0x0000003e 
- 00030144  0x00006025 nrtn  0x00000005 
- 00030145  0x00006026 increase  0x00000001 , 0x00000038 
- 00030146  0x00006027 loop  0x000075be 
- 00030147  0x00006028 force  0x00000000 , 0x0000003e 
- 00030148  0x00006029 rtn 
- 00030149  0x0000602c hfetch  0x00000001 , 0x00008050 
- 00030150  0x0000602d set0  0x00000000 , 0x0000003f 
- 00030151  0x0000602e hstore  0x00000001 , 0x00008050 
- 00030152  0x0000602f rtn 
- 00030153  0x00006032 hfetch  0x00000001 , 0x00008050 
- 00030154  0x00006033 set1  0x00000000 , 0x0000003f 
- 00030155  0x00006034 hstore  0x00000001 , 0x00008050 
- 00030156  0x00006035 rtn 
- 00030157  0x00006038 arg  0x00000742 , 0x00000005 
- 00030158  0x00006039 setsect  0x00000000 , 0x0003ffff 
- 00030159  0x0000603a setsect  0x00000001 , 0x0003ffff 
- 00030160  0x0000603b setsect  0x00000002 , 0x0003ffff 
- 00030161  0x0000603c setsect  0x00000003 , 0x0003fbff 
- 00030162  0x0000603d istore  0x00000009 , 0x00000005 
- 00030163  0x0000603e setsect  0x00000000 , 0x0003ffff 
- 00030164  0x0000603f setsect  0x00000001 , 0x0003ffff 
- 00030165  0x00006040 setsect  0x00000002 , 0x0003ffff 
- 00030166  0x00006041 setsect  0x00000003 , 0x0003ffff 
- 00030167  0x00006042 istore  0x00000009 , 0x00000005 
- 00030168  0x00006043 setsect  0x00000000 , 0x0003ffff 
- 00030169  0x00006044 setsect  0x00000001 , 0x0003ffff 
- 00030170  0x00006045 setsect  0x00000002 , 0x0003cfff 
- 00030171  0x00006046 setsect  0x00000003 , 0x0003ffff 
- 00030172  0x00006047 istore  0x00000009 , 0x00000005 
- 00030173  0x00006048 setsect  0x00000000 , 0x0003ffff 
- 00030174  0x00006049 setsect  0x00000001 , 0x0003ffff 
- 00030175  0x0000604a setsect  0x00000002 , 0x0003ffef 
- 00030176  0x0000604b setsect  0x00000003 , 0x0003ffff 
- 00030177  0x0000604c istore  0x00000009 , 0x00000005 
- 00030178  0x0000604d setsect  0x00000000 , 0x0003ffff 
- 00030179  0x0000604e setsect  0x00000001 , 0x0003ffff 
- 00030180  0x0000604f setsect  0x00000002 , 0x0003ffff 
- 00030181  0x00006050 setsect  0x00000003 , 0x0003ffff 
- 00030182  0x00006051 istore  0x00000009 , 0x00000005 
- 00030183  0x00006052 setsect  0x00000000 , 0x0003ffff 
- 00030184  0x00006053 setsect  0x00000001 , 0x00026c7f 
- 00030185  0x00006054 setsect  0x00000002 , 0x0000146b 
- 00030186  0x00006055 setsect  0x00000003 , 0x00037bb3 
- 00030187  0x00006056 istore  0x00000009 , 0x00000005 
- 00030188  0x00006057 setsect  0x00000000 , 0x0001feb8 
- 00030189  0x00006058 setsect  0x00000001 , 0x00010c12 
- 00030190  0x00006059 setsect  0x00000002 , 0x0002b722 
- 00030191  0x0000605a setsect  0x00000003 , 0x00029fa6 
- 00030192  0x0000605b istore  0x00000009 , 0x00000005 
- 00030193  0x0000605c setsect  0x00000000 , 0x0000e70f 
- 00030194  0x0000605d setsect  0x00000001 , 0x00016720 
- 00030195  0x0000605e setsect  0x00000002 , 0x0000519e 
- 00030196  0x0000605f setsect  0x00000003 , 0x00019084 
- 00030197  0x00006060 istore  0x00000009 , 0x00000005 
- 00030198  0x00006061 setsect  0x00000000 , 0x00031012 
- 00030199  0x00006062 setsect  0x00000001 , 0x000360bf 
- 00030200  0x00006063 setsect  0x00000002 , 0x0003f0af 
- 00030201  0x00006064 setsect  0x00000003 , 0x000003d3 
- 00030202  0x00006065 istore  0x00000009 , 0x00000005 
- 00030203  0x00006066 setsect  0x00000000 , 0x0003a188 
- 00030204  0x00006067 setsect  0x00000001 , 0x00003ad0 
- 00030205  0x00006068 setsect  0x00000002 , 0x0003cbf2 
- 00030206  0x00006069 setsect  0x00000003 , 0x000243d9 
- 00030207  0x0000606a istore  0x00000009 , 0x00000005 
- 00030208  0x0000606b setsect  0x00000000 , 0x0002b030 
- 00030209  0x0000606c setsect  0x00000001 , 0x00036a03 
- 00030210  0x0000606d setsect  0x00000002 , 0x00011188 
- 00030211  0x0000606e setsect  0x00000003 , 0x0001e520 
- 00030212  0x0000606f istore  0x00000009 , 0x00000005 
- 00030213  0x00006070 setsect  0x00000000 , 0x0003a11e 
- 00030214  0x00006071 setsect  0x00000001 , 0x0000fe5d 
- 00030215  0x00006072 setsect  0x00000002 , 0x0000dd57 
- 00030216  0x00006073 setsect  0x00000003 , 0x0001ac93 
- 00030217  0x00006074 istore  0x00000009 , 0x00000005 
- 00030218  0x00006075 setsect  0x00000000 , 0x000011ed 
- 00030219  0x00006076 setsect  0x00000001 , 0x000218c4 
- 00030220  0x00006077 setsect  0x00000002 , 0x00008da7 
- 00030221  0x00006078 setsect  0x00000003 , 0x000257ff 
- 00030222  0x00006079 istore  0x00000009 , 0x00000005 
- 00030223  0x0000607a setsect  0x00000000 , 0x0003192b 
- 00030224  0x0000607b setsect  0x00000001 , 0x00034641 
- 00030225  0x0000607c setsect  0x00000002 , 0x0001be0c 
- 00030226  0x0000607d setsect  0x00000003 , 0x000366ad 
- 00030227  0x0000607e istore  0x00000009 , 0x00000005 
- 00030228  0x0000607f setsect  0x00000000 , 0x00001f83 
- 00030229  0x00006080 setsect  0x00000001 , 0x00015a23 
- 00030230  0x00006081 setsect  0x00000002 , 0x0003f9b0 
- 00030231  0x00006082 setsect  0x00000003 , 0x00003949 
- 00030232  0x00006083 istore  0x00000009 , 0x00000005 
- 00030233  0x00006084 setsect  0x00000000 , 0x00013a51 
- 00030234  0x00006085 setsect  0x00000001 , 0x000153fd 
- 00030235  0x00006086 setsect  0x00000002 , 0x0003372a 
- 00030236  0x00006087 setsect  0x00000003 , 0x0000f1bb 
- 00030237  0x00006088 istore  0x00000009 , 0x00000005 
- 00030238  0x00006089 setsect  0x00000000 , 0x0003ae85 
- 00030239  0x0000608a setsect  0x00000001 , 0x0001eed9 
- 00030240  0x0000608b setsect  0x00000002 , 0x00009e66 
- 00030241  0x0000608c setsect  0x00000003 , 0x000001a8 
- 00030242  0x0000608d istore  0x00000008 , 0x00000005 
- 00030243  0x0000608e rtn 
- 00030244  0x00006093 setarg  0x0000764c 
- 00030245  0x00006094 store  0x00000002 , 0x0000428e 
- 00030246  0x00006095 setarg  0x0000770f 
- 00030247  0x00006096 store  0x00000002 , 0x00004290 
- 00030248  0x00006097 setarg  0x000076ac 
- 00030249  0x00006098 store  0x00000002 , 0x00004292 
- 00030250  0x00006099 setarg  0x00007710 
- 00030251  0x0000609a store  0x00000002 , 0x0000428a 
- 00030252  0x0000609b setarg  0x00007718 
- 00030253  0x0000609c store  0x00000002 , 0x00004294 
- 00030254  0x0000609d set1  0x00000025 , 0x00000000 
- 00030255  0x0000609e bpatch  0x000000f9 , 0x0000403f 
- 00030256  0x0000609f rtn  0x0000002b 
- 00030257  0x000060a1 hjam  0x00000000 , 0x00008081 
- 00030258  0x000060a2 call  0x0000763f 
- 00030259  0x000060a4 setarg  0x00007717 
- 00030260  0x000060a5 store  0x00000002 , 0x00004288 
- 00030261  0x000060a7 jam  0x00000000 , 0x0000480e 
- 00030262  0x000060a8 jam  0x00000000 , 0x0000480a 
- 00030263  0x000060a9 jam  0x00000000 , 0x0000480b 
- 00030264  0x000060aa setarg  0x00000000 
- 00030265  0x000060ab store  0x00000004 , 0x00004800 
- 00030266  0x000060ac call  0x00003f23 
- 00030267  0x000060ad branch  0x00003f79 , 0x00000034 
- 00030268  0x000060ae call  0x00003f96 
- 00030269  0x000060af call  0x00003f7e 
- 00030270  0x000060b0 branch  0x00003f6e 
- 00030271  0x000060b3 fetcht  0x00000001 , 0x0000480f 
- 00030272  0x000060b4 call  0x000069d1 
- 00030273  0x000060b5 fetcht  0x00000001 , 0x00004810 
- 00030274  0x000060b6 branch  0x000069d1 
- 00030275  0x000060b9 set1  0x00000025 , 0x00000000 
- 00030276  0x000060ba bpatch  0x000000fa , 0x0000403f 
- 00030277  0x000060bb fetcht  0x00000004 , 0x00004806 
- 00030278  0x000060bc deposit  0x00000022 
- 00030279  0x000060bd store  0x00000004 , 0x00004806 
- 00030280  0x000060be isub  0x00000002 , 0x0000003f 
- 00030281  0x000060bf nrtn  0x00000002 
- 00030282  0x000060c0 sub  0x0000003f , 0x000000c8 , 0x0000003f 
- 00030283  0x000060c1 rtn 
- 00030284  0x000060c4 fetch  0x00000001 , 0x000042bc 
- 00030285  0x000060c5 rtnne  0x0000003f 
- 00030286  0x000060c7 set1  0x00000025 , 0x00000000 
- 00030287  0x000060c8 bpatch  0x000000fb , 0x0000403f 
- 00030288  0x000060c9 fetch  0x00000001 , 0x00004132 
- 00030289  0x000060ca rtnne  0x00000009 
- 00030290  0x000060cb disable  0x00000028 
- 00030291  0x000060cc call  0x0000769b 
- 00030292  0x000060cd nrtn  0x00000028 
- 00030293  0x000060ce disable  0x00000028 
- 00030294  0x000060cf fetch  0x00000001 , 0x00004133 
- 00030295  0x000060d0 beq  0x00000003 , 0x00007706 
- 00030296  0x000060d2 fetch  0x00000001 , 0x0000480b 
- 00030297  0x000060d3 beq  0x00000001 , 0x00007663 
- 00030298  0x000060d4 beq  0x00000002 , 0x0000767d 
- 00030299  0x000060d5 call  0x00007643 
- 00030300  0x000060d6 branch  0x00007660 , 0x00000002 
- 00030301  0x000060d8 fetch  0x00000001 , 0x0000480a 
- 00030302  0x000060d9 bbit1  0x00000000 , 0x00007674 
- 00030303  0x000060da bbit1  0x00000001 , 0x00007682 
- 00030304  0x000060dd jam  0x00000000 , 0x0000480a 
- 00030305  0x000060de jam  0x00000000 , 0x0000480b 
- 00030306  0x000060df rtn 
- 00030307  0x000060e3 jam  0x00000000 , 0x0000480b 
- 00030308  0x000060e4 call  0x00007bde 
- 00030309  0x000060e5 fetch  0x00000001 , 0x00004811 
- 00030310  0x000060e6 beq  0x00000001 , 0x0000766a 
- 00030311  0x000060e9 jam  0x00000005 , 0x00004805 
- 00030312  0x000060ea jam  0x00000003 , 0x00004800 
- 00030313  0x000060eb branch  0x00007688 
- 00030314  0x000060ed jam  0x00000000 , 0x0000480e 
- 00030315  0x000060ee branch  0x0000766c 
- 00030316  0x000060f1 jam  0x00000002 , 0x0000480e 
- 00030317  0x000060f2 branch  0x00007684 
- 00030318  0x000060f4 jam  0x00000003 , 0x0000480e 
- 00030319  0x000060f5 branch  0x0000767f 
- 00030320  0x000060f7 jam  0x00000004 , 0x0000480e 
- 00030321  0x000060f8 branch  0x00007678 
- 00030322  0x000060fa jam  0x00000000 , 0x0000480e 
- 00030323  0x000060fb branch  0x00007667 
- 00030324  0x000060fe jam  0x00000001 , 0x0000480b 
- 00030325  0x000060ff call  0x00007be7 
- 00030326  0x00006100 fetch  0x00000001 , 0x00004811 
- 00030327  0x00006101 beq  0x00000001 , 0x0000767c 
- 00030328  0x00006104 jam  0x00000005 , 0x00004805 
- 00030329  0x00006105 setarg  0x00020003 
- 00030330  0x00006106 store  0x00000003 , 0x00004800 
- 00030331  0x00006107 branch  0x00007688 
- 00030332  0x00006109 rtn 
- 00030333  0x0000610c jam  0x00000000 , 0x0000480b 
- 00030334  0x0000610d call  0x00007bde 
- 00030335  0x0000610f jam  0x0000000a , 0x00004805 
- 00030336  0x00006110 jam  0x00000001 , 0x00004800 
- 00030337  0x00006111 branch  0x00007688 
- 00030338  0x00006113 jam  0x00000002 , 0x0000480b 
- 00030339  0x00006114 call  0x00007be7 
- 00030340  0x00006116 jam  0x0000000a , 0x00004805 
- 00030341  0x00006117 jam  0x00000001 , 0x00004800 
- 00030342  0x00006118 setarg  0x00280000 
- 00030343  0x00006119 store  0x00000003 , 0x00004801 
- 00030344  0x0000611c set1  0x00000025 , 0x00000000 
- 00030345  0x0000611d bpatch  0x000000fc , 0x0000403f 
- 00030346  0x0000611e fetch  0x00000001 , 0x00004805 
- 00030347  0x0000611f copy  0x0000003f , 0x00000011 
- 00030348  0x00006120 call  0x00004b2c 
- 00030349  0x00006121 fetch  0x00000002 , 0x000042b7 
- 00030350  0x00006122 istore  0x00000002 , 0x00000005 
- 00030351  0x00006123 setarg  0x000000a1 
- 00030352  0x00006124 istore  0x00000001 , 0x00000005 
- 00030353  0x00006125 fetcht  0x00000004 , 0x00004800 
- 00030354  0x00006126 istoret  0x00000008 , 0x00000005 
- 00030355  0x00006127 setarg  0x00000000 
- 00030356  0x00006128 istore  0x00000001 , 0x00000005 
- 00030357  0x00006129 store  0x00000004 , 0x00004800 
- 00030358  0x0000612b fetch  0x00000001 , 0x0000480e 
- 00030359  0x0000612c beq  0x00000002 , 0x0000766e 
- 00030360  0x0000612d beq  0x00000003 , 0x00007670 
- 00030361  0x0000612e beq  0x00000004 , 0x00007672 
- 00030362  0x0000612f rtn 
- 00030363  0x00006132 fetcht  0x00000001 , 0x0000480f 
- 00030364  0x00006133 call  0x000069e5 
- 00030365  0x00006134 setarg  0x00000000 
- 00030366  0x00006135 setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00030367  0x00006136 store  0x00000001 , 0x00004804 
- 00030368  0x00006137 fetcht  0x00000001 , 0x00004810 
- 00030369  0x00006138 call  0x000069e5 
- 00030370  0x00006139 setarg  0x00000000 
- 00030371  0x0000613a setflag  0x00000001 , 0x00000001 , 0x0000003f 
- 00030372  0x0000613b fetcht  0x00000001 , 0x00004804 
- 00030373  0x0000613c ior  0x00000002 , 0x0000003f 
- 00030374  0x0000613d fetcht  0x00000001 , 0x0000480a 
- 00030375  0x0000613e store  0x00000001 , 0x0000480a 
- 00030376  0x0000613f ixor  0x00000002 , 0x0000003e 
- 00030377  0x00006140 rtn  0x00000005 
- 00030378  0x00006141 enable  0x00000028 
- 00030379  0x00006142 rtn 
- 00030380  0x00006145 copy  0x00000013 , 0x0000003f 
- 00030381  0x00006146 beq  0x00000005 , 0x000076d8 
- 00030382  0x00006147 beq  0x00000006 , 0x000076da 
- 00030383  0x00006148 beq  0x00000007 , 0x000076dd 
- 00030384  0x00006149 beq  0x00000027 , 0x000076e1 
- 00030385  0x0000614a beq  0x00000002 , 0x000076c9 
- 00030386  0x0000614b beq  0x00000004 , 0x000076d0 
- 00030387  0x0000614c beq  0x00000013 , 0x000076d0 
- 00030388  0x0000614d beq  0x00000001 , 0x000076c6 
- 00030389  0x0000614e beq  0x00000012 , 0x000076c0 
- 00030390  0x0000614f beq  0x0000002e , 0x00003f57 
- 00030391  0x00006150 and  0x0000003f , 0x0000000f , 0x00000002 
- 00030392  0x00006151 and_into  0x000000f0 , 0x0000003f 
- 00030393  0x00006152 beq  0x00000050 , 0x000076e4 
- 00030394  0x00006153 rtn 
- 00030395  0x00006156 fetch  0x00000001 , 0x000047f2 
- 00030396  0x00006157 rtn  0x00000034 
- 00030397  0x00006158 increase  0xffffffff , 0x0000003f 
- 00030398  0x00006159 store  0x00000001 , 0x000047f2 
- 00030399  0x0000615a nrtn  0x00000034 
- 00030400  0x0000615c jam  0x00000001 , 0x0000427f 
- 00030401  0x0000615d call  0x00003fa4 
- 00030402  0x0000615e call  0x00003fa2 
- 00030403  0x0000615f call  0x00003f7e 
- 00030404  0x00006160 call  0x00003f98 
- 00030405  0x00006161 branch  0x00003f9e 
- 00030406  0x00006165 jam  0x00000000 , 0x0000480d 
- 00030407  0x00006166 jam  0x00000000 , 0x0000480c 
- 00030408  0x00006167 rtn 
- 00030409  0x0000616a set1  0x00000025 , 0x00000000 
- 00030410  0x0000616b bpatch  0x000000fd , 0x0000403f 
- 00030411  0x0000616c jam  0x00000000 , 0x0000429d 
- 00030412  0x0000616d jam  0x00000000 , 0x0000480c 
- 00030413  0x0000616e jam  0x00000000 , 0x0000480d 
- 00030414  0x0000616f fetch  0x00000002 , 0x000042a0 
- 00030415  0x00006170 bbit0  0x00000003 , 0x000076d4 
- 00030416  0x00006173 fetch  0x00000002 , 0x000047fe 
- 00030417  0x00006174 store  0x00000002 , 0x000047f0 
- 00030418  0x00006176 call  0x00003f12 
- 00030419  0x00006177 branch  0x00003f7b 
- 00030420  0x0000617a bbit0  0x00000001 , 0x000076d6 
- 00030421  0x0000617b branch  0x000076d0 
- 00030422  0x0000617e bbit0  0x00000002 , 0x000076d2 
- 00030423  0x0000617f branch  0x000076d0 
- 00030424  0x00006183 call  0x00003f7e 
- 00030425  0x00006184 branch  0x00003f98 
- 00030426  0x00006187 setarg  0x00000002 
- 00030427  0x00006188 store  0x00000001 , 0x000047f2 
- 00030428  0x00006189 rtn 
- 00030429  0x0000618c jam  0x00000000 , 0x0000480c 
- 00030430  0x0000618d setarg  0x00000001 
- 00030431  0x0000618e store  0x00000001 , 0x0000480d 
- 00030432  0x0000618f rtn 
- 00030433  0x00006192 setarg  0x00000005 
- 00030434  0x00006193 store  0x00000001 , 0x0000480c 
- 00030435  0x00006194 rtn 
- 00030436  0x00006197 set1  0x00000025 , 0x00000000 
- 00030437  0x00006198 bpatch  0x000000fe , 0x0000403f 
- 00030438  0x00006199 storet  0x00000001 , 0x00000259 
- 00030439  0x0000619b fetch  0x00000001 , 0x00000259 
- 00030440  0x0000619c rtn  0x00000034 
- 00030441  0x0000619d increase  0xffffffff , 0x0000003f 
- 00030442  0x0000619e store  0x00000001 , 0x00000259 
- 00030443  0x0000619f call  0x000076ef 
- 00030444  0x000061a0 call  0x000076bb 
- 00030445  0x000061a1 call  0x000076fa 
- 00030446  0x000061a2 branch  0x000076e7 
- 00030447  0x000061a5 fetch  0x00000001 , 0x0000480c 
- 00030448  0x000061a6 rtn  0x00000034 
- 00030449  0x000061a7 fetch  0x00000001 , 0x0000480c 
- 00030450  0x000061a8 increase  0xffffffff , 0x0000003f 
- 00030451  0x000061a9 store  0x00000001 , 0x0000480c 
- 00030452  0x000061aa nrtn  0x00000034 
- 00030453  0x000061ab fetch  0x00000001 , 0x000002e6 
- 00030454  0x000061ac set1  0x00000000 , 0x0000003f 
- 00030455  0x000061ad set1  0x00000007 , 0x0000003f 
- 00030456  0x000061ae store  0x00000001 , 0x000002e6 
- 00030457  0x000061af rtn 
- 00030458  0x000061b2 fetch  0x00000001 , 0x0000480d 
- 00030459  0x000061b3 rtn  0x00000034 
- 00030460  0x000061b4 fetch  0x00000001 , 0x0000480d 
- 00030461  0x000061b5 increase  0xffffffff , 0x0000003f 
- 00030462  0x000061b6 store  0x00000001 , 0x0000480d 
- 00030463  0x000061b7 nrtn  0x00000034 
- 00030464  0x000061b8 branch  0x00003f77 
- 00030465  0x000061bb set1  0x00000025 , 0x00000000 
- 00030466  0x000061bc bpatch  0x000000ff , 0x0000403f 
- 00030467  0x000061bd fetch  0x00000001 , 0x00004133 
- 00030468  0x000061be rtnne  0x00000003 
- 00030469  0x000061bf branch  0x0000764e 
- 00030470  0x000061c1 call  0x00007643 
- 00030471  0x000061c2 rtn  0x00000002 
- 00030472  0x000061c3 fetch  0x00000001 , 0x0000480a 
- 00030473  0x000061c4 rtn  0x00000034 
- 00030474  0x000061c5 call  0x00003f23 
- 00030475  0x000061c6 branch  0x00003f79 , 0x00000034 
- 00030476  0x000061c7 call  0x00003f96 
- 00030477  0x000061c8 call  0x00003f7e 
- 00030478  0x000061c9 branch  0x00003f6e 
- 00030479  0x000061cd branch  0x00007701 
- 00030480  0x000061d1 fetcht  0x00000001 , 0x0000480f 
- 00030481  0x000061d2 call  0x000069b4 
- 00030482  0x000061d3 fetch  0x00000001 , 0x00004811 
- 00030483  0x000061d4 bne  0x00000001 , 0x00007715 
- 00030484  0x000061d5 rtn 
- 00030485  0x000061d7 fetcht  0x00000001 , 0x00004810 
- 00030486  0x000061d8 branch  0x000069b4 
- 00030487  0x000061db branch  0x0000763f 
- 00030488  0x000061df branch  0x00003f9a 
- 00030489  0x000061e4 set1  0x00000025 , 0x00000000 
- 00030490  0x000061e5 bpatch  0x000000f2 , 0x0000403e 
- 00030491  0x000061e6 fetch  0x00000001 , 0x000047dc 
- 00030492  0x000061e7 branch  0x00006009 , 0x00000034 
- 00030493  0x000061e8 call  0x00006003 
- 00030494  0x000061e9 setarg  0x00000000 
- 00030495  0x000061ea store  0x00000008 , 0x000007da 
- 00030496  0x000061eb store  0x00000004 , 0x000007e2 
- 00030497  0x000061ed arg  0x000007e9 , 0x00000005 
- 00030498  0x000061ee istore  0x00000007 , 0x00000005 
- 00030499  0x000061ef jam  0x00000000 , 0x000007e0 
- 00030500  0x000061f0 branch  0x000077a4 
- 00030501  0x000061f3 jam  0x00000001 , 0x000007dc 
- 00030502  0x000061f4 branch  0x0000772a 
- 00030503  0x000061f6 fetch  0x00000001 , 0x00004793 
- 00030504  0x000061f7 beq  0x00000001 , 0x000077c2 
- 00030505  0x000061f8 branch  0x00003bf1 
- 00030506  0x000061fa fetch  0x00000001 , 0x00004793 
- 00030507  0x000061fb beq  0x00000001 , 0x0000772d 
- 00030508  0x000061fc branch  0x000077a4 
- 00030509  0x000061ff call  0x000077c2 
- 00030510  0x00006200 fetch  0x00000001 , 0x000007db 
- 00030511  0x00006201 nrtn  0x00000034 
- 00030512  0x00006202 jam  0x00000003 , 0x000007da 
- 00030513  0x00006203 rtn 
- 00030514  0x00006206 fetch  0x00000001 , 0x000007de 
- 00030515  0x00006207 bne  0x00000000 , 0x00007750 
- 00030516  0x00006208 call  0x0000774d 
- 00030517  0x00006209 arg  0x00000898 , 0x00000005 
- 00030518  0x0000620a setarg  0x00000848 
- 00030519  0x0000620b istore  0x00000002 , 0x00000005 
- 00030520  0x0000620c setarg  0x000047c4 
- 00030521  0x0000620d istore  0x00000002 , 0x00000005 
- 00030522  0x0000620e setarg  0x00000808 
- 00030523  0x0000620f istore  0x00000002 , 0x00000005 
- 00030524  0x00006210 branch  0x00007744 
- 00030525  0x00006212 arg  0x00000898 , 0x00000005 
- 00030526  0x00006213 setarg  0x00000858 
- 00030527  0x00006214 istore  0x00000002 , 0x00000005 
- 00030528  0x00006215 setarg  0x00000808 
- 00030529  0x00006216 istore  0x00000002 , 0x00000005 
- 00030530  0x00006217 setarg  0x000047c4 
- 00030531  0x00006218 istore  0x00000002 , 0x00000005 
- 00030532  0x0000621a call  0x00007ad2 
- 00030533  0x0000621b fetch  0x00000001 , 0x000007db 
- 00030534  0x0000621c beq  0x00000004 , 0x0000774a 
- 00030535  0x0000621d jam  0x00000001 , 0x000007dc 
- 00030536  0x0000621e jam  0x00000005 , 0x000007da 
- 00030537  0x0000621f rtn 
- 00030538  0x00006221 jam  0x00000014 , 0x000007db 
- 00030539  0x00006222 call  0x00007727 
- 00030540  0x00006223 branch  0x0000780f 
- 00030541  0x00006226 arg  0x00000838 , 0x00000005 
- 00030542  0x00006227 force  0x00000008 , 0x00000007 
- 00030543  0x00006228 branch  0x000077db 
- 00030544  0x0000622b jam  0x00000001 , 0x000007dc 
- 00030545  0x0000622c rtn 
- 00030546  0x00006230 arg  0x000006c3 , 0x00000005 
- 00030547  0x00006231 fetch  0x00000006 , 0x00004140 
- 00030548  0x00006232 istore  0x00000006 , 0x00000005 
- 00030549  0x00006233 fetch  0x00000006 , 0x00000040 
- 00030550  0x00006234 istore  0x00000006 , 0x00000005 
- 00030551  0x00006235 fetch  0x00000003 , 0x000007e9 
- 00030552  0x00006236 istore  0x00000003 , 0x00000005 
- 00030553  0x00006238 call  0x00007b3c 
- 00030554  0x0000623a arg  0x00000868 , 0x00000011 
- 00030555  0x0000623b arg  0x00000878 , 0x00000012 
- 00030556  0x0000623c force  0x00000004 , 0x00000007 
- 00030557  0x0000623d call  0x000077e0 
- 00030558  0x0000623e nbranch  0x00007768 , 0x00000001 
- 00030559  0x00006241 fetch  0x00000001 , 0x000007db 
- 00030560  0x00006242 beq  0x00000009 , 0x00007765 
- 00030561  0x00006243 jam  0x0000000a , 0x000007da 
- 00030562  0x00006244 jam  0x00000001 , 0x000007dc 
- 00030563  0x00006245 jam  0x00000003 , 0x0000007c 
- 00030564  0x00006246 rtn 
- 00030565  0x00006248 jam  0x00000003 , 0x0000007c 
- 00030566  0x00006249 jam  0x00000015 , 0x000007db 
- 00030567  0x0000624a branch  0x0000780f 
- 00030568  0x0000624e fetch  0x00000001 , 0x000007db 
- 00030569  0x0000624f beq  0x00000009 , 0x0000776e 
- 00030570  0x00006250 jam  0x00000000 , 0x000007da 
- 00030571  0x00006251 jam  0x00000004 , 0x0000007c 
- 00030572  0x00006253 jam  0x00000005 , 0x0000007e 
- 00030573  0x00006254 rtn 
- 00030574  0x00006256 jam  0x00000004 , 0x0000007c 
- 00030575  0x00006257 jam  0x00000000 , 0x000007db 
- 00030576  0x00006258 rtn 
- 00030577  0x0000625b fetch  0x00000001 , 0x000007df 
- 00030578  0x0000625c beq  0x00000001 , 0x00007775 
- 00030579  0x0000625d jam  0x0000000a , 0x000007db 
- 00030580  0x0000625e branch  0x0000780f 
- 00030581  0x00006260 arg  0x000006c3 , 0x00000005 
- 00030582  0x00006261 fetch  0x00000006 , 0x00000040 
- 00030583  0x00006262 istore  0x00000006 , 0x00000005 
- 00030584  0x00006263 fetch  0x00000006 , 0x00004140 
- 00030585  0x00006264 istore  0x00000006 , 0x00000005 
- 00030586  0x00006265 fetch  0x00000003 , 0x000007e6 
- 00030587  0x00006266 istore  0x00000003 , 0x00000005 
- 00030588  0x00006268 call  0x00007b4a 
- 00030589  0x00006269 fetch  0x00000001 , 0x000007db 
- 00030590  0x0000626a beq  0x0000000a , 0x00007782 
- 00030591  0x0000626b jam  0x0000000b , 0x000007da 
- 00030592  0x0000626c jam  0x00000001 , 0x000007dc 
- 00030593  0x0000626d rtn 
- 00030594  0x0000626f jam  0x0000000b , 0x000007db 
- 00030595  0x00006270 jam  0x00000001 , 0x000007dd 
- 00030596  0x00006271 rtn 
- 00030597  0x00006274 arg  0x00000898 , 0x00000005 
- 00030598  0x00006275 fetch  0x00000006 , 0x00000040 
- 00030599  0x00006276 istore  0x00000006 , 0x00000005 
- 00030600  0x00006277 fetch  0x00000006 , 0x00004140 
- 00030601  0x00006278 istore  0x00000006 , 0x00000005 
- 00030602  0x00006279 setarg  0x00000848 
- 00030603  0x0000627a istore  0x00000002 , 0x00000005 
- 00030604  0x0000627b setarg  0x00000858 
- 00030605  0x0000627c istore  0x00000002 , 0x00000005 
- 00030606  0x0000627d branch  0x00007799 
- 00030607  0x0000627f jam  0x0000000f , 0x000007da 
- 00030608  0x00006280 arg  0x00000898 , 0x00000005 
- 00030609  0x00006281 fetch  0x00000006 , 0x00004140 
- 00030610  0x00006282 istore  0x00000006 , 0x00000005 
- 00030611  0x00006283 fetch  0x00000006 , 0x00000040 
- 00030612  0x00006284 istore  0x00000006 , 0x00000005 
- 00030613  0x00006285 setarg  0x00000858 
- 00030614  0x00006286 istore  0x00000002 , 0x00000005 
- 00030615  0x00006287 setarg  0x00000848 
- 00030616  0x00006288 istore  0x00000002 , 0x00000005 
- 00030617  0x0000628b arg  0x000006c3 , 0x00000005 
- 00030618  0x0000628c fetch  0x00000006 , 0x00000898 
- 00030619  0x0000628d istore  0x00000006 , 0x00000005 
- 00030620  0x0000628e fetch  0x00000006 , 0x0000089e 
- 00030621  0x0000628f istore  0x00000006 , 0x00000005 
- 00030622  0x00006291 call  0x00007b06 
- 00030623  0x00006294 jam  0x00000001 , 0x0000425e 
- 00030624  0x00006295 arg  0x00004262 , 0x00000005 
- 00030625  0x00006296 arg  0x00000868 , 0x00000006 
- 00030626  0x00006297 call  0x00007e35 
- 00030627  0x00006298 branch  0x00003229 
- 00030628  0x0000629c set1  0x00000025 , 0x00000000 
- 00030629  0x0000629d bpatch  0x000000f3 , 0x0000403e 
- 00030630  0x0000629e fetch  0x00000001 , 0x00004793 
- 00030631  0x0000629f rtnne  0x00000000 
- 00030632  0x000062a0 fetch  0x00000001 , 0x000007de 
- 00030633  0x000062a1 rtnne  0x00000000 
- 00030634  0x000062a2 arg  0x00004794 , 0x00000005 
- 00030635  0x000062a3 force  0x0000000b , 0x00000007 
- 00030636  0x000062a4 call  0x000077db 
- 00030637  0x000062a5 random  0x0000003f 
- 00030638  0x000062a6 rshift  0x0000003f , 0x0000003f 
- 00030639  0x000062a7 istore  0x00000002 , 0x00000005 
- 00030640  0x000062a9 arg  0x0000065a , 0x00000005 
- 00030641  0x000062aa arg  0x00004794 , 0x00000006 
- 00030642  0x000062ab call  0x00007e33 
- 00030643  0x000062ad arg  0x00000582 , 0x00000005 
- 00030644  0x000062ae arg  0x0000078a , 0x00000006 
- 00030645  0x000062af call  0x00007e2d 
- 00030646  0x000062b1 arg  0x000005b2 , 0x00000005 
- 00030647  0x000062b2 call  0x00007e3a 
- 00030648  0x000062b3 jam  0x00000001 , 0x000005b2 
- 00030649  0x000062b5 call  0x00007b7f 
- 00030650  0x000062b6 jam  0x00000001 , 0x000007de 
- 00030651  0x000062b7 rtn 
- 00030652  0x000062ba arg  0x000047ac , 0x00000005 
- 00030653  0x000062bb arg  0x000005ca , 0x00000006 
- 00030654  0x000062bc call  0x00007e2d 
- 00030655  0x000062bd jam  0x00000001 , 0x00004793 
- 00030656  0x000062be jam  0x00000000 , 0x000007de 
- 00030657  0x000062bf rtn 
- 00030658  0x000062c2 set1  0x00000025 , 0x00000000 
- 00030659  0x000062c3 bpatch  0x000000f4 , 0x0000403e 
- 00030660  0x000062c4 fetch  0x00000001 , 0x000007e5 
- 00030661  0x000062c5 rtnne  0x00000000 
- 00030662  0x000062c6 fetch  0x00000001 , 0x000007de 
- 00030663  0x000062c7 rtnne  0x00000000 
- 00030664  0x000062c9 arg  0x0000065a , 0x00000005 
- 00030665  0x000062ca arg  0x00004794 , 0x00000006 
- 00030666  0x000062cb call  0x00007e33 
- 00030667  0x000062cd arg  0x00000582 , 0x00000005 
- 00030668  0x000062ce arg  0x000007f0 , 0x00000006 
- 00030669  0x000062cf call  0x00007e2d 
- 00030670  0x000062d1 arg  0x000005b2 , 0x00000005 
- 00030671  0x000062d2 call  0x00007e3a 
- 00030672  0x000062d3 jam  0x00000001 , 0x000005b2 
- 00030673  0x000062d5 call  0x00007b7f 
- 00030674  0x000062d6 jam  0x00000002 , 0x000007de 
- 00030675  0x000062d7 rtn 
- 00030676  0x000062da jam  0x00000001 , 0x000007df 
- 00030677  0x000062db arg  0x00000820 , 0x00000005 
- 00030678  0x000062dc arg  0x000005ca , 0x00000006 
- 00030679  0x000062dd call  0x00007e33 
- 00030680  0x000062de jam  0x00000001 , 0x000007e5 
- 00030681  0x000062df jam  0x00000000 , 0x000007de 
- 00030682  0x000062e0 rtn 
- 00030683  0x000062e3 increase  0xffffffff , 0x00000007 
- 00030684  0x000062e4 nrtn  0x00000002 
- 00030685  0x000062e5 random  0x0000003f 
- 00030686  0x000062e6 istore  0x00000002 , 0x00000005 
- 00030687  0x000062e7 branch  0x000077db 
- 00030688  0x000062e9 increase  0xffffffff , 0x00000007 
- 00030689  0x000062ea nbranch  0x000077ec , 0x00000002 
- 00030690  0x000062eb ifetch  0x00000004 , 0x00000011 
- 00030691  0x000062ec copy  0x0000003f , 0x00000002 
- 00030692  0x000062ed ifetch  0x00000004 , 0x00000012 
- 00030693  0x000062ee iflip  0x00000002 , 0x0000003f 
- 00030694  0x000062ef nbranch  0x000077ea , 0x00000005 
- 00030695  0x000062f0 increase  0x00000004 , 0x00000011 
- 00030696  0x000062f1 increase  0x00000004 , 0x00000012 
- 00030697  0x000062f2 branch  0x000077e0 
- 00030698  0x000062f4 disable  0x00000001 
- 00030699  0x000062f5 rtn 
- 00030700  0x000062f7 enable  0x00000001 
- 00030701  0x000062f8 rtn 
- 00030702  0x00006300 set1  0x00000025 , 0x00000000 
- 00030703  0x00006301 bpatch  0x000000f5 , 0x0000403e 
- 00030704  0x00006302 fetch  0x00000001 , 0x000007dc 
- 00030705  0x00006303 rtn  0x00000034 
- 00030706  0x00006304 jam  0x00000000 , 0x000007dc 
- 00030707  0x00006305 fetch  0x00000001 , 0x000007da 
- 00030708  0x00006306 beq  0x00000003 , 0x00006117 
- 00030709  0x00006307 beq  0x00000005 , 0x00006134 
- 00030710  0x00006308 beq  0x00000007 , 0x0000613f 
- 00030711  0x00006309 beq  0x0000000b , 0x00006155 
- 00030712  0x0000630a beq  0x00000002 , 0x00007725 
- 00030713  0x0000630b beq  0x00000004 , 0x00007732 
- 00030714  0x0000630c beq  0x00000009 , 0x00007752 
- 00030715  0x0000630d beq  0x0000000a , 0x00007771 
- 00030716  0x0000630e beq  0x0000000c , 0x0000778f 
- 00030717  0x00006310 rtn 
- 00030718  0x00006313 set1  0x00000025 , 0x00000000 
- 00030719  0x00006314 bpatch  0x000000f6 , 0x0000403e 
- 00030720  0x00006315 fetch  0x00000001 , 0x000007dd 
- 00030721  0x00006316 rtn  0x00000034 
- 00030722  0x00006317 jam  0x00000000 , 0x000007dd 
- 00030723  0x00006318 fetch  0x00000001 , 0x000007db 
- 00030724  0x00006319 beq  0x00000012 , 0x000060f7 
- 00030725  0x0000631a beq  0x00000013 , 0x000060ff 
- 00030726  0x0000631b beq  0x00000003 , 0x00006103 
- 00030727  0x0000631c beq  0x00000004 , 0x0000773d 
- 00030728  0x0000631d beq  0x00000014 , 0x00006107 
- 00030729  0x0000631e beq  0x00000007 , 0x00006115 
- 00030730  0x0000631f beq  0x0000000a , 0x00007771 
- 00030731  0x00006320 beq  0x0000000b , 0x00006154 
- 00030732  0x00006321 beq  0x00000009 , 0x00007752 
- 00030733  0x00006322 beq  0x00000015 , 0x0000614e 
- 00030734  0x00006323 rtn 
- 00030735  0x00006326 jam  0x00000001 , 0x000007dd 
- 00030736  0x00006327 rtn 
- 00030737  0x0000632a jam  0x00000000 , 0x000007dd 
- 00030738  0x0000632b rtn 
- 00030739  0x0000632d set1  0x00000025 , 0x00000000 
- 00030740  0x0000632e bpatch  0x000000f7 , 0x0000403e 
- 00030741  0x0000632f fetch  0x00000001 , 0x000007de 
- 00030742  0x00006330 rtn  0x00000034 
- 00030743  0x00006331 increase  0x00000080 , 0x0000003f 
- 00030744  0x00006332 store  0x00000001 , 0x000007de 
- 00030745  0x00006333 rtnbit1  0x00000007 
- 00030746  0x00006334 fetch  0x00000001 , 0x00000581 
- 00030747  0x00006335 branch  0x0000781d , 0x00000034 
- 00030748  0x00006336 branch  0x00007b8a 
- 00030749  0x00006339 call  0x00007a0c 
- 00030750  0x0000633a fetch  0x00000001 , 0x000007de 
- 00030751  0x0000633b beq  0x00000001 , 0x000077bc 
- 00030752  0x0000633c beq  0x00000002 , 0x000077d4 
- 00030753  0x0000633d rtn 
- 00030754  0x00006341 and  0x0000003f , 0x00000007 , 0x00000007 
- 00030755  0x00006342 rshift3  0x0000003f , 0x0000003f 
- 00030756  0x00006343 iadd  0x00000006 , 0x00000006 
- 00030757  0x00006344 ifetch  0x00000001 , 0x00000006 
- 00030758  0x00006345 qisolate0  0x0000003f 
- 00030759  0x00006346 rtn 
- 00030760  0x0000634a call  0x00007e33 
- 00030761  0x0000634b call  0x00007e33 
- 00030762  0x0000634c branch  0x00007e33 
- 00030763  0x00006350 ifetch  0x00000008 , 0x00000006 
- 00030764  0x00006351 nrtn  0x00000034 
- 00030765  0x00006352 ifetch  0x00000008 , 0x00000006 
- 00030766  0x00006353 nrtn  0x00000034 
- 00030767  0x00006354 ifetch  0x00000008 , 0x00000006 
- 00030768  0x00006355 rtn 
- 00030769  0x0000635a force  0x00000006 , 0x00000039 
- 00030770  0x0000635c ifetch  0x00000004 , 0x00000011 
- 00030771  0x0000635d iforce  0x00000002 
- 00030772  0x0000635e ifetch  0x00000004 , 0x00000012 
- 00030773  0x0000635f isub  0x00000002 , 0x0000003e 
- 00030774  0x00006360 nrtn  0x00000005 
- 00030775  0x00006361 increase  0x00000004 , 0x00000011 
- 00030776  0x00006362 increase  0x00000004 , 0x00000012 
- 00030777  0x00006363 loop  0x00007832 
- 00030778  0x00006364 rtn 
- 00030779  0x00006368 force  0x00000006 , 0x00000039 
- 00030780  0x00006369 increase  0x00000014 , 0x00000011 
- 00030781  0x0000636a increase  0x00000014 , 0x00000012 
- 00030782  0x0000636c ifetch  0x00000004 , 0x00000012 
- 00030783  0x0000636d iforce  0x00000002 
- 00030784  0x0000636e ifetch  0x00000004 , 0x00000011 
- 00030785  0x0000636f isub  0x00000002 , 0x0000003f 
- 00030786  0x00006370 nrtn  0x00000002 
- 00030787  0x00006371 nrtn  0x00000034 
- 00030788  0x00006372 increase  0xfffffffc , 0x00000011 
- 00030789  0x00006373 increase  0xfffffffc , 0x00000012 
- 00030790  0x00006374 loop  0x0000783e 
- 00030791  0x00006375 rtn 
- 00030792  0x00006378 force  0x00000006 , 0x00000039 
- 00030793  0x00006379 force  0x00000000 , 0x00000013 
- 00030794  0x0000637b ifetch  0x00000004 , 0x00000011 
- 00030795  0x0000637c iforce  0x00000002 
- 00030796  0x0000637d ifetch  0x00000004 , 0x00000012 
- 00030797  0x0000637e iadd  0x00000002 , 0x0000003f 
- 00030798  0x0000637f iadd  0x00000013 , 0x0000003f 
- 00030799  0x00006380 istore  0x00000004 , 0x00000005 
- 00030800  0x00006381 isolate1  0x00000020 , 0x0000003f 
- 00030801  0x00006382 setflag  0x00000001 , 0x00000000 , 0x00000013 
- 00030802  0x00006383 increase  0x00000004 , 0x00000011 
- 00030803  0x00006384 increase  0x00000004 , 0x00000012 
- 00030804  0x00006385 loop  0x0000784a 
- 00030805  0x00006386 rtn 
- 00030806  0x00006389 force  0x00000006 , 0x00000039 
- 00030807  0x0000638a force  0x00000000 , 0x00000013 
- 00030808  0x0000638c ifetch  0x00000004 , 0x00000012 
- 00030809  0x0000638d iforce  0x00000002 
- 00030810  0x0000638e ifetch  0x00000004 , 0x00000011 
- 00030811  0x0000638f isub  0x00000002 , 0x0000003f 
- 00030812  0x00006390 isub  0x00000013 , 0x0000003f 
- 00030813  0x00006391 istore  0x00000004 , 0x00000005 
- 00030814  0x00006392 isolate1  0x00000020 , 0x0000003f 
- 00030815  0x00006393 setflag  0x00000001 , 0x00000000 , 0x00000013 
- 00030816  0x00006394 increase  0x00000004 , 0x00000011 
- 00030817  0x00006395 increase  0x00000004 , 0x00000012 
- 00030818  0x00006396 loop  0x00007858 
- 00030819  0x00006397 rtn 
- 00030820  0x0000639a force  0x00000006 , 0x00000039 
- 00030821  0x0000639b increase  0x00000014 , 0x00000011 
- 00030822  0x0000639d force  0x00000000 , 0x00000013 
- 00030823  0x0000639f ifetch  0x00000004 , 0x00000011 
- 00030824  0x000063a0 isolate1  0x00000000 , 0x0000003f 
- 00030825  0x000063a1 setflag  0x00000001 , 0x00000001 , 0x00000013 
- 00030826  0x000063a2 rshift  0x0000003f , 0x0000003f 
- 00030827  0x000063a3 isolate1  0x00000000 , 0x00000013 
- 00030828  0x000063a4 setflag  0x00000001 , 0x0000001f , 0x0000003f 
- 00030829  0x000063a5 istore  0x00000004 , 0x00000011 
- 00030830  0x000063a6 increase  0xfffffffc , 0x00000011 
- 00030831  0x000063a7 rshift  0x00000013 , 0x00000013 
- 00030832  0x000063a8 loop  0x00007867 
- 00030833  0x000063a9 rtn 
- 00030834  0x000063ac force  0x00000006 , 0x00000039 
- 00030835  0x000063ad force  0x00000000 , 0x00000013 
- 00030836  0x000063af ifetch  0x00000004 , 0x00000011 
- 00030837  0x000063b0 isolate1  0x0000001f , 0x0000003f 
- 00030838  0x000063b1 setflag  0x00000001 , 0x00000001 , 0x00000013 
- 00030839  0x000063b2 lshift  0x0000003f , 0x0000003f 
- 00030840  0x000063b3 isolate1  0x00000000 , 0x00000013 
- 00030841  0x000063b4 setflag  0x00000001 , 0x00000000 , 0x0000003f 
- 00030842  0x000063b5 istore  0x00000004 , 0x00000011 
- 00030843  0x000063b6 increase  0x00000004 , 0x00000011 
- 00030844  0x000063b7 rshift  0x00000013 , 0x00000013 
- 00030845  0x000063b8 loop  0x00007874 
- 00030846  0x000063b9 rtn 
- 00030847  0x000063bc call  0x00007872 
- 00030848  0x000063be isolate1  0x00000000 , 0x00000013 
- 00030849  0x000063bf branch  0x00007888 , 0x00000001 
- 00030850  0x000063c0 arg  0x00000742 , 0x00000012 
- 00030851  0x000063c1 copy  0x00000011 , 0x00000013 
- 00030852  0x000063c2 increase  0xffffffe8 , 0x00000011 
- 00030853  0x000063c3 call  0x0000783b 
- 00030854  0x000063c4 nrtn  0x00000002 
- 00030855  0x000063c5 copy  0x00000013 , 0x00000011 
- 00030856  0x000063c7 increase  0xffffffe8 , 0x00000011 
- 00030857  0x000063c8 arg  0x00000742 , 0x00000012 
- 00030858  0x000063c9 copy  0x00000011 , 0x00000005 
- 00030859  0x000063ca branch  0x00007856 
- 00030860  0x000063ce call  0x00007848 
- 00030861  0x000063cf copy  0x00000005 , 0x00000011 
- 00030862  0x000063d0 branch  0x00007880 
- 00030863  0x000063d3 call  0x00007856 
- 00030864  0x000063d4 isolate0  0x00000000 , 0x00000013 
- 00030865  0x000063d5 rtn  0x00000001 
- 00030866  0x000063d6 arg  0x00000742 , 0x00000012 
- 00030867  0x000063d7 add  0x00000005 , 0xffffffe8 , 0x00000011 
- 00030868  0x000063d8 copy  0x00000011 , 0x00000005 
- 00030869  0x000063d9 branch  0x00007848 
- 00030870  0x000063dd copy  0x00000005 , 0x0000000b 
- 00030871  0x000063de copy  0x00000011 , 0x00000030 
- 00030872  0x000063df arg  0x000006b2 , 0x00000012 
- 00030873  0x000063e0 copy  0x00000012 , 0x00000005 
- 00030874  0x000063e1 add  0x00000011 , 0x00000018 , 0x00000006 
- 00030875  0x000063e2 ifetch  0x00000008 , 0x00000006 
- 00030876  0x000063e3 istore  0x00000008 , 0x00000005 
- 00030877  0x000063e4 istore  0x00000008 , 0x00000005 
- 00030878  0x000063e5 force  0x00000000 , 0x0000003f 
- 00030879  0x000063e6 istore  0x00000008 , 0x00000005 
- 00030880  0x000063e7 copy  0x0000000b , 0x00000005 
- 00030881  0x000063e8 call  0x0000788c 
- 00030882  0x000063e9 arg  0x000006b2 , 0x00000012 
- 00030883  0x000063ea copy  0x00000012 , 0x00000005 
- 00030884  0x000063eb force  0x00000000 , 0x0000003f 
- 00030885  0x000063ec istore  0x00000008 , 0x00000005 
- 00030886  0x000063ed add  0x00000030 , 0x00000020 , 0x00000006 
- 00030887  0x000063ee ifetch  0x00000008 , 0x00000006 
- 00030888  0x000063ef istore  0x00000008 , 0x00000005 
- 00030889  0x000063f0 istore  0x00000008 , 0x00000005 
- 00030890  0x000063f1 copy  0x0000000b , 0x00000011 
- 00030891  0x000063f2 copy  0x00000011 , 0x00000005 
- 00030892  0x000063f3 call  0x0000788c 
- 00030893  0x000063f4 arg  0x000006b2 , 0x00000012 
- 00030894  0x000063f5 copy  0x00000012 , 0x00000005 
- 00030895  0x000063f6 add  0x00000030 , 0x00000028 , 0x00000006 
- 00030896  0x000063f7 ifetch  0x00000008 , 0x00000006 
- 00030897  0x000063f8 istore  0x00000008 , 0x00000005 
- 00030898  0x000063f9 istore  0x00000008 , 0x00000005 
- 00030899  0x000063fa istore  0x00000008 , 0x00000005 
- 00030900  0x000063fb copy  0x0000000b , 0x00000011 
- 00030901  0x000063fc copy  0x00000011 , 0x00000005 
- 00030902  0x000063fd branch  0x0000788c 
- 00030903  0x00006401 force  0x00000006 , 0x00000039 
- 00030904  0x00006403 ifetch  0x00000004 , 0x00000006 
- 00030905  0x00006404 iforce  0x0000002f 
- 00030906  0x00006405 increase  0x00000001 , 0x00000038 
- 00030907  0x00006406 loop  0x000078b8 
- 00030908  0x00006407 rtn 
- 00030909  0x0000640c copy  0x00000005 , 0x0000000b 
- 00030910  0x0000640d arg  0x00000682 , 0x00000005 
- 00030911  0x0000640e call  0x00007e3a 
- 00030912  0x0000640f arg  0x00000682 , 0x00000005 
- 00030913  0x00006410 copy  0x00000011 , 0x00000006 
- 00030914  0x00006411 force  0x00000000 , 0x00000038 
- 00030915  0x00006412 call  0x000078b7 
- 00030916  0x00006413 copy  0x00000012 , 0x00000006 
- 00030917  0x00006414 call  0x000078b7 
- 00030918  0x00006415 force  0x00000000 , 0x00000012 
- 00030919  0x00006417 force  0x00000000 , 0x00000002 
- 00030920  0x00006418 force  0x00000006 , 0x00000013 
- 00030921  0x0000641a ifetch  0x00000004 , 0x00000005 
- 00030922  0x0000641b iforce  0x00000011 
- 00030923  0x0000641c copy  0x00000012 , 0x00000038 
- 00030924  0x0000641d deposit  0x0000002f 
- 00030925  0x0000641e copy  0x00000013 , 0x00000038 
- 00030926  0x0000641f imul32  0x0000002f , 0x0000003f 
- 00030927  0x00006420 iadd  0x00000011 , 0x0000003f 
- 00030928  0x00006421 iadd  0x00000002 , 0x0000003f 
- 00030929  0x00006422 istore  0x00000004 , 0x00000005 
- 00030930  0x00006423 rshift32  0x0000003f , 0x00000002 
- 00030931  0x00006424 increase  0x00000001 , 0x00000013 
- 00030932  0x00006425 compare  0x0000000c , 0x00000013 , 0x000000ff 
- 00030933  0x00006426 nbranch  0x000078c9 , 0x00000001 
- 00030934  0x00006427 deposit  0x00000002 
- 00030935  0x00006428 istore  0x00000004 , 0x00000005 
- 00030936  0x00006429 increase  0xffffffe8 , 0x00000005 
- 00030937  0x0000642a increase  0x00000001 , 0x00000012 
- 00030938  0x0000642b compare  0x00000006 , 0x00000012 , 0x000000ff 
- 00030939  0x0000642c nbranch  0x000078c7 , 0x00000001 
- 00030940  0x0000642d arg  0x00000682 , 0x00000011 
- 00030941  0x0000642e copy  0x0000000b , 0x00000005 
- 00030942  0x0000642f branch  0x00007896 
- 00030943  0x00006433 copy  0x00000011 , 0x00000012 
- 00030944  0x00006434 branch  0x000078bd 
- 00030945  0x00006437 copy  0x00000011 , 0x00000030 
- 00030946  0x00006439 copy  0x00000030 , 0x00000011 
- 00030947  0x0000643a ifetch  0x00000001 , 0x00000011 
- 00030948  0x0000643b isolate1  0x00000000 , 0x0000003f 
- 00030949  0x0000643c rtn  0x00000001 
- 00030950  0x0000643d call  0x00007864 
- 00030951  0x0000643e ifetch  0x00000001 , 0x00000012 
- 00030952  0x0000643f isolate0  0x00000000 , 0x0000003f 
- 00030953  0x00006440 branch  0x000078f1 , 0x00000001 
- 00030954  0x00006441 arg  0x00000742 , 0x00000011 
- 00030955  0x00006442 copy  0x00000012 , 0x00000005 
- 00030956  0x00006443 call  0x00007848 
- 00030957  0x00006444 ifetch  0x00000001 , 0x00000012 
- 00030958  0x00006445 iadd  0x00000013 , 0x0000003f 
- 00030959  0x00006446 istore  0x00000001 , 0x00000012 
- 00030960  0x00006447 increase  0xffffffe8 , 0x00000012 
- 00030961  0x00006449 add  0x00000012 , 0x00000018 , 0x00000011 
- 00030962  0x0000644a force  0x00000007 , 0x00000039 
- 00030963  0x0000644b call  0x00007866 
- 00030964  0x0000644c branch  0x000078e2 
- 00030965  0x00006450 copy  0x00000005 , 0x0000000b 
- 00030966  0x00006451 arg  0x000006e2 , 0x00000005 
- 00030967  0x00006452 call  0x00007e3a 
- 00030968  0x00006453 force  0x00000000 , 0x0000003f 
- 00030969  0x00006454 store  0x00000004 , 0x0000069a 
- 00030970  0x00006455 store  0x00000004 , 0x000006fa 
- 00030971  0x00006456 jam  0x00000001 , 0x000006e2 
- 00030972  0x00006457 arg  0x00000682 , 0x00000005 
- 00030973  0x00006458 call  0x00007e3a 
- 00030974  0x00006459 arg  0x00000742 , 0x00000006 
- 00030975  0x0000645a arg  0x000006b2 , 0x00000005 
- 00030976  0x0000645b call  0x00007e33 
- 00030977  0x0000645c copy  0x00000011 , 0x00000006 
- 00030978  0x0000645d arg  0x000006ca , 0x00000005 
- 00030979  0x0000645e call  0x00007e33 
- 00030980  0x00006460 arg  0x000006ca , 0x00000006 
- 00030981  0x00006461 call  0x0000782b 
- 00030982  0x00006462 branch  0x0000792d , 0x00000034 
- 00030983  0x00006463 arg  0x000006ca , 0x00000011 
- 00030984  0x00006464 arg  0x000006e2 , 0x00000012 
- 00030985  0x00006465 call  0x000078e1 
- 00030986  0x00006467 arg  0x000006b2 , 0x00000011 
- 00030987  0x00006468 arg  0x00000682 , 0x00000012 
- 00030988  0x00006469 call  0x000078e1 
- 00030989  0x0000646a arg  0x000006ca , 0x00000011 
- 00030990  0x0000646b arg  0x000006b2 , 0x00000012 
- 00030991  0x0000646c call  0x0000783b 
- 00030992  0x0000646d branch  0x0000791f , 0x00000002 
- 00030993  0x0000646e arg  0x000006b2 , 0x00000011 
- 00030994  0x0000646f arg  0x000006ca , 0x00000012 
- 00030995  0x00006470 copy  0x00000011 , 0x00000005 
- 00030996  0x00006471 call  0x00007856 
- 00030997  0x00006472 arg  0x000006e2 , 0x00000011 
- 00030998  0x00006473 arg  0x00000682 , 0x00000012 
- 00030999  0x00006474 copy  0x00000012 , 0x00000005 
- 00031000  0x00006475 call  0x00007848 
- 00031001  0x00006476 ifetch  0x00000001 , 0x00000011 
- 00031002  0x00006477 iadd  0x00000013 , 0x00000013 
- 00031003  0x00006478 ifetch  0x00000001 , 0x00000012 
- 00031004  0x00006479 iadd  0x00000013 , 0x0000003f 
- 00031005  0x0000647a istore  0x00000001 , 0x00000012 
- 00031006  0x0000647b branch  0x00007904 
- 00031007  0x0000647d arg  0x000006ca , 0x00000011 
- 00031008  0x0000647e arg  0x000006b2 , 0x00000012 
- 00031009  0x0000647f copy  0x00000011 , 0x00000005 
- 00031010  0x00006480 call  0x00007856 
- 00031011  0x00006481 arg  0x00000682 , 0x00000011 
- 00031012  0x00006482 arg  0x000006e2 , 0x00000012 
- 00031013  0x00006483 copy  0x00000012 , 0x00000005 
- 00031014  0x00006484 call  0x00007848 
- 00031015  0x00006485 ifetch  0x00000001 , 0x00000011 
- 00031016  0x00006486 iadd  0x00000013 , 0x00000013 
- 00031017  0x00006487 ifetch  0x00000001 , 0x00000012 
- 00031018  0x00006488 iadd  0x00000013 , 0x0000003f 
- 00031019  0x00006489 istore  0x00000001 , 0x00000012 
- 00031020  0x0000648a branch  0x00007904 
- 00031021  0x0000648c arg  0x000006e2 , 0x00000005 
- 00031022  0x0000648d call  0x00007e3a 
- 00031023  0x0000648e fetch  0x00000001 , 0x0000069a 
- 00031024  0x0000648f store  0x00000001 , 0x000006e2 
- 00031025  0x00006490 store  0x00000001 , 0x000006ea 
- 00031026  0x00006491 arg  0x000006e2 , 0x00000011 
- 00031027  0x00006492 arg  0x00000682 , 0x00000012 
- 00031028  0x00006493 copy  0x00000012 , 0x00000005 
- 00031029  0x00006494 call  0x0000788c 
- 00031030  0x00006495 arg  0x00000742 , 0x00000011 
- 00031031  0x00006496 arg  0x00000682 , 0x00000012 
- 00031032  0x00006497 copy  0x0000000b , 0x00000005 
- 00031033  0x00006498 branch  0x0000788f 
- 00031034  0x0000649e arg  0x00000642 , 0x00000011 
- 00031035  0x0000649f arg  0x000006fa , 0x00000005 
- 00031036  0x000064a0 call  0x000078df 
- 00031037  0x000064a1 arg  0x000006fa , 0x00000011 
- 00031038  0x000064a2 arg  0x00000712 , 0x00000005 
- 00031039  0x000064a3 call  0x000078df 
- 00031040  0x000064a4 arg  0x0000075a , 0x00000011 
- 00031041  0x000064a5 arg  0x00000712 , 0x00000012 
- 00031042  0x000064a6 arg  0x00000712 , 0x00000005 
- 00031043  0x000064a7 call  0x000078bd 
- 00031044  0x000064a8 arg  0x00000612 , 0x00000011 
- 00031045  0x000064a9 arg  0x000006fa , 0x00000005 
- 00031046  0x000064aa call  0x000078df 
- 00031047  0x000064ab arg  0x000006fa , 0x00000006 
- 00031048  0x000064ac arg  0x000006ca , 0x00000005 
- 00031049  0x000064ad call  0x00007e33 
- 00031050  0x000064ae arg  0x000006ca , 0x00000011 
- 00031051  0x000064af call  0x0000787f 
- 00031052  0x000064b0 arg  0x000006fa , 0x00000011 
- 00031053  0x000064b1 arg  0x000006ca , 0x00000012 
- 00031054  0x000064b2 arg  0x000006fa , 0x00000005 
- 00031055  0x000064b3 call  0x0000788c 
- 00031056  0x000064b4 arg  0x000006fa , 0x00000011 
- 00031057  0x000064b5 arg  0x00000712 , 0x00000012 
- 00031058  0x000064b6 arg  0x000006fa , 0x00000005 
- 00031059  0x000064b7 call  0x0000788c 
- 00031060  0x000064b8 arg  0x00000612 , 0x00000006 
- 00031061  0x000064b9 arg  0x000006ca , 0x00000005 
- 00031062  0x000064ba call  0x00007e33 
- 00031063  0x000064bb arg  0x0000062a , 0x00000011 
- 00031064  0x000064bc arg  0x00000712 , 0x00000005 
- 00031065  0x000064bd call  0x000078df 
- 00031066  0x000064be arg  0x000006ca , 0x00000011 
- 00031067  0x000064bf call  0x0000787f 
- 00031068  0x000064c0 arg  0x000006ca , 0x00000011 
- 00031069  0x000064c1 call  0x0000787f 
- 00031070  0x000064c2 arg  0x000006ca , 0x00000011 
- 00031071  0x000064c3 arg  0x00000712 , 0x00000012 
- 00031072  0x000064c4 arg  0x000006ca , 0x00000005 
- 00031073  0x000064c5 call  0x000078bd 
- 00031074  0x000064c6 arg  0x00000712 , 0x00000011 
- 00031075  0x000064c7 arg  0x000006e2 , 0x00000005 
- 00031076  0x000064c8 call  0x000078df 
- 00031077  0x000064c9 arg  0x000006e2 , 0x00000011 
- 00031078  0x000064ca call  0x0000787f 
- 00031079  0x000064cb arg  0x000006e2 , 0x00000011 
- 00031080  0x000064cc call  0x0000787f 
- 00031081  0x000064cd arg  0x000006e2 , 0x00000011 
- 00031082  0x000064ce call  0x0000787f 
- 00031083  0x000064cf arg  0x0000062a , 0x00000006 
- 00031084  0x000064d0 arg  0x00000712 , 0x00000005 
- 00031085  0x000064d1 call  0x00007e33 
- 00031086  0x000064d2 arg  0x00000712 , 0x00000011 
- 00031087  0x000064d3 call  0x0000787f 
- 00031088  0x000064d4 arg  0x00000712 , 0x00000011 
- 00031089  0x000064d5 arg  0x00000642 , 0x00000012 
- 00031090  0x000064d6 arg  0x00000642 , 0x00000005 
- 00031091  0x000064d7 call  0x000078bd 
- 00031092  0x000064d8 arg  0x000006fa , 0x00000011 
- 00031093  0x000064d9 arg  0x00000712 , 0x00000005 
- 00031094  0x000064da call  0x000078df 
- 00031095  0x000064db arg  0x00000712 , 0x00000011 
- 00031096  0x000064dc arg  0x000006ca , 0x00000012 
- 00031097  0x000064dd arg  0x00000712 , 0x00000005 
- 00031098  0x000064de call  0x0000788f 
- 00031099  0x000064df arg  0x00000712 , 0x00000011 
- 00031100  0x000064e0 arg  0x000006ca , 0x00000012 
- 00031101  0x000064e1 arg  0x00000612 , 0x00000005 
- 00031102  0x000064e2 call  0x0000788f 
- 00031103  0x000064e3 arg  0x000006ca , 0x00000011 
- 00031104  0x000064e4 arg  0x00000612 , 0x00000012 
- 00031105  0x000064e5 arg  0x00000712 , 0x00000005 
- 00031106  0x000064e6 call  0x0000788f 
- 00031107  0x000064e7 arg  0x00000712 , 0x00000011 
- 00031108  0x000064e8 arg  0x000006fa , 0x00000012 
- 00031109  0x000064e9 arg  0x00000712 , 0x00000005 
- 00031110  0x000064ea call  0x000078bd 
- 00031111  0x000064eb arg  0x00000712 , 0x00000011 
- 00031112  0x000064ec arg  0x000006e2 , 0x00000012 
- 00031113  0x000064ed arg  0x0000062a , 0x00000005 
- 00031114  0x000064ee branch  0x0000788f 
- 00031115  0x000064f3 arg  0x000005b2 , 0x00000011 
- 00031116  0x000064f4 arg  0x0000072a , 0x00000005 
- 00031117  0x000064f5 call  0x000078df 
- 00031118  0x000064f6 arg  0x00000612 , 0x00000011 
- 00031119  0x000064f7 arg  0x0000072a , 0x00000012 
- 00031120  0x000064f8 arg  0x000006e2 , 0x00000005 
- 00031121  0x000064f9 call  0x000078bd 
- 00031122  0x000064fa arg  0x000005b2 , 0x00000011 
- 00031123  0x000064fb arg  0x0000072a , 0x00000012 
- 00031124  0x000064fc arg  0x0000072a , 0x00000005 
- 00031125  0x000064fd call  0x000078bd 
- 00031126  0x000064fe arg  0x0000062a , 0x00000011 
- 00031127  0x000064ff arg  0x0000072a , 0x00000012 
- 00031128  0x00006500 arg  0x000006ca , 0x00000005 
- 00031129  0x00006501 call  0x000078bd 
- 00031130  0x00006502 arg  0x00000642 , 0x00000011 
- 00031131  0x00006503 arg  0x0000072a , 0x00000005 
- 00031132  0x00006504 call  0x000078df 
- 00031133  0x00006505 arg  0x00000582 , 0x00000011 
- 00031134  0x00006506 arg  0x0000072a , 0x00000012 
- 00031135  0x00006507 arg  0x000006fa , 0x00000005 
- 00031136  0x00006508 call  0x000078bd 
- 00031137  0x00006509 arg  0x00000642 , 0x00000011 
- 00031138  0x0000650a arg  0x0000072a , 0x00000012 
- 00031139  0x0000650b arg  0x0000072a , 0x00000005 
- 00031140  0x0000650c call  0x000078bd 
- 00031141  0x0000650d arg  0x0000059a , 0x00000011 
- 00031142  0x0000650e arg  0x0000072a , 0x00000012 
- 00031143  0x0000650f arg  0x00000712 , 0x00000005 
- 00031144  0x00006510 call  0x000078bd 
- 00031145  0x00006511 arg  0x000006e2 , 0x00000011 
- 00031146  0x00006512 arg  0x000006fa , 0x00000012 
- 00031147  0x00006513 arg  0x0000072a , 0x00000005 
- 00031148  0x00006514 call  0x0000788f 
- 00031149  0x00006515 arg  0x000006e2 , 0x00000011 
- 00031150  0x00006516 arg  0x000006fa , 0x00000012 
- 00031151  0x00006517 arg  0x000006e2 , 0x00000005 
- 00031152  0x00006518 call  0x0000788c 
- 00031153  0x00006519 arg  0x000006ca , 0x00000011 
- 00031154  0x0000651a arg  0x00000712 , 0x00000012 
- 00031155  0x0000651b arg  0x000006fa , 0x00000005 
- 00031156  0x0000651c call  0x0000788f 
- 00031157  0x0000651d arg  0x000006ca , 0x00000011 
- 00031158  0x0000651e arg  0x00000712 , 0x00000012 
- 00031159  0x0000651f arg  0x000006ca , 0x00000005 
- 00031160  0x00006520 call  0x0000788c 
- 00031161  0x00006521 arg  0x000006ca , 0x00000011 
- 00031162  0x00006522 arg  0x0000072a , 0x00000012 
- 00031163  0x00006523 arg  0x000006ca , 0x00000005 
- 00031164  0x00006524 call  0x000078bd 
- 00031165  0x00006525 arg  0x00000642 , 0x00000011 
- 00031166  0x00006526 arg  0x000005b2 , 0x00000012 
- 00031167  0x00006527 arg  0x00000712 , 0x00000005 
- 00031168  0x00006528 call  0x000078bd 
- 00031169  0x00006529 arg  0x00000712 , 0x00000011 
- 00031170  0x0000652a arg  0x0000072a , 0x00000012 
- 00031171  0x0000652b arg  0x00000642 , 0x00000005 
- 00031172  0x0000652c call  0x000078bd 
- 00031173  0x0000652d arg  0x0000072a , 0x00000011 
- 00031174  0x0000652e arg  0x0000072a , 0x00000005 
- 00031175  0x0000652f call  0x000078df 
- 00031176  0x00006530 arg  0x0000072a , 0x00000011 
- 00031177  0x00006531 arg  0x000006e2 , 0x00000012 
- 00031178  0x00006532 arg  0x00000712 , 0x00000005 
- 00031179  0x00006533 call  0x000078bd 
- 00031180  0x00006534 arg  0x0000072a , 0x00000011 
- 00031181  0x00006535 arg  0x000006ca , 0x00000012 
- 00031182  0x00006536 arg  0x000006ca , 0x00000005 
- 00031183  0x00006537 call  0x000078bd 
- 00031184  0x00006538 arg  0x000006fa , 0x00000011 
- 00031185  0x00006539 arg  0x00000612 , 0x00000005 
- 00031186  0x0000653a call  0x000078df 
- 00031187  0x0000653b arg  0x00000612 , 0x00000011 
- 00031188  0x0000653c arg  0x00000712 , 0x00000012 
- 00031189  0x0000653d arg  0x00000612 , 0x00000005 
- 00031190  0x0000653e call  0x0000788f 
- 00031191  0x0000653f arg  0x00000612 , 0x00000006 
- 00031192  0x00006540 arg  0x0000072a , 0x00000005 
- 00031193  0x00006541 call  0x00007e33 
- 00031194  0x00006542 arg  0x0000072a , 0x00000011 
- 00031195  0x00006543 call  0x0000787f 
- 00031196  0x00006544 arg  0x00000712 , 0x00000011 
- 00031197  0x00006545 arg  0x0000072a , 0x00000012 
- 00031198  0x00006546 arg  0x00000712 , 0x00000005 
- 00031199  0x00006547 call  0x0000788f 
- 00031200  0x00006548 arg  0x00000712 , 0x00000011 
- 00031201  0x00006549 arg  0x000006fa , 0x00000012 
- 00031202  0x0000654a arg  0x000006fa , 0x00000005 
- 00031203  0x0000654b call  0x000078bd 
- 00031204  0x0000654c arg  0x000006fa , 0x00000011 
- 00031205  0x0000654d arg  0x000006ca , 0x00000012 
- 00031206  0x0000654e arg  0x0000062a , 0x00000005 
- 00031207  0x0000654f call  0x0000788f 
- 00031208  0x00006550 arg  0x0000062a , 0x00000011 
- 00031209  0x00006551 arg  0x00000742 , 0x00000012 
- 00031210  0x00006552 arg  0x0000062a , 0x00000005 
- 00031211  0x00006553 force  0x00000000 , 0x00000013 
- 00031212  0x00006554 fetch  0x00000001 , 0x0000062a 
- 00031213  0x00006555 isolate1  0x00000000 , 0x0000003f 
- 00031214  0x00006556 call  0x00007848 , 0x00000001 
- 00031215  0x00006557 copy  0x00000013 , 0x00000030 
- 00031216  0x00006558 arg  0x0000062a , 0x00000011 
- 00031217  0x00006559 call  0x00007864 
- 00031218  0x0000655a fetch  0x00000001 , 0x00000641 
- 00031219  0x0000655b isolate1  0x00000000 , 0x00000030 
- 00031220  0x0000655c setflag  0x00000001 , 0x00000007 , 0x0000003f 
- 00031221  0x0000655d store  0x00000001 , 0x00000641 
- 00031222  0x0000655e rtn 
- 00031223  0x00006562 jam  0x000000c0 , 0x00000581 
- 00031224  0x00006563 jam  0x00000001 , 0x00000580 
- 00031225  0x00006565 fetch  0x00000001 , 0x00000581 
- 00031226  0x00006566 increase  0xffffffff , 0x0000003f 
- 00031227  0x00006567 nrtn  0x00000002 
- 00031228  0x00006568 store  0x00000001 , 0x00000581 
- 00031229  0x00006569 fetch  0x00000001 , 0x00000580 
- 00031230  0x0000656a call  0x0000793a , 0x00000034 
- 00031231  0x0000656b fetch  0x00000001 , 0x00000581 
- 00031232  0x0000656c arg  0x0000065a , 0x00000006 
- 00031233  0x0000656d call  0x00007822 
- 00031234  0x0000656e branch  0x000079f9 , 0x00000001 
- 00031235  0x0000656f fetch  0x00000001 , 0x00000580 
- 00031236  0x00006570 nbranch  0x00007a07 , 0x00000034 
- 00031237  0x00006571 call  0x0000798b 
- 00031238  0x00006572 branch  0x000079f9 
- 00031239  0x00006574 jam  0x00000000 , 0x00000580 
- 00031240  0x00006575 arg  0x00000582 , 0x00000006 
- 00031241  0x00006576 arg  0x00000612 , 0x00000005 
- 00031242  0x00006577 call  0x00007828 
- 00031243  0x00006578 branch  0x000079f9 
- 00031244  0x0000657c arg  0x00000642 , 0x00000011 
- 00031245  0x0000657d arg  0x00000712 , 0x00000005 
- 00031246  0x0000657e call  0x000078f5 
- 00031247  0x0000657f arg  0x00000712 , 0x00000011 
- 00031248  0x00006580 arg  0x000006ca , 0x00000005 
- 00031249  0x00006581 call  0x000078df 
- 00031250  0x00006582 arg  0x00000612 , 0x00000011 
- 00031251  0x00006583 arg  0x000006ca , 0x00000012 
- 00031252  0x00006584 arg  0x000005ca , 0x00000005 
- 00031253  0x00006585 call  0x000078bd 
- 00031254  0x00006586 arg  0x00000712 , 0x00000011 
- 00031255  0x00006587 arg  0x000006ca , 0x00000012 
- 00031256  0x00006588 arg  0x000006fa , 0x00000005 
- 00031257  0x00006589 call  0x000078bd 
- 00031258  0x0000658a arg  0x0000062a , 0x00000011 
- 00031259  0x0000658b arg  0x000006fa , 0x00000012 
- 00031260  0x0000658c arg  0x000005e2 , 0x00000005 
- 00031261  0x0000658d branch  0x000078bd 
- 00031262  0x00006591 force  0x00000010 , 0x00000039 
- 00031263  0x00006593 ifetch  0x00000004 , 0x00000006 
- 00031264  0x00006594 force  0x00000004 , 0x00000011 
- 00031265  0x00006595 increase  0x00000003 , 0x00000005 
- 00031266  0x00006597 istore  0x00000001 , 0x00000005 
- 00031267  0x00006598 rshift8  0x0000003f , 0x0000003f 
- 00031268  0x00006599 increase  0xfffffffe , 0x00000005 
- 00031269  0x0000659a increase  0xffffffff , 0x00000011 
- 00031270  0x0000659b nbranch  0x00007a22 , 0x00000005 
- 00031271  0x0000659c increase  0x00000005 , 0x00000005 
- 00031272  0x0000659d loop  0x00007a1f 
- 00031273  0x0000659e rtn 
- 00031274  0x000065a2 lshift2  0x00000007 , 0x0000003f 
- 00031275  0x000065a3 iadd  0x0000000b , 0x00000006 
- 00031276  0x000065a4 ifetch  0x00000004 , 0x00000006 
- 00031277  0x000065a5 rtn 
- 00031278  0x000065a8 force  0x00000010 , 0x00000030 
- 00031279  0x000065a9 arg  0x00000582 , 0x0000000b 
- 00031280  0x000065ab add  0x00000030 , 0xfffffff9 , 0x00000007 
- 00031281  0x000065ac call  0x00007a2a 
- 00031282  0x000065ad iforce  0x00000002 
- 00031283  0x000065ae add  0x00000030 , 0xfffffff0 , 0x00000007 
- 00031284  0x000065af call  0x00007a2a 
- 00031285  0x000065b0 iadd  0x00000002 , 0x00000002 
- 00031286  0x000065b1 add  0x00000030 , 0xfffffffe , 0x00000007 
- 00031287  0x000065b2 call  0x00007a2a 
- 00031288  0x000065b3 shasx  0x0000003f , 0x00000001 , 0x0000003f 
- 00031289  0x000065b4 iadd  0x00000002 , 0x00000002 
- 00031290  0x000065b5 add  0x00000030 , 0xfffffff1 , 0x00000007 
- 00031291  0x000065b6 call  0x00007a2a 
- 00031292  0x000065b7 shasx  0x0000003f , 0x00000000 , 0x0000003f 
- 00031293  0x000065b8 iadd  0x00000002 , 0x00000002 
- 00031294  0x000065b9 lshift2  0x00000030 , 0x0000003f 
- 00031295  0x000065ba iadd  0x0000000b , 0x00000005 
- 00031296  0x000065bb istoret  0x00000004 , 0x00000005 
- 00031297  0x000065bc increase  0x00000001 , 0x00000030 
- 00031298  0x000065bd compare  0x00000040 , 0x00000030 , 0x000000ff 
- 00031299  0x000065be nbranch  0x00007a30 , 0x00000001 
- 00031300  0x000065bf rtn 
- 00031301  0x000065c3 arg  0x000007ba , 0x00000006 
- 00031302  0x000065c4 force  0x00000007 , 0x00000038 
- 00031303  0x000065c6 ifetch  0x00000004 , 0x00000006 
- 00031304  0x000065c7 iforce  0x0000002f 
- 00031305  0x000065c8 increase  0xffffffff , 0x00000038 
- 00031306  0x000065c9 branch  0x00007a47 , 0x00000002 
- 00031307  0x000065ca rtn 
- 00031308  0x000065cd set1  0x00000025 , 0x00000000 
- 00031309  0x000065ce bpatch  0x000000f8 , 0x0000403f 
- 00031310  0x000065cf call  0x00007a2e 
- 00031311  0x000065d0 arg  0x00000682 , 0x00000005 
- 00031312  0x000065d1 force  0x00000000 , 0x00000038 
- 00031313  0x000065d3 deposit  0x0000002f 
- 00031314  0x000065d4 istore  0x00000004 , 0x00000005 
- 00031315  0x000065d5 increase  0x00000001 , 0x00000038 
- 00031316  0x000065d6 compare  0x00000008 , 0x00000038 , 0x000000ff 
- 00031317  0x000065d7 nbranch  0x00007a51 , 0x00000001 
- 00031318  0x000065d8 call  0x000075c5 
- 00031319  0x000065d9 arg  0x00008700 , 0x0000000b 
- 00031320  0x000065da arg  0x00000582 , 0x00000030 
- 00031321  0x000065db force  0x00000040 , 0x00000039 
- 00031322  0x000065dd ifetcht  0x00000004 , 0x00000030 
- 00031323  0x000065de ifetch  0x00000004 , 0x0000000b 
- 00031324  0x000065df increase  0x00000004 , 0x0000000b 
- 00031325  0x000065e0 increase  0x00000004 , 0x00000030 
- 00031326  0x000065e1 iadd  0x00000002 , 0x0000003f 
- 00031327  0x000065e2 force  0x00000007 , 0x00000038 
- 00031328  0x000065e3 iadd  0x0000002f , 0x00000002 
- 00031329  0x000065e4 force  0x00000004 , 0x00000038 
- 00031330  0x000065e5 shasx  0x0000002f , 0x00000003 , 0x0000003f 
- 00031331  0x000065e6 iadd  0x00000002 , 0x00000002 
- 00031332  0x000065e7 force  0x00000005 , 0x00000038 
- 00031333  0x000065e8 deposit  0x0000002f 
- 00031334  0x000065e9 force  0x00000006 , 0x00000038 
- 00031335  0x000065ea ixor  0x0000002f , 0x0000003f 
- 00031336  0x000065eb force  0x00000004 , 0x00000038 
- 00031337  0x000065ec iand  0x0000002f , 0x0000003f 
- 00031338  0x000065ed force  0x00000006 , 0x00000038 
- 00031339  0x000065ee ixor  0x0000002f , 0x0000003f 
- 00031340  0x000065ef iadd  0x00000002 , 0x00000002 
- 00031341  0x000065f0 force  0x00000007 , 0x00000038 
- 00031342  0x000065f1 copy  0x00000002 , 0x0000002f 
- 00031343  0x000065f2 force  0x00000003 , 0x00000038 
- 00031344  0x000065f3 deposit  0x0000002f 
- 00031345  0x000065f4 iadd  0x00000002 , 0x0000002f 
- 00031346  0x000065f5 force  0x00000000 , 0x00000038 
- 00031347  0x000065f6 deposit  0x0000002f 
- 00031348  0x000065f7 force  0x00000001 , 0x00000038 
- 00031349  0x000065f8 iand  0x0000002f , 0x00000002 
- 00031350  0x000065f9 ior  0x0000002f , 0x0000003f 
- 00031351  0x000065fa force  0x00000002 , 0x00000038 
- 00031352  0x000065fb iand  0x0000002f , 0x0000003f 
- 00031353  0x000065fc ior  0x00000002 , 0x00000002 
- 00031354  0x000065fd force  0x00000000 , 0x00000038 
- 00031355  0x000065fe shasx  0x0000002f , 0x00000002 , 0x0000003f 
- 00031356  0x000065ff iadd  0x00000002 , 0x0000003f 
- 00031357  0x00006600 force  0x00000007 , 0x00000038 
- 00031358  0x00006601 iadd  0x0000002f , 0x0000002f 
- 00031359  0x00006602 regexrot 
- 00031360  0x00006603 loop  0x00007a5a 
- 00031361  0x00006604 arg  0x00000682 , 0x00000006 
- 00031362  0x00006605 force  0x00000000 , 0x00000038 
- 00031363  0x00006607 ifetch  0x00000004 , 0x00000006 
- 00031364  0x00006608 iadd  0x0000002f , 0x0000002f 
- 00031365  0x00006609 increase  0x00000001 , 0x00000038 
- 00031366  0x0000660a compare  0x00000008 , 0x00000038 , 0x000000ff 
- 00031367  0x0000660b nbranch  0x00007a83 , 0x00000001 
- 00031368  0x0000660c branch  0x000075c9 
- 00031369  0x00006610 arg  0x00000858 , 0x00000005 
- 00031370  0x00006611 force  0x00000007 , 0x00000038 
- 00031371  0x00006613 deposit  0x0000002f 
- 00031372  0x00006614 istore  0x00000004 , 0x00000005 
- 00031373  0x00006615 increase  0xffffffff , 0x00000038 
- 00031374  0x00006616 branch  0x00007a8b , 0x00000002 
- 00031375  0x00006617 rtn 
- 00031376  0x0000661b arg  0x00000582 , 0x00000005 
- 00031377  0x0000661c increase  0xfffffffc , 0x00000006 
- 00031378  0x0000661d sub  0x00000039 , 0x00000010 , 0x00000011 
- 00031379  0x0000661f ifetch  0x00000004 , 0x00000006 
- 00031380  0x00006620 ixor  0x00000002 , 0x0000003f 
- 00031381  0x00006621 istore  0x00000004 , 0x00000005 
- 00031382  0x00006622 increase  0xfffffff8 , 0x00000006 
- 00031383  0x00006623 loop  0x00007a93 
- 00031384  0x00006624 copy  0x00000011 , 0x00000039 
- 00031385  0x00006625 deposit  0x00000002 
- 00031386  0x00006627 istore  0x00000004 , 0x00000005 
- 00031387  0x00006628 loop  0x00007a9a 
- 00031388  0x00006629 rtn 
- 00031389  0x0000662c arg  0x00000808 , 0x00000006 
- 00031390  0x0000662d arg  0x00000582 , 0x00000005 
- 00031391  0x0000662e force  0x00000006 , 0x00000039 
- 00031392  0x0000662f call  0x00007b97 
- 00031393  0x00006630 arg  0x000047c4 , 0x00000006 
- 00031394  0x00006631 force  0x00000006 , 0x00000039 
- 00031395  0x00006632 call  0x00007b97 
- 00031396  0x00006633 arg  0x00000858 , 0x00000006 
- 00031397  0x00006634 call  0x00007b96 
- 00031398  0x00006635 call  0x00007a45 
- 00031399  0x00006636 call  0x00007a4c 
- 00031400  0x00006637 arg  0x00000848 , 0x00000006 
- 00031401  0x00006638 arg  0x00000582 , 0x00000005 
- 00031402  0x00006639 branch  0x00007ab8 
- 00031403  0x0000663c arg  0x000047c4 , 0x00000006 
- 00031404  0x0000663d arg  0x00000582 , 0x00000005 
- 00031405  0x0000663e force  0x00000006 , 0x00000039 
- 00031406  0x0000663f call  0x00007b97 
- 00031407  0x00006640 arg  0x00000808 , 0x00000006 
- 00031408  0x00006641 force  0x00000006 , 0x00000039 
- 00031409  0x00006642 call  0x00007b97 
- 00031410  0x00006643 arg  0x00000848 , 0x00000006 
- 00031411  0x00006644 call  0x00007b96 
- 00031412  0x00006645 call  0x00007a45 
- 00031413  0x00006646 call  0x00007a4c 
- 00031414  0x00006647 arg  0x00000858 , 0x00000006 
- 00031415  0x00006648 arg  0x00000582 , 0x00000005 
- 00031416  0x0000664a call  0x00007b96 
- 00031417  0x0000664b setarg  0x00800000 
- 00031418  0x0000664c lshift8  0x0000003f , 0x0000003f 
- 00031419  0x0000664d istore  0x00000004 , 0x00000005 
- 00031420  0x0000664e force  0x00000005 , 0x00000039 
- 00031421  0x0000664f call  0x00007e3b 
- 00031422  0x00006650 setarg  0x00000280 
- 00031423  0x00006651 istore  0x00000004 , 0x00000005 
- 00031424  0x00006652 call  0x00007a4c 
- 00031425  0x00006654 fetch  0x00000004 , 0x00000858 
- 00031426  0x00006656 arg  0x000003e8 , 0x00000011 
- 00031427  0x00006657 idiv  0x00000011 
- 00031428  0x00006658 call  0x00007efd 
- 00031429  0x00006659 remainder  0x0000003f 
- 00031430  0x0000665a store  0x00000004 , 0x000007ec 
- 00031431  0x0000665b quotient  0x0000003f 
- 00031432  0x0000665c arg  0x000003e8 , 0x00000011 
- 00031433  0x0000665d idiv  0x00000011 
- 00031434  0x0000665e call  0x00007efd 
- 00031435  0x0000665f remainder  0x0000003f 
- 00031436  0x00006660 arg  0x000003e8 , 0x00000011 
- 00031437  0x00006661 imul32  0x00000011 , 0x0000003f 
- 00031438  0x00006662 fetcht  0x00000004 , 0x000007ec 
- 00031439  0x00006663 iadd  0x00000002 , 0x0000003f 
- 00031440  0x00006664 store  0x00000004 , 0x000007ec 
- 00031441  0x00006665 rtn 
- 00031442  0x00006668 setarg  0x00363636 
- 00031443  0x00006669 lshift8  0x0000003f , 0x00000002 
- 00031444  0x0000666a or_into  0x00000036 , 0x00000002 
- 00031445  0x0000666b fetch  0x00000002 , 0x00000898 
- 00031446  0x0000666c copy  0x0000003f , 0x00000006 
- 00031447  0x0000666d force  0x00000004 , 0x00000039 
- 00031448  0x0000666e call  0x00007a90 
- 00031449  0x0000666f call  0x00007a45 
- 00031450  0x00006670 call  0x00007a4c 
- 00031451  0x00006671 fetch  0x00000002 , 0x0000089a 
- 00031452  0x00006672 copy  0x0000003f , 0x00000006 
- 00031453  0x00006673 arg  0x00000582 , 0x00000005 
- 00031454  0x00006674 force  0x00000006 , 0x00000039 
- 00031455  0x00006675 call  0x00007b97 
- 00031456  0x00006676 fetch  0x00000002 , 0x0000089c 
- 00031457  0x00006677 copy  0x0000003f , 0x00000006 
- 00031458  0x00006678 force  0x00000006 , 0x00000039 
- 00031459  0x00006679 call  0x00007b97 
- 00031460  0x0000667a setarg  0x00800000 
- 00031461  0x0000667b istore  0x00000003 , 0x00000005 
- 00031462  0x0000667c force  0x00000000 , 0x0000003f 
- 00031463  0x0000667d istore  0x00000001 , 0x00000005 
- 00031464  0x0000667e force  0x00000000 , 0x0000003f 
- 00031465  0x0000667f istore  0x00000008 , 0x00000005 
- 00031466  0x00006680 setarg  0x00000388 
- 00031467  0x00006681 istore  0x00000004 , 0x00000005 
- 00031468  0x00006682 call  0x00007a4c 
- 00031469  0x00006683 call  0x00007a89 
- 00031470  0x00006684 arg  0x00000858 , 0x00000006 
- 00031471  0x00006685 arg  0x000006a2 , 0x00000005 
- 00031472  0x00006686 call  0x00007e31 
- 00031473  0x00006688 setarg  0x005c5c5c 
- 00031474  0x00006689 lshift8  0x0000003f , 0x00000002 
- 00031475  0x0000668a or_into  0x0000005c , 0x00000002 
- 00031476  0x0000668b fetch  0x00000002 , 0x00000898 
- 00031477  0x0000668c copy  0x0000003f , 0x00000006 
- 00031478  0x0000668d force  0x00000004 , 0x00000039 
- 00031479  0x0000668e call  0x00007a90 
- 00031480  0x0000668f call  0x00007a45 
- 00031481  0x00006690 call  0x00007a4c 
- 00031482  0x00006691 arg  0x000006c2 , 0x00000006 
- 00031483  0x00006692 arg  0x00000582 , 0x00000005 
- 00031484  0x00006693 force  0x00000008 , 0x00000039 
- 00031485  0x00006694 call  0x00007b97 
- 00031486  0x00006695 setarg  0x00800000 
- 00031487  0x00006696 lshift8  0x0000003f , 0x0000003f 
- 00031488  0x00006697 istore  0x00000004 , 0x00000005 
- 00031489  0x00006698 call  0x00007e3a 
- 00031490  0x00006699 setarg  0x00000300 
- 00031491  0x0000669a istore  0x00000004 , 0x00000005 
- 00031492  0x0000669b call  0x00007a4c 
- 00031493  0x0000669c branch  0x00007a89 
- 00031494  0x000066a0 setarg  0x00363636 
- 00031495  0x000066a1 lshift8  0x0000003f , 0x00000002 
- 00031496  0x000066a2 or_into  0x00000036 , 0x00000002 
- 00031497  0x000066a3 arg  0x00000838 , 0x00000006 
- 00031498  0x000066a4 force  0x00000006 , 0x00000039 
- 00031499  0x000066a5 call  0x00007a90 
- 00031500  0x000066a6 call  0x00007a45 
- 00031501  0x000066a7 call  0x00007a4c 
- 00031502  0x000066a8 fetch  0x00000002 , 0x000008a4 
- 00031503  0x000066a9 copy  0x0000003f , 0x00000006 
- 00031504  0x000066aa arg  0x00000582 , 0x00000005 
- 00031505  0x000066ab call  0x00007b96 
- 00031506  0x000066ac fetch  0x00000002 , 0x000008a6 
- 00031507  0x000066ad copy  0x0000003f , 0x00000006 
- 00031508  0x000066ae call  0x00007b96 
- 00031509  0x000066b0 setarg  0x0062746c 
- 00031510  0x000066b1 lshift8  0x0000003f , 0x0000003f 
- 00031511  0x000066b2 or_into  0x0000006b , 0x0000003f 
- 00031512  0x000066b3 istore  0x00000004 , 0x00000005 
- 00031513  0x000066b4 arg  0x000006cf , 0x00000006 
- 00031514  0x000066b5 force  0x00000003 , 0x00000039 
- 00031515  0x000066b6 call  0x00007b97 
- 00031516  0x000066b8 setarg  0x00800000 
- 00031517  0x000066b9 lshift8  0x0000003f , 0x0000003f 
- 00031518  0x000066ba istore  0x00000004 , 0x00000005 
- 00031519  0x000066bb force  0x00000000 , 0x0000003f 
- 00031520  0x000066bc istore  0x00000008 , 0x00000005 
- 00031521  0x000066bd setarg  0x00000380 
- 00031522  0x000066be istore  0x00000004 , 0x00000005 
- 00031523  0x000066bf call  0x00007a4c 
- 00031524  0x000066c1 call  0x00007a89 
- 00031525  0x000066c2 arg  0x00000858 , 0x00000006 
- 00031526  0x000066c3 arg  0x000006a2 , 0x00000005 
- 00031527  0x000066c4 call  0x00007e31 
- 00031528  0x000066c6 setarg  0x005c5c5c 
- 00031529  0x000066c7 lshift8  0x0000003f , 0x00000002 
- 00031530  0x000066c8 or_into  0x0000005c , 0x00000002 
- 00031531  0x000066c9 arg  0x00000838 , 0x00000006 
- 00031532  0x000066ca force  0x00000006 , 0x00000039 
- 00031533  0x000066cb call  0x00007a90 
- 00031534  0x000066cc call  0x00007a45 
- 00031535  0x000066cd call  0x00007a4c 
- 00031536  0x000066ce arg  0x000006c2 , 0x00000006 
- 00031537  0x000066cf arg  0x00000582 , 0x00000005 
- 00031538  0x000066d0 force  0x00000008 , 0x00000039 
- 00031539  0x000066d1 call  0x00007b97 
- 00031540  0x000066d2 setarg  0x00800000 
- 00031541  0x000066d3 lshift8  0x0000003f , 0x0000003f 
- 00031542  0x000066d4 istore  0x00000004 , 0x00000005 
- 00031543  0x000066d5 call  0x00007e3a 
- 00031544  0x000066d6 setarg  0x00000300 
- 00031545  0x000066d7 istore  0x00000004 , 0x00000005 
- 00031546  0x000066d8 call  0x00007a4c 
- 00031547  0x000066d9 branch  0x00007a89 
- 00031548  0x000066dd setarg  0x00363636 
- 00031549  0x000066de lshift8  0x0000003f , 0x00000002 
- 00031550  0x000066df or_into  0x00000036 , 0x00000002 
- 00031551  0x000066e0 arg  0x00000838 , 0x00000006 
- 00031552  0x000066e1 force  0x00000006 , 0x00000039 
- 00031553  0x000066e2 call  0x00007a90 
- 00031554  0x000066e3 call  0x00007a45 
- 00031555  0x000066e4 call  0x00007a4c 
- 00031556  0x000066e5 arg  0x00000858 , 0x00000006 
- 00031557  0x000066e6 arg  0x00000582 , 0x00000005 
- 00031558  0x000066e7 call  0x00007b96 
- 00031559  0x000066e8 arg  0x00000848 , 0x00000006 
- 00031560  0x000066e9 call  0x00007b96 
- 00031561  0x000066ea branch  0x00007b57 
- 00031562  0x000066ed setarg  0x00363636 
- 00031563  0x000066ee lshift8  0x0000003f , 0x00000002 
- 00031564  0x000066ef or_into  0x00000036 , 0x00000002 
- 00031565  0x000066f0 arg  0x00000838 , 0x00000006 
- 00031566  0x000066f1 force  0x00000006 , 0x00000039 
- 00031567  0x000066f2 call  0x00007a90 
- 00031568  0x000066f3 call  0x00007a45 
- 00031569  0x000066f4 call  0x00007a4c 
- 00031570  0x000066f6 arg  0x00000848 , 0x00000006 
- 00031571  0x000066f7 arg  0x00000582 , 0x00000005 
- 00031572  0x000066f8 call  0x00007b96 
- 00031573  0x000066f9 arg  0x00000858 , 0x00000006 
- 00031574  0x000066fa call  0x00007b96 
- 00031575  0x000066fc setarg  0x00000000 
- 00031576  0x000066fd istore  0x00000008 , 0x00000005 
- 00031577  0x000066fe istore  0x00000008 , 0x00000005 
- 00031578  0x00006700 copy  0x00000005 , 0x00000002 
- 00031579  0x00006701 jam  0x00000080 , 0x000006c2 
- 00031580  0x00006702 copy  0x00000002 , 0x00000005 
- 00031581  0x00006703 arg  0x000006d2 , 0x00000006 
- 00031582  0x00006704 call  0x00007b96 
- 00031583  0x00006706 call  0x00007a4c 
- 00031584  0x00006708 arg  0x00000582 , 0x00000005 
- 00031585  0x00006709 force  0x00000007 , 0x00000039 
- 00031586  0x0000670a call  0x00007e3b 
- 00031587  0x0000670b istore  0x00000004 , 0x00000005 
- 00031588  0x0000670c setarg  0x000003f8 
- 00031589  0x0000670d istore  0x00000004 , 0x00000005 
- 00031590  0x0000670e call  0x00007a4c 
- 00031591  0x0000670f call  0x00007a89 
- 00031592  0x00006711 arg  0x00000858 , 0x00000006 
- 00031593  0x00006712 arg  0x000006a2 , 0x00000005 
- 00031594  0x00006713 call  0x00007e31 
- 00031595  0x00006715 setarg  0x005c5c5c 
- 00031596  0x00006716 lshift8  0x0000003f , 0x00000002 
- 00031597  0x00006717 or_into  0x0000005c , 0x00000002 
- 00031598  0x00006718 arg  0x00000838 , 0x00000006 
- 00031599  0x00006719 force  0x00000006 , 0x00000039 
- 00031600  0x0000671a call  0x00007a90 
- 00031601  0x0000671b call  0x00007a45 
- 00031602  0x0000671c call  0x00007a4c 
- 00031603  0x0000671d arg  0x000006c2 , 0x00000006 
- 00031604  0x0000671e arg  0x00000582 , 0x00000005 
- 00031605  0x0000671f force  0x00000008 , 0x00000039 
- 00031606  0x00006720 call  0x00007b97 
- 00031607  0x00006721 setarg  0x00800000 
- 00031608  0x00006722 lshift8  0x0000003f , 0x0000003f 
- 00031609  0x00006723 istore  0x00000004 , 0x00000005 
- 00031610  0x00006724 call  0x00007e3a 
- 00031611  0x00006725 setarg  0x00000300 
- 00031612  0x00006726 istore  0x00000004 , 0x00000005 
- 00031613  0x00006727 call  0x00007a4c 
- 00031614  0x00006728 branch  0x00007a89 
- 00031615  0x00006730 jam  0x000000c0 , 0x00000581 
- 00031616  0x00006732 fetch  0x00000001 , 0x00000581 
- 00031617  0x00006733 rtn  0x00000034 
- 00031618  0x00006734 increase  0xffffffff , 0x0000003f 
- 00031619  0x00006735 store  0x00000001 , 0x00000581 
- 00031620  0x00006736 arg  0x0000065a , 0x00000006 
- 00031621  0x00006737 call  0x00007822 
- 00031622  0x00006738 branch  0x00007b80 , 0x00000001 
- 00031623  0x00006739 arg  0x00000582 , 0x00000006 
- 00031624  0x0000673a arg  0x00000612 , 0x00000005 
- 00031625  0x0000673b branch  0x00007828 
- 00031626  0x0000673e call  0x0000793a 
- 00031627  0x0000673f fetch  0x00000001 , 0x00000581 
- 00031628  0x00006740 increase  0xffffffff , 0x0000003f 
- 00031629  0x00006741 store  0x00000001 , 0x00000581 
- 00031630  0x00006742 arg  0x0000065a , 0x00000006 
- 00031631  0x00006743 call  0x00007822 
- 00031632  0x00006744 rtn  0x00000001 
- 00031633  0x00006745 branch  0x0000798b 
- 00031634  0x00006748 jam  0x00000000 , 0x00000580 
- 00031635  0x00006749 arg  0x00000582 , 0x00000006 
- 00031636  0x0000674a arg  0x00000612 , 0x00000005 
- 00031637  0x0000674b branch  0x00007828 
- 00031638  0x0000674e force  0x00000004 , 0x00000039 
- 00031639  0x00006750 increase  0xfffffffc , 0x00000006 
- 00031640  0x00006752 ifetch  0x00000004 , 0x00000006 
- 00031641  0x00006753 istore  0x00000004 , 0x00000005 
- 00031642  0x00006754 increase  0xfffffff8 , 0x00000006 
- 00031643  0x00006755 loop  0x00007b98 
- 00031644  0x00006756 rtn 
- 00031645  0x0000675a rtn  0x0000002b 
- 00031646  0x0000675b call  0x00007ba5 
- 00031647  0x0000675c call  0x00007c13 
- 00031648  0x0000675d branch  0x00007bd9 
- 00031649  0x00006760 fetch  0x00000001 , 0x00004132 
- 00031650  0x00006761 rtneq  0x00000001 
- 00031651  0x00006762 call  0x00007bf2 
- 00031652  0x00006764 branch  0x00007c04 
- 00031653  0x00006767 fetch  0x00000001 , 0x000047fd 
- 00031654  0x00006768 rtneq  0x000000ff 
- 00031655  0x00006769 iforce  0x00000002 
- 00031656  0x0000676a call  0x000069da 
- 00031657  0x0000676b fetcht  0x00000001 , 0x000047fd 
- 00031658  0x0000676c call  0x000069ed 
- 00031659  0x0000676d nop  0x00000064 
- 00031660  0x0000676e fetcht  0x00000001 , 0x000047fd 
- 00031661  0x0000676f call  0x000069d1 
- 00031662  0x00006770 branch  0x00007bb1 
- 00031663  0x00006773 jam  0x000000ff , 0x000047fd 
- 00031664  0x00006774 rtn 
- 00031665  0x00006777 set1  0x00000025 , 0x00000000 
- 00031666  0x00006778 bpatch  0x00000085 , 0x00004030 
- 00031667  0x00006779 fetch  0x00000001 , 0x000047fd 
- 00031668  0x0000677a rtneq  0x000000ff 
- 00031669  0x0000677b copy  0x0000003f , 0x00000002 
- 00031670  0x0000677c call  0x000069e5 
- 00031671  0x0000677d nbranch  0x00007bc4 , 0x00000001 
- 00031672  0x00006780 call  0x00007bce 
- 00031673  0x00006781 fetch  0x00000002 , 0x000047f4 
- 00031674  0x00006782 set1  0x0000000c 
- 00031675  0x00006783 store  0x00000002 , 0x000047f4 
- 00031676  0x00006784 fetch  0x00000001 , 0x000047eb 
- 00031677  0x00006785 rtneq  0x00000000 
- 00031678  0x00006786 jam  0x00000000 , 0x000047eb 
- 00031679  0x00006788 fetch  0x00000001 , 0x000047fc 
- 00031680  0x00006789 store  0x00000001 , 0x000047ea 
- 00031681  0x0000678a call  0x00007bd5 
- 00031682  0x0000678b jam  0x0000002c , 0x00000b7d 
- 00031683  0x0000678c branch  0x00007c27 
- 00031684  0x0000678e fetch  0x00000002 , 0x000047f4 
- 00031685  0x0000678f set0  0x0000000c 
- 00031686  0x00006790 store  0x00000002 , 0x000047f4 
- 00031687  0x00006791 fetch  0x00000001 , 0x000047eb 
- 00031688  0x00006792 rtneq  0x00000001 
- 00031689  0x00006793 jam  0x00000001 , 0x000047eb 
- 00031690  0x00006795 jam  0x00000000 , 0x000047ea 
- 00031691  0x00006796 call  0x00007bd7 
- 00031692  0x00006797 jam  0x0000002d , 0x00000b7d 
- 00031693  0x00006798 branch  0x00007c27 
- 00031694  0x0000679b fetch  0x00000001 , 0x000047ea 
- 00031695  0x0000679c rtn  0x00000034 
- 00031696  0x0000679d increase  0xffffffff , 0x0000003f 
- 00031697  0x0000679e store  0x00000001 , 0x000047ea 
- 00031698  0x0000679f nrtn  0x00000034 
- 00031699  0x000067a1 jam  0x00000010 , 0x00000b7d 
- 00031700  0x000067a2 branch  0x00007c27 
- 00031701  0x000067a5 arg  0x00000007 , 0x00000007 
- 00031702  0x000067a6 branch  0x00003dc2 
- 00031703  0x000067a9 arg  0x00000007 , 0x00000007 
- 00031704  0x000067aa branch  0x00003dc6 
- 00031705  0x000067ad fetch  0x00000001 , 0x000047f7 
- 00031706  0x000067ae rtneq  0x000000ff 
- 00031707  0x000067af iforce  0x00000002 
- 00031708  0x000067b0 call  0x000069da 
- 00031709  0x000067b1 branch  0x00007be2 
- 00031710  0x000067b4 fetch  0x00000002 , 0x000047f4 
- 00031711  0x000067b5 set0  0x0000000d 
- 00031712  0x000067b6 store  0x00000002 , 0x000047f4 
- 00031713  0x000067b7 jam  0x00000000 , 0x000047e9 
- 00031714  0x000067b9 fetch  0x00000002 , 0x000047f4 
- 00031715  0x000067ba set0  0x0000000e 
- 00031716  0x000067bb store  0x00000002 , 0x000047f4 
- 00031717  0x000067bc fetcht  0x00000001 , 0x000047f7 
- 00031718  0x000067bd branch  0x000069ed 
- 00031719  0x000067c0 fetch  0x00000002 , 0x000047f4 
- 00031720  0x000067c1 set1  0x0000000e 
- 00031721  0x000067c2 store  0x00000002 , 0x000047f4 
- 00031722  0x000067c3 jam  0x00000000 , 0x000047e9 
- 00031723  0x000067c4 fetcht  0x00000001 , 0x000047f7 
- 00031724  0x000067c5 branch  0x000069ef 
- 00031725  0x000067c8 fetch  0x00000002 , 0x000047f4 
- 00031726  0x000067c9 set1  0x0000000d 
- 00031727  0x000067ca store  0x00000002 , 0x000047f4 
- 00031728  0x000067cb jam  0x00000001 , 0x000047e9 
- 00031729  0x000067cc rtn 
- 00031730  0x000067cf set1  0x00000025 , 0x00000000 
- 00031731  0x000067d0 bpatch  0x00000086 , 0x00004030 
- 00031732  0x000067d1 fetch  0x00000001 , 0x000047e9 
- 00031733  0x000067d2 rtneq  0x00000000 
- 00031734  0x000067d3 arg  0x00000009 , 0x00000007 
- 00031735  0x000067d4 call  0x00007e53 
- 00031736  0x000067d5 nrtn  0x00000034 
- 00031737  0x000067d6 fetch  0x00000001 , 0x000047e9 
- 00031738  0x000067d7 beq  0x00000002 , 0x00007bff 
- 00031739  0x000067d8 call  0x00007be7 
- 00031740  0x000067d9 jam  0x00000002 , 0x000047e9 
- 00031741  0x000067da fetch  0x00000002 , 0x000047fa 
- 00031742  0x000067db branch  0x00007c02 
- 00031743  0x000067dd call  0x00007be2 
- 00031744  0x000067de jam  0x00000003 , 0x000047e9 
- 00031745  0x000067df fetch  0x00000002 , 0x000047f8 
- 00031746  0x000067e1 arg  0x00000009 , 0x00000007 
- 00031747  0x000067e2 branch  0x00007e4c 
- 00031748  0x000067e6 set1  0x00000025 , 0x00000000 
- 00031749  0x000067e7 bpatch  0x00000087 , 0x00004030 
- 00031750  0x000067e8 arg  0x00000000 , 0x00000011 
- 00031751  0x000067e9 fetcht  0x00000004 , 0x000047ec 
- 00031752  0x000067ea copy  0x00000022 , 0x00000012 
- 00031753  0x000067ed copy  0x00000012 , 0x0000003f 
- 00031754  0x000067ee increase  0x000000a0 , 0x00000002 
- 00031755  0x000067ef increase  0x000000a0 , 0x00000002 
- 00031756  0x000067f0 isub  0x00000002 , 0x0000003e 
- 00031757  0x000067f1 nbranch  0x00007c16 , 0x00000002 
- 00031758  0x000067f2 increase  0x00000001 , 0x00000011 
- 00031759  0x000067f3 and  0x00000011 , 0x0000000f , 0x0000003f 
- 00031760  0x000067f4 nbranch  0x00007c09 , 0x00000034 
- 00031761  0x000067f5 arg  0x00000000 , 0x00000011 
- 00031762  0x000067f6 call  0x00007c1d 
- 00031763  0x000067f8 copy  0x00000022 , 0x0000003f 
- 00031764  0x000067f9 store  0x00000004 , 0x000047ec 
- 00031765  0x000067fa rtn 
- 00031766  0x000067fc set1  0x00000025 , 0x00000000 
- 00031767  0x000067fd bpatch  0x00000088 , 0x00004031 
- 00031768  0x000067fe copy  0x00000011 , 0x0000003f 
- 00031769  0x000067ff rtn  0x00000034 
- 00031770  0x00006800 increase  0xffffff60 , 0x00000002 
- 00031771  0x00006801 increase  0xffffff60 , 0x00000002 
- 00031772  0x00006802 storet  0x00000004 , 0x000047ec 
- 00031773  0x00006804 increase  0x00000050 , 0x0000003f 
- 00031774  0x00006805 store  0x00000001 , 0x00000b7d 
- 00031775  0x00006806 branch  0x00007c27 
- 00031776  0x0000680d jam  0x00000001 , 0x000047dd 
- 00031777  0x0000680f fetch  0x00000001 , 0x000047de 
- 00031778  0x00006810 nbranch  0x00007c21 , 0x00000034 
- 00031779  0x00006811 rtn 
- 00031780  0x00006814 jam  0x00000000 , 0x000047dd 
- 00031781  0x00006815 rtn 
- 00031782  0x00006818 branch  0x00007f9f 
- 00031783  0x0000681d set1  0x00000025 , 0x00000000 
- 00031784  0x0000681e bpatch  0x00000089 , 0x00004031 
- 00031785  0x0000681f fetch  0x00000001 , 0x00004132 
- 00031786  0x00006820 rtneq  0x00000001 
- 00031787  0x00006821 call  0x00007c20 
- 00031788  0x00006822 copy  0x00000011 , 0x0000003f 
- 00031789  0x00006823 store  0x00000004 , 0x000008ab 
- 00031790  0x00006824 arg  0x000047df , 0x00000011 
- 00031791  0x00006825 call  0x00007f92 
- 00031792  0x00006826 fetch  0x00000004 , 0x000008ab 
- 00031793  0x00006827 copy  0x0000003f , 0x00000011 
- 00031794  0x00006828 branch  0x00007c24 
- 00031795  0x0000682b set1  0x00000025 , 0x00000000 
- 00031796  0x0000682c bpatch  0x0000008a , 0x00004031 
- 00031797  0x0000682d fetch  0x00000001 , 0x00004132 
- 00031798  0x0000682e rtneq  0x00000001 
- 00031799  0x0000682f call  0x00007c20 
- 00031800  0x00006830 copy  0x00000011 , 0x0000003f 
- 00031801  0x00006831 store  0x00000004 , 0x000008ab 
- 00031802  0x00006832 arg  0x000047e4 , 0x00000011 
- 00031803  0x00006833 call  0x00007f92 
- 00031804  0x00006834 fetch  0x00000004 , 0x000008ab 
- 00031805  0x00006835 copy  0x0000003f , 0x00000011 
- 00031806  0x00006836 branch  0x00007c24 
- 00031807  0x00006839 set1  0x00000025 , 0x00000000 
- 00031808  0x0000683a bpatch  0x0000008b , 0x00004031 
- 00031809  0x0000683b setarg  0x00000000 
- 00031810  0x0000683c store  0x00000005 , 0x000047e4 
- 00031811  0x0000683d store  0x00000005 , 0x000047df 
- 00031812  0x0000683e rtn 
- 00031813  0x00006841 set1  0x00000025 , 0x00000000 
- 00031814  0x00006842 bpatch  0x0000008c , 0x00004031 
- 00031815  0x00006843 fetch  0x00000001 , 0x00004272 
- 00031816  0x00006844 nrtn  0x00000034 
- 00031817  0x00006845 arg  0x000047e4 , 0x00000011 
- 00031818  0x00006846 call  0x00007fac 
- 00031819  0x00006847 rtn  0x00000034 
- 00031820  0x00006848 jam  0x00000000 , 0x000008aa 
- 00031821  0x00006849 call  0x00007c51 
- 00031822  0x0000684a fetch  0x00000001 , 0x000008aa 
- 00031823  0x0000684b branch  0x00007c45 , 0x00000034 
- 00031824  0x0000684c rtn 
- 00031825  0x0000684f set1  0x00000025 , 0x00000000 
- 00031826  0x00006850 bpatch  0x0000008d , 0x00004031 
- 00031827  0x00006851 call  0x00007c20 
- 00031828  0x00006852 arg  0x000047e4 , 0x00000011 
- 00031829  0x00006853 call  0x00007f9f 
- 00031830  0x00006854 copy  0x0000003f , 0x00000002 
- 00031831  0x00006855 call  0x00007c24 
- 00031832  0x00006856 copy  0x00000002 , 0x0000003f 
- 00031833  0x00006857 rtn  0x00000034 
- 00031834  0x00006858 beq  0x00000001 , 0x00007c97 
- 00031835  0x00006859 beq  0x00000002 , 0x00007c9c 
- 00031836  0x0000685a beq  0x00000003 , 0x00007ca2 
- 00031837  0x0000685b beq  0x00000007 , 0x00007ca7 
- 00031838  0x0000685c beq  0x00000008 , 0x00007ca8 
- 00031839  0x0000685d beq  0x00000009 , 0x00007ca9 
- 00031840  0x0000685e beq  0x0000000b , 0x00007cac 
- 00031841  0x0000685f beq  0x0000000c , 0x00007cad 
- 00031842  0x00006860 beq  0x0000000d , 0x00007cae 
- 00031843  0x00006861 beq  0x0000000e , 0x00007cb1 
- 00031844  0x00006862 beq  0x0000000f , 0x00007cb3 
- 00031845  0x00006863 beq  0x00000010 , 0x00007cb6 
- 00031846  0x00006864 beq  0x00000012 , 0x00007cbb 
- 00031847  0x00006865 beq  0x00000015 , 0x00007bed 
- 00031848  0x00006866 beq  0x00000014 , 0x00007be7 
- 00031849  0x00006867 beq  0x00000013 , 0x00007bde 
- 00031850  0x00006868 beq  0x00000016 , 0x00007cbc 
- 00031851  0x00006869 beq  0x00000017 , 0x00007cc1 
- 00031852  0x0000686a beq  0x00000018 , 0x00007cc3 
- 00031853  0x0000686b beq  0x00000019 , 0x00007cc8 
- 00031854  0x0000686c beq  0x0000001b , 0x00007cc6 
- 00031855  0x0000686d beq  0x0000001c , 0x00007cd3 
- 00031856  0x0000686e beq  0x0000001e , 0x00007cd5 
- 00031857  0x00006870 store  0x00000001 , 0x00000b7d 
- 00031858  0x00006871 set1  0x00000025 , 0x00000000 
- 00031859  0x00006872 bpatch  0x0000008e , 0x00004031 
- 00031860  0x00006873 fetch  0x00000001 , 0x0000007c 
- 00031861  0x00006874 branch  0x00007c79 , 0x00000034 
- 00031862  0x00006875 call  0x000061d9 
- 00031863  0x00006876 fetch  0x00000001 , 0x0000007c 
- 00031864  0x00006877 nbranch  0x00007c8c , 0x00000034 
- 00031865  0x00006879 fetch  0x00000001 , 0x00000b7d 
- 00031866  0x0000687a bmark0  0x00000009 , 0x00007c87 
- 00031867  0x0000687c beq  0x00000005 , 0x00004a19 
- 00031868  0x0000687d beq  0x00000006 , 0x00004a28 
- 00031869  0x0000687e beq  0x0000000a , 0x00007caa 
- 00031870  0x0000687f beq  0x00000004 , 0x00007ca4 
- 00031871  0x00006880 beq  0x00000011 , 0x00007cb8 
- 00031872  0x00006881 beq  0x0000001d , 0x00007c8e 
- 00031873  0x00006882 beq  0x0000001f , 0x0000690c 
- 00031874  0x00006883 beq  0x00000020 , 0x00006910 
- 00031875  0x00006884 beq  0x00000012 , 0x00007c85 
- 00031876  0x00006885 rtn 
- 00031877  0x00006889 jam  0x0000002f , 0x00000b7d 
- 00031878  0x0000688a branch  0x00005620 
- 00031879  0x0000688c store  0x00000001 , 0x00000b7d 
- 00031880  0x0000688d call  0x000032ee 
- 00031881  0x0000688e branch  0x00007c8c , 0x00000005 
- 00031882  0x0000688f call  0x000032f9 
- 00031883  0x00006890 nrtn  0x00000005 
- 00031884  0x00006892 jam  0x00000001 , 0x000008aa 
- 00031885  0x00006893 branch  0x00007c33 
- 00031886  0x00006897 jam  0x00000034 , 0x0000007c 
- 00031887  0x00006898 set1  0x00000003 , 0x00000000 
- 00031888  0x00006899 nrtn  0x00000029 
- 00031889  0x0000689a jam  0x00000000 , 0x00004748 
- 00031890  0x0000689b jam  0x00000013 , 0x0000007c 
- 00031891  0x0000689c fetch  0x00000001 , 0x00000177 
- 00031892  0x0000689d set0  0x00000002 , 0x0000003f 
- 00031893  0x0000689e store  0x00000001 , 0x00000177 
- 00031894  0x0000689f rtn 
- 00031895  0x000068a2 fetch  0x00000002 , 0x000047f4 
- 00031896  0x000068a3 set1  0x00000006 
- 00031897  0x000068a4 store  0x00000002 , 0x000047f4 
- 00031898  0x000068a5 jam  0x00000003 , 0x00004133 
- 00031899  0x000068a6 rtn 
- 00031900  0x000068a9 jam  0x00000000 , 0x000047f2 
- 00031901  0x000068aa jam  0x00000000 , 0x00004133 
- 00031902  0x000068ab fetch  0x00000002 , 0x000047f4 
- 00031903  0x000068ac set0  0x00000006 
- 00031904  0x000068ad store  0x00000002 , 0x000047f4 
- 00031905  0x000068ae rtn 
- 00031906  0x000068b1 jam  0x00000005 , 0x00004272 
- 00031907  0x000068b2 rtn 
- 00031908  0x000068b5 jam  0x00000007 , 0x0000007c 
- 00031909  0x000068b6 jam  0x00000013 , 0x00000446 
- 00031910  0x000068b7 rtn 
- 00031911  0x000068bb rtn 
- 00031912  0x000068be rtn 
- 00031913  0x000068c1 rtn 
- 00031914  0x000068c4 jam  0x00000002 , 0x00000450 
- 00031915  0x000068c5 branch  0x000049da 
- 00031916  0x000068c8 rtn 
- 00031917  0x000068ca rtn 
- 00031918  0x000068cc jam  0x00000001 , 0x000043d8 
- 00031919  0x000068cd jam  0x00000000 , 0x000044db 
- 00031920  0x000068ce rtn 
- 00031921  0x000068d0 jam  0x00000000 , 0x000043d8 
- 00031922  0x000068d1 rtn 
- 00031923  0x000068d3 jam  0x00000001 , 0x000043d8 
- 00031924  0x000068d4 jam  0x00000001 , 0x000044db 
- 00031925  0x000068d5 rtn 
- 00031926  0x000068d7 jam  0x00000000 , 0x000043d8 
- 00031927  0x000068d8 rtn 
- 00031928  0x000068da setarg  0x00000001 
- 00031929  0x000068db store  0x00000002 , 0x000003ef 
- 00031930  0x000068dc rtn 
- 00031931  0x000068de rtn 
- 00031932  0x000068e0 jam  0x00000001 , 0x000043d2 
- 00031933  0x000068e1 jam  0x0000001b , 0x00004272 
- 00031934  0x000068e2 fetch  0x00000006 , 0x00000268 
- 00031935  0x000068e3 store  0x00000006 , 0x000044e7 
- 00031936  0x000068e4 rtn 
- 00031937  0x000068e6 jam  0x00000001 , 0x000043d2 
- 00031938  0x000068e7 rtn 
- 00031939  0x000068e9 jam  0x00000000 , 0x000043d2 
- 00031940  0x000068ea jam  0x00000000 , 0x00004272 
- 00031941  0x000068eb rtn 
- 00031942  0x000068ed jam  0x0000004b , 0x00000b7d 
- 00031943  0x000068ee branch  0x00005620 
- 00031944  0x000068f0 set1  0x00000025 , 0x00000000 
- 00031945  0x000068f1 bpatch  0x0000008f , 0x00004031 
- 00031946  0x000068f2 fetch  0x00000002 , 0x00004288 
- 00031947  0x000068f3 call  0x00007f66 
- 00031948  0x000068f4 fetch  0x00000001 , 0x000047fd 
- 00031949  0x000068f5 beq  0x000000ff , 0x00007cd0 
- 00031950  0x000068f6 copy  0x0000003f , 0x00000002 
- 00031951  0x000068f7 call  0x000069d1 
- 00031952  0x000068f9 call  0x00007be2 
- 00031953  0x000068fa call  0x00007c3f 
- 00031954  0x000068fb branch  0x00003ccd 
- 00031955  0x000068fe jam  0x00000001 , 0x000046f8 
- 00031956  0x000068ff rtn 
- 00031957  0x00006902 force  0x00000004 , 0x00000007 
- 00031958  0x00006903 branch  0x00007e4b 
- 00031959  0x00006906 fetch  0x00000001 , 0x000047f4 
- 00031960  0x00006907 rtnbit0  0x0000000c 
- 00031961  0x00006908 rtnbit0  0x00000007 
- 00031962  0x00006909 branch  0x00007cd5 
- 00031963  0x0000690e set1  0x00000025 , 0x00000000 
- 00031964  0x0000690f bpatch  0x000000d5 , 0x0000403a 
- 00031965  0x00006910 call  0x00007df3 
- 00031966  0x00006911 hfetch  0x00000001 , 0x00008c26 
- 00031967  0x00006912 store  0x00000001 , 0x000008af 
- 00031968  0x00006913 hfetch  0x00000001 , 0x00008c27 
- 00031969  0x00006914 store  0x00000001 , 0x000008b0 
- 00031970  0x00006915 hjam  0x000000e0 , 0x00008c26 
- 00031971  0x00006916 fetch  0x00000001 , 0x000008b0 
- 00031972  0x00006917 compare  0x00000001 , 0x0000003f , 0x00000001 
- 00031973  0x00006918 call  0x00007d3a , 0x00000001 
- 00031974  0x00006919 set1  0x00000025 , 0x00000000 
- 00031975  0x0000691a bpatch  0x000000d6 , 0x0000403a 
- 00031976  0x0000691b fetch  0x00000001 , 0x000008af 
- 00031977  0x0000691c compare  0x00000001 , 0x0000003f , 0x00000001 
- 00031978  0x0000691d call  0x00007cf8 , 0x00000001 
- 00031979  0x0000691e fetch  0x00000001 , 0x000008f8 
- 00031980  0x0000691f bne  0x00000002 , 0x00007dc2 
- 00031981  0x00006920 fetch  0x00000002 , 0x000008f9 
- 00031982  0x00006921 increase  0x00000001 , 0x0000003f 
- 00031983  0x00006922 store  0x00000002 , 0x000008f9 
- 00031984  0x00006923 fetcht  0x00000002 , 0x000008fb 
- 00031985  0x00006924 isub  0x00000002 , 0x0000003e 
- 00031986  0x00006925 branch  0x00007db2 , 0x00000002 
- 00031987  0x00006926 fetch  0x00000001 , 0x000008af 
- 00031988  0x00006927 bbit0  0x00000006 , 0x00007dc2 
- 00031989  0x00006928 setarg  0x00000000 
- 00031990  0x00006929 store  0x00000002 , 0x000008f9 
- 00031991  0x0000692a branch  0x00007dc2 
- 00031992  0x0000692e set1  0x00000025 , 0x00000000 
- 00031993  0x0000692f bpatch  0x000000d7 , 0x0000403a 
- 00031994  0x00006930 hjam  0x00000011 , 0x00008c26 
- 00031995  0x00006931 hfetch  0x00000001 , 0x00008c20 
- 00031996  0x00006932 store  0x00000001 , 0x000008b1 
- 00031997  0x00006933 copy  0x0000003f , 0x00000039 
- 00031998  0x00006934 branch  0x00007d18 , 0x00000034 
- 00031999  0x00006935 arg  0x000008ff , 0x00000005 
- 00032000  0x00006936 call  0x00007d36 
- 00032001  0x00006937 fetch  0x00000001 , 0x000008b1 
- 00032002  0x00006938 sub  0x0000003f , 0x00000007 , 0x0000003e 
- 00032003  0x00006939 rtn  0x00000002 
- 00032004  0x0000693b set1  0x00000025 , 0x00000000 
- 00032005  0x0000693c bpatch  0x000000d8 , 0x0000403b 
- 00032006  0x0000693d fetch  0x00000001 , 0x000008ff 
- 00032007  0x0000693e beq  0x00000020 , 0x00007d16 
- 00032008  0x0000693f beq  0x00000021 , 0x00007d22 
- 00032009  0x00006940 beq  0x00000000 , 0x00007d10 
- 00032010  0x00006941 fetch  0x00000001 , 0x00000900 
- 00032011  0x00006942 beq  0x00000005 , 0x00007d9b 
- 00032012  0x00006943 beq  0x00000006 , 0x00007d3d 
- 00032013  0x00006944 beq  0x00000009 , 0x00007d98 
- 00032014  0x00006945 beq  0x0000000b , 0x00007da2 
- 00032015  0x00006946 branch  0x00007d32 
- 00032016  0x00006949 fetch  0x00000001 , 0x00000900 
- 00032017  0x0000694a beq  0x00000001 , 0x00007daf 
- 00032018  0x0000694b beq  0x00000003 , 0x00007dab 
- 00032019  0x0000694c beq  0x00000009 , 0x00007d34 
- 00032020  0x0000694d beq  0x00000005 , 0x00007d9b 
- 00032021  0x0000694e branch  0x00007d32 
- 00032022  0x00006950 call  0x00007d34 
- 00032023  0x00006951 rtn 
- 00032024  0x00006954 fetch  0x00000001 , 0x000008af 
- 00032025  0x00006955 bbit1  0x00000004 , 0x00007d04 
- 00032026  0x00006956 rtn 
- 00032027  0x00006958 fetch  0x00000001 , 0x000008f6 
- 00032028  0x00006959 increase  0x00000001 , 0x0000003f 
- 00032029  0x0000695a store  0x00000001 , 0x000008f6 
- 00032030  0x0000695b compare  0x00000002 , 0x0000003f , 0x000000ff 
- 00032031  0x0000695c nbranch  0x00007d34 , 0x00000001 
- 00032032  0x0000695d jam  0x00000001 , 0x000008f7 
- 00032033  0x0000695e branch  0x00007d34 
- 00032034  0x00006960 fetch  0x00000001 , 0x00000900 
- 00032035  0x00006961 beq  0x0000000a , 0x00007d27 
- 00032036  0x00006962 beq  0x00000009 , 0x00007d2e 
- 00032037  0x00006963 beq  0x0000000b , 0x00007d1b 
- 00032038  0x00006964 branch  0x00007d32 
- 00032039  0x00006966 fetch  0x00000001 , 0x000008f8 
- 00032040  0x00006967 beq  0x00000005 , 0x00007d2c 
- 00032041  0x00006968 bne  0x00000004 , 0x00007d34 
- 00032042  0x00006969 jam  0x00000005 , 0x000008f8 
- 00032043  0x0000696a branch  0x00007d34 
- 00032044  0x0000696c jam  0x00000002 , 0x000008f8 
- 00032045  0x0000696d branch  0x00007d34 
- 00032046  0x00006970 jam  0x00000001 , 0x000008f7 
- 00032047  0x00006971 arg  0x000008f7 , 0x00000011 
- 00032048  0x00006972 arg  0x00000001 , 0x00000012 
- 00032049  0x00006973 branch  0x00007d65 
- 00032050  0x00006975 hjam  0x00000001 , 0x00008c11 
- 00032051  0x00006976 rtn 
- 00032052  0x00006978 hjam  0x00000040 , 0x00008c12 
- 00032053  0x00006979 rtn 
- 00032054  0x0000697c hfetch  0x00000001 , 0x00008c18 
- 00032055  0x0000697d istore  0x00000001 , 0x00000005 
- 00032056  0x0000697e loop  0x00007d36 
- 00032057  0x0000697f rtn 
- 00032058  0x00006982 hjam  0x00000001 , 0x00008c27 
- 00032059  0x00006983 call  0x00007d7c 
- 00032060  0x00006984 rtn 
- 00032061  0x00006987 set1  0x00000025 , 0x00000000 
- 00032062  0x00006988 bpatch  0x000000d9 , 0x0000403b 
- 00032063  0x00006989 set0  0x00000023 , 0x00000000 
- 00032064  0x0000698a fetch  0x00000001 , 0x00000902 
- 00032065  0x0000698b beq  0x00000001 , 0x00007d47 
- 00032066  0x0000698c beq  0x00000002 , 0x00007d49 
- 00032067  0x0000698d beq  0x00000003 , 0x00007d4b 
- 00032068  0x0000698e beq  0x00000021 , 0x00007d57 
- 00032069  0x0000698f beq  0x00000022 , 0x00007d5b 
- 00032070  0x00006990 rtn 
- 00032071  0x00006993 arg  0x00000912 , 0x00000011 
- 00032072  0x00006994 branch  0x00007d62 
- 00032073  0x00006996 arg  0x00000ab6 , 0x00000011 
- 00032074  0x00006997 branch  0x00007d62 
- 00032075  0x00006999 fetch  0x00000001 , 0x00000901 
- 00032076  0x0000699a and_into  0x00000003 , 0x0000003f 
- 00032077  0x0000699b arg  0x00000b1a , 0x00000011 
- 00032078  0x0000699c beq  0x00000000 , 0x00007d62 
- 00032079  0x0000699d set1  0x00000023 , 0x00000000 
- 00032080  0x0000699e arg  0x00000b1f , 0x00000011 
- 00032081  0x0000699f beq  0x00000001 , 0x00007d62 
- 00032082  0x000069a0 arg  0x00000b3d , 0x00000011 
- 00032083  0x000069a1 beq  0x00000002 , 0x00007d62 
- 00032084  0x000069a2 arg  0x00000b5b , 0x00000011 
- 00032085  0x000069a3 beq  0x00000003 , 0x00007d62 
- 00032086  0x000069a4 branch  0x00003bf1 
- 00032087  0x000069a6 arg  0x00000ac8 , 0x00000011 
- 00032088  0x000069a7 fetch  0x00000001 , 0x00000ac8 
- 00032089  0x000069a8 copy  0x0000003f , 0x00000012 
- 00032090  0x000069a9 branch  0x00007d65 
- 00032091  0x000069ab fetch  0x00000002 , 0x00000903 
- 00032092  0x000069ac beq  0x00000001 , 0x00007d5f 
- 00032093  0x000069ad arg  0x00000926 , 0x00000011 
- 00032094  0x000069ae branch  0x00007d62 
- 00032095  0x000069b0 jam  0x00000001 , 0x000008f8 
- 00032096  0x000069b1 arg  0x000009ee , 0x00000011 
- 00032097  0x000069b2 branch  0x00007d62 
- 00032098  0x000069b5 ifetch  0x00000001 , 0x00000011 
- 00032099  0x000069b6 iforce  0x00000012 
- 00032100  0x000069b7 increase  0x00000001 , 0x00000011 
- 00032101  0x000069bb set1  0x00000025 , 0x00000000 
- 00032102  0x000069bc bpatch  0x000000da , 0x0000403b 
- 00032103  0x000069bd bmark0  0x00000023 , 0x00007d71 
- 00032104  0x000069be add  0x00000012 , 0x00000001 , 0x0000003f 
- 00032105  0x000069bf lshift  0x0000003f , 0x0000003f 
- 00032106  0x000069c0 hstore  0x00000001 , 0x00008c18 
- 00032107  0x000069c1 hjam  0x00000003 , 0x00008c18 
- 00032108  0x000069c2 fetch  0x00000001 , 0x00000905 
- 00032109  0x000069c3 increase  0xfffffffe , 0x0000003f 
- 00032110  0x000069c4 rshift  0x0000003f , 0x0000003f 
- 00032111  0x000069c5 store  0x00000001 , 0x00000905 
- 00032112  0x000069c6 beq  0x00000000 , 0x00007d7a 
- 00032113  0x000069c8 fetch  0x00000001 , 0x00000905 
- 00032114  0x000069c9 isub  0x00000012 , 0x0000003e 
- 00032115  0x000069ca branch  0x00007d75 , 0x00000002 
- 00032116  0x000069cb copy  0x0000003f , 0x00000012 
- 00032117  0x000069cd copy  0x00000011 , 0x0000003f 
- 00032118  0x000069ce store  0x00000002 , 0x0000090f 
- 00032119  0x000069cf copy  0x00000012 , 0x0000003f 
- 00032120  0x000069d0 store  0x00000001 , 0x00000911 
- 00032121  0x000069d1 branch  0x00007d7c 
- 00032122  0x000069d4 arg  0x00000000 , 0x00000007 
- 00032123  0x000069d5 branch  0x00007dd5 
- 00032124  0x000069da set1  0x00000025 , 0x00000000 
- 00032125  0x000069db bpatch  0x000000db , 0x0000403b 
- 00032126  0x000069dc fetch  0x00000001 , 0x00000911 
- 00032127  0x000069dd rtn  0x00000034 
- 00032128  0x000069de copy  0x0000003f , 0x00000039 
- 00032129  0x000069df sub  0x0000003f , 0x00000040 , 0x0000003e 
- 00032130  0x000069e0 branch  0x00007d84 , 0x00000002 
- 00032131  0x000069e1 arg  0x00000040 , 0x00000039 
- 00032132  0x000069e3 fetch  0x00000001 , 0x00000911 
- 00032133  0x000069e4 isub  0x00000039 , 0x0000003f 
- 00032134  0x000069e5 store  0x00000001 , 0x00000911 
- 00032135  0x000069e6 fetch  0x00000002 , 0x0000090f 
- 00032136  0x000069e7 copy  0x0000003f , 0x00000006 
- 00032137  0x000069e9 ifetch  0x00000001 , 0x00000006 
- 00032138  0x000069ea hstore  0x00000001 , 0x00008c18 
- 00032139  0x000069eb bmark0  0x00000023 , 0x00007d8d 
- 00032140  0x000069ec hjam  0x00000000 , 0x00008c18 
- 00032141  0x000069ee loop  0x00007d89 
- 00032142  0x000069ef copy  0x00000006 , 0x0000003f 
- 00032143  0x000069f0 store  0x00000002 , 0x0000090f 
- 00032144  0x000069f1 arg  0x00000000 , 0x00000007 
- 00032145  0x000069f2 call  0x00007dd5 
- 00032146  0x000069f3 fetch  0x00000001 , 0x00000911 
- 00032147  0x000069f4 nrtn  0x00000034 
- 00032148  0x000069f5 fetch  0x00000001 , 0x000008f8 
- 00032149  0x000069f6 rtnne  0x00000001 
- 00032150  0x000069f7 jam  0x00000002 , 0x000008f8 
- 00032151  0x000069f8 rtn 
- 00032152  0x000069fc fetch  0x00000001 , 0x00000901 
- 00032153  0x000069fd sub  0x0000003f , 0x00000001 , 0x0000003e 
- 00032154  0x000069fe nbranch  0x00007d32 , 0x00000002 
- 00032155  0x00006a00 fetch  0x00000001 , 0x000008ff 
- 00032156  0x00006a01 bne  0x00000000 , 0x00007d32 
- 00032157  0x00006a02 fetch  0x00000002 , 0x00000903 
- 00032158  0x00006a03 bne  0x00000000 , 0x00007d32 
- 00032159  0x00006a04 fetch  0x00000001 , 0x00000905 
- 00032160  0x00006a05 bne  0x00000000 , 0x00007d32 
- 00032161  0x00006a06 branch  0x00007d34 
- 00032162  0x00006a09 fetch  0x00000001 , 0x000008ff 
- 00032163  0x00006a0a bne  0x00000001 , 0x00007d32 
- 00032164  0x00006a0b fetch  0x00000001 , 0x00000901 
- 00032165  0x00006a0c bne  0x00000000 , 0x00007d32 
- 00032166  0x00006a0d fetch  0x00000001 , 0x00000902 
- 00032167  0x00006a0e bne  0x00000000 , 0x00007d32 
- 00032168  0x00006a0f fetch  0x00000001 , 0x00000905 
- 00032169  0x00006a10 bne  0x00000000 , 0x00007d32 
- 00032170  0x00006a11 branch  0x00007d34 
- 00032171  0x00006a14 fetch  0x00000001 , 0x00000901 
- 00032172  0x00006a15 bne  0x00000001 , 0x00007d32 
- 00032173  0x00006a16 jam  0x00000003 , 0x000008f8 
- 00032174  0x00006a17 branch  0x00007d34 
- 00032175  0x00006a1a fetch  0x00000001 , 0x00000901 
- 00032176  0x00006a1b bne  0x00000001 , 0x00007d32 
- 00032177  0x00006a1c branch  0x00007d34 
- 00032178  0x00006a1f set1  0x00000025 , 0x00000000 
- 00032179  0x00006a20 bpatch  0x000000dc , 0x0000403b 
- 00032180  0x00006a21 hjam  0x00000000 , 0x00008c00 
- 00032181  0x00006a22 nop  0x00002710 
- 00032182  0x00006a23 hjam  0x000000c0 , 0x00008c10 
- 00032183  0x00006a24 hfetch  0x00000002 , 0x00008050 
- 00032184  0x00006a25 set0  0x0000000a , 0x0000003f 
- 00032185  0x00006a26 hstore  0x00000002 , 0x00008050 
- 00032186  0x00006a27 hjam  0x0000003c , 0x00008c00 
- 00032187  0x00006a28 hjam  0x000000ff , 0x00008c26 
- 00032188  0x00006a29 hjam  0x000000ff , 0x00008c27 
- 00032189  0x00006a2a jam  0x00000000 , 0x00000ff0 
- 00032190  0x00006a2b jam  0x00000000 , 0x000008f8 
- 00032191  0x00006a2c setarg  0x00000000 
- 00032192  0x00006a2d store  0x00000002 , 0x000008f9 
- 00032193  0x00006a2e rtn 
- 00032194  0x00006a32 set1  0x00000025 , 0x00000000 
- 00032195  0x00006a33 bpatch  0x000000dd , 0x0000403b 
- 00032196  0x00006a34 fetch  0x00000001 , 0x00000ff0 
- 00032197  0x00006a35 rtn  0x00000034 
- 00032198  0x00006a36 fetch  0x00000001 , 0x000008f8 
- 00032199  0x00006a37 beq  0x00000003 , 0x00007dec 
- 00032200  0x00006a38 rtnne  0x00000002 
- 00032201  0x00006a39 fetch  0x00000001 , 0x00000ff0 
- 00032202  0x00006a3a jam  0x00000000 , 0x00000ff0 
- 00032203  0x00006a3b arg  0x00000006 , 0x00000039 
- 00032204  0x00006a3c arg  0x00000ff1 , 0x00000006 
- 00032205  0x00006a3d beq  0x00000002 , 0x00007dd0 
- 00032206  0x00006a3e beq  0x00000001 , 0x00007de9 
- 00032207  0x00006a3f branch  0x00003bf1 
- 00032208  0x00006a42 arg  0x00008c19 , 0x00000011 
- 00032209  0x00006a43 arg  0x00000001 , 0x00000007 
- 00032210  0x00006a45 ifetch  0x00000001 , 0x00000006 
- 00032211  0x00006a46 istore  0x00000001 , 0x00000011 
- 00032212  0x00006a47 loop  0x00007dd2 
- 00032213  0x00006a49 set1  0x00000025 , 0x00000000 
- 00032214  0x00006a4a bpatch  0x000000de , 0x0000403b 
- 00032215  0x00006a4b disable  0x00000010 
- 00032216  0x00006a4c fetch  0x00000002 , 0x000008fd 
- 00032217  0x00006a4d iforce  0x0000001b 
- 00032218  0x00006a4e hjam  0x00000040 , 0x00008c26 
- 00032219  0x00006a50 hfetch  0x00000001 , 0x00008c26 
- 00032220  0x00006a51 branch  0x00007db2 , 0x00000003 
- 00032221  0x00006a52 bbit0  0x00000006 , 0x00007ddb 
- 00032222  0x00006a53 fetch  0x00000002 , 0x000008fd 
- 00032223  0x00006a54 iforce  0x0000001b 
- 00032224  0x00006a55 arg  0x00000000 , 0x00000002 
- 00032225  0x00006a56 qset1  0x00000002 
- 00032226  0x00006a57 hstoret  0x00000001 , 0x00008c27 
- 00032227  0x00006a59 branch  0x00007db2 , 0x00000003 
- 00032228  0x00006a5a hstoret  0x00000001 , 0x00008c10 
- 00032229  0x00006a5b hfetch  0x00000001 , 0x00008c27 
- 00032230  0x00006a5c qisolate0  0x0000003f 
- 00032231  0x00006a5d branch  0x00007de3 , 0x00000001 
- 00032232  0x00006a5e rtn 
- 00032233  0x00006a62 arg  0x00000002 , 0x00000007 
- 00032234  0x00006a63 arg  0x00008c1a , 0x00000011 
- 00032235  0x00006a64 branch  0x00007dd2 
- 00032236  0x00006a68 set1  0x00000025 , 0x00000000 
- 00032237  0x00006a69 bpatch  0x000000df , 0x0000403b 
- 00032238  0x00006a6a hjam  0x000000fc , 0x00008c00 
- 00032239  0x00006a6b nop  0x00002710 
- 00032240  0x00006a6c hjam  0x0000003c , 0x00008c00 
- 00032241  0x00006a6d jam  0x00000004 , 0x000008f8 
- 00032242  0x00006a6e rtn 
- 00032243  0x00006a71 fetch  0x00000001 , 0x00000ff0 
- 00032244  0x00006a72 nrtn  0x00000034 
- 00032245  0x00006a73 fetch  0x00000002 , 0x000008f2 
- 00032246  0x00006a74 rtn  0x00000034 
- 00032247  0x00006a75 increase  0xffffffff , 0x0000003f 
- 00032248  0x00006a76 store  0x00000002 , 0x000008f2 
- 00032249  0x00006a77 jam  0x00000001 , 0x00000ff0 
- 00032250  0x00006a78 rtn 
- 00032251  0x00006a7c sub  0x00000039 , 0x00000000 , 0x0000003e 
- 00032252  0x00006a7d rtn  0x00000005 
- 00032253  0x00006a7f rshift  0x0000003f , 0x0000003f 
- 00032254  0x00006a80 loop  0x00007dfd 
- 00032255  0x00006a81 rtn 
- 00032256  0x00006a84 deposit  0x00000005 
- 00032257  0x00006a85 store  0x00000002 , 0x000002b9 
- 00032258  0x00006a86 storet  0x00000008 , 0x000002a0 
- 00032259  0x00006a87 deposit  0x0000000b 
- 00032260  0x00006a88 store  0x00000004 , 0x000002a8 
- 00032261  0x00006a89 deposit  0x00000011 
- 00032262  0x00006a8a store  0x00000004 , 0x000002ac 
- 00032263  0x00006a8b deposit  0x00000012 
- 00032264  0x00006a8c store  0x00000004 , 0x000002b0 
- 00032265  0x00006a8d deposit  0x00000013 
- 00032266  0x00006a8e store  0x00000003 , 0x000002b4 
- 00032267  0x00006a8f deposit  0x00000006 
- 00032268  0x00006a90 store  0x00000002 , 0x000002b7 
- 00032269  0x00006a91 rtn 
- 00032270  0x00006a93 fetcht  0x00000008 , 0x000002a0 
- 00032271  0x00006a94 fetch  0x00000004 , 0x000002a8 
- 00032272  0x00006a95 iforce  0x0000000b 
- 00032273  0x00006a96 fetch  0x00000004 , 0x000002ac 
- 00032274  0x00006a97 iforce  0x00000011 
- 00032275  0x00006a98 fetch  0x00000004 , 0x000002b0 
- 00032276  0x00006a99 iforce  0x00000012 
- 00032277  0x00006a9a fetch  0x00000003 , 0x000002b4 
- 00032278  0x00006a9b iforce  0x00000013 
- 00032279  0x00006a9c fetch  0x00000002 , 0x000002b9 
- 00032280  0x00006a9d iforce  0x00000005 
- 00032281  0x00006a9e fetch  0x00000002 , 0x000002b7 
- 00032282  0x00006a9f iforce  0x00000006 
- 00032283  0x00006aa0 rtn 
- 00032284  0x00006aa7 copy  0x00000005 , 0x0000003f 
- 00032285  0x00006aa8 store  0x00000002 , 0x00000b7b 
- 00032286  0x00006aa9 copy  0x00000006 , 0x0000003f 
- 00032287  0x00006aaa store  0x00000002 , 0x00000b79 
- 00032288  0x00006aab rtn 
- 00032289  0x00006aad fetch  0x00000002 , 0x00000b7b 
- 00032290  0x00006aae copy  0x0000003f , 0x00000005 
- 00032291  0x00006aaf fetch  0x00000002 , 0x00000b79 
- 00032292  0x00006ab0 copy  0x0000003f , 0x00000006 
- 00032293  0x00006ab1 rtn 
- 00032294  0x00006ab6 copy  0x00000022 , 0x0000003f 
- 00032295  0x00006ab7 increase  0x00000010 , 0x0000003f 
- 00032296  0x00006ab8 increase  0x00000010 , 0x0000003f 
- 00032297  0x00006aba copy  0x00000022 , 0x00000002 
- 00032298  0x00006abb isub  0x00000002 , 0x0000003e 
- 00032299  0x00006abc branch  0x00007e29 , 0x00000002 
- 00032300  0x00006abd rtn 
- 00032301  0x00006ac0 ifetch  0x00000008 , 0x00000006 
- 00032302  0x00006ac1 istore  0x00000008 , 0x00000005 
- 00032303  0x00006ac2 ifetch  0x00000008 , 0x00000006 
- 00032304  0x00006ac3 istore  0x00000008 , 0x00000005 
- 00032305  0x00006ac5 ifetch  0x00000008 , 0x00000006 
- 00032306  0x00006ac6 istore  0x00000008 , 0x00000005 
- 00032307  0x00006ac8 ifetch  0x00000008 , 0x00000006 
- 00032308  0x00006ac9 istore  0x00000008 , 0x00000005 
- 00032309  0x00006acb ifetch  0x00000008 , 0x00000006 
- 00032310  0x00006acc istore  0x00000008 , 0x00000005 
- 00032311  0x00006acd ifetch  0x00000008 , 0x00000006 
- 00032312  0x00006ace istore  0x00000008 , 0x00000005 
- 00032313  0x00006acf rtn 
- 00032314  0x00006ad2 force  0x00000003 , 0x00000039 
- 00032315  0x00006ad4 force  0x00000000 , 0x0000003f 
- 00032316  0x00006ad6 istore  0x00000008 , 0x00000005 
- 00032317  0x00006ad7 loop  0x00007e3c 
- 00032318  0x00006ad8 rtn 
- 00032319  0x00006adc deposit  0x00000039 
- 00032320  0x00006add rtn  0x00000034 
- 00032321  0x00006ade setarg  0x00000000 
- 00032322  0x00006ae0 istore  0x00000001 , 0x00000005 
- 00032323  0x00006ae1 loop  0x00007e42 
- 00032324  0x00006ae2 rtn 
- 00032325  0x00006ae7 deposit  0x00000039 
- 00032326  0x00006ae8 rtn  0x00000034 
- 00032327  0x00006aea ifetch  0x00000001 , 0x00000006 
- 00032328  0x00006aeb istore  0x00000001 , 0x00000005 
- 00032329  0x00006aec loop  0x00007e47 
- 00032330  0x00006aed rtn 
- 00032331  0x00006af0 setarg  0x00000000 
- 00032332  0x00006af2 arg  0x0000423e , 0x00000005 
- 00032333  0x00006af3 iforce  0x00000002 
- 00032334  0x00006af4 lshift  0x00000007 , 0x0000003f 
- 00032335  0x00006af5 iadd  0x00000005 , 0x00000005 
- 00032336  0x00006af6 istoret  0x00000002 , 0x00000005 
- 00032337  0x00006af7 rtn 
- 00032338  0x00006afa arg  0x00000000 , 0x00000007 
- 00032339  0x00006afc set1  0x00000025 , 0x00000000 
- 00032340  0x00006afd bpatch  0x000000bc , 0x00004037 
- 00032341  0x00006afe fetcht  0x00000004 , 0x00004134 
- 00032342  0x00006aff rshift  0x00000022 , 0x0000003f 
- 00032343  0x00006b00 store  0x00000004 , 0x00004134 
- 00032344  0x00006b01 isub  0x00000002 , 0x0000000b 
- 00032345  0x00006b02 copy  0x0000000b , 0x00000002 
- 00032346  0x00006b03 arg  0x0000423e , 0x00000006 
- 00032347  0x00006b04 copy  0x00000006 , 0x00000005 
- 00032348  0x00006b05 arg  0x00000010 , 0x00000039 
- 00032349  0x00006b07 ifetch  0x00000002 , 0x00000006 
- 00032350  0x00006b08 isub  0x00000002 , 0x0000003f 
- 00032351  0x00006b09 branch  0x00007e61 , 0x00000002 
- 00032352  0x00006b0a force  0x00000000 , 0x0000003f 
- 00032353  0x00006b0c istore  0x00000002 , 0x00000005 
- 00032354  0x00006b0d loop  0x00007e5d 
- 00032355  0x00006b0e arg  0x0000423e , 0x00000006 
- 00032356  0x00006b0f lshift  0x00000007 , 0x0000003f 
- 00032357  0x00006b10 iadd  0x00000006 , 0x00000006 
- 00032358  0x00006b11 ifetch  0x00000002 , 0x00000006 
- 00032359  0x00006b12 rtn 
- 00032360  0x00006b16 increase  0x00000001 , 0x00000007 
- 00032361  0x00006b18 increase  0xffffffff , 0x00000007 
- 00032362  0x00006b19 rtn  0x00000005 
- 00032363  0x00006b1a lshift8  0x0000003f , 0x0000003f 
- 00032364  0x00006b1b branch  0x00007e69 
- 00032365  0x00006b20 iadd  0x00000002 , 0x00000002 
- 00032366  0x00006b21 copy  0x00000002 , 0x00000039 
- 00032367  0x00006b22 setarg  0x00000ea6 
- 00032368  0x00006b23 isub  0x00000039 , 0x0000003f 
- 00032369  0x00006b24 rtn  0x00000002 
- 00032370  0x00006b25 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00032371  0x00006b26 rshift16  0x00000002 , 0x00000002 
- 00032372  0x00006b27 increase  0x00000001 , 0x00000002 
- 00032373  0x00006b28 lshift16  0x00000002 , 0x00000002 
- 00032374  0x00006b29 ior  0x00000002 , 0x00000002 
- 00032375  0x00006b2a rtn 
- 00032376  0x00006b2d call  0x00007e7a 
- 00032377  0x00006b2e branch  0x00007e84 
- 00032378  0x00006b32 disable  0x00000028 
- 00032379  0x00006b33 isub  0x00000002 , 0x0000003f 
- 00032380  0x00006b34 branch  0x00007e7f , 0x00000002 
- 00032381  0x00006b35 enable  0x00000028 
- 00032382  0x00006b36 sub  0x0000003f , 0x00000000 , 0x0000003f 
- 00032383  0x00006b38 rtnbit0  0x0000000f 
- 00032384  0x00006b39 arg  0xffff0ea6 , 0x00000002 
- 00032385  0x00006b3a iadd  0x00000002 , 0x0000003f 
- 00032386  0x00006b3b set0  0x00000040 , 0x0000003f 
- 00032387  0x00006b3c rtn 
- 00032388  0x00006b3f iforce  0x00000006 
- 00032389  0x00006b40 rshift16  0x0000003f , 0x0000003f 
- 00032390  0x00006b41 arg  0x00000ea6 , 0x00000002 
- 00032391  0x00006b42 imul32  0x00000002 , 0x0000003f 
- 00032392  0x00006b43 iadd  0x00000006 , 0x0000003f 
- 00032393  0x00006b44 rtn 
- 00032394  0x00006b48 lshift8  0x0000003f , 0x0000003f 
- 00032395  0x00006b49 lshift4  0x0000003f , 0x0000003f 
- 00032396  0x00006b4a fetcht  0x00000003 , 0x00004210 
- 00032397  0x00006b4b idiv  0x00000002 
- 00032398  0x00006b4c call  0x00007efd 
- 00032399  0x00006b4d quotient  0x00000002 
- 00032400  0x00006b4e rtn 
- 00032401  0x00006b52 arg  0x00000ea6 , 0x00000002 
- 00032402  0x00006b53 idiv  0x00000002 
- 00032403  0x00006b54 call  0x00007efd 
- 00032404  0x00006b55 quotient  0x0000003f 
- 00032405  0x00006b56 lshift16  0x0000003f , 0x0000003f 
- 00032406  0x00006b57 remainder  0x00000002 
- 00032407  0x00006b58 ior  0x00000002 , 0x00000002 
- 00032408  0x00006b59 rtn 
- 00032409  0x00006b5d arg  0x00000003 , 0x00000039 
- 00032410  0x00006b5e branch  0x00007e9e 
- 00032411  0x00006b60 arg  0x00000002 , 0x00000039 
- 00032412  0x00006b61 branch  0x00007e9e 
- 00032413  0x00006b66 arg  0x00000006 , 0x00000039 
- 00032414  0x00006b68 ifetch  0x00000001 , 0x00000011 
- 00032415  0x00006b69 copy  0x0000003f , 0x00000002 
- 00032416  0x00006b6a rshift4  0x0000003f , 0x0000003f 
- 00032417  0x00006b6b call  0x00007eaa 
- 00032418  0x00006b6c istore  0x00000001 , 0x0000000a 
- 00032419  0x00006b6d copy  0x00000002 , 0x0000003f 
- 00032420  0x00006b6e and  0x0000003f , 0x0000000f , 0x0000003f 
- 00032421  0x00006b6f call  0x00007eaa 
- 00032422  0x00006b70 istore  0x00000001 , 0x0000000a 
- 00032423  0x00006b71 increase  0x00000001 , 0x00000011 
- 00032424  0x00006b72 loop  0x00007e9e 
- 00032425  0x00006b73 rtn 
- 00032426  0x00006b75 sub  0x0000003f , 0x00000009 , 0x0000003e 
- 00032427  0x00006b76 branch  0x00007eae , 0x00000002 
- 00032428  0x00006b77 increase  0x00000057 , 0x0000003f 
- 00032429  0x00006b78 rtn 
- 00032430  0x00006b7a add  0x0000003f , 0x00000030 , 0x0000003f 
- 00032431  0x00006b7b rtn 
- 00032432  0x00006b82 arg  0x00000000 , 0x00000002 
- 00032433  0x00006b84 copy  0x00000002 , 0x00000013 
- 00032434  0x00006b85 ifetch  0x00000001 , 0x00000003 
- 00032435  0x00006b86 sub  0x0000003f , 0x0000002c , 0x0000003e 
- 00032436  0x00006b87 rtn  0x00000005 
- 00032437  0x00006b88 call  0x00007ec9 
- 00032438  0x00006b89 copy  0x00000013 , 0x00000002 
- 00032439  0x00006b8a call  0x00007f32 
- 00032440  0x00006b8b arg  0x0000000a , 0x00000012 
- 00032441  0x00006b8c imul32  0x00000012 , 0x0000003f 
- 00032442  0x00006b8d iadd  0x00000002 , 0x0000003f 
- 00032443  0x00006b8e copy  0x0000003f , 0x00000002 
- 00032444  0x00006b8f branch  0x00007eb1 
- 00032445  0x00006b93 arg  0x00000002 , 0x00000039 
- 00032446  0x00006b94 branch  0x00007ec0 
- 00032447  0x00006b96 arg  0x00000006 , 0x00000039 
- 00032448  0x00006b9b ifetch  0x00000001 , 0x00000003 
- 00032449  0x00006b9c call  0x00007ec9 
- 00032450  0x00006b9d lshift4  0x0000003f , 0x00000013 
- 00032451  0x00006b9e ifetch  0x00000001 , 0x00000003 
- 00032452  0x00006b9f call  0x00007ec9 
- 00032453  0x00006ba0 iadd  0x00000013 , 0x0000003f 
- 00032454  0x00006ba1 istore  0x00000001 , 0x00000005 
- 00032455  0x00006ba2 loop  0x00007ec0 
- 00032456  0x00006ba3 rtn 
- 00032457  0x00006ba6 arg  0x0000003a , 0x00000002 
- 00032458  0x00006ba7 isub  0x00000002 , 0x0000003e 
- 00032459  0x00006ba8 nbranch  0x00007ed2 , 0x00000002 
- 00032460  0x00006ba9 arg  0x00000061 , 0x00000002 
- 00032461  0x00006baa isub  0x00000002 , 0x0000003e 
- 00032462  0x00006bab branch  0x00007ed5 , 0x00000002 
- 00032463  0x00006bac arg  0x00000037 , 0x00000002 
- 00032464  0x00006bad isub  0x00000002 , 0x0000003f 
- 00032465  0x00006bae rtn 
- 00032466  0x00006bb0 arg  0x00000030 , 0x00000002 
- 00032467  0x00006bb1 isub  0x00000002 , 0x0000003f 
- 00032468  0x00006bb2 rtn 
- 00032469  0x00006bb4 arg  0x00000057 , 0x00000002 
- 00032470  0x00006bb5 isub  0x00000002 , 0x0000003f 
- 00032471  0x00006bb6 rtn 
- 00032472  0x00006bb9 copy  0x00000002 , 0x00000030 
- 00032473  0x00006bba setarg  0x000001ff 
- 00032474  0x00006bbb force  0x00000000 , 0x00000012 
- 00032475  0x00006bbd rshift3  0x0000003f , 0x00000011 
- 00032476  0x00006bbe rshift  0x00000011 , 0x00000011 
- 00032477  0x00006bbf ixor  0x00000011 , 0x00000011 
- 00032478  0x00006bc0 isolate1  0x00000000 , 0x00000011 
- 00032479  0x00006bc1 setflag  0x00000001 , 0x00000009 , 0x0000003f 
- 00032480  0x00006bc2 rshift  0x00000002 , 0x00000002 
- 00032481  0x00006bc3 isolate1  0x00000000 , 0x0000003f 
- 00032482  0x00006bc4 setflag  0x00000001 , 0x00000007 , 0x00000002 
- 00032483  0x00006bc5 rshift  0x0000003f , 0x0000003f 
- 00032484  0x00006bc6 increase  0x00000001 , 0x00000012 
- 00032485  0x00006bc7 compare  0x00000000 , 0x00000012 , 0x00000007 
- 00032486  0x00006bc8 nbranch  0x00007edb , 0x00000001 
- 00032487  0x00006bc9 istoret  0x00000001 , 0x00000005 
- 00032488  0x00006bca loop  0x00007edb 
- 00032489  0x00006bcb copy  0x00000030 , 0x00000002 
- 00032490  0x00006bcc rtn 
- 00032491  0x00006bcf div  0x0000003f , 0x0000000a 
- 00032492  0x00006bd0 call  0x00007efd 
- 00032493  0x00006bd1 quotient  0x0000003f 
- 00032494  0x00006bd2 lshift2  0x0000003f , 0x00000011 
- 00032495  0x00006bd3 lshift2  0x00000011 , 0x00000011 
- 00032496  0x00006bd4 remainder  0x0000003f 
- 00032497  0x00006bd5 ior  0x00000011 , 0x0000003f 
- 00032498  0x00006bd6 rtn 
- 00032499  0x00006bd9 isolate1  0x00000000 , 0x00000011 
- 00032500  0x00006bda branch  0x00007ef7 , 0x00000001 
- 00032501  0x00006bdb iforce  0x00000012 
- 00032502  0x00006bdc rtn 
- 00032503  0x00006bde lshift2  0x0000003f , 0x0000003f 
- 00032504  0x00006bdf lshift2  0x0000003f , 0x0000003f 
- 00032505  0x00006be0 ior  0x00000012 , 0x0000003f 
- 00032506  0x00006be1 istore  0x00000001 , 0x00000005 
- 00032507  0x00006be2 increase  0xfffffffe , 0x00000005 
- 00032508  0x00006be3 rtn 
- 00032509  0x00006be6 rtn  0x00000035 
- 00032510  0x00006be7 branch  0x00007efd 
- 00032511  0x00006beb store  0x00000008 , 0x00000161 
- 00032512  0x00006bec force  0x00000020 , 0x0000003f 
- 00032513  0x00006bed force  0x00000008 , 0x00000039 
- 00032514  0x00006bee arg  0x00000028 , 0x00000005 
- 00032515  0x00006bf0 istore  0x00000001 , 0x00000005 
- 00032516  0x00006bf1 loop  0x00007f03 
- 00032517  0x00006bf2 arg  0x00000028 , 0x00000005 
- 00032518  0x00006bf3 increase  0x00000007 , 0x00000005 
- 00032519  0x00006bf4 fetch  0x00000008 , 0x00000161 
- 00032520  0x00006bf6 div  0x0000003f , 0x0000000a 
- 00032521  0x00006bf7 call  0x00007efd 
- 00032522  0x00006bf8 remainder  0x0000003f 
- 00032523  0x00006bf9 or_into  0x00000030 , 0x0000003f 
- 00032524  0x00006bfa istore  0x00000001 , 0x00000005 
- 00032525  0x00006bfb increase  0xfffffffe , 0x00000005 
- 00032526  0x00006bfc quotient  0x0000003f 
- 00032527  0x00006bfd rtn  0x00000034 
- 00032528  0x00006bfe branch  0x00007f08 
- 00032529  0x00006c04 store  0x00000008 , 0x00000161 
- 00032530  0x00006c05 force  0x00000000 , 0x0000003f 
- 00032531  0x00006c06 store  0x00000008 , 0x00000028 
- 00032532  0x00006c07 arg  0x00000028 , 0x00000005 
- 00032533  0x00006c08 increase  0x00000007 , 0x00000005 
- 00032534  0x00006c09 fetch  0x00000008 , 0x00000161 
- 00032535  0x00006c0a force  0x00000000 , 0x00000011 
- 00032536  0x00006c0c div  0x0000003f , 0x0000000a 
- 00032537  0x00006c0d call  0x00007efd 
- 00032538  0x00006c0e remainder  0x0000003f 
- 00032539  0x00006c0f call  0x00007ef3 
- 00032540  0x00006c10 increase  0x00000001 , 0x00000011 
- 00032541  0x00006c11 quotient  0x0000003f 
- 00032542  0x00006c12 sub  0x0000003f , 0x00000009 , 0x0000003e 
- 00032543  0x00006c13 nbranch  0x00007f18 , 0x00000002 
- 00032544  0x00006c14 call  0x00007ef3 
- 00032545  0x00006c15 isolate1  0x00000000 , 0x00000011 
- 00032546  0x00006c16 rtn  0x00000001 
- 00032547  0x00006c17 istore  0x00000001 , 0x00000005 
- 00032548  0x00006c18 rtn 
- 00032549  0x00006c21 ifetch  0x00000001 , 0x00000011 
- 00032550  0x00006c22 ifetcht  0x00000001 , 0x00000012 
- 00032551  0x00006c23 isub  0x00000002 , 0x0000003e 
- 00032552  0x00006c24 nrtn  0x00000005 
- 00032553  0x00006c25 increase  0x00000001 , 0x00000011 
- 00032554  0x00006c26 increase  0x00000001 , 0x00000012 
- 00032555  0x00006c27 loop  0x00007f25 
- 00032556  0x00006c28 force  0x00000000 , 0x0000003e 
- 00032557  0x00006c29 rtn 
- 00032558  0x00006c2d isub  0x00000002 , 0x0000003e 
- 00032559  0x00006c2e nrtn  0x00000002 
- 00032560  0x00006c2f deposit  0x00000002 
- 00032561  0x00006c30 rtn 
- 00032562  0x00006c33 iadd  0x00000002 , 0x0000003f 
- 00032563  0x00006c34 isub  0x00000002 , 0x00000002 
- 00032564  0x00006c35 isub  0x00000002 , 0x0000003f 
- 00032565  0x00006c36 rtn 
- 00032566  0x00006c39 arg  0x00000200 , 0x00000039 
- 00032567  0x00006c3a arg  0x00004000 , 0x00000005 
- 00032568  0x00006c3b branch  0x00007e3b 
- 00032569  0x00006c3e fetch  0x00000005 , 0x0000009c 
- 00032570  0x00006c3f store  0x00000005 , 0x00000161 
- 00032571  0x00006c40 fetch  0x00000002 , 0x00004210 
- 00032572  0x00006c41 istore  0x00000002 , 0x00000005 
- 00032573  0x00006c42 setarg  0x00000000 
- 00032574  0x00006c43 setflag  0x0000002d , 0x00000007 , 0x0000003f 
- 00032575  0x00006c44 setflag  0x0000002b , 0x00000006 , 0x0000003f 
- 00032576  0x00006c45 setflag  0x00000018 , 0x00000005 , 0x0000003f 
- 00032577  0x00006c46 setflag  0x0000002e , 0x00000004 , 0x0000003f 
- 00032578  0x00006c47 istore  0x00000001 , 0x00000005 
- 00032579  0x00006c48 branch  0x00007f52 
- 00032580  0x00006c4c fetch  0x00000005 , 0x0000009c 
- 00032581  0x00006c4d store  0x00000005 , 0x00000161 
- 00032582  0x00006c4e fetch  0x00000001 , 0x00000016 
- 00032583  0x00006c4f istore  0x00000001 , 0x00000005 
- 00032584  0x00006c50 fetch  0x00000002 , 0x000003da 
- 00032585  0x00006c51 arg  0x00000fff , 0x00000006 
- 00032586  0x00006c52 iand  0x00000006 , 0x0000003f 
- 00032587  0x00006c53 setflag  0x0000002d , 0x0000000f , 0x0000003f 
- 00032588  0x00006c54 setflag  0x0000002b , 0x0000000e , 0x0000003f 
- 00032589  0x00006c55 setflag  0x00000018 , 0x0000000d , 0x0000003f 
- 00032590  0x00006c56 setflag  0x0000002e , 0x0000000c , 0x0000003f 
- 00032591  0x00006c57 istore  0x00000002 , 0x00000005 
- 00032592  0x00006c58 branch  0x00007f52 
- 00032593  0x00006c5a store  0x00000008 , 0x00000161 
- 00032594  0x00006c5c fetch  0x00000001 , 0x0000416e 
- 00032595  0x00006c5d rtneq  0x0000007f 
- 00032596  0x00006c5e and_into  0x0000007f , 0x0000003f 
- 00032597  0x00006c5f lshift3  0x0000003f , 0x0000003f 
- 00032598  0x00006c60 arg  0x00004c00 , 0x00000005 
- 00032599  0x00006c61 iadd  0x00000005 , 0x00000005 
- 00032600  0x00006c62 fetch  0x00000008 , 0x00000161 
- 00032601  0x00006c63 istore  0x00000008 , 0x00000005 
- 00032602  0x00006c64 fetch  0x00000001 , 0x0000416e 
- 00032603  0x00006c65 isolate1  0x00000007 , 0x0000003f 
- 00032604  0x00006c66 increase  0x00000001 , 0x0000003f 
- 00032605  0x00006c67 and_into  0x0000007f , 0x0000003f 
- 00032606  0x00006c68 setflag  0x00000001 , 0x00000007 , 0x0000003f 
- 00032607  0x00006c69 store  0x00000001 , 0x0000416e 
- 00032608  0x00006c6a fetch  0x00000008 , 0x00000161 
- 00032609  0x00006c6b rtn 
- 00032610  0x00006c6e arg  0x00000800 , 0x00000039 
- 00032611  0x00006c6f arg  0x00000000 , 0x00000005 
- 00032612  0x00006c70 setarg  0x01010101 
- 00032613  0x00006c71 branch  0x00007e3c 
- 00032614  0x00006c75 rtn  0x00000034 
- 00032615  0x00006c76 copy  0x0000003f , 0x0000003d 
- 00032616  0x00006c7a hfetch  0x00000002 , 0x0000810e 
- 00032617  0x00006c7b nbranch  0x00007f68 , 0x00000034 
- 00032618  0x00006c7c rtn 
- 00032619  0x00006c7f hfetch  0x00000002 , 0x00008058 
- 00032620  0x00006c80 copy  0x0000003f , 0x00000003 
- 00032621  0x00006c81 rtn 
- 00032622  0x00006c84 hfetch  0x00000002 , 0x0000805e 
- 00032623  0x00006c85 copy  0x0000003f , 0x0000000a 
- 00032624  0x00006c86 rtn 
- 00032625  0x00006c89 copy  0x00000006 , 0x00000011 
- 00032626  0x00006c8a call  0x00007f6e 
- 00032627  0x00006c8b copy  0x00000011 , 0x00000006 
- 00032628  0x00006c8d call  0x00004976 
- 00032629  0x00006c8e call  0x000068fa 
- 00032630  0x00006c8f branch  0x00007f68 
- 00032631  0x00006c92 hjam  0x00000001 , 0x00008203 
- 00032632  0x00006c93 rtn 
- 00032633  0x00006c96 hstore  0x00000002 , 0x00008205 
- 00032634  0x00006c97 hfetch  0x00000001 , 0x00008203 
- 00032635  0x00006c98 set1  0x00000004 , 0x0000003f 
- 00032636  0x00006c99 hstore  0x00000001 , 0x00008203 
- 00032637  0x00006c9a rtn 
- 00032638  0x00006c9c hstore  0x00000002 , 0x00008207 
- 00032639  0x00006c9d hfetch  0x00000001 , 0x00008203 
- 00032640  0x00006c9e set1  0x00000006 , 0x0000003f 
- 00032641  0x00006c9f hstore  0x00000001 , 0x00008203 
- 00032642  0x00006ca0 rtn 
- 00032643  0x00006ca3 hstore  0x00000002 , 0x00008205 
- 00032644  0x00006ca4 hjam  0x00000030 , 0x00008203 
- 00032645  0x00006ca5 rtn 
- 00032646  0x00006ca8 hfetch  0x00000001 , 0x00008043 
- 00032647  0x00006ca9 set1  0x00000004 , 0x0000003f 
- 00032648  0x00006caa hstore  0x00000001 , 0x00008043 
- 00032649  0x00006cab rtn 
- 00032650  0x00006cae hfetch  0x00000001 , 0x00008043 
- 00032651  0x00006caf set0  0x00000004 , 0x0000003f 
- 00032652  0x00006cb0 hstore  0x00000001 , 0x00008043 
- 00032653  0x00006cb1 rtn 
- 00032654  0x00006cb4 hfetch  0x00000002 , 0x0000810e 
- 00032655  0x00006cb5 arg  0x00000200 , 0x00000002 
- 00032656  0x00006cb7 isub  0x00000002 , 0x0000003e 
- 00032657  0x00006cb8 rtn 
- 00032658  0x00006cbf set1  0x00000025 , 0x00000000 
- 00032659  0x00006cc0 bpatch  0x000000bd , 0x00004037 
- 00032660  0x00006cc1 ifetcht  0x00000005 , 0x00000011 
- 00032661  0x00006cc2 and  0x00000002 , 0x000000ff , 0x0000003f 
- 00032662  0x00006cc3 nbranch  0x00007f99 , 0x00000034 
- 00032663  0x00006cc4 rshift8  0x00000002 , 0x0000003f 
- 00032664  0x00006cc5 istore  0x00000005 , 0x00000011 
- 00032665  0x00006cc7 increase  0x00000004 , 0x00000011 
- 00032666  0x00006cc8 ifetch  0x00000001 , 0x00000011 
- 00032667  0x00006cc9 nbranch  0x00003bf1 , 0x00000034 
- 00032668  0x00006cca fetch  0x00000001 , 0x00000b7d 
- 00032669  0x00006ccb istore  0x00000001 , 0x00000011 
- 00032670  0x00006ccc rtn 
- 00032671  0x00006cd2 set1  0x00000025 , 0x00000000 
- 00032672  0x00006cd3 bpatch  0x000000be , 0x00004037 
- 00032673  0x00006cd4 arg  0x00000005 , 0x00000039 
- 00032674  0x00006cd5 ifetch  0x00000005 , 0x00000011 
- 00032675  0x00006cd6 rtn  0x00000034 
- 00032676  0x00006cd8 ifetch  0x00000001 , 0x00000011 
- 00032677  0x00006cd9 nbranch  0x00007fa9 , 0x00000034 
- 00032678  0x00006cda increase  0x00000001 , 0x00000011 
- 00032679  0x00006cdb loop  0x00007fa4 
- 00032680  0x00006cdc branch  0x00003bf1 
- 00032681  0x00006cde arg  0x00000000 , 0x00000002 
- 00032682  0x00006cdf istoret  0x00000001 , 0x00000011 
- 00032683  0x00006ce0 rtn 
- 00032684  0x00006ce6 ifetch  0x00000005 , 0x00000011 
- 00032685  0x00006ce7 rtn 
- 00032686  0x00006ced ifetch  0x00000001 , 0x00000011 
- 00032687  0x00006cee rtn 
- 00032688  0x00006cf2 ifetch  0x00000002 , 0x00000011 
- 00032689  0x00006cf3 rtn 
- 00032690  0x00006cf8 arg  0x00000000 , 0x00000002 
- 00032691  0x00006cfa fetch  0x00000001 , 0x00000006 
- 00032692  0x00006cfb loop  0x00007fb3 , 0x00000034 
- 00032693  0x00006cfc increase  0x00000001 , 0x00000002 
- 00032694  0x00006cfd loop  0x00007fb3 
- 00032695  0x00006cfe copy  0x00000002 , 0x0000003f 
- 00032696  0x00006cff rtn 
- 00032697  0x00006d02 isub  0x00000002 , 0x0000003e 
- 00032698  0x00006d03 nrtn  0x00000002 
- 00032699  0x00006d04 copy  0x00000002 , 0x0000003f 
- 00032700  0x00006d05 rtn 
+ 00000000  0x00000023 bmark1  0x00000025 , 0x0000000f 
+ 00000001  0x00000024 beq  0x00000000 , 0x00000017 
+ 00000002  0x00000025 beq  0x00000003 , 0x0000001b 
+ 00000003  0x00000026 beq  0x00000005 , 0x0000001e 
+ 00000004  0x00000027 beq  0x00000090 , 0x0000014c 
+ 00000005  0x00000028 beq  0x00000092 , 0x00000116 
+ 00000006  0x00000029 beq  0x00000094 , 0x0000011c 
+ 00000007  0x0000002a beq  0x00000095 , 0x00000106 
+ 00000008  0x0000002b beq  0x000000b0 , 0x000000c8 
+ 00000009  0x0000002c beq  0x000000b1 , 0x000000ca 
+ 00000010  0x0000002d beq  0x000000b2 , 0x000000de 
+ 00000011  0x0000002e beq  0x000000b3 , 0x000000f8 
+ 00000012  0x0000002f beq  0x000000b6 , 0x00000101 
+ 00000013  0x00000030 beq  0x000000b9 , 0x000000d2 
+ 00000014  0x00000031 branch  0x00003bf1 
+ 00000015  0x00000034 beq  0x0000003e , 0x000001bf 
+ 00000016  0x00000035 beq  0x0000003f , 0x000001c3 
+ 00000017  0x00000036 beq  0x00000087 , 0x000000a7 
+ 00000018  0x00000037 beq  0x0000008d , 0x000001d1 
+ 00000019  0x00000038 beq  0x0000008f , 0x000001c7 
+ 00000020  0x00000039 beq  0x000000cd , 0x00000156 
+ 00000021  0x0000003a beq  0x000000d0 , 0x000000b2 
+ 00000022  0x0000003c branch  0x00003bf1 
+ 00000023  0x00000040 hfetch  0x00000001 , 0x0000813b 
+ 00000024  0x00000041 store  0x00000001 , 0x00000b81 
+ 00000025  0x00000042 hjam  0x00000008 , 0x00008006 
+ 00000026  0x00000043 branch  0x00003003 
+ 00000027  0x00000046 call  0x00000042 
+ 00000028  0x00000047 call  0x00000023 
+ 00000029  0x00000048 branch  0x00003015 
+ 00000030  0x0000004c call  0x00003392 
+ 00000031  0x0000004d call  0x00003407 
+ 00000032  0x0000004e call  0x00003024 
+ 00000033  0x0000004f call  0x000001e7 
+ 00000034  0x00000050 branch  0x00003022 
+ 00000035  0x00000055 call  0x000000a2 
+ 00000036  0x00000056 rtn  0x00000028 
+ 00000037  0x00000057 byteswap  0x0000003f , 0x0000003f 
+ 00000038  0x00000058 copy  0x0000003f , 0x00000006 
+ 00000039  0x00000059 call  0x00000083 
+ 00000040  0x0000005a store  0x00000001 , 0x00004ba7 
+ 00000041  0x0000005b beq  0x00000001 , 0x00000036 
+ 00000042  0x0000005c beq  0x00000006 , 0x00000040 
+ 00000043  0x0000005d copy  0x0000003f , 0x00000002 
+ 00000044  0x0000005e copy  0x00000006 , 0x00000011 
+ 00000045  0x0000005f fetch  0x00000001 , 0x00004040 
+ 00000046  0x00000060 bbit0  0x00000000 , 0x00000033 
+ 00000047  0x00000061 copy  0x00000011 , 0x00000006 
+ 00000048  0x00000062 rtnmark0  0x00000009 
+ 00000049  0x00000063 copy  0x00000002 , 0x0000003f 
+ 00000050  0x00000064 rtn 
+ 00000051  0x00000067 copy  0x00000011 , 0x00000006 
+ 00000052  0x00000068 arg  0x000000f8 , 0x00000005 
+ 00000053  0x00000069 branch  0x0000007b 
+ 00000054  0x0000006c call  0x00000083 
+ 00000055  0x0000006d call  0x00000083 
+ 00000056  0x0000006e store  0x00000001 , 0x00000b7d 
+ 00000057  0x0000006f call  0x0000003b 
+ 00000058  0x00000070 branch  0x00007c33 
+ 00000059  0x00000072 call  0x00000086 
+ 00000060  0x00000073 copy  0x00000006 , 0x00000002 
+ 00000061  0x00000074 byteswap  0x00000002 , 0x00000002 
+ 00000062  0x00000075 storet  0x00000002 , 0x00004b9a 
+ 00000063  0x00000076 rtn 
+ 00000064  0x00000079 arg  0x00000cd5 , 0x00000005 
+ 00000065  0x0000007a branch  0x0000007b 
+ 00000066  0x0000007f fetcht  0x00000004 , 0x00004c59 
+ 00000067  0x00000080 copy  0x00000022 , 0x0000003f 
+ 00000068  0x00000081 isub  0x00000002 , 0x0000003f 
+ 00000069  0x00000083 arg  0x00000640 , 0x00000002 
+ 00000070  0x00000084 idiv  0x00000002 
+ 00000071  0x00000085 call  0x00007efd 
+ 00000072  0x00000086 quotient  0x0000003f 
+ 00000073  0x00000087 rtn  0x00000034 
+ 00000074  0x00000088 copy  0x00000022 , 0x00000002 
+ 00000075  0x00000089 storet  0x00000004 , 0x00004c59 
+ 00000076  0x0000008a fetcht  0x00000002 , 0x00004ba5 
+ 00000077  0x0000008b byteswap  0x00000002 , 0x00000002 
+ 00000078  0x0000008c iadd  0x00000002 , 0x0000003f 
+ 00000079  0x0000008d byteswap  0x0000003f , 0x0000003f 
+ 00000080  0x0000008e store  0x00000002 , 0x00004ba5 
+ 00000081  0x0000008f byteswap  0x0000003f , 0x0000003f 
+ 00000082  0x00000090 and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00000083  0x00000091 rtnne  0x00000000 
+ 00000084  0x00000092 fetch  0x00000001 , 0x00004c8f 
+ 00000085  0x00000093 bbit1  0x00000000 , 0x0000005f 
+ 00000086  0x00000094 bbit1  0x00000001 , 0x00000061 
+ 00000087  0x00000096 arg  0x00000000 , 0x00000011 
+ 00000088  0x00000097 call  0x00000072 
+ 00000089  0x00000098 hjam  0x0000008f , 0x00008971 
+ 00000090  0x00000099 fetch  0x00000001 , 0x00004c90 
+ 00000091  0x0000009a hstore  0x00000001 , 0x00008973 
+ 00000092  0x0000009b call  0x00000062 
+ 00000093  0x0000009c arg  0x00000001 , 0x00000011 
+ 00000094  0x0000009d branch  0x00000072 
+ 00000095  0x000000a1 hjam  0x000000bf , 0x00008971 
+ 00000096  0x000000a2 branch  0x00000062 
+ 00000097  0x000000a5 hjam  0x000000af , 0x00008971 
+ 00000098  0x000000a7 hfetch  0x00000001 , 0x00008053 
+ 00000099  0x000000a8 set1  0x00000007 , 0x0000003f 
+ 00000100  0x000000a9 hstore  0x00000001 , 0x00008053 
+ 00000101  0x000000aa hfetch  0x00000001 , 0x00008973 
+ 00000102  0x000000ab or_into  0x00000030 , 0x0000003f 
+ 00000103  0x000000ac hstore  0x00000001 , 0x00008973 
+ 00000104  0x000000ad hjam  0x0000007c , 0x00008906 
+ 00000105  0x000000ae hjam  0x000000aa , 0x00008972 
+ 00000106  0x000000af nop  0x00001388 
+ 00000107  0x000000b0 hfetcht  0x00000002 , 0x00008150 
+ 00000108  0x000000b1 hfetch  0x00000001 , 0x00008053 
+ 00000109  0x000000b2 set0  0x00000007 , 0x0000003f 
+ 00000110  0x000000b3 hstore  0x00000001 , 0x00008053 
+ 00000111  0x000000b4 byteswap  0x00000002 , 0x00000002 
+ 00000112  0x000000b5 storet  0x00000002 , 0x00004c95 
+ 00000113  0x000000b6 rtn 
+ 00000114  0x000000ba arg  0x00000021 , 0x00000002 
+ 00000115  0x000000bb fetch  0x00000001 , 0x00004c90 
+ 00000116  0x000000bc isub  0x00000002 , 0x00000002 
+ 00000117  0x000000bd copy  0x00000011 , 0x0000003f 
+ 00000118  0x000000be set1  0x00000007 , 0x00000002 
+ 00000119  0x000000bf nbranch  0x00000079 , 0x00000034 
+ 00000120  0x000000c0 set0  0x00000007 , 0x00000002 
+ 00000121  0x000000c2 arg  0x00008078 , 0x00000005 
+ 00000122  0x000000c3 branch  0x000069f4 
+ 00000123  0x000000c8 call  0x00000083 
+ 00000124  0x000000c9 copy  0x0000003f , 0x00000039 
+ 00000125  0x000000cb call  0x0000007f 
+ 00000126  0x000000cc branch  0x0000003b 
+ 00000127  0x000000cf call  0x00000083 
+ 00000128  0x000000d0 istore  0x00000001 , 0x00000005 
+ 00000129  0x000000d1 loop  0x0000007f 
+ 00000130  0x000000d2 rtn 
+ 00000131  0x000000d5 call  0x00000086 
+ 00000132  0x000000d6 ifetch  0x00000001 , 0x00000006 
+ 00000133  0x000000d7 rtn 
+ 00000134  0x000000da setarg  0x00004b36 
+ 00000135  0x000000db isub  0x00000006 , 0x0000003e 
+ 00000136  0x000000dc nrtn  0x00000005 
+ 00000137  0x000000dd arg  0x00004aa0 , 0x00000006 
+ 00000138  0x000000de rtn 
+ 00000139  0x000000e1 arg  0x00000003 , 0x00000039 
+ 00000140  0x000000e2 arg  0x00004ba2 , 0x00000006 
+ 00000141  0x000000e4 copy  0x00000006 , 0x00000011 
+ 00000142  0x000000e5 fetch  0x00000002 , 0x00004ba0 
+ 00000143  0x000000e6 byteswap  0x0000003f , 0x0000003f 
+ 00000144  0x000000e7 copy  0x0000003f , 0x00000005 
+ 00000145  0x000000e8 copy  0x00000011 , 0x00000006 
+ 00000146  0x000000ea ifetch  0x00000001 , 0x00000006 
+ 00000147  0x000000eb istore  0x00000001 , 0x00000005 
+ 00000148  0x000000ec call  0x0000009a 
+ 00000149  0x000000ed loop  0x00000092 
+ 00000150  0x000000ee copy  0x00000005 , 0x0000003f 
+ 00000151  0x000000ef byteswap  0x0000003f , 0x0000003f 
+ 00000152  0x000000f0 store  0x00000002 , 0x00004ba0 
+ 00000153  0x000000f1 rtn 
+ 00000154  0x000000f3 setarg  0x00004b9a 
+ 00000155  0x000000f4 isub  0x00000005 , 0x0000003e 
+ 00000156  0x000000f5 nrtn  0x00000005 
+ 00000157  0x000000f6 arg  0x00004b36 , 0x00000005 
+ 00000158  0x000000f7 rtn 
+ 00000159  0x000000fb fetch  0x00000002 , 0x00004b9e 
+ 00000160  0x000000fc fetcht  0x00000002 , 0x00004ba0 
+ 00000161  0x000000fd branch  0x000000a4 
+ 00000162  0x000000ff fetch  0x00000002 , 0x00004b9a 
+ 00000163  0x00000100 fetcht  0x00000002 , 0x00004b9c 
+ 00000164  0x00000102 isub  0x00000002 , 0x0000003e 
+ 00000165  0x00000103 branch  0x000069b1 , 0x00000005 
+ 00000166  0x00000104 branch  0x0000320b 
+ 00000167  0x00000108 copy  0x00000022 , 0x0000003f 
+ 00000168  0x00000109 store  0x00000004 , 0x00004d48 
+ 00000169  0x0000010a fetcht  0x00000001 , 0x000047ef 
+ 00000170  0x0000010b fetch  0x00000001 , 0x00004d4b 
+ 00000171  0x0000010c isub  0x00000002 , 0x0000003e 
+ 00000172  0x0000010d ncall  0x000000ae , 0x00000002 
+ 00000173  0x0000010e branch  0x00007c06 
+ 00000174  0x00000111 fetcht  0x00000004 , 0x00004d48 
+ 00000175  0x00000112 storet  0x00000004 , 0x000047ec 
+ 00000176  0x00000113 storet  0x00000004 , 0x00004c59 
+ 00000177  0x00000114 rtn 
+ 00000178  0x00000119 storet  0x00000001 , 0x00000259 
+ 00000179  0x0000011a fetch  0x00000001 , 0x00004c8d 
+ 00000180  0x0000011b increase  0x00000001 , 0x0000003f 
+ 00000181  0x0000011c store  0x00000001 , 0x00004c8d 
+ 00000182  0x0000011e fetch  0x00000001 , 0x00000259 
+ 00000183  0x0000011f rtn  0x00000034 
+ 00000184  0x00000120 increase  0xffffffff , 0x0000003f 
+ 00000185  0x00000121 store  0x00000001 , 0x00000259 
+ 00000186  0x00000123 call  0x000000bc 
+ 00000187  0x00000124 branch  0x000000b6 
+ 00000188  0x00000127 fetch  0x00000001 , 0x00004c15 
+ 00000189  0x00000128 rtn  0x00000034 
+ 00000190  0x00000129 increase  0xffffffff , 0x0000003f 
+ 00000191  0x0000012a store  0x00000001 , 0x00004c15 
+ 00000192  0x0000012b rtn 
+ 00000193  0x0000012f copy  0x00000013 , 0x0000003f 
+ 00000194  0x00000130 and_into  0x000000f0 , 0x0000003f 
+ 00000195  0x00000131 rtneq  0x00000050 
+ 00000196  0x00000132 copy  0x00000013 , 0x0000003f 
+ 00000197  0x00000133 rtn  0x00000034 
+ 00000198  0x00000134 store  0x00000001 , 0x00004ba4 
+ 00000199  0x00000135 branch  0x0000008b 
+ 00000200  0x0000013e call  0x00003b36 
+ 00000201  0x0000013f branch  0x00003cdc 
+ 00000202  0x00000142 jam  0x0000007f , 0x0000416e 
+ 00000203  0x00000143 call  0x00003cf3 
+ 00000204  0x00000144 fetch  0x00000001 , 0x00004c97 
+ 00000205  0x00000145 rtn  0x00000034 
+ 00000206  0x00000146 jam  0x00000000 , 0x00004c97 
+ 00000207  0x00000147 copy  0x00000022 , 0x0000003f 
+ 00000208  0x00000148 store  0x00000004 , 0x00004c59 
+ 00000209  0x00000149 rtn 
+ 00000210  0x0000014e fetch  0x00000001 , 0x00004219 
+ 00000211  0x0000014f nrtn  0x00000034 
+ 00000212  0x00000150 hjam  0x00000006 , 0x00008042 
+ 00000213  0x00000151 setarg  0x00000f0c 
+ 00000214  0x00000152 call  0x00003da7 
+ 00000215  0x00000153 setarg  0x00030d40 
+ 00000216  0x00000154 call  0x00003bf3 
+ 00000217  0x00000155 until  0x0000003e , 0x00000033 
+ 00000218  0x00000156 copy  0x00000031 , 0x00000030 
+ 00000219  0x00000157 call  0x00003b36 
+ 00000220  0x00000158 nop  0x00001388 
+ 00000221  0x00000159 branch  0x00003d9d 
+ 00000222  0x0000015d rtnmark1  0x00000023 
+ 00000223  0x0000015e fetch  0x00000002 , 0x000047f4 
+ 00000224  0x0000015f bbit1  0x00000009 , 0x00003d1e 
+ 00000225  0x00000160 call  0x00003cab 
+ 00000226  0x00000161 fetch  0x00000003 , 0x00004210 
+ 00000227  0x00000162 rtn  0x00000034 
+ 00000228  0x00000165 fetch  0x00000001 , 0x00004131 
+ 00000229  0x00000166 rtn  0x00000034 
+ 00000230  0x00000168 call  0x0000527e 
+ 00000231  0x00000169 nrtn  0x00000034 
+ 00000232  0x0000016a call  0x00003dca 
+ 00000233  0x0000016b nrtn  0x00000034 
+ 00000234  0x0000016c call  0x00003b36 
+ 00000235  0x0000016d fetch  0x00000001 , 0x000047dc 
+ 00000236  0x0000016e branch  0x00003d25 , 0x00000034 
+ 00000237  0x0000016f fetch  0x00000001 , 0x00004793 
+ 00000238  0x00000170 rtn  0x00000034 
+ 00000239  0x00000171 branch  0x00003d25 
+ 00000240  0x00000174 call  0x000000a2 
+ 00000241  0x00000175 nrtn  0x00000028 
+ 00000242  0x00000176 call  0x0000009f 
+ 00000243  0x00000177 nrtn  0x00000028 
+ 00000244  0x00000178 jam  0x00000001 , 0x00000b7f 
+ 00000245  0x00000179 jam  0x00000001 , 0x00000b7e 
+ 00000246  0x0000017a call  0x000000fd 
+ 00000247  0x0000017b branch  0x000000a2 
+ 00000248  0x0000017e call  0x000000f0 
+ 00000249  0x0000017f nrtn  0x00000028 
+ 00000250  0x00000180 fetch  0x00000001 , 0x00000b7f 
+ 00000251  0x00000181 nrtn  0x00000034 
+ 00000252  0x00000182 branch  0x00003d2d 
+ 00000253  0x00000185 fetch  0x00000001 , 0x00000b7e 
+ 00000254  0x00000186 nop  0x0000000a 
+ 00000255  0x00000187 bne  0x00000000 , 0x000000fd 
+ 00000256  0x00000188 rtn 
+ 00000257  0x0000018c call  0x000000f0 
+ 00000258  0x0000018d nrtn  0x00000028 
+ 00000259  0x0000018e fetch  0x00000001 , 0x00000b7f 
+ 00000260  0x0000018f nrtn  0x00000034 
+ 00000261  0x00000190 branch  0x00003d4f 
+ 00000262  0x00000195 call  0x00000108 
+ 00000263  0x00000196 branch  0x00003aaf 
+ 00000264  0x00000198 fetch  0x00000001 , 0x00004219 
+ 00000265  0x00000199 nbranch  0x0000010e , 0x00000034 
+ 00000266  0x0000019a call  0x00003d91 
+ 00000267  0x0000019b nop  0x00007530 
+ 00000268  0x0000019c nop  0x00007530 
+ 00000269  0x0000019d nop  0x00007530 
+ 00000270  0x0000019f call  0x00003b0a 
+ 00000271  0x000001a0 hjam  0x00000004 , 0x00008042 
+ 00000272  0x000001a1 hfetch  0x00000001 , 0x0000896b 
+ 00000273  0x000001a2 and_into  0x000000cf , 0x0000003f 
+ 00000274  0x000001a3 hstore  0x00000001 , 0x0000896b 
+ 00000275  0x000001a4 or_into  0x00000030 , 0x0000003f 
+ 00000276  0x000001a5 hstore  0x00000001 , 0x0000896b 
+ 00000277  0x000001a6 rtn 
+ 00000278  0x000001ab storet  0x00000001 , 0x00000017 
+ 00000279  0x000001ac add  0x00000002 , 0x00000004 , 0x00000011 
+ 00000280  0x000001ad branch  0x00003a86 
+ 00000281  0x000001b0 storet  0x00000001 , 0x00000017 
+ 00000282  0x000001b1 add  0x00000002 , 0x00000000 , 0x00000011 
+ 00000283  0x000001b2 branch  0x00003ab6 
+ 00000284  0x000001b5 call  0x00000119 
+ 00000285  0x000001b6 setarg  0x00000500 
+ 00000286  0x000001b7 call  0x00003bf3 
+ 00000287  0x000001b9 hjam  0x00000001 , 0x00008906 
+ 00000288  0x000001ba hjam  0x0000003c , 0x00008900 
+ 00000289  0x000001bb hjam  0x000000e0 , 0x00008901 
+ 00000290  0x000001bc hjam  0x00000012 , 0x0000096d 
+ 00000291  0x000001bd nop  0x0000000a 
+ 00000292  0x000001be hjam  0x00000001 , 0x00008902 
+ 00000293  0x000001bf hjam  0x0000003d , 0x00008902 
+ 00000294  0x000001c0 nop  0x0000000a 
+ 00000295  0x000001c1 hjam  0x000000b7 , 0x00008903 
+ 00000296  0x000001c2 nop  0x0000000a 
+ 00000297  0x000001c3 hjam  0x0000007d , 0x00008902 
+ 00000298  0x000001c4 fetch  0x00000001 , 0x00004bef 
+ 00000299  0x000001c5 bne  0x000000ff , 0x00000134 
+ 00000300  0x000001c6 fetch  0x00000005 , 0x00004a91 
+ 00000301  0x000001c7 istore  0x00000005 , 0x00000005 
+ 00000302  0x000001c8 ifetch  0x00000005 , 0x00000006 
+ 00000303  0x000001c9 istore  0x00000005 , 0x00000005 
+ 00000304  0x000001ca hjam  0x000000df , 0x00000956 
+ 00000305  0x000001cb call  0x0000013b 
+ 00000306  0x000001cc hjam  0x000000df , 0x00000955 
+ 00000307  0x000001cd rtn 
+ 00000308  0x000001d0 fetch  0x00000005 , 0x00004a87 
+ 00000309  0x000001d1 istore  0x00000005 , 0x00000005 
+ 00000310  0x000001d2 ifetch  0x00000005 , 0x00000006 
+ 00000311  0x000001d3 istore  0x00000005 , 0x00000005 
+ 00000312  0x000001d4 hjam  0x000000c2 , 0x00000956 
+ 00000313  0x000001d5 hjam  0x000000d0 , 0x00000955 
+ 00000314  0x000001d6 rtn 
+ 00000315  0x000001dd nop  0x00000004 
+ 00000316  0x000001de hjam  0x000000d1 , 0x00000955 
+ 00000317  0x000001df nop  0x00000004 
+ 00000318  0x000001e0 hjam  0x000000d2 , 0x00000955 
+ 00000319  0x000001e1 nop  0x00000004 
+ 00000320  0x000001e2 hjam  0x000000d4 , 0x00000955 
+ 00000321  0x000001e3 nop  0x00000004 
+ 00000322  0x000001e6 rtn 
+ 00000323  0x000001e9 hjam  0x000000d4 , 0x00000955 
+ 00000324  0x000001ea nop  0x00000004 
+ 00000325  0x000001eb hjam  0x000000d2 , 0x00000955 
+ 00000326  0x000001ec nop  0x00000004 
+ 00000327  0x000001ed hjam  0x000000d1 , 0x00000955 
+ 00000328  0x000001ee nop  0x00000004 
+ 00000329  0x000001ef hjam  0x000000d0 , 0x00000955 
+ 00000330  0x000001f0 hjam  0x000000c0 , 0x00000956 
+ 00000331  0x000001f1 rtn 
+ 00000332  0x000001f4 branch  0x00003a6f , 0x00000021 
+ 00000333  0x000001f5 call  0x00000143 
+ 00000334  0x000001f6 branch  0x00003a6f 
+ 00000335  0x000001fa enable  0x00000028 
+ 00000336  0x000001fb hfetch  0x00000004 , 0x00008138 
+ 00000337  0x000001fc setflag  0x00000028 , 0x0000001a , 0x0000003f 
+ 00000338  0x000001fd hstore  0x00000004 , 0x0000804c 
+ 00000339  0x000001fe call  0x00003db0 
+ 00000340  0x000001ff jam  0x00000001 , 0x000000a2 
+ 00000341  0x00000201 rtn 
+ 00000342  0x00000205 jam  0x00000000 , 0x00000b7e 
+ 00000343  0x00000206 jam  0x00000006 , 0x00000177 
+ 00000344  0x00000207 call  0x00003fa4 
+ 00000345  0x00000208 setarg  0x00000155 
+ 00000346  0x00000209 store  0x00000002 , 0x0000428a 
+ 00000347  0x0000020a setarg  0x000000c1 
+ 00000348  0x0000020b store  0x00000002 , 0x00004292 
+ 00000349  0x0000020c setarg  0x000001c6 
+ 00000350  0x0000020d store  0x00000002 , 0x00004290 
+ 00000351  0x0000020e setarg  0x00000023 
+ 00000352  0x0000020f store  0x00000002 , 0x0000428c 
+ 00000353  0x00000210 setarg  0x0000014f 
+ 00000354  0x00000211 store  0x00000002 , 0x00004288 
+ 00000355  0x00000212 setarg  0x00004aa0 
+ 00000356  0x00000213 byteswap  0x0000003f , 0x0000003f 
+ 00000357  0x00000214 store  0x00000002 , 0x00004b9a 
+ 00000358  0x00000215 store  0x00000002 , 0x00004b9c 
+ 00000359  0x00000216 call  0x00003e0b 
+ 00000360  0x00000217 setarg  0x00004b36 
+ 00000361  0x00000218 byteswap  0x0000003f , 0x0000003f 
+ 00000362  0x00000219 store  0x00000002 , 0x00004b9e 
+ 00000363  0x0000021a store  0x00000002 , 0x00004ba0 
+ 00000364  0x0000021b fetch  0x00000001 , 0x00004c97 
+ 00000365  0x0000021c beq  0x0000005a , 0x00000184 
+ 00000366  0x0000021d branch  0x00000182 , 0x0000002b 
+ 00000367  0x0000021e fetch  0x00000002 , 0x00004c91 
+ 00000368  0x0000021f byteswap  0x0000003f , 0x0000003f 
+ 00000369  0x00000220 store  0x00000002 , 0x00004c91 
+ 00000370  0x00000221 fetch  0x00000002 , 0x00004c93 
+ 00000371  0x00000222 byteswap  0x0000003f , 0x0000003f 
+ 00000372  0x00000223 store  0x00000002 , 0x00004c93 
+ 00000373  0x00000224 call  0x0000018f 
+ 00000374  0x00000225 fetch  0x00000008 , 0x000002a0 
+ 00000375  0x00000226 nbranch  0x0000017c , 0x00000034 
+ 00000376  0x00000227 fetch  0x00000002 , 0x00004ad4 
+ 00000377  0x00000228 byteswap  0x0000003f , 0x0000003f 
+ 00000378  0x00000229 branch  0x0000017c , 0x00000034 
+ 00000379  0x0000022a store  0x00000002 , 0x00004c93 
+ 00000380  0x0000022c call  0x000001e4 
+ 00000381  0x0000022d jam  0x0000002f , 0x00004ba4 
+ 00000382  0x0000022f call  0x0000008b 
+ 00000383  0x00000230 jam  0x00000000 , 0x00004c97 
+ 00000384  0x00000231 hjam  0x00000003 , 0x00008280 
+ 00000385  0x00000232 rtn 
+ 00000386  0x00000234 jam  0x00000030 , 0x00004ba4 
+ 00000387  0x00000235 branch  0x0000017e 
+ 00000388  0x00000237 copy  0x00000027 , 0x0000003f 
+ 00000389  0x00000238 branch  0x000001c9 , 0x00000034 
+ 00000390  0x00000239 call  0x00005b63 
+ 00000391  0x0000023a call  0x00004d99 
+ 00000392  0x0000023b setarg  0x00000000 
+ 00000393  0x0000023c store  0x00000008 , 0x00004040 
+ 00000394  0x0000023d store  0x00000002 , 0x000047f4 
+ 00000395  0x0000023e copy  0x00000022 , 0x0000003f 
+ 00000396  0x0000023f store  0x00000004 , 0x00004c59 
+ 00000397  0x00000240 jam  0x00000033 , 0x00004ba4 
+ 00000398  0x00000241 branch  0x0000017e 
+ 00000399  0x00000244 call  0x0000688a 
+ 00000400  0x00000245 setarg  0x000007e2 
+ 00000401  0x00000246 arg  0x000002a0 , 0x00000011 
+ 00000402  0x00000247 arg  0x0000000c , 0x00000002 
+ 00000403  0x00000248 call  0x000068d3 
+ 00000404  0x00000249 call  0x0000688d 
+ 00000405  0x0000024a fetch  0x00000008 , 0x000002a0 
+ 00000406  0x0000024b rtn  0x00000034 
+ 00000407  0x0000024c fetch  0x00000001 , 0x00004c8f 
+ 00000408  0x0000024d bbit1  0x00000000 , 0x000001a1 
+ 00000409  0x0000024e bbit1  0x00000001 , 0x000001af 
+ 00000410  0x00000250 fetch  0x00000002 , 0x000002a0 
+ 00000411  0x00000251 byteswap  0x0000003f , 0x0000003f 
+ 00000412  0x00000252 store  0x00000002 , 0x00004c91 
+ 00000413  0x00000253 fetch  0x00000002 , 0x000002a6 
+ 00000414  0x00000254 byteswap  0x0000003f , 0x0000003f 
+ 00000415  0x00000255 store  0x00000002 , 0x00004c93 
+ 00000416  0x00000256 rtn 
+ 00000417  0x00000258 fetcht  0x00000002 , 0x000002a4 
+ 00000418  0x00000259 fetch  0x00000002 , 0x000002aa 
+ 00000419  0x0000025a copy  0x00000002 , 0x00000012 
+ 00000420  0x0000025b copy  0x0000003f , 0x00000011 
+ 00000421  0x0000025c byteswap  0x0000003f , 0x0000003f 
+ 00000422  0x0000025d store  0x00000002 , 0x00004c93 
+ 00000423  0x0000025e copy  0x00000011 , 0x0000003f 
+ 00000424  0x0000025f isub  0x00000002 , 0x00000013 
+ 00000425  0x00000260 lshift  0x00000013 , 0x00000013 
+ 00000426  0x00000261 copy  0x00000012 , 0x0000003f 
+ 00000427  0x00000262 isub  0x00000013 , 0x0000003f 
+ 00000428  0x00000263 byteswap  0x0000003f , 0x0000003f 
+ 00000429  0x00000264 store  0x00000002 , 0x00004c91 
+ 00000430  0x00000265 rtn 
+ 00000431  0x00000268 fetcht  0x00000002 , 0x000002a2 
+ 00000432  0x00000269 fetch  0x00000002 , 0x000002a8 
+ 00000433  0x0000026a copy  0x00000002 , 0x00000012 
+ 00000434  0x0000026b copy  0x0000003f , 0x00000011 
+ 00000435  0x0000026c isub  0x00000002 , 0x00000013 
+ 00000436  0x0000026d rshift2  0x00000013 , 0x00000013 
+ 00000437  0x0000026e copy  0x00000012 , 0x0000003f 
+ 00000438  0x0000026f isub  0x00000013 , 0x0000003f 
+ 00000439  0x00000270 byteswap  0x0000003f , 0x0000003f 
+ 00000440  0x00000271 store  0x00000002 , 0x00004c91 
+ 00000441  0x00000272 lshift  0x00000013 , 0x00000013 
+ 00000442  0x00000273 copy  0x00000011 , 0x0000003f 
+ 00000443  0x00000274 isub  0x00000013 , 0x0000003f 
+ 00000444  0x00000275 byteswap  0x0000003f , 0x0000003f 
+ 00000445  0x00000276 store  0x00000002 , 0x00004c93 
+ 00000446  0x00000277 rtn 
+ 00000447  0x0000027b jam  0x00000027 , 0x00000016 
+ 00000448  0x0000027c hjam  0x00000036 , 0x0000090f 
+ 00000449  0x0000027d hjam  0x0000005f , 0x0000090b 
+ 00000450  0x0000027e branch  0x000053d4 
+ 00000451  0x00000280 hjam  0x0000002e , 0x0000090f 
+ 00000452  0x00000281 hjam  0x000000ff , 0x0000090b 
+ 00000453  0x00000282 branch  0x000053d9 
+ 00000454  0x00000286 rtn 
+ 00000455  0x00000288 jam  0x00000003 , 0x00000b7e 
+ 00000456  0x00000289 call  0x000000fd 
+ 00000457  0x0000028c jam  0x0000005a , 0x00004c97 
+ 00000458  0x0000028d call  0x00003db8 
+ 00000459  0x0000028e hfetch  0x00000004 , 0x00008138 
+ 00000460  0x0000028f set0  0x0000000f , 0x0000003f 
+ 00000461  0x00000290 hstore  0x00000004 , 0x0000804c 
+ 00000462  0x00000291 call  0x00003db0 
+ 00000463  0x00000292 arg  0xffffffff , 0x00000002 
+ 00000464  0x00000293 branch  0x00003cda 
+ 00000465  0x00000297 call  0x00007c20 
+ 00000466  0x00000298 arg  0x000047e4 , 0x00000011 
+ 00000467  0x00000299 call  0x00007f9f 
+ 00000468  0x0000029a copy  0x0000003f , 0x00000002 
+ 00000469  0x0000029b call  0x00007c24 
+ 00000470  0x0000029c copy  0x00000002 , 0x0000003f 
+ 00000471  0x0000029d rtn  0x00000034 
+ 00000472  0x0000029e beq  0x00000021 , 0x000001dc 
+ 00000473  0x0000029f beq  0x00000022 , 0x000001de 
+ 00000474  0x000002a0 beq  0x00000023 , 0x000001e1 
+ 00000475  0x000002a1 branch  0x00007c5a 
+ 00000476  0x000002a3 jam  0x000000ff , 0x00004bef 
+ 00000477  0x000002a4 branch  0x000002ea 
+ 00000478  0x000002a6 set0  0x00000023 , 0x00000000 
+ 00000479  0x000002a7 jam  0x000000ff , 0x00004bef 
+ 00000480  0x000002a8 branch  0x00000264 
+ 00000481  0x000002ab setarg  0xffffffff 
+ 00000482  0x000002ac store  0x00000004 , 0x00004c00 
+ 00000483  0x000002ad branch  0x000002b5 
+ 00000484  0x000002b1 setarg  0x00000000 
+ 00000485  0x000002b2 store  0x00000004 , 0x00004ba9 
+ 00000486  0x000002b3 rtn 
+ 00000487  0x000002b7 rtnmark0  0x00000023 
+ 00000488  0x000002b8 call  0x0000020d 
+ 00000489  0x000002b9 nbranch  0x000001fe , 0x00000028 
+ 00000490  0x000002ba jam  0x0000000a , 0x00004c15 
+ 00000491  0x000002bb call  0x00000228 
+ 00000492  0x000002bc fetch  0x00000001 , 0x00004bef 
+ 00000493  0x000002bd rtnne  0x000000ff 
+ 00000494  0x000002be call  0x00000286 
+ 00000495  0x000002c0 fetch  0x00000001 , 0x00004d46 
+ 00000496  0x000002c1 nrtn  0x00000034 
+ 00000497  0x000002c2 call  0x000000f0 
+ 00000498  0x000002c3 nrtn  0x00000028 
+ 00000499  0x000002c4 fetch  0x00000001 , 0x00000b7f 
+ 00000500  0x000002c5 nrtn  0x00000034 
+ 00000501  0x000002c6 call  0x00003cab 
+ 00000502  0x000002c7 fetch  0x00000003 , 0x00004210 
+ 00000503  0x000002c8 rtn  0x00000034 
+ 00000504  0x000002c9 fetch  0x00000001 , 0x00004131 
+ 00000505  0x000002ca rtn  0x00000034 
+ 00000506  0x000002cc setarg  0x0000e290 
+ 00000507  0x000002cd call  0x00007e8a 
+ 00000508  0x000002ce storet  0x00000004 , 0x000041fc 
+ 00000509  0x000002cf branch  0x00003cda 
+ 00000510  0x000002d2 call  0x000000f0 
+ 00000511  0x000002d3 nrtn  0x00000028 
+ 00000512  0x000002d4 fetch  0x00000001 , 0x00000b7f 
+ 00000513  0x000002d5 nrtn  0x00000034 
+ 00000514  0x000002d6 call  0x00003cab 
+ 00000515  0x000002d7 fetch  0x00000003 , 0x00004210 
+ 00000516  0x000002d8 rtn  0x00000034 
+ 00000517  0x000002d9 fetch  0x00000001 , 0x00004131 
+ 00000518  0x000002da rtn  0x00000034 
+ 00000519  0x000002db fetch  0x00000001 , 0x00004c15 
+ 00000520  0x000002dc nbranch  0x000001fa , 0x00000034 
+ 00000521  0x000002dd fetch  0x00000008 , 0x00004d3d 
+ 00000522  0x000002de call  0x00007e8a 
+ 00000523  0x000002df storet  0x00000004 , 0x000041fc 
+ 00000524  0x000002e0 branch  0x00003cda 
+ 00000525  0x000002e5 fetch  0x00000001 , 0x00004bef 
+ 00000526  0x000002e6 bne  0x000000ff , 0x000002be 
+ 00000527  0x000002e7 call  0x00000213 
+ 00000528  0x000002e8 call  0x0000034e 
+ 00000529  0x000002ea jam  0x00000001 , 0x00004be6 
+ 00000530  0x000002eb rtn 
+ 00000531  0x000002ee disable  0x00000028 
+ 00000532  0x000002ef jam  0x00000002 , 0x00004be2 
+ 00000533  0x000002f0 fetch  0x00000001 , 0x00000cd5 
+ 00000534  0x000002f1 beq  0x00000001 , 0x0000021c 
+ 00000535  0x000002f2 beq  0x00000002 , 0x00000220 
+ 00000536  0x000002f3 beq  0x00000003 , 0x00000224 
+ 00000537  0x000002f4 fetch  0x00000001 , 0x00004d46 
+ 00000538  0x000002f5 ncall  0x000034df , 0x00000034 
+ 00000539  0x000002f6 rtn 
+ 00000540  0x000002f8 setarg  0x00000000 
+ 00000541  0x000002f9 store  0x00000001 , 0x00000cd5 
+ 00000542  0x000002fa jam  0x0000000a , 0x00004be1 
+ 00000543  0x000002fb branch  0x00000226 
+ 00000544  0x000002fd setarg  0x00000003 
+ 00000545  0x000002fe store  0x00000001 , 0x00000cd5 
+ 00000546  0x000002ff jam  0x00000004 , 0x00004be1 
+ 00000547  0x00000300 branch  0x00000226 
+ 00000548  0x00000302 jam  0x00000001 , 0x00004be2 
+ 00000549  0x00000303 jam  0x00000008 , 0x00004be1 
+ 00000550  0x00000305 jam  0x00000000 , 0x00004be7 
+ 00000551  0x00000306 branch  0x000034df 
+ 00000552  0x0000030b jam  0x00000000 , 0x00004be8 
+ 00000553  0x0000030d arg  0x00000d00 , 0x0000000b 
+ 00000554  0x0000030e until  0x00000023 , 0x00000026 
+ 00000555  0x0000030f call  0x00000253 
+ 00000556  0x00000310 nbranch  0x00000239 , 0x0000002f 
+ 00000557  0x00000311 call  0x00000267 
+ 00000558  0x00000312 call  0x00000278 
+ 00000559  0x00000313 fetch  0x00000001 , 0x00004be0 
+ 00000560  0x00000314 increase  0x00000001 , 0x0000003f 
+ 00000561  0x00000315 store  0x00000001 , 0x00004be0 
+ 00000562  0x00000316 jam  0x00000000 , 0x00004d46 
+ 00000563  0x00000317 fetch  0x00000001 , 0x00004bef 
+ 00000564  0x00000318 bne  0x000000ff , 0x00000251 
+ 00000565  0x0000031a call  0x0000024b 
+ 00000566  0x0000031b jam  0x00000000 , 0x00004be7 
+ 00000567  0x0000031c jam  0x00000000 , 0x00004be6 
+ 00000568  0x0000031d rtn 
+ 00000569  0x00000321 jam  0x00000001 , 0x00004d46 
+ 00000570  0x00000322 fetch  0x00000001 , 0x00004be7 
+ 00000571  0x00000323 increase  0x00000001 , 0x0000003f 
+ 00000572  0x00000324 store  0x00000001 , 0x00004be7 
+ 00000573  0x00000325 fetch  0x00000001 , 0x00004bef 
+ 00000574  0x00000326 bne  0x000000ff , 0x00000263 
+ 00000575  0x00000327 fetch  0x00000001 , 0x00004be7 
+ 00000576  0x00000328 beq  0x000000ff , 0x00000264 
+ 00000577  0x00000329 fetch  0x00000001 , 0x00004be7 
+ 00000578  0x0000032a arg  0x00000010 , 0x00000002 
+ 00000579  0x0000032b isub  0x00000002 , 0x0000003e 
+ 00000580  0x0000032c branch  0x00000368 , 0x00000002 
+ 00000581  0x0000032d fetch  0x00000001 , 0x00004be8 
+ 00000582  0x0000032e increase  0x00000001 , 0x0000003f 
+ 00000583  0x0000032f store  0x00000001 , 0x00004be8 
+ 00000584  0x00000330 nop  0x0000000a 
+ 00000585  0x00000331 bne  0x00000007 , 0x00000229 
+ 00000586  0x00000332 branch  0x00000368 
+ 00000587  0x00000336 setarg  0x00000000 
+ 00000588  0x00000337 store  0x00000009 , 0x00000cd5 
+ 00000589  0x00000338 rtn 
+ 00000590  0x0000033b bmark0  0x00000023 , 0x000072b9 
+ 00000591  0x0000033c fetch  0x00000008 , 0x00000cd5 
+ 00000592  0x0000033d rtn 
+ 00000593  0x00000341 call  0x00000275 
+ 00000594  0x00000342 branch  0x000002da 
+ 00000595  0x00000345 disable  0x0000002f 
+ 00000596  0x00000346 call  0x000003c6 
+ 00000597  0x00000347 fetch  0x00000001 , 0x00004c0a 
+ 00000598  0x00000348 beq  0x00000001 , 0x00000260 
+ 00000599  0x00000349 force  0x00000000 , 0x00000015 
+ 00000600  0x0000034a fetch  0x00000004 , 0x00004c00 
+ 00000601  0x0000034b iforce  0x00000009 
+ 00000602  0x0000034c fetcht  0x00000001 , 0x00000017 
+ 00000603  0x0000034d call  0x00003a82 
+ 00000604  0x0000034e call  0x00003a87 
+ 00000605  0x0000034f call  0x00000380 
+ 00000606  0x00000350 call  0x000003be , 0x0000002f 
+ 00000607  0x00000351 rtn 
+ 00000608  0x00000353 jam  0x00000000 , 0x00000cb4 
+ 00000609  0x00000354 enable  0x0000002f 
+ 00000610  0x00000355 branch  0x000003be 
+ 00000611  0x00000359 rtn 
+ 00000612  0x0000035e jam  0x00000000 , 0x00004d46 
+ 00000613  0x0000035f jam  0x00000032 , 0x00000b7d 
+ 00000614  0x00000360 branch  0x00007c27 
+ 00000615  0x00000364 call  0x00000310 
+ 00000616  0x00000365 fetch  0x00000001 , 0x00004bdf 
+ 00000617  0x00000366 rtn  0x00000034 
+ 00000618  0x00000367 iforce  0x00000039 
+ 00000619  0x00000368 call  0x0000026f 
+ 00000620  0x00000369 arg  0x00000cb5 , 0x00000006 
+ 00000621  0x0000036a arg  0x00000d17 , 0x00000005 
+ 00000622  0x0000036b branch  0x00007e45 
+ 00000623  0x0000036e fetch  0x00000001 , 0x00000cb4 
+ 00000624  0x0000036f compare  0x00000008 , 0x0000003f , 0x000000f8 
+ 00000625  0x00000370 nrtn  0x00000001 
+ 00000626  0x00000371 fetcht  0x00000001 , 0x00000cb5 
+ 00000627  0x00000372 storet  0x00000001 , 0x00004cb7 
+ 00000628  0x00000373 rtn 
+ 00000629  0x00000376 jam  0x00000001 , 0x00004c28 
+ 00000630  0x00000377 jam  0x00000000 , 0x00004c27 
+ 00000631  0x00000378 rtn 
+ 00000632  0x0000037a fetch  0x00000001 , 0x00004c27 
+ 00000633  0x0000037b increase  0x00000001 , 0x0000003f 
+ 00000634  0x0000037c store  0x00000001 , 0x00004c27 
+ 00000635  0x0000037d rtn 
+ 00000636  0x0000037f fetch  0x00000001 , 0x00004c27 
+ 00000637  0x00000380 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00000638  0x00000381 ncall  0x00000284 , 0x00000002 
+ 00000639  0x00000382 fetch  0x00000001 , 0x00004c27 
+ 00000640  0x00000383 rtneq  0x00000000 
+ 00000641  0x00000384 increase  0xffffffff , 0x0000003f 
+ 00000642  0x00000385 store  0x00000001 , 0x00004c27 
+ 00000643  0x00000386 rtn 
+ 00000644  0x00000388 jam  0x00000002 , 0x00004c27 
+ 00000645  0x00000389 rtn 
+ 00000646  0x0000038c arg  0x00004c2b , 0x00000011 
+ 00000647  0x0000038d call  0x00000330 
+ 00000648  0x0000038e storet  0x00000001 , 0x00004c29 
+ 00000649  0x0000038f isolate1  0x00000023 , 0x00000000 
+ 00000650  0x00000390 call  0x00000294 , 0x00000001 
+ 00000651  0x00000391 ncall  0x00000298 , 0x00000001 
+ 00000652  0x00000392 isub  0x00000002 , 0x0000003e 
+ 00000653  0x00000393 nbranch  0x000002ac , 0x00000002 
+ 00000654  0x00000395 fetch  0x00000001 , 0x00004c27 
+ 00000655  0x00000396 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00000656  0x00000397 nbranch  0x0000029c , 0x00000002 
+ 00000657  0x00000398 fetch  0x00000001 , 0x00004c27 
+ 00000658  0x00000399 beq  0x00000000 , 0x000002ac 
+ 00000659  0x0000039a rtn 
+ 00000660  0x0000039d setarg  0x00000082 
+ 00000661  0x0000039e rtn 
+ 00000662  0x000003a0 setarg  0x00000077 
+ 00000663  0x000003a1 rtn 
+ 00000664  0x000003a3 setarg  0x00000080 
+ 00000665  0x000003a4 rtn 
+ 00000666  0x000003a6 setarg  0x00000075 
+ 00000667  0x000003a7 rtn 
+ 00000668  0x000003aa fetch  0x00000001 , 0x00004c27 
+ 00000669  0x000003ab rtnne  0x00000046 
+ 00000670  0x000003ac jam  0x00000000 , 0x00004c27 
+ 00000671  0x000003ae fetcht  0x00000001 , 0x00004c29 
+ 00000672  0x000003af isolate1  0x00000023 , 0x00000000 
+ 00000673  0x000003b0 call  0x00000296 , 0x00000001 
+ 00000674  0x000003b1 ncall  0x0000029a , 0x00000001 
+ 00000675  0x000003b2 isub  0x00000002 , 0x0000003e 
+ 00000676  0x000003b3 nrtn  0x00000002 
+ 00000677  0x000003b4 fetch  0x00000001 , 0x00004c28 
+ 00000678  0x000003b5 beq  0x00000000 , 0x000002b3 
+ 00000679  0x000003b6 increase  0xffffffff , 0x0000003f 
+ 00000680  0x000003b7 store  0x00000001 , 0x00004c28 
+ 00000681  0x000003b8 beq  0x00000000 , 0x000002b3 
+ 00000682  0x000003bb jam  0x00000000 , 0x00004c3d 
+ 00000683  0x000003bc rtn 
+ 00000684  0x000003bf fetch  0x00000001 , 0x00004c28 
+ 00000685  0x000003c0 beq  0x00000002 , 0x000002b1 
+ 00000686  0x000003c1 increase  0x00000001 , 0x0000003f 
+ 00000687  0x000003c2 store  0x00000001 , 0x00004c28 
+ 00000688  0x000003c3 beq  0x00000001 , 0x000002aa 
+ 00000689  0x000003c5 jam  0x00000002 , 0x00004c3d 
+ 00000690  0x000003c6 rtn 
+ 00000691  0x000003c9 jam  0x00000004 , 0x00004c3d 
+ 00000692  0x000003ca rtn 
+ 00000693  0x000003cd set1  0x00000023 , 0x00000000 
+ 00000694  0x000003ce call  0x000002ba 
+ 00000695  0x000003cf call  0x00000235 
+ 00000696  0x000003d0 jam  0x00000001 , 0x00004bef 
+ 00000697  0x000003d1 rtn 
+ 00000698  0x000003d4 jam  0x00000000 , 0x00004be0 
+ 00000699  0x000003d5 jam  0x0000004e , 0x00004be9 
+ 00000700  0x000003d6 fetch  0x00000004 , 0x00004beb 
+ 00000701  0x000003d7 branch  0x00000340 
+ 00000702  0x000003da call  0x000002ba 
+ 00000703  0x000003db fetch  0x00000001 , 0x00004be6 
+ 00000704  0x000003dc beq  0x00000001 , 0x000034df 
+ 00000705  0x000003dd fetch  0x00000001 , 0x00004bef 
+ 00000706  0x000003de beq  0x00000001 , 0x000002c6 
+ 00000707  0x000003df beq  0x00000002 , 0x000002c9 
+ 00000708  0x000003e0 beq  0x00000003 , 0x000002cc 
+ 00000709  0x000003e1 branch  0x00003bf1 
+ 00000710  0x000003e4 jam  0x00000011 , 0x00004bef 
+ 00000711  0x000003e5 jam  0x000000aa , 0x00000d37 
+ 00000712  0x000003e6 branch  0x000002ce 
+ 00000713  0x000003e8 jam  0x00000012 , 0x00004bef 
+ 00000714  0x000003e9 jam  0x00000055 , 0x00000d37 
+ 00000715  0x000003ea branch  0x000002ce 
+ 00000716  0x000003ec jam  0x00000013 , 0x00004bef 
+ 00000717  0x000003ed jam  0x00000022 , 0x00000d37 
+ 00000718  0x000003ef fetch  0x00000001 , 0x00004be2 
+ 00000719  0x000003f0 and_into  0x00000007 , 0x0000003f 
+ 00000720  0x000003f1 store  0x00000001 , 0x00000d38 
+ 00000721  0x000003f2 fetch  0x00000004 , 0x00004c06 
+ 00000722  0x000003f3 store  0x00000004 , 0x00000d39 
+ 00000723  0x000003f4 jam  0x00000000 , 0x00000d3d 
+ 00000724  0x000003f5 arg  0x00000d37 , 0x00000011 
+ 00000725  0x000003f6 arg  0x00000007 , 0x00000002 
+ 00000726  0x000003f7 call  0x0000030b 
+ 00000727  0x000003f8 call  0x0000034e 
+ 00000728  0x000003f9 call  0x00000211 
+ 00000729  0x000003fa branch  0x000034df 
+ 00000730  0x000003fd fetch  0x00000001 , 0x00004bef 
+ 00000731  0x000003fe rtneq  0x000000ff 
+ 00000732  0x000003ff beq  0x00000011 , 0x000002e0 
+ 00000733  0x00000400 beq  0x00000012 , 0x000002e2 
+ 00000734  0x00000401 beq  0x00000013 , 0x000002e4 
+ 00000735  0x00000402 rtn 
+ 00000736  0x00000406 jam  0x00000002 , 0x00004bef 
+ 00000737  0x00000407 branch  0x00000235 
+ 00000738  0x00000409 jam  0x00000003 , 0x00004bef 
+ 00000739  0x0000040a branch  0x00000235 
+ 00000740  0x0000040c jam  0x000000ff , 0x00004bef 
+ 00000741  0x0000040d jam  0x00000031 , 0x00000b7d 
+ 00000742  0x0000040e call  0x00007c27 
+ 00000743  0x0000040f fetch  0x00000004 , 0x00000d19 
+ 00000744  0x00000410 call  0x00000340 
+ 00000745  0x00000411 branch  0x00000235 
+ 00000746  0x00000414 rtnmark1  0x00000023 
+ 00000747  0x00000415 call  0x00000341 
+ 00000748  0x00000416 call  0x00000368 
+ 00000749  0x00000417 fetch  0x00000001 , 0x00004bef 
+ 00000750  0x00000418 rtnne  0x000000ff 
+ 00000751  0x00000419 call  0x000002fd 
+ 00000752  0x0000041a setarg  0x00000000 
+ 00000753  0x0000041b store  0x00000002 , 0x00004c04 
+ 00000754  0x0000041d call  0x00003cab 
+ 00000755  0x0000041e nop  0x000007d0 
+ 00000756  0x0000041f fetch  0x00000001 , 0x00004c04 
+ 00000757  0x00000420 beq  0x000000ff , 0x00000264 
+ 00000758  0x00000421 call  0x00000253 
+ 00000759  0x00000422 nbranch  0x00000306 , 0x0000002f 
+ 00000760  0x00000424 call  0x0000024b 
+ 00000761  0x00000425 jam  0x00000003 , 0x00004c13 
+ 00000762  0x00000426 set1  0x00000023 , 0x00000000 
+ 00000763  0x00000427 jam  0x0000003c , 0x00000b7d 
+ 00000764  0x00000428 branch  0x00007c27 
+ 00000765  0x0000042c jam  0x000000ff , 0x00000d37 
+ 00000766  0x0000042d fetch  0x00000001 , 0x00004be2 
+ 00000767  0x0000042e store  0x00000001 , 0x00000d38 
+ 00000768  0x0000042f fetch  0x00000004 , 0x00004c06 
+ 00000769  0x00000430 store  0x00000004 , 0x00000d39 
+ 00000770  0x00000431 arg  0x00000006 , 0x00000002 
+ 00000771  0x00000432 arg  0x00000d37 , 0x00000011 
+ 00000772  0x00000433 call  0x0000030b 
+ 00000773  0x00000434 branch  0x0000034e 
+ 00000774  0x00000437 fetch  0x00000002 , 0x00004c04 
+ 00000775  0x00000438 increase  0x00000001 , 0x0000003f 
+ 00000776  0x00000439 store  0x00000002 , 0x00004c04 
+ 00000777  0x0000043a call  0x00000368 
+ 00000778  0x0000043b branch  0x000002f2 
+ 00000779  0x0000043f storet  0x00000001 , 0x00004be1 
+ 00000780  0x00000440 copy  0x00000002 , 0x00000039 
+ 00000781  0x00000441 arg  0x00000cd5 , 0x00000005 
+ 00000782  0x00000442 copy  0x00000011 , 0x00000006 
+ 00000783  0x00000443 branch  0x00007e45 
+ 00000784  0x00000447 fetch  0x00000001 , 0x00000cb4 
+ 00000785  0x00000448 rshift3  0x0000003f , 0x0000003f 
+ 00000786  0x00000449 store  0x00000001 , 0x00004bdf 
+ 00000787  0x0000044b increase  0x00000001 , 0x0000003f 
+ 00000788  0x0000044c arg  0x00000cb4 , 0x00000006 
+ 00000789  0x0000044d iadd  0x00000006 , 0x00000006 
+ 00000790  0x0000044e ifetch  0x00000003 , 0x00000006 
+ 00000791  0x0000044f store  0x00000003 , 0x00004c0b 
+ 00000792  0x00000450 rtn 
+ 00000793  0x00000453 fetcht  0x00000001 , 0x00004c3c 
+ 00000794  0x00000454 setarg  0x00004c2b 
+ 00000795  0x00000455 iadd  0x00000002 , 0x00000005 
+ 00000796  0x00000456 copy  0x00000011 , 0x0000003f 
+ 00000797  0x00000457 istore  0x00000001 , 0x00000005 
+ 00000798  0x00000458 increase  0x00000001 , 0x00000002 
+ 00000799  0x00000459 and_into  0x00000007 , 0x00000002 
+ 00000800  0x0000045a storet  0x00000001 , 0x00004c3c 
+ 00000801  0x0000045b rtn 
+ 00000802  0x0000045e call  0x00003af3 
+ 00000803  0x0000045f rtn  0x00000034 
+ 00000804  0x00000460 fetcht  0x00000001 , 0x00004c3b 
+ 00000805  0x00000461 arg  0x00004c33 , 0x00000011 
+ 00000806  0x00000462 call  0x00000329 
+ 00000807  0x00000463 storet  0x00000001 , 0x00004c3b 
+ 00000808  0x00000464 rtn 
+ 00000809  0x00000467 copy  0x00000011 , 0x0000003f 
+ 00000810  0x00000468 iadd  0x00000002 , 0x00000005 
+ 00000811  0x00000469 fetch  0x00000001 , 0x00000018 
+ 00000812  0x0000046a istore  0x00000001 , 0x00000005 
+ 00000813  0x0000046b increase  0x00000001 , 0x00000002 
+ 00000814  0x0000046c and_into  0x00000007 , 0x00000002 
+ 00000815  0x0000046d rtn 
+ 00000816  0x0000046f arg  0x00000000 , 0x00000002 
+ 00000817  0x00000470 arg  0x00000008 , 0x00000039 
+ 00000818  0x00000471 copy  0x00000011 , 0x00000006 
+ 00000819  0x00000473 ifetch  0x00000001 , 0x00000006 
+ 00000820  0x00000474 iadd  0x00000002 , 0x00000002 
+ 00000821  0x00000475 loop  0x00000333 
+ 00000822  0x00000476 rshift3  0x00000002 , 0x00000002 
+ 00000823  0x00000477 copy  0x0000003f , 0x00000002 
+ 00000824  0x00000478 rtnmark0  0x00000023 
+ 00000825  0x0000047a div  0x0000003f , 0x0000000a 
+ 00000826  0x0000047b call  0x00007efd 
+ 00000827  0x0000047c quotient  0x0000003f 
+ 00000828  0x0000047d lshift4  0x0000003f , 0x0000003f 
+ 00000829  0x0000047e remainder  0x00000002 
+ 00000830  0x0000047f ior  0x00000002 , 0x00000002 
+ 00000831  0x00000480 rtn 
+ 00000832  0x00000483 store  0x00000004 , 0x00004c00 
+ 00000833  0x00000487 arg  0x00000000 , 0x00000011 
+ 00000834  0x00000488 arg  0x00000004 , 0x00000039 
+ 00000835  0x00000489 arg  0x00004c00 , 0x00000006 
+ 00000836  0x0000048b ifetch  0x00000001 , 0x00000006 
+ 00000837  0x0000048c iadd  0x00000011 , 0x00000011 
+ 00000838  0x0000048d loop  0x00000344 
+ 00000839  0x0000048e copy  0x00000011 , 0x0000003f 
+ 00000840  0x0000048f store  0x00000002 , 0x00004c16 
+ 00000841  0x00000490 fetch  0x00000001 , 0x00004c16 
+ 00000842  0x00000491 fetcht  0x00000001 , 0x00004c17 
+ 00000843  0x00000492 iadd  0x00000002 , 0x0000003f 
+ 00000844  0x00000493 store  0x00000001 , 0x00004c18 
+ 00000845  0x00000494 rtn 
+ 00000846  0x00000499 fetch  0x00000001 , 0x00004be1 
+ 00000847  0x0000049a increase  0x00000002 , 0x0000003f 
+ 00000848  0x0000049b store  0x00000001 , 0x00004be3 
+ 00000849  0x0000049d fetch  0x00000001 , 0x00004be2 
+ 00000850  0x0000049e store  0x00000001 , 0x00000cf5 
+ 00000851  0x000004a0 fetch  0x00000001 , 0x00004be1 
+ 00000852  0x000004a1 lshift3  0x0000003f , 0x0000003f 
+ 00000853  0x000004a2 fetcht  0x00000001 , 0x00004be0 
+ 00000854  0x000004a3 and  0x00000002 , 0x00000003 , 0x00000002 
+ 00000855  0x000004a4 lshift  0x00000002 , 0x00000002 
+ 00000856  0x000004a5 ior  0x00000002 , 0x0000003f 
+ 00000857  0x000004a6 fetcht  0x00000001 , 0x00004c0a 
+ 00000858  0x000004a7 iadd  0x00000002 , 0x0000003f 
+ 00000859  0x000004a8 istore  0x00000001 , 0x00000005 
+ 00000860  0x000004aa fetch  0x00000001 , 0x00004bef 
+ 00000861  0x000004ab bne  0x000000ff , 0x00000360 
+ 00000862  0x000004ac fetch  0x00000001 , 0x00004be2 
+ 00000863  0x000004ad istore  0x00000001 , 0x00000005 
+ 00000864  0x000004af fetch  0x00000001 , 0x00004be1 
+ 00000865  0x000004b0 iforce  0x00000039 
+ 00000866  0x000004b1 fetch  0x00000001 , 0x00004be2 
+ 00000867  0x000004b2 beq  0x00000001 , 0x00000366 
+ 00000868  0x000004b3 arg  0x00000cd5 , 0x00000006 
+ 00000869  0x000004b4 branch  0x00007e45 
+ 00000870  0x000004b7 arg  0x00000cd6 , 0x00000006 
+ 00000871  0x000004b8 branch  0x00007e45 
+ 00000872  0x000004bb fetcht  0x00000001 , 0x00004bea 
+ 00000873  0x000004bc call  0x0000036e 
+ 00000874  0x000004bd increase  0x00000001 , 0x00000002 
+ 00000875  0x000004be and_into  0x00000003 , 0x00000002 
+ 00000876  0x000004bf storet  0x00000001 , 0x00004bea 
+ 00000877  0x000004c0 rtn 
+ 00000878  0x000004c3 fetch  0x00000001 , 0x00004c00 
+ 00000879  0x000004c4 and_into  0x00000003 , 0x0000003f 
+ 00000880  0x000004c5 mul32  0x0000003f , 0x00000004 , 0x00000011 
+ 00000881  0x000004c6 setarg  0x00004bf0 
+ 00000882  0x000004c7 iadd  0x00000011 , 0x0000003f 
+ 00000883  0x000004c8 iadd  0x00000002 , 0x00000006 
+ 00000884  0x000004c9 ifetch  0x00000001 , 0x00000006 
+ 00000885  0x000004ca store  0x00000001 , 0x00004be9 
+ 00000886  0x000004cb rtn 
+ 00000887  0x000004ce disable  0x00000009 
+ 00000888  0x000004cf disable  0x00000007 
+ 00000889  0x000004d0 setarg  0x00555555 
+ 00000890  0x000004d1 iforce  0x0000000f 
+ 00000891  0x000004d2 fetch  0x00000001 , 0x00004be9 
+ 00000892  0x000004d3 reverse  0x0000003f , 0x00000002 
+ 00000893  0x000004d4 set1  0x00000001 , 0x00000002 
+ 00000894  0x000004d5 rshift  0x00000002 , 0x0000000e 
+ 00000895  0x000004d6 rtn 
+ 00000896  0x000004d9 call  0x00000377 
+ 00000897  0x000004da enable  0x0000000d 
+ 00000898  0x000004db enable  0x00000021 
+ 00000899  0x000004dc disable  0x00000020 
+ 00000900  0x000004dd enable  0x00000010 
+ 00000901  0x000004de fetch  0x00000002 , 0x00004be4 
+ 00000902  0x000004df iforce  0x0000001b 
+ 00000903  0x000004e0 correlate  0x0000003e , 0x00000003 
+ 00000904  0x000004e1 nbranch  0x000003c1 , 0x00000018 
+ 00000905  0x000004e2 disable  0x0000000d 
+ 00000906  0x000004e3 enable  0x0000000b 
+ 00000907  0x000004e4 enable  0x00000007 
+ 00000908  0x000004e5 enable  0x00000009 
+ 00000909  0x000004e6 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00000910  0x000004e7 rshift3  0x0000000c , 0x0000003f 
+ 00000911  0x000004e8 store  0x00000001 , 0x00004c19 
+ 00000912  0x000004e9 fetcht  0x00000001 , 0x00004c18 
+ 00000913  0x000004ea isub  0x00000002 , 0x0000003e 
+ 00000914  0x000004eb nbranch  0x000003be , 0x00000005 
+ 00000915  0x000004ec parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00000916  0x000004ed rshift3  0x0000000c , 0x0000003f 
+ 00000917  0x000004ee store  0x00000001 , 0x00000cb3 
+ 00000918  0x000004ef fetch  0x00000001 , 0x00004c10 
+ 00000919  0x000004f0 sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00000920  0x000004f1 branch  0x0000039d , 0x00000005 
+ 00000921  0x000004f2 fetch  0x00000001 , 0x00000cb3 
+ 00000922  0x000004f3 fetcht  0x00000001 , 0x00004be2 
+ 00000923  0x000004f4 icompare  0x00000007 , 0x00000002 
+ 00000924  0x000004f5 nbranch  0x000003be , 0x00000001 
+ 00000925  0x000004f7 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00000926  0x000004f8 rshift3  0x0000000c , 0x0000003f 
+ 00000927  0x000004f9 istore  0x00000001 , 0x00000005 
+ 00000928  0x000004fa rshift3  0x0000003f , 0x0000003f 
+ 00000929  0x000004fb and  0x0000003f , 0x0000001f , 0x00000039 
+ 00000930  0x000004fc branch  0x000003a7 , 0x00000005 
+ 00000931  0x000004fe parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00000932  0x000004ff rshift3  0x0000000c , 0x0000003f 
+ 00000933  0x00000500 istore  0x00000001 , 0x00000005 
+ 00000934  0x00000501 loop  0x000003a3 
+ 00000935  0x00000504 copy  0x00000005 , 0x00000011 
+ 00000936  0x00000505 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00000937  0x00000506 rshift3  0x0000000c , 0x0000003f 
+ 00000938  0x00000507 store  0x00000001 , 0x00004c2a 
+ 00000939  0x00000508 copy  0x00000011 , 0x00000005 
+ 00000940  0x00000509 parse  0x00000003 , 0x00000000 , 0x00000018 
+ 00000941  0x0000050a enable  0x00000010 
+ 00000942  0x0000050b arg  0x00000664 , 0x0000001b 
+ 00000943  0x0000050c rshift32  0x0000003f , 0x0000003f 
+ 00000944  0x0000050d rshift16  0x0000003f , 0x0000003f 
+ 00000945  0x0000050e istore  0x00000003 , 0x00000005 
+ 00000946  0x0000050f disable  0x0000000b 
+ 00000947  0x00000510 branch  0x000003be , 0x00000006 
+ 00000948  0x00000511 enable  0x0000002f 
+ 00000949  0x00000512 fetch  0x00000001 , 0x00000017 
+ 00000950  0x00000513 add  0x0000003f , 0x00000000 , 0x00000011 
+ 00000951  0x00000514 call  0x00003ab6 
+ 00000952  0x00000515 disable  0x0000000d 
+ 00000953  0x00000516 call  0x00003a7a 
+ 00000954  0x00000517 fetch  0x00000001 , 0x00004c2a 
+ 00000955  0x00000518 copy  0x0000003f , 0x00000011 
+ 00000956  0x00000519 call  0x00000319 
+ 00000957  0x0000051a rtn 
+ 00000958  0x0000051d disable  0x0000001b 
+ 00000959  0x0000051e disable  0x0000000b 
+ 00000960  0x0000051f branch  0x0000375c 
+ 00000961  0x00000522 call  0x00000322 
+ 00000962  0x00000523 branch  0x000003be 
+ 00000963  0x00000526 call  0x00003a7a 
+ 00000964  0x00000527 fetcht  0x00000001 , 0x00004be9 
+ 00000965  0x00000528 branch  0x00003a91 
+ 00000966  0x0000052b call  0x000053d2 
+ 00000967  0x0000052c fetch  0x00000004 , 0x00004c00 
+ 00000968  0x0000052d iforce  0x00000009 
+ 00000969  0x0000052e call  0x00000377 
+ 00000970  0x0000052f call  0x000003c3 
+ 00000971  0x00000530 set1  0x00000000 , 0x00000015 
+ 00000972  0x00000531 enable  0x0000001d 
+ 00000973  0x00000532 enable  0x00000020 
+ 00000974  0x00000533 disable  0x00000021 
+ 00000975  0x00000534 rshift16  0x00000009 , 0x0000003f 
+ 00000976  0x00000535 rshift8  0x0000003f , 0x0000003f 
+ 00000977  0x00000536 rshift4  0x0000003f , 0x0000003f 
+ 00000978  0x00000537 inject  0x00000003 , 0x00000028 
+ 00000979  0x00000538 disable  0x0000001d 
+ 00000980  0x00000539 enable  0x0000001b 
+ 00000981  0x0000053a enable  0x00000007 
+ 00000982  0x0000053b enable  0x00000009 
+ 00000983  0x0000053c fetch  0x00000001 , 0x00004c18 
+ 00000984  0x0000053d inject  0x00000003 , 0x00000008 
+ 00000985  0x0000053e fetch  0x00000001 , 0x00004be3 
+ 00000986  0x0000053f iforce  0x00000039 
+ 00000987  0x00000540 arg  0x00000cf5 , 0x00000006 
+ 00000988  0x00000542 ifetch  0x00000001 , 0x00000006 
+ 00000989  0x00000543 inject  0x00000003 , 0x00000008 
+ 00000990  0x00000544 loop  0x000003dc 
+ 00000991  0x00000545 enable  0x00000008 
+ 00000992  0x00000546 inject  0x00000003 , 0x00000018 
+ 00000993  0x00000547 disable  0x00000008 
+ 00000994  0x00000548 until  0x0000003e , 0x00000027 
+ 00000995  0x00000549 nop  0x00000064 
+ 00000996  0x0000054a disable  0x0000001d 
+ 00000997  0x0000054b disable  0x0000001b 
+ 00000998  0x0000054c rtn 
+ 00012288  0x00000558 call  0x00003c74 
+ 00012289  0x0000055c set0  0x00000025 , 0x00000000 
+ 00012290  0x0000055d bpatch  0x00000000 , 0x00004000 
+ 00012291  0x0000055e clear_stack 
+ 00012292  0x0000055f call  0x00003a9e 
+ 00012293  0x00000560 call  0x00006805 
+ 00012294  0x00000561 call  0x00003bfa 
+ 00012295  0x00000562 call  0x00004d98 
+ 00012296  0x00000563 set0  0x00000025 , 0x00000000 
+ 00012297  0x00000564 bpatch  0x00000001 , 0x00004000 
+ 00012298  0x00000565 call  0x00006b53 
+ 00012299  0x00000566 call  0x00005b62 
+ 00012300  0x00000567 call  0x00007b9d 
+ 00012301  0x00000568 call  0x00003e4f 
+ 00012302  0x00000569 set0  0x00000025 , 0x00000000 
+ 00012303  0x0000056a bpatch  0x00000002 , 0x00004000 
+ 00012304  0x0000056b call  0x00003e5f , 0x0000002b 
+ 00012305  0x0000056c call  0x00007719 
+ 00012306  0x0000056d call  0x00003cf1 , 0x0000002b 
+ 00012307  0x0000056f set0  0x00000025 , 0x00000000 
+ 00012308  0x00000570 bpatch  0x00000003 , 0x00004000 
+ 00012309  0x00000571 call  0x00007813 
+ 00012310  0x00000572 call  0x00005373 
+ 00012311  0x00000573 call  0x00004449 
+ 00012312  0x00000574 set0  0x00000025 , 0x00000000 
+ 00012313  0x00000575 bpatch  0x00000004 , 0x00004000 
+ 00012314  0x00000576 call  0x0000303e 
+ 00012315  0x00000577 call  0x00003e6a 
+ 00012316  0x00000578 call  0x000030a1 
+ 00012317  0x00000579 set0  0x00000025 , 0x00000000 
+ 00012318  0x0000057a bpatch  0x00000005 , 0x00004000 
+ 00012319  0x0000057b call  0x00003392 
+ 00012320  0x0000057c call  0x00003407 
+ 00012321  0x0000057d call  0x00003024 
+ 00012322  0x0000057e call  0x00003d1c 
+ 00012323  0x0000057f branch  0x00003013 
+ 00012324  0x00000582 call  0x00003029 
+ 00012325  0x00000583 rtnmark0  0x00000009 
+ 00012326  0x00000584 set0  0x00000009 , 0x00000000 
+ 00012327  0x00000585 call  0x000032bd 
+ 00012328  0x00000586 branch  0x000053d7 
+ 00012329  0x00000589 set0  0x00000025 , 0x00000000 
+ 00012330  0x0000058a bpatch  0x00000006 , 0x00004000 
+ 00012331  0x0000058b call  0x000032fe 
+ 00012332  0x0000058c nbranch  0x00003033 , 0x00000005 
+ 00012333  0x0000058d call  0x000032a3 
+ 00012334  0x0000058e add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012335  0x0000058f ifetch  0x00000001 , 0x00000006 
+ 00012336  0x00000590 bbit1  0x00000000 , 0x00005377 
+ 00012337  0x00000591 bbit1  0x00000001 , 0x000031a7 
+ 00012338  0x00000592 branch  0x00003473 
+ 00012339  0x00000594 set0  0x00000025 , 0x00000000 
+ 00012340  0x00000595 bpatch  0x00000007 , 0x00004000 
+ 00012341  0x00000596 call  0x000032c6 
+ 00012342  0x00000597 copy  0x00000039 , 0x0000003e 
+ 00012343  0x00000598 rtn  0x00000005 
+ 00012344  0x00000599 call  0x000032a3 
+ 00012345  0x0000059a fetch  0x00000001 , 0x00000030 
+ 00012346  0x0000059b bbit1  0x00000003 , 0x00003103 
+ 00012347  0x0000059c fetch  0x00000001 , 0x00000031 
+ 00012348  0x0000059d bbit1  0x00000001 , 0x000031a7 
+ 00012349  0x0000059e branch  0x00003473 
+ 00012350  0x000005a7 fetch  0x00000001 , 0x00004272 
+ 00012351  0x000005a8 rtn  0x00000034 
+ 00012352  0x000005a9 beq  0x00000001 , 0x0000304e 
+ 00012353  0x000005aa beq  0x00000002 , 0x00003053 
+ 00012354  0x000005ab beq  0x00000003 , 0x00003056 
+ 00012355  0x000005ac beq  0x00000005 , 0x0000305b 
+ 00012356  0x000005ad beq  0x0000001b , 0x0000304b 
+ 00012357  0x000005ae call  0x000032f6 
+ 00012358  0x000005af rtn  0x00000005 
+ 00012359  0x000005b0 call  0x000032f9 
+ 00012360  0x000005b1 rtn  0x00000005 
+ 00012361  0x000005b3 jam  0x00000000 , 0x00004272 
+ 00012362  0x000005b4 rtn 
+ 00012363  0x000005b7 jam  0x0000001b , 0x0000041c 
+ 00012364  0x000005b8 jam  0x00000000 , 0x00004272 
+ 00012365  0x000005b9 rtn 
+ 00012366  0x000005bc set1  0x0000001c , 0x00000000 
+ 00012367  0x000005bd set0  0x0000001e , 0x00000000 
+ 00012368  0x000005be jam  0x000000ff , 0x0000008e 
+ 00012369  0x000005bf jam  0x0000001f , 0x0000008c 
+ 00012370  0x000005c0 branch  0x00003049 
+ 00012371  0x000005c3 set0  0x0000001c , 0x00000000 
+ 00012372  0x000005c4 force  0x00000000 , 0x0000001b 
+ 00012373  0x000005c5 branch  0x00003049 
+ 00012374  0x000005c8 call  0x000032f9 
+ 00012375  0x000005c9 rtn  0x00000005 
+ 00012376  0x000005ca force  0x00000001 , 0x00000002 
+ 00012377  0x000005cb jam  0x00000005 , 0x00000178 
+ 00012378  0x000005cc branch  0x00003068 
+ 00012379  0x000005cf set0  0x00000025 , 0x00000000 
+ 00012380  0x000005d0 bpatch  0x00000008 , 0x00004001 
+ 00012381  0x000005d1 fetch  0x00000001 , 0x00004132 
+ 00012382  0x000005d2 beq  0x00000001 , 0x00003064 
+ 00012383  0x000005d4 fetch  0x00000006 , 0x00004274 
+ 00012384  0x000005d5 branch  0x00003049 , 0x00000034 
+ 00012385  0x000005d6 jam  0x00000001 , 0x000047f3 
+ 00012386  0x000005d8 jam  0x00000003 , 0x00000055 
+ 00012387  0x000005d9 branch  0x00003067 
+ 00012388  0x000005dc fetch  0x00000006 , 0x00004274 
+ 00012389  0x000005dd branch  0x00003049 , 0x00000034 
+ 00012390  0x000005de store  0x00000006 , 0x00000040 
+ 00012391  0x000005e0 force  0x00000025 , 0x00000002 
+ 00012392  0x000005e2 set0  0x00000025 , 0x00000000 
+ 00012393  0x000005e3 bpatch  0x00000009 , 0x00004001 
+ 00012394  0x000005e4 fetch  0x00000001 , 0x000000f3 
+ 00012395  0x000005e5 branch  0x0000306f , 0x00000034 
+ 00012396  0x000005e6 lshift3  0x0000003f , 0x0000003f 
+ 00012397  0x000005e7 lshift4  0x0000003f , 0x0000003f 
+ 00012398  0x000005e8 increase  0xffffffff , 0x0000003f 
+ 00012399  0x000005ea store  0x00000001 , 0x00004146 
+ 00012400  0x000005eb store  0x00000001 , 0x000000f2 
+ 00012401  0x000005ec jam  0x0000001f , 0x0000008d 
+ 00012402  0x000005ed set0  0x0000000c , 0x00000000 
+ 00012403  0x000005ee call  0x000032d6 
+ 00012404  0x000005ef nbranch  0x00003090 , 0x00000005 
+ 00012405  0x000005f0 call  0x00003bd1 
+ 00012406  0x000005f1 store  0x00000001 , 0x00000077 
+ 00012407  0x000005f2 storet  0x00000001 , 0x0000007c 
+ 00012408  0x000005f3 fetch  0x00000006 , 0x00004274 
+ 00012409  0x000005f4 store  0x00000006 , 0x00000040 
+ 00012410  0x000005f5 set0  0x00000025 , 0x00000000 
+ 00012411  0x000005f6 bpatch  0x0000000a , 0x00004001 
+ 00012412  0x000005f7 force  0x00000000 , 0x0000003f 
+ 00012413  0x000005f8 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012414  0x000005f9 nsetflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00012415  0x000005fa set1  0x00000003 , 0x0000003f 
+ 00012416  0x000005fb store  0x00000001 , 0x00000030 
+ 00012417  0x000005fc jam  0x00000003 , 0x00000b7d 
+ 00012418  0x000005fd call  0x00007c27 
+ 00012419  0x000005fe force  0x00000000 , 0x0000003f 
+ 00012420  0x000005ff setflag  0x00000001 , 0x00000004 , 0x0000003f 
+ 00012421  0x00000600 store  0x00000001 , 0x0000004c 
+ 00012422  0x00000601 setarg  0x00000000 
+ 00012423  0x00000602 set1  0x00000001 , 0x0000003f 
+ 00012424  0x00000603 store  0x00000001 , 0x00000031 
+ 00012425  0x00000604 enable  0x00000029 
+ 00012426  0x00000605 call  0x000032bd 
+ 00012427  0x00000606 disable  0x00000029 
+ 00012428  0x00000607 force  0x00000004 , 0x00000007 
+ 00012429  0x00000608 fetch  0x00000002 , 0x00004159 
+ 00012430  0x00000609 call  0x00007e4c 
+ 00012431  0x0000060a branch  0x00003049 
+ 00012432  0x0000060c set0  0x00000025 , 0x00000000 
+ 00012433  0x0000060d bpatch  0x0000000b , 0x00004001 
+ 00012434  0x0000060e fetch  0x00000006 , 0x00004274 
+ 00012435  0x0000060f store  0x00000006 , 0x00000040 
+ 00012436  0x00000610 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012437  0x00000611 branch  0x00003099 , 0x00000001 
+ 00012438  0x00000612 force  0x00000007 , 0x00000002 
+ 00012439  0x00000613 call  0x00004826 
+ 00012440  0x00000614 branch  0x00003049 
+ 00012441  0x00000616 arg  0x00000103 , 0x00000005 
+ 00012442  0x00000617 arg  0x00000008 , 0x00000039 
+ 00012443  0x00000618 call  0x00007e3b 
+ 00012444  0x00000619 force  0x00000007 , 0x00000007 
+ 00012445  0x0000061a call  0x00004898 
+ 00012446  0x0000061b jam  0x00000004 , 0x00000b7d 
+ 00012447  0x0000061c call  0x00007c27 
+ 00012448  0x0000061d branch  0x00003049 
+ 00012449  0x00000625 rtnmark0  0x0000001c 
+ 00012450  0x00000626 force  0x00000002 , 0x00000007 
+ 00012451  0x00000627 call  0x00007e53 
+ 00012452  0x00000628 nsetflag  0x00000034 , 0x0000001c , 0x00000000 
+ 00012453  0x00000629 nbranch  0x000030a7 , 0x00000034 
+ 00012454  0x0000062a rtn 
+ 00012455  0x0000062f set0  0x00000025 , 0x00000000 
+ 00012456  0x00000630 bpatch  0x0000000c , 0x00004001 
+ 00012457  0x00000631 fetcht  0x00000002 , 0x0000415b 
+ 00012458  0x00000632 force  0x00000004 , 0x00000007 
+ 00012459  0x00000633 call  0x0000383d 
+ 00012460  0x00000634 rtn  0x00000028 
+ 00012461  0x00000635 call  0x00003a12 
+ 00012462  0x00000636 force  0x00000000 , 0x00000024 
+ 00012463  0x00000638 rtn  0x00000003 
+ 00012464  0x00000639 set0  0x0000000b , 0x00000000 
+ 00012465  0x0000063a set0  0x00000000 , 0x00000000 
+ 00012466  0x0000063c add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012467  0x0000063d isolate1  0x0000001e , 0x00000000 
+ 00012468  0x0000063e setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012469  0x0000063f compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012470  0x00000640 nbranch  0x000030d3 , 0x00000001 
+ 00012471  0x00000643 set0  0x00000025 , 0x00000000 
+ 00012472  0x00000644 bpatch  0x0000000d , 0x00004001 
+ 00012473  0x00000645 fetch  0x00000001 , 0x00000012 
+ 00012474  0x00000646 increase  0x00000001 , 0x0000003f 
+ 00012475  0x00000647 store  0x00000001 , 0x00000012 
+ 00012476  0x00000648 call  0x00003a49 
+ 00012477  0x00000649 call  0x00003a42 
+ 00012478  0x0000064a call  0x00003a66 
+ 00012479  0x0000064b call  0x00003bae 
+ 00012480  0x0000064c call  0x00003bb4 
+ 00012481  0x0000064d call  0x00003bc5 
+ 00012482  0x0000064e call  0x0000375c 
+ 00012483  0x0000064f call  0x000030c5 
+ 00012484  0x00000650 branch  0x000030af 
+ 00012485  0x00000653 set0  0x00000025 , 0x00000000 
+ 00012486  0x00000654 bpatch  0x0000000e , 0x00004001 
+ 00012487  0x00000655 fetch  0x00000001 , 0x0000008c 
+ 00012488  0x00000656 increase  0xffffffff , 0x0000003f 
+ 00012489  0x00000657 store  0x00000001 , 0x0000008c 
+ 00012490  0x00000658 rtn  0x00000002 
+ 00012491  0x00000659 jam  0x0000001f , 0x0000008c 
+ 00012492  0x0000065a fetch  0x00000001 , 0x0000008e 
+ 00012493  0x0000065b increase  0xffffffff , 0x0000003f 
+ 00012494  0x0000065c store  0x00000001 , 0x0000008e 
+ 00012495  0x0000065d rtn  0x00000002 
+ 00012496  0x0000065e setflip  0x0000001e , 0x00000000 
+ 00012497  0x0000065f jam  0x000000ff , 0x0000008e 
+ 00012498  0x00000660 rtn 
+ 00012499  0x00000663 set0  0x00000025 , 0x00000000 
+ 00012500  0x00000664 bpatch  0x0000000f , 0x00004001 
+ 00012501  0x00000665 call  0x00003a49 
+ 00012502  0x00000666 call  0x00003a3b 
+ 00012503  0x00000667 call  0x00003a66 
+ 00012504  0x00000668 call  0x00003bba 
+ 00012505  0x00000669 call  0x00003b3a 
+ 00012506  0x0000066a call  0x00003b63 
+ 00012507  0x0000066b branch  0x000030de , 0x00000018 
+ 00012508  0x0000066c call  0x000030c5 
+ 00012509  0x0000066d branch  0x000030b2 
+ 00012510  0x0000066f set0  0x00000025 , 0x00000000 
+ 00012511  0x00000670 bpatch  0x00000010 , 0x00004002 
+ 00012512  0x00000671 call  0x00003af3 
+ 00012513  0x00000672 call  0x00003bcd 
+ 00012514  0x00000673 call  0x000035e1 
+ 00012515  0x00000674 set0  0x00000001 , 0x00000000 
+ 00012516  0x00000675 rtnmark0  0x0000000b 
+ 00012517  0x00000677 set0  0x00000025 , 0x00000000 
+ 00012518  0x00000678 bpatch  0x00000011 , 0x00004002 
+ 00012519  0x00000679 fetch  0x00000001 , 0x000042a4 
+ 00012520  0x0000067a bbit1  0x00000000 , 0x00004221 
+ 00012521  0x0000067b call  0x0000477b 
+ 00012522  0x0000067d fetch  0x00000001 , 0x00000013 
+ 00012523  0x0000067e increase  0x00000001 , 0x0000003f 
+ 00012524  0x0000067f store  0x00000001 , 0x00000013 
+ 00012525  0x00000680 rtn 
+ 00012526  0x00000682 set0  0x0000000b , 0x00000000 
+ 00012527  0x00000683 call  0x000030fe 
+ 00012528  0x00000684 call  0x00003a49 
+ 00012529  0x00000685 call  0x00003a3b 
+ 00012530  0x00000686 call  0x000034e1 
+ 00012531  0x00000687 call  0x00003bba 
+ 00012532  0x00000688 call  0x00003b3a 
+ 00012533  0x00000689 call  0x00003b63 
+ 00012534  0x0000068a branch  0x000030f8 , 0x00000018 
+ 00012535  0x0000068b rtn 
+ 00012536  0x0000068d call  0x00003bcd 
+ 00012537  0x0000068e call  0x000035e1 
+ 00012538  0x0000068f set0  0x00000001 , 0x00000000 
+ 00012539  0x00000690 branch  0x000030e5 , 0x00000006 
+ 00012540  0x00000691 call  0x0000479b 
+ 00012541  0x00000692 branch  0x000030ea 
+ 00012542  0x00000695 arg  0x00000600 , 0x0000000b 
+ 00012543  0x00000697 until  0x00000023 , 0x00000026 
+ 00012544  0x00000698 and  0x00000022 , 0x00000003 , 0x0000003f 
+ 00012545  0x00000699 bne  0x00000001 , 0x000030ff 
+ 00012546  0x0000069a rtn 
+ 00012547  0x000006a4 set0  0x00000025 , 0x00000000 
+ 00012548  0x000006a5 bpatch  0x00000012 , 0x00004002 
+ 00012549  0x000006a6 enable  0x00000029 
+ 00012550  0x000006a7 enable  0x00000030 
+ 00012551  0x000006a8 fetch  0x00000002 , 0x00004155 
+ 00012552  0x000006a9 branch  0x0000310c , 0x00000034 
+ 00012553  0x000006aa force  0x0000000d , 0x00000007 
+ 00012554  0x000006ab call  0x00007e53 
+ 00012555  0x000006ac nrtn  0x00000034 
+ 00012556  0x000006ae set0  0x00000025 , 0x00000000 
+ 00012557  0x000006af bpatch  0x00000013 , 0x00004002 
+ 00012558  0x000006b0 fetcht  0x00000002 , 0x00004157 
+ 00012559  0x000006b1 force  0x00000028 , 0x00000007 
+ 00012560  0x000006b2 call  0x0000383d 
+ 00012561  0x000006b3 branch  0x0000314e , 0x00000028 
+ 00012562  0x000006b4 force  0x00000004 , 0x00000007 
+ 00012563  0x000006b5 call  0x00007e53 
+ 00012564  0x000006b6 nbranch  0x00003127 , 0x00000034 
+ 00012565  0x000006b7 fetch  0x00000001 , 0x0000004c 
+ 00012566  0x000006b8 bbit1  0x00000004 , 0x0000311a 
+ 00012567  0x000006b9 force  0x00000004 , 0x00000002 
+ 00012568  0x000006ba call  0x00004826 
+ 00012569  0x000006bb branch  0x0000311f 
+ 00012570  0x000006bd arg  0x00000103 , 0x00000005 
+ 00012571  0x000006be arg  0x00000008 , 0x00000039 
+ 00012572  0x000006bf call  0x00007e3b 
+ 00012573  0x000006c0 force  0x00000004 , 0x00000007 
+ 00012574  0x000006c1 call  0x00004898 
+ 00012575  0x000006c3 set0  0x00000025 , 0x00000000 
+ 00012576  0x000006c4 bpatch  0x00000014 , 0x00004002 
+ 00012577  0x000006c5 jam  0x00000000 , 0x00000030 
+ 00012578  0x000006c6 call  0x00005b63 
+ 00012579  0x000006c7 jam  0x00000000 , 0x000047f3 
+ 00012580  0x000006c8 jam  0x00000013 , 0x00000b7d 
+ 00012581  0x000006c9 call  0x00007c27 
+ 00012582  0x000006ca branch  0x0000314e 
+ 00012583  0x000006cd set0  0x00000025 , 0x00000000 
+ 00012584  0x000006ce bpatch  0x00000015 , 0x00004002 
+ 00012585  0x000006cf force  0x00000000 , 0x0000000b 
+ 00012586  0x000006d0 until  0x00000023 , 0x00000026 
+ 00012587  0x000006d1 fetch  0x00000001 , 0x000000f4 
+ 00012588  0x000006d2 increase  0xffffffff , 0x0000003f 
+ 00012589  0x000006d3 ixor  0x00000022 , 0x0000003f 
+ 00012590  0x000006d4 compare  0x00000000 , 0x0000003f , 0x00000003 
+ 00012591  0x000006d5 nbranch  0x00003127 , 0x00000001 
+ 00012592  0x000006d6 deposit  0x00000004 
+ 00012593  0x000006d7 store  0x00000001 , 0x0000018b 
+ 00012594  0x000006d8 force  0x00000000 , 0x00000026 
+ 00012595  0x000006d9 force  0x00000000 , 0x00000024 
+ 00012596  0x000006dc set0  0x00000025 , 0x00000000 
+ 00012597  0x000006dd bpatch  0x00000016 , 0x00004002 
+ 00012598  0x000006de branch  0x0000314e , 0x00000003 
+ 00012599  0x000006df call  0x00003a4d 
+ 00012600  0x000006e0 arg  0x00000600 , 0x0000000b 
+ 00012601  0x000006e1 until  0x00000023 , 0x00000026 
+ 00012602  0x000006e3 set0  0x00000025 , 0x00000000 
+ 00012603  0x000006e4 bpatch  0x00000017 , 0x00004002 
+ 00012604  0x000006e5 fetch  0x00000004 , 0x000000f4 
+ 00012605  0x000006e6 iforce  0x00000021 
+ 00012606  0x000006e7 increase  0x00000001 , 0x0000003f 
+ 00012607  0x000006e8 store  0x00000004 , 0x000000f4 
+ 00012608  0x000006e9 isolate1  0x0000000c , 0x00000000 
+ 00012609  0x000006ea setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012610  0x000006eb compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012611  0x000006ec nbranch  0x00003164 , 0x00000001 
+ 00012612  0x000006ed fetch  0x00000001 , 0x0000000c 
+ 00012613  0x000006ee increase  0x00000001 , 0x0000003f 
+ 00012614  0x000006ef store  0x00000001 , 0x0000000c 
+ 00012615  0x000006f0 call  0x00003a42 
+ 00012616  0x000006f1 call  0x00003bae 
+ 00012617  0x000006f2 call  0x00003bb4 
+ 00012618  0x000006f3 call  0x00003bc5 
+ 00012619  0x000006f4 call  0x0000375c 
+ 00012620  0x000006f5 call  0x00003155 
+ 00012621  0x000006f6 branch  0x00003134 
+ 00012622  0x000006f9 set0  0x00000025 , 0x00000000 
+ 00012623  0x000006fa bpatch  0x00000018 , 0x00004003 
+ 00012624  0x000006fb disable  0x00000029 
+ 00012625  0x000006fc fetch  0x00000002 , 0x00004155 
+ 00012626  0x000006fd rtn  0x00000034 
+ 00012627  0x000006fe force  0x0000000d , 0x00000007 
+ 00012628  0x000006ff branch  0x00007e4c 
+ 00012629  0x00000702 set0  0x00000025 , 0x00000000 
+ 00012630  0x00000703 bpatch  0x00000019 , 0x00004003 
+ 00012631  0x00000704 fetch  0x00000001 , 0x0000008d 
+ 00012632  0x00000705 increase  0xffffffff , 0x0000003f 
+ 00012633  0x00000706 store  0x00000001 , 0x0000008d 
+ 00012634  0x00000707 rtn  0x00000002 
+ 00012635  0x00000708 jam  0x0000001f , 0x0000008d 
+ 00012636  0x00000709 fetch  0x00000001 , 0x000000f2 
+ 00012637  0x0000070a increase  0xffffffff , 0x0000003f 
+ 00012638  0x0000070b store  0x00000001 , 0x000000f2 
+ 00012639  0x0000070c rtn  0x00000002 
+ 00012640  0x0000070d setflip  0x0000000c , 0x00000000 
+ 00012641  0x0000070e fetch  0x00000001 , 0x00004146 
+ 00012642  0x0000070f store  0x00000001 , 0x000000f2 
+ 00012643  0x00000710 rtn 
+ 00012644  0x00000713 set0  0x00000025 , 0x00000000 
+ 00012645  0x00000714 bpatch  0x0000001a , 0x00004003 
+ 00012646  0x00000715 call  0x00003a3b 
+ 00012647  0x00000716 call  0x00003bba 
+ 00012648  0x00000717 call  0x00003b3a 
+ 00012649  0x00000718 call  0x00003b63 
+ 00012650  0x00000719 branch  0x0000316d , 0x00000018 
+ 00012651  0x0000071a call  0x00003155 
+ 00012652  0x0000071b branch  0x0000313a 
+ 00012653  0x0000071d call  0x0000375c 
+ 00012654  0x0000071e fetch  0x00000001 , 0x0000000d 
+ 00012655  0x0000071f increase  0x00000001 , 0x0000003f 
+ 00012656  0x00000720 store  0x00000001 , 0x0000000d 
+ 00012657  0x00000721 force  0x00000000 , 0x0000001b 
+ 00012658  0x00000722 fetch  0x00000004 , 0x000000f4 
+ 00012659  0x00000724 set0  0x00000025 , 0x00000000 
+ 00012660  0x00000725 bpatch  0x0000001b , 0x00004003 
+ 00012661  0x00000726 call  0x00003bac 
+ 00012662  0x00000727 call  0x00003a4d 
+ 00012663  0x00000728 increase  0x00000001 , 0x00000026 
+ 00012664  0x0000072a and_into  0x000001fd , 0x00000021 
+ 00012665  0x0000072b and_into  0x000001fc , 0x00000024 
+ 00012666  0x0000072c call  0x00003a42 
+ 00012667  0x0000072d call  0x00003bae 
+ 00012668  0x0000072e call  0x00003bb4 
+ 00012669  0x0000072f call  0x00003bc5 
+ 00012670  0x00000730 deposit  0x00000022 
+ 00012671  0x00000731 store  0x00000004 , 0x0000016b 
+ 00012672  0x00000732 force  0x00000000 , 0x00000004 
+ 00012673  0x00000733 force  0x00000002 , 0x00000001 
+ 00012674  0x00000734 call  0x00003bcd 
+ 00012675  0x00000735 call  0x000038c1 
+ 00012676  0x00000737 set0  0x00000025 , 0x00000000 
+ 00012677  0x00000738 bpatch  0x0000001c , 0x00004003 
+ 00012678  0x00000739 call  0x00003baa 
+ 00012679  0x0000073a or_into  0x00000002 , 0x00000021 
+ 00012680  0x0000073b and_into  0x000001fc , 0x00000024 
+ 00012681  0x0000073c call  0x00003a3b 
+ 00012682  0x0000073d call  0x00003bba 
+ 00012683  0x0000073e call  0x00003b3a 
+ 00012684  0x0000073f call  0x00003b63 
+ 00012685  0x00000740 call  0x0000375c , 0x00000018 
+ 00012686  0x00000741 branch  0x00003194 , 0x00000018 
+ 00012687  0x00000742 fetch  0x00000001 , 0x00000010 
+ 00012688  0x00000743 branch  0x00003134 , 0x00000034 
+ 00012689  0x00000744 increase  0xffffffff , 0x0000003f 
+ 00012690  0x00000745 store  0x00000001 , 0x00000010 
+ 00012691  0x00000746 branch  0x00003173 
+ 00012692  0x00000749 set0  0x00000025 , 0x00000000 
+ 00012693  0x0000074a bpatch  0x0000001d , 0x00004003 
+ 00012694  0x0000074b fetch  0x00000001 , 0x0000000e 
+ 00012695  0x0000074c increase  0x00000001 , 0x0000003f 
+ 00012696  0x0000074d store  0x00000001 , 0x0000000e 
+ 00012697  0x0000074e call  0x000034ed 
+ 00012698  0x00000750 call  0x0000338b 
+ 00012699  0x00000751 branch  0x0000319f , 0x00000018 
+ 00012700  0x00000752 call  0x0000350e 
+ 00012701  0x00000753 nbranch  0x0000319a , 0x00000034 
+ 00012702  0x00000754 branch  0x00003134 
+ 00012703  0x00000757 set0  0x00000025 , 0x00000000 
+ 00012704  0x00000758 bpatch  0x0000001e , 0x00004003 
+ 00012705  0x00000759 fetch  0x00000001 , 0x00000030 
+ 00012706  0x0000075a set0  0x00000003 , 0x0000003f 
+ 00012707  0x0000075b store  0x00000001 , 0x00000030 
+ 00012708  0x0000075c call  0x000034f9 
+ 00012709  0x0000075d disable  0x00000029 
+ 00012710  0x0000075e rtn 
+ 00012711  0x00000762 set0  0x00000025 , 0x00000000 
+ 00012712  0x00000763 bpatch  0x0000001f , 0x00004003 
+ 00012713  0x00000764 enable  0x00000029 
+ 00012714  0x00000765 enable  0x00000030 
+ 00012715  0x00000766 call  0x0000324e 
+ 00012716  0x00000767 rtn  0x00000028 
+ 00012717  0x00000768 call  0x00003e25 
+ 00012718  0x00000769 call  0x00003bac 
+ 00012719  0x0000076a add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012720  0x0000076b call  0x00003a54 
+ 00012721  0x0000076c force  0x00000003 , 0x00000024 
+ 00012722  0x0000076d call  0x0000327c 
+ 00012723  0x0000076e call  0x00006a54 
+ 00012724  0x0000076f call  0x00006e10 
+ 00012725  0x00000770 call  0x00003547 
+ 00012726  0x00000771 call  0x00003a42 
+ 00012727  0x00000772 call  0x00003bae 
+ 00012728  0x00000773 call  0x00003bb4 
+ 00012729  0x00000774 call  0x00003bc5 
+ 00012730  0x00000775 call  0x000038bf 
+ 00012731  0x00000777 set0  0x00000025 , 0x00000000 
+ 00012732  0x00000778 bpatch  0x00000020 , 0x00004004 
+ 00012733  0x00000779 call  0x00005b78 
+ 00012734  0x0000077a call  0x00004995 
+ 00012735  0x0000077b call  0x000048a9 
+ 00012736  0x0000077c call  0x0000337c 
+ 00012737  0x0000077d nbranch  0x000031c7 , 0x0000002d 
+ 00012738  0x0000077e call  0x00003bec 
+ 00012739  0x0000077f call  0x00003870 
+ 00012740  0x00000780 fetch  0x00000001 , 0x0000000f 
+ 00012741  0x00000781 increase  0x00000001 , 0x0000003f 
+ 00012742  0x00000782 store  0x00000001 , 0x0000000f 
+ 00012743  0x00000784 set0  0x00000025 , 0x00000000 
+ 00012744  0x00000785 bpatch  0x00000021 , 0x00004004 
+ 00012745  0x00000786 call  0x00006dec 
+ 00012746  0x00000787 call  0x000031d5 
+ 00012747  0x00000788 nrtn  0x00000029 
+ 00012748  0x00000789 call  0x00003812 
+ 00012749  0x0000078a nbranch  0x000031d2 , 0x00000034 
+ 00012750  0x0000078c call  0x00006a5c 
+ 00012751  0x0000078d call  0x00003290 
+ 00012752  0x0000078e disable  0x00000029 
+ 00012753  0x0000078f rtn 
+ 00012754  0x00000792 call  0x00003547 
+ 00012755  0x00000793 call  0x00003371 
+ 00012756  0x00000794 branch  0x000031bb 
+ 00012757  0x00000798 branch  0x000031d8 , 0x0000002d 
+ 00012758  0x00000799 call  0x00003be2 
+ 00012759  0x0000079a branch  0x000031e6 , 0x00000002 
+ 00012760  0x0000079c call  0x00003204 
+ 00012761  0x0000079d nbranch  0x000031e6 , 0x00000028 
+ 00012762  0x0000079e fetch  0x00000001 , 0x0000004c 
+ 00012763  0x0000079f rtnbit0  0x00000004 
+ 00012764  0x000007a0 rtnbit1  0x00000003 
+ 00012765  0x000007a1 fetch  0x00000001 , 0x0000004b 
+ 00012766  0x000007a2 rtnbit1  0x00000003 
+ 00012767  0x000007a3 call  0x0000320d 
+ 00012768  0x000007a4 nrtn  0x00000034 
+ 00012769  0x000007a5 fetch  0x00000001 , 0x00000178 
+ 00012770  0x000007a6 increase  0xffffffff , 0x0000003f 
+ 00012771  0x000007a7 store  0x00000001 , 0x00000178 
+ 00012772  0x000007a8 nrtn  0x00000034 
+ 00012773  0x000007a9 branch  0x00005ed5 
+ 00012774  0x000007ac set0  0x00000025 , 0x00000000 
+ 00012775  0x000007ad bpatch  0x00000022 , 0x00004004 
+ 00012776  0x000007ae call  0x00003516 
+ 00012777  0x000007af disable  0x00000029 
+ 00012778  0x000007b0 fetch  0x00000001 , 0x0000004c 
+ 00012779  0x000007b1 bbit1  0x00000004 , 0x000031f2 
+ 00012780  0x000007b2 fetch  0x00000001 , 0x00000030 
+ 00012781  0x000007b3 bbit0  0x00000004 , 0x000031f0 
+ 00012782  0x000007b4 fetcht  0x00000001 , 0x00000046 
+ 00012783  0x000007b5 branch  0x000048c4 
+ 00012784  0x000007b7 force  0x00000008 , 0x00000002 
+ 00012785  0x000007b8 branch  0x00004826 
+ 00012786  0x000007ba force  0x00000000 , 0x00000007 
+ 00012787  0x000007bb fetch  0x00000001 , 0x0000004c 
+ 00012788  0x000007bc bbit1  0x00000003 , 0x00004898 
+ 00012789  0x000007be force  0x00000004 , 0x00000007 
+ 00012790  0x000007bf arg  0x00000103 , 0x00000005 
+ 00012791  0x000007c0 arg  0x00000008 , 0x00000039 
+ 00012792  0x000007c1 call  0x00007e3b 
+ 00012793  0x000007c2 branch  0x00004898 
+ 00012794  0x000007c5 set0  0x00000025 , 0x00000000 
+ 00012795  0x000007c6 bpatch  0x00000023 , 0x00004004 
+ 00012796  0x000007c7 fetch  0x00000001 , 0x00000030 
+ 00012797  0x000007c8 rtnbit0  0x00000002 
+ 00012798  0x000007c9 fetcht  0x00000001 , 0x00000046 
+ 00012799  0x000007ca fetch  0x00000001 , 0x000000ac 
+ 00012800  0x000007cb isub  0x00000002 , 0x0000003e 
+ 00012801  0x000007cc nrtn  0x00000005 
+ 00012802  0x000007cd call  0x00003869 
+ 00012803  0x000007ce branch  0x00003293 
+ 00012804  0x000007d1 set0  0x00000025 , 0x00000000 
+ 00012805  0x000007d2 bpatch  0x00000024 , 0x00004004 
+ 00012806  0x000007d3 enable  0x00000028 
+ 00012807  0x000007d4 fetch  0x00000001 , 0x0000004b 
+ 00012808  0x000007d5 rtnbit0  0x00000003 
+ 00012809  0x000007d6 call  0x0000320d 
+ 00012810  0x000007d7 nrtn  0x00000034 
+ 00012811  0x000007d9 disable  0x00000028 
+ 00012812  0x000007da rtn 
+ 00012813  0x000007dd fetch  0x00000001 , 0x00000072 
+ 00012814  0x000007de increase  0xffffffff , 0x0000003f 
+ 00012815  0x000007df store  0x00000001 , 0x00000072 
+ 00012816  0x000007e0 rtn 
+ 00012817  0x000007e3 set0  0x00000025 , 0x00000000 
+ 00012818  0x000007e4 bpatch  0x00000025 , 0x00004004 
+ 00012819  0x000007e5 fetch  0x00000001 , 0x00000030 
+ 00012820  0x000007e6 bbit1  0x00000007 , 0x0000321f 
+ 00012821  0x000007e7 fetch  0x00000001 , 0x00004132 
+ 00012822  0x000007e8 beq  0x00000001 , 0x0000321d 
+ 00012823  0x000007e9 fetch  0x00000001 , 0x000007e1 
+ 00012824  0x000007ea branch  0x0000321f , 0x00000034 
+ 00012825  0x000007eb jam  0x00000000 , 0x000007e1 
+ 00012826  0x000007ec jam  0x00000018 , 0x00000b7d 
+ 00012827  0x000007ed call  0x00007c27 
+ 00012828  0x000007ee branch  0x0000321f 
+ 00012829  0x000007f0 call  0x00006216 
+ 00012830  0x000007f1 ncall  0x00004852 , 0x00000001 
+ 00012831  0x000007f3 set0  0x00000025 , 0x00000000 
+ 00012832  0x000007f4 bpatch  0x00000026 , 0x00004004 
+ 00012833  0x000007f5 call  0x000032f0 
+ 00012834  0x000007f6 fetch  0x00000001 , 0x00000030 
+ 00012835  0x000007f7 set1  0x00000007 , 0x0000003f 
+ 00012836  0x000007f8 store  0x00000001 , 0x00000030 
+ 00012837  0x000007f9 jam  0x00000001 , 0x0000425e 
+ 00012838  0x000007fa fetch  0x00000001 , 0x00000055 
+ 00012839  0x000007fb bne  0x00000016 , 0x00003228 
+ 00012840  0x000007fd rtn 
+ 00012841  0x00000800 jam  0x00000001 , 0x000007e1 
+ 00012842  0x00000802 fetch  0x00000001 , 0x00000030 
+ 00012843  0x00000803 set0  0x00000007 , 0x0000003f 
+ 00012844  0x00000804 store  0x00000001 , 0x00000030 
+ 00012845  0x00000805 rtn 
+ 00012846  0x0000080a set0  0x00000025 , 0x00000000 
+ 00012847  0x0000080b bpatch  0x00000027 , 0x00004004 
+ 00012848  0x0000080c disable  0x00000028 
+ 00012849  0x0000080d fetch  0x00000001 , 0x00000030 
+ 00012850  0x0000080e rtnbit0  0x00000001 
+ 00012851  0x0000080f fetch  0x00000002 , 0x00000032 
+ 00012852  0x00000810 nrtn  0x00000034 
+ 00012853  0x00000811 fetch  0x00000004 , 0x00000034 
+ 00012854  0x00000812 branch  0x00003239 , 0x00000030 
+ 00012855  0x00000813 isub  0x00000028 , 0x0000003f 
+ 00012856  0x00000814 branch  0x0000323a 
+ 00012857  0x00000816 isub  0x00000022 , 0x0000003f 
+ 00012858  0x00000818 sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00012859  0x00000819 nrtn  0x00000002 
+ 00012860  0x0000081a fetch  0x00000001 , 0x00000030 
+ 00012861  0x0000081b set0  0x00000001 , 0x0000003f 
+ 00012862  0x0000081c store  0x00000001 , 0x00000030 
+ 00012863  0x0000081d enable  0x00000028 
+ 00012864  0x0000081e rtn 
+ 00012865  0x00000822 copy  0x0000003f , 0x00000002 
+ 00012866  0x00000823 set0  0x00000025 , 0x00000000 
+ 00012867  0x00000824 bpatch  0x00000028 , 0x00004005 
+ 00012868  0x00000825 store  0x00000004 , 0x00000034 
+ 00012869  0x00000827 jam  0x00000001 , 0x00004748 
+ 00012870  0x00000828 fetch  0x00000001 , 0x00000030 
+ 00012871  0x00000829 set1  0x00000001 , 0x0000003f 
+ 00012872  0x0000082a store  0x00000001 , 0x00000030 
+ 00012873  0x0000082b force  0x00000000 , 0x0000003f 
+ 00012874  0x0000082c store  0x00000002 , 0x00000032 
+ 00012875  0x0000082d jam  0x0000000a , 0x0000008a 
+ 00012876  0x0000082e jam  0x00000001 , 0x00000073 
+ 00012877  0x0000082f rtn 
+ 00012878  0x00000833 set0  0x00000025 , 0x00000000 
+ 00012879  0x00000834 bpatch  0x00000029 , 0x00004005 
+ 00012880  0x00000835 call  0x0000322e 
+ 00012881  0x00000836 nrtn  0x00000028 
+ 00012882  0x00000837 disable  0x00000028 
+ 00012883  0x00000838 jam  0x00000020 , 0x00000011 
+ 00012884  0x00000839 set0  0x0000000b , 0x00000000 
+ 00012885  0x0000083b call  0x00003bac 
+ 00012886  0x0000083c call  0x0000337f 
+ 00012887  0x0000083d bmark1  0x0000000b , 0x00003263 
+ 00012888  0x0000083e call  0x0000350e 
+ 00012889  0x0000083f nbranch  0x00003255 , 0x00000034 
+ 00012890  0x00000841 set0  0x00000025 , 0x00000000 
+ 00012891  0x00000842 bpatch  0x0000002a , 0x00004005 
+ 00012892  0x00000843 disable  0x00000028 
+ 00012893  0x00000844 deposit  0x00000022 
+ 00012894  0x00000845 store  0x00000004 , 0x0000416a 
+ 00012895  0x00000846 enable  0x00000030 
+ 00012896  0x00000847 enable  0x00000029 
+ 00012897  0x00000848 jam  0x0000002a , 0x00000b7d 
+ 00012898  0x00000849 branch  0x00007c27 
+ 00012899  0x0000084c set0  0x00000025 , 0x00000000 
+ 00012900  0x0000084d bpatch  0x0000002b , 0x00004005 
+ 00012901  0x0000084e call  0x00003baa 
+ 00012902  0x0000084f call  0x00003374 
+ 00012903  0x00000850 disable  0x00000030 
+ 00012904  0x00000851 disable  0x00000029 
+ 00012905  0x00000852 call  0x00003982 
+ 00012906  0x00000853 call  0x000034ed 
+ 00012907  0x00000855 set0  0x00000025 , 0x00000000 
+ 00012908  0x00000856 bpatch  0x0000002c , 0x00004005 
+ 00012909  0x00000857 call  0x00003539 
+ 00012910  0x00000858 branch  0x00003272 , 0x0000002d 
+ 00012911  0x00000859 call  0x0000350e 
+ 00012912  0x0000085a nbranch  0x0000326b , 0x00000034 
+ 00012913  0x0000085b branch  0x0000325a 
+ 00012914  0x0000085d force  0x00000001 , 0x00000002 
+ 00012915  0x0000085e call  0x0000487f 
+ 00012916  0x0000085f fetch  0x00000001 , 0x00000031 
+ 00012917  0x00000860 set0  0x00000001 , 0x0000003f 
+ 00012918  0x00000861 store  0x00000001 , 0x00000031 
+ 00012919  0x00000862 call  0x00003bec 
+ 00012920  0x00000863 call  0x000039ac 
+ 00012921  0x00000864 enable  0x00000028 
+ 00012922  0x00000865 jam  0x0000002b , 0x00000b7d 
+ 00012923  0x00000866 branch  0x00007c27 
+ 00012924  0x0000086a set0  0x00000025 , 0x00000000 
+ 00012925  0x0000086b bpatch  0x0000002d , 0x00004005 
+ 00012926  0x0000086c rtnmark0  0x00000007 
+ 00012927  0x0000086d fetch  0x00000001 , 0x00000030 
+ 00012928  0x0000086e rtnbit0  0x00000002 
+ 00012929  0x00000870 call  0x00003c23 
+ 00012930  0x00000871 fetch  0x00000001 , 0x000000b3 
+ 00012931  0x00000872 fetcht  0x00000001 , 0x00000047 
+ 00012932  0x00000873 storet  0x00000001 , 0x000000b4 
+ 00012933  0x00000874 store  0x00000001 , 0x00000047 
+ 00012934  0x00000875 deposit  0x00000004 
+ 00012935  0x00000876 store  0x00000001 , 0x000000b2 
+ 00012936  0x00000877 fetch  0x00000001 , 0x000041f9 
+ 00012937  0x00000878 iforce  0x00000004 
+ 00012938  0x00000879 set0  0x00000008 , 0x00000000 
+ 00012939  0x0000087a fetch  0x00000001 , 0x00004165 
+ 00012940  0x0000087b store  0x00000001 , 0x00004167 
+ 00012941  0x0000087c fetch  0x00000001 , 0x00004166 
+ 00012942  0x0000087d store  0x00000001 , 0x00004165 
+ 00012943  0x0000087e rtn 
+ 00012944  0x00000881 set0  0x00000025 , 0x00000000 
+ 00012945  0x00000882 bpatch  0x0000002e , 0x00004005 
+ 00012946  0x00000883 rtnmark0  0x00000007 
+ 00012947  0x00000885 call  0x00003847 
+ 00012948  0x00000886 nrtn  0x00000001 
+ 00012949  0x00000888 call  0x00003799 
+ 00012950  0x00000889 fetch  0x00000001 , 0x000000b4 
+ 00012951  0x0000088a fetcht  0x00000001 , 0x00000047 
+ 00012952  0x0000088b store  0x00000001 , 0x00000047 
+ 00012953  0x0000088c storet  0x00000001 , 0x000000b3 
+ 00012954  0x0000088d fetch  0x00000001 , 0x000000b2 
+ 00012955  0x0000088e iforce  0x00000004 
+ 00012956  0x0000088f fetch  0x00000001 , 0x00004165 
+ 00012957  0x00000890 store  0x00000001 , 0x00004166 
+ 00012958  0x00000891 fetch  0x00000001 , 0x00004167 
+ 00012959  0x00000892 store  0x00000001 , 0x00004165 
+ 00012960  0x00000893 setarg  0x0000ffff 
+ 00012961  0x00000894 store  0x00000002 , 0x00004168 
+ 00012962  0x00000895 rtn 
+ 00012963  0x0000089b set0  0x00000025 , 0x00000000 
+ 00012964  0x0000089c bpatch  0x0000002f , 0x00004005 
+ 00012965  0x0000089d set1  0x00000009 , 0x00000000 
+ 00012966  0x0000089e deposit  0x00000011 
+ 00012967  0x0000089f store  0x00000002 , 0x0000001e 
+ 00012968  0x000008a0 force  0x00000050 , 0x00000039 
+ 00012969  0x000008a1 arg  0x000003c0 , 0x00000005 
+ 00012970  0x000008a2 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012971  0x000008a3 ifetch  0x00000001 , 0x00000006 
+ 00012972  0x000008a4 copy  0x00000011 , 0x00000006 
+ 00012973  0x000008a5 bbit1  0x00000000 , 0x00007e45 
+ 00012974  0x000008a6 arg  0x00000030 , 0x00000005 
+ 00012975  0x000008a7 call  0x00007e45 
+ 00012976  0x000008a8 disable  0x0000002e 
+ 00012977  0x000008a9 fetch  0x00000001 , 0x00000077 
+ 00012978  0x000008aa iforce  0x00000004 
+ 00012979  0x000008ab jam  0x00000001 , 0x0000008a 
+ 00012980  0x000008ac branch  0x000032b6 , 0x00000029 
+ 00012981  0x000008ad jam  0x00000001 , 0x0000008a 
+ 00012982  0x000008af fetch  0x00000001 , 0x00000030 
+ 00012983  0x000008b0 rtnbit0  0x00000001 
+ 00012984  0x000008b1 fetch  0x00000001 , 0x00000073 
+ 00012985  0x000008b2 store  0x00000001 , 0x0000008a 
+ 00012986  0x000008b3 fetch  0x00000001 , 0x00000074 
+ 00012987  0x000008b4 store  0x00000001 , 0x0000008b 
+ 00012988  0x000008b5 rtn 
+ 00012989  0x000008b8 set0  0x00000025 , 0x00000000 
+ 00012990  0x000008b9 bpatch  0x00000030 , 0x00004006 
+ 00012991  0x000008ba fetch  0x00000002 , 0x0000001e 
+ 00012992  0x000008bb iforce  0x00000005 
+ 00012993  0x000008bc force  0x00000050 , 0x00000039 
+ 00012994  0x000008bd arg  0x000003c0 , 0x00000006 
+ 00012995  0x000008be branch  0x00007e45 , 0x00000036 
+ 00012996  0x000008bf arg  0x00000030 , 0x00000006 
+ 00012997  0x000008c0 branch  0x00007e45 
+ 00012998  0x000008c5 fetcht  0x00000001 , 0x00000015 
+ 00012999  0x000008c6 arg  0x00000003 , 0x00000039 
+ 00013000  0x000008c8 increase  0x00000001 , 0x00000002 
+ 00013001  0x000008c9 compare  0x00000003 , 0x00000002 , 0x000000ff 
+ 00013002  0x000008ca nbranch  0x000032cc , 0x00000001 
+ 00013003  0x000008cb arg  0x00000000 , 0x00000002 
+ 00013004  0x000008cd storet  0x00000001 , 0x00000015 
+ 00013005  0x000008ce mul32  0x00000002 , 0x00000050 , 0x0000003f 
+ 00013006  0x000008cf arg  0x00004040 , 0x00000011 
+ 00013007  0x000008d0 iadd  0x00000011 , 0x00000011 
+ 00013008  0x000008d1 ifetch  0x00000001 , 0x00000011 
+ 00013009  0x000008d2 bbit1  0x00000001 , 0x000032d4 
+ 00013010  0x000008d3 rtnbit1  0x00000000 
+ 00013011  0x000008d4 rtnbit1  0x00000003 
+ 00013012  0x000008d6 loop  0x000032c8 
+ 00013013  0x000008d7 rtn 
+ 00013014  0x000008da set0  0x00000025 , 0x00000000 
+ 00013015  0x000008db bpatch  0x00000031 , 0x00004006 
+ 00013016  0x000008dc arg  0x0000330b , 0x00000013 
+ 00013017  0x000008dd call  0x00003301 
+ 00013018  0x000008de nrtn  0x00000005 
+ 00013019  0x000008df deposit  0x00000011 
+ 00013020  0x000008e0 store  0x00000002 , 0x0000001e 
+ 00013021  0x000008e1 force  0x00000000 , 0x0000003e 
+ 00013022  0x000008e2 rtn 
+ 00013023  0x000008e7 call  0x00003847 
+ 00013024  0x000008e8 branch  0x000032e7 , 0x00000001 
+ 00013025  0x000008e9 fetch  0x00000002 , 0x0000001e 
+ 00013026  0x000008ea add  0x0000003f , 0x00000017 , 0x00000005 
+ 00013027  0x000008eb fetch  0x00000001 , 0x00000047 
+ 00013028  0x000008ec istore  0x00000001 , 0x00000005 
+ 00013029  0x000008ed arg  0x00003334 , 0x00000013 
+ 00013030  0x000008ee branch  0x00003301 
+ 00013031  0x000008f1 fetch  0x00000001 , 0x00000047 
+ 00013032  0x000008f2 isolate1  0x00000003 , 0x0000003f 
+ 00013033  0x000008f3 branch  0x000032ec , 0x00000001 
+ 00013034  0x000008f4 force  0x00000001 , 0x0000003e 
+ 00013035  0x000008f5 rtn 
+ 00013036  0x000008f7 force  0x00000000 , 0x0000003e 
+ 00013037  0x000008f8 rtn 
+ 00013038  0x000008fc arg  0x00003331 , 0x00000013 
+ 00013039  0x000008fd branch  0x00003301 
+ 00013040  0x00000900 fetcht  0x00000002 , 0x0000001e 
+ 00013041  0x00000901 arg  0x00003366 , 0x00000013 
+ 00013042  0x00000902 branch  0x00003301 
+ 00013043  0x00000905 fetcht  0x00000002 , 0x0000001e 
+ 00013044  0x00000906 arg  0x00003359 , 0x00000013 
+ 00013045  0x00000907 branch  0x00003301 
+ 00013046  0x0000090b fetcht  0x00000001 , 0x00004273 
+ 00013047  0x0000090d arg  0x00003316 , 0x00000013 
+ 00013048  0x0000090e branch  0x00003301 
+ 00013049  0x00000911 set0  0x00000025 , 0x00000000 
+ 00013050  0x00000912 bpatch  0x00000032 , 0x00004006 
+ 00013051  0x00000913 fetcht  0x00000006 , 0x00004274 
+ 00013052  0x00000915 arg  0x0000330f , 0x00000013 
+ 00013053  0x00000916 branch  0x00003301 
+ 00013054  0x00000919 arg  0x0000331c , 0x00000013 
+ 00013055  0x0000091a branch  0x00003301 
+ 00013056  0x0000091d arg  0x00003350 , 0x00000013 
+ 00013057  0x0000091f set0  0x00000025 , 0x00000000 
+ 00013058  0x00000920 bpatch  0x00000033 , 0x00004006 
+ 00013059  0x00000921 arg  0x00004040 , 0x00000011 
+ 00013060  0x00000922 force  0x00000003 , 0x00000039 
+ 00013061  0x00000924 ifetch  0x00000001 , 0x00000011 
+ 00013062  0x00000925 copy  0x00000013 , 0x0000003d 
+ 00013063  0x00000927 increase  0x00000050 , 0x00000011 
+ 00013064  0x00000928 loop  0x00003305 
+ 00013065  0x00000929 force  0x00000001 , 0x0000003e 
+ 00013066  0x0000092a rtn 
+ 00013067  0x0000092d bbit1  0x00000000 , 0x00003307 
+ 00013068  0x0000092e bbit1  0x00000003 , 0x00003307 
+ 00013069  0x0000092f force  0x00000000 , 0x0000003e 
+ 00013070  0x00000930 rtn 
+ 00013071  0x00000933 bbit1  0x00000003 , 0x00003311 
+ 00013072  0x00000934 bbit0  0x00000000 , 0x00003307 
+ 00013073  0x00000936 add  0x00000011 , 0x00000010 , 0x00000006 
+ 00013074  0x00000937 ifetch  0x00000006 , 0x00000006 
+ 00013075  0x00000938 isub  0x00000002 , 0x0000003e 
+ 00013076  0x00000939 rtn  0x00000005 
+ 00013077  0x0000093a branch  0x00003307 
+ 00013078  0x0000093d bbit0  0x00000000 , 0x00003307 
+ 00013079  0x0000093e add  0x00000011 , 0x00000016 , 0x00000006 
+ 00013080  0x0000093f ifetch  0x00000001 , 0x00000006 
+ 00013081  0x00000940 isub  0x00000002 , 0x0000003e 
+ 00013082  0x00000941 rtn  0x00000005 
+ 00013083  0x00000942 branch  0x00003307 
+ 00013084  0x00000945 bbit0  0x00000001 , 0x00003307 
+ 00013085  0x00000947 call  0x0000333d 
+ 00013086  0x00000948 bbit1  0x0000001b , 0x00003322 
+ 00013087  0x00000949 isolate0  0x0000001b , 0x00000002 
+ 00013088  0x0000094a branch  0x00003322 , 0x00000001 
+ 00013089  0x0000094b set1  0x0000001c , 0x0000003f 
+ 00013090  0x0000094d isub  0x00000002 , 0x0000003f 
+ 00013091  0x0000094e increase  0x00000001 , 0x0000003f 
+ 00013092  0x0000094f branch  0x0000332b , 0x00000002 
+ 00013093  0x00000950 increase  0x00000005 , 0x0000003f 
+ 00013094  0x00000951 nbranch  0x00003307 , 0x00000002 
+ 00013095  0x00000953 copy  0x00000002 , 0x00000021 
+ 00013096  0x00000954 call  0x00003349 
+ 00013097  0x00000955 force  0x00000000 , 0x0000003e 
+ 00013098  0x00000956 rtn 
+ 00013099  0x00000959 iforce  0x00000012 
+ 00013100  0x0000095a add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013101  0x0000095b ifetch  0x00000002 , 0x00000006 
+ 00013102  0x0000095c branch  0x00003327 , 0x00000034 
+ 00013103  0x0000095d call  0x00003349 
+ 00013104  0x0000095e branch  0x0000331d 
+ 00013105  0x00000961 bbit0  0x00000000 , 0x00003307 
+ 00013106  0x00000962 force  0x00000000 , 0x0000003e 
+ 00013107  0x00000963 rtn 
+ 00013108  0x00000966 bbit0  0x00000000 , 0x00003307 
+ 00013109  0x00000967 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013110  0x00000968 ifetch  0x00000001 , 0x00000006 
+ 00013111  0x00000969 bbit1  0x00000000 , 0x00003307 
+ 00013112  0x0000096a add  0x00000011 , 0x00000017 , 0x00000006 
+ 00013113  0x0000096b ifetch  0x00000001 , 0x00000006 
+ 00013114  0x0000096c bbit0  0x00000003 , 0x00003307 
+ 00013115  0x0000096d force  0x00000000 , 0x0000003e 
+ 00013116  0x0000096e rtn 
+ 00013117  0x00000971 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013118  0x00000972 ifetcht  0x00000001 , 0x00000006 
+ 00013119  0x00000973 deposit  0x00000022 
+ 00013120  0x00000974 isolate1  0x00000001 , 0x00000002 
+ 00013121  0x00000975 add  0x00000011 , 0x00000004 , 0x00000006 
+ 00013122  0x00000976 ifetcht  0x00000004 , 0x00000006 
+ 00013123  0x00000977 rtn  0x00000001 
+ 00013124  0x00000978 add  0x00000011 , 0x00000008 , 0x00000006 
+ 00013125  0x00000979 ifetch  0x00000006 , 0x00000006 
+ 00013126  0x0000097a call  0x000039c0 
+ 00013127  0x0000097b deposit  0x00000028 
+ 00013128  0x0000097c rtn 
+ 00013129  0x0000097f add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013130  0x00000980 add  0x00000011 , 0x00000004 , 0x00000005 
+ 00013131  0x00000981 ifetch  0x00000002 , 0x00000006 
+ 00013132  0x00000982 iadd  0x00000002 , 0x0000000b 
+ 00013133  0x00000983 deposit  0x0000000b 
+ 00013134  0x00000984 istore  0x00000004 , 0x00000005 
+ 00013135  0x00000985 branch  0x00005434 
+ 00013136  0x00000989 bbit0  0x00000001 , 0x00003307 
+ 00013137  0x0000098a call  0x0000333d 
+ 00013138  0x0000098b iadd  0x0000001b , 0x0000003f 
+ 00013139  0x0000098c iadd  0x0000001b , 0x0000003f 
+ 00013140  0x0000098d iadd  0x00000007 , 0x0000003f 
+ 00013141  0x0000098e isub  0x00000002 , 0x0000003e 
+ 00013142  0x0000098f nbranch  0x00003307 , 0x00000002 
+ 00013143  0x00000990 force  0x00000000 , 0x0000003e 
+ 00013144  0x00000991 rtn 
+ 00013145  0x00000994 bbit0  0x00000000 , 0x00003307 
+ 00013146  0x00000995 deposit  0x00000002 
+ 00013147  0x00000996 isub  0x00000011 , 0x0000003e 
+ 00013148  0x00000997 branch  0x00003307 , 0x0000003e 
+ 00013149  0x00000998 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013150  0x00000999 ifetch  0x00000001 , 0x00000006 
+ 00013151  0x0000099a bbit1  0x00000000 , 0x00003307 
+ 00013152  0x0000099b add  0x00000011 , 0x00000018 , 0x00000005 
+ 00013153  0x0000099c ifetch  0x00000001 , 0x00000005 
+ 00013154  0x0000099d nbranch  0x00003307 , 0x00000034 
+ 00013155  0x0000099e force  0x0000002d , 0x0000003f 
+ 00013156  0x0000099f istore  0x00000001 , 0x00000005 
+ 00013157  0x000009a0 branch  0x00003307 
+ 00013158  0x000009a3 bbit0  0x00000000 , 0x00003307 
+ 00013159  0x000009a4 deposit  0x00000002 
+ 00013160  0x000009a5 isub  0x00000011 , 0x0000003e 
+ 00013161  0x000009a6 branch  0x00003307 , 0x0000003e 
+ 00013162  0x000009a7 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013163  0x000009a8 ifetch  0x00000001 , 0x00000006 
+ 00013164  0x000009a9 bbit1  0x00000000 , 0x00003307 
+ 00013165  0x000009aa ifetch  0x00000001 , 0x00000011 
+ 00013166  0x000009ab set0  0x00000007 , 0x0000003f 
+ 00013167  0x000009ac istore  0x00000001 , 0x00000011 
+ 00013168  0x000009ad branch  0x00003307 
+ 00013169  0x000009b1 set0  0x00000025 , 0x00000000 
+ 00013170  0x000009b2 bpatch  0x00000034 , 0x00004006 
+ 00013171  0x000009b3 call  0x00003bac 
+ 00013172  0x000009b5 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013173  0x000009b6 call  0x00003a54 
+ 00013174  0x000009b7 force  0x00000003 , 0x00000024 
+ 00013175  0x000009b8 call  0x00003a42 
+ 00013176  0x000009b9 call  0x00003bae 
+ 00013177  0x000009ba call  0x00003bb4 
+ 00013178  0x000009bb call  0x00003bc5 
+ 00013179  0x000009bc branch  0x000038bf 
+ 00013180  0x000009bf set0  0x00000025 , 0x00000000 
+ 00013181  0x000009c0 bpatch  0x00000035 , 0x00004006 
+ 00013182  0x000009c1 call  0x00003baa 
+ 00013183  0x000009c3 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013184  0x000009c4 call  0x00003a54 
+ 00013185  0x000009c5 force  0x00000003 , 0x00000024 
+ 00013186  0x000009c6 call  0x00003a3b 
+ 00013187  0x000009c7 call  0x000034e1 
+ 00013188  0x000009c8 call  0x00003b41 
+ 00013189  0x000009c9 call  0x00003bba 
+ 00013190  0x000009ca call  0x00003b3a 
+ 00013191  0x000009cc call  0x00003b63 
+ 00013192  0x000009cd nrtn  0x00000018 
+ 00013193  0x000009ce call  0x00003af3 
+ 00013194  0x000009cf branch  0x000035df 
+ 00013195  0x000009d4 set0  0x00000025 , 0x00000000 
+ 00013196  0x000009d5 bpatch  0x00000036 , 0x00004006 
+ 00013197  0x000009d6 fetch  0x00000001 , 0x0000018b 
+ 00013198  0x000009d7 iforce  0x00000004 
+ 00013199  0x000009d8 force  0x00000001 , 0x00000001 
+ 00013200  0x000009d9 call  0x00003371 
+ 00013201  0x000009da branch  0x0000337c 
+ 00013202  0x000009e6 fetch  0x00000001 , 0x00004133 
+ 00013203  0x000009e7 rtnbit0  0x00000000 
+ 00013204  0x000009e8 force  0x00000005 , 0x00000007 
+ 00013205  0x000009e9 call  0x00007e53 
+ 00013206  0x000009ea nrtn  0x00000034 
+ 00013207  0x000009eb fetcht  0x00000002 , 0x0000414d 
+ 00013208  0x000009ec force  0x00000004 , 0x00000007 
+ 00013209  0x000009ed call  0x0000383d 
+ 00013210  0x000009ee rtn  0x00000028 
+ 00013211  0x000009ef call  0x000033a2 
+ 00013212  0x000009f0 force  0x00000005 , 0x00000007 
+ 00013213  0x000009f1 fetch  0x00000002 , 0x0000414f 
+ 00013214  0x000009f2 nbranch  0x00007e4c , 0x00000018 
+ 00013215  0x000009f3 random  0x0000003f 
+ 00013216  0x000009f4 iand  0x00000035 , 0x0000003f 
+ 00013217  0x000009f5 branch  0x00007e4c 
+ 00013218  0x000009f9 set0  0x00000025 , 0x00000000 
+ 00013219  0x000009fa bpatch  0x00000037 , 0x00004006 
+ 00013220  0x000009fb jam  0x00000000 , 0x0000018b 
+ 00013221  0x000009fc disable  0x00000030 
+ 00013222  0x000009fd disable  0x0000002e 
+ 00013223  0x000009fe call  0x00003a12 
+ 00013224  0x000009ff and  0x00000022 , 0x000001fc , 0x00000021 
+ 00013225  0x00000a00 force  0x00000001 , 0x00000024 
+ 00013226  0x00000a01 call  0x00003a49 
+ 00013227  0x00000a02 call  0x00003a3b 
+ 00013228  0x00000a03 setflip  0x0000001d , 0x00000000 
+ 00013229  0x00000a04 fetch  0x00000001 , 0x00000006 
+ 00013230  0x00000a05 increase  0x00000001 , 0x0000003f 
+ 00013231  0x00000a06 store  0x00000001 , 0x00000006 
+ 00013232  0x00000a07 call  0x00003a66 
+ 00013233  0x00000a08 call  0x00003b3a 
+ 00013234  0x00000a09 call  0x00003b6b 
+ 00013235  0x00000a0a nrtn  0x00000018 
+ 00013236  0x00000a0b set0  0x00000025 , 0x00000000 
+ 00013237  0x00000a0c bpatch  0x00000038 , 0x00004007 
+ 00013238  0x00000a0d force  0x00000000 , 0x0000001b 
+ 00013239  0x00000a0e call  0x00003a6d 
+ 00013240  0x00000a0f fetch  0x00000001 , 0x00000007 
+ 00013241  0x00000a10 increase  0x00000001 , 0x0000003f 
+ 00013242  0x00000a11 store  0x00000001 , 0x00000007 
+ 00013243  0x00000a12 call  0x00003a49 
+ 00013244  0x00000a13 call  0x00003baa 
+ 00013245  0x00000a14 or_into  0x00000002 , 0x00000021 
+ 00013246  0x00000a15 force  0x00000001 , 0x00000024 
+ 00013247  0x00000a16 call  0x00003a42 
+ 00013248  0x00000a17 call  0x00003a66 
+ 00013249  0x00000a18 call  0x00003bae 
+ 00013250  0x00000a19 call  0x00003bbf 
+ 00013251  0x00000a1a deposit  0x00000022 
+ 00013252  0x00000a1b store  0x00000004 , 0x0000016b 
+ 00013253  0x00000a1c call  0x00003bc5 
+ 00013254  0x00000a1d force  0x00000002 , 0x00000001 
+ 00013255  0x00000a1e force  0x00000000 , 0x00000004 
+ 00013256  0x00000a1f call  0x00003bcd 
+ 00013257  0x00000a20 call  0x000038c1 
+ 00013258  0x00000a21 call  0x000033ce 
+ 00013259  0x00000a22 and_into  0x000001fd , 0x00000021 
+ 00013260  0x00000a23 increase  0x00000001 , 0x00000026 
+ 00013261  0x00000a24 rtn 
+ 00013262  0x00000a27 set0  0x00000025 , 0x00000000 
+ 00013263  0x00000a28 bpatch  0x00000039 , 0x00004007 
+ 00013264  0x00000a29 fetch  0x00000001 , 0x00004172 
+ 00013265  0x00000a2a rtn  0x00000034 
+ 00013266  0x00000a2b arg  0x000001bc , 0x00000005 
+ 00013267  0x00000a2c fetch  0x00000001 , 0x00004702 
+ 00013268  0x00000a2d copy  0x0000003f , 0x00000039 
+ 00013269  0x00000a2e increase  0x00000001 , 0x0000003f 
+ 00013270  0x00000a2f istore  0x00000001 , 0x00000005 
+ 00013271  0x00000a30 copy  0x00000005 , 0x00000002 
+ 00013272  0x00000a31 increase  0x00000001 , 0x0000003f 
+ 00013273  0x00000a32 store  0x00000002 , 0x00000091 
+ 00013274  0x00000a33 copy  0x00000002 , 0x00000005 
+ 00013275  0x00000a34 setarg  0x00000009 
+ 00013276  0x00000a35 istore  0x00000001 , 0x00000005 
+ 00013277  0x00000a36 arg  0x00004703 , 0x00000006 
+ 00013278  0x00000a37 call  0x00007e45 
+ 00013279  0x00000a38 arg  0x00004771 , 0x00000013 
+ 00013280  0x00000a39 arg  0x00000004 , 0x00000039 
+ 00013281  0x00000a3a call  0x000033f1 
+ 00013282  0x00000a3b arg  0x0000475b , 0x00000013 
+ 00013283  0x00000a3c arg  0x00000001 , 0x00000039 
+ 00013284  0x00000a3d call  0x000033f1 
+ 00013285  0x00000a3e force  0x0000000a , 0x00000001 
+ 00013286  0x00000a3f jam  0x00000002 , 0x00000090 
+ 00013287  0x00000a40 setarg  0x000001bc 
+ 00013288  0x00000a41 store  0x00000002 , 0x00000179 
+ 00013289  0x00000a42 call  0x00003baa 
+ 00013290  0x00000a43 call  0x00003a42 
+ 00013291  0x00000a44 call  0x00003bae 
+ 00013292  0x00000a45 call  0x00003bbf 
+ 00013293  0x00000a46 call  0x00003bc5 
+ 00013294  0x00000a47 call  0x00003bcd 
+ 00013295  0x00000a48 call  0x000038c1 
+ 00013296  0x00000a49 rtn 
+ 00013297  0x00000a4d copy  0x00000005 , 0x00000002 
+ 00013298  0x00000a4e copy  0x00000013 , 0x00000006 
+ 00013299  0x00000a4f ifetch  0x00000001 , 0x00000006 
+ 00013300  0x00000a50 rtn  0x00000034 
+ 00013301  0x00000a52 lshift  0x0000003f , 0x0000003f 
+ 00013302  0x00000a53 loop  0x000033f5 
+ 00013303  0x00000a54 copy  0x0000003f , 0x00000011 
+ 00013304  0x00000a55 increase  0x00000002 , 0x0000003f 
+ 00013305  0x00000a56 copy  0x0000003f , 0x00000007 
+ 00013306  0x00000a57 fetch  0x00000002 , 0x00000091 
+ 00013307  0x00000a58 iadd  0x00000007 , 0x0000003f 
+ 00013308  0x00000a59 store  0x00000002 , 0x00000091 
+ 00013309  0x00000a5a copy  0x00000002 , 0x00000005 
+ 00013310  0x00000a5b copy  0x00000011 , 0x0000003f 
+ 00013311  0x00000a5c increase  0x00000001 , 0x0000003f 
+ 00013312  0x00000a5d istore  0x00000001 , 0x00000005 
+ 00013313  0x00000a5e copy  0x00000013 , 0x00000006 
+ 00013314  0x00000a5f ifetch  0x00000001 , 0x00000006 
+ 00013315  0x00000a60 ifetch  0x00000001 , 0x00000006 
+ 00013316  0x00000a61 istore  0x00000001 , 0x00000005 
+ 00013317  0x00000a62 copy  0x00000011 , 0x00000039 
+ 00013318  0x00000a63 branch  0x00007e45 
+ 00013319  0x00000a6a fetch  0x00000001 , 0x00004133 
+ 00013320  0x00000a6b rtnbit0  0x00000001 
+ 00013321  0x00000a6c force  0x00000006 , 0x00000007 
+ 00013322  0x00000a6d call  0x00007e53 
+ 00013323  0x00000a6e nrtn  0x00000034 
+ 00013324  0x00000a6f fetcht  0x00000002 , 0x00004151 
+ 00013325  0x00000a70 force  0x00000028 , 0x00000007 
+ 00013326  0x00000a71 call  0x0000383d 
+ 00013327  0x00000a72 rtn  0x00000028 
+ 00013328  0x00000a73 force  0x00000000 , 0x00000004 
+ 00013329  0x00000a74 jam  0x00000008 , 0x00000010 
+ 00013330  0x00000a75 set0  0x0000000b , 0x00000000 
+ 00013331  0x00000a76 call  0x00003417 
+ 00013332  0x00000a77 force  0x00000006 , 0x00000007 
+ 00013333  0x00000a78 fetch  0x00000002 , 0x00004153 
+ 00013334  0x00000a79 branch  0x00007e4c 
+ 00013335  0x00000a7d set0  0x00000025 , 0x00000000 
+ 00013336  0x00000a7e bpatch  0x0000003a , 0x00004007 
+ 00013337  0x00000a7f disable  0x00000030 
+ 00013338  0x00000a80 call  0x00003a12 
+ 00013339  0x00000a81 fetch  0x00000001 , 0x00000008 
+ 00013340  0x00000a82 increase  0x00000001 , 0x0000003f 
+ 00013341  0x00000a83 store  0x00000001 , 0x00000008 
+ 00013342  0x00000a84 force  0x00000000 , 0x00000026 
+ 00013343  0x00000a85 call  0x00003a54 
+ 00013344  0x00000a86 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013345  0x00000a87 force  0x00000002 , 0x00000024 
+ 00013346  0x00000a88 set0  0x00000025 , 0x00000000 
+ 00013347  0x00000a89 bpatch  0x0000003b , 0x00004007 
+ 00013348  0x00000a8a call  0x00003a3b 
+ 00013349  0x00000a8b call  0x00003b3a 
+ 00013350  0x00000a8c call  0x00003b6b 
+ 00013351  0x00000a8d nrtn  0x00000018 
+ 00013352  0x00000a8e call  0x00003a6d 
+ 00013353  0x00000a8f fetch  0x00000001 , 0x00000009 
+ 00013354  0x00000a90 increase  0x00000001 , 0x0000003f 
+ 00013355  0x00000a91 store  0x00000001 , 0x00000009 
+ 00013356  0x00000a92 force  0x00000000 , 0x0000001b 
+ 00013357  0x00000a93 call  0x00003baa 
+ 00013358  0x00000a94 or_into  0x00000002 , 0x00000021 
+ 00013359  0x00000a95 force  0x00000001 , 0x00000024 
+ 00013360  0x00000a96 call  0x00003a42 
+ 00013361  0x00000a97 call  0x00003bae 
+ 00013362  0x00000a98 call  0x00003bbf 
+ 00013363  0x00000a99 call  0x00003bc5 
+ 00013364  0x00000a9a call  0x0000375c 
+ 00013365  0x00000a9b force  0x00000000 , 0x00000004 
+ 00013366  0x00000a9c arg  0x00000600 , 0x0000000b 
+ 00013367  0x00000a9d until  0x00000029 , 0x00000026 
+ 00013368  0x00000a9e or_into  0x00000003 , 0x00000028 
+ 00013369  0x00000a9f and_into  0x000001fd , 0x00000021 
+ 00013370  0x00000aa1 set0  0x00000025 , 0x00000000 
+ 00013371  0x00000aa2 bpatch  0x0000003c , 0x00004007 
+ 00013372  0x00000aa3 increase  0x00000001 , 0x00000026 
+ 00013373  0x00000aa4 call  0x00003a3b 
+ 00013374  0x00000aa5 call  0x00003b3a 
+ 00013375  0x00000aa6 call  0x00003b5d 
+ 00013376  0x00000aa7 nbranch  0x00003444 , 0x00000018 
+ 00013377  0x00000aa8 call  0x00003bcd 
+ 00013378  0x00000aa9 call  0x000035e1 
+ 00013379  0x00000aaa bmark1  0x0000000b , 0x0000344c 
+ 00013380  0x00000aac set0  0x00000025 , 0x00000000 
+ 00013381  0x00000aad bpatch  0x0000003d , 0x00004007 
+ 00013382  0x00000aae fetch  0x00000001 , 0x00000010 
+ 00013383  0x00000aaf rtn  0x00000034 
+ 00013384  0x00000ab0 increase  0xffffffff , 0x0000003f 
+ 00013385  0x00000ab1 store  0x00000001 , 0x00000010 
+ 00013386  0x00000ab2 call  0x00003bac 
+ 00013387  0x00000ab3 branch  0x0000343a 
+ 00013388  0x00000ab7 set0  0x00000025 , 0x00000000 
+ 00013389  0x00000ab8 bpatch  0x0000003e , 0x00004007 
+ 00013390  0x00000ab9 set0  0x00000001 , 0x00000028 
+ 00013391  0x00000aba set1  0x00000000 , 0x00000028 
+ 00013392  0x00000abb fetch  0x00000001 , 0x0000000a 
+ 00013393  0x00000abc increase  0x00000001 , 0x0000003f 
+ 00013394  0x00000abd store  0x00000001 , 0x0000000a 
+ 00013395  0x00000abe call  0x00003baa 
+ 00013396  0x00000abf or_into  0x00000002 , 0x00000021 
+ 00013397  0x00000ac0 call  0x00003a42 
+ 00013398  0x00000ac1 call  0x00003bae 
+ 00013399  0x00000ac2 call  0x00003bbf 
+ 00013400  0x00000ac3 call  0x00003bc5 
+ 00013401  0x00000ac4 call  0x0000375c 
+ 00013402  0x00000ac6 compare  0x00000003 , 0x00000028 , 0x00000003 
+ 00013403  0x00000ac7 branch  0x0000345e , 0x00000001 
+ 00013404  0x00000ac8 until  0x0000003e , 0x00000017 
+ 00013405  0x00000ac9 branch  0x0000345a 
+ 00013406  0x00000acb fetch  0x00000004 , 0x0000016f 
+ 00013407  0x00000acc or_into  0x00000003 , 0x0000003f 
+ 00013408  0x00000acd icopy  0x00000028 
+ 00013409  0x00000ad0 set0  0x00000025 , 0x00000000 
+ 00013410  0x00000ad1 bpatch  0x0000003f , 0x00004007 
+ 00013411  0x00000ad2 fetch  0x00000006 , 0x00000182 
+ 00013412  0x00000ad3 store  0x00000006 , 0x00000040 
+ 00013413  0x00000ad4 call  0x000034ed 
+ 00013414  0x00000ad6 call  0x00003539 
+ 00013415  0x00000ad7 branch  0x0000346b , 0x0000002d 
+ 00013416  0x00000ad8 call  0x0000350e 
+ 00013417  0x00000ad9 nbranch  0x00003466 , 0x00000034 
+ 00013418  0x00000ada rtn 
+ 00013419  0x00000ade set0  0x00000025 , 0x00000000 
+ 00013420  0x00000adf bpatch  0x00000040 , 0x00004008 
+ 00013421  0x00000ae0 call  0x000034f9 
+ 00013422  0x00000ae1 call  0x000032d6 
+ 00013423  0x00000ae2 nrtn  0x00000005 
+ 00013424  0x00000ae3 jam  0x00000000 , 0x00000031 
+ 00013425  0x00000ae4 call  0x000039ac 
+ 00013426  0x00000ae5 branch  0x000032bd 
+ 00013427  0x00000ae9 set0  0x00000025 , 0x00000000 
+ 00013428  0x00000aea bpatch  0x00000041 , 0x00004008 
+ 00013429  0x00000aeb call  0x000039bc 
+ 00013430  0x00000aec call  0x000034a5 
+ 00013431  0x00000aed rtn  0x00000028 
+ 00013432  0x00000aee call  0x0000327c 
+ 00013433  0x00000aef call  0x00006a54 
+ 00013434  0x00000af1 set0  0x00000025 , 0x00000000 
+ 00013435  0x00000af2 bpatch  0x00000042 , 0x00004008 
+ 00013436  0x00000af3 call  0x00003e25 
+ 00013437  0x00000af4 call  0x00006dec 
+ 00013438  0x00000af5 call  0x000035d6 
+ 00013439  0x00000af6 call  0x00007f39 
+ 00013440  0x00000af7 nbranch  0x0000348d , 0x0000002d 
+ 00013441  0x00000af8 call  0x00003bec 
+ 00013442  0x00000af9 call  0x00003870 
+ 00013443  0x00000afa call  0x00006e10 
+ 00013444  0x00000afb call  0x00003547 
+ 00013445  0x00000afc call  0x000038b1 
+ 00013446  0x00000afd call  0x00005b78 
+ 00013447  0x00000afe call  0x00004995 
+ 00013448  0x00000aff call  0x000048a9 
+ 00013449  0x00000b00 fetch  0x00000001 , 0x0000000b 
+ 00013450  0x00000b01 increase  0x00000001 , 0x0000003f 
+ 00013451  0x00000b02 store  0x00000001 , 0x0000000b 
+ 00013452  0x00000b03 call  0x000039ac 
+ 00013453  0x00000b05 set0  0x00000025 , 0x00000000 
+ 00013454  0x00000b06 bpatch  0x00000043 , 0x00004008 
+ 00013455  0x00000b07 call  0x00003d61 
+ 00013456  0x00000b08 call  0x00003be2 
+ 00013457  0x00000b09 branch  0x00003498 , 0x00000002 
+ 00013458  0x00000b0a call  0x00003204 
+ 00013459  0x00000b0b nbranch  0x00003498 , 0x00000028 
+ 00013460  0x00000b0c call  0x00003812 
+ 00013461  0x00000b0d nbranch  0x0000347a , 0x00000034 
+ 00013462  0x00000b0e call  0x00006a5c 
+ 00013463  0x00000b0f branch  0x00003290 
+ 00013464  0x00000b13 set0  0x00000025 , 0x00000000 
+ 00013465  0x00000b14 bpatch  0x00000044 , 0x00004008 
+ 00013466  0x00000b15 jam  0x00000000 , 0x00000153 
+ 00013467  0x00000b16 jam  0x00000000 , 0x00000189 
+ 00013468  0x00000b17 call  0x00003516 
+ 00013469  0x00000b18 set0  0x00000011 , 0x00000000 
+ 00013470  0x00000b19 call  0x00007f8a 
+ 00013471  0x00000b1a fetch  0x00000001 , 0x00000030 
+ 00013472  0x00000b1b bbit0  0x00000004 , 0x000034a3 
+ 00013473  0x00000b1c fetcht  0x00000001 , 0x00000046 
+ 00013474  0x00000b1d branch  0x000048c4 
+ 00013475  0x00000b20 force  0x00000006 , 0x00000002 
+ 00013476  0x00000b21 branch  0x00004826 
+ 00013477  0x00000b24 set0  0x00000025 , 0x00000000 
+ 00013478  0x00000b25 bpatch  0x00000045 , 0x00004008 
+ 00013479  0x00000b26 call  0x0000322e 
+ 00013480  0x00000b27 nrtn  0x00000028 
+ 00013481  0x00000b28 copy  0x00000004 , 0x00000002 
+ 00013482  0x00000b29 call  0x00003bd1 
+ 00013483  0x00000b2a store  0x00000001 , 0x0000018b 
+ 00013484  0x00000b2b copy  0x00000002 , 0x00000004 
+ 00013485  0x00000b2c jam  0x00000020 , 0x00000011 
+ 00013486  0x00000b2e set0  0x00000025 , 0x00000000 
+ 00013487  0x00000b2f bpatch  0x00000046 , 0x00004008 
+ 00013488  0x00000b30 call  0x00003bac 
+ 00013489  0x00000b31 force  0x00000002 , 0x00000001 
+ 00013490  0x00000b32 call  0x000038a8 
+ 00013491  0x00000b33 deposit  0x00000022 
+ 00013492  0x00000b34 store  0x00000004 , 0x0000016b 
+ 00013493  0x00000b35 call  0x000038bf 
+ 00013494  0x00000b36 call  0x00003baa 
+ 00013495  0x00000b37 enable  0x0000002f 
+ 00013496  0x00000b38 call  0x000035b7 
+ 00013497  0x00000b39 branch  0x000034c1 , 0x00000018 
+ 00013498  0x00000b3a call  0x00003a6d 
+ 00013499  0x00000b3b call  0x0000350e 
+ 00013500  0x00000b3c nbranch  0x000034ae , 0x00000034 
+ 00013501  0x00000b3d rtnmark0  0x00000004 
+ 00013502  0x00000b3e jam  0x00000034 , 0x0000007c 
+ 00013503  0x00000b3f set1  0x00000003 , 0x00000000 
+ 00013504  0x00000b40 rtn 
+ 00013505  0x00000b42 enable  0x00000030 
+ 00013506  0x00000b43 call  0x000034ed 
+ 00013507  0x00000b44 call  0x00003a12 
+ 00013508  0x00000b46 set0  0x00000025 , 0x00000000 
+ 00013509  0x00000b47 bpatch  0x00000047 , 0x00004008 
+ 00013510  0x00000b48 call  0x0000338b 
+ 00013511  0x00000b49 branch  0x000034ce , 0x00000018 
+ 00013512  0x00000b4a call  0x0000350e 
+ 00013513  0x00000b4b nbranch  0x000034c4 , 0x00000034 
+ 00013514  0x00000b4c disable  0x00000030 
+ 00013515  0x00000b4d deposit  0x00000028 
+ 00013516  0x00000b4e store  0x00000004 , 0x0000416a 
+ 00013517  0x00000b4f rtn 
+ 00013518  0x00000b51 force  0x00000000 , 0x00000002 
+ 00013519  0x00000b52 call  0x0000487f 
+ 00013520  0x00000b53 enable  0x00000029 
+ 00013521  0x00000b54 bmark0  0x00000004 , 0x000034d6 
+ 00013522  0x00000b55 set0  0x00000004 , 0x00000000 
+ 00013523  0x00000b56 jam  0x00000003 , 0x0000007c 
+ 00013524  0x00000b57 jam  0x00000033 , 0x0000007d 
+ 00013525  0x00000b58 call  0x00006212 
+ 00013526  0x00000b5a deposit  0x00000004 
+ 00013527  0x00000b5b store  0x00000001 , 0x00000077 
+ 00013528  0x00000b5c force  0x00000000 , 0x0000003f 
+ 00013529  0x00000b5d store  0x00000006 , 0x00000038 
+ 00013530  0x00000b5e fetch  0x00000001 , 0x00000031 
+ 00013531  0x00000b5f set1  0x00000001 , 0x0000003f 
+ 00013532  0x00000b60 store  0x00000001 , 0x00000031 
+ 00013533  0x00000b61 call  0x00003bec 
+ 00013534  0x00000b62 disable  0x00000029 
+ 00013535  0x00000b64 enable  0x00000028 
+ 00013536  0x00000b65 rtn 
+ 00013537  0x00000b6a set0  0x00000025 , 0x00000000 
+ 00013538  0x00000b6b bpatch  0x00000048 , 0x00004009 
+ 00013539  0x00000b6c disable  0x0000002d 
+ 00013540  0x00000b6d set0  0x00000005 , 0x00000000 
+ 00013541  0x00000b6e set0  0x0000000a , 0x00000000 
+ 00013542  0x00000b6f set0  0x00000010 , 0x00000000 
+ 00013543  0x00000b70 set0  0x0000000f , 0x00000000 
+ 00013544  0x00000b71 fetch  0x00000001 , 0x00000047 
+ 00013545  0x00000b72 set0  0x00000005 , 0x0000003f 
+ 00013546  0x00000b73 set1  0x00000004 , 0x0000003f 
+ 00013547  0x00000b74 store  0x00000001 , 0x00000047 
+ 00013548  0x00000b75 rtn 
+ 00013549  0x00000b78 set0  0x00000025 , 0x00000000 
+ 00013550  0x00000b79 bpatch  0x00000049 , 0x00004009 
+ 00013551  0x00000b7a jam  0x00000020 , 0x00000011 
+ 00013552  0x00000b7b jam  0x00000050 , 0x00000047 
+ 00013553  0x00000b7c fetch  0x00000002 , 0x0000415f 
+ 00013554  0x00000b7d store  0x00000002 , 0x0000003e 
+ 00013555  0x00000b7e deposit  0x00000022 
+ 00013556  0x00000b7f store  0x00000004 , 0x0000416a 
+ 00013557  0x00000b80 rtn  0x00000030 
+ 00013558  0x00000b81 deposit  0x00000028 
+ 00013559  0x00000b82 store  0x00000004 , 0x0000416a 
+ 00013560  0x00000b83 rtn 
+ 00013561  0x00000b86 set0  0x00000025 , 0x00000000 
+ 00013562  0x00000b87 bpatch  0x0000004a , 0x00004009 
+ 00013563  0x00000b88 call  0x00005b6f 
+ 00013564  0x00000b89 call  0x00003512 
+ 00013565  0x00000b8a store  0x00000001 , 0x00000046 
+ 00013566  0x00000b8b setarg  0x00001c80 
+ 00013567  0x00000b8c store  0x00000002 , 0x00000051 
+ 00013568  0x00000b8d fetch  0x00000001 , 0x00000030 
+ 00013569  0x00000b8e set1  0x00000000 , 0x0000003f 
+ 00013570  0x00000b8f store  0x00000001 , 0x00000030 
+ 00013571  0x00000b90 jam  0x00000000 , 0x0000004b 
+ 00013572  0x00000b91 jam  0x00000000 , 0x0000004c 
+ 00013573  0x00000b92 jam  0x00000000 , 0x000000a2 
+ 00013574  0x00000b93 branch  0x00003bec 
+ 00013575  0x00000b97 set0  0x00000025 , 0x00000000 
+ 00013576  0x00000b98 bpatch  0x0000004b , 0x00004009 
+ 00013577  0x00000b99 force  0x00000000 , 0x0000003f 
+ 00013578  0x00000b9a store  0x00000008 , 0x00004262 
+ 00013579  0x00000b9b istore  0x00000008 , 0x00000005 
+ 00013580  0x00000b9c call  0x0000322a 
+ 00013581  0x00000b9d branch  0x000032f0 
+ 00013582  0x00000ba0 fetch  0x00000001 , 0x00000011 
+ 00013583  0x00000ba1 increase  0xffffffff , 0x0000003f 
+ 00013584  0x00000ba2 store  0x00000001 , 0x00000011 
+ 00013585  0x00000ba3 rtn 
+ 00013586  0x00000ba6 fetch  0x00000001 , 0x00004170 
+ 00013587  0x00000ba7 increase  0x00000001 , 0x0000003f 
+ 00013588  0x00000ba8 store  0x00000001 , 0x00004170 
+ 00013589  0x00000ba9 rtn 
+ 00013590  0x00000bad set0  0x00000025 , 0x00000000 
+ 00013591  0x00000bae bpatch  0x0000004c , 0x00004009 
+ 00013592  0x00000baf call  0x000031fa 
+ 00013593  0x00000bb0 fetch  0x00000001 , 0x00004272 
+ 00013594  0x00000bb1 beq  0x00000003 , 0x0000351d 
+ 00013595  0x00000bb2 fetch  0x00000001 , 0x00000048 
+ 00013596  0x00000bb3 bne  0x00000001 , 0x00003521 
+ 00013597  0x00000bb5 call  0x000049be 
+ 00013598  0x00000bb6 nbranch  0x00003521 , 0x00000005 
+ 00013599  0x00000bb7 call  0x000031f5 
+ 00013600  0x00000bb8 jam  0x00000000 , 0x00004272 
+ 00013601  0x00000bba set0  0x00000025 , 0x00000000 
+ 00013602  0x00000bbb bpatch  0x0000004d , 0x00004009 
+ 00013603  0x00000bbc call  0x00003f18 
+ 00013604  0x00000bbd call  0x00004995 
+ 00013605  0x00000bbe call  0x00003806 
+ 00013606  0x00000bbf jam  0x00000002 , 0x00000b7d 
+ 00013607  0x00000bc0 call  0x00007c27 
+ 00013608  0x00000bc1 call  0x00005b63 
+ 00013609  0x00000bc2 call  0x00004d99 
+ 00013610  0x00000bc3 call  0x00007719 
+ 00013611  0x00000bc4 fetch  0x00000001 , 0x00000030 
+ 00013612  0x00000bc5 set0  0x00000000 
+ 00013613  0x00000bc6 store  0x00000001 , 0x00000030 
+ 00013614  0x00000bc7 jam  0x00000000 , 0x000047f3 
+ 00013615  0x00000bc9 fetch  0x00000001 , 0x0000004c 
+ 00013616  0x00000bca compare  0x00000000 , 0x0000003f , 0x000000c0 
+ 00013617  0x00000bcb branch  0x00003533 , 0x00000001 
+ 00013618  0x00000bcc set0  0x00000001 , 0x00000000 
+ 00013619  0x00000bce fetch  0x00000001 , 0x00000047 
+ 00013620  0x00000bcf bbit0  0x00000003 , 0x00003535 
+ 00013621  0x00000bd1 fetch  0x00000001 , 0x0000004b 
+ 00013622  0x00000bd2 rtnbit0  0x00000006 
+ 00013623  0x00000bd3 set0  0x00000002 , 0x00000000 
+ 00013624  0x00000bd4 rtn 
+ 00013625  0x00000bd7 set0  0x00000025 , 0x00000000 
+ 00013626  0x00000bd8 bpatch  0x0000004e , 0x00004009 
+ 00013627  0x00000bd9 fetch  0x00000001 , 0x0000017e 
+ 00013628  0x00000bda rtn  0x00000034 
+ 00013629  0x00000bdb icopy  0x00000004 
+ 00013630  0x00000bdc call  0x000035d6 
+ 00013631  0x00000bdd nrtn  0x0000002d 
+ 00013632  0x00000bde force  0x00000000 , 0x00000001 
+ 00013633  0x00000bdf call  0x000038b1 
+ 00013634  0x00000be0 deposit  0x00000004 
+ 00013635  0x00000be1 store  0x00000001 , 0x00000077 
+ 00013636  0x00000be2 force  0x00000000 , 0x0000003f 
+ 00013637  0x00000be3 store  0x00000001 , 0x0000017e 
+ 00013638  0x00000be4 rtn 
+ 00013639  0x00000beb set0  0x00000025 , 0x00000000 
+ 00013640  0x00000bec bpatch  0x0000004f , 0x00004009 
+ 00013641  0x00000bed fetch  0x00000001 , 0x00000030 
+ 00013642  0x00000bee bbit0  0x00000002 , 0x00003555 
+ 00013643  0x00000bef force  0x00000007 , 0x00000001 
+ 00013644  0x00000bf0 bmark0  0x00000007 , 0x00003554 
+ 00013645  0x00000bf1 call  0x00003847 
+ 00013646  0x00000bf2 nbranch  0x00003555 , 0x00000001 
+ 00013647  0x00000bf3 branch  0x00003555 , 0x0000002e 
+ 00013648  0x00000bf4 call  0x00003583 
+ 00013649  0x00000bf5 setarg  0x00000002 
+ 00013650  0x00000bf6 store  0x00000002 , 0x00004168 
+ 00013651  0x00000bf7 rtn 
+ 00013652  0x00000bf9 nrtn  0x0000002e 
+ 00013653  0x00000bfb set0  0x00000025 , 0x00000000 
+ 00013654  0x00000bfc bpatch  0x00000050 , 0x0000400a 
+ 00013655  0x00000bfd call  0x000032df 
+ 00013656  0x00000bfe nbranch  0x00003568 , 0x00000005 
+ 00013657  0x00000bff fetch  0x00000001 , 0x00000047 
+ 00013658  0x00000c00 bbit0  0x00000003 , 0x00003571 
+ 00013659  0x00000c02 bmark1  0x00000005 , 0x00003575 
+ 00013660  0x00000c03 fetch  0x00000001 , 0x00000189 
+ 00013661  0x00000c04 bbit1  0x00000006 , 0x0000357c 
+ 00013662  0x00000c05 fetch  0x00000002 , 0x00004168 
+ 00013663  0x00000c06 increase  0xffffffff , 0x0000003f 
+ 00013664  0x00000c07 store  0x00000002 , 0x00004168 
+ 00013665  0x00000c08 branch  0x00003565 , 0x00000034 
+ 00013666  0x00000c09 fetch  0x00000001 , 0x00004165 
+ 00013667  0x00000c0a iforce  0x00000001 
+ 00013668  0x00000c0b rtn 
+ 00013669  0x00000c0e set0  0x00000025 , 0x00000000 
+ 00013670  0x00000c0f bpatch  0x00000051 , 0x0000400a 
+ 00013671  0x00000c10 call  0x00003799 
+ 00013672  0x00000c12 call  0x00003847 
+ 00013673  0x00000c13 branch  0x00003571 , 0x00000001 
+ 00013674  0x00000c14 call  0x00005ed9 
+ 00013675  0x00000c15 branch  0x00003580 , 0x00000028 
+ 00013676  0x00000c16 fetch  0x00000001 , 0x0000004b 
+ 00013677  0x00000c17 bbit1  0x00000006 , 0x00003582 
+ 00013678  0x00000c18 bmark1  0x00000005 , 0x00003575 
+ 00013679  0x00000c19 fetch  0x00000001 , 0x00000189 
+ 00013680  0x00000c1a bbit1  0x00000006 , 0x0000357c 
+ 00013681  0x00000c1c force  0x00000001 , 0x00000001 
+ 00013682  0x00000c1d rtn  0x00000029 
+ 00013683  0x00000c1e force  0x00000000 , 0x00000001 
+ 00013684  0x00000c1f rtn 
+ 00013685  0x00000c21 set0  0x00000025 , 0x00000000 
+ 00013686  0x00000c22 bpatch  0x00000052 , 0x0000400a 
+ 00013687  0x00000c23 fetch  0x00000001 , 0x00000019 
+ 00013688  0x00000c24 iforce  0x00000001 
+ 00013689  0x00000c25 rtnne  0x00000001 
+ 00013690  0x00000c26 force  0x00000000 , 0x00000001 
+ 00013691  0x00000c27 rtn 
+ 00013692  0x00000c29 fetch  0x00000001 , 0x0000015a 
+ 00013693  0x00000c2a and  0x0000003f , 0x0000000f , 0x00000001 
+ 00013694  0x00000c2b set1  0x00000005 , 0x00000000 
+ 00013695  0x00000c2c rtn 
+ 00013696  0x00000c2e force  0x00000013 , 0x00000001 
+ 00013697  0x00000c2f branch  0x00003583 
+ 00013698  0x00000c31 call  0x0000358d 
+ 00013699  0x00000c34 set0  0x00000025 , 0x00000000 
+ 00013700  0x00000c35 bpatch  0x00000053 , 0x0000400a 
+ 00013701  0x00000c36 fetcht  0x00000001 , 0x00000047 
+ 00013702  0x00000c37 set1  0x00000003 , 0x00000002 
+ 00013703  0x00000c38 storet  0x00000001 , 0x00000047 
+ 00013704  0x00000c39 deposit  0x00000001 
+ 00013705  0x00000c3a store  0x00000001 , 0x00004165 
+ 00013706  0x00000c3b setarg  0x0000ffff 
+ 00013707  0x00000c3c store  0x00000002 , 0x00004168 
+ 00013708  0x00000c3d rtn 
+ 00013709  0x00000c40 set0  0x00000025 , 0x00000000 
+ 00013710  0x00000c41 bpatch  0x00000054 , 0x0000400a 
+ 00013711  0x00000c42 fetch  0x00000001 , 0x0000004c 
+ 00013712  0x00000c43 isolate1  0x00000005 , 0x0000003f 
+ 00013713  0x00000c44 fetch  0x00000002 , 0x00000091 
+ 00013714  0x00000c45 branch  0x000035a1 , 0x00000001 
+ 00013715  0x00000c46 force  0x00000003 , 0x00000001 
+ 00013716  0x00000c47 sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013717  0x00000c48 rtn  0x00000002 
+ 00013718  0x00000c49 force  0x00000004 , 0x00000001 
+ 00013719  0x00000c4a sub  0x0000003f , 0x0000001b , 0x0000003e 
+ 00013720  0x00000c4b rtn  0x00000002 
+ 00013721  0x00000c4c force  0x0000000a , 0x00000001 
+ 00013722  0x00000c4d sub  0x0000003f , 0x00000079 , 0x0000003e 
+ 00013723  0x00000c4e rtn  0x00000002 
+ 00013724  0x00000c4f force  0x0000000e , 0x00000001 
+ 00013725  0x00000c50 sub  0x0000003f , 0x000000e0 , 0x0000003e 
+ 00013726  0x00000c51 rtn  0x00000002 
+ 00013727  0x00000c52 force  0x0000000f , 0x00000001 
+ 00013728  0x00000c53 rtn 
+ 00013729  0x00000c55 force  0x00000003 , 0x00000001 
+ 00013730  0x00000c56 sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013731  0x00000c57 rtn  0x00000002 
+ 00013732  0x00000c58 force  0x00000004 , 0x00000001 
+ 00013733  0x00000c59 sub  0x0000003f , 0x00000036 , 0x0000003e 
+ 00013734  0x00000c5a rtn  0x00000002 
+ 00013735  0x00000c5b force  0x0000000a , 0x00000001 
+ 00013736  0x00000c5c arg  0x0000016f , 0x00000002 
+ 00013737  0x00000c5d isub  0x00000002 , 0x0000003e 
+ 00013738  0x00000c5e nrtn  0x00000002 
+ 00013739  0x00000c5f force  0x0000000e , 0x00000001 
+ 00013740  0x00000c60 arg  0x000002a7 , 0x00000002 
+ 00013741  0x00000c61 isub  0x00000002 , 0x0000003e 
+ 00013742  0x00000c62 nrtn  0x00000002 
+ 00013743  0x00000c63 force  0x0000000f , 0x00000001 
+ 00013744  0x00000c64 rtn 
+ 00013745  0x00000c6e fetch  0x00000001 , 0x00000030 
+ 00013746  0x00000c6f bbit0  0x00000001 , 0x000035b6 
+ 00013747  0x00000c70 fetch  0x00000002 , 0x00000032 
+ 00013748  0x00000c71 branch  0x000035b6 , 0x00000034 
+ 00013749  0x00000c72 nbranch  0x000035b8 , 0x0000002e 
+ 00013750  0x00000c74 call  0x00003bac 
+ 00013751  0x00000c76 add  0x00000028 , 0x00000001 , 0x00000021 
+ 00013752  0x00000c78 enable  0x00000010 
+ 00013753  0x00000c79 fetch  0x00000002 , 0x0000003e 
+ 00013754  0x00000c7a rshift  0x0000003f , 0x0000003f 
+ 00013755  0x00000c7b arg  0x00000500 , 0x00000002 
+ 00013756  0x00000c7c iadd  0x00000002 , 0x0000003f 
+ 00013757  0x00000c7d call  0x00003b7d 
+ 00013758  0x00000c7e call  0x00003a5d 
+ 00013759  0x00000c7f force  0x00000003 , 0x00000024 
+ 00013760  0x00000c80 call  0x00003a3b 
+ 00013761  0x00000c81 call  0x000034e1 
+ 00013762  0x00000c82 call  0x00003b41 
+ 00013763  0x00000c83 set0  0x00000025 , 0x00000000 
+ 00013764  0x00000c84 bpatch  0x00000055 , 0x0000400a 
+ 00013765  0x00000c85 fetch  0x00000002 , 0x0000003e 
+ 00013766  0x00000c86 rshift  0x0000003f , 0x0000003f 
+ 00013767  0x00000c87 call  0x00003b7d 
+ 00013768  0x00000c88 call  0x00003b3a 
+ 00013769  0x00000c89 enable  0x0000000d 
+ 00013770  0x00000c8a fetch  0x00000002 , 0x0000003e 
+ 00013771  0x00000c8b arg  0x000003bb , 0x00000002 
+ 00013772  0x00000c8c iadd  0x00000002 , 0x0000001b 
+ 00013773  0x00000c8d correlate  0x0000003e , 0x00000003 
+ 00013774  0x00000c8e copy  0x0000001a , 0x00000002 
+ 00013775  0x00000c8f storet  0x00000006 , 0x0000009c 
+ 00013776  0x00000c90 disable  0x0000000d 
+ 00013777  0x00000c91 nrtn  0x00000018 
+ 00013778  0x00000c92 arg  0x000003bb , 0x00000029 
+ 00013779  0x00000c93 copy  0x00000021 , 0x00000028 
+ 00013780  0x00000c94 branch  0x00003cb6 , 0x0000002b 
+ 00013781  0x00000c95 rtn 
+ 00013782  0x00000c99 set0  0x00000025 , 0x00000000 
+ 00013783  0x00000c9a bpatch  0x00000056 , 0x0000400a 
+ 00013784  0x00000c9b call  0x000035b1 
+ 00013785  0x00000c9c nbranch  0x00003a6d , 0x00000018 
+ 00013786  0x00000c9d call  0x00003af3 
+ 00013787  0x00000c9e bmark0  0x00000011 , 0x000035df 
+ 00013788  0x00000c9f fetch  0x00000002 , 0x000000f8 
+ 00013789  0x00000ca0 increase  0x00000001 , 0x0000003f 
+ 00013790  0x00000ca1 store  0x00000002 , 0x000000f8 
+ 00013791  0x00000ca3 rshift  0x00000021 , 0x00000002 
+ 00013792  0x00000ca4 or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00013793  0x00000ca6 set0  0x00000025 , 0x00000000 
+ 00013794  0x00000ca7 bpatch  0x00000057 , 0x0000400a 
+ 00013795  0x00000ca8 enable  0x00000007 
+ 00013796  0x00000ca9 enable  0x0000000a 
+ 00013797  0x00000caa enable  0x0000000b 
+ 00013798  0x00000cab parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013799  0x00000cac rshift8  0x0000000c , 0x0000003f 
+ 00013800  0x00000cad store  0x00000001 , 0x0000015f 
+ 00013801  0x00000cae parse  0x00000003 , 0x00000000 , 0x00000004 
+ 00013802  0x00000caf inject  0x00000000 , 0x00000007 
+ 00013803  0x00000cb0 copy  0x0000000c , 0x0000003f 
+ 00013804  0x00000cb1 store  0x00000001 , 0x00000019 
+ 00013805  0x00000cb2 parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013806  0x00000cb3 rshift8  0x0000000c , 0x0000003f 
+ 00013807  0x00000cb4 store  0x00000001 , 0x00000160 
+ 00013808  0x00000cb5 fetch  0x00000001 , 0x00000019 
+ 00013809  0x00000cb6 sub  0x0000003f , 0x00000003 , 0x0000003e 
+ 00013810  0x00000cb7 branch  0x000035f7 , 0x00000002 
+ 00013811  0x00000cb8 beq  0x00000007 , 0x000035f7 
+ 00013812  0x00000cb9 fetch  0x00000001 , 0x0000004c 
+ 00013813  0x00000cba isolate1  0x00000005 , 0x0000003f 
+ 00013814  0x00000cbb setflag  0x00000001 , 0x00000001 , 0x00000015 
+ 00013815  0x00000cbd set0  0x00000025 , 0x00000000 
+ 00013816  0x00000cbe bpatch  0x00000058 , 0x0000400b 
+ 00013817  0x00000cbf parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013818  0x00000cc0 disable  0x0000000b 
+ 00013819  0x00000cc1 disable  0x0000000a 
+ 00013820  0x00000cc2 branch  0x0000373e , 0x00000006 
+ 00013821  0x00000cc3 bmark0  0x00000011 , 0x00003601 
+ 00013822  0x00000cc4 fetch  0x00000002 , 0x000000fa 
+ 00013823  0x00000cc5 increase  0x00000001 , 0x0000003f 
+ 00013824  0x00000cc6 store  0x00000002 , 0x000000fa 
+ 00013825  0x00000cc8 set0  0x00000025 , 0x00000000 
+ 00013826  0x00000cc9 bpatch  0x00000059 , 0x0000400b 
+ 00013827  0x00000cca fetch  0x00000001 , 0x0000015f 
+ 00013828  0x00000ccb compare  0x00000000 , 0x0000003f , 0x00000007 
+ 00013829  0x00000ccc setflag  0x00000001 , 0x0000000a , 0x00000000 
+ 00013830  0x00000ccd branch  0x00003613 , 0x00000001 
+ 00013831  0x00000cce icompare  0x00000007 , 0x00000004 
+ 00013832  0x00000ccf branch  0x00003612 , 0x00000001 
+ 00013833  0x00000cd0 bmark0  0x00000007 , 0x0000375c 
+ 00013834  0x00000cd1 fetcht  0x00000001 , 0x000000b2 
+ 00013835  0x00000cd2 icompare  0x00000007 , 0x00000002 
+ 00013836  0x00000cd3 nbranch  0x0000375c , 0x00000001 
+ 00013837  0x00000cd4 call  0x00003290 
+ 00013838  0x00000cd5 fetch  0x00000001 , 0x00000047 
+ 00013839  0x00000cd6 set0  0x00000005 , 0x0000003f 
+ 00013840  0x00000cd7 set1  0x00000004 , 0x0000003f 
+ 00013841  0x00000cd8 store  0x00000001 , 0x00000047 
+ 00013842  0x00000cda enable  0x0000002d 
+ 00013843  0x00000cdc set0  0x00000025 , 0x00000000 
+ 00013844  0x00000cdd bpatch  0x0000005a , 0x0000400b 
+ 00013845  0x00000cde fetch  0x00000001 , 0x00000019 
+ 00013846  0x00000cdf icopy  0x00000001 
+ 00013847  0x00000ce0 bmark1  0x0000000a , 0x00003623 
+ 00013848  0x00000ce1 fetcht  0x00000001 , 0x00000160 
+ 00013849  0x00000ce2 fetch  0x00000001 , 0x00000047 
+ 00013850  0x00000ce3 set0  0x00000000 , 0x0000003f 
+ 00013851  0x00000ce4 isolate1  0x00000000 , 0x00000002 
+ 00013852  0x00000ce5 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00013853  0x00000ce6 isolate1  0x00000001 , 0x00000002 
+ 00013854  0x00000ce7 setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00013855  0x00000ce8 store  0x00000001 , 0x00000047 
+ 00013856  0x00000ce9 isolate0  0x00000001 , 0x00000002 
+ 00013857  0x00000cea branch  0x00003623 , 0x00000001 
+ 00013858  0x00000ceb call  0x00003799 
+ 00013859  0x00000ced set0  0x00000025 , 0x00000000 
+ 00013860  0x00000cee bpatch  0x0000005b , 0x0000400b 
+ 00013861  0x00000cef arg  0x00000000 , 0x00000002 
+ 00013862  0x00000cf0 call  0x00003b74 
+ 00013863  0x00000cf1 and  0x00000001 , 0x0000000f , 0x0000003f 
+ 00013864  0x00000cf2 beq  0x00000001 , 0x00003656 
+ 00013865  0x00000cf3 beq  0x00000000 , 0x0000375c 
+ 00013866  0x00000cf4 beq  0x00000002 , 0x00003769 
+ 00013867  0x00000cf5 fetcht  0x00000001 , 0x00000160 
+ 00013868  0x00000cf6 fetch  0x00000001 , 0x00000047 
+ 00013869  0x00000cf7 icompare  0x00000004 , 0x00000002 
+ 00013870  0x00000cf8 nbranch  0x00003632 , 0x00000001 
+ 00013871  0x00000cf9 bmark0  0x0000000a , 0x00003631 
+ 00013872  0x00000cfa bbit0  0x00000007 , 0x00003632 
+ 00013873  0x00000cfc set1  0x0000000f , 0x00000000 
+ 00013874  0x00000cfe set0  0x00000025 , 0x00000000 
+ 00013875  0x00000cff bpatch  0x0000005c , 0x0000400b 
+ 00013876  0x00000d00 deposit  0x00000001 
+ 00013877  0x00000d01 beq  0x00000003 , 0x00003658 
+ 00013878  0x00000d02 beq  0x00000004 , 0x0000365c 
+ 00013879  0x00000d03 beq  0x00000007 , 0x00003642 
+ 00013880  0x00000d04 beq  0x00000008 , 0x0000365b 
+ 00013881  0x00000d05 arg  0x00000004 , 0x00000002 
+ 00013882  0x00000d06 call  0x00003b74 
+ 00013883  0x00000d07 beq  0x0000000a , 0x00003657 
+ 00013884  0x00000d08 beq  0x0000000b , 0x0000365a 
+ 00013885  0x00000d09 arg  0x00000008 , 0x00000002 
+ 00013886  0x00000d0a call  0x00003b74 
+ 00013887  0x00000d0b beq  0x0000000e , 0x00003657 
+ 00013888  0x00000d0c beq  0x0000000f , 0x0000365a 
+ 00013889  0x00000d0d rtn 
+ 00013890  0x00000d11 set0  0x00000025 , 0x00000000 
+ 00013891  0x00000d12 bpatch  0x0000005d , 0x0000400b 
+ 00013892  0x00000d13 enable  0x0000000d 
+ 00013893  0x00000d14 enable  0x00000009 
+ 00013894  0x00000d15 enable  0x0000000e 
+ 00013895  0x00000d16 arg  0x000000d3 , 0x00000005 
+ 00013896  0x00000d17 force  0x0000001e , 0x00000039 
+ 00013897  0x00000d19 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013898  0x00000d1a rshift3  0x0000000c , 0x0000003f 
+ 00013899  0x00000d1b istore  0x00000001 , 0x00000005 
+ 00013900  0x00000d1c loop  0x00003649 
+ 00013901  0x00000d1d bmark0  0x00000007 , 0x0000375c 
+ 00013902  0x00000d1e parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00013903  0x00000d1f nsetflag  0x00000006 , 0x00000008 , 0x00000000 
+ 00013904  0x00000d20 call  0x00003653 , 0x00000006 
+ 00013905  0x00000d21 branch  0x0000374b , 0x00000006 
+ 00013906  0x00000d22 branch  0x0000372c 
+ 00013907  0x00000d25 deposit  0x0000001a 
+ 00013908  0x00000d26 store  0x00000006 , 0x00000020 
+ 00013909  0x00000d27 rtn 
+ 00013910  0x00000d2a branch  0x0000375c 
+ 00013911  0x00000d2e set1  0x00000010 , 0x00000000 
+ 00013912  0x00000d30 enable  0x0000000c 
+ 00013913  0x00000d31 branch  0x0000365d 
+ 00013914  0x00000d35 set1  0x00000010 , 0x00000000 
+ 00013915  0x00000d37 set1  0x00000002 , 0x00000015 
+ 00013916  0x00000d39 enable  0x0000000d 
+ 00013917  0x00000d3b set0  0x00000025 , 0x00000000 
+ 00013918  0x00000d3c bpatch  0x0000005e , 0x0000400b 
+ 00013919  0x00000d3d bmark1  0x00000001 , 0x0000375c 
+ 00013920  0x00000d3e isolate0  0x00000001 , 0x00000015 
+ 00013921  0x00000d3f branch  0x0000366a , 0x00000001 
+ 00013922  0x00000d40 disable  0x00000007 
+ 00013923  0x00000d41 enable  0x0000000d 
+ 00013924  0x00000d42 disable  0x0000000c 
+ 00013925  0x00000d43 add  0x00000022 , 0x00000002 , 0x0000000b 
+ 00013926  0x00000d44 correlate  0x00000022 , 0x00000026 
+ 00013927  0x00000d45 nbranch  0x0000374b , 0x00000018 
+ 00013928  0x00000d46 set1  0x00000010 , 0x00000000 
+ 00013929  0x00000d47 enable  0x00000007 
+ 00013930  0x00000d49 set0  0x00000025 , 0x00000000 
+ 00013931  0x00000d4a bpatch  0x0000005f , 0x0000400b 
+ 00013932  0x00000d4b enable  0x0000000e 
+ 00013933  0x00000d4c enable  0x00000009 
+ 00013934  0x00000d4d parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013935  0x00000d4e rshift8  0x0000000c , 0x0000003f 
+ 00013936  0x00000d4f store  0x00000001 , 0x0000018a 
+ 00013937  0x00000d50 parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013938  0x00000d51 bmark1  0x00000010 , 0x00003676 
+ 00013939  0x00000d52 rshift3  0x0000000c , 0x00000039 
+ 00013940  0x00000d53 rshift3  0x00000039 , 0x00000039 
+ 00013941  0x00000d54 branch  0x00003679 
+ 00013942  0x00000d56 parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013943  0x00000d57 rshift  0x0000000c , 0x00000039 
+ 00013944  0x00000d58 parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013945  0x00000d5a set0  0x00000025 , 0x00000000 
+ 00013946  0x00000d5b bpatch  0x00000060 , 0x0000400c 
+ 00013947  0x00000d5c deposit  0x00000039 
+ 00013948  0x00000d5d store  0x00000002 , 0x00000169 
+ 00013949  0x00000d5e branch  0x000036ee , 0x00000034 
+ 00013950  0x00000d5f isub  0x00000035 , 0x0000003e 
+ 00013951  0x00000d60 branch  0x0000374b , 0x00000002 
+ 00013952  0x00000d61 set0  0x00000025 , 0x00000000 
+ 00013953  0x00000d62 bpatch  0x00000061 , 0x0000400c 
+ 00013954  0x00000d63 set0  0x00000000 , 0x00000000 
+ 00013955  0x00000d64 fetch  0x00000001 , 0x0000018a 
+ 00013956  0x00000d65 and_into  0x00000003 , 0x0000003f 
+ 00013957  0x00000d66 arg  0x000004de , 0x00000005 
+ 00013958  0x00000d67 beq  0x00000003 , 0x0000368f 
+ 00013959  0x00000d68 bmark1  0x00000011 , 0x000036ea 
+ 00013960  0x00000d69 fetch  0x00000001 , 0x00004132 
+ 00013961  0x00000d6a beq  0x00000001 , 0x00003694 
+ 00013962  0x00000d6c fetch  0x00000001 , 0x0000018a 
+ 00013963  0x00000d6d and_into  0x00000003 , 0x0000003f 
+ 00013964  0x00000d6e beq  0x00000002 , 0x000036c3 
+ 00013965  0x00000d6f beq  0x00000001 , 0x000036d8 
+ 00013966  0x00000d70 branch  0x0000374b 
+ 00013967  0x00000d73 fetch  0x00000002 , 0x00000169 
+ 00013968  0x00000d74 sub  0x0000003f , 0x00000070 , 0x0000003e 
+ 00013969  0x00000d75 nbranch  0x0000374b , 0x00000002 
+ 00013970  0x00000d76 bmark1  0x0000000f , 0x0000372c 
+ 00013971  0x00000d77 branch  0x000036ea 
+ 00013972  0x00000d7a set0  0x00000025 , 0x00000000 
+ 00013973  0x00000d7b bpatch  0x00000062 , 0x0000400c 
+ 00013974  0x00000d7c bmark1  0x0000000f , 0x0000372c 
+ 00013975  0x00000d7d fetch  0x00000002 , 0x00000169 
+ 00013976  0x00000d7e branch  0x0000374b , 0x00000034 
+ 00013977  0x00000d7f call  0x00004494 
+ 00013978  0x00000d80 nbranch  0x000036a1 , 0x00000001 
+ 00013979  0x00000d82 fetcht  0x00000002 , 0x00000291 
+ 00013980  0x00000d83 increase  0x0000000a , 0x0000003f 
+ 00013981  0x00000d84 isub  0x00000002 , 0x0000003e 
+ 00013982  0x00000d85 nbranch  0x000036a7 , 0x00000002 
+ 00013983  0x00000d86 call  0x00004449 
+ 00013984  0x00000d87 branch  0x0000369b 
+ 00013985  0x00000d89 hfetch  0x00000002 , 0x0000810e 
+ 00013986  0x00000d8a arg  0x0000012c , 0x00000002 
+ 00013987  0x00000d8b isub  0x00000002 , 0x0000003e 
+ 00013988  0x00000d8c branch  0x0000374b , 0x00000002 
+ 00013989  0x00000d8d fetch  0x00000002 , 0x00004800 
+ 00013990  0x00000d8e branch  0x0000374b , 0x00000034 
+ 00013991  0x00000d90 set0  0x00000025 , 0x00000000 
+ 00013992  0x00000d91 bpatch  0x00000063 , 0x0000400c 
+ 00013993  0x00000d92 call  0x00004972 
+ 00013994  0x00000d93 fetch  0x00000001 , 0x00000046 
+ 00013995  0x00000d94 fetcht  0x00000001 , 0x0000018a 
+ 00013996  0x00000d95 and_into  0x00000003 , 0x00000002 
+ 00013997  0x00000d96 lshift8  0x00000002 , 0x00000002 
+ 00013998  0x00000d97 lshift4  0x00000002 , 0x00000002 
+ 00013999  0x00000d98 ior  0x00000002 , 0x0000003f 
+ 00014000  0x00000d99 istore  0x00000002 , 0x0000000a 
+ 00014001  0x00000d9a fetcht  0x00000002 , 0x00000169 
+ 00014002  0x00000d9b copy  0x00000002 , 0x00000039 
+ 00014003  0x00000d9c istoret  0x00000002 , 0x0000000a 
+ 00014004  0x00000d9e set0  0x00000025 , 0x00000000 
+ 00014005  0x00000d9f bpatch  0x00000064 , 0x0000400c 
+ 00014006  0x00000da0 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00014007  0x00000da1 rshift3  0x0000000c , 0x0000003f 
+ 00014008  0x00000da2 istore  0x00000001 , 0x0000000a 
+ 00014009  0x00000da3 loop  0x000036b4 
+ 00014010  0x00000da4 add  0x00000002 , 0x00000004 , 0x00000039 
+ 00014011  0x00000da5 call  0x00004494 
+ 00014012  0x00000da6 nbranch  0x000036c1 , 0x00000001 
+ 00014013  0x00000da7 set1  0x00000013 , 0x00000000 
+ 00014014  0x00000da8 force  0x00000006 , 0x00000007 
+ 00014015  0x00000da9 call  0x00004378 
+ 00014016  0x00000daa branch  0x000036ee 
+ 00014017  0x00000dac call  0x00004424 
+ 00014018  0x00000dad branch  0x000036ee 
+ 00014019  0x00000db0 set0  0x00000025 , 0x00000000 
+ 00014020  0x00000db1 bpatch  0x00000065 , 0x0000400c 
+ 00014021  0x00000db2 bmark1  0x0000000f , 0x0000372c 
+ 00014022  0x00000db3 fetch  0x00000002 , 0x00000169 
+ 00014023  0x00000db4 arg  0x000002e0 , 0x00000002 
+ 00014024  0x00000db5 isub  0x00000002 , 0x0000003e 
+ 00014025  0x00000db6 branch  0x0000374b , 0x00000002 
+ 00014026  0x00000db7 fetch  0x00000001 , 0x000002ca 
+ 00014027  0x00000db8 bbit0  0x00000000 , 0x000036ce 
+ 00014028  0x00000db9 bbit0  0x00000001 , 0x000036d3 
+ 00014029  0x00000dba branch  0x0000375c 
+ 00014030  0x00000dbc jam  0x00000001 , 0x000002c8 
+ 00014031  0x00000dbd fetch  0x00000002 , 0x000002c4 
+ 00014032  0x00000dbe bne  0x00000000 , 0x0000375c 
+ 00014033  0x00000dbf arg  0x00001000 , 0x00000005 
+ 00014034  0x00000dc0 branch  0x000036ea 
+ 00014035  0x00000dc2 jam  0x00000002 , 0x000002c8 
+ 00014036  0x00000dc3 fetch  0x00000002 , 0x000002c6 
+ 00014037  0x00000dc4 bne  0x00000000 , 0x0000375c 
+ 00014038  0x00000dc5 arg  0x00001400 , 0x00000005 
+ 00014039  0x00000dc6 branch  0x000036ea 
+ 00014040  0x00000dc9 set0  0x00000025 , 0x00000000 
+ 00014041  0x00000dca bpatch  0x00000066 , 0x0000400c 
+ 00014042  0x00000dcb bmark1  0x0000000f , 0x0000372c 
+ 00014043  0x00000dcc fetch  0x00000002 , 0x00000169 
+ 00014044  0x00000dcd arg  0x000002e0 , 0x00000002 
+ 00014045  0x00000dce isub  0x00000002 , 0x0000003e 
+ 00014046  0x00000dcf branch  0x0000374b , 0x00000002 
+ 00014047  0x00000dd0 fetch  0x00000001 , 0x000002c8 
+ 00014048  0x00000dd1 beq  0x00000001 , 0x000036e3 
+ 00014049  0x00000dd2 beq  0x00000002 , 0x000036e7 
+ 00014050  0x00000dd3 branch  0x0000375c 
+ 00014051  0x00000dd5 arg  0x00001000 , 0x00000005 
+ 00014052  0x00000dd6 fetch  0x00000002 , 0x000002c4 
+ 00014053  0x00000dd7 iadd  0x00000005 , 0x00000005 
+ 00014054  0x00000dd8 branch  0x000036ea 
+ 00014055  0x00000dda arg  0x00001400 , 0x00000005 
+ 00014056  0x00000ddb fetch  0x00000002 , 0x000002c6 
+ 00014057  0x00000ddc iadd  0x00000005 , 0x00000005 
+ 00014058  0x00000dde parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00014059  0x00000ddf rshift3  0x0000000c , 0x0000003f 
+ 00014060  0x00000de0 istore  0x00000001 , 0x00000005 
+ 00014061  0x00000de1 loop  0x000036ea 
+ 00014062  0x00000de3 set0  0x00000025 , 0x00000000 
+ 00014063  0x00000de4 bpatch  0x00000067 , 0x0000400c 
+ 00014064  0x00000de5 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00014065  0x00000de6 branch  0x00003745 , 0x00000006 
+ 00014066  0x00000de7 call  0x00003e0f 
+ 00014067  0x00000de8 fetch  0x00000001 , 0x000043cc 
+ 00014068  0x00000de9 beq  0x00000001 , 0x0000375c 
+ 00014069  0x00000dea bmark1  0x00000011 , 0x00003718 
+ 00014070  0x00000deb bmark1  0x0000000f , 0x00003759 
+ 00014071  0x00000dec fetch  0x00000001 , 0x0000018a 
+ 00014072  0x00000ded compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00014073  0x00000dee branch  0x00003718 , 0x00000001 
+ 00014074  0x00000def fetch  0x00000002 , 0x00000169 
+ 00014075  0x00000df0 branch  0x00003718 , 0x00000034 
+ 00014076  0x00000df1 fetch  0x00000001 , 0x00004132 
+ 00014077  0x00000df2 beq  0x00000001 , 0x00003718 
+ 00014078  0x00000df3 set0  0x00000025 , 0x00000000 
+ 00014079  0x00000df4 bpatch  0x00000068 , 0x0000400d 
+ 00014080  0x00000df5 fetch  0x00000001 , 0x000002c8 
+ 00014081  0x00000df6 beq  0x00000001 , 0x00003704 
+ 00014082  0x00000df7 beq  0x00000002 , 0x0000370e 
+ 00014083  0x00000df8 branch  0x00003bf1 
+ 00014084  0x00000dfa fetch  0x00000002 , 0x000002c4 
+ 00014085  0x00000dfb fetcht  0x00000002 , 0x00000169 
+ 00014086  0x00000dfc iadd  0x00000002 , 0x0000003f 
+ 00014087  0x00000dfd store  0x00000002 , 0x000002c4 
+ 00014088  0x00000dfe beq  0x00000000 , 0x00003bf1 
+ 00014089  0x00000dff fetcht  0x00000002 , 0x00001000 
+ 00014090  0x00000e00 increase  0x00000004 , 0x00000002 
+ 00014091  0x00000e01 isub  0x00000002 , 0x0000003e 
+ 00014092  0x00000e02 call  0x000038a0 , 0x00000005 
+ 00014093  0x00000e03 branch  0x00003718 
+ 00014094  0x00000e05 fetch  0x00000002 , 0x000002c6 
+ 00014095  0x00000e06 fetcht  0x00000002 , 0x00000169 
+ 00014096  0x00000e07 iadd  0x00000002 , 0x0000003f 
+ 00014097  0x00000e08 store  0x00000002 , 0x000002c6 
+ 00014098  0x00000e09 beq  0x00000000 , 0x00003bf1 
+ 00014099  0x00000e0a fetcht  0x00000002 , 0x00001400 
+ 00014100  0x00000e0b add  0x00000002 , 0x00000004 , 0x00000002 
+ 00014101  0x00000e0c isub  0x00000002 , 0x0000003e 
+ 00014102  0x00000e0d call  0x000038a4 , 0x00000005 
+ 00014103  0x00000e0e branch  0x00003718 
+ 00014104  0x00000e10 set0  0x00000025 , 0x00000000 
+ 00014105  0x00000e11 bpatch  0x00000069 , 0x0000400d 
+ 00014106  0x00000e12 fetcht  0x00000001 , 0x0000004c 
+ 00014107  0x00000e13 fetch  0x00000001 , 0x0000018a 
+ 00014108  0x00000e14 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00014109  0x00000e15 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00014110  0x00000e16 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00014111  0x00000e17 storet  0x00000001 , 0x0000004c 
+ 00014112  0x00000e18 nbranch  0x00003722 , 0x00000001 
+ 00014113  0x00000e19 set1  0x00000001 , 0x00000000 
+ 00014114  0x00000e1b bmark0  0x00000011 , 0x0000372c 
+ 00014115  0x00000e1c isolate1  0x00000006 , 0x00000002 
+ 00014116  0x00000e1d branch  0x0000372c , 0x00000001 
+ 00014117  0x00000e1e fetch  0x00000002 , 0x000000fc 
+ 00014118  0x00000e1f increase  0x00000001 , 0x0000003f 
+ 00014119  0x00000e20 store  0x00000002 , 0x000000fc 
+ 00014120  0x00000e21 set1  0x00000005 , 0x00000000 
+ 00014121  0x00000e22 set0  0x00000007 , 0x00000002 
+ 00014122  0x00000e23 set0  0x00000001 , 0x00000000 
+ 00014123  0x00000e24 storet  0x00000001 , 0x0000004c 
+ 00014124  0x00000e26 set0  0x00000025 , 0x00000000 
+ 00014125  0x00000e27 bpatch  0x0000006a , 0x0000400d 
+ 00014126  0x00000e28 fetcht  0x00000001 , 0x00000160 
+ 00014127  0x00000e29 fetch  0x00000001 , 0x00000047 
+ 00014128  0x00000e2a set1  0x00000005 , 0x0000003f 
+ 00014129  0x00000e2b isolate1  0x00000002 , 0x00000002 
+ 00014130  0x00000e2c setflag  0x00000001 , 0x00000002 , 0x0000003f 
+ 00014131  0x00000e2d isolate1  0x0000000a , 0x00000000 
+ 00014132  0x00000e2e setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00014133  0x00000e2f store  0x00000001 , 0x00000047 
+ 00014134  0x00000e30 fetch  0x00000002 , 0x00000169 
+ 00014135  0x00000e31 nbranch  0x0000375c , 0x00000034 
+ 00014136  0x00000e32 fetch  0x00000001 , 0x0000004c 
+ 00014137  0x00000e33 set0  0x00000007 , 0x0000003f 
+ 00014138  0x00000e34 store  0x00000001 , 0x0000004c 
+ 00014139  0x00000e35 fetch  0x00000001 , 0x0000018a 
+ 00014140  0x00000e36 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00014141  0x00000e38 branch  0x0000375c 
+ 00014142  0x00000e3b set0  0x00000025 , 0x00000000 
+ 00014143  0x00000e3c bpatch  0x0000006b , 0x0000400d 
+ 00014144  0x00000e3d disable  0x0000002d 
+ 00014145  0x00000e3e fetch  0x00000002 , 0x0000001a 
+ 00014146  0x00000e3f increase  0x00000001 , 0x0000003f 
+ 00014147  0x00000e40 store  0x00000002 , 0x0000001a 
+ 00014148  0x00000e41 branch  0x0000375c 
+ 00014149  0x00000e43 fetch  0x00000002 , 0x0000001c 
+ 00014150  0x00000e44 increase  0x00000001 , 0x0000003f 
+ 00014151  0x00000e45 store  0x00000002 , 0x0000001c 
+ 00014152  0x00000e46 call  0x0000374c 
+ 00014153  0x00000e47 bmark0  0x00000011 , 0x0000374b 
+ 00014154  0x00000e48 set1  0x00000005 , 0x00000000 
+ 00014155  0x00000e4a branch  0x0000375c 
+ 00014156  0x00000e4d set0  0x00000025 , 0x00000000 
+ 00014157  0x00000e4e bpatch  0x0000006c , 0x0000400d 
+ 00014158  0x00000e4f fetch  0x00000001 , 0x0000018a 
+ 00014159  0x00000e50 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00014160  0x00000e51 nbranch  0x00003755 , 0x00000001 
+ 00014161  0x00000e53 fetcht  0x00000001 , 0x0000004c 
+ 00014162  0x00000e54 set0  0x00000006 , 0x00000002 
+ 00014163  0x00000e55 storet  0x00000001 , 0x0000004c 
+ 00014164  0x00000e56 rtn 
+ 00014165  0x00000e5a fetcht  0x00000001 , 0x0000004c 
+ 00014166  0x00000e5b set0  0x00000007 , 0x00000002 
+ 00014167  0x00000e5c storet  0x00000001 , 0x0000004c 
+ 00014168  0x00000e5d branch  0x0000443b 
+ 00014169  0x00000e60 fetch  0x00000001 , 0x00000047 
+ 00014170  0x00000e61 set1  0x00000005 , 0x0000003f 
+ 00014171  0x00000e62 store  0x00000001 , 0x00000047 
+ 00014172  0x00000e64 set0  0x00000025 , 0x00000000 
+ 00014173  0x00000e65 bpatch  0x0000006d , 0x0000400d 
+ 00014174  0x00000e66 disable  0x0000001d 
+ 00014175  0x00000e67 disable  0x0000001c 
+ 00014176  0x00000e68 disable  0x0000000d 
+ 00014177  0x00000e69 disable  0x0000000c 
+ 00014178  0x00000e6a disable  0x00000009 
+ 00014179  0x00000e6b disable  0x0000000e 
+ 00014180  0x00000e6c disable  0x00000007 
+ 00014181  0x00000e6d branch  0x00003a6d , 0x00000021 
+ 00014182  0x00000e6e until  0x0000003e , 0x00000027 
+ 00014183  0x00000e6f nop  0x00000064 
+ 00014184  0x00000e70 branch  0x00003a6d 
+ 00014185  0x00000e73 set0  0x00000025 , 0x00000000 
+ 00014186  0x00000e74 bpatch  0x0000006e , 0x0000400d 
+ 00014187  0x00000e75 enable  0x00000009 
+ 00014188  0x00000e76 enable  0x0000000c 
+ 00014189  0x00000e77 parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014190  0x00000e78 isolate1  0x0000003a , 0x0000003f 
+ 00014191  0x00000e79 setflag  0x00000001 , 0x00000000 , 0x00000000 
+ 00014192  0x00000e7a copy  0x00000020 , 0x00000002 
+ 00014193  0x00000e7b ialigned  0x00000020 
+ 00014194  0x00000e7c ialigned  0x0000001e 
+ 00014195  0x00000e7d pulse  0x00000015 
+ 00014196  0x00000e7e setsect  0x00000002 , 0x000fffff 
+ 00014197  0x00000e7f setsect  0x00000003 , 0x0000ffff 
+ 00014198  0x00000e80 nop  0x00000020 
+ 00014199  0x00000e81 iverify  0x0000000d 
+ 00014200  0x00000e82 deposit  0x0000002c 
+ 00014201  0x00000e83 store  0x00000003 , 0x00000182 
+ 00014202  0x00000e84 deposit  0x0000002d 
+ 00014203  0x00000e85 store  0x00000001 , 0x00000185 
+ 00014204  0x00000e86 copy  0x00000002 , 0x00000020 
+ 00014205  0x00000e87 branch  0x0000377f , 0x00000001 
+ 00014206  0x00000e88 branch  0x0000374b 
+ 00014207  0x00000e8a set0  0x00000025 , 0x00000000 
+ 00014208  0x00000e8b bpatch  0x0000006f , 0x0000400d 
+ 00014209  0x00000e8c parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014210  0x00000e8d ialigned  0x0000001f 
+ 00014211  0x00000e8e ialigned  0x00000004 
+ 00014212  0x00000e8f ialigned  0x0000002e 
+ 00014213  0x00000e90 ialigned  0x00000012 
+ 00014214  0x00000e91 force  0x00000000 , 0x0000003f 
+ 00014215  0x00000e92 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00014216  0x00000e93 branch  0x0000374b , 0x00000006 
+ 00014217  0x00000e94 setarg  0x0ffffffc 
+ 00014218  0x00000e95 iand  0x00000012 , 0x0000003f 
+ 00014219  0x00000e96 store  0x00000004 , 0x0000016f 
+ 00014220  0x00000e97 deposit  0x0000001d 
+ 00014221  0x00000e98 store  0x00000003 , 0x0000017f 
+ 00014222  0x00000e99 deposit  0x0000001c 
+ 00014223  0x00000e9a store  0x00000001 , 0x0000017d 
+ 00014224  0x00000e9b deposit  0x00000004 
+ 00014225  0x00000e9c store  0x00000001 , 0x0000017e 
+ 00014226  0x00000e9d deposit  0x0000002e 
+ 00014227  0x00000e9e store  0x00000002 , 0x00000186 
+ 00014228  0x00000e9f deposit  0x00000021 
+ 00014229  0x00000ea0 inject  0x00000001 , 0x00000020 
+ 00014230  0x00000ea1 compare  0x00000002 , 0x00000001 , 0x0000000f 
+ 00014231  0x00000ea2 setflag  0x00000001 , 0x0000000b , 0x00000000 
+ 00014232  0x00000ea3 branch  0x0000375c 
+ 00014233  0x00000ea6 set0  0x00000025 , 0x00000000 
+ 00014234  0x00000ea7 bpatch  0x00000070 , 0x0000400e 
+ 00014235  0x00000ea8 fetch  0x00000001 , 0x00000047 
+ 00014236  0x00000ea9 rtnbit0  0x00000003 
+ 00014237  0x00000eaa set0  0x00000003 , 0x0000003f 
+ 00014238  0x00000eab setflip  0x00000006 , 0x0000003f 
+ 00014239  0x00000eac store  0x00000001 , 0x00000047 
+ 00014240  0x00000ead fetch  0x00000001 , 0x00004165 
+ 00014241  0x00000eae beq  0x00000013 , 0x000037b1 
+ 00014242  0x00000eaf rtneq  0x00000007 
+ 00014243  0x00000eb0 fetch  0x00000001 , 0x0000004b 
+ 00014244  0x00000eb1 rtnbit0  0x00000006 , 0x0000003f 
+ 00014245  0x00000eb2 set0  0x00000006 , 0x0000003f 
+ 00014246  0x00000eb3 set1  0x00000007 , 0x0000003f 
+ 00014247  0x00000eb4 store  0x00000001 , 0x0000004b 
+ 00014248  0x00000eb5 set0  0x00000002 , 0x00000000 
+ 00014249  0x00000eb6 fetch  0x00000001 , 0x00004132 
+ 00014250  0x00000eb7 rtneq  0x00000001 
+ 00014251  0x00000eb8 fetch  0x00000002 , 0x000042af 
+ 00014252  0x00000eb9 nrtn  0x00000034 
+ 00014253  0x00000eba fetch  0x00000001 , 0x0000004b 
+ 00014254  0x00000ebb set0  0x00000007 , 0x0000003f 
+ 00014255  0x00000ebc store  0x00000001 , 0x0000004b 
+ 00014256  0x00000ebd branch  0x00005267 
+ 00014257  0x00000ec0 set0  0x00000025 , 0x00000000 
+ 00014258  0x00000ec1 bpatch  0x00000071 , 0x0000400e 
+ 00014259  0x00000ec2 fetch  0x00000001 , 0x00000433 
+ 00014260  0x00000ec3 rshift  0x0000003f , 0x0000003f 
+ 00014261  0x00000ec4 beq  0x00000011 , 0x000037d0 
+ 00014262  0x00000ec5 beq  0x00000012 , 0x000037da 
+ 00014263  0x00000ec6 beq  0x00000018 , 0x00003806 
+ 00014264  0x00000ec7 beq  0x0000007f , 0x000037bf 
+ 00014265  0x00000ec8 beq  0x0000002c , 0x0000385e 
+ 00014266  0x00000ec9 rtnne  0x00000003 
+ 00014267  0x00000eca fetch  0x00000001 , 0x00000434 
+ 00014268  0x00000ecb beq  0x0000002b , 0x000037c8 
+ 00014269  0x00000ecc beq  0x00000011 , 0x000037c3 
+ 00014270  0x00000ecd rtn 
+ 00014271  0x00000ed0 fetch  0x00000001 , 0x00000434 
+ 00014272  0x00000ed1 set1  0x00000007 , 0x0000003f 
+ 00014273  0x00000ed2 beq  0x0000008d , 0x0000385e 
+ 00014274  0x00000ed3 rtn 
+ 00014275  0x00000ed5 rtn  0x00000029 
+ 00014276  0x00000ed6 fetch  0x00000001 , 0x00000030 
+ 00014277  0x00000ed7 rtnbit1  0x00000004 
+ 00014278  0x00000ed8 jam  0x00000031 , 0x0000007c 
+ 00014279  0x00000ed9 rtn 
+ 00014280  0x00000edd rtn  0x00000029 
+ 00014281  0x00000ede fetch  0x00000001 , 0x00000031 
+ 00014282  0x00000edf isolate1  0x00000004 , 0x0000003f 
+ 00014283  0x00000ee0 branch  0x000037cd , 0x00000001 
+ 00014284  0x00000ee2 rtn 
+ 00014285  0x00000ee4 set0  0x00000004 , 0x0000003f 
+ 00014286  0x00000ee5 store  0x00000001 , 0x00000031 
+ 00014287  0x00000ee6 rtn 
+ 00014288  0x00000ee9 set0  0x00000025 , 0x00000000 
+ 00014289  0x00000eea bpatch  0x00000072 , 0x0000400e 
+ 00014290  0x00000eeb fetch  0x00000001 , 0x0000004c 
+ 00014291  0x00000eec set1  0x00000002 , 0x0000003f 
+ 00014292  0x00000eed store  0x00000001 , 0x0000004c 
+ 00014293  0x00000eee hjam  0x00000001 , 0x00008011 
+ 00014294  0x00000eef fetch  0x00000001 , 0x00000030 
+ 00014295  0x00000ef0 isolate1  0x00000004 , 0x0000003f 
+ 00014296  0x00000ef1 branch  0x00004845 , 0x00000001 
+ 00014297  0x00000ef2 rtn 
+ 00014298  0x00000ef5 set0  0x00000025 , 0x00000000 
+ 00014299  0x00000ef6 bpatch  0x00000073 , 0x0000400e 
+ 00014300  0x00000ef7 fetch  0x00000001 , 0x0000004c 
+ 00014301  0x00000ef8 set0  0x00000002 , 0x0000003f 
+ 00014302  0x00000ef9 store  0x00000001 , 0x0000004c 
+ 00014303  0x00000efa hjam  0x00000000 , 0x00008011 
+ 00014304  0x00000efb rtn 
+ 00014305  0x00000eff set0  0x00000025 , 0x00000000 
+ 00014306  0x00000f00 bpatch  0x00000074 , 0x0000400e 
+ 00014307  0x00000f01 copy  0x00000022 , 0x0000003f 
+ 00014308  0x00000f02 store  0x00000004 , 0x000042a5 
+ 00014309  0x00000f03 add  0x00000022 , 0x00000003 , 0x00000011 
+ 00014310  0x00000f04 branch  0x000037e8 , 0x00000029 
+ 00014311  0x00000f05 add  0x00000028 , 0x00000003 , 0x00000011 
+ 00014312  0x00000f07 fetcht  0x00000002 , 0x00000032 
+ 00014313  0x00000f08 deposit  0x00000011 
+ 00014314  0x00000f09 set0  0x0000001b , 0x0000003f 
+ 00014315  0x00000f0a idiv  0x00000002 
+ 00014316  0x00000f0b fetch  0x00000002 , 0x00000075 
+ 00014317  0x00000f0c call  0x00007efd 
+ 00014318  0x00000f0d remainder  0x00000013 
+ 00014319  0x00000f0e isub  0x00000013 , 0x0000003f 
+ 00014320  0x00000f0f branch  0x000037f2 , 0x00000002 
+ 00014321  0x00000f10 iadd  0x00000002 , 0x0000003f 
+ 00014322  0x00000f12 iadd  0x00000011 , 0x0000003f 
+ 00014323  0x00000f13 store  0x00000004 , 0x00000034 
+ 00014324  0x00000f14 jam  0x00000000 , 0x00004748 
+ 00014325  0x00000f15 fetch  0x00000001 , 0x00000030 
+ 00014326  0x00000f16 set1  0x00000001 , 0x0000003f 
+ 00014327  0x00000f17 store  0x00000001 , 0x00000030 
+ 00014328  0x00000f18 fetch  0x00000001 , 0x00000073 
+ 00014329  0x00000f19 store  0x00000001 , 0x0000008a 
+ 00014330  0x00000f1a jam  0x00000080 , 0x0000416e 
+ 00014331  0x00000f1b setarg  0x00000000 
+ 00014332  0x00000f1c store  0x00000003 , 0x0000420a 
+ 00014333  0x00000f1d store  0x00000003 , 0x0000420d 
+ 00014334  0x00000f1e store  0x00000001 , 0x000041fa 
+ 00014335  0x00000f1f jam  0x0000000b , 0x00000b7d 
+ 00014336  0x00000f20 call  0x00007c27 
+ 00014337  0x00000f21 fetch  0x00000002 , 0x00004161 
+ 00014338  0x00000f22 store  0x00000002 , 0x0000003e 
+ 00014339  0x00000f23 nrtn  0x00000029 
+ 00014340  0x00000f24 add  0x00000004 , 0xffffffff , 0x00000007 
+ 00014341  0x00000f25 rtn 
+ 00014342  0x00000f28 set0  0x00000025 , 0x00000000 
+ 00014343  0x00000f29 bpatch  0x00000075 , 0x0000400e 
+ 00014344  0x00000f2a fetch  0x00000001 , 0x00000030 
+ 00014345  0x00000f2b rtnbit0  0x00000001 
+ 00014346  0x00000f2c set0  0x00000001 , 0x0000003f 
+ 00014347  0x00000f2d store  0x00000001 , 0x00000030 
+ 00014348  0x00000f2e jam  0x0000007f , 0x0000416e 
+ 00014349  0x00000f2f fetch  0x00000002 , 0x0000415f 
+ 00014350  0x00000f30 store  0x00000002 , 0x0000003e 
+ 00014351  0x00000f31 disable  0x0000002b 
+ 00014352  0x00000f32 jam  0x0000000c , 0x00000b7d 
+ 00014353  0x00000f33 branch  0x00007c27 
+ 00014354  0x00000f37 set0  0x00000025 , 0x00000000 
+ 00014355  0x00000f38 bpatch  0x00000076 , 0x0000400e 
+ 00014356  0x00000f39 enable  0x0000002e 
+ 00014357  0x00000f3a fetch  0x00000001 , 0x00000030 
+ 00014358  0x00000f3b bbit1  0x00000001 , 0x00003820 
+ 00014359  0x00000f3c rtnmark1  0x00000011 
+ 00014360  0x00000f3d fetch  0x00000001 , 0x00000047 
+ 00014361  0x00000f3e rtnbit1  0x00000003 
+ 00014362  0x00000f3f fetch  0x00000001 , 0x00000048 
+ 00014363  0x00000f40 nrtn  0x00000034 
+ 00014364  0x00000f41 fetch  0x00000001 , 0x0000004b 
+ 00014365  0x00000f42 rtnbit1  0x00000006 
+ 00014366  0x00000f44 force  0x00000000 , 0x0000003f 
+ 00014367  0x00000f45 rtn 
+ 00014368  0x00000f48 bbit0  0x00000002 , 0x00003830 
+ 00014369  0x00000f49 fetch  0x00000001 , 0x0000008a 
+ 00014370  0x00000f4a beq  0x00000002 , 0x00003826 
+ 00014371  0x00000f4b fetch  0x00000001 , 0x00000047 
+ 00014372  0x00000f4c bbit1  0x00000003 , 0x00003839 
+ 00014373  0x00000f4d bmark0  0x00000008 , 0x00003839 
+ 00014374  0x00000f4f call  0x00003290 
+ 00014375  0x00000f50 nbranch  0x00003839 , 0x00000029 
+ 00014376  0x00000f51 fetch  0x00000001 , 0x00000048 
+ 00014377  0x00000f52 nbranch  0x00003839 , 0x00000034 
+ 00014378  0x00000f54 fetch  0x00000001 , 0x000000f1 
+ 00014379  0x00000f55 increase  0xffffffff , 0x0000003f 
+ 00014380  0x00000f56 store  0x00000001 , 0x000000f1 
+ 00014381  0x00000f57 nbranch  0x0000381e , 0x00000034 
+ 00014382  0x00000f58 jam  0x00000010 , 0x000000f1 
+ 00014383  0x00000f59 branch  0x00003839 
+ 00014384  0x00000f5c fetch  0x00000001 , 0x0000008a 
+ 00014385  0x00000f5d bne  0x00000001 , 0x00003839 
+ 00014386  0x00000f5e fetch  0x00000001 , 0x0000008b 
+ 00014387  0x00000f5f branch  0x00003839 , 0x00000034 
+ 00014388  0x00000f60 increase  0xffffffff , 0x0000003f 
+ 00014389  0x00000f61 store  0x00000001 , 0x0000008b 
+ 00014390  0x00000f62 fetch  0x00000001 , 0x00000047 
+ 00014391  0x00000f63 rtnbit1  0x00000003 
+ 00014392  0x00000f64 nrtn  0x0000002d 
+ 00014393  0x00000f66 fetch  0x00000001 , 0x0000008a 
+ 00014394  0x00000f67 increase  0xffffffff , 0x0000003f 
+ 00014395  0x00000f68 store  0x00000001 , 0x0000008a 
+ 00014396  0x00000f69 rtn 
+ 00014397  0x00000f6d set0  0x00000025 , 0x00000000 
+ 00014398  0x00000f6e bpatch  0x00000077 , 0x0000400e 
+ 00014399  0x00000f6f disable  0x00000010 
+ 00014400  0x00000f70 copy  0x00000002 , 0x0000001b 
+ 00014401  0x00000f71 call  0x00003300 
+ 00014402  0x00000f72 disable  0x00000028 
+ 00014403  0x00000f73 nrtn  0x00000005 
+ 00014404  0x00000f74 force  0x00000000 , 0x0000001b 
+ 00014405  0x00000f75 enable  0x00000028 
+ 00014406  0x00000f76 rtn 
+ 00014407  0x00000f7a fetch  0x00000001 , 0x000041f9 
+ 00014408  0x00000f7b icompare  0x000000ff , 0x00000004 
+ 00014409  0x00000f7c rtn 
+ 00014410  0x00000f7f set0  0x00000025 , 0x00000000 
+ 00014411  0x00000f80 bpatch  0x00000078 , 0x0000400f 
+ 00014412  0x00000f81 jam  0x00000001 , 0x00004171 
+ 00014413  0x00000f83 call  0x00006a40 
+ 00014414  0x00000f84 force  0x0000000c , 0x0000003f 
+ 00014415  0x00000f85 store  0x00000002 , 0x00000032 
+ 00014416  0x00000f86 fetch  0x00000001 , 0x000000af 
+ 00014417  0x00000f87 lshift  0x0000003f , 0x0000003f 
+ 00014418  0x00000f88 store  0x00000002 , 0x00000075 
+ 00014419  0x00000f89 fetch  0x00000001 , 0x00000030 
+ 00014420  0x00000f8a set1  0x00000002 , 0x0000003f 
+ 00014421  0x00000f8b store  0x00000001 , 0x00000030 
+ 00014422  0x00000f8c jam  0x00000003 , 0x00000073 
+ 00014423  0x00000f8d jam  0x00000003 , 0x0000008a 
+ 00014424  0x00000f8e call  0x000037e1 
+ 00014425  0x00000f8f force  0x00000000 , 0x00000002 
+ 00014426  0x00000f90 call  0x00004914 
+ 00014427  0x00000f91 jam  0x00000050 , 0x000000b3 
+ 00014428  0x00000f92 jam  0x00000010 , 0x000000f1 
+ 00014429  0x00000f93 rtn 
+ 00014430  0x00000f96 set0  0x00000025 , 0x00000000 
+ 00014431  0x00000f97 bpatch  0x00000079 , 0x0000400f 
+ 00014432  0x00000f98 call  0x00003806 
+ 00014433  0x00000f99 jam  0x00000005 , 0x00004171 
+ 00014434  0x00000f9b call  0x00006a4a 
+ 00014435  0x00000f9c fetch  0x00000001 , 0x00000030 
+ 00014436  0x00000f9d set0  0x00000002 , 0x0000003f 
+ 00014437  0x00000f9e store  0x00000001 , 0x00000030 
+ 00014438  0x00000fa0 arg  0x00000e00 , 0x00000002 
+ 00014439  0x00000fa1 jam  0x00000013 , 0x000002c0 
+ 00014440  0x00000fa2 branch  0x000048c4 
+ 00014441  0x00000fa5 set0  0x00000025 , 0x00000000 
+ 00014442  0x00000fa6 bpatch  0x0000007a , 0x0000400f 
+ 00014443  0x00000fa7 jam  0x00000000 , 0x000000b1 
+ 00014444  0x00000fa8 call  0x0000385e 
+ 00014445  0x00000fa9 call  0x00003290 
+ 00014446  0x00000faa set0  0x00000007 , 0x00000000 
+ 00014447  0x00000fab rtn 
+ 00014448  0x00000fae set0  0x00000025 , 0x00000000 
+ 00014449  0x00000faf bpatch  0x0000007b , 0x0000400f 
+ 00014450  0x00000fb0 fetch  0x00000001 , 0x00004132 
+ 00014451  0x00000fb1 beq  0x00000001 , 0x00003898 
+ 00014452  0x00000fb2 set0  0x00000001 , 0x00000000 
+ 00014453  0x00000fb4 jam  0x00000000 , 0x000002d1 
+ 00014454  0x00000fb5 fetch  0x00000001 , 0x000002ca 
+ 00014455  0x00000fb6 rtn  0x00000034 
+ 00014456  0x00000fb7 isolate1  0x00000000 , 0x0000003f 
+ 00014457  0x00000fb8 arg  0x00001000 , 0x00000006 
+ 00014458  0x00000fb9 call  0x00004da8 , 0x00000001 
+ 00014459  0x00000fba set0  0x00000025 , 0x00000000 
+ 00014460  0x00000fbb bpatch  0x0000007c , 0x0000400f 
+ 00014461  0x00000fbc fetch  0x00000001 , 0x000002d1 
+ 00014462  0x00000fbd beq  0x00000001 , 0x0000388c 
+ 00014463  0x00000fbf jam  0x00000000 , 0x000002d1 
+ 00014464  0x00000fc0 fetch  0x00000001 , 0x000002ca 
+ 00014465  0x00000fc1 rtnbit0  0x00000001 
+ 00014466  0x00000fc2 arg  0x00001400 , 0x00000006 
+ 00014467  0x00000fc3 call  0x00004da8 
+ 00014468  0x00000fc4 fetch  0x00000001 , 0x000002d1 
+ 00014469  0x00000fc5 beq  0x00000001 , 0x00003892 
+ 00014470  0x00000fc6 rtn 
+ 00014471  0x00000fc9 fetch  0x00000001 , 0x0000004c 
+ 00014472  0x00000fca set0  0x00000007 , 0x0000003f 
+ 00014473  0x00000fcb store  0x00000001 , 0x0000004c 
+ 00014474  0x00000fcc set0  0x00000001 , 0x00000000 
+ 00014475  0x00000fcd branch  0x0000443b 
+ 00014476  0x00000fd0 fetch  0x00000001 , 0x000002ca 
+ 00014477  0x00000fd1 set0  0x00000000 , 0x0000003f 
+ 00014478  0x00000fd2 store  0x00000001 , 0x000002ca 
+ 00014479  0x00000fd3 setarg  0x00000000 
+ 00014480  0x00000fd4 store  0x00000002 , 0x000002c4 
+ 00014481  0x00000fd5 rtn 
+ 00014482  0x00000fd7 fetch  0x00000001 , 0x000002ca 
+ 00014483  0x00000fd8 set0  0x00000001 , 0x0000003f 
+ 00014484  0x00000fd9 store  0x00000001 , 0x000002ca 
+ 00014485  0x00000fda setarg  0x00000000 
+ 00014486  0x00000fdb store  0x00000002 , 0x000002c6 
+ 00014487  0x00000fdc rtn 
+ 00014488  0x00000fdf fetch  0x00000001 , 0x0000004c 
+ 00014489  0x00000fe0 rtnbit0  0x00000007 , 0x0000003f 
+ 00014490  0x00000fe1 call  0x00004435 
+ 00014491  0x00000fe2 fetch  0x00000002 , 0x00004800 
+ 00014492  0x00000fe3 branch  0x00003bf1 , 0x00000034 
+ 00014493  0x00000fe4 increase  0xffffffff , 0x0000003f 
+ 00014494  0x00000fe5 store  0x00000002 , 0x00004800 
+ 00014495  0x00000fe6 branch  0x00003887 
+ 00014496  0x00000fe9 fetch  0x00000001 , 0x000002ca 
+ 00014497  0x00000fea set1  0x00000000 , 0x0000003f 
+ 00014498  0x00000feb store  0x00000001 , 0x000002ca 
+ 00014499  0x00000fec rtn 
+ 00014500  0x00000fef fetch  0x00000001 , 0x000002ca 
+ 00014501  0x00000ff0 set1  0x00000001 , 0x0000003f 
+ 00014502  0x00000ff1 store  0x00000001 , 0x000002ca 
+ 00014503  0x00000ff2 rtn 
+ 00014504  0x00000ff9 set0  0x00000025 , 0x00000000 
+ 00014505  0x00000ffa bpatch  0x0000007d , 0x0000400f 
+ 00014506  0x00000ffb add  0x00000028 , 0x00000001 , 0x00000021 
+ 00014507  0x00000ffc call  0x00003a5d 
+ 00014508  0x00000ffd force  0x00000003 , 0x00000024 
+ 00014509  0x00000ffe call  0x00003a42 
+ 00014510  0x00000fff call  0x00003bae 
+ 00014511  0x00001000 call  0x00003bbf 
+ 00014512  0x00001001 branch  0x00003bc5 
+ 00014513  0x00001005 set0  0x00000025 , 0x00000000 
+ 00014514  0x00001006 bpatch  0x0000007e , 0x0000400f 
+ 00014515  0x00001007 call  0x00003baa 
+ 00014516  0x00001008 deposit  0x00000028 
+ 00014517  0x00001009 fetcht  0x00000004 , 0x0000416a 
+ 00014518  0x0000100a isub  0x00000002 , 0x0000003f 
+ 00014519  0x0000100b rtnne  0x00000001 
+ 00014520  0x0000100c compare  0x00000000 , 0x00000001 , 0x0000001f 
+ 00014521  0x0000100d nbranch  0x000038bc , 0x00000001 
+ 00014522  0x0000100e fetch  0x00000001 , 0x00000019 
+ 00014523  0x0000100f rtn  0x00000034 
+ 00014524  0x00001011 call  0x000038a8 
+ 00014525  0x00001012 compare  0x00000010 , 0x00000001 , 0x0000001f 
+ 00014526  0x00001013 branch  0x0000375c , 0x00000001 
+ 00014527  0x00001015 rshift  0x00000021 , 0x00000002 
+ 00014528  0x00001016 or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00014529  0x00001018 set0  0x00000025 , 0x00000000 
+ 00014530  0x00001019 bpatch  0x0000007f , 0x0000400f 
+ 00014531  0x0000101a enable  0x00000007 
+ 00014532  0x0000101b enable  0x0000000a 
+ 00014533  0x0000101c enable  0x0000001b 
+ 00014534  0x0000101d set0  0x00000010 , 0x00000000 
+ 00014535  0x0000101e deposit  0x00000004 
+ 00014536  0x0000101f inject  0x00000003 , 0x00000003 
+ 00014537  0x00001020 deposit  0x00000001 
+ 00014538  0x00001021 inject  0x00000003 , 0x00000004 
+ 00014539  0x00001022 fetch  0x00000001 , 0x00000047 
+ 00014540  0x00001023 inject  0x00000000 , 0x00000004 
+ 00014541  0x00001024 inject  0x00000003 , 0x00000003 
+ 00014542  0x00001025 enable  0x00000008 
+ 00014543  0x00001026 inject  0x00000003 , 0x00000008 
+ 00014544  0x00001027 disable  0x0000001b 
+ 00014545  0x00001028 disable  0x00000008 
+ 00014546  0x00001029 disable  0x0000000a 
+ 00014547  0x0000102a set0  0x00000002 , 0x00000015 
+ 00014548  0x0000102b arg  0x00000000 , 0x00000002 
+ 00014549  0x0000102c call  0x00003b74 
+ 00014550  0x0000102d set0  0x00000025 , 0x00000000 
+ 00014551  0x0000102e bpatch  0x00000080 , 0x00004010 
+ 00014552  0x0000102f and  0x00000001 , 0x0000001f , 0x0000003f 
+ 00014553  0x00001030 beq  0x00000013 , 0x00003913 
+ 00014554  0x00001031 beq  0x00000000 , 0x0000375c 
+ 00014555  0x00001032 beq  0x00000001 , 0x0000375c 
+ 00014556  0x00001033 beq  0x00000002 , 0x000038f5 
+ 00014557  0x00001034 beq  0x00000003 , 0x00003925 
+ 00014558  0x00001035 beq  0x00000004 , 0x0000392b 
+ 00014559  0x00001036 beq  0x00000007 , 0x000038e9 
+ 00014560  0x00001037 beq  0x00000008 , 0x0000392a 
+ 00014561  0x00001038 arg  0x00000004 , 0x00000002 
+ 00014562  0x00001039 call  0x00003b74 
+ 00014563  0x0000103a beq  0x0000000a , 0x00003927 
+ 00014564  0x0000103b beq  0x0000000b , 0x0000392d 
+ 00014565  0x0000103c arg  0x00000008 , 0x00000002 
+ 00014566  0x0000103d call  0x00003b74 
+ 00014567  0x0000103e beq  0x0000000f , 0x0000392d 
+ 00014568  0x0000103f branch  0x00003927 
+ 00014569  0x00001043 set0  0x00000025 , 0x00000000 
+ 00014570  0x00001044 bpatch  0x00000081 , 0x00004010 
+ 00014571  0x00001045 enable  0x0000001d 
+ 00014572  0x00001046 enable  0x00000009 
+ 00014573  0x00001047 enable  0x0000000e 
+ 00014574  0x00001048 force  0x0000001e , 0x00000039 
+ 00014575  0x00001049 arg  0x000000b5 , 0x00000006 
+ 00014576  0x0000104b ifetch  0x00000001 , 0x00000006 
+ 00014577  0x0000104c inject  0x00000003 , 0x00000008 
+ 00014578  0x0000104d loop  0x000038f0 
+ 00014579  0x0000104e bmark1  0x00000007 , 0x00003960 
+ 00014580  0x0000104f branch  0x0000375c 
+ 00014581  0x00001052 set0  0x00000025 , 0x00000000 
+ 00014582  0x00001053 bpatch  0x00000082 , 0x00004010 
+ 00014583  0x00001054 fetch  0x00000001 , 0x0000018b 
+ 00014584  0x00001055 icopy  0x00000004 
+ 00014585  0x00001056 fetch  0x00000001 , 0x0000008f 
+ 00014586  0x00001057 icopy  0x0000001c 
+ 00014587  0x00001058 fetch  0x00000003 , 0x0000414a 
+ 00014588  0x00001059 icopy  0x0000001d 
+ 00014589  0x0000105a fetch  0x00000002 , 0x00004144 
+ 00014590  0x0000105b icopy  0x0000002e 
+ 00014591  0x0000105c enable  0x00000009 
+ 00014592  0x0000105d enable  0x0000001c 
+ 00014593  0x0000105e copy  0x00000020 , 0x00000011 
+ 00014594  0x0000105f call  0x00003a54 
+ 00014595  0x00001060 pulse  0x00000015 
+ 00014596  0x00001061 nop  0x00000020 
+ 00014597  0x00001062 copy  0x00000021 , 0x0000000b 
+ 00014598  0x00001063 fetch  0x00000004 , 0x0000016b 
+ 00014599  0x00001064 icopy  0x00000021 
+ 00014600  0x00001065 preload  0x0000001e 
+ 00014601  0x00001066 set1  0x0000003a , 0x0000003f 
+ 00014602  0x00001067 inject  0x00000003 , 0x00000048 
+ 00014603  0x00001068 preload  0x0000001f 
+ 00014604  0x00001069 inject  0x00000003 , 0x00000048 
+ 00014605  0x0000106a copy  0x0000000b , 0x00000021 
+ 00014606  0x0000106b copy  0x00000011 , 0x00000020 
+ 00014607  0x0000106c enable  0x00000008 
+ 00014608  0x0000106d inject  0x00000003 , 0x00000010 
+ 00014609  0x0000106e disable  0x00000008 
+ 00014610  0x0000106f branch  0x0000375c 
+ 00014611  0x00001072 set0  0x00000025 , 0x00000000 
+ 00014612  0x00001073 bpatch  0x00000083 , 0x00004010 
+ 00014613  0x00001074 enable  0x0000000e 
+ 00014614  0x00001075 enable  0x00000009 
+ 00014615  0x00001076 enable  0x0000001c 
+ 00014616  0x00001077 fetch  0x00000001 , 0x00000432 
+ 00014617  0x00001078 and  0x0000003f , 0x000001f8 , 0x00000002 
+ 00014618  0x00001079 arg  0x00000432 , 0x00000006 
+ 00014619  0x0000107a increase  0x00000008 , 0x00000002 
+ 00014620  0x0000107c add  0x00000002 , 0xffffffb8 , 0x00000013 
+ 00014621  0x0000107d nbranch  0x00003922 , 0x00000002 
+ 00014622  0x0000107e ifetch  0x00000009 , 0x00000006 
+ 00014623  0x0000107f inject  0x00000003 , 0x00000048 
+ 00014624  0x00001080 copy  0x00000013 , 0x00000002 
+ 00014625  0x00001081 branch  0x0000391c 
+ 00014626  0x00001083 ifetch  0x00000009 , 0x00000006 
+ 00014627  0x00001084 iinject  0x00000003 , 0x00000002 
+ 00014628  0x00001085 branch  0x00003960 
+ 00014629  0x00001088 enable  0x0000001c 
+ 00014630  0x00001089 branch  0x00003930 
+ 00014631  0x0000108c enable  0x0000001c 
+ 00014632  0x0000108d set1  0x00000010 , 0x00000000 
+ 00014633  0x0000108e branch  0x00003930 
+ 00014634  0x00001091 set1  0x00000002 , 0x00000015 
+ 00014635  0x00001093 enable  0x0000001d 
+ 00014636  0x00001094 branch  0x00003930 
+ 00014637  0x00001098 set1  0x00000002 , 0x00000015 
+ 00014638  0x00001099 enable  0x0000001d 
+ 00014639  0x0000109a set1  0x00000010 , 0x00000000 
+ 00014640  0x0000109d set0  0x00000025 , 0x00000000 
+ 00014641  0x0000109e bpatch  0x00000084 , 0x00004010 
+ 00014642  0x0000109f fetch  0x00000001 , 0x0000004c 
+ 00014643  0x000010a0 bbit0  0x00000005 , 0x00003946 
+ 00014644  0x000010a1 sub  0x00000001 , 0x00000003 , 0x0000003e 
+ 00014645  0x000010a2 branch  0x00003946 , 0x00000002 
+ 00014646  0x000010a3 disable  0x0000000e 
+ 00014647  0x000010a4 disable  0x0000001c 
+ 00014648  0x000010a5 enable  0x0000001d 
+ 00014649  0x000010a6 disable  0x00000007 
+ 00014650  0x000010a7 set1  0x00000001 , 0x00000015 
+ 00014651  0x000010a8 isolate1  0x00000002 , 0x00000015 
+ 00014652  0x000010a9 branch  0x00003940 , 0x00000001 
+ 00014653  0x000010aa setarg  0x000abeee 
+ 00014654  0x000010ab inject  0x00000003 , 0x00000014 
+ 00014655  0x000010ac branch  0x00003944 
+ 00014656  0x000010ae setarg  0x005faeba 
+ 00014657  0x000010af inject  0x00000003 , 0x00000018 
+ 00014658  0x000010b0 setarg  0x00000012 
+ 00014659  0x000010b1 inject  0x00000003 , 0x00000006 
+ 00014660  0x000010b3 enable  0x00000007 
+ 00014661  0x000010b4 set1  0x00000010 , 0x00000000 
+ 00014662  0x000010b6 enable  0x0000000e 
+ 00014663  0x000010b7 enable  0x00000009 
+ 00014664  0x000010b8 bmark1  0x00000005 , 0x00003969 
+ 00014665  0x000010b9 fetch  0x00000001 , 0x00000090 
+ 00014666  0x000010ba inject  0x00000003 , 0x00000003 
+ 00014667  0x000010bb fetch  0x00000002 , 0x00000091 
+ 00014668  0x000010bc iforce  0x00000039 
+ 00014669  0x000010bd bmark1  0x00000010 , 0x00003950 
+ 00014670  0x000010be inject  0x00000003 , 0x00000005 
+ 00014671  0x000010bf branch  0x00003951 
+ 00014672  0x000010c1 inject  0x00000003 , 0x0000000d 
+ 00014673  0x000010c3 fetch  0x00000001 , 0x00004132 
+ 00014674  0x000010c4 beq  0x00000001 , 0x0000395b 
+ 00014675  0x000010c5 deposit  0x00000039 
+ 00014676  0x000010c6 branch  0x00003960 , 0x00000034 
+ 00014677  0x000010c7 fetch  0x00000002 , 0x00000179 
+ 00014678  0x000010c8 iforce  0x00000006 
+ 00014679  0x000010ca ifetch  0x00000001 , 0x00000006 
+ 00014680  0x000010cb inject  0x00000003 , 0x00000008 
+ 00014681  0x000010cc loop  0x00003957 
+ 00014682  0x000010cd branch  0x00003960 
+ 00014683  0x000010cf fetch  0x00000002 , 0x00000179 
+ 00014684  0x000010d0 iforce  0x00000003 
+ 00014685  0x000010d2 ifetch  0x00000001 , 0x00000003 
+ 00014686  0x000010d3 inject  0x00000003 , 0x00000008 
+ 00014687  0x000010d4 loop  0x0000395d 
+ 00014688  0x000010d6 enable  0x00000008 
+ 00014689  0x000010d7 inject  0x00000003 , 0x00000010 
+ 00014690  0x000010d8 disable  0x00000008 
+ 00014691  0x000010d9 call  0x00003583 
+ 00014692  0x000010da fetch  0x00000001 , 0x0000004c 
+ 00014693  0x000010db bbit0  0x00000005 , 0x0000375c 
+ 00014694  0x000010dc force  0x00000000 , 0x0000003f 
+ 00014695  0x000010dd inject  0x00000003 , 0x00000006 
+ 00014696  0x000010de branch  0x0000375c 
+ 00014697  0x000010e2 set0  0x00000025 , 0x00000000 
+ 00014698  0x000010e3 bpatch  0x00000085 , 0x00004010 
+ 00014699  0x000010e4 bmark1  0x00000010 , 0x00003972 
+ 00014700  0x000010e6 fetch  0x00000001 , 0x0000018a 
+ 00014701  0x000010e7 inject  0x00000003 , 0x00000003 
+ 00014702  0x000010e8 fetch  0x00000001 , 0x00000169 
+ 00014703  0x000010e9 iforce  0x00000013 
+ 00014704  0x000010ea inject  0x00000003 , 0x00000005 
+ 00014705  0x000010eb branch  0x00003977 
+ 00014706  0x000010ed fetch  0x00000001 , 0x0000018a 
+ 00014707  0x000010ee inject  0x00000003 , 0x00000003 
+ 00014708  0x000010ef fetch  0x00000002 , 0x00000169 
+ 00014709  0x000010f0 iforce  0x00000013 
+ 00014710  0x000010f1 inject  0x00000003 , 0x0000000d 
+ 00014711  0x000010f3 arg  0x000004de , 0x00000006 
+ 00014712  0x000010f5 copy  0x00000013 , 0x0000003e 
+ 00014713  0x000010f6 branch  0x0000397e , 0x00000005 
+ 00014714  0x000010f7 ifetch  0x00000001 , 0x00000006 
+ 00014715  0x000010f8 inject  0x00000003 , 0x00000008 
+ 00014716  0x000010f9 increase  0xffffffff , 0x00000013 
+ 00014717  0x000010fa branch  0x00003978 
+ 00014718  0x000010fc fetch  0x00000002 , 0x000000fe 
+ 00014719  0x000010fd increase  0x00000001 , 0x0000003f 
+ 00014720  0x000010fe store  0x00000002 , 0x000000fe 
+ 00014721  0x000010ff branch  0x00003960 
+ 00014722  0x00001103 fetch  0x00000004 , 0x0000016f 
+ 00014723  0x00001104 add  0x0000003f , 0x00000007 , 0x00000011 
+ 00014724  0x00001105 fetch  0x00000002 , 0x0000017b 
+ 00014725  0x00001106 nbranch  0x00003988 , 0x00000034 
+ 00014726  0x00001107 increase  0xfffffffd , 0x00000011 
+ 00014727  0x00001108 branch  0x00003990 
+ 00014728  0x0000110a mul32  0x0000003f , 0x0000000c , 0x0000003f 
+ 00014729  0x0000110b hfetcht  0x00000002 , 0x00008040 
+ 00014730  0x0000110c increase  0x00000001 , 0x00000002 
+ 00014731  0x0000110e isub  0x00000002 , 0x0000003f 
+ 00014732  0x0000110f nbranch  0x0000398f , 0x00000002 
+ 00014733  0x00001110 increase  0xffffffff , 0x00000011 
+ 00014734  0x00001111 branch  0x0000398b 
+ 00014735  0x00001113 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00014736  0x00001115 until  0x0000003e , 0x00000023 
+ 00014737  0x00001116 compare  0x00000000 , 0x00000022 , 0x00000003 
+ 00014738  0x00001117 nbranch  0x00003990 , 0x00000001 
+ 00014739  0x00001118 iforce  0x00000029 
+ 00014740  0x00001119 copy  0x00000011 , 0x00000028 
+ 00014741  0x0000111a iforce  0x00000029 
+ 00014742  0x0000111b rtn 
+ 00014743  0x0000111f set0  0x00000025 , 0x00000000 
+ 00014744  0x00001120 bpatch  0x00000086 , 0x00004010 
+ 00014745  0x00001121 until  0x0000003e , 0x00000022 
+ 00014746  0x00001122 deposit  0x0000001a 
+ 00014747  0x00001123 iforce  0x00000006 
+ 00014748  0x00001124 rshift16 , 0x0000003f , 0x0000003f 
+ 00014749  0x00001125 isub  0x00000022 , 0x00000039 
+ 00014750  0x00001126 and_into  0x00000003 , 0x00000039 
+ 00014751  0x00001127 nbranch  0x000039a2 , 0x00000005 
+ 00014752  0x00001128 force  0x00000000 , 0x0000003f 
+ 00014753  0x00001129 branch  0x000039a6 
+ 00014754  0x0000112b arg  0x00000ea6 , 0x00000002 
+ 00014755  0x0000112c force  0x00000000 , 0x0000003f 
+ 00014756  0x0000112e iadd  0x00000002 , 0x0000003f 
+ 00014757  0x0000112f loop  0x000039a4 
+ 00014758  0x00001131 iadd  0x00000006 , 0x0000003f 
+ 00014759  0x00001132 div  0x0000003f , 0x0000000c 
+ 00014760  0x00001133 call  0x00007efd 
+ 00014761  0x00001134 quotient  0x0000003f 
+ 00014762  0x00001135 store  0x00000002 , 0x0000017b 
+ 00014763  0x00001136 rtn 
+ 00014764  0x00001139 set0  0x00000025 , 0x00000000 
+ 00014765  0x0000113a bpatch  0x00000087 , 0x00004010 
+ 00014766  0x0000113b deposit  0x0000001a 
+ 00014767  0x0000113c copy  0x00000019 , 0x00000002 
+ 00014768  0x0000113d isub  0x00000002 , 0x0000003e 
+ 00014769  0x0000113e nsetflag  0x00000002 , 0x0000002c , 0x0000003f 
+ 00014770  0x0000113f isub  0x00000002 , 0x00000002 
+ 00014771  0x00001140 setarg  0x00000ea6 
+ 00014772  0x00001141 isolate0  0x0000000f , 0x00000002 
+ 00014773  0x00001142 branch  0x000039b8 , 0x00000001 
+ 00014774  0x00001143 setarg  0xffff0ea6 
+ 00014775  0x00001144 iadd  0x00000002 , 0x00000002 
+ 00014776  0x00001146 storet  0x00000006 , 0x000003c8 
+ 00014777  0x00001147 rtn  0x00000036 
+ 00014778  0x00001148 storet  0x00000006 , 0x00000038 
+ 00014779  0x00001149 rtn 
+ 00014780  0x0000114c disable  0x00000030 
+ 00014781  0x0000114d fetch  0x00000006 , 0x000003c8 
+ 00014782  0x0000114e branch  0x000039c0 , 0x00000036 
+ 00014783  0x0000114f fetch  0x00000006 , 0x00000038 
+ 00014784  0x00001151 iadd  0x00000019 , 0x00000030 
+ 00014785  0x00001152 increase  0x0000000a , 0x00000030 
+ 00014786  0x00001153 setarg  0x00000ea6 
+ 00014787  0x00001154 isub  0x00000030 , 0x0000003f 
+ 00014788  0x00001155 isolate0  0x0000000f , 0x0000003f 
+ 00014789  0x00001156 branch  0x000039ca , 0x00000001 
+ 00014790  0x00001157 setarg  0x0000f15a 
+ 00014791  0x00001158 iadd  0x00000030 , 0x00000030 
+ 00014792  0x0000115a copy  0x00000030 , 0x0000001a 
+ 00014793  0x0000115b rtn 
+ 00014794  0x0000115d force  0x00000000 , 0x0000003e 
+ 00014795  0x0000115e branch  0x000039c8 
+ 00014796  0x00001166 set0  0x00000025 , 0x00000000 
+ 00014797  0x00001167 bpatch  0x00000088 , 0x00004011 
+ 00014798  0x00001168 call  0x00003a7a 
+ 00014799  0x00001169 copy  0x00000021 , 0x0000003f 
+ 00014800  0x0000116a and_into  0x00000180 , 0x0000003f 
+ 00014801  0x0000116b compare  0x00000003 , 0x00000024 , 0x00000007 
+ 00014802  0x0000116c nbranch  0x000039d6 , 0x00000001 
+ 00014803  0x0000116d rshift3  0x0000003f , 0x0000003f 
+ 00014804  0x0000116e iadd  0x00000017 , 0x0000003f 
+ 00014805  0x0000116f branch  0x000039d7 
+ 00014806  0x00001171 copy  0x00000017 , 0x0000003f 
+ 00014807  0x00001173 div  0x0000003f , 0x0000004f 
+ 00014808  0x00001174 pulse  0x00000015 
+ 00014809  0x00001175 call  0x00007efd 
+ 00014810  0x00001176 remainder  0x00000011 
+ 00014811  0x00001177 add  0x00000011 , 0xffffffd8 , 0x00000002 
+ 00014812  0x00001178 branch  0x000039df , 0x00000002 
+ 00014813  0x00001179 lshift  0x00000011 , 0x00000002 
+ 00014814  0x0000117a branch  0x000039e1 
+ 00014815  0x0000117c lshift  0x00000002 , 0x00000002 
+ 00014816  0x0000117d increase  0x00000001 , 0x00000002 
+ 00014817  0x0000117f set0  0x00000025 , 0x00000000 
+ 00014818  0x00001180 bpatch  0x00000089 , 0x00004011 
+ 00014819  0x00001181 fetch  0x00000001 , 0x00000031 
+ 00014820  0x00001182 bbit0  0x00000003 , 0x000039f3 
+ 00014821  0x00001184 fetch  0x00000004 , 0x00004173 
+ 00014822  0x00001185 isub  0x00000021 , 0x0000003e 
+ 00014823  0x00001186 branch  0x000039f3 , 0x00000002 
+ 00014824  0x00001187 call  0x00003a12 
+ 00014825  0x00001188 fetch  0x00000001 , 0x0000417a 
+ 00014826  0x00001189 rtn  0x00000034 
+ 00014827  0x0000118a fetch  0x00000001 , 0x00000031 
+ 00014828  0x0000118b set1  0x00000002 , 0x0000003f 
+ 00014829  0x0000118c store  0x00000001 , 0x00000031 
+ 00014830  0x0000118d fetch  0x00000005 , 0x00004188 
+ 00014831  0x0000118e store  0x00000005 , 0x0000417b 
+ 00014832  0x0000118f ifetch  0x00000005 , 0x00000006 
+ 00014833  0x00001190 store  0x00000005 , 0x00004180 
+ 00014834  0x00001191 call  0x00003a17 
+ 00014835  0x00001193 fetch  0x00000001 , 0x00000031 
+ 00014836  0x00001194 rtnbit0  0x00000002 
+ 00014837  0x00001195 isolate1  0x00000001 , 0x00000021 
+ 00014838  0x00001196 branch  0x00003a0f , 0x00000001 
+ 00014839  0x00001197 rshift3  0x00000002 , 0x00000011 
+ 00014840  0x00001198 and  0x00000002 , 0x00000007 , 0x00000007 
+ 00014841  0x00001199 setarg  0x0000417b 
+ 00014842  0x0000119a iadd  0x00000011 , 0x00000011 
+ 00014843  0x0000119b ifetch  0x00000001 , 0x00000011 
+ 00014844  0x0000119c qisolate0  0x0000003f 
+ 00014845  0x0000119d branch  0x00003a00 , 0x00000001 
+ 00014846  0x0000119e deposit  0x00000002 
+ 00014847  0x0000119f branch  0x00003a0c 
+ 00014848  0x000011a1 fetch  0x00000001 , 0x00004185 
+ 00014849  0x000011a2 iforce  0x00000012 
+ 00014850  0x000011a3 deposit  0x00000021 
+ 00014851  0x000011a4 and_into  0x00000180 , 0x0000003f 
+ 00014852  0x000011a5 rshift3  0x0000003f , 0x0000003f 
+ 00014853  0x000011a6 iadd  0x00000017 , 0x0000003f 
+ 00014854  0x000011a7 idiv  0x00000012 
+ 00014855  0x000011a8 setarg  0x00004193 
+ 00014856  0x000011a9 call  0x00007efd 
+ 00014857  0x000011aa remainder  0x00000011 
+ 00014858  0x000011ab iadd  0x00000011 , 0x00000006 
+ 00014859  0x000011ac ifetch  0x00000001 , 0x00000006 
+ 00014860  0x000011ae store  0x00000001 , 0x00004186 
+ 00014861  0x000011af iforce  0x00000002 
+ 00014862  0x000011b0 rtn 
+ 00014863  0x000011b3 fetch  0x00000001 , 0x00004186 
+ 00014864  0x000011b4 iforce  0x00000002 
+ 00014865  0x000011b5 rtn 
+ 00014866  0x000011b8 fetch  0x00000001 , 0x00000031 
+ 00014867  0x000011b9 set0  0x00000002 , 0x0000003f 
+ 00014868  0x000011ba set0  0x00000003 , 0x0000003f 
+ 00014869  0x000011bb store  0x00000001 , 0x00000031 
+ 00014870  0x000011bc rtn 
+ 00014871  0x000011c3 set0  0x00000025 , 0x00000000 
+ 00014872  0x000011c4 bpatch  0x0000008a , 0x00004011 
+ 00014873  0x000011c5 arg  0x00004193 , 0x00000005 
+ 00014874  0x000011c6 force  0x0000000a , 0x00000039 
+ 00014875  0x000011c7 call  0x00007e3b 
+ 00014876  0x000011c8 arg  0x00004193 , 0x00000005 
+ 00014877  0x000011c9 force  0x00000000 , 0x00000013 
+ 00014878  0x000011ca force  0x00000002 , 0x00000007 
+ 00014879  0x000011cc fetch  0x00000005 , 0x0000417b 
+ 00014880  0x000011cd iforce  0x00000002 
+ 00014881  0x000011ce compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014882  0x000011cf branch  0x00003a24 , 0x00000001 
+ 00014883  0x000011d0 rshift  0x00000002 , 0x00000002 
+ 00014884  0x000011d2 isolate0  0x00000000 , 0x00000002 
+ 00014885  0x000011d3 branch  0x00003a28 , 0x00000001 
+ 00014886  0x000011d4 deposit  0x00000013 
+ 00014887  0x000011d5 istore  0x00000001 , 0x00000005 
+ 00014888  0x000011d7 rshift2  0x00000002 , 0x00000002 
+ 00014889  0x000011d8 increase  0x00000002 , 0x00000013 
+ 00014890  0x000011d9 compare  0x00000028 , 0x00000013 , 0x000000fe 
+ 00014891  0x000011da nbranch  0x00003a31 , 0x00000001 
+ 00014892  0x000011db fetch  0x00000005 , 0x00004180 
+ 00014893  0x000011dc iforce  0x00000002 
+ 00014894  0x000011dd compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014895  0x000011de branch  0x00003a31 , 0x00000001 
+ 00014896  0x000011df rshift  0x00000002 , 0x00000002 
+ 00014897  0x000011e1 sub  0x00000013 , 0x0000004e , 0x0000003e 
+ 00014898  0x000011e2 branch  0x00003a24 , 0x00000002 
+ 00014899  0x000011e3 force  0x00000001 , 0x00000013 
+ 00014900  0x000011e4 increase  0xffffffff , 0x00000007 
+ 00014901  0x000011e5 nbranch  0x00003a1f , 0x00000005 
+ 00014902  0x000011e6 arg  0x00004193 , 0x00000011 
+ 00014903  0x000011e7 deposit  0x00000005 
+ 00014904  0x000011e8 isub  0x00000011 , 0x0000003f 
+ 00014905  0x000011e9 store  0x00000001 , 0x00004185 
+ 00014906  0x000011ea rtn 
+ 00014907  0x000011ed set0  0x00000025 , 0x00000000 
+ 00014908  0x000011ee bpatch  0x0000008b , 0x00004011 
+ 00014909  0x000011ef call  0x000039cc 
+ 00014910  0x000011f0 fetch  0x00000001 , 0x00000189 
+ 00014911  0x000011f1 bbit0  0x00000005 , 0x00003a41 
+ 00014912  0x000011f2 fetcht  0x00000001 , 0x00000448 
+ 00014913  0x000011f4 branch  0x00003a82 
+ 00014914  0x000011f8 set0  0x00000025 , 0x00000000 
+ 00014915  0x000011f9 bpatch  0x0000008c , 0x00004011 
+ 00014916  0x000011fa call  0x000039cc 
+ 00014917  0x000011fb fetch  0x00000001 , 0x00000189 
+ 00014918  0x000011fc bbit0  0x00000004 , 0x00003a48 
+ 00014919  0x000011fd fetcht  0x00000001 , 0x00000447 
+ 00014920  0x000011ff branch  0x00003a91 
+ 00014921  0x00001203 force  0x00000000 , 0x0000002d 
+ 00014922  0x00001204 fetch  0x00000003 , 0x00004147 
+ 00014923  0x00001205 iforce  0x0000002c 
+ 00014924  0x00001206 rtn 
+ 00014925  0x00001209 set0  0x00000025 , 0x00000000 
+ 00014926  0x0000120a bpatch  0x0000008d , 0x00004011 
+ 00014927  0x0000120b fetch  0x00000001 , 0x00004277 
+ 00014928  0x0000120c icopy  0x0000002d 
+ 00014929  0x0000120d fetch  0x00000003 , 0x00004274 
+ 00014930  0x0000120e icopy  0x0000002c 
+ 00014931  0x0000120f rtn 
+ 00014932  0x00001212 set0  0x00000025 , 0x00000000 
+ 00014933  0x00001213 bpatch  0x0000008e , 0x00004011 
+ 00014934  0x00001214 fetch  0x00000002 , 0x00004144 
+ 00014935  0x00001215 icopy  0x0000002e 
+ 00014936  0x00001216 fetch  0x00000001 , 0x00004143 
+ 00014937  0x00001217 icopy  0x0000002d 
+ 00014938  0x00001218 fetch  0x00000003 , 0x00004140 
+ 00014939  0x00001219 icopy  0x0000002c 
+ 00014940  0x0000121a rtn 
+ 00014941  0x0000121d set0  0x00000025 , 0x00000000 
+ 00014942  0x0000121e bpatch  0x0000008f , 0x00004011 
+ 00014943  0x0000121f fetch  0x00000002 , 0x00000044 
+ 00014944  0x00001220 icopy  0x0000002e 
+ 00014945  0x00001221 fetch  0x00000001 , 0x00000043 
+ 00014946  0x00001222 icopy  0x0000002d 
+ 00014947  0x00001223 fetch  0x00000003 , 0x00000040 
+ 00014948  0x00001224 icopy  0x0000002c 
+ 00014949  0x00001225 rtn 
+ 00014950  0x00001229 bmark1  0x00000020 , 0x00003a69 
+ 00014951  0x0000122a rtnmark0  0x0000001d 
+ 00014952  0x0000122b rtnmark0  0x0000001f 
+ 00014953  0x0000122d and_into  0xffffff00 , 0x0000002c 
+ 00014954  0x0000122e pulse  0x00000015 
+ 00014955  0x0000122f nop  0x00000020 
+ 00014956  0x00001230 rtn 
+ 00014957  0x00001234 set0  0x00000025 , 0x00000000 
+ 00014958  0x00001235 bpatch  0x00000090 , 0x00004012 
+ 00014959  0x00001236 force  0x00000000 , 0x00000015 
+ 00014960  0x00001237 disable  0x00000021 
+ 00014961  0x00001238 disable  0x00000020 
+ 00014962  0x00001239 pulse  0x0000001e 
+ 00014963  0x0000123a hjam  0x00000000 , 0x00008902 
+ 00014964  0x0000123b hjam  0x00000000 , 0x00008901 
+ 00014965  0x0000123c hjam  0x00000000 , 0x00008900 
+ 00014966  0x0000123d hjam  0x00000000 , 0x00008903 
+ 00014967  0x0000123e hjam  0x00000070 , 0x00008904 
+ 00014968  0x0000123f hjam  0x00000000 , 0x00008906 
+ 00014969  0x00001240 rtn 
+ 00014970  0x00001243 set0  0x00000025 , 0x00000000 
+ 00014971  0x00001244 bpatch  0x00000091 , 0x00004012 
+ 00014972  0x00001245 hjam  0x00000000 , 0x00008902 
+ 00014973  0x00001246 hjam  0x00000000 , 0x00008901 
+ 00014974  0x00001247 hjam  0x00000018 , 0x00008900 
+ 00014975  0x00001248 hjam  0x000000a7 , 0x00008903 
+ 00014976  0x00001249 hjam  0x0000007f , 0x00008904 
+ 00014977  0x0000124a rtn 
+ 00014978  0x0000124e set0  0x00000025 , 0x00000000 
+ 00014979  0x0000124f bpatch  0x00000092 , 0x00004012 
+ 00014980  0x00001251 storet  0x00000001 , 0x00000017 
+ 00014981  0x00001252 add  0x00000002 , 0x00000004 , 0x00000011 
+ 00014982  0x00001253 branch  0x00003ab6 
+ 00014983  0x00001255 set0  0x00000025 , 0x00000000 
+ 00014984  0x00001256 bpatch  0x00000093 , 0x00004012 
+ 00014985  0x00001257 hjam  0x000000cf , 0x00008901 
+ 00014986  0x00001258 nop  0x0000000a 
+ 00014987  0x00001259 hjam  0x000000ff , 0x00008900 
+ 00014988  0x0000125a hjam  0x000000af , 0x00008903 
+ 00014989  0x0000125b hjam  0x000000ff , 0x00008904 
+ 00014990  0x0000125c nop  0x0000000a 
+ 00014991  0x0000125d hjam  0x000000a0 , 0x00008902 
+ 00014992  0x0000125e rtn 
+ 00014993  0x00001262 set0  0x00000025 , 0x00000000 
+ 00014994  0x00001263 bpatch  0x00000094 , 0x00004012 
+ 00014995  0x00001264 storet  0x00000001 , 0x00000017 
+ 00014996  0x00001265 add  0x00000002 , 0x00000002 , 0x00000011 
+ 00014997  0x00001266 call  0x00003ab6 
+ 00014998  0x00001267 setarg  0x00000500 
+ 00014999  0x00001268 call  0x00003bf3 
+ 00015000  0x0000126a hjam  0x00000001 , 0x00008906 
+ 00015001  0x0000126b hjam  0x0000003c , 0x00008900 
+ 00015002  0x0000126c hjam  0x000000e0 , 0x00008901 
+ 00015003  0x0000126d hjam  0x000000b7 , 0x00008903 
+ 00015004  0x0000126e hjam  0x0000007f , 0x00008902 
+ 00015005  0x0000126f rtn 
+ 00015006  0x00001272 hjam  0x00000006 , 0x00008042 
+ 00015007  0x00001273 call  0x00003c29 
+ 00015008  0x00001274 call  0x00003c3a 
+ 00015009  0x00001276 fetch  0x00000002 , 0x00004163 
+ 00015010  0x00001277 bbit0  0x0000000e , 0x00003aa1 
+ 00015011  0x00001278 iforce  0x00000006 
+ 00015012  0x00001279 arg  0x00008900 , 0x00000002 
+ 00015013  0x0000127b ifetch  0x00000001 , 0x00000006 
+ 00015014  0x0000127c beq  0x000000ff , 0x00003aab 
+ 00015015  0x0000127d ior  0x00000002 , 0x00000005 
+ 00015016  0x0000127e ifetch  0x00000001 , 0x00000006 
+ 00015017  0x0000127f istore  0x00000001 , 0x00000005 
+ 00015018  0x00001280 branch  0x00003aa5 
+ 00015019  0x00001282 set0  0x00000025 , 0x00000000 
+ 00015020  0x00001283 bpatch  0x00000095 , 0x00004012 
+ 00015021  0x00001284 call  0x00003d91 
+ 00015022  0x00001285 call  0x00003b0a 
+ 00015023  0x00001287 setarg  0x000007d0 
+ 00015024  0x00001288 iadd  0x00000022 , 0x0000003f 
+ 00015025  0x00001289 store  0x00000004 , 0x00000173 
+ 00015026  0x0000128a set1  0x00000003 , 0x00000015 
+ 00015027  0x0000128b force  0x00000000 , 0x00000015 
+ 00015028  0x0000128c ncall  0x00003ace , 0x0000002b 
+ 00015029  0x0000128d branch  0x00003ae2 
+ 00015030  0x00001291 set0  0x00000025 , 0x00000000 
+ 00015031  0x00001292 bpatch  0x00000096 , 0x00004012 
+ 00015032  0x00001293 setarg  0x00000960 
+ 00015033  0x00001294 iadd  0x00000011 , 0x00000002 
+ 00015034  0x00001295 fetch  0x00000001 , 0x0000415d 
+ 00015035  0x00001296 hjam  0x00000004 , 0x0000895f 
+ 00015036  0x00001297 imul32  0x00000002 , 0x0000003f 
+ 00015037  0x00001298 fetcht  0x00000001 , 0x0000415e 
+ 00015038  0x00001299 idiv  0x00000002 
+ 00015039  0x0000129a call  0x00007efd 
+ 00015040  0x0000129b quotient  0x00000011 
+ 00015041  0x0000129c remainder  0x0000003f 
+ 00015042  0x0000129d lshift16  0x0000003f , 0x0000003f 
+ 00015043  0x0000129e lshift4  0x0000003f , 0x0000003f 
+ 00015044  0x0000129f idiv  0x00000002 
+ 00015045  0x000012a0 call  0x00007efd 
+ 00015046  0x000012a1 quotient  0x0000003f 
+ 00015047  0x000012a2 lshift8  0x0000003f , 0x0000003f 
+ 00015048  0x000012a3 lshift  0x0000003f , 0x0000003f 
+ 00015049  0x000012a4 ior  0x00000011 , 0x0000003f 
+ 00015050  0x000012a5 hstore  0x00000004 , 0x00008960 
+ 00015051  0x000012a6 hjam  0x00000044 , 0x0000895f 
+ 00015052  0x000012a7 hjam  0x000000c4 , 0x0000895f 
+ 00015053  0x000012a8 rtn 
+ 00015054  0x000012ac set0  0x00000025 , 0x00000000 
+ 00015055  0x000012ad bpatch  0x00000097 , 0x00004012 
+ 00015056  0x000012ae hjam  0x00000002 , 0x00008906 
+ 00015057  0x000012af setarg  0x0003d090 
+ 00015058  0x000012b0 call  0x00003bf3 
+ 00015059  0x000012b1 hjam  0x0000007f , 0x00008900 
+ 00015060  0x000012b2 nop  0x00000082 
+ 00015061  0x000012b3 hjam  0x00000030 , 0x00008952 
+ 00015062  0x000012b4 hjam  0x000000d0 , 0x00008901 
+ 00015063  0x000012b5 hjam  0x00000070 , 0x00008952 
+ 00015064  0x000012b6 hjam  0x000000f0 , 0x00008952 
+ 00015065  0x000012b7 force  0x00000032 , 0x00000039 
+ 00015066  0x000012b9 hfetch  0x00000001 , 0x00008980 
+ 00015067  0x000012ba bbit1  0x00000005 , 0x00003add 
+ 00015068  0x000012bb loop  0x00003ada 
+ 00015069  0x000012bd store  0x00000001 , 0x0000416f 
+ 00015070  0x000012be hjam  0x00000000 , 0x00008901 
+ 00015071  0x000012bf hjam  0x00000000 , 0x00008900 
+ 00015072  0x000012c0 hjam  0x00000000 , 0x00008906 
+ 00015073  0x000012c1 rtn 
+ 00015074  0x000012c4 set0  0x00000025 , 0x00000000 
+ 00015075  0x000012c5 bpatch  0x00000098 , 0x00004013 
+ 00015076  0x000012c6 fetch  0x00000001 , 0x0000416f 
+ 00015077  0x000012c7 set1  0x00000005 , 0x0000003f 
+ 00015078  0x000012c8 hstore  0x00000001 , 0x00008952 
+ 00015079  0x000012c9 hfetcht  0x00000001 , 0x00008950 
+ 00015080  0x000012ca and_into  0x00000007 , 0x00000002 
+ 00015081  0x000012cb lshift3  0x0000003f , 0x0000003f 
+ 00015082  0x000012cc ior  0x00000002 , 0x0000003f 
+ 00015083  0x000012cd hstore  0x00000001 , 0x00008950 
+ 00015084  0x000012ce hfetch  0x00000001 , 0x00008951 
+ 00015085  0x000012cf set0  0x00000000 , 0x0000003f 
+ 00015086  0x000012d0 hstore  0x00000001 , 0x00008951 
+ 00015087  0x000012d1 hfetch  0x00000001 , 0x00008952 
+ 00015088  0x000012d2 set0  0x00000005 , 0x0000003f 
+ 00015089  0x000012d3 hstore  0x00000001 , 0x00008952 
+ 00015090  0x000012d4 rtn 
+ 00015091  0x000012d7 set0  0x00000025 , 0x00000000 
+ 00015092  0x000012d8 bpatch  0x00000099 , 0x00004013 
+ 00015093  0x000012d9 hfetch  0x00000002 , 0x00008981 
+ 00015094  0x000012da rshift4  0x0000003f , 0x0000003f 
+ 00015095  0x000012db rshift3  0x0000003f , 0x0000003f 
+ 00015096  0x000012dc sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00015097  0x000012dd and_into  0x000000ff , 0x0000003f 
+ 00015098  0x000012de div  0x0000003f , 0x0000000a 
+ 00015099  0x000012df call  0x00007efd 
+ 00015100  0x000012e0 quotient  0x0000003f 
+ 00015101  0x000012e1 lshift4  0x0000003f , 0x0000003f 
+ 00015102  0x000012e2 remainder  0x00000002 
+ 00015103  0x000012e3 ior  0x00000002 , 0x0000003f 
+ 00015104  0x000012e4 store  0x00000001 , 0x00000018 
+ 00015105  0x000012e5 rtn 
+ 00015106  0x000012e8 hjam  0x0000000a , 0x00008042 
+ 00015107  0x000012e9 hjam  0x00000000 , 0x00008905 
+ 00015108  0x000012ea hfetch  0x00000003 , 0x00008138 
+ 00015109  0x000012eb hstore  0x00000003 , 0x0000804c 
+ 00015110  0x000012ec hjam  0x000000fc , 0x0000804c 
+ 00015111  0x000012ed call  0x00003db0 
+ 00015112  0x000012ee nop  0x000003e8 
+ 00015113  0x000012ef rtn 
+ 00015114  0x000012f2 hjam  0x00000006 , 0x00008042 
+ 00015115  0x000012f3 hfetch  0x00000001 , 0x0000896b 
+ 00015116  0x000012f4 set0  0x00000004 , 0x0000003f 
+ 00015117  0x000012f5 set0  0x00000005 , 0x0000003f 
+ 00015118  0x000012f6 hstore  0x00000001 , 0x0000896b 
+ 00015119  0x000012f7 hjam  0x00000000 , 0x00008905 
+ 00015120  0x000012f8 hjam  0x00000000 , 0x00008904 
+ 00015121  0x000012f9 hjam  0x00000070 , 0x00008904 
+ 00015122  0x000012fa hjam  0x000000ff , 0x00008905 
+ 00015123  0x000012fb hfetch  0x00000001 , 0x0000896b 
+ 00015124  0x000012fc set1  0x00000004 , 0x0000003f 
+ 00015125  0x000012fd set1  0x00000005 , 0x0000003f 
+ 00015126  0x000012fe hstore  0x00000001 , 0x0000896b 
+ 00015127  0x000012ff call  0x00003b38 
+ 00015128  0x00001300 hfetch  0x00000001 , 0x00008968 
+ 00015129  0x00001301 set1  0x00000007 , 0x0000003f 
+ 00015130  0x00001302 hstore  0x00000001 , 0x00008968 
+ 00015131  0x00001303 set0  0x00000007 , 0x0000003f 
+ 00015132  0x00001304 hstore  0x00000001 , 0x00008968 
+ 00015133  0x00001305 set1  0x00000007 , 0x0000003f 
+ 00015134  0x00001306 hstore  0x00000001 , 0x00008968 
+ 00015135  0x00001307 hjam  0x00000005 , 0x00008042 
+ 00015136  0x00001308 rtn 
+ 00015137  0x0000130b nop  0x000003e8 
+ 00015138  0x0000130c hjam  0x00000004 , 0x00008042 
+ 00015139  0x0000130d nop  0x0000000a 
+ 00015140  0x0000130e hjam  0x00000000 , 0x000080b4 
+ 00015141  0x0000130f hjam  0x00000080 , 0x00008006 
+ 00015142  0x00001311 hfetch  0x00000001 , 0x0000812d 
+ 00015143  0x00001312 bbit0  0x00000001 , 0x00003b26 
+ 00015144  0x00001313 hfetcht  0x00000003 , 0x00008149 
+ 00015145  0x00001314 hjam  0x00000005 , 0x00008042 
+ 00015146  0x00001315 nop  0x0000000a 
+ 00015147  0x00001316 hjam  0x00000080 , 0x00008006 
+ 00015148  0x00001318 hfetch  0x00000001 , 0x0000812d 
+ 00015149  0x00001319 bbit0  0x00000001 , 0x00003b2c 
+ 00015150  0x0000131a hfetch  0x00000003 , 0x00008149 
+ 00015151  0x0000131b isub  0x00000002 , 0x0000003f 
+ 00015152  0x0000131c branch  0x00003b32 , 0x00000002 
+ 00015153  0x0000131d sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00015154  0x0000131f store  0x00000002 , 0x0000018c 
+ 00015155  0x00001320 sub  0x0000003f , 0x00000046 , 0x0000003e 
+ 00015156  0x00001322 nbranch  0x00003b34 , 0x00000002 
+ 00015157  0x00001323 rtn 
+ 00015158  0x00001326 setarg  0x00000f0f 
+ 00015159  0x00001327 branch  0x00003da7 
+ 00015160  0x0000132a setarg  0x0000080f 
+ 00015161  0x0000132b branch  0x00003da7 
+ 00015162  0x00001330 set0  0x00000025 , 0x00000000 
+ 00015163  0x00001331 bpatch  0x0000009a , 0x00004013 
+ 00015164  0x00001332 call  0x00003a87 
+ 00015165  0x00001333 disable  0x00000020 
+ 00015166  0x00001334 enable  0x00000021 
+ 00015167  0x00001335 pulse  0x00000016 
+ 00015168  0x00001336 rtn 
+ 00015169  0x00001339 set0  0x00000025 , 0x00000000 
+ 00015170  0x0000133a bpatch  0x0000009b , 0x00004013 
+ 00015171  0x0000133b fetch  0x00000001 , 0x0000004c 
+ 00015172  0x0000133c isolate1  0x00000002 , 0x0000003f 
+ 00015173  0x0000133d setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00015174  0x0000133e hstore  0x00000001 , 0x00008011 
+ 00015175  0x0000133f arg  0x00000062 , 0x00000006 
+ 00015176  0x00001340 ifetch  0x00000009 , 0x00000006 
+ 00015177  0x00001341 iforce  0x00000032 
+ 00015178  0x00001342 ifetch  0x00000007 , 0x00000006 
+ 00015179  0x00001343 iforce  0x00000033 
+ 00015180  0x00001344 fetch  0x00000001 , 0x00000054 
+ 00015181  0x00001345 add  0x0000003f , 0xffffffff , 0x00000034 
+ 00015182  0x00001346 pulse  0x0000001a 
+ 00015183  0x00001347 rtn 
+ 00015184  0x0000134a set0  0x00000025 , 0x00000000 
+ 00015185  0x0000134b bpatch  0x0000009c , 0x00004013 
+ 00015186  0x0000134c enable  0x0000000d 
+ 00015187  0x0000134d arg  0x00000600 , 0x0000000b 
+ 00015188  0x0000134e correlate  0x00000029 , 0x00000026 
+ 00015189  0x00001350 deposit  0x0000001a 
+ 00015190  0x00001351 store  0x00000006 , 0x0000009c 
+ 00015191  0x00001352 disable  0x0000000d 
+ 00015192  0x00001353 nbranch  0x00003a6d , 0x00000018 
+ 00015193  0x00001354 arg  0x000003bb , 0x00000029 
+ 00015194  0x00001355 increase  0x00000001 , 0x00000028 
+ 00015195  0x00001356 and_into  0x000001fc , 0x00000028 
+ 00015196  0x00001357 rtn 
+ 00015197  0x0000135c enable  0x0000000d 
+ 00015198  0x0000135e correlate  0x0000003e , 0x00000017 
+ 00015199  0x0000135f branch  0x00003b55 , 0x00000018 
+ 00015200  0x00001360 compare  0x00000002 , 0x00000028 , 0x00000002 
+ 00015201  0x00001361 nbranch  0x00003b5e , 0x00000001 
+ 00015202  0x00001362 branch  0x00003b55 
+ 00015203  0x00001365 set0  0x00000025 , 0x00000000 
+ 00015204  0x00001366 bpatch  0x0000009d , 0x00004013 
+ 00015205  0x00001367 arg  0x00000600 , 0x0000000b 
+ 00015206  0x00001368 enable  0x0000000d 
+ 00015207  0x00001369 correlate  0x00000023 , 0x00000026 
+ 00015208  0x0000136a disable  0x0000000d 
+ 00015209  0x0000136b nbranch  0x00003a6d , 0x00000018 
+ 00015210  0x0000136c rtn 
+ 00015211  0x0000136f set0  0x00000025 , 0x00000000 
+ 00015212  0x00001370 bpatch  0x0000009e , 0x00004013 
+ 00015213  0x00001371 enable  0x0000000d 
+ 00015214  0x00001372 correlate  0x0000003e , 0x00000003 
+ 00015215  0x00001373 disable  0x0000000d 
+ 00015216  0x00001374 nbranch  0x00003a6d , 0x00000018 
+ 00015217  0x00001375 arg  0x000003bb , 0x00000029 
+ 00015218  0x00001376 and_into  0x000001fc , 0x00000028 
+ 00015219  0x00001377 rtn 
+ 00015220  0x0000137b set0  0x00000025 , 0x00000000 
+ 00015221  0x0000137c bpatch  0x0000009f , 0x00004013 
+ 00015222  0x0000137d iforce  0x00000011 
+ 00015223  0x0000137e deposit  0x00000021 
+ 00015224  0x0000137f iadd  0x00000002 , 0x0000000b 
+ 00015225  0x00001380 copy  0x0000000b , 0x0000003f 
+ 00015226  0x00001381 store  0x00000004 , 0x0000416a 
+ 00015227  0x00001382 deposit  0x00000011 
+ 00015228  0x00001383 rtn 
+ 00015229  0x00001387 copy  0x0000003f , 0x00000002 
+ 00015230  0x00001388 set0  0x00000025 , 0x00000000 
+ 00015231  0x00001389 bpatch  0x000000a0 , 0x00004014 
+ 00015232  0x0000138a copy  0x00000002 , 0x0000003f 
+ 00015233  0x0000138b call  0x00007e91 
+ 00015234  0x0000138c lshift16  0x00000021 , 0x0000003f 
+ 00015235  0x0000138d set1  0x0000002c , 0x0000003f 
+ 00015236  0x0000138e call  0x00007e7a 
+ 00015237  0x0000138f set0  0x0000002c , 0x0000003f 
+ 00015238  0x00001390 call  0x00003bda 
+ 00015239  0x00001391 call  0x00007e7a 
+ 00015240  0x00001392 rtn  0x00000028 
+ 00015241  0x00001393 call  0x00007e84 
+ 00015242  0x00001394 iforce  0x0000001b 
+ 00015243  0x00001395 until  0x0000003e , 0x00000003 
+ 00015244  0x00001396 rtn 
+ 00015245  0x0000139a set0  0x00000025 , 0x00000000 
+ 00015246  0x0000139b bpatch  0x000000a1 , 0x00004014 
+ 00015247  0x0000139c branch  0x00003b93 , 0x00000030 
+ 00015248  0x0000139d until  0x00000029 , 0x00000026 
+ 00015249  0x0000139f copy  0x00000028 , 0x00000002 
+ 00015250  0x000013a0 branch  0x00003b96 
+ 00015251  0x000013a2 branch  0x00003b95 , 0x0000002e 
+ 00015252  0x000013a3 until  0x00000023 , 0x00000026 
+ 00015253  0x000013a5 copy  0x00000022 , 0x00000002 
+ 00015254  0x000013a7 branch  0x00003ba3 , 0x00000028 
+ 00015255  0x000013a8 compare  0x00000001 , 0x00000002 , 0x00000003 
+ 00015256  0x000013a9 nbranch  0x00003b8d , 0x00000001 
+ 00015257  0x000013ab set0  0x00000025 , 0x00000000 
+ 00015258  0x000013ac bpatch  0x000000a2 , 0x00004014 
+ 00015259  0x000013ad fetch  0x00000001 , 0x00000030 
+ 00015260  0x000013ae rtnbit0  0x00000000 
+ 00015261  0x000013af fetch  0x00000004 , 0x0000416a 
+ 00015262  0x000013b0 isub  0x00000002 , 0x0000003f 
+ 00015263  0x000013b1 nrtn  0x00000002 
+ 00015264  0x000013b2 sub  0x0000003f , 0x000000ff , 0x0000003e 
+ 00015265  0x000013b3 branch  0x00003b8d , 0x00000002 
+ 00015266  0x000013b4 rtn 
+ 00015267  0x000013b6 compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00015268  0x000013b7 nbranch  0x00003b8d , 0x00000001 
+ 00015269  0x000013b8 branch  0x00003b99 
+ 00015270  0x000013bb set0  0x00000025 , 0x00000000 
+ 00015271  0x000013bc bpatch  0x000000a3 , 0x00004014 
+ 00015272  0x000013bd arg  0x00000600 , 0x0000000b 
+ 00015273  0x000013be branch  0x00003b8d 
+ 00015274  0x000013c1 disable  0x00000028 
+ 00015275  0x000013c2 branch  0x00003ba6 
+ 00015276  0x000013c5 enable  0x00000028 
+ 00015277  0x000013c6 branch  0x00003ba6 
+ 00015278  0x000013c9 set0  0x00000025 , 0x00000000 
+ 00015279  0x000013ca bpatch  0x000000a4 , 0x00004014 
+ 00015280  0x000013cb call  0x00003b41 
+ 00015281  0x000013cc disable  0x00000021 
+ 00015282  0x000013cd enable  0x00000020 
+ 00015283  0x000013ce rtn 
+ 00015284  0x000013d3 set0  0x00000025 , 0x00000000 
+ 00015285  0x000013d4 bpatch  0x000000a5 , 0x00004014 
+ 00015286  0x000013d5 arg  0x00000e43 , 0x0000000b 
+ 00015287  0x000013d6 until  0x00000023 , 0x00000026 
+ 00015288  0x000013d7 pulse  0x00000016 
+ 00015289  0x000013d8 rtn 
+ 00015290  0x000013db set0  0x00000025 , 0x00000000 
+ 00015291  0x000013dc bpatch  0x000000a6 , 0x00004014 
+ 00015292  0x000013dd arg  0x00000d00 , 0x0000000b 
+ 00015293  0x000013de until  0x00000023 , 0x00000026 
+ 00015294  0x000013df rtn 
+ 00015295  0x000013e3 set0  0x00000025 , 0x00000000 
+ 00015296  0x000013e4 bpatch  0x000000a7 , 0x00004014 
+ 00015297  0x000013e5 arg  0x00000e43 , 0x0000000b 
+ 00015298  0x000013e6 until  0x00000029 , 0x00000026 
+ 00015299  0x000013e7 pulse  0x00000016 
+ 00015300  0x000013e8 rtn 
+ 00015301  0x000013eb set0  0x00000025 , 0x00000000 
+ 00015302  0x000013ec bpatch  0x000000a8 , 0x00004015 
+ 00015303  0x000013ed preload  0x00000009 
+ 00015304  0x000013ee enable  0x0000001d 
+ 00015305  0x000013ef set1  0x00000000 , 0x00000015 
+ 00015306  0x000013f0 inject  0x00000003 , 0x00000048 
+ 00015307  0x000013f1 disable  0x0000001d 
+ 00015308  0x000013f2 rtn 
+ 00015309  0x000013f6 copy  0x00000025 , 0x00000002 
+ 00015310  0x000013f7 or_into  0x00000060 , 0x00000002 
+ 00015311  0x000013f8 copy  0x00000002 , 0x0000000e 
+ 00015312  0x000013f9 rtn 
+ 00015313  0x000013ff set0  0x00000025 , 0x00000000 
+ 00015314  0x00001400 bpatch  0x000000a9 , 0x00004015 
+ 00015315  0x00001401 fetch  0x00000001 , 0x00004130 
+ 00015316  0x00001402 increase  0x00000001 , 0x0000003f 
+ 00015317  0x00001403 bne  0x00000007 , 0x00003bd7 
+ 00015318  0x00001404 force  0x00000001 , 0x0000003f 
+ 00015319  0x00001406 store  0x00000001 , 0x00004130 
+ 00015320  0x00001407 iforce  0x00000004 
+ 00015321  0x00001408 rtn 
+ 00015322  0x0000140b copy  0x00000019 , 0x00000002 
+ 00015323  0x0000140c rtn  0x00000029 
+ 00015324  0x0000140d copy  0x0000001a , 0x00000002 
+ 00015325  0x0000140e rtn 
+ 00015326  0x00001411 deposit  0x00000022 
+ 00015327  0x00001412 rtn  0x00000029 
+ 00015328  0x00001413 deposit  0x00000028 
+ 00015329  0x00001414 rtn 
+ 00015330  0x00001418 set0  0x00000025 , 0x00000000 
+ 00015331  0x00001419 bpatch  0x000000aa , 0x00004015 
+ 00015332  0x0000141a fetcht  0x00000004 , 0x0000004d 
+ 00015333  0x0000141b call  0x00003bde 
+ 00015334  0x0000141c isub  0x00000002 , 0x0000000b 
+ 00015335  0x0000141d deposit  0x0000000b 
+ 00015336  0x0000141e fetcht  0x00000002 , 0x00000051 
+ 00015337  0x0000141f lshift  0x00000002 , 0x00000002 
+ 00015338  0x00001420 isub  0x00000002 , 0x0000003f 
+ 00015339  0x00001421 rtn 
+ 00015340  0x00001424 set0  0x00000025 , 0x00000000 
+ 00015341  0x00001425 bpatch  0x000000ab , 0x00004015 
+ 00015342  0x00001426 call  0x00003bde 
+ 00015343  0x00001427 store  0x00000004 , 0x0000004d 
+ 00015344  0x00001428 rtn 
+ 00015345  0x0000142b branch  0x00003bf1 
+ 00015346  0x0000142e branch  0x00003bf2 
+ 00015347  0x00001431 rtn  0x00000034 
+ 00015348  0x00001433 rshift  0x0000003f , 0x0000003f 
+ 00015349  0x00001434 increase  0xfffffffd , 0x0000003f 
+ 00015350  0x00001436 increase  0xffffffff , 0x0000003f 
+ 00015351  0x00001437 nbranch  0x00003bf6 , 0x00000005 
+ 00015352  0x00001438 force  0x00000000 , 0x0000003f 
+ 00015353  0x00001439 rtn 
+ 00015354  0x0000143f arg  0x00000010 , 0x00000039 
+ 00015355  0x00001440 arg  0x00000000 , 0x00000005 
+ 00015356  0x00001441 call  0x00007e3b 
+ 00015357  0x00001442 arg  0x000003c0 , 0x00000005 
+ 00015358  0x00001443 arg  0x0000000a , 0x00000039 
+ 00015359  0x00001444 call  0x00007e3b 
+ 00015360  0x00001445 jam  0x00000000 , 0x000007de 
+ 00015361  0x00001446 jam  0x00000000 , 0x00000b7d 
+ 00015362  0x00001447 jam  0x00000000 , 0x0000040d 
+ 00015363  0x00001448 jam  0x00000000 , 0x00000189 
+ 00015364  0x00001449 jam  0x00000000 , 0x0000044d 
+ 00015365  0x0000144a set0  0x00000025 , 0x00000000 
+ 00015366  0x0000144b bpatch  0x000000ac , 0x00004015 
+ 00015367  0x0000144c jam  0x00000000 , 0x00000177 
+ 00015368  0x0000144d jam  0x00000000 , 0x00000153 
+ 00015369  0x0000144e jam  0x00000000 , 0x0000015e 
+ 00015370  0x0000144f setarg  0x009e8b33 
+ 00015371  0x00001450 store  0x00000003 , 0x00004147 
+ 00015372  0x00001451 setarg  0x00000153 
+ 00015373  0x00001452 store  0x00000002 , 0x00000083 
+ 00015374  0x00001453 jam  0x0000001e , 0x00000085 
+ 00015375  0x00001454 jam  0x00000001 , 0x00000086 
+ 00015376  0x00001455 jam  0x00000007 , 0x00000088 
+ 00015377  0x00001456 setarg  0x0012e904 
+ 00015378  0x00001457 store  0x00000003 , 0x00000080 
+ 00015379  0x00001458 setarg  0x00000a04 
+ 00015380  0x00001459 store  0x00000003 , 0x000046fd 
+ 00015381  0x0000145a setarg  0x000012e9 
+ 00015382  0x0000145b store  0x00000002 , 0x00004700 
+ 00015383  0x0000145c jam  0x00000060 , 0x0000008f 
+ 00015384  0x0000145d jam  0x00000005 , 0x00004171 
+ 00015385  0x0000145e jam  0x00000002 , 0x00000014 
+ 00015386  0x0000145f call  0x000075cd 
+ 00015387  0x00001460 set0  0x00000025 , 0x00000000 
+ 00015388  0x00001461 bpatch  0x000000ad , 0x00004015 
+ 00015389  0x00001462 rtn  0x0000002b 
+ 00015390  0x00001463 setarg  0x00000000 
+ 00015391  0x00001464 store  0x00000002 , 0x00000091 
+ 00015392  0x00001465 rshift  0x00000022 , 0x0000003f 
+ 00015393  0x00001466 store  0x00000004 , 0x00004134 
+ 00015394  0x00001467 rtn 
+ 00015395  0x0000146c setarg  0x000000aa , 0x0000003f 
+ 00015396  0x0000146d arg  0x000000d3 , 0x00000005 
+ 00015397  0x0000146e force  0x0000001e , 0x00000039 
+ 00015398  0x00001470 istore  0x00000001 , 0x00000005 
+ 00015399  0x00001471 loop  0x00003c26 
+ 00015400  0x00001472 rtn 
+ 00015401  0x00001475 hjam  0x00000002 , 0x00000907 
+ 00015402  0x00001476 hjam  0x0000001f , 0x00000908 
+ 00015403  0x00001477 hjam  0x0000001f , 0x00000909 
+ 00015404  0x00001478 hjam  0x000000e0 , 0x0000090a 
+ 00015405  0x00001479 hjam  0x0000004e , 0x0000090b 
+ 00015406  0x0000147a hjam  0x00000045 , 0x00008912 
+ 00015407  0x0000147b hjam  0x00000000 , 0x00000953 
+ 00015408  0x0000147d hjam  0x000000fb , 0x0000094c 
+ 00015409  0x0000147e hjam  0x000000ef , 0x0000094d 
+ 00015410  0x0000147f hjam  0x0000000c , 0x0000094e 
+ 00015411  0x00001481 hjam  0x00000088 , 0x0000096f 
+ 00015412  0x00001482 hjam  0x00000030 , 0x00000973 
+ 00015413  0x00001485 hjam  0x00000000 , 0x00000953 
+ 00015414  0x00001486 hjam  0x000000c9 , 0x00000956 
+ 00015415  0x00001487 hjam  0x0000006c , 0x00000958 
+ 00015416  0x00001488 hjam  0x00000050 , 0x00000959 
+ 00015417  0x00001489 rtn 
+ 00015418  0x0000148d hjam  0x000000a9 , 0x00000930 
+ 00015419  0x0000148e hjam  0x000000b1 , 0x0000092f 
+ 00015420  0x0000148f hjam  0x000000b9 , 0x0000092e 
+ 00015421  0x00001490 hjam  0x000000ad , 0x0000092d 
+ 00015422  0x00001491 hjam  0x000000b1 , 0x0000092c 
+ 00015423  0x00001492 hjam  0x000000b5 , 0x0000092b 
+ 00015424  0x00001493 hjam  0x000000ba , 0x0000092a 
+ 00015425  0x00001494 hjam  0x000000be , 0x00000929 
+ 00015426  0x00001495 hjam  0x000000c2 , 0x00000928 
+ 00015427  0x00001496 hjam  0x000000c6 , 0x00000927 
+ 00015428  0x00001497 hjam  0x000000ca , 0x00000926 
+ 00015429  0x00001498 hjam  0x000000ce , 0x00000925 
+ 00015430  0x00001499 hjam  0x000000d2 , 0x00000924 
+ 00015431  0x0000149a hjam  0x000000d6 , 0x00000923 
+ 00015432  0x0000149b hjam  0x000000da , 0x00000922 
+ 00015433  0x0000149c hjam  0x000000de , 0x00000921 
+ 00015434  0x0000149d hjam  0x000000e2 , 0x00000920 
+ 00015435  0x0000149e hjam  0x000000e6 , 0x0000091f 
+ 00015436  0x0000149f hjam  0x000000ea , 0x0000091e 
+ 00015437  0x000014a0 hjam  0x000000ee , 0x0000091d 
+ 00015438  0x000014a1 hjam  0x000000f2 , 0x0000091c 
+ 00015439  0x000014a2 hjam  0x000000f6 , 0x0000091b 
+ 00015440  0x000014a3 hjam  0x000000fb , 0x0000091a 
+ 00015441  0x000014a5 hjam  0x000000f5 , 0x00000947 
+ 00015442  0x000014a6 hjam  0x000000e5 , 0x00000946 
+ 00015443  0x000014a7 hjam  0x000000d5 , 0x00000945 
+ 00015444  0x000014a8 hjam  0x000000d8 , 0x00000944 
+ 00015445  0x000014a9 hjam  0x000000c9 , 0x00000943 
+ 00015446  0x000014aa hjam  0x000000c8 , 0x00000942 
+ 00015447  0x000014ab hjam  0x00000089 , 0x00000941 
+ 00015448  0x000014ac hjam  0x00000088 , 0x00000940 
+ 00015449  0x000014ad hjam  0x00000087 , 0x0000093f 
+ 00015450  0x000014ae hjam  0x00000048 , 0x0000093e 
+ 00015451  0x000014af hjam  0x00000009 , 0x0000093d 
+ 00015452  0x000014b0 hjam  0x00000008 , 0x0000093c 
+ 00015453  0x000014b1 hjam  0x000000c9 , 0x0000093b 
+ 00015454  0x000014b2 hjam  0x000000c8 , 0x0000093a 
+ 00015455  0x000014b3 hjam  0x000000c7 , 0x00000939 
+ 00015456  0x000014b4 hjam  0x000000c6 , 0x00000938 
+ 00015457  0x000014b5 hjam  0x000000c5 , 0x00000937 
+ 00015458  0x000014b6 hjam  0x000000c4 , 0x00000936 
+ 00015459  0x000014b7 hjam  0x000000c3 , 0x00000935 
+ 00015460  0x000014b8 hjam  0x000000c2 , 0x00000934 
+ 00015461  0x000014b9 hjam  0x000000c1 , 0x00000933 
+ 00015462  0x000014ba hjam  0x000000c0 , 0x00000932 
+ 00015463  0x000014bb hjam  0x00000080 , 0x00000931 
+ 00015464  0x000014bc rtn 
+ 00015465  0x000014c1 enable  0x00000036 
+ 00015466  0x000014c2 setarg  0x008e89be 
+ 00015467  0x000014c3 lshift8  0x0000003f , 0x0000003f 
+ 00015468  0x000014c4 or_into  0x000000d6 , 0x0000003f 
+ 00015469  0x000014c5 iforce  0x00000009 
+ 00015470  0x000014c6 hjam  0x00000007 , 0x00000914 
+ 00015471  0x000014c7 hjam  0x000000a0 , 0x0000090a 
+ 00015472  0x000014c8 hjam  0x0000008f , 0x0000090d 
+ 00015473  0x000014c9 hjam  0x0000000f , 0x00000911 
+ 00015474  0x000014ca hjam  0x00000087 , 0x00000912 
+ 00015475  0x000014cb rtn 
+ 00015476  0x000014d1 setarg  0x0000ee21 
+ 00015477  0x000014d2 hstore  0x00000002 , 0x00008050 
+ 00015478  0x000014d3 hfetch  0x00000001 , 0x0000813e 
+ 00015479  0x000014d4 bbit0  0x00000003 , 0x00006725 
+ 00015480  0x000014d5 enable  0x0000002b 
+ 00015481  0x000014d6 bbit0  0x00000007 , 0x00003c7f 
+ 00015482  0x000014d7 disable  0x0000002b 
+ 00015483  0x000014d8 deposit  0x00000027 
+ 00015484  0x000014d9 nbranch  0x00003c7f , 0x00000034 
+ 00015485  0x000014da arg  0xffffffff , 0x00000002 
+ 00015486  0x000014db branch  0x00003cec 
+ 00015487  0x000014dd hfetch  0x00000003 , 0x0000813c 
+ 00015488  0x000014de hstore  0x00000003 , 0x0000804c 
+ 00015489  0x000014df ifetch  0x00000001 , 0x00000006 
+ 00015490  0x000014e0 or_into  0x000000ef , 0x0000003f 
+ 00015491  0x000014e1 istore  0x00000001 , 0x00000005 
+ 00015492  0x000014e2 call  0x00003db2 
+ 00015493  0x000014e3 hfetch  0x00000001 , 0x0000804f 
+ 00015494  0x000014e4 set1  0x00000004 , 0x0000003f 
+ 00015495  0x000014e5 hstore  0x00000001 , 0x0000804f 
+ 00015496  0x000014e6 call  0x00003db2 
+ 00015497  0x000014e7 call  0x00003c90 , 0x0000002b 
+ 00015498  0x000014e8 hfetch  0x00000001 , 0x0000804e 
+ 00015499  0x000014e9 set0  0x00000003 , 0x0000003f 
+ 00015500  0x000014ea hstore  0x00000001 , 0x0000804e 
+ 00015501  0x000014eb call  0x00003db2 
+ 00015502  0x000014ec rtn  0x0000002b 
+ 00015503  0x000014ed branch  0x00006725 
+ 00015504  0x000014f0 fetch  0x00000001 , 0x00004239 
+ 00015505  0x000014f1 hstore  0x00000001 , 0x00008086 
+ 00015506  0x000014f2 fetch  0x00000003 , 0x0000422e 
+ 00015507  0x000014f3 hstore  0x00000003 , 0x00008080 
+ 00015508  0x000014f4 fetch  0x00000004 , 0x00004222 
+ 00015509  0x000014f5 hstore  0x00000004 , 0x00008074 
+ 00015510  0x000014f6 fetch  0x00000004 , 0x0000421e 
+ 00015511  0x000014f7 hstore  0x00000004 , 0x00008070 
+ 00015512  0x000014f8 fetch  0x00000008 , 0x00004226 
+ 00015513  0x000014f9 hstore  0x00000008 , 0x00008078 
+ 00015514  0x000014fa fetch  0x00000008 , 0x00004231 
+ 00015515  0x000014fb iforce  0x00000000 
+ 00015516  0x000014fc hfetch  0x00000008 , 0x00008140 
+ 00015517  0x000014fd store  0x00000008 , 0x000000a3 
+ 00015518  0x000014fe call  0x00006781 
+ 00015519  0x000014ff rtn 
+ 00015520  0x00001502 deposit  0x00000000 
+ 00015521  0x00001503 store  0x00000008 , 0x00004231 
+ 00015522  0x00001504 hfetch  0x00000008 , 0x00008070 
+ 00015523  0x00001505 store  0x00000008 , 0x0000421e 
+ 00015524  0x00001506 ifetch  0x00000008 , 0x00000006 
+ 00015525  0x00001507 istore  0x00000008 , 0x00000005 
+ 00015526  0x00001508 hfetch  0x00000003 , 0x00008080 
+ 00015527  0x00001509 store  0x00000003 , 0x0000422e 
+ 00015528  0x0000150a hfetch  0x00000001 , 0x00008086 
+ 00015529  0x0000150b store  0x00000001 , 0x00004239 
+ 00015530  0x0000150c branch  0x00003db8 
+ 00015531  0x0000150f hfetch  0x00000001 , 0x000080b4 
+ 00015532  0x00001510 nbranch  0x00003cb1 , 0x00000034 
+ 00015533  0x00001511 fetch  0x00000003 , 0x00004210 
+ 00015534  0x00001512 nrtn  0x00000034 
+ 00015535  0x00001513 hjam  0x000000c0 , 0x000080b4 
+ 00015536  0x00001514 hjam  0x00000080 , 0x00008006 
+ 00015537  0x00001516 hfetch  0x00000001 , 0x0000812d 
+ 00015538  0x00001517 rtnbit0  0x00000001 
+ 00015539  0x00001518 hfetch  0x00000003 , 0x00008149 
+ 00015540  0x00001519 store  0x00000003 , 0x00004210 
+ 00015541  0x0000151a rtn 
+ 00015542  0x0000151f set0  0x00000025 , 0x00000000 
+ 00015543  0x00001520 bpatch  0x000000ae , 0x00004015 
+ 00015544  0x00001521 deposit  0x0000001a 
+ 00015545  0x00001522 call  0x00007e78 
+ 00015546  0x00001523 fetcht  0x00000004 , 0x00004200 
+ 00015547  0x00001524 sub  0x00000002 , 0x000000ff , 0x0000003e 
+ 00015548  0x00001525 rtn  0x00000002 
+ 00015549  0x00001526 lshift8  0x0000003f , 0x0000003f 
+ 00015550  0x00001527 lshift4  0x0000003f , 0x0000003f 
+ 00015551  0x00001528 idiv  0x00000002 
+ 00015552  0x00001529 call  0x00007efd 
+ 00015553  0x0000152a quotient  0x0000003f 
+ 00015554  0x0000152b arg  0x000000c8 , 0x00000002 
+ 00015555  0x0000152c call  0x00007f2e 
+ 00015556  0x0000152d store  0x00000001 , 0x0000009b 
+ 00015557  0x0000152e nbranch  0x00003cc7 , 0x00000028 
+ 00015558  0x0000152f sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00015559  0x00001531 fetcht  0x00000003 , 0x00004210 
+ 00015560  0x00001532 iadd  0x00000002 , 0x0000003f 
+ 00015561  0x00001533 store  0x00000003 , 0x00004210 
+ 00015562  0x00001535 setarg  0x00000000 
+ 00015563  0x00001536 store  0x00000004 , 0x00004200 
+ 00015564  0x00001537 rtn 
+ 00015565  0x0000153b set0  0x00000025 , 0x00000000 
+ 00015566  0x0000153c bpatch  0x000000af , 0x00004015 
+ 00015567  0x0000153d call  0x00003db8 
+ 00015568  0x0000153e hfetch  0x00000004 , 0x00008138 
+ 00015569  0x0000153f set0  0x0000000f , 0x0000003f 
+ 00015570  0x00001540 hstore  0x00000004 , 0x0000804c 
+ 00015571  0x00001541 call  0x00003db0 
+ 00015572  0x00001543 arg  0xffffffff , 0x00000002 
+ 00015573  0x00001544 fetch  0x00000001 , 0x000041f8 
+ 00015574  0x00001545 store  0x00000001 , 0x0000421d 
+ 00015575  0x00001546 fetch  0x00000001 , 0x0000421b 
+ 00015576  0x00001547 set1  0x00000007 , 0x0000003f 
+ 00015577  0x00001548 store  0x00000001 , 0x0000421b 
+ 00015578  0x0000154c set0  0x00000025 , 0x00000000 
+ 00015579  0x0000154d bpatch  0x000000b0 , 0x00004016 
+ 00015580  0x0000154e fetch  0x00000004 , 0x00004200 
+ 00015581  0x0000154f iadd  0x00000002 , 0x0000003f 
+ 00015582  0x00001550 store  0x00000004 , 0x00004200 
+ 00015583  0x00001551 call  0x00003ca0 
+ 00015584  0x00001552 fetch  0x00000005 , 0x00004219 
+ 00015585  0x00001553 hstore  0x00000004 , 0x0000804c 
+ 00015586  0x00001554 rshift32  0x0000003f , 0x00000011 
+ 00015587  0x00001555 until  0x0000003e , 0x00000033 
+ 00015588  0x00001556 deposit  0x00000019 
+ 00015589  0x00001557 store  0x00000006 , 0x00004204 
+ 00015590  0x00001558 hjam  0x00000002 , 0x00008005 
+ 00015591  0x00001559 until  0x0000003e , 0x00000033 
+ 00015592  0x0000155a until  0x0000003e , 0x00000033 
+ 00015593  0x0000155b deposit  0x00000011 
+ 00015594  0x0000155c hstore  0x00000001 , 0x0000804f 
+ 00015595  0x0000155d hjam  0x00000002 , 0x00008005 
+ 00015596  0x0000155f until  0x0000003e , 0x00000033 
+ 00015597  0x00001560 until  0x0000003e , 0x00000033 
+ 00015598  0x00001561 hstoret  0x00000004 , 0x0000804c 
+ 00015599  0x00001562 hjam  0x00000010 , 0x00008005 
+ 00015600  0x00001563 until  0x0000003e , 0x0000003f 
+ 00015601  0x00001569 set0  0x00000025 , 0x00000000 
+ 00015602  0x0000156a bpatch  0x000000b1 , 0x00004016 
+ 00015603  0x0000156b setarg  0x00000000 
+ 00015604  0x0000156c copy  0x00000027 , 0x0000003e 
+ 00015605  0x0000156d branch  0x00003cfd , 0x00000005 
+ 00015606  0x0000156e hfetch  0x00000001 , 0x0000813c 
+ 00015607  0x0000156f hfetcht  0x00000001 , 0x0000813d 
+ 00015608  0x00001570 isub  0x00000002 , 0x0000003e 
+ 00015609  0x00001571 branch  0x00003cfb , 0x00000002 
+ 00015610  0x00001572 deposit  0x00000002 
+ 00015611  0x00001574 isub  0x00000027 , 0x0000003f 
+ 00015612  0x00001575 increase  0x00000001 , 0x0000003f 
+ 00015613  0x00001577 increase  0x00000008 , 0x0000003f 
+ 00015614  0x00001578 until  0x0000003e , 0x00000033 
+ 00015615  0x00001579 iadd  0x00000031 , 0x0000003f 
+ 00015616  0x0000157a fetcht  0x00000004 , 0x000041fc 
+ 00015617  0x0000157b iadd  0x00000002 , 0x0000003f 
+ 00015618  0x0000157c fetcht  0x00000003 , 0x00004210 
+ 00015619  0x0000157d imul32  0x00000002 , 0x0000003f 
+ 00015620  0x0000157e rshift8  0x0000003f , 0x0000003f 
+ 00015621  0x0000157f rshift4  0x0000003f , 0x0000003f 
+ 00015622  0x00001580 increase  0x0000006e , 0x0000003f 
+ 00015623  0x00001581 arg  0x00000ea6 , 0x00000002 
+ 00015624  0x00001582 idiv  0x00000002 
+ 00015625  0x00001583 call  0x00007efd 
+ 00015626  0x00001584 quotient  0x0000003f 
+ 00015627  0x00001585 lshift16  0x0000003f , 0x0000003f 
+ 00015628  0x00001586 remainder  0x00000002 
+ 00015629  0x00001587 ior  0x00000002 , 0x0000003f 
+ 00015630  0x00001588 fetcht  0x00000006 , 0x00004204 
+ 00015631  0x00001589 call  0x00007e6d 
+ 00015632  0x0000158a copy  0x00000002 , 0x00000019 
+ 00015633  0x0000158b fetch  0x00000006 , 0x00004048 
+ 00015634  0x0000158c call  0x000039c0 
+ 00015635  0x0000158d deposit  0x0000001a 
+ 00015636  0x0000158e store  0x00000006 , 0x00000161 
+ 00015637  0x0000158f deposit  0x00000027 
+ 00015638  0x00001590 istore  0x00000001 , 0x00000005 
+ 00015639  0x00001591 hfetch  0x00000001 , 0x0000811d 
+ 00015640  0x00001592 or_into  0x000000f0 , 0x0000003f 
+ 00015641  0x00001593 istore  0x00000001 , 0x00000005 
+ 00015642  0x00001594 call  0x00007f52 
+ 00015643  0x00001595 rtn 
+ 00015644  0x00001598 set0  0x00000025 , 0x00000000 
+ 00015645  0x00001599 bpatch  0x000000b2 , 0x00004016 
+ 00015646  0x0000159a call  0x00003cab 
+ 00015647  0x0000159b fetch  0x00000003 , 0x00004210 
+ 00015648  0x0000159c rtn  0x00000034 
+ 00015649  0x0000159d fetch  0x00000001 , 0x00004131 
+ 00015650  0x0000159e rtn  0x00000034 
+ 00015651  0x0000159f call  0x00003dca 
+ 00015652  0x000015a0 nrtn  0x00000034 
+ 00015653  0x000015a2 fetch  0x00000001 , 0x00004040 
+ 00015654  0x000015a3 compare  0x00000003 , 0x0000003f , 0x00000007 
+ 00015655  0x000015a4 nbranch  0x00003d4d , 0x00000001 
+ 00015656  0x000015a5 fetch  0x00000002 , 0x00004042 
+ 00015657  0x000015a6 rtn  0x00000034 
+ 00015658  0x000015a7 rtn  0x0000002b 
+ 00015659  0x000015a8 set0  0x00000025 , 0x00000000 
+ 00015660  0x000015a9 bpatch  0x000000b3 , 0x00004016 
+ 00015661  0x000015ab fetcht  0x00000001 , 0x000000a2 
+ 00015662  0x000015ac fetch  0x00000002 , 0x00004042 
+ 00015663  0x000015ad imul32  0x00000002 , 0x0000003f 
+ 00015664  0x000015ae rshift4  0x00000002 , 0x00000002 
+ 00015665  0x000015af rshift2  0x00000002 , 0x00000002 
+ 00015666  0x000015b0 isub  0x00000002 , 0x0000003f 
+ 00015667  0x000015b1 fetcht  0x00000004 , 0x00004044 
+ 00015668  0x000015b2 iadd  0x00000002 , 0x0000003f 
+ 00015669  0x000015b3 fetcht  0x00000001 , 0x000041f7 
+ 00015670  0x000015b4 isub  0x00000002 , 0x0000003f 
+ 00015671  0x000015b5 lshift16  0x0000003f , 0x00000030 
+ 00015672  0x000015b6 set0  0x00000025 , 0x00000000 
+ 00015673  0x000015b7 bpatch  0x000000b4 , 0x00004016 
+ 00015674  0x000015b8 fetch  0x00000002 , 0x0000404e 
+ 00015675  0x000015b9 rshift  0x0000003f , 0x0000003f 
+ 00015676  0x000015ba call  0x00007e91 
+ 00015677  0x000015bb deposit  0x00000030 
+ 00015678  0x000015bc call  0x00007e7a 
+ 00015679  0x000015bd copy  0x0000001a , 0x00000002 
+ 00015680  0x000015be call  0x00007e78 
+ 00015681  0x000015bf rtn  0x00000028 
+ 00015682  0x000015c1 call  0x00007e8a 
+ 00015683  0x000015c3 set0  0x00000025 , 0x00000000 
+ 00015684  0x000015c4 bpatch  0x000000b5 , 0x00004016 
+ 00015685  0x000015c5 fetch  0x00000001 , 0x00004219 
+ 00015686  0x000015c6 isub  0x00000002 , 0x0000003e 
+ 00015687  0x000015c7 branch  0x00003cca , 0x00000002 
+ 00015688  0x000015c8 storet  0x00000004 , 0x000041fc 
+ 00015689  0x000015c9 call  0x00003ea9 
+ 00015690  0x000015ca call  0x0000530c 
+ 00015691  0x000015cb fetcht  0x00000004 , 0x000041fc 
+ 00015692  0x000015cc branch  0x00003cda 
+ 00015693  0x000015cf set0  0x00000025 , 0x00000000 
+ 00015694  0x000015d0 bpatch  0x000000b6 , 0x00004016 
+ 00015695  0x000015d1 fetch  0x00000001 , 0x00004040 
+ 00015696  0x000015d2 rtnbit1  0x00000000 
+ 00015697  0x000015d3 rtnbit1  0x00000003 
+ 00015698  0x000015d4 fetch  0x00000001 , 0x000047dc 
+ 00015699  0x000015d5 branch  0x00003d56 , 0x00000034 
+ 00015700  0x000015d6 fetch  0x00000001 , 0x00004793 
+ 00015701  0x000015d7 rtn  0x00000034 
+ 00015702  0x000015d9 fetch  0x00000001 , 0x000043d8 
+ 00015703  0x000015da nbranch  0x00003d5a , 0x00000034 
+ 00015704  0x000015db fetch  0x00000001 , 0x00004133 
+ 00015705  0x000015dc rtn  0x00000034 
+ 00015706  0x000015de fetch  0x00000002 , 0x000041f5 
+ 00015707  0x000015df rtn  0x00000034 
+ 00015708  0x000015e1 fetcht  0x00000001 , 0x000041f7 
+ 00015709  0x000015e2 isub  0x00000002 , 0x0000003f 
+ 00015710  0x000015e3 arg  0x00001d4c , 0x00000002 
+ 00015711  0x000015e4 imul32  0x00000002 , 0x0000003f 
+ 00015712  0x000015e5 branch  0x00003d42 
+ 00015713  0x000015e8 set0  0x00000025 , 0x00000000 
+ 00015714  0x000015e9 bpatch  0x000000b7 , 0x00004016 
+ 00015715  0x000015ea disable  0x0000002b 
+ 00015716  0x000015eb fetch  0x00000001 , 0x00000030 
+ 00015717  0x000015ec rtnbit0  0x00000001 
+ 00015718  0x000015ed nbranch  0x00003d7b , 0x0000002d 
+ 00015719  0x000015ee call  0x00003d76 
+ 00015720  0x000015ef fetch  0x00000002 , 0x00004161 
+ 00015721  0x000015f0 store  0x00000002 , 0x0000003e 
+ 00015722  0x000015f1 fetch  0x00000001 , 0x00000047 
+ 00015723  0x000015f2 bbit1  0x00000003 , 0x00003d8a 
+ 00015724  0x000015f3 bmark0  0x0000000d , 0x00003d8a 
+ 00015725  0x000015f4 call  0x0000527e 
+ 00015726  0x000015f5 nbranch  0x00003d8a , 0x00000034 
+ 00015727  0x000015f7 jam  0x00000000 , 0x000000a2 
+ 00015728  0x000015f8 bmark0  0x0000000d , 0x00003d8a 
+ 00015729  0x000015f9 fetch  0x00000001 , 0x00004215 
+ 00015730  0x000015fa branch  0x00003d8e , 0x00000034 
+ 00015731  0x000015fb increase  0xffffffff , 0x0000003f 
+ 00015732  0x000015fc store  0x00000001 , 0x00004215 
+ 00015733  0x000015fd rtn 
+ 00015734  0x00001600 jam  0x00000000 , 0x000041fa 
+ 00015735  0x00001601 fetch  0x00000003 , 0x0000420a 
+ 00015736  0x00001602 increase  0x00000001 , 0x0000003f 
+ 00015737  0x00001603 store  0x00000003 , 0x0000420a 
+ 00015738  0x00001604 rtn 
+ 00015739  0x00001607 set0  0x00000025 , 0x00000000 
+ 00015740  0x00001608 bpatch  0x000000b8 , 0x00004017 
+ 00015741  0x00001609 fetcht  0x00000002 , 0x00004161 
+ 00015742  0x0000160a rshift  0x00000002 , 0x00000002 
+ 00015743  0x0000160b fetch  0x00000002 , 0x0000003e 
+ 00015744  0x0000160c iadd  0x00000002 , 0x0000003f 
+ 00015745  0x0000160d store  0x00000002 , 0x0000003e 
+ 00015746  0x0000160f jam  0x00000000 , 0x000000a2 
+ 00015747  0x00001610 fetch  0x00000003 , 0x0000420d 
+ 00015748  0x00001611 increase  0x00000001 , 0x0000003f 
+ 00015749  0x00001612 store  0x00000003 , 0x0000420d 
+ 00015750  0x00001613 fetch  0x00000001 , 0x000041fa 
+ 00015751  0x00001614 increase  0x00000001 , 0x0000003f 
+ 00015752  0x00001615 store  0x00000001 , 0x000041fa 
+ 00015753  0x00001616 rtn 
+ 00015754  0x00001619 jam  0x00000000 , 0x000000a2 
+ 00015755  0x0000161a fetch  0x00000001 , 0x00004214 
+ 00015756  0x0000161b store  0x00000001 , 0x00004215 
+ 00015757  0x0000161c rtn 
+ 00015758  0x0000161f fetcht  0x00000001 , 0x00004213 
+ 00015759  0x00001620 storet  0x00000001 , 0x000000a2 
+ 00015760  0x00001621 rtn 
+ 00015761  0x00001624 set0  0x00000025 , 0x00000000 
+ 00015762  0x00001625 bpatch  0x000000b9 , 0x00004017 
+ 00015763  0x00001626 fetch  0x00000001 , 0x00004219 
+ 00015764  0x00001627 nrtn  0x00000034 
+ 00015765  0x00001628 hjam  0x00000006 , 0x00008042 
+ 00015766  0x00001629 setarg  0x00000f0c 
+ 00015767  0x0000162a call  0x00003da7 
+ 00015768  0x0000162b setarg  0x00030d40 
+ 00015769  0x0000162c call  0x00003bf3 
+ 00015770  0x0000162d until  0x0000003e , 0x00000033 
+ 00015771  0x0000162e copy  0x00000031 , 0x00000030 
+ 00015772  0x0000162f call  0x00003b36 
+ 00015773  0x00001630 hjam  0x00000004 , 0x00008042 
+ 00015774  0x00001631 nop  0x0000000a 
+ 00015775  0x00001632 until  0x0000003e , 0x00000033 
+ 00015776  0x00001633 deposit  0x00000031 
+ 00015777  0x00001634 isub  0x00000030 , 0x0000003f 
+ 00015778  0x00001635 increase  0x00000030 , 0x0000003f 
+ 00015779  0x00001636 arg  0x000000ff , 0x00000002 
+ 00015780  0x00001637 call  0x00007f2e 
+ 00015781  0x00001638 store  0x00000001 , 0x00004219 
+ 00015782  0x00001639 rtn 
+ 00015783  0x0000163f arg  0x00000fff , 0x00000005 
+ 00015784  0x00001640 iand  0x00000005 , 0x00000005 
+ 00015785  0x00001641 fetch  0x00000001 , 0x00004216 
+ 00015786  0x00001642 and_into  0x000000f0 , 0x0000003f 
+ 00015787  0x00001643 lshift8  0x0000003f , 0x0000003f 
+ 00015788  0x00001644 ior  0x00000005 , 0x0000003f 
+ 00015789  0x00001645 hstore  0x00000002 , 0x0000804c 
+ 00015790  0x00001646 ifetch  0x00000002 , 0x00000006 
+ 00015791  0x00001647 istore  0x00000002 , 0x00000005 
+ 00015792  0x0000164a setarg  0x00000001 
+ 00015793  0x0000164b branch  0x00003db3 
+ 00015794  0x0000164e setarg  0x00000002 
+ 00015795  0x00001650 until  0x0000003e , 0x00000033 
+ 00015796  0x00001651 hstore  0x00000001 , 0x00008005 
+ 00015797  0x00001652 until  0x0000003e , 0x00000033 
+ 00015798  0x00001653 until  0x0000003e , 0x00000033 
+ 00015799  0x00001654 rtn 
+ 00015800  0x00001658 set0  0x00000025 , 0x00000000 
+ 00015801  0x00001659 bpatch  0x000000ba , 0x00004017 
+ 00015802  0x0000165a fetch  0x00000004 , 0x000000a3 
+ 00015803  0x0000165b hstore  0x00000004 , 0x0000804c 
+ 00015804  0x0000165c setarg  0x00000004 
+ 00015805  0x0000165d call  0x00003db3 
+ 00015806  0x0000165e fetch  0x00000004 , 0x000000a7 
+ 00015807  0x0000165f hstore  0x00000004 , 0x0000804c 
+ 00015808  0x00001660 setarg  0x00000008 
+ 00015809  0x00001661 branch  0x00003db3 
+ 00015810  0x00001664 fetch  0x00000002 , 0x000041f3 
+ 00015811  0x00001665 qset1  0x0000003f 
+ 00015812  0x00001666 store  0x00000002 , 0x000041f3 
+ 00015813  0x00001667 rtn 
+ 00015814  0x0000166a fetch  0x00000002 , 0x000041f3 
+ 00015815  0x0000166b qset0  0x0000003f 
+ 00015816  0x0000166c store  0x00000002 , 0x000041f3 
+ 00015817  0x0000166d rtn 
+ 00015818  0x00001672 set0  0x00000025 , 0x00000000 
+ 00015819  0x00001673 bpatch  0x000000bb , 0x00004017 
+ 00015820  0x00001674 call  0x00003ea7 
+ 00015821  0x00001675 fetch  0x00000002 , 0x000041f3 
+ 00015822  0x00001676 copy  0x0000003f , 0x00000011 
+ 00015823  0x00001677 fetch  0x00000001 , 0x0000004c 
+ 00015824  0x00001678 isolate1  0x00000006 , 0x0000003f 
+ 00015825  0x00001679 setflag  0x00000001 , 0x0000000b , 0x00000011 
+ 00015826  0x0000167a fetch  0x00000001 , 0x00000078 
+ 00015827  0x0000167b fetcht  0x00000001 , 0x0000007c 
+ 00015828  0x0000167c iadd  0x00000002 , 0x0000003f 
+ 00015829  0x0000167d fetcht  0x00000001 , 0x00000048 
+ 00015830  0x0000167e iadd  0x00000002 , 0x0000003f 
+ 00015831  0x0000167f nsetflag  0x00000034 , 0x0000000a , 0x00000011 
+ 00015832  0x00001680 set0  0x00000025 , 0x00000000 
+ 00015833  0x00001681 bpatch  0x000000bc , 0x00004017 
+ 00015834  0x00001682 fetch  0x00000002 , 0x000002c4 
+ 00015835  0x00001683 fetcht  0x00000002 , 0x000002c6 
+ 00015836  0x00001684 iadd  0x00000002 , 0x0000003f 
+ 00015837  0x00001685 nsetflag  0x00000034 , 0x0000000d , 0x00000011 
+ 00015838  0x00001686 fetch  0x00000005 , 0x000047df 
+ 00015839  0x00001687 nsetflag  0x00000034 , 0x0000000f , 0x00000011 
+ 00015840  0x00001688 fetch  0x00000005 , 0x000047e4 
+ 00015841  0x00001689 nsetflag  0x00000034 , 0x0000000e , 0x00000011 
+ 00015842  0x0000168a fetch  0x00000001 , 0x00004272 
+ 00015843  0x0000168b nsetflag  0x00000034 , 0x00000008 , 0x00000011 
+ 00015844  0x0000168c fetch  0x00000001 , 0x00004132 
+ 00015845  0x0000168d compare  0x0000000a , 0x0000003f , 0x000000ff 
+ 00015846  0x0000168e call  0x00003df5 , 0x00000001 
+ 00015847  0x0000168f set0  0x00000025 , 0x00000000 
+ 00015848  0x00001690 bpatch  0x000000bd , 0x00004017 
+ 00015849  0x00001691 fetch  0x00000001 , 0x00004132 
+ 00015850  0x00001692 bne  0x00000001 , 0x00003dfa 
+ 00015851  0x00001693 call  0x00003df5 
+ 00015852  0x00001694 fetch  0x00000001 , 0x0000425e 
+ 00015853  0x00001695 setflag  0x00000034 , 0x00000003 , 0x00000011 
+ 00015854  0x00001696 fetch  0x00000004 , 0x000042a5 
+ 00015855  0x00001697 arg  0x00001710 , 0x00000002 
+ 00015856  0x00001698 iadd  0x00000002 , 0x00000002 
+ 00015857  0x00001699 copy  0x00000022 , 0x0000003f 
+ 00015858  0x0000169a isub  0x00000002 , 0x0000003e 
+ 00015859  0x0000169b nsetflag  0x00000002 , 0x00000004 , 0x00000011 
+ 00015860  0x0000169c branch  0x00003dfc 
+ 00015861  0x0000169f hfetch  0x00000002 , 0x00008112 
+ 00015862  0x000016a0 nsetflag  0x00000034 , 0x00000006 , 0x00000011 
+ 00015863  0x000016a1 hfetch  0x00000002 , 0x0000810e 
+ 00015864  0x000016a2 nsetflag  0x00000034 , 0x00000005 , 0x00000011 
+ 00015865  0x000016a3 rtn 
+ 00015866  0x000016a6 setarg  0xfffffff8 
+ 00015867  0x000016a7 iand  0x00000011 , 0x00000011 
+ 00015868  0x000016a9 copy  0x00000011 , 0x0000003f 
+ 00015869  0x000016aa store  0x00000002 , 0x000041f3 
+ 00015870  0x000016ab rtn  0x00000034 
+ 00015871  0x000016ac rtn  0x0000002d 
+ 00015872  0x000016ad enable  0x0000002b 
+ 00015873  0x000016ae rtn 
+ 00015874  0x000016b1 hfetch  0x00000004 , 0x00008138 
+ 00015875  0x000016b2 set0  0x0000001b , 0x0000003f 
+ 00015876  0x000016b3 hstore  0x00000004 , 0x0000804c 
+ 00015877  0x000016b4 call  0x00003db0 
+ 00015878  0x000016b5 branch  0x00003bf1 
+ 00015879  0x000016b8 hfetch  0x00000004 , 0x0000813c 
+ 00015880  0x000016b9 set1  0x00000014 , 0x0000003f 
+ 00015881  0x000016ba hstore  0x00000004 , 0x0000804c 
+ 00015882  0x000016bb branch  0x00003db2 
+ 00015883  0x000016be hfetch  0x00000004 , 0x0000813c 
+ 00015884  0x000016bf set0  0x00000014 , 0x0000003f 
+ 00015885  0x000016c0 hstore  0x00000004 , 0x0000804c 
+ 00015886  0x000016c1 branch  0x00003db2 
+ 00015887  0x000016c4 set0  0x00000025 , 0x00000000 
+ 00015888  0x000016c5 bpatch  0x000000be , 0x00004017 
+ 00015889  0x000016c6 fetch  0x00000001 , 0x00004132 
+ 00015890  0x000016c7 rtnne  0x00000001 
+ 00015891  0x000016c8 call  0x00006a8b 
+ 00015892  0x000016c9 rtn  0x00000001 
+ 00015893  0x000016ca fetch  0x00000004 , 0x00004807 
+ 00015894  0x000016cb nbranch  0x00003e1a , 0x00000034 
+ 00015895  0x000016cc copy  0x00000022 , 0x0000003f 
+ 00015896  0x000016cd store  0x00000004 , 0x00004807 
+ 00015897  0x000016ce branch  0x00006a6b 
+ 00015898  0x000016d0 set0  0x00000025 , 0x00000000 
+ 00015899  0x000016d1 bpatch  0x000000bf , 0x00004017 
+ 00015900  0x000016d2 copy  0x00000022 , 0x0000003f 
+ 00015901  0x000016d3 fetcht  0x00000004 , 0x00004807 
+ 00015902  0x000016d4 isub  0x00000002 , 0x0000003f 
+ 00015903  0x000016d5 arg  0x00000021 , 0x00000002 
+ 00015904  0x000016d6 isub  0x00000002 , 0x0000003e 
+ 00015905  0x000016d7 nrtn  0x00000002 
+ 00015906  0x000016d8 setarg  0x00000000 
+ 00015907  0x000016d9 store  0x00000004 , 0x00004807 
+ 00015908  0x000016da branch  0x00004599 
+ 00015909  0x000016dd fetch  0x00000002 , 0x000041f1 
+ 00015910  0x000016de bbit1  0x00000000 , 0x00003bf1 
+ 00015911  0x000016df rtn 
+ 00015912  0x000016e1 fetch  0x00000002 , 0x000041f1 
+ 00015913  0x000016e2 bbit1  0x00000001 , 0x00003bf1 
+ 00015914  0x000016e3 rtn 
+ 00015915  0x000016e5 fetch  0x00000002 , 0x000041f1 
+ 00015916  0x000016e6 bbit1  0x00000002 , 0x00003bf1 
+ 00015917  0x000016e7 rtn 
+ 00015918  0x000016ea setarg  0x00003e37 
+ 00015919  0x000016eb store  0x00000002 , 0x0000428e 
+ 00015920  0x000016ec setarg  0x00003e3d 
+ 00015921  0x000016ed store  0x00000002 , 0x00004292 
+ 00015922  0x000016ee setarg  0x00003e37 
+ 00015923  0x000016ef store  0x00000002 , 0x00004290 
+ 00015924  0x000016f0 rtn  0x0000002b 
+ 00015925  0x000016f1 jam  0x00000001 , 0x000047e9 
+ 00015926  0x000016f2 rtn 
+ 00015927  0x000016f5 fetch  0x00000001 , 0x00000030 
+ 00015928  0x000016f6 bbit0  0x00000001 , 0x00005e9f 
+ 00015929  0x000016f7 set1  0x0000000d , 0x00000000 
+ 00015930  0x000016f8 fetch  0x00000006 , 0x0000420a 
+ 00015931  0x000016f9 store  0x00000006 , 0x00004703 
+ 00015932  0x000016fa branch  0x00007bde 
+ 00015933  0x000016fe deposit  0x00000013 
+ 00015934  0x000016ff rtnne  0x00000010 
+ 00015935  0x00001701 call  0x00007bb1 
+ 00015936  0x00001702 fetch  0x00000001 , 0x000047eb 
+ 00015937  0x00001703 beq  0x00000001 , 0x00003e3f 
+ 00015938  0x00001704 call  0x00007be2 
+ 00015939  0x00001705 branch  0x00003ccd 
+ 00015940  0x00001709 force  0x00000002 , 0x00000002 
+ 00015941  0x0000170a increase  0xfffffffe , 0x00000002 
+ 00015942  0x0000170b call  0x00003a7a 
+ 00015943  0x0000170c call  0x00003a91 
+ 00015944  0x0000170d disable  0x00000007 
+ 00015945  0x0000170e enable  0x0000001d 
+ 00015946  0x0000170f set1  0x00000000 , 0x00000015 
+ 00015947  0x00001710 call  0x00003bae 
+ 00015948  0x00001712 fetch  0x00000001 , 0x00000000 
+ 00015949  0x00001713 inject  0x00000003 , 0x00000008 
+ 00015950  0x00001714 branch  0x00003e4c 
+ 00015951  0x0000171b set1  0x00000025 , 0x00000000 
+ 00015952  0x0000171c bpatch  0x000000cd , 0x00004039 
+ 00015953  0x0000171d fetch  0x00000001 , 0x00004132 
+ 00015954  0x0000171e branch  0x00003e4f , 0x00000034 
+ 00015955  0x0000171f beq  0x00000006 , 0x00005aa2 
+ 00015956  0x00001720 beq  0x00000007 , 0x00004b33 
+ 00015957  0x00001721 beq  0x00000004 , 0x00004293 
+ 00015958  0x00001722 beq  0x00000003 , 0x00004c09 
+ 00015959  0x00001723 beq  0x00000001 , 0x00004461 
+ 00015960  0x00001724 beq  0x00000009 , 0x00007624 
+ 00015961  0x00001725 beq  0x0000000a , 0x000062ef 
+ 00015962  0x00001726 beq  0x0000000c , 0x00004bf3 
+ 00015963  0x00001727 beq  0x0000000d , 0x00006a8e 
+ 00015964  0x00001728 beq  0x000000ff , 0x00003e2e 
+ 00015965  0x00001729 bbit1  0x00000006 , 0x00006486 
+ 00015966  0x0000172a rtn 
+ 00015967  0x0000172d set1  0x00000025 , 0x00000000 
+ 00015968  0x0000172e bpatch  0x000000ce , 0x00004039 
+ 00015969  0x0000172f jam  0x00000000 , 0x00000153 
+ 00015970  0x00001730 jam  0x00000000 , 0x00000189 
+ 00015971  0x00001731 jam  0x00000000 , 0x0000018a 
+ 00015972  0x00001732 setarg  0x00000000 
+ 00015973  0x00001733 store  0x00000005 , 0x000007da 
+ 00015974  0x00001734 fetch  0x00000001 , 0x00004132 
+ 00015975  0x00001735 branch  0x00003e5f , 0x00000034 
+ 00015976  0x00001736 beq  0x0000000a , 0x0000631f 
+ 00015977  0x00001737 rtn 
+ 00015978  0x0000173b call  0x00007ba1 
+ 00015979  0x0000173c call  0x00007c45 
+ 00015980  0x0000173d call  0x00003e73 
+ 00015981  0x0000173e fetch  0x00000002 , 0x00004290 
+ 00015982  0x0000173f branch  0x00007f66 
+ 00015983  0x00001742 fetch  0x00000002 , 0x0000428e 
+ 00015984  0x00001743 branch  0x00007f66 
+ 00015985  0x00001746 fetch  0x00000002 , 0x0000428c 
+ 00015986  0x00001747 branch  0x00007f66 
+ 00015987  0x0000174a set1  0x00000025 , 0x00000000 
+ 00015988  0x0000174b bpatch  0x000000cf , 0x00004039 
+ 00015989  0x0000174d arg  0x000047df , 0x00000011 
+ 00015990  0x0000174e call  0x00007f9f 
+ 00015991  0x0000174f rtn  0x00000034 
+ 00015992  0x00001751 copy  0x0000003f , 0x00000013 
+ 00015993  0x00001752 call  0x00003e7d 
+ 00015994  0x00001753 branch  0x00003ea5 
+ 00015995  0x00001756 arg  0x00000000 , 0x00000013 
+ 00015996  0x00001757 rtn 
+ 00015997  0x0000175d beq  0x00000001 , 0x00003e92 
+ 00015998  0x0000175e beq  0x00000010 , 0x00003ed9 
+ 00015999  0x0000175f beq  0x00000005 , 0x00003eb6 
+ 00016000  0x00001760 beq  0x00000012 , 0x00003ebd 
+ 00016001  0x00001761 beq  0x00000006 , 0x00003ed5 
+ 00016002  0x00001762 beq  0x00000004 , 0x00003efe 
+ 00016003  0x00001763 beq  0x00000002 , 0x00003f03 
+ 00016004  0x00001764 beq  0x00000013 , 0x00003efe 
+ 00016005  0x00001765 beq  0x00000014 , 0x00003ecc 
+ 00016006  0x00001766 beq  0x00000015 , 0x00003ed0 
+ 00016007  0x00001767 beq  0x00000003 , 0x00003eaf 
+ 00016008  0x00001768 beq  0x0000000b , 0x00003ec1 
+ 00016009  0x00001769 beq  0x0000000c , 0x00003ec8 
+ 00016010  0x0000176b beq  0x00000016 , 0x00003edd 
+ 00016011  0x0000176c beq  0x00000018 , 0x00003eab 
+ 00016012  0x0000176d beq  0x0000002a , 0x00003e9b 
+ 00016013  0x0000176e beq  0x0000002b , 0x00003e99 
+ 00016014  0x00001770 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00016015  0x00001771 and_into  0x000000f0 , 0x0000003f 
+ 00016016  0x00001772 beq  0x00000050 , 0x00003ee1 
+ 00016017  0x00001773 rtn 
+ 00016018  0x00001776 fetch  0x00000002 , 0x000047f4 
+ 00016019  0x00001777 set1  0x00000000 , 0x0000003f 
+ 00016020  0x00001778 store  0x00000002 , 0x000047f4 
+ 00016021  0x00001779 fetch  0x00000002 , 0x000042a2 
+ 00016022  0x0000177a set0  0x00000000 , 0x0000003f 
+ 00016023  0x0000177b store  0x00000002 , 0x000042a2 
+ 00016024  0x0000177c rtn 
+ 00016025  0x0000177e jam  0x00000000 , 0x00000258 
+ 00016026  0x0000177f rtn 
+ 00016027  0x00001782 fetch  0x00000001 , 0x00000258 
+ 00016028  0x00001783 increase  0x00000001 , 0x0000003f 
+ 00016029  0x00001784 store  0x00000001 , 0x00000258 
+ 00016030  0x00001785 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00016031  0x00001786 branch  0x00003f6c , 0x00000002 
+ 00016032  0x00001787 jam  0x00000000 , 0x00000258 
+ 00016033  0x00001788 fetch  0x00000002 , 0x000042a2 
+ 00016034  0x00001789 set1  0x00000009 , 0x0000003f 
+ 00016035  0x0000178a store  0x00000002 , 0x000042a2 
+ 00016036  0x0000178b branch  0x00003f77 
+ 00016037  0x0000178e fetch  0x00000002 , 0x00004292 
+ 00016038  0x0000178f branch  0x00007f66 
+ 00016039  0x00001792 fetch  0x00000002 , 0x00004286 
+ 00016040  0x00001793 branch  0x00007f66 
+ 00016041  0x00001796 fetch  0x00000002 , 0x0000428a 
+ 00016042  0x00001797 branch  0x00007f66 
+ 00016043  0x0000179a fetch  0x00000002 , 0x000042a2 
+ 00016044  0x0000179b set1  0x00000001 , 0x0000003f 
+ 00016045  0x0000179c store  0x00000002 , 0x000042a2 
+ 00016046  0x0000179d branch  0x00003fa2 
+ 00016047  0x000017a0 fetch  0x00000002 , 0x000047f4 
+ 00016048  0x000017a1 set1  0x00000007 , 0x0000003f 
+ 00016049  0x000017a2 store  0x00000002 , 0x000047f4 
+ 00016050  0x000017a3 fetch  0x00000002 , 0x000042a2 
+ 00016051  0x000017a4 set1  0x00000002 , 0x0000003f 
+ 00016052  0x000017a5 store  0x00000002 , 0x000042a2 
+ 00016053  0x000017a6 rtn 
+ 00016054  0x000017a9 fetch  0x00000002 , 0x000047f4 
+ 00016055  0x000017aa set1  0x00000001 , 0x0000003f 
+ 00016056  0x000017ab store  0x00000002 , 0x000047f4 
+ 00016057  0x000017ac fetch  0x00000002 , 0x000042a2 
+ 00016058  0x000017ad set1  0x00000004 , 0x0000003f 
+ 00016059  0x000017ae store  0x00000002 , 0x000042a2 
+ 00016060  0x000017af rtn 
+ 00016061  0x000017b2 fetch  0x00000002 , 0x000047f4 
+ 00016062  0x000017b3 set1  0x00000003 , 0x0000003f 
+ 00016063  0x000017b4 store  0x00000002 , 0x000047f4 
+ 00016064  0x000017b5 rtn 
+ 00016065  0x000017b8 fetch  0x00000002 , 0x000047f4 
+ 00016066  0x000017b9 set1  0x00000005 , 0x0000003f 
+ 00016067  0x000017ba store  0x00000002 , 0x000047f4 
+ 00016068  0x000017bb fetch  0x00000002 , 0x000042a2 
+ 00016069  0x000017bc set1  0x00000003 , 0x0000003f 
+ 00016070  0x000017bd store  0x00000002 , 0x000042a2 
+ 00016071  0x000017be rtn 
+ 00016072  0x000017c1 fetch  0x00000002 , 0x000047f4 
+ 00016073  0x000017c2 set0  0x00000005 , 0x0000003f 
+ 00016074  0x000017c3 store  0x00000002 , 0x000047f4 
+ 00016075  0x000017c4 rtn 
+ 00016076  0x000017c7 fetch  0x00000002 , 0x000047f4 
+ 00016077  0x000017c8 set1  0x00000009 , 0x0000003f 
+ 00016078  0x000017c9 store  0x00000002 , 0x000047f4 
+ 00016079  0x000017ca rtn 
+ 00016080  0x000017cd fetch  0x00000002 , 0x000047f4 
+ 00016081  0x000017ce set0  0x00000009 , 0x0000003f 
+ 00016082  0x000017cf store  0x00000002 , 0x000047f4 
+ 00016083  0x000017d0 jam  0x00000000 , 0x000046f8 
+ 00016084  0x000017d1 branch  0x00003fa6 
+ 00016085  0x000017d4 fetch  0x00000002 , 0x000047f4 
+ 00016086  0x000017d5 set1  0x00000002 , 0x0000003f 
+ 00016087  0x000017d6 store  0x00000002 , 0x000047f4 
+ 00016088  0x000017d7 rtn 
+ 00016089  0x000017da fetch  0x00000002 , 0x000042a2 
+ 00016090  0x000017db set1  0x00000000 , 0x0000003f 
+ 00016091  0x000017dc store  0x00000002 , 0x000042a2 
+ 00016092  0x000017dd rtn 
+ 00016093  0x000017e0 fetch  0x00000002 , 0x000042a2 
+ 00016094  0x000017e1 set1  0x00000008 , 0x0000003f 
+ 00016095  0x000017e2 store  0x00000002 , 0x000042a2 
+ 00016096  0x000017e3 branch  0x00003f77 
+ 00016097  0x000017e7 set1  0x00000025 , 0x00000000 
+ 00016098  0x000017e8 bpatch  0x000000d0 , 0x0000403a 
+ 00016099  0x000017e9 storet  0x00000001 , 0x00000259 
+ 00016100  0x000017eb fetch  0x00000001 , 0x00000259 
+ 00016101  0x000017ec rtn  0x00000034 
+ 00016102  0x000017ed increase  0xffffffff , 0x0000003f 
+ 00016103  0x000017ee store  0x00000001 , 0x00000259 
+ 00016104  0x000017ef call  0x00007bb1 
+ 00016105  0x000017f0 call  0x00003f60 
+ 00016106  0x000017f1 call  0x00003eed 
+ 00016107  0x000017f2 call  0x00003ef5 
+ 00016108  0x000017f3 branch  0x00003ee4 
+ 00016109  0x000017f6 fetch  0x00000001 , 0x0000429d 
+ 00016110  0x000017f7 rtn  0x00000034 
+ 00016111  0x000017f8 increase  0xffffffff , 0x0000003f 
+ 00016112  0x000017f9 store  0x00000001 , 0x0000429d 
+ 00016113  0x000017fa nrtn  0x00000034 
+ 00016114  0x000017fb call  0x000032ee 
+ 00016115  0x000017fc branch  0x00003f9e , 0x00000005 
+ 00016116  0x000017fd rtn 
+ 00016117  0x000017ff fetch  0x00000002 , 0x000047f0 
+ 00016118  0x00001800 rtn  0x00000034 
+ 00016119  0x00001801 increase  0xffffffff , 0x0000003f 
+ 00016120  0x00001802 store  0x00000002 , 0x000047f0 
+ 00016121  0x00001803 nrtn  0x00000034 
+ 00016122  0x00001804 call  0x00003f7e 
+ 00016123  0x00001805 call  0x00003f98 
+ 00016124  0x00001806 fetch  0x00000002 , 0x00004294 
+ 00016125  0x00001807 branch  0x00007f66 
+ 00016126  0x0000180a call  0x00003f15 
+ 00016127  0x0000180c fetch  0x00000002 , 0x000047f4 
+ 00016128  0x0000180d set0  0x00000007 , 0x0000003f 
+ 00016129  0x0000180e store  0x00000002 , 0x000047f4 
+ 00016130  0x0000180f rtn 
+ 00016131  0x00001812 jam  0x00000000 , 0x0000429d 
+ 00016132  0x00001813 fetch  0x00000002 , 0x000047f4 
+ 00016133  0x00001814 bbit1  0x00000007 , 0x00003f08 
+ 00016134  0x00001815 isolate0  0x00000001 , 0x0000003f 
+ 00016135  0x00001816 call  0x00003e7b , 0x00000001 
+ 00016136  0x00001818 fetch  0x00000002 , 0x000047f4 
+ 00016137  0x00001819 set0  0x00000000 , 0x0000003f 
+ 00016138  0x0000181a set0  0x00000001 , 0x0000003f 
+ 00016139  0x0000181b set0  0x00000002 , 0x0000003f 
+ 00016140  0x0000181c set0  0x00000003 , 0x0000003f 
+ 00016141  0x0000181d set0  0x00000004 , 0x0000003f 
+ 00016142  0x0000181e store  0x00000002 , 0x000047f4 
+ 00016143  0x0000181f branch  0x00003fa6 
+ 00016144  0x00001822 call  0x00003f12 
+ 00016145  0x00001823 branch  0x00003f9a 
+ 00016146  0x00001828 setarg  0x00000000 
+ 00016147  0x00001829 store  0x00000002 , 0x000042a0 
+ 00016148  0x0000182a rtn 
+ 00016149  0x0000182c setarg  0x00000000 
+ 00016150  0x0000182d store  0x00000002 , 0x000042a2 
+ 00016151  0x0000182e rtn 
+ 00016152  0x00001832 fetch  0x00000002 , 0x000042a2 
+ 00016153  0x00001833 store  0x00000002 , 0x000042a0 
+ 00016154  0x00001834 setarg  0x00000000 
+ 00016155  0x00001835 store  0x00000002 , 0x000042a2 
+ 00016156  0x00001836 rtn 
+ 00016157  0x00001839 fetch  0x00000002 , 0x000042a2 
+ 00016158  0x0000183a set1  0x00000007 , 0x0000003f 
+ 00016159  0x0000183b store  0x00000002 , 0x000042a0 
+ 00016160  0x0000183c setarg  0x00000000 
+ 00016161  0x0000183d store  0x00000002 , 0x000042a2 
+ 00016162  0x0000183e rtn 
+ 00016163  0x00001845 call  0x0000691d 
+ 00016164  0x00001846 fetch  0x00000006 , 0x00004274 
+ 00016165  0x00001847 rtn 
+ 00016166  0x0000184a fetch  0x00000001 , 0x0000448b 
+ 00016167  0x0000184b branch  0x00003f2a , 0x00000034 
+ 00016168  0x0000184c call  0x00003f96 
+ 00016169  0x0000184d branch  0x00003f82 
+ 00016170  0x0000184f call  0x00003f94 
+ 00016171  0x00001850 branch  0x00003f88 
+ 00016172  0x00001853 set1  0x00000025 , 0x00000000 
+ 00016173  0x00001854 bpatch  0x000000d1 , 0x0000403a 
+ 00016174  0x00001855 arg  0x00000244 , 0x00000012 
+ 00016175  0x00001856 arg  0x00003f31 , 0x00000013 
+ 00016176  0x00001857 branch  0x00003301 
+ 00016177  0x0000185a arg  0x00000000 , 0x00000002 
+ 00016178  0x0000185b bbit0  0x00000000 , 0x00003f35 
+ 00016179  0x0000185c add  0x00000011 , 0x00000010 , 0x00000006 
+ 00016180  0x0000185d ifetcht  0x00000006 , 0x00000006 
+ 00016181  0x0000185f copy  0x00000002 , 0x0000003f 
+ 00016182  0x00001860 ncall  0x00003f3a , 0x00000034 
+ 00016183  0x00001861 istoret  0x00000006 , 0x00000012 
+ 00016184  0x00001862 increase  0x00000006 , 0x00000012 
+ 00016185  0x00001863 branch  0x00003307 
+ 00016186  0x00001865 fetch  0x00000001 , 0x0000429a 
+ 00016187  0x00001866 increase  0x00000001 , 0x0000003f 
+ 00016188  0x00001867 store  0x00000001 , 0x0000429a 
+ 00016189  0x00001868 rtn 
+ 00016190  0x0000186b jam  0x00000000 , 0x0000429a 
+ 00016191  0x0000186c branch  0x00003f2c 
+ 00016192  0x0000186f fetch  0x00000001 , 0x000047f4 
+ 00016193  0x00001870 isolate1  0x00000005 , 0x0000003f 
+ 00016194  0x00001871 rtn 
+ 00016195  0x00001877 setarg  0x00000000 
+ 00016196  0x00001878 branch  0x00003f46 
+ 00016197  0x0000187a setarg  0x0000aa55 
+ 00016198  0x0000187c store  0x00000002 , 0x000002a8 
+ 00016199  0x0000187d set1  0x00000025 , 0x00000000 
+ 00016200  0x0000187e bpatch  0x000000d2 , 0x0000403a 
+ 00016201  0x0000187f arg  0x00000002 , 0x00000002 
+ 00016202  0x00001880 arg  0x000002a8 , 0x00000011 
+ 00016203  0x00001881 arg  0x000000c3 , 0x00000012 
+ 00016204  0x00001882 branch  0x0000683e 
+ 00016205  0x00001886 set1  0x00000025 , 0x00000000 
+ 00016206  0x00001887 bpatch  0x000000d3 , 0x0000403a 
+ 00016207  0x00001888 arg  0x00000002 , 0x00000002 
+ 00016208  0x00001889 arg  0x00000161 , 0x00000011 
+ 00016209  0x0000188a arg  0x000000c3 , 0x00000012 
+ 00016210  0x0000188b call  0x0000681d 
+ 00016211  0x0000188c fetch  0x00000002 , 0x00000161 
+ 00016212  0x0000188d arg  0x0000aa55 , 0x00000002 
+ 00016213  0x0000188e isub  0x00000002 , 0x0000003e 
+ 00016214  0x0000188f rtn 
+ 00016215  0x00001893 fetch  0x00000001 , 0x00004747 
+ 00016216  0x00001894 store  0x00000001 , 0x0000429d 
+ 00016217  0x00001895 rtn 
+ 00016218  0x00001898 arg  0x00000009 , 0x00000007 
+ 00016219  0x00001899 branch  0x00003dc2 
+ 00016220  0x0000189c arg  0x00000009 , 0x00000007 
+ 00016221  0x0000189d branch  0x00003dc6 
+ 00016222  0x000018a0 jam  0x00000005 , 0x0000429e 
+ 00016223  0x000018a1 branch  0x00003f5a 
+ 00016224  0x000018a3 fetch  0x00000001 , 0x0000429e 
+ 00016225  0x000018a4 rtn  0x00000034 
+ 00016226  0x000018a5 increase  0xffffffff , 0x0000003f 
+ 00016227  0x000018a6 store  0x00000001 , 0x0000429e 
+ 00016228  0x000018a7 nrtn  0x00000034 
+ 00016229  0x000018a8 branch  0x00003f5c 
+ 00016230  0x000018ab jam  0x00000001 , 0x000043cc 
+ 00016231  0x000018ac rtn 
+ 00016232  0x000018af jam  0x00000000 , 0x000043cc 
+ 00016233  0x000018b0 rtn 
+ 00016234  0x000018b3 jam  0x0000000a , 0x00000b7d 
+ 00016235  0x000018b4 branch  0x00007c33 
+ 00016236  0x000018b7 jam  0x0000001d , 0x00000b7d 
+ 00016237  0x000018b8 branch  0x00007c33 
+ 00016238  0x000018bb set1  0x00000025 , 0x00000000 
+ 00016239  0x000018bc bpatch  0x000000d4 , 0x0000403a 
+ 00016240  0x000018bd fetch  0x00000001 , 0x0000429f 
+ 00016241  0x000018be store  0x00000001 , 0x00000177 
+ 00016242  0x000018bf jam  0x00000001 , 0x00000257 
+ 00016243  0x000018c0 jam  0x00000003 , 0x00000b7d 
+ 00016244  0x000018c1 branch  0x00007c33 
+ 00016245  0x000018c4 jam  0x0000001e , 0x00000b7d 
+ 00016246  0x000018c5 branch  0x00007c33 
+ 00016247  0x000018c8 jam  0x00000004 , 0x00000b7d 
+ 00016248  0x000018c9 branch  0x00007c33 
+ 00016249  0x000018cc fetch  0x00000002 , 0x000047fe 
+ 00016250  0x000018cd store  0x00000002 , 0x000047f0 
+ 00016251  0x000018cf call  0x00003f94 
+ 00016252  0x000018d1 jam  0x00000001 , 0x00000b7d 
+ 00016253  0x000018d2 branch  0x00007c33 
+ 00016254  0x000018d5 setarg  0x00000000 
+ 00016255  0x000018d6 store  0x00000002 , 0x000047f0 
+ 00016256  0x000018d7 jam  0x00000002 , 0x00000b7d 
+ 00016257  0x000018d8 branch  0x00007c33 
+ 00016258  0x000018db jam  0x0000000f , 0x00000b7d 
+ 00016259  0x000018dc branch  0x00007c33 
+ 00016260  0x000018df jam  0x00000010 , 0x00000b7d 
+ 00016261  0x000018e0 branch  0x00007c33 
+ 00016262  0x000018e3 jam  0x0000000e , 0x00000b7d 
+ 00016263  0x000018e4 branch  0x00007c33 
+ 00016264  0x000018e7 jam  0x0000000d , 0x00000b7d 
+ 00016265  0x000018e8 branch  0x00007c33 
+ 00016266  0x000018eb jam  0x00000017 , 0x00000b7d 
+ 00016267  0x000018ec branch  0x00007c33 
+ 00016268  0x000018ef jam  0x00000018 , 0x00000b7d 
+ 00016269  0x000018f0 branch  0x00007c33 
+ 00016270  0x000018f3 jam  0x00000016 , 0x00000b7d 
+ 00016271  0x000018f4 branch  0x00007c33 
+ 00016272  0x000018f7 jam  0x00000011 , 0x00000b7d 
+ 00016273  0x000018f8 branch  0x00007c33 
+ 00016274  0x000018fb jam  0x0000001c , 0x00000b7d 
+ 00016275  0x000018fc branch  0x00007c33 
+ 00016276  0x000018ff jam  0x00000015 , 0x00000b7d 
+ 00016277  0x00001900 branch  0x00007c33 
+ 00016278  0x00001903 jam  0x00000014 , 0x00000b7d 
+ 00016279  0x00001904 branch  0x00007c33 
+ 00016280  0x00001908 jam  0x00000013 , 0x00000b7d 
+ 00016281  0x00001909 branch  0x00007c33 
+ 00016282  0x0000190c jam  0x00000019 , 0x00000b7d 
+ 00016283  0x0000190d branch  0x00007c33 
+ 00016284  0x00001910 jam  0x00000006 , 0x00000b7d 
+ 00016285  0x00001911 branch  0x00007c33 
+ 00016286  0x00001914 jam  0x00000005 , 0x00000b7d 
+ 00016287  0x00001915 branch  0x00007c33 
+ 00016288  0x00001918 jam  0x0000001f , 0x00000b7d 
+ 00016289  0x00001919 branch  0x00007c33 
+ 00016290  0x0000191c jam  0x00000020 , 0x00000b7d 
+ 00016291  0x0000191d branch  0x00007c33 
+ 00016292  0x00001920 set1  0x0000000d , 0x00000000 
+ 00016293  0x00001921 rtn 
+ 00016294  0x00001924 set0  0x0000000d , 0x00000000 
+ 00016295  0x00001925 rtn 
+ 00016296  0x0000192a set1  0x00000025 , 0x00000000 
+ 00016297  0x0000192b bpatch  0x00000090 , 0x00004032 
+ 00016298  0x0000192c arg  0x00000020 , 0x00000002 
+ 00016299  0x0000192d arg  0x00004419 , 0x00000011 
+ 00016300  0x0000192e arg  0x000000a0 , 0x00000012 
+ 00016301  0x0000192f call  0x0000681d 
+ 00016302  0x00001932 arg  0x00000020 , 0x00000002 
+ 00016303  0x00001933 arg  0x00004702 , 0x00000011 
+ 00016304  0x00001934 arg  0x0000007f , 0x00000012 
+ 00016305  0x00001935 call  0x0000681d 
+ 00016306  0x00001937 arg  0x00000006 , 0x00000002 
+ 00016307  0x00001938 arg  0x00004140 , 0x00000011 
+ 00016308  0x00001939 arg  0x00000063 , 0x00000012 
+ 00016309  0x0000193a call  0x0000681d 
+ 00016310  0x0000193c arg  0x00000006 , 0x00000002 
+ 00016311  0x0000193d arg  0x000044f9 , 0x00000011 
+ 00016312  0x0000193e arg  0x00000069 , 0x00000012 
+ 00016313  0x0000193f call  0x0000681d 
+ 00016314  0x00001940 call  0x00005adb 
+ 00016315  0x00001942 arg  0x00000002 , 0x00000002 
+ 00016316  0x00001943 arg  0x000042ac , 0x00000011 
+ 00016317  0x00001944 arg  0x000000c0 , 0x00000012 
+ 00016318  0x00001945 call  0x0000681d 
+ 00016319  0x00001946 call  0x00006909 
+ 00016320  0x00001948 branch  0x00003fc1 
+ 00016321  0x0000194b arg  0x0000000e , 0x00000002 
+ 00016322  0x0000194c arg  0x0000054f , 0x00000011 
+ 00016323  0x0000194d arg  0x0000006f , 0x00000012 
+ 00016324  0x0000194e branch  0x0000681d 
+ 00016325  0x00001951 set1  0x00000025 , 0x00000000 
+ 00016326  0x00001952 bpatch  0x00000091 , 0x00004032 
+ 00016327  0x00001953 call  0x00003f4d 
+ 00016328  0x00001954 branch  0x00003fa8 , 0x00000005 
+ 00016329  0x00001956 call  0x00003fd2 
+ 00016330  0x00001957 call  0x00003fd7 
+ 00016331  0x00001958 call  0x00005adb 
+ 00016332  0x00001959 call  0x00003fdc 
+ 00016333  0x0000195a call  0x00003fe0 
+ 00016334  0x0000195b call  0x000062e9 
+ 00016335  0x0000195c call  0x00003fe4 
+ 00016336  0x0000195d call  0x00003fe9 
+ 00016337  0x0000195e branch  0x00003f45 
+ 00016338  0x00001961 fetcht  0x00000001 , 0x00004702 
+ 00016339  0x00001962 increase  0x00000001 , 0x00000002 
+ 00016340  0x00001963 arg  0x00004702 , 0x00000011 
+ 00016341  0x00001964 arg  0x0000007f , 0x00000012 
+ 00016342  0x00001965 branch  0x0000683e 
+ 00016343  0x00001968 fetcht  0x00000001 , 0x00004419 
+ 00016344  0x00001969 increase  0x00000001 , 0x00000002 
+ 00016345  0x0000196a arg  0x00004419 , 0x00000011 
+ 00016346  0x0000196b arg  0x000000a0 , 0x00000012 
+ 00016347  0x0000196c branch  0x0000683e 
+ 00016348  0x0000196f arg  0x00000006 , 0x00000002 
+ 00016349  0x00001970 arg  0x000044f9 , 0x00000011 
+ 00016350  0x00001971 arg  0x00000069 , 0x00000012 
+ 00016351  0x00001972 branch  0x0000683e 
+ 00016352  0x00001975 arg  0x00000006 , 0x00000002 
+ 00016353  0x00001976 arg  0x00004140 , 0x00000011 
+ 00016354  0x00001977 arg  0x00000063 , 0x00000012 
+ 00016355  0x00001978 branch  0x0000683e 
+ 00016356  0x0000197b fetcht  0x00000001 , 0x0000054f 
+ 00016357  0x0000197c increase  0x00000001 , 0x00000002 
+ 00016358  0x0000197d arg  0x0000054f , 0x00000011 
+ 00016359  0x0000197e arg  0x0000006f , 0x00000012 
+ 00016360  0x0000197f branch  0x0000683e 
+ 00016361  0x00001982 setarg  0x000001a0 
+ 00016362  0x00001983 store  0x00000002 , 0x000002a8 
+ 00016363  0x00001985 arg  0x00000002 , 0x00000002 
+ 00016364  0x00001986 arg  0x000002a8 , 0x00000011 
+ 00016365  0x00001987 arg  0x000000c0 , 0x00000012 
+ 00016366  0x00001988 branch  0x0000683e 
+ 00016367  0x0000198c set1  0x00000025 , 0x00000000 
+ 00016368  0x0000198d bpatch  0x00000092 , 0x00004032 
+ 00016369  0x0000198e fetch  0x00000002 , 0x0000480e 
+ 00016370  0x0000198f arg  0x0000012c , 0x00000002 
+ 00016371  0x00001990 isub  0x00000002 , 0x0000003e 
+ 00016372  0x00001991 branch  0x0000427f , 0x00000002 
+ 00016373  0x00001992 call  0x00003e2b 
+ 00016374  0x00001993 call  0x00007f6b 
+ 00016375  0x00001994 copy  0x00000003 , 0x00000011 
+ 00016376  0x00001995 fetch  0x00000002 , 0x0000480e 
+ 00016377  0x00001996 increase  0xfffffffe , 0x0000003f 
+ 00016378  0x00001997 iadd  0x00000003 , 0x00000003 
+ 00016379  0x00001998 ifetch  0x00000002 , 0x00000003 
+ 00016380  0x00001999 arg  0x00000a0d , 0x00000002 
+ 00016381  0x0000199a isub  0x00000002 , 0x0000003e 
+ 00016382  0x0000199b nrtn  0x00000005 
+ 00016383  0x0000199c copy  0x00000011 , 0x00000003 
+ 00016384  0x0000199d arg  0x00004850 , 0x00000012 
+ 00016385  0x0000199e arg  0x00000003 , 0x00000039 
+ 00016386  0x0000199f call  0x00004237 
+ 00016387  0x000019a0 nbranch  0x0000427f , 0x00000001 
+ 00016388  0x000019a1 branch  0x00004005 
+ 00016389  0x000019a4 set1  0x00000025 , 0x00000000 
+ 00016390  0x000019a5 bpatch  0x00000093 , 0x00004032 
+ 00016391  0x000019a7 copy  0x00000003 , 0x00000011 
+ 00016392  0x000019a8 arg  0x00004827 , 0x00000012 
+ 00016393  0x000019a9 force  0x00000004 , 0x00000039 
+ 00016394  0x000019aa call  0x00004237 
+ 00016395  0x000019ab branch  0x0000406d , 0x00000001 
+ 00016396  0x000019ad arg  0x00004824 , 0x00000012 
+ 00016397  0x000019ae force  0x00000007 , 0x00000039 
+ 00016398  0x000019af call  0x00004237 
+ 00016399  0x000019b0 branch  0x00004074 , 0x00000001 
+ 00016400  0x000019b2 arg  0x0000482e , 0x00000012 
+ 00016401  0x000019b3 force  0x00000004 , 0x00000039 
+ 00016402  0x000019b4 call  0x00004237 
+ 00016403  0x000019b5 branch  0x0000407b , 0x00000001 
+ 00016404  0x000019b7 arg  0x0000482b , 0x00000012 
+ 00016405  0x000019b8 force  0x00000007 , 0x00000039 
+ 00016406  0x000019b9 call  0x00004237 
+ 00016407  0x000019ba branch  0x00004081 , 0x00000001 
+ 00016408  0x000019bc arg  0x00004832 , 0x00000012 
+ 00016409  0x000019bd force  0x00000004 , 0x00000039 
+ 00016410  0x000019be call  0x00004237 
+ 00016411  0x000019bf branch  0x00004087 , 0x00000001 
+ 00016412  0x000019c1 arg  0x00004820 , 0x00000012 
+ 00016413  0x000019c2 force  0x00000004 , 0x00000039 
+ 00016414  0x000019c3 call  0x00004237 
+ 00016415  0x000019c4 branch  0x0000408c , 0x00000001 
+ 00016416  0x000019c6 arg  0x0000481c , 0x00000012 
+ 00016417  0x000019c7 force  0x00000004 , 0x00000039 
+ 00016418  0x000019c8 call  0x00004237 
+ 00016419  0x000019c9 branch  0x0000408f , 0x00000001 
+ 00016420  0x000019cb arg  0x00004836 , 0x00000012 
+ 00016421  0x000019cc force  0x00000005 , 0x00000039 
+ 00016422  0x000019cd call  0x00004237 
+ 00016423  0x000019ce branch  0x00004095 , 0x00000001 
+ 00016424  0x000019d0 arg  0x00004853 , 0x00000012 
+ 00016425  0x000019d1 force  0x00000004 , 0x00000039 
+ 00016426  0x000019d2 call  0x00004237 
+ 00016427  0x000019d3 branch  0x0000409b , 0x00000001 
+ 00016428  0x000019d5 arg  0x00004857 , 0x00000012 
+ 00016429  0x000019d6 force  0x00000004 , 0x00000039 
+ 00016430  0x000019d7 call  0x00004237 
+ 00016431  0x000019d8 branch  0x000040a1 , 0x00000001 
+ 00016432  0x000019da arg  0x0000485b , 0x00000012 
+ 00016433  0x000019db force  0x00000005 , 0x00000039 
+ 00016434  0x000019dc call  0x00004237 
+ 00016435  0x000019dd branch  0x000040a5 , 0x00000001 
+ 00016436  0x000019df arg  0x00004860 , 0x00000012 
+ 00016437  0x000019e0 force  0x00000004 , 0x00000039 
+ 00016438  0x000019e1 call  0x00004237 
+ 00016439  0x000019e2 branch  0x000040ab , 0x00000001 
+ 00016440  0x000019e4 arg  0x00004864 , 0x00000012 
+ 00016441  0x000019e5 force  0x00000004 , 0x00000039 
+ 00016442  0x000019e6 call  0x00004237 
+ 00016443  0x000019e7 branch  0x000040b0 , 0x00000001 
+ 00016444  0x000019e9 arg  0x00004868 , 0x00000012 
+ 00016445  0x000019ea force  0x00000004 , 0x00000039 
+ 00016446  0x000019eb call  0x00004237 
+ 00016447  0x000019ec branch  0x000040b7 , 0x00000001 
+ 00016448  0x000019ee arg  0x0000486f , 0x00000012 
+ 00016449  0x000019ef force  0x00000004 , 0x00000039 
+ 00016450  0x000019f0 call  0x00004237 
+ 00016451  0x000019f1 branch  0x000040d6 , 0x00000001 
+ 00016452  0x000019f3 arg  0x0000486c , 0x00000012 
+ 00016453  0x000019f4 force  0x00000007 , 0x00000039 
+ 00016454  0x000019f5 call  0x00004237 
+ 00016455  0x000019f6 branch  0x000040dd , 0x00000001 
+ 00016456  0x000019f8 arg  0x00004873 , 0x00000012 
+ 00016457  0x000019f9 force  0x00000005 , 0x00000039 
+ 00016458  0x000019fa call  0x00004237 
+ 00016459  0x000019fb branch  0x000040f2 , 0x00000001 
+ 00016460  0x000019fd arg  0x00004878 , 0x00000012 
+ 00016461  0x000019fe force  0x00000004 , 0x00000039 
+ 00016462  0x000019ff call  0x00004237 
+ 00016463  0x00001a00 branch  0x000040f8 , 0x00000001 
+ 00016464  0x00001a02 arg  0x0000487c , 0x00000012 
+ 00016465  0x00001a03 force  0x00000007 , 0x00000039 
+ 00016466  0x00001a04 call  0x00004237 
+ 00016467  0x00001a05 branch  0x000040fb , 0x00000001 
+ 00016468  0x00001a07 arg  0x00004841 , 0x00000012 
+ 00016469  0x00001a08 force  0x00000006 , 0x00000039 
+ 00016470  0x00001a09 call  0x00004237 
+ 00016471  0x00001a0a branch  0x00004100 , 0x00000001 
+ 00016472  0x00001a0c arg  0x00004883 , 0x00000012 
+ 00016473  0x00001a0d force  0x00000006 , 0x00000039 
+ 00016474  0x00001a0e call  0x00004237 
+ 00016475  0x00001a0f branch  0x0000412c , 0x00000001 
+ 00016476  0x00001a11 arg  0x00004849 , 0x00000012 
+ 00016477  0x00001a12 force  0x00000003 , 0x00000039 
+ 00016478  0x00001a13 call  0x00004237 
+ 00016479  0x00001a14 branch  0x0000410e , 0x00000001 
+ 00016480  0x00001a16 arg  0x0000484c , 0x00000012 
+ 00016481  0x00001a17 force  0x00000004 , 0x00000039 
+ 00016482  0x00001a18 call  0x00004237 
+ 00016483  0x00001a19 branch  0x00004117 , 0x00000001 
+ 00016484  0x00001a1b arg  0x0000483b , 0x00000012 
+ 00016485  0x00001a1c force  0x00000006 , 0x00000039 
+ 00016486  0x00001a1d call  0x00004237 
+ 00016487  0x00001a1e branch  0x00004127 , 0x00000001 
+ 00016488  0x00001a20 arg  0x00004889 , 0x00000012 
+ 00016489  0x00001a21 force  0x00000003 , 0x00000039 
+ 00016490  0x00001a22 call  0x00004237 
+ 00016491  0x00001a23 branch  0x00004129 , 0x00000001 
+ 00016492  0x00001a24 branch  0x0000427f 
+ 00016493  0x00001a28 ifetch  0x00000001 , 0x00000003 
+ 00016494  0x00001a29 beq  0x0000003f , 0x00004071 
+ 00016495  0x00001a2a beq  0x0000003d , 0x00004131 
+ 00016496  0x00001a2b branch  0x0000427f 
+ 00016497  0x00001a2d call  0x00007f6e 
+ 00016498  0x00001a2e call  0x00004194 
+ 00016499  0x00001a2f branch  0x00004286 
+ 00016500  0x00001a33 ifetch  0x00000001 , 0x00000003 
+ 00016501  0x00001a34 beq  0x0000003f , 0x00004078 
+ 00016502  0x00001a35 beq  0x0000003d , 0x00004136 
+ 00016503  0x00001a36 branch  0x0000427f 
+ 00016504  0x00001a38 call  0x00007f6e 
+ 00016505  0x00001a39 call  0x0000419b 
+ 00016506  0x00001a3a branch  0x00004286 
+ 00016507  0x00001a3d ifetch  0x00000001 , 0x00000003 
+ 00016508  0x00001a3e beq  0x0000003f , 0x0000407f 
+ 00016509  0x00001a3f beq  0x0000003d , 0x0000413c 
+ 00016510  0x00001a40 branch  0x0000427f 
+ 00016511  0x00001a42 call  0x000041a2 
+ 00016512  0x00001a43 branch  0x00004286 
+ 00016513  0x00001a46 ifetch  0x00000001 , 0x00000003 
+ 00016514  0x00001a47 beq  0x0000003f , 0x00004085 
+ 00016515  0x00001a48 beq  0x0000003d , 0x00004140 
+ 00016516  0x00001a49 branch  0x0000427f 
+ 00016517  0x00001a4c call  0x000041a8 
+ 00016518  0x00001a4d branch  0x00004286 
+ 00016519  0x00001a50 ifetch  0x00000001 , 0x00000003 
+ 00016520  0x00001a51 beq  0x0000003f , 0x0000408a 
+ 00016521  0x00001a52 branch  0x0000427f 
+ 00016522  0x00001a54 call  0x000041ae 
+ 00016523  0x00001a55 branch  0x00004286 
+ 00016524  0x00001a59 ifetch  0x00000001 , 0x00000003 
+ 00016525  0x00001a5a beq  0x0000003d , 0x00004149 
+ 00016526  0x00001a5b branch  0x0000427f 
+ 00016527  0x00001a5f ifetch  0x00000001 , 0x00000003 
+ 00016528  0x00001a60 beq  0x0000003f , 0x00004093 
+ 00016529  0x00001a61 beq  0x0000003d , 0x00004144 
+ 00016530  0x00001a62 branch  0x0000427f 
+ 00016531  0x00001a64 call  0x00004204 
+ 00016532  0x00001a65 branch  0x00004286 
+ 00016533  0x00001a68 ifetch  0x00000001 , 0x00000003 
+ 00016534  0x00001a69 beq  0x0000003f , 0x00004099 
+ 00016535  0x00001a6a beq  0x0000003d , 0x00004157 
+ 00016536  0x00001a6b branch  0x0000427f 
+ 00016537  0x00001a6d call  0x000041b4 
+ 00016538  0x00001a6e branch  0x00004286 
+ 00016539  0x00001a71 ifetch  0x00000001 , 0x00000003 
+ 00016540  0x00001a72 beq  0x0000003f , 0x0000409f 
+ 00016541  0x00001a73 beq  0x0000003d , 0x00004172 
+ 00016542  0x00001a74 branch  0x0000427f 
+ 00016543  0x00001a76 call  0x000041ba 
+ 00016544  0x00001a77 branch  0x00004286 
+ 00016545  0x00001a7a ifetch  0x00000001 , 0x00000003 
+ 00016546  0x00001a7b beq  0x0000003f , 0x000040e1 
+ 00016547  0x00001a7c beq  0x0000003d , 0x0000415a 
+ 00016548  0x00001a7d branch  0x0000427f 
+ 00016549  0x00001a81 ifetch  0x00000001 , 0x00000003 
+ 00016550  0x00001a82 beq  0x0000003f , 0x000040a9 
+ 00016551  0x00001a83 beq  0x0000003d , 0x0000416b 
+ 00016552  0x00001a84 branch  0x0000427f 
+ 00016553  0x00001a86 call  0x0000420b 
+ 00016554  0x00001a87 branch  0x00004286 
+ 00016555  0x00001a8a ifetch  0x00000001 , 0x00000003 
+ 00016556  0x00001a8b beq  0x0000003f , 0x000040ae 
+ 00016557  0x00001a8c branch  0x0000427f 
+ 00016558  0x00001a8e call  0x000041c0 
+ 00016559  0x00001a8f branch  0x00004286 
+ 00016560  0x00001a92 ifetch  0x00000001 , 0x00000003 
+ 00016561  0x00001a93 beq  0x0000003f , 0x000040b3 
+ 00016562  0x00001a94 branch  0x00004286 
+ 00016563  0x00001a96 call  0x000032ee 
+ 00016564  0x00001a97 nbranch  0x0000427f , 0x00000005 
+ 00016565  0x00001a98 call  0x000041cd 
+ 00016566  0x00001a99 branch  0x00004286 
+ 00016567  0x00001a9c ifetch  0x00000001 , 0x00000003 
+ 00016568  0x00001a9d beq  0x0000003f , 0x000040ba 
+ 00016569  0x00001a9e branch  0x0000427f 
+ 00016570  0x00001aa0 fetch  0x00000001 , 0x00004040 
+ 00016571  0x00001aa1 bbit0  0x00000000 , 0x0000427f 
+ 00016572  0x00001aa2 call  0x00007f6e 
+ 00016573  0x00001aa3 fetch  0x00000001 , 0x00004041 
+ 00016574  0x00001aa4 bbit1  0x00000000 , 0x000040c0 
+ 00016575  0x00001aa5 branch  0x000040cb 
+ 00016576  0x00001aa7 arg  0x00004868 , 0x00000011 
+ 00016577  0x00001aa8 arg  0x00000004 , 0x00000039 
+ 00016578  0x00001aa9 call  0x00004232 
+ 00016579  0x00001aaa call  0x00004247 
+ 00016580  0x00001aab setarg  0x00000034 
+ 00016581  0x00001aac istore  0x00000001 , 0x0000000a 
+ 00016582  0x00001aad call  0x0000424e 
+ 00016583  0x00001aae arg  0x000003d0 , 0x00000011 
+ 00016584  0x00001aaf call  0x00007e9d 
+ 00016585  0x00001ab0 call  0x000068fa 
+ 00016586  0x00001ab1 branch  0x00004286 
+ 00016587  0x00001ab3 arg  0x00004868 , 0x00000011 
+ 00016588  0x00001ab4 arg  0x00000004 , 0x00000039 
+ 00016589  0x00001ab5 call  0x00004232 
+ 00016590  0x00001ab6 call  0x00004247 
+ 00016591  0x00001ab7 setarg  0x00000033 
+ 00016592  0x00001ab8 istore  0x00000001 , 0x0000000a 
+ 00016593  0x00001ab9 call  0x0000424e 
+ 00016594  0x00001aba arg  0x00000040 , 0x00000011 
+ 00016595  0x00001abb call  0x00007e9d 
+ 00016596  0x00001abc call  0x000068fa 
+ 00016597  0x00001abd branch  0x00004286 
+ 00016598  0x00001ac1 set1  0x00000025 , 0x00000000 
+ 00016599  0x00001ac2 bpatch  0x00000094 , 0x00004032 
+ 00016600  0x00001ac3 call  0x00003f3e 
+ 00016601  0x00001ac4 fetch  0x00000001 , 0x0000429a 
+ 00016602  0x00001ac5 bne  0x00000000 , 0x0000427f 
+ 00016603  0x00001ac6 call  0x000041f0 
+ 00016604  0x00001ac7 branch  0x00004286 
+ 00016605  0x00001aca set1  0x00000025 , 0x00000000 
+ 00016606  0x00001acb bpatch  0x00000095 , 0x00004032 
+ 00016607  0x00001acc call  0x000041f6 
+ 00016608  0x00001acd branch  0x00004286 
+ 00016609  0x00001ad0 arg  0x00004857 , 0x00000011 
+ 00016610  0x00001ad1 arg  0x00000004 , 0x00000039 
+ 00016611  0x00001ad2 call  0x00004232 
+ 00016612  0x00001ad3 call  0x000032ee 
+ 00016613  0x00001ad4 nbranch  0x0000424a , 0x00000005 
+ 00016614  0x00001ad5 fetch  0x00000001 , 0x00004041 
+ 00016615  0x00001ad6 bbit1  0x00000001 , 0x000040eb 
+ 00016616  0x00001ad7 call  0x000040ef 
+ 00016617  0x00001ad8 call  0x000068fa 
+ 00016618  0x00001ad9 branch  0x00004286 
+ 00016619  0x00001adb setarg  0x0000004d 
+ 00016620  0x00001adc istore  0x00000001 , 0x0000000a 
+ 00016621  0x00001add call  0x000068fa 
+ 00016622  0x00001ade branch  0x00004286 
+ 00016623  0x00001ae0 setarg  0x00000053 
+ 00016624  0x00001ae1 istore  0x00000001 , 0x0000000a 
+ 00016625  0x00001ae2 rtn 
+ 00016626  0x00001ae5 ifetch  0x00000001 , 0x00000003 
+ 00016627  0x00001ae6 beq  0x0000003f , 0x000040f6 
+ 00016628  0x00001ae7 beq  0x0000003d , 0x0000417e 
+ 00016629  0x00001ae8 branch  0x0000427f 
+ 00016630  0x00001aea call  0x000041d8 
+ 00016631  0x00001aeb branch  0x00004286 
+ 00016632  0x00001aee ifetch  0x00000001 , 0x00000003 
+ 00016633  0x00001aef beq  0x0000003d , 0x00004151 
+ 00016634  0x00001af0 branch  0x0000427f 
+ 00016635  0x00001af3 ifetch  0x00000001 , 0x00000003 
+ 00016636  0x00001af4 beq  0x0000003f , 0x000040fe 
+ 00016637  0x00001af5 branch  0x0000427f 
+ 00016638  0x00001af7 call  0x000041de 
+ 00016639  0x00001af8 branch  0x00004286 
+ 00016640  0x00001afb fetch  0x00000001 , 0x0000429f 
+ 00016641  0x00001afc store  0x00000001 , 0x00000177 
+ 00016642  0x00001afd call  0x0000691d 
+ 00016643  0x00001afe call  0x00003f3e 
+ 00016644  0x00001aff fetch  0x00000001 , 0x0000429a 
+ 00016645  0x00001b00 bne  0x00000000 , 0x0000427f 
+ 00016646  0x00001b01 fetch  0x00000001 , 0x000042a9 
+ 00016647  0x00001b02 beq  0x00000033 , 0x0000410c 
+ 00016648  0x00001b03 beq  0x00000034 , 0x0000410a 
+ 00016649  0x00001b04 branch  0x0000427f 
+ 00016650  0x00001b07 call  0x00003f82 
+ 00016651  0x00001b08 branch  0x00004286 
+ 00016652  0x00001b0a call  0x00003f6e 
+ 00016653  0x00001b0b branch  0x00004286 
+ 00016654  0x00001b0e call  0x00003f3e 
+ 00016655  0x00001b0f fetch  0x00000001 , 0x0000429a 
+ 00016656  0x00001b10 bne  0x00000001 , 0x0000427f 
+ 00016657  0x00001b11 fetch  0x00000001 , 0x00004041 
+ 00016658  0x00001b12 bbit1  0x00000000 , 0x00004115 
+ 00016659  0x00001b13 call  0x00003f77 
+ 00016660  0x00001b14 branch  0x00004286 
+ 00016661  0x00001b18 call  0x00003f90 
+ 00016662  0x00001b19 branch  0x00004286 
+ 00016663  0x00001b1d ifetch  0x00000001 , 0x00000003 
+ 00016664  0x00001b1e beq  0x0000003d , 0x0000411a 
+ 00016665  0x00001b1f branch  0x0000427f 
+ 00016666  0x00001b21 ifetch  0x00000001 , 0x00000003 
+ 00016667  0x00001b22 beq  0x00000031 , 0x00004122 
+ 00016668  0x00001b23 beq  0x00000030 , 0x0000411e 
+ 00016669  0x00001b24 branch  0x0000427f 
+ 00016670  0x00001b26 call  0x00003f40 
+ 00016671  0x00001b27 branch  0x00004286 , 0x00000001 
+ 00016672  0x00001b28 call  0x00003f9e 
+ 00016673  0x00001b29 branch  0x00004286 
+ 00016674  0x00001b2b call  0x00003f40 
+ 00016675  0x00001b2c nbranch  0x00004286 , 0x00000001 
+ 00016676  0x00001b2d call  0x000063ab 
+ 00016677  0x00001b2e call  0x00006414 
+ 00016678  0x00001b2f branch  0x00004286 
+ 00016679  0x00001b33 call  0x00003f43 
+ 00016680  0x00001b34 branch  0x00004286 
+ 00016681  0x00001b37 ifetch  0x00000001 , 0x00000003 
+ 00016682  0x00001b38 beq  0x0000003d , 0x00004187 
+ 00016683  0x00001b39 branch  0x0000427f 
+ 00016684  0x00001b3c call  0x00003f3e 
+ 00016685  0x00001b3d fetch  0x00000001 , 0x0000429a 
+ 00016686  0x00001b3e bne  0x00000000 , 0x0000427f 
+ 00016687  0x00001b3f call  0x0000638a 
+ 00016688  0x00001b40 branch  0x00004286 
+ 00016689  0x00001b47 arg  0x00004703 , 0x00000011 
+ 00016690  0x00001b48 call  0x0000422b 
+ 00016691  0x00001b49 storet  0x00000001 , 0x00004702 
+ 00016692  0x00001b4a call  0x00003fd2 
+ 00016693  0x00001b4b branch  0x00004286 
+ 00016694  0x00001b4e arg  0x0000441a , 0x00000011 
+ 00016695  0x00001b4f call  0x0000422b 
+ 00016696  0x00001b50 storet  0x00000001 , 0x00004419 
+ 00016697  0x00001b51 call  0x00003fd7 
+ 00016698  0x00001b52 call  0x00005adb 
+ 00016699  0x00001b53 branch  0x00004286 
+ 00016700  0x00001b56 arg  0x00004140 , 0x00000005 
+ 00016701  0x00001b57 call  0x00007ebf 
+ 00016702  0x00001b58 call  0x00003fe0 
+ 00016703  0x00001b59 branch  0x00004286 
+ 00016704  0x00001b5c arg  0x000044f9 , 0x00000005 
+ 00016705  0x00001b5d call  0x00007ebf 
+ 00016706  0x00001b5e call  0x00003fdc 
+ 00016707  0x00001b5f branch  0x00004286 
+ 00016708  0x00001b62 arg  0x00000550 , 0x00000011 
+ 00016709  0x00001b63 call  0x0000422b 
+ 00016710  0x00001b64 storet  0x00000001 , 0x0000054f 
+ 00016711  0x00001b65 call  0x00003fe4 
+ 00016712  0x00001b66 branch  0x00004286 
+ 00016713  0x00001b69 call  0x00007eb0 
+ 00016714  0x00001b6a setarg  0x02dc6c00 
+ 00016715  0x00001b6b idiv  0x00000002 
+ 00016716  0x00001b6c call  0x00007efd 
+ 00016717  0x00001b6d quotient  0x0000003f 
+ 00016718  0x00001b6e store  0x00000002 , 0x000002a8 
+ 00016719  0x00001b6f call  0x00003feb 
+ 00016720  0x00001b70 branch  0x00004286 
+ 00016721  0x00001b73 ifetch  0x00000001 , 0x00000003 
+ 00016722  0x00001b74 sub  0x0000003f , 0x00000033 , 0x0000003e 
+ 00016723  0x00001b75 nbranch  0x0000427f , 0x00000002 
+ 00016724  0x00001b76 and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00016725  0x00001b77 store  0x00000001 , 0x00004812 
+ 00016726  0x00001b78 branch  0x00004286 
+ 00016727  0x00001b7b ifetch  0x00000003 , 0x00000003 
+ 00016728  0x00001b7c store  0x00000003 , 0x0000414a 
+ 00016729  0x00001b7d branch  0x00004286 
+ 00016730  0x00001b80 call  0x000032ee 
+ 00016731  0x00001b81 nbranch  0x0000427f , 0x00000005 
+ 00016732  0x00001b82 ifetch  0x00000001 , 0x00000003 
+ 00016733  0x00001b83 beq  0x00000053 , 0x00004160 
+ 00016734  0x00001b84 beq  0x0000004d , 0x00004163 
+ 00016735  0x00001b85 branch  0x0000427f 
+ 00016736  0x00001b88 fetch  0x00000001 , 0x00004041 
+ 00016737  0x00001b89 bbit1  0x00000001 , 0x00004166 
+ 00016738  0x00001b8a branch  0x0000427f 
+ 00016739  0x00001b8d fetch  0x00000001 , 0x00004041 
+ 00016740  0x00001b8e bbit0  0x00000001 , 0x00004166 
+ 00016741  0x00001b8f branch  0x0000427f 
+ 00016742  0x00001b92 fetch  0x00000001 , 0x00004813 
+ 00016743  0x00001b93 set1  0x00000004 , 0x0000003f 
+ 00016744  0x00001b94 store  0x00000001 , 0x00004813 
+ 00016745  0x00001b95 jam  0x00000018 , 0x00004272 
+ 00016746  0x00001b96 branch  0x0000428c 
+ 00016747  0x00001b99 arg  0x00004280 , 0x00000005 
+ 00016748  0x00001b9a call  0x00007ebd 
+ 00016749  0x00001b9b arg  0x00004282 , 0x00000005 
+ 00016750  0x00001b9c call  0x00007ebd 
+ 00016751  0x00001b9d arg  0x00004284 , 0x00000005 
+ 00016752  0x00001b9e call  0x00007ebd 
+ 00016753  0x00001b9f branch  0x00004286 
+ 00016754  0x00001ba2 ifetch  0x00000001 , 0x00000003 
+ 00016755  0x00001ba3 beq  0x00000031 , 0x00004176 
+ 00016756  0x00001ba4 beq  0x00000032 , 0x0000417c 
+ 00016757  0x00001ba5 branch  0x0000427f 
+ 00016758  0x00001ba7 ifetch  0x00000001 , 0x00000003 
+ 00016759  0x00001ba8 arg  0x000001b4 , 0x00000005 
+ 00016760  0x00001ba9 call  0x00007ebf 
+ 00016761  0x00001baa call  0x00006931 
+ 00016762  0x00001bab nrtn  0x00000028 
+ 00016763  0x00001bac branch  0x00004286 
+ 00016764  0x00001bae call  0x0000693d 
+ 00016765  0x00001baf branch  0x00004286 
+ 00016766  0x00001bb2 ifetch  0x00000001 , 0x00000003 
+ 00016767  0x00001bb3 fetcht  0x00000001 , 0x00004812 
+ 00016768  0x00001bb4 nsetflag  0x00000034 , 0x00000002 , 0x00000002 
+ 00016769  0x00001bb5 storet  0x00000001 , 0x00004812 
+ 00016770  0x00001bb6 branch  0x00004286 , 0x00000034 
+ 00016771  0x00001bb7 ifetch  0x00000001 , 0x00000003 
+ 00016772  0x00001bb8 arg  0x00004814 , 0x00000005 
+ 00016773  0x00001bb9 call  0x00007ebf 
+ 00016774  0x00001bba branch  0x00004286 
+ 00016775  0x00001bbd set1  0x00000025 , 0x00000000 
+ 00016776  0x00001bbe bpatch  0x00000096 , 0x00004032 
+ 00016777  0x00001bbf arg  0x00000014 , 0x00000039 
+ 00016778  0x00001bc0 arg  0x00001000 , 0x00000005 
+ 00016779  0x00001bc1 call  0x0000497c 
+ 00016780  0x00001bc2 arg  0x00001000 , 0x00000011 
+ 00016781  0x00001bc3 fetch  0x00000001 , 0x00001000 
+ 00016782  0x00001bc4 compare  0x00000012 , 0x0000003f , 0x000000ff 
+ 00016783  0x00001bc5 call  0x00006b19 , 0x00000001 
+ 00016784  0x00001bc6 fetch  0x00000001 , 0x00001000 
+ 00016785  0x00001bc7 compare  0x00000013 , 0x0000003f , 0x000000ff 
+ 00016786  0x00001bc8 call  0x00006b45 , 0x00000001 
+ 00016787  0x00001bc9 branch  0x00004286 
+ 00016788  0x00001bcf arg  0x00004827 , 0x00000011 
+ 00016789  0x00001bd0 arg  0x00000004 , 0x00000039 
+ 00016790  0x00001bd1 call  0x00004232 
+ 00016791  0x00001bd2 fetch  0x00000001 , 0x00004702 
+ 00016792  0x00001bd3 copy  0x0000003f , 0x00000039 
+ 00016793  0x00001bd4 arg  0x00004703 , 0x00000006 
+ 00016794  0x00001bd5 branch  0x00007f74 
+ 00016795  0x00001bd7 arg  0x00004824 , 0x00000011 
+ 00016796  0x00001bd8 force  0x00000007 , 0x00000039 
+ 00016797  0x00001bd9 call  0x00004232 
+ 00016798  0x00001bda call  0x00005b08 
+ 00016799  0x00001bdb ifetch  0x00000001 , 0x00000006 
+ 00016800  0x00001bdc copy  0x0000003f , 0x00000039 
+ 00016801  0x00001bdd branch  0x00007f74 
+ 00016802  0x00001be1 arg  0x0000482e , 0x00000011 
+ 00016803  0x00001be2 arg  0x00000004 , 0x00000039 
+ 00016804  0x00001be3 call  0x00004232 
+ 00016805  0x00001be4 arg  0x00004140 , 0x00000011 
+ 00016806  0x00001be5 call  0x00007e9d 
+ 00016807  0x00001be6 branch  0x000068fa 
+ 00016808  0x00001be8 arg  0x0000482b , 0x00000011 
+ 00016809  0x00001be9 arg  0x00000007 , 0x00000039 
+ 00016810  0x00001bea call  0x00004232 
+ 00016811  0x00001beb arg  0x000044f9 , 0x00000011 
+ 00016812  0x00001bec call  0x00007e9d 
+ 00016813  0x00001bed branch  0x000068fa 
+ 00016814  0x00001bf1 arg  0x00004832 , 0x00000011 
+ 00016815  0x00001bf2 arg  0x00000004 , 0x00000039 
+ 00016816  0x00001bf3 call  0x00004232 
+ 00016817  0x00001bf4 arg  0x00000006 , 0x00000039 
+ 00016818  0x00001bf5 arg  0x00004804 , 0x00000006 
+ 00016819  0x00001bf6 branch  0x00007f74 
+ 00016820  0x00001bf9 arg  0x00004836 , 0x00000011 
+ 00016821  0x00001bfa arg  0x00000005 , 0x00000039 
+ 00016822  0x00001bfb call  0x00004232 
+ 00016823  0x00001bfc arg  0x00000003 , 0x00000039 
+ 00016824  0x00001bfd arg  0x0000414a , 0x00000006 
+ 00016825  0x00001bfe branch  0x00007f74 
+ 00016826  0x00001c01 arg  0x00004853 , 0x00000011 
+ 00016827  0x00001c02 arg  0x00000004 , 0x00000039 
+ 00016828  0x00001c03 call  0x00004232 
+ 00016829  0x00001c04 call  0x00006988 
+ 00016830  0x00001c05 call  0x00004253 
+ 00016831  0x00001c06 branch  0x000068fa 
+ 00016832  0x00001c0a call  0x00006929 
+ 00016833  0x00001c0b arg  0x00004860 , 0x00000011 
+ 00016834  0x00001c0c arg  0x00000004 , 0x00000039 
+ 00016835  0x00001c0d call  0x00004232 
+ 00016836  0x00001c0e fetch  0x00000001 , 0x000001b3 
+ 00016837  0x00001c0f beq  0x00000033 , 0x000041c8 
+ 00016838  0x00001c10 beq  0x00000034 , 0x000041c8 
+ 00016839  0x00001c11 branch  0x000068fa 
+ 00016840  0x00001c13 istore  0x00000001 , 0x0000000a 
+ 00016841  0x00001c14 call  0x0000424e 
+ 00016842  0x00001c15 arg  0x000001b4 , 0x00000011 
+ 00016843  0x00001c16 call  0x00007e9d 
+ 00016844  0x00001c17 branch  0x000068fa 
+ 00016845  0x00001c1a set1  0x00000025 , 0x00000000 
+ 00016846  0x00001c1b bpatch  0x00000097 , 0x00004032 
+ 00016847  0x00001c1c arg  0x00004864 , 0x00000011 
+ 00016848  0x00001c1d arg  0x00000004 , 0x00000039 
+ 00016849  0x00001c1e call  0x00004232 
+ 00016850  0x00001c1f call  0x000041d4 
+ 00016851  0x00001c20 branch  0x000068fa 
+ 00016852  0x00001c22 arg  0x00000018 , 0x00000011 
+ 00016853  0x00001c23 arg  0x00000001 , 0x00000039 
+ 00016854  0x00001c24 branch  0x00007e9e 
+ 00016855  0x00001c27 rtn 
+ 00016856  0x00001c2b arg  0x00004873 , 0x00000011 
+ 00016857  0x00001c2c arg  0x00000005 , 0x00000039 
+ 00016858  0x00001c2d call  0x00004232 
+ 00016859  0x00001c2e arg  0x00004814 , 0x00000011 
+ 00016860  0x00001c2f call  0x00007e9d 
+ 00016861  0x00001c30 branch  0x000068fa 
+ 00016862  0x00001c34 arg  0x0000487c , 0x00000011 
+ 00016863  0x00001c35 arg  0x00000007 , 0x00000039 
+ 00016864  0x00001c36 call  0x00004232 
+ 00016865  0x00001c37 fetch  0x00000001 , 0x00004812 
+ 00016866  0x00001c38 copy  0x0000003f , 0x00000011 
+ 00016867  0x00001c39 fetch  0x00000001 , 0x00004040 
+ 00016868  0x00001c3a isolate1  0x00000000 , 0x0000003f 
+ 00016869  0x00001c3b setflag  0x00000001 , 0x00000003 , 0x00000011 
+ 00016870  0x00001c3c isolate1  0x00000001 , 0x0000003f 
+ 00016871  0x00001c3d setflag  0x00000001 , 0x00000005 , 0x00000011 
+ 00016872  0x00001c3e fetch  0x00000001 , 0x00004041 
+ 00016873  0x00001c3f isolate1  0x00000001 , 0x0000003f 
+ 00016874  0x00001c40 setflag  0x00000001 , 0x00000004 , 0x00000011 
+ 00016875  0x00001c41 isolate1  0x00000000 , 0x0000003f 
+ 00016876  0x00001c42 setflag  0x00000001 , 0x00000006 , 0x00000011 
+ 00016877  0x00001c43 copy  0x00000011 , 0x0000003f 
+ 00016878  0x00001c44 istore  0x00000001 , 0x0000000a 
+ 00016879  0x00001c45 branch  0x000068fa 
+ 00016880  0x00001c48 setarg  0x009e8b33 
+ 00016881  0x00001c49 store  0x00000003 , 0x00004147 
+ 00016882  0x00001c4a fetch  0x00000001 , 0x000042a4 
+ 00016883  0x00001c4b set1  0x00000000 , 0x0000003f 
+ 00016884  0x00001c4c store  0x00000001 , 0x000042a4 
+ 00016885  0x00001c4d branch  0x00004636 
+ 00016886  0x00001c50 call  0x00003f3e 
+ 00016887  0x00001c51 fetch  0x00000001 , 0x0000429a 
+ 00016888  0x00001c52 bne  0x00000000 , 0x0000427f 
+ 00016889  0x00001c53 call  0x00003f8a 
+ 00016890  0x00001c54 fetch  0x00000001 , 0x000042a4 
+ 00016891  0x00001c55 set1  0x00000001 , 0x0000003f 
+ 00016892  0x00001c56 store  0x00000001 , 0x000042a4 
+ 00016893  0x00001c57 setarg  0x00000200 
+ 00016894  0x00001c58 store  0x00000002 , 0x0000481a 
+ 00016895  0x00001c59 arg  0x0000486c , 0x00000011 
+ 00016896  0x00001c5a arg  0x00000006 , 0x00000039 
+ 00016897  0x00001c5b call  0x00004232 
+ 00016898  0x00001c5c call  0x00007f74 
+ 00016899  0x00001c5d branch  0x0000428c 
+ 00016900  0x00001c62 arg  0x0000481c , 0x00000011 
+ 00016901  0x00001c63 arg  0x00000004 , 0x00000039 
+ 00016902  0x00001c64 call  0x00004232 
+ 00016903  0x00001c65 fetch  0x00000001 , 0x0000054f 
+ 00016904  0x00001c66 copy  0x0000003f , 0x00000039 
+ 00016905  0x00001c67 arg  0x00000550 , 0x00000006 
+ 00016906  0x00001c68 branch  0x00007f74 
+ 00016907  0x00001c6d arg  0x0000485b , 0x00000011 
+ 00016908  0x00001c6e arg  0x00000005 , 0x00000039 
+ 00016909  0x00001c6f call  0x00004232 
+ 00016910  0x00001c70 call  0x00004247 
+ 00016911  0x00001c71 setarg  0x00000054 
+ 00016912  0x00001c72 istore  0x00000001 , 0x0000000a 
+ 00016913  0x00001c73 call  0x00004244 
+ 00016914  0x00001c74 arg  0x00004280 , 0x00000011 
+ 00016915  0x00001c75 call  0x00007e9b 
+ 00016916  0x00001c76 call  0x00004247 
+ 00016917  0x00001c77 setarg  0x00000041 
+ 00016918  0x00001c78 istore  0x00000001 , 0x0000000a 
+ 00016919  0x00001c79 call  0x00004244 
+ 00016920  0x00001c7a arg  0x00004282 , 0x00000011 
+ 00016921  0x00001c7b call  0x00007e9b 
+ 00016922  0x00001c7c call  0x00004247 
+ 00016923  0x00001c7d setarg  0x0000004f 
+ 00016924  0x00001c7e istore  0x00000001 , 0x0000000a 
+ 00016925  0x00001c7f call  0x00004244 
+ 00016926  0x00001c80 arg  0x00004284 , 0x00000011 
+ 00016927  0x00001c81 call  0x00007e9b 
+ 00016928  0x00001c82 branch  0x00007f74 
+ 00016929  0x00001c84 call  0x00007f6e 
+ 00016930  0x00001c85 call  0x00004247 
+ 00016931  0x00001c86 arg  0x00000182 , 0x00000011 
+ 00016932  0x00001c87 call  0x00007e9d 
+ 00016933  0x00001c88 call  0x0000424e 
+ 00016934  0x00001c89 arg  0x0000017f , 0x00000011 
+ 00016935  0x00001c8a call  0x00007e99 
+ 00016936  0x00001c8b call  0x0000424e 
+ 00016937  0x00001c8c call  0x000041d4 
+ 00016938  0x00001c8d branch  0x000068fa 
+ 00016939  0x00001c99 call  0x0000422d 
+ 00016940  0x00001c9a branch  0x0000497c 
+ 00016941  0x00001c9c call  0x00004269 
+ 00016942  0x00001c9d copy  0x0000003f , 0x00000002 
+ 00016943  0x00001c9e copy  0x0000003f , 0x00000039 
+ 00016944  0x00001c9f copy  0x00000011 , 0x00000005 
+ 00016945  0x00001ca0 rtn 
+ 00016946  0x00001ca4 call  0x00007f6e 
+ 00016947  0x00001ca5 call  0x00004241 
+ 00016948  0x00001ca7 copy  0x00000011 , 0x00000006 
+ 00016949  0x00001ca8 call  0x00004976 
+ 00016950  0x00001ca9 branch  0x00004244 
+ 00016951  0x00001cad ifetch  0x00000001 , 0x00000003 
+ 00016952  0x00001cae ifetcht  0x00000001 , 0x00000012 
+ 00016953  0x00001caf isub  0x00000002 , 0x0000003e 
+ 00016954  0x00001cb0 disable  0x00000001 
+ 00016955  0x00001cb1 nbranch  0x00004240 , 0x00000005 
+ 00016956  0x00001cb2 increase  0x00000001 , 0x00000012 
+ 00016957  0x00001cb3 loop  0x00004237 
+ 00016958  0x00001cb4 enable  0x00000001 
+ 00016959  0x00001cb5 rtn 
+ 00016960  0x00001cb7 branch  0x00004251 
+ 00016961  0x00001cbb setarg  0x0000002b 
+ 00016962  0x00001cbc istore  0x00000001 , 0x0000000a 
+ 00016963  0x00001cbd rtn 
+ 00016964  0x00001cc0 setarg  0x0000003a 
+ 00016965  0x00001cc1 istore  0x00000001 , 0x0000000a 
+ 00016966  0x00001cc2 rtn 
+ 00016967  0x00001cc6 setarg  0x0000003e 
+ 00016968  0x00001cc7 istore  0x00000001 , 0x0000000a 
+ 00016969  0x00001cc8 rtn 
+ 00016970  0x00001cca setarg  0x0000004e 
+ 00016971  0x00001ccb istore  0x00000001 , 0x0000000a 
+ 00016972  0x00001ccc call  0x000068fa 
+ 00016973  0x00001ccd branch  0x00004286 
+ 00016974  0x00001cd2 setarg  0x0000002c 
+ 00016975  0x00001cd3 istore  0x00000001 , 0x0000000a 
+ 00016976  0x00001cd4 rtn 
+ 00016977  0x00001cd7 copy  0x00000011 , 0x00000003 
+ 00016978  0x00001cd8 rtn 
+ 00016979  0x00001cdb arg  0x00000195 , 0x00000013 
+ 00016980  0x00001cdc arg  0x00000004 , 0x00000039 
+ 00016981  0x00001cde copy  0x00000039 , 0x0000003f 
+ 00016982  0x00001cdf store  0x00000001 , 0x00000161 
+ 00016983  0x00001ce0 ifetch  0x00000001 , 0x00000013 
+ 00016984  0x00001ce1 beq  0x00000033 , 0x0000425b 
+ 00016985  0x00001ce2 beq  0x00000034 , 0x0000425b 
+ 00016986  0x00001ce3 branch  0x00004267 
+ 00016987  0x00001ce5 call  0x00004247 
+ 00016988  0x00001ce6 ifetch  0x00000001 , 0x00000013 
+ 00016989  0x00001ce7 istore  0x00000001 , 0x0000000a 
+ 00016990  0x00001ce8 increase  0x00000001 , 0x00000013 
+ 00016991  0x00001ce9 call  0x0000424e 
+ 00016992  0x00001cea copy  0x00000013 , 0x00000011 
+ 00016993  0x00001ceb call  0x00007e9d 
+ 00016994  0x00001ced increase  0x00000006 , 0x00000013 
+ 00016995  0x00001cee fetch  0x00000001 , 0x00000161 
+ 00016996  0x00001cef copy  0x0000003f , 0x00000039 
+ 00016997  0x00001cf0 loop  0x00004255 
+ 00016998  0x00001cf1 rtn 
+ 00016999  0x00001cf3 increase  0x00000001 , 0x00000013 
+ 00017000  0x00001cf4 branch  0x00004262 
+ 00017001  0x00001cf9 set1  0x00000025 , 0x00000000 
+ 00017002  0x00001cfa bpatch  0x00000098 , 0x00004033 
+ 00017003  0x00001cfb hfetch  0x00000002 , 0x00008058 
+ 00017004  0x00001cfc isub  0x00000003 , 0x0000003f 
+ 00017005  0x00001cfd rtn  0x00000005 
+ 00017006  0x00001cfe branch  0x00004273 , 0x00000002 
+ 00017007  0x00001d00 fetcht  0x00000002 , 0x0000480e 
+ 00017008  0x00001d01 iadd  0x00000002 , 0x0000003f 
+ 00017009  0x00001d02 increase  0xfffffffe , 0x0000003f 
+ 00017010  0x00001d03 rtn 
+ 00017011  0x00001d05 call  0x00004278 
+ 00017012  0x00001d06 iadd  0x00000003 , 0x00000002 
+ 00017013  0x00001d07 hfetch  0x00000002 , 0x00008058 
+ 00017014  0x00001d08 isub  0x00000002 , 0x0000003f 
+ 00017015  0x00001d09 branch  0x0000426f 
+ 00017016  0x00001d0c arg  0x00004fff , 0x0000003f 
+ 00017017  0x00001d0d increase  0x00000001 , 0x0000003f 
+ 00017018  0x00001d0e arg  0x00004a00 , 0x00000002 
+ 00017019  0x00001d0f isub  0x00000002 , 0x0000003f 
+ 00017020  0x00001d10 rtn 
+ 00017021  0x00001d13 fetcht  0x00000002 , 0x0000480e 
+ 00017022  0x00001d14 branch  0x00006903 
+ 00017023  0x00001d1a set1  0x00000025 , 0x00000000 
+ 00017024  0x00001d1b bpatch  0x00000099 , 0x00004033 
+ 00017025  0x00001d1c call  0x00007f6e 
+ 00017026  0x00001d1d setarg  0x00525245 
+ 00017027  0x00001d1e istore  0x00000003 , 0x0000000a 
+ 00017028  0x00001d1f call  0x000068fa 
+ 00017029  0x00001d20 branch  0x0000428c 
+ 00017030  0x00001d23 set1  0x00000025 , 0x00000000 
+ 00017031  0x00001d24 bpatch  0x0000009a , 0x00004033 
+ 00017032  0x00001d25 call  0x00007f6e 
+ 00017033  0x00001d26 setarg  0x00004b4f 
+ 00017034  0x00001d27 istore  0x00000002 , 0x0000000a 
+ 00017035  0x00001d28 call  0x000068fa 
+ 00017036  0x00001d2b set1  0x00000025 , 0x00000000 
+ 00017037  0x00001d2c bpatch  0x0000009b , 0x00004033 
+ 00017038  0x00001d2d call  0x0000427d 
+ 00017039  0x00001d2f setarg  0x00000000 
+ 00017040  0x00001d30 store  0x00000002 , 0x0000480e 
+ 00017041  0x00001d31 store  0x00000004 , 0x0000480a 
+ 00017042  0x00001d32 rtn 
+ 00017043  0x00001d36 call  0x00007db2 
+ 00017044  0x00001d37 call  0x00003f94 
+ 00017045  0x00001d38 setarg  0x0000429f 
+ 00017046  0x00001d39 store  0x00000002 , 0x0000428c 
+ 00017047  0x00001d3a setarg  0x000042be 
+ 00017048  0x00001d3b store  0x00000002 , 0x00004292 
+ 00017049  0x00001d3c setarg  0x00007cdb 
+ 00017050  0x00001d3d store  0x00000002 , 0x00004290 
+ 00017051  0x00001d3e jam  0x00000005 , 0x0000025a 
+ 00017052  0x00001d3f jam  0x00000000 , 0x0000026e 
+ 00017053  0x00001d40 jam  0x0000001b , 0x00004272 
+ 00017054  0x00001d41 rtn 
+ 00017055  0x00001d45 disable  0x00000001 
+ 00017056  0x00001d46 call  0x00003f3e 
+ 00017057  0x00001d48 jam  0x0000001b , 0x0000041c 
+ 00017058  0x00001d49 fetch  0x00000001 , 0x0000429a 
+ 00017059  0x00001d4a compare  0x00000002 , 0x0000003f , 0x00000003 
+ 00017060  0x00001d4b nrtn  0x00000001 
+ 00017061  0x00001d4c jam  0x00000000 , 0x000043d2 
+ 00017062  0x00001d4d rtn 
+ 00017063  0x00001d50 fetch  0x00000001 , 0x00000340 
+ 00017064  0x00001d51 bbit0  0x00000000 , 0x000042b0 
+ 00017065  0x00001d52 fetch  0x00000006 , 0x00000342 
+ 00017066  0x00001d53 fetcht  0x00000006 , 0x000003d0 
+ 00017067  0x00001d54 isub  0x00000002 , 0x0000003e 
+ 00017068  0x00001d55 nrtn  0x00000005 
+ 00017069  0x00001d57 fetch  0x00000006 , 0x000003d0 
+ 00017070  0x00001d58 store  0x00000006 , 0x000044e7 
+ 00017071  0x00001d59 rtn 
+ 00017072  0x00001d5c arg  0x000000ff , 0x00000011 
+ 00017073  0x00001d5d call  0x00005b52 
+ 00017074  0x00001d5e nrtn  0x00000005 
+ 00017075  0x00001d5f ifetch  0x00000002 , 0x00000006 
+ 00017076  0x00001d60 fetcht  0x00000002 , 0x00000270 
+ 00017077  0x00001d61 isub  0x00000002 , 0x0000003e 
+ 00017078  0x00001d62 nrtn  0x00000005 
+ 00017079  0x00001d63 fetch  0x00000001 , 0x0000026e 
+ 00017080  0x00001d64 increase  0x00000001 , 0x0000003f 
+ 00017081  0x00001d65 store  0x00000001 , 0x0000026e 
+ 00017082  0x00001d66 fetcht  0x00000001 , 0x0000026f 
+ 00017083  0x00001d67 isub  0x00000002 , 0x0000003e 
+ 00017084  0x00001d68 branch  0x000042ad , 0x00000002 
+ 00017085  0x00001d69 rtn 
+ 00017086  0x00001d6c copy  0x00000013 , 0x0000003f 
+ 00017087  0x00001d6d beq  0x00000015 , 0x000042c5 
+ 00017088  0x00001d6e beq  0x00000014 , 0x000042d7 
+ 00017089  0x00001d6f and  0x0000003f , 0x0000000f , 0x00000002 
+ 00017090  0x00001d70 and_into  0x000000f0 , 0x0000003f 
+ 00017091  0x00001d71 beq  0x00000050 , 0x000042cd 
+ 00017092  0x00001d72 rtn 
+ 00017093  0x00001d75 setarg  0x00000000 
+ 00017094  0x00001d76 store  0x00000006 , 0x000044e7 
+ 00017095  0x00001d77 jam  0x00000000 , 0x0000026e 
+ 00017096  0x00001d78 setarg  0x00000000 
+ 00017097  0x00001d79 store  0x00000005 , 0x00000ff1 
+ 00017098  0x00001d7a jam  0x00000001 , 0x00000ff0 
+ 00017099  0x00001d7b call  0x00007cdb 
+ 00017100  0x00001d7c branch  0x00003f8a 
+ 00017101  0x00001d7f rtn 
+ 00017102  0x00001d80 fetch  0x00000001 , 0x000043d2 
+ 00017103  0x00001d81 rtn  0x00000034 
+ 00017104  0x00001d82 fetch  0x00000001 , 0x0000025a 
+ 00017105  0x00001d83 rtn  0x00000034 
+ 00017106  0x00001d84 increase  0xffffffff , 0x0000003f 
+ 00017107  0x00001d85 store  0x00000001 , 0x0000025a 
+ 00017108  0x00001d86 nrtn  0x00000034 
+ 00017109  0x00001d87 call  0x000042d8 
+ 00017110  0x00001d88 branch  0x00003f8e 
+ 00017111  0x00001d8c branch  0x00003f8c 
+ 00017112  0x00001d90 jam  0x00000005 , 0x0000025a 
+ 00017113  0x00001d91 fetch  0x00000001 , 0x00000267 
+ 00017114  0x00001d92 beq  0x00000001 , 0x000042e1 
+ 00017115  0x00001d93 beq  0x00000002 , 0x000042dd 
+ 00017116  0x00001d94 rtn 
+ 00017117  0x00001d96 fetch  0x00000006 , 0x0000025b 
+ 00017118  0x00001d97 store  0x00000006 , 0x00000268 
+ 00017119  0x00001d98 jam  0x00000001 , 0x00000267 
+ 00017120  0x00001d99 rtn 
+ 00017121  0x00001d9b fetch  0x00000006 , 0x00000261 
+ 00017122  0x00001d9c store  0x00000006 , 0x00000268 
+ 00017123  0x00001d9d jam  0x00000002 , 0x00000267 
+ 00017124  0x00001d9e rtn 
+ 00017125  0x00001da2 ifetch  0x00000002 , 0x00000003 
+ 00017126  0x00001da3 branch  0x00004490 , 0x00000034 
+ 00017127  0x00001da4 iforce  0x00000013 
+ 00017128  0x00001da5 ifetch  0x00000001 , 0x00000003 
+ 00017129  0x00001da6 store  0x00000001 , 0x00000293 
+ 00017130  0x00001da7 iforce  0x00000011 
+ 00017131  0x00001da8 bbit0  0x00000006 , 0x000042ed 
+ 00017132  0x00001da9 increase  0xfffffffe , 0x00000013 
+ 00017133  0x00001dab ifetch  0x00000002 , 0x00000003 
+ 00017134  0x00001dac rshift4  0x0000003f , 0x00000039 
+ 00017135  0x00001dad and  0x0000003f , 0x0000000f , 0x00000008 
+ 00017136  0x00001dae iadd  0x00000011 , 0x00000011 
+ 00017137  0x00001daf rshift8  0x0000003f , 0x0000003f 
+ 00017138  0x00001db0 iadd  0x00000011 , 0x00000011 
+ 00017139  0x00001db1 ifetch  0x00000001 , 0x00000003 
+ 00017140  0x00001db2 iadd  0x00000011 , 0x0000003f 
+ 00017141  0x00001db3 bne  0x000000ff , 0x00004319 
+ 00017142  0x00001db4 add  0x00000013 , 0xfffffffc , 0x0000003f 
+ 00017143  0x00001db5 isub  0x00000039 , 0x0000003e 
+ 00017144  0x00001db6 nbranch  0x00004316 , 0x00000005 
+ 00017145  0x00001db7 fetch  0x00000001 , 0x00000293 
+ 00017146  0x00001db8 isolate0  0x00000007 , 0x0000003f 
+ 00017147  0x00001db9 branch  0x00004302 , 0x00000001 
+ 00017148  0x00001dba set0  0x0000001b , 0x00000000 
+ 00017149  0x00001dbb bmark1  0x0000001b , 0x00004302 
+ 00017150  0x00001dbc and_into  0x00000007 , 0x0000003f 
+ 00017151  0x00001dbd fetcht  0x00000001 , 0x0000028c 
+ 00017152  0x00001dbe isub  0x00000002 , 0x0000003e 
+ 00017153  0x00001dbf nbranch  0x00004316 , 0x00000005 
+ 00017154  0x00001dc1 setarg  0x00000640 
+ 00017155  0x00001dc2 force  0x00000007 , 0x00000007 
+ 00017156  0x00001dc3 call  0x00007e4c 
+ 00017157  0x00001dc4 deposit  0x00000008 
+ 00017158  0x00001dc5 call  0x00004320 
+ 00017159  0x00001dc6 rtn  0x00000028 
+ 00017160  0x00001dc7 fetch  0x00000001 , 0x00000293 
+ 00017161  0x00001dc8 iforce  0x00000011 
+ 00017162  0x00001dc9 rshift3  0x0000003f , 0x00000002 
+ 00017163  0x00001dca and_into  0x00000007 , 0x00000002 
+ 00017164  0x00001dcb fetch  0x00000001 , 0x0000028b 
+ 00017165  0x00001dcc isub  0x00000002 , 0x0000003f 
+ 00017166  0x00001dcd sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00017167  0x00001dce and_into  0x00000007 , 0x0000003f 
+ 00017168  0x00001dcf bne  0x00000001 , 0x00004316 
+ 00017169  0x00001dd0 storet  0x00000001 , 0x0000028b 
+ 00017170  0x00001dd1 fetch  0x00000001 , 0x00000272 
+ 00017171  0x00001dd2 increase  0x00000001 , 0x0000003f 
+ 00017172  0x00001dd3 store  0x00000001 , 0x00000272 
+ 00017173  0x00001dd4 branch  0x00004319 
+ 00017174  0x00001dd7 fetch  0x00000001 , 0x00000273 
+ 00017175  0x00001dd8 increase  0x00000001 , 0x0000003f 
+ 00017176  0x00001dd9 store  0x00000001 , 0x00000273 
+ 00017177  0x00001ddb hfetch  0x00000002 , 0x00008058 
+ 00017178  0x00001ddc iforce  0x00000003 
+ 00017179  0x00001ddd ifetch  0x00000002 , 0x00000003 
+ 00017180  0x00001dde iadd  0x00000003 , 0x00000003 
+ 00017181  0x00001ddf deposit  0x00000003 
+ 00017182  0x00001de0 hstore  0x00000002 , 0x00008058 
+ 00017183  0x00001de1 rtn 
+ 00017184  0x00001de4 disable  0x00000028 
+ 00017185  0x00001de5 rtn  0x00000034 
+ 00017186  0x00001de6 beq  0x00000001 , 0x00004328 
+ 00017187  0x00001de7 beq  0x00000002 , 0x00004346 
+ 00017188  0x00001de8 beq  0x00000005 , 0x00004507 
+ 00017189  0x00001de9 beq  0x00000006 , 0x000044dd 
+ 00017190  0x00001dea beq  0x00000008 , 0x00004a56 
+ 00017191  0x00001deb rtn 
+ 00017192  0x00001dee set0  0x00000018 , 0x00000000 
+ 00017193  0x00001def ifetch  0x00000001 , 0x00000003 
+ 00017194  0x00001df0 beq  0x000000da , 0x0000432f 
+ 00017195  0x00001df1 beq  0x000000ac , 0x00004336 
+ 00017196  0x00001df2 beq  0x000000ad , 0x0000433a 
+ 00017197  0x00001df3 beq  0x000000de , 0x00004344 
+ 00017198  0x00001df4 rtn 
+ 00017199  0x00001df6 bmark1  0x00000017 , 0x00004333 
+ 00017200  0x00001df7 force  0x000000da , 0x00000002 
+ 00017201  0x00001df8 setarg  0x00ededdc 
+ 00017202  0x00001df9 call  0x0000433c 
+ 00017203  0x00001dfb force  0x000000ac , 0x00000002 
+ 00017204  0x00001dfc setarg  0x00eeefaf 
+ 00017205  0x00001dfd branch  0x0000433c 
+ 00017206  0x00001dff set1  0x00000017 , 0x00000000 
+ 00017207  0x00001e00 force  0x000000ad , 0x00000002 
+ 00017208  0x00001e01 setarg  0x00edacef 
+ 00017209  0x00001e02 branch  0x0000433c 
+ 00017210  0x00001e04 force  0x000000de , 0x00000002 
+ 00017211  0x00001e05 setarg  0x00d0d0ad 
+ 00017212  0x00001e07 lshift8  0x0000003f , 0x0000003f 
+ 00017213  0x00001e08 ior  0x00000002 , 0x00000002 
+ 00017214  0x00001e09 call  0x00004972 
+ 00017215  0x00001e0a istoret  0x00000004 , 0x0000000a 
+ 00017216  0x00001e0b force  0x00000001 , 0x00000007 
+ 00017217  0x00001e0c force  0x00000004 , 0x00000039 
+ 00017218  0x00001e0d set0  0x00000013 , 0x00000000 
+ 00017219  0x00001e0e branch  0x00004378 
+ 00017220  0x00001e10 force  0x00000000 , 0x00000030 
+ 00017221  0x00001e11 branch  0x00004933 
+ 00017222  0x00001e14 copy  0x00000039 , 0x00000030 
+ 00017223  0x00001e15 call  0x00004371 
+ 00017224  0x00001e16 force  0x00000000 , 0x00000012 
+ 00017225  0x00001e17 call  0x00004972 
+ 00017226  0x00001e18 copy  0x00000030 , 0x00000039 
+ 00017227  0x00001e19 ifetch  0x00000001 , 0x00000003 
+ 00017228  0x00001e1a setarg  0x00000001 
+ 00017229  0x00001e1b istore  0x00000001 , 0x0000000a 
+ 00017230  0x00001e1c set0  0x0000001a , 0x00000000 
+ 00017231  0x00001e1e ifetch  0x00000001 , 0x00000003 
+ 00017232  0x00001e1f increase  0x00000001 , 0x00000012 
+ 00017233  0x00001e20 beq  0x0000001c , 0x0000435b 
+ 00017234  0x00001e21 compare  0x00000004 , 0x00000012 , 0x000000ff 
+ 00017235  0x00001e22 nbranch  0x0000435d , 0x00000001 
+ 00017236  0x00001e23 setflag  0x00000034 , 0x0000001a , 0x00000000 
+ 00017237  0x00001e24 bne  0x0000003a , 0x0000435d 
+ 00017238  0x00001e25 setarg  0x000007d0 
+ 00017239  0x00001e26 force  0x00000000 , 0x00000007 
+ 00017240  0x00001e27 call  0x00007e4c 
+ 00017241  0x00001e28 set1  0x00000018 , 0x00000000 
+ 00017242  0x00001e29 rtn 
+ 00017243  0x00001e2c compare  0x00000006 , 0x00000012 , 0x000000ff 
+ 00017244  0x00001e2d branch  0x00004366 , 0x00000001 
+ 00017245  0x00001e2f isolate1  0x0000001a , 0x00000000 
+ 00017246  0x00001e30 call  0x00004368 , 0x00000001 
+ 00017247  0x00001e31 istore  0x00000001 , 0x0000000a 
+ 00017248  0x00001e32 loop  0x0000434f 
+ 00017249  0x00001e33 set0  0x00000019 , 0x00000000 
+ 00017250  0x00001e34 copy  0x00000030 , 0x00000039 
+ 00017251  0x00001e35 set1  0x00000013 , 0x00000000 
+ 00017252  0x00001e36 force  0x00000002 , 0x00000007 
+ 00017253  0x00001e37 branch  0x00004378 
+ 00017254  0x00001e39 set1  0x00000019 , 0x00000000 
+ 00017255  0x00001e3a branch  0x0000435d 
+ 00017256  0x00001e3d rtnmark1  0x00000019 
+ 00017257  0x00001e3e compare  0x0000000a , 0x00000012 , 0x000000ff 
+ 00017258  0x00001e3f branch  0x0000436f , 0x00000001 
+ 00017259  0x00001e40 compare  0x0000000b , 0x00000012 , 0x000000ff 
+ 00017260  0x00001e41 nrtn  0x00000001 
+ 00017261  0x00001e42 setarg  0x00000012 
+ 00017262  0x00001e43 rtn 
+ 00017263  0x00001e45 setarg  0x000000e9 
+ 00017264  0x00001e46 rtn 
+ 00017265  0x00001e49 fetch  0x00000001 , 0x00000293 
+ 00017266  0x00001e4a increase  0x00000001 , 0x0000003f 
+ 00017267  0x00001e4b and_into  0x00000007 , 0x0000003f 
+ 00017268  0x00001e4c store  0x00000001 , 0x0000028c 
+ 00017269  0x00001e4d force  0x00000000 , 0x00000039 
+ 00017270  0x00001e4e force  0x00000000 , 0x00000007 
+ 00017271  0x00001e4f set0  0x00000013 , 0x00000000 
+ 00017272  0x00001e52 add  0x00000039 , 0x00000004 , 0x00000012 
+ 00017273  0x00001e53 fetch  0x00000001 , 0x0000028c 
+ 00017274  0x00001e54 lshift3  0x0000003f , 0x00000013 
+ 00017275  0x00001e55 isolate0  0x00000014 , 0x00000000 
+ 00017276  0x00001e56 nsetflag  0x00000001 , 0x00000006 , 0x00000013 
+ 00017277  0x00001e57 branch  0x0000437f , 0x00000001 
+ 00017278  0x00001e58 increase  0x00000002 , 0x00000012 
+ 00017279  0x00001e5a bmark0  0x00000013 , 0x00004389 
+ 00017280  0x00001e5b set1  0x00000007 , 0x00000013 
+ 00017281  0x00001e5c fetch  0x00000001 , 0x00000294 
+ 00017282  0x00001e5d ior  0x00000013 , 0x00000013 
+ 00017283  0x00001e5e increase  0x00000001 , 0x0000003f 
+ 00017284  0x00001e5f and_into  0x00000007 , 0x0000003f 
+ 00017285  0x00001e60 store  0x00000001 , 0x00000294 
+ 00017286  0x00001e61 fetch  0x00000001 , 0x00000274 
+ 00017287  0x00001e62 increase  0x00000001 , 0x0000003f 
+ 00017288  0x00001e63 store  0x00000001 , 0x00000274 
+ 00017289  0x00001e65 fetch  0x00000002 , 0x0000028f 
+ 00017290  0x00001e66 iforce  0x0000000a 
+ 00017291  0x00001e67 deposit  0x00000012 
+ 00017292  0x00001e68 isolate1  0x00000013 , 0x00000000 
+ 00017293  0x00001e69 setflag  0x00000001 , 0x0000000f , 0x0000003f 
+ 00017294  0x00001e6a istore  0x00000002 , 0x0000000a 
+ 00017295  0x00001e6b copy  0x0000000a , 0x00000011 
+ 00017296  0x00001e6c deposit  0x00000013 
+ 00017297  0x00001e6d istore  0x00000001 , 0x0000000a 
+ 00017298  0x00001e6e lshift4  0x00000039 , 0x0000003f 
+ 00017299  0x00001e6f ior  0x00000007 , 0x0000003f 
+ 00017300  0x00001e70 iadd  0x00000013 , 0x00000013 
+ 00017301  0x00001e71 istore  0x00000002 , 0x0000000a 
+ 00017302  0x00001e72 rshift8  0x0000003f , 0x0000003f 
+ 00017303  0x00001e73 iadd  0x00000013 , 0x0000003f 
+ 00017304  0x00001e74 sub  0x0000003f , 0x000000ff , 0x0000003f 
+ 00017305  0x00001e75 istore  0x00000001 , 0x0000000a 
+ 00017306  0x00001e76 bmark0  0x00000014 , 0x0000439f 
+ 00017307  0x00001e77 increase  0x00000004 , 0x00000039 
+ 00017308  0x00001e78 copy  0x00000011 , 0x0000000a 
+ 00017309  0x00001e79 call  0x00004986 
+ 00017310  0x00001e7a istore  0x00000002 , 0x0000000a 
+ 00017311  0x00001e7c fetch  0x00000002 , 0x0000028f 
+ 00017312  0x00001e7d iadd  0x00000012 , 0x0000000a 
+ 00017313  0x00001e7e increase  0x00000002 , 0x0000000a 
+ 00017314  0x00001e7f deposit  0x0000000a 
+ 00017315  0x00001e80 store  0x00000002 , 0x0000028f 
+ 00017316  0x00001e81 hstore  0x00000002 , 0x0000805e 
+ 00017317  0x00001e82 fetcht  0x00000002 , 0x0000028d 
+ 00017318  0x00001e83 call  0x000043d8 
+ 00017319  0x00001e84 call  0x000043ab 
+ 00017320  0x00001e85 setarg  0x00000640 
+ 00017321  0x00001e86 force  0x00000007 , 0x00000007 
+ 00017322  0x00001e87 branch  0x00007e4c 
+ 00017323  0x00001e8a setarg  0x00000190 
+ 00017324  0x00001e8b force  0x00000001 , 0x00000007 
+ 00017325  0x00001e8c call  0x00007e4c 
+ 00017326  0x00001e8d set1  0x00000015 , 0x00000000 
+ 00017327  0x00001e8e rtn 
+ 00017328  0x00001e91 rtnmark0  0x00000015 
+ 00017329  0x00001e92 force  0x00000001 , 0x00000007 
+ 00017330  0x00001e93 call  0x00007e53 
+ 00017331  0x00001e94 nrtn  0x00000034 
+ 00017332  0x00001e95 fetch  0x00000002 , 0x0000028d 
+ 00017333  0x00001e96 hstore  0x00000002 , 0x00008060 
+ 00017334  0x00001e97 branch  0x000043ab 
+ 00017335  0x00001e9a fetch  0x00000002 , 0x0000028f 
+ 00017336  0x00001e9b fetcht  0x00000002 , 0x0000028d 
+ 00017337  0x00001e9c isub  0x00000002 , 0x0000003e 
+ 00017338  0x00001e9d branch  0x000043d6 , 0x00000005 
+ 00017339  0x00001e9e copy  0x00000002 , 0x0000000a 
+ 00017340  0x00001e9f ifetch  0x00000002 , 0x0000000a 
+ 00017341  0x00001ea0 iforce  0x00000011 
+ 00017342  0x00001ea1 iand  0x00000035 , 0x0000003f 
+ 00017343  0x00001ea2 iadd  0x0000000a , 0x0000000a 
+ 00017344  0x00001ea3 hfetch  0x00000002 , 0x00008110 
+ 00017345  0x00001ea4 isub  0x0000000a , 0x0000003f 
+ 00017346  0x00001ea5 iand  0x00000035 , 0x00000012 
+ 00017347  0x00001ea6 fetch  0x00000002 , 0x0000028f 
+ 00017348  0x00001ea7 isub  0x0000000a , 0x0000003f 
+ 00017349  0x00001ea8 iand  0x00000035 , 0x0000003f 
+ 00017350  0x00001ea9 isub  0x00000012 , 0x0000003f 
+ 00017351  0x00001eaa nrtn  0x00000002 
+ 00017352  0x00001eab isolate0  0x0000000f , 0x00000011 
+ 00017353  0x00001eac branch  0x000043d1 , 0x00000001 
+ 00017354  0x00001ead fetch  0x00000001 , 0x00000272 
+ 00017355  0x00001eae rtn  0x00000034 
+ 00017356  0x00001eaf increase  0xffffffff , 0x0000003f 
+ 00017357  0x00001eb0 store  0x00000001 , 0x00000272 
+ 00017358  0x00001eb1 fetch  0x00000001 , 0x00000274 
+ 00017359  0x00001eb2 increase  0xffffffff , 0x0000003f 
+ 00017360  0x00001eb3 store  0x00000001 , 0x00000274 
+ 00017361  0x00001eb5 copy  0x0000000a , 0x00000002 
+ 00017362  0x00001eb6 storet  0x00000002 , 0x0000028d 
+ 00017363  0x00001eb7 fetch  0x00000002 , 0x0000028f 
+ 00017364  0x00001eb8 call  0x000043d8 
+ 00017365  0x00001eb9 branch  0x000043b7 
+ 00017366  0x00001ebb set0  0x00000015 , 0x00000000 
+ 00017367  0x00001ebc rtn 
+ 00017368  0x00001ebf isub  0x00000002 , 0x0000003f 
+ 00017369  0x00001ec0 iand  0x00000035 , 0x0000003f 
+ 00017370  0x00001ec1 isub  0x00000035 , 0x0000003f 
+ 00017371  0x00001ec2 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00017372  0x00001ec3 store  0x00000002 , 0x00000291 
+ 00017373  0x00001ec4 rtn 
+ 00017374  0x00001ec7 fetch  0x00000002 , 0x0000028f 
+ 00017375  0x00001ec8 iadd  0x0000000a , 0x0000000a 
+ 00017376  0x00001ec9 rtn 
+ 00017377  0x00001ece rtn 
+ 00017378  0x00001ed1 set1  0x00000025 , 0x00000000 
+ 00017379  0x00001ed2 bpatch  0x000000ec , 0x0000403d 
+ 00017380  0x00001ed3 fetch  0x00000001 , 0x00004272 
+ 00017381  0x00001ed4 nrtn  0x00000034 
+ 00017382  0x00001ed6 call  0x000043e9 
+ 00017383  0x00001ed7 ncall  0x0000440e , 0x00000028 
+ 00017384  0x00001ed8 rtn 
+ 00017385  0x00001edb set1  0x00000025 , 0x00000000 
+ 00017386  0x00001edc bpatch  0x000000ed , 0x0000403d 
+ 00017387  0x00001edd copy  0x00000003 , 0x00000011 
+ 00017388  0x00001ede arg  0x00000004 , 0x00000002 
+ 00017389  0x00001edf ifetch  0x00000001 , 0x00000003 
+ 00017390  0x00001ee0 beq  0x00000001 , 0x000043f4 
+ 00017391  0x00001ee1 increase  0x00000001 , 0x00000002 
+ 00017392  0x00001ee2 beq  0x00000002 , 0x000043f4 
+ 00017393  0x00001ee3 copy  0x00000003 , 0x0000003f 
+ 00017394  0x00001ee4 hstore  0x00000002 , 0x00008058 
+ 00017395  0x00001ee5 rtn 
+ 00017396  0x00001ee7 hfetch  0x00000002 , 0x00008112 
+ 00017397  0x00001ee8 isub  0x00000002 , 0x0000003e 
+ 00017398  0x00001ee9 nbranch  0x000043f4 , 0x00000002 
+ 00017399  0x00001eeb disable  0x00000028 
+ 00017400  0x00001eec copy  0x00000011 , 0x00000003 
+ 00017401  0x00001eed call  0x00004417 
+ 00017402  0x00001eee iadd  0x00000002 , 0x00000002 
+ 00017403  0x00001ef0 hfetch  0x00000002 , 0x00008112 
+ 00017404  0x00001ef1 isub  0x00000002 , 0x0000003e 
+ 00017405  0x00001ef2 nbranch  0x000043fb , 0x00000002 
+ 00017406  0x00001ef3 copy  0x00000011 , 0x00000003 
+ 00017407  0x00001ef4 ifetch  0x00000001 , 0x00000003 
+ 00017408  0x00001ef5 beq  0x00000001 , 0x00004507 
+ 00017409  0x00001ef6 beq  0x00000002 , 0x00004403 
+ 00017410  0x00001ef7 branch  0x00003bf1 
+ 00017411  0x00001ef9 set1  0x00000025 , 0x00000000 
+ 00017412  0x00001efa bpatch  0x000000ee , 0x0000403d 
+ 00017413  0x00001efb copy  0x00000003 , 0x00000011 
+ 00017414  0x00001efc ifetch  0x00000002 , 0x00000003 
+ 00017415  0x00001efd copy  0x00000011 , 0x00000003 
+ 00017416  0x00001efe fetcht  0x00000001 , 0x00000046 
+ 00017417  0x00001eff icompare  0x000000ff , 0x00000002 
+ 00017418  0x00001f00 branch  0x000044dd , 0x00000001 
+ 00017419  0x00001f01 branch  0x000058ea , 0x00000036 
+ 00017420  0x00001f02 enable  0x00000028 
+ 00017421  0x00001f03 rtn 
+ 00017422  0x00001f05 set1  0x00000025 , 0x00000000 
+ 00017423  0x00001f06 bpatch  0x000000ef , 0x0000403d 
+ 00017424  0x00001f07 hfetch  0x00000002 , 0x00008058 
+ 00017425  0x00001f08 iforce  0x00000003 
+ 00017426  0x00001f09 call  0x00004417 
+ 00017427  0x00001f0a iadd  0x00000003 , 0x00000003 
+ 00017428  0x00001f0b deposit  0x00000003 
+ 00017429  0x00001f0c hstore  0x00000002 , 0x00008058 
+ 00017430  0x00001f0d rtn 
+ 00017431  0x00001f13 ifetch  0x00000001 , 0x00000003 
+ 00017432  0x00001f14 increase  0x00000002 , 0x00000003 
+ 00017433  0x00001f15 beq  0x00000002 , 0x0000441c 
+ 00017434  0x00001f16 ifetch  0x00000001 , 0x00000003 
+ 00017435  0x00001f17 rtn 
+ 00017436  0x00001f19 ifetch  0x00000002 , 0x00000003 
+ 00017437  0x00001f1a rtn 
+ 00017438  0x00001f1d hfetch  0x00000002 , 0x0000805e 
+ 00017439  0x00001f1e increase  0xfffffffb , 0x0000000a 
+ 00017440  0x00001f1f iadd  0x0000000a , 0x0000000a 
+ 00017441  0x00001f20 rtn 
+ 00017442  0x00001f23 arg  0x00000004 , 0x00000002 
+ 00017443  0x00001f24 branch  0x00004425 
+ 00017444  0x00001f26 arg  0x00000002 , 0x00000002 
+ 00017445  0x00001f28 set1  0x00000025 , 0x00000000 
+ 00017446  0x00001f29 bpatch  0x000000f0 , 0x0000403e 
+ 00017447  0x00001f2a increase  0x00000001 , 0x00000039 
+ 00017448  0x00001f2b hfetch  0x00000002 , 0x0000805e 
+ 00017449  0x00001f2c copy  0x0000003f , 0x0000000a 
+ 00017450  0x00001f2d copy  0x00000039 , 0x0000003f 
+ 00017451  0x00001f2e istoret  0x00000001 , 0x0000000a 
+ 00017452  0x00001f2f increase  0xffffffff , 0x0000003f 
+ 00017453  0x00001f30 iadd  0x0000000a , 0x0000000a 
+ 00017454  0x00001f31 copy  0x0000000a , 0x0000003f 
+ 00017455  0x00001f32 store  0x00000002 , 0x0000029d 
+ 00017456  0x00001f33 copy  0x00000002 , 0x0000003f 
+ 00017457  0x00001f34 rtneq  0x00000002 
+ 00017458  0x00001f35 fetch  0x00000002 , 0x0000029d 
+ 00017459  0x00001f36 hstore  0x00000002 , 0x0000805e 
+ 00017460  0x00001f37 branch  0x0000443b 
+ 00017461  0x00001f3a set1  0x00000025 , 0x00000000 
+ 00017462  0x00001f3b bpatch  0x000000f1 , 0x0000403e 
+ 00017463  0x00001f3c fetch  0x00000002 , 0x0000029d 
+ 00017464  0x00001f3d branch  0x00003bf1 , 0x00000034 
+ 00017465  0x00001f3e hstore  0x00000002 , 0x0000805e 
+ 00017466  0x00001f3f branch  0x0000443b 
+ 00017467  0x00001f42 setarg  0x00000000 
+ 00017468  0x00001f43 store  0x00000002 , 0x0000029d 
+ 00017469  0x00001f44 rtn 
+ 00017470  0x00001f47 hfetcht  0x00000002 , 0x00008110 
+ 00017471  0x00001f48 hfetch  0x00000002 , 0x0000805e 
+ 00017472  0x00001f49 isub  0x00000002 , 0x00000011 
+ 00017473  0x00001f4a nbranch  0x00004447 , 0x00000002 
+ 00017474  0x00001f4b hfetcht  0x00000002 , 0x0000805a 
+ 00017475  0x00001f4c hfetch  0x00000002 , 0x0000805c 
+ 00017476  0x00001f4d isub  0x00000002 , 0x0000003f 
+ 00017477  0x00001f4e isub  0x00000011 , 0x00000002 
+ 00017478  0x00001f4f rtn 
+ 00017479  0x00001f51 sub  0x00000011 , 0xffffffff , 0x00000002 
+ 00017480  0x00001f52 rtn 
+ 00017481  0x00001f58 set0  0x00000025 , 0x00000000 
+ 00017482  0x00001f59 bpatch  0x000000cd , 0x00004019 
+ 00017483  0x00001f5a fetch  0x00000001 , 0x00004132 
+ 00017484  0x00001f5b rtnne  0x00000001 
+ 00017485  0x00001f5c call  0x000044a3 
+ 00017486  0x00001f5d call  0x00004494 
+ 00017487  0x00001f5e call  0x000043b0 , 0x00000001 
+ 00017488  0x00001f5f call  0x00004494 
+ 00017489  0x00001f60 call  0x000043b7 , 0x00000001 
+ 00017490  0x00001f61 branch  0x000044e6 
+ 00017491  0x00001f62 rtnmark0  0x00000018 
+ 00017492  0x00001f63 force  0x00000000 , 0x00000007 
+ 00017493  0x00001f64 call  0x00007e53 
+ 00017494  0x00001f65 nrtn  0x00000034 
+ 00017495  0x00001f66 call  0x00004472 
+ 00017496  0x00001f67 call  0x00004494 
+ 00017497  0x00001f68 nrtn  0x00000001 
+ 00017498  0x00001f69 set0  0x00000017 , 0x00000000 
+ 00017499  0x00001f6a force  0x000000da , 0x00000002 
+ 00017500  0x00001f6b setarg  0x00ededdc 
+ 00017501  0x00001f6c call  0x0000433c 
+ 00017502  0x00001f6d setarg  0x000007d0 
+ 00017503  0x00001f6e force  0x00000000 , 0x00000007 
+ 00017504  0x00001f6f branch  0x00007e4c 
+ 00017505  0x00001f73 set0  0x00000025 , 0x00000000 
+ 00017506  0x00001f74 bpatch  0x000000ce , 0x00004019 
+ 00017507  0x00001f75 rtn  0x0000002b 
+ 00017508  0x00001f76 setarg  0x00004aed 
+ 00017509  0x00001f77 store  0x00000002 , 0x00004290 
+ 00017510  0x00001f79 setarg  0x000001a0 
+ 00017511  0x00001f7a store  0x00000002 , 0x000042ac 
+ 00017512  0x00001f7c set0  0x00000025 , 0x00000000 
+ 00017513  0x00001f7d bpatch  0x000000cf , 0x00004019 
+ 00017514  0x00001f7e call  0x00006a0d 
+ 00017515  0x00001f7f setarg  0x00001800 
+ 00017516  0x00001f80 hstore  0x00000002 , 0x00008054 
+ 00017517  0x00001f81 setarg  0x00001bff 
+ 00017518  0x00001f82 hstore  0x00000002 , 0x00008056 
+ 00017519  0x00001f83 setarg  0x00001c00 
+ 00017520  0x00001f84 hstore  0x00000002 , 0x0000805a 
+ 00017521  0x00001f85 call  0x00004489 
+ 00017522  0x00001f87 set0  0x00000025 , 0x00000000 
+ 00017523  0x00001f88 bpatch  0x000000d0 , 0x0000401a 
+ 00017524  0x00001f89 hjam  0x00000000 , 0x00008062 
+ 00017525  0x00001f8a jam  0x00000000 , 0x0000028b 
+ 00017526  0x00001f8b jam  0x00000000 , 0x0000028c 
+ 00017527  0x00001f8c jam  0x00000000 , 0x00000294 
+ 00017528  0x00001f8d setarg  0x00001c00 
+ 00017529  0x00001f8e store  0x00000002 , 0x0000028f 
+ 00017530  0x00001f8f store  0x00000002 , 0x0000028d 
+ 00017531  0x00001f90 hstore  0x00000002 , 0x0000805e 
+ 00017532  0x00001f91 hstore  0x00000002 , 0x00008060 
+ 00017533  0x00001f92 setarg  0x00001800 
+ 00017534  0x00001f93 hstore  0x00000002 , 0x00008058 
+ 00017535  0x00001f94 store  0x00000002 , 0x00000289 
+ 00017536  0x00001f96 set0  0x00000025 , 0x00000000 
+ 00017537  0x00001f97 bpatch  0x000000d1 , 0x0000401a 
+ 00017538  0x00001f98 hfetch  0x00000002 , 0x00008050 
+ 00017539  0x00001f99 set0  0x0000000f , 0x0000003f 
+ 00017540  0x00001f9a hstore  0x00000002 , 0x00008050 
+ 00017541  0x00001f9b call  0x00006909 
+ 00017542  0x00001f9c hjam  0x00000001 , 0x00008043 
+ 00017543  0x00001f9d hjam  0x00000081 , 0x00008062 
+ 00017544  0x00001f9e branch  0x00004497 
+ 00017545  0x00001fa1 setarg  0x00001fff 
+ 00017546  0x00001fa2 hstore  0x00000002 , 0x0000805c 
+ 00017547  0x00001fa3 hfetch  0x00000001 , 0x00008081 
+ 00017548  0x00001fa4 or_into  0x00000007 , 0x0000003f 
+ 00017549  0x00001fa5 hstore  0x00000001 , 0x00008081 
+ 00017550  0x00001fa6 jam  0x000000ff , 0x0000029f 
+ 00017551  0x00001fa7 rtn 
+ 00017552  0x00001faa hfetch  0x00000002 , 0x00008116 
+ 00017553  0x00001fab hstore  0x00000002 , 0x00008058 
+ 00017554  0x00001fac set1  0x0000001b , 0x00000000 
+ 00017555  0x00001fad rtn 
+ 00017556  0x00001fb1 hfetch  0x00000001 , 0x00008062 
+ 00017557  0x00001fb2 isolate1  0x00000003 , 0x0000003f 
+ 00017558  0x00001fb3 rtn 
+ 00017559  0x00001fb6 setarg  0x00004803 
+ 00017560  0x00001fb7 store  0x00000002 , 0x00000295 
+ 00017561  0x00001fb8 store  0x00000002 , 0x00000297 
+ 00017562  0x00001fb9 force  0x00000001 , 0x00000002 
+ 00017563  0x00001fba iadd  0x00000002 , 0x0000003f 
+ 00017564  0x00001fbb iadd  0x00000002 , 0x0000003f 
+ 00017565  0x00001fbc increase  0x00000002 , 0x0000003f 
+ 00017566  0x00001fbd store  0x00000002 , 0x00000299 
+ 00017567  0x00001fbe setarg  0x00000000 
+ 00017568  0x00001fbf store  0x00000001 , 0x0000029c 
+ 00017569  0x00001fc0 store  0x00000001 , 0x0000029b 
+ 00017570  0x00001fc1 rtn 
+ 00017571  0x00001fc4 set0  0x00000025 , 0x00000000 
+ 00017572  0x00001fc5 bpatch  0x000000d2 , 0x0000401a 
+ 00017573  0x00001fc6 hfetch  0x00000001 , 0x0000810c 
+ 00017574  0x00001fc7 iforce  0x00000012 
+ 00017575  0x00001fc8 bbit0  0x00000003 , 0x000044ad 
+ 00017576  0x00001fc9 hfetch  0x00000002 , 0x00008112 
+ 00017577  0x00001fca iforce  0x00000013 
+ 00017578  0x00001fcb arg  0x0000044f , 0x00000002 
+ 00017579  0x00001fcc isub  0x00000002 , 0x0000003e 
+ 00017580  0x00001fcd nrtn  0x00000005 
+ 00017581  0x00001fcf hfetch  0x00000002 , 0x00008058 
+ 00017582  0x00001fd0 iforce  0x00000003 
+ 00017583  0x00001fd1 call  0x00004494 
+ 00017584  0x00001fd2 branch  0x000042e5 , 0x00000001 
+ 00017585  0x00001fd3 branch  0x000043e2 
+ 00017586  0x00001fd6 call  0x00004494 
+ 00017587  0x00001fd7 branch  0x00004371 , 0x00000001 
+ 00017588  0x00001fd8 rtn 
+ 00017589  0x00001fdb hfetcht  0x00000001 , 0x0000810c 
+ 00017590  0x00001fdc isolate1  0x00000006 , 0x00000002 
+ 00017591  0x00001fdd branch  0x000044b5 , 0x00000001 
+ 00017592  0x00001fde hstore  0x00000001 , 0x00008015 
+ 00017593  0x00001fdf rtn 
+ 00017594  0x00001fe3 fetcht  0x00000002 , 0x00000299 
+ 00017595  0x00001fe4 fetch  0x00000002 , 0x00000295 
+ 00017596  0x00001fe5 iforce  0x00000005 
+ 00017597  0x00001fe6 deposit  0x00000003 
+ 00017598  0x00001fe7 istore  0x00000002 , 0x00000005 
+ 00017599  0x00001fe8 deposit  0x00000005 
+ 00017600  0x00001fe9 store  0x00000002 , 0x00000295 
+ 00017601  0x00001fea icompare  0x000000ff , 0x00000002 
+ 00017602  0x00001feb call  0x000044c7 , 0x00000001 
+ 00017603  0x00001fec fetch  0x00000001 , 0x0000029b 
+ 00017604  0x00001fed increase  0x00000001 , 0x0000003f 
+ 00017605  0x00001fee store  0x00000001 , 0x0000029b 
+ 00017606  0x00001fef rtn 
+ 00017607  0x00001ff1 setarg  0x00004803 
+ 00017608  0x00001ff2 store  0x00000002 , 0x00000295 
+ 00017609  0x00001ff3 rtn 
+ 00017610  0x00001ff7 fetch  0x00000001 , 0x0000029b 
+ 00017611  0x00001ff8 rtn  0x00000034 
+ 00017612  0x00001ff9 fetcht  0x00000002 , 0x00000299 
+ 00017613  0x00001ffa fetch  0x00000002 , 0x00000297 
+ 00017614  0x00001ffb iforce  0x00000006 
+ 00017615  0x00001ffc ifetch  0x00000002 , 0x00000006 
+ 00017616  0x00001ffd iforce  0x00000003 
+ 00017617  0x00001ffe deposit  0x00000006 
+ 00017618  0x00001fff store  0x00000002 , 0x00000297 
+ 00017619  0x00002000 icompare  0x000000ff , 0x00000002 
+ 00017620  0x00002001 call  0x000044da , 0x00000001 
+ 00017621  0x00002002 fetch  0x00000001 , 0x0000029b 
+ 00017622  0x00002003 increase  0xffffffff , 0x0000003f 
+ 00017623  0x00002004 store  0x00000001 , 0x0000029b 
+ 00017624  0x00002005 force  0x00000001 , 0x0000003f 
+ 00017625  0x00002006 rtn 
+ 00017626  0x00002008 setarg  0x00004803 
+ 00017627  0x00002009 store  0x00000002 , 0x00000297 
+ 00017628  0x0000200a rtn 
+ 00017629  0x0000200d set0  0x00000025 , 0x00000000 
+ 00017630  0x0000200e bpatch  0x000000d3 , 0x0000401a 
+ 00017631  0x0000200f fetch  0x00000001 , 0x0000029b 
+ 00017632  0x00002010 sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00017633  0x00002011 branch  0x000044e4 , 0x00000002 
+ 00017634  0x00002012 enable  0x00000028 
+ 00017635  0x00002013 branch  0x000044e6 
+ 00017636  0x00002015 call  0x000044b2 
+ 00017637  0x00002016 call  0x000044ba 
+ 00017638  0x00002018 set0  0x00000025 , 0x00000000 
+ 00017639  0x00002019 bpatch  0x000000d4 , 0x0000401a 
+ 00017640  0x0000201a rtnmark1  0x00000002 
+ 00017641  0x0000201b call  0x000044ca 
+ 00017642  0x0000201c rtn  0x00000034 
+ 00017643  0x0000201d ifetcht  0x00000001 , 0x00000003 
+ 00017644  0x0000201e call  0x000032f7 
+ 00017645  0x0000201f nrtn  0x00000005 
+ 00017646  0x00002020 ifetch  0x00000001 , 0x00000003 
+ 00017647  0x00002021 rshift4  0x0000003f , 0x0000003f 
+ 00017648  0x00002022 and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00017649  0x00002023 nbranch  0x000044f3 , 0x00000034 
+ 00017650  0x00002024 set1  0x00000001 , 0x0000003f 
+ 00017651  0x00002026 set1  0x00000002 , 0x0000003f 
+ 00017652  0x00002027 store  0x00000001 , 0x00000090 
+ 00017653  0x00002028 ifetch  0x00000002 , 0x00000003 
+ 00017654  0x00002029 store  0x00000002 , 0x00000091 
+ 00017655  0x0000202a deposit  0x00000003 
+ 00017656  0x0000202b store  0x00000002 , 0x00000179 
+ 00017657  0x0000202c set1  0x00000002 , 0x00000000 
+ 00017658  0x0000202d bmark0  0x00000009 , 0x00004502 
+ 00017659  0x0000202e fetch  0x00000001 , 0x00000046 
+ 00017660  0x0000202f isub  0x00000002 , 0x0000003e 
+ 00017661  0x00002030 nbranch  0x00004502 , 0x00000005 
+ 00017662  0x00002031 fetch  0x00000001 , 0x0000004b 
+ 00017663  0x00002032 set1  0x00000006 , 0x0000003f 
+ 00017664  0x00002033 store  0x00000001 , 0x0000004b 
+ 00017665  0x00002034 rtn 
+ 00017666  0x00002037 increase  0x0000001b , 0x00000011 
+ 00017667  0x00002038 ifetch  0x00000001 , 0x00000011 
+ 00017668  0x00002039 set1  0x00000006 , 0x0000003f 
+ 00017669  0x0000203a istore  0x00000001 , 0x00000011 
+ 00017670  0x0000203b rtn 
+ 00017671  0x00002041 set0  0x00000025 , 0x00000000 
+ 00017672  0x00002042 bpatch  0x000000d5 , 0x0000401a 
+ 00017673  0x00002043 fetch  0x00000001 , 0x00004272 
+ 00017674  0x00002044 branch  0x0000450d , 0x00000034 
+ 00017675  0x00002045 enable  0x00000028 
+ 00017676  0x00002046 rtn 
+ 00017677  0x00002048 call  0x000044b2 
+ 00017678  0x00002049 ifetch  0x00000002 , 0x00000003 
+ 00017679  0x0000204a iforce  0x00000030 
+ 00017680  0x0000204b iforce  0x00000007 
+ 00017681  0x0000204c ifetch  0x00000001 , 0x00000003 
+ 00017682  0x0000204d iforce  0x00000002 
+ 00017683  0x0000204e rshift2  0x00000030 , 0x0000003f 
+ 00017684  0x0000204f rshift8  0x0000003f , 0x0000003f 
+ 00017685  0x00002050 beq  0x00000001 , 0x0000451e 
+ 00017686  0x00002051 beq  0x00000002 , 0x0000453d 
+ 00017687  0x00002052 beq  0x00000003 , 0x0000454f 
+ 00017688  0x00002053 beq  0x00000004 , 0x00004569 
+ 00017689  0x00002054 beq  0x00000005 , 0x00004572 
+ 00017690  0x00002055 beq  0x00000006 , 0x0000457c 
+ 00017691  0x00002056 beq  0x0000003f , 0x00004585 
+ 00017692  0x00002057 beq  0x00000008 , 0x000045e0 
+ 00017693  0x00002058 rtn 
+ 00017694  0x0000205c set0  0x00000025 , 0x00000000 
+ 00017695  0x0000205d bpatch  0x000000d6 , 0x0000401a 
+ 00017696  0x0000205e deposit  0x00000007 
+ 00017697  0x0000205f beq  0x00000001 , 0x00004634 
+ 00017698  0x00002060 beq  0x00000002 , 0x00004643 
+ 00017699  0x00002061 beq  0x00000003 , 0x00004949 
+ 00017700  0x00002062 beq  0x00000004 , 0x00004949 
+ 00017701  0x00002063 beq  0x00000005 , 0x00004645 
+ 00017702  0x00002064 beq  0x00000006 , 0x0000464f 
+ 00017703  0x00002065 beq  0x00000007 , 0x00004949 
+ 00017704  0x00002066 beq  0x00000008 , 0x0000465d 
+ 00017705  0x00002067 beq  0x00000009 , 0x00004739 
+ 00017706  0x00002068 beq  0x0000000a , 0x0000473f 
+ 00017707  0x00002069 beq  0x0000000b , 0x00004664 
+ 00017708  0x0000206a beq  0x0000000c , 0x0000466a 
+ 00017709  0x0000206b beq  0x0000000d , 0x0000466d 
+ 00017710  0x0000206c beq  0x0000000e , 0x00004675 
+ 00017711  0x0000206d beq  0x0000000f , 0x00004743 
+ 00017712  0x0000206e beq  0x00000011 , 0x00004688 
+ 00017713  0x0000206f beq  0x00000013 , 0x0000468b 
+ 00017714  0x00002070 beq  0x00000015 , 0x00004949 
+ 00017715  0x00002071 beq  0x00000017 , 0x00004949 
+ 00017716  0x00002072 beq  0x00000019 , 0x00004690 
+ 00017717  0x00002073 beq  0x0000001b , 0x0000469b 
+ 00017718  0x00002074 beq  0x0000001c , 0x00004696 
+ 00017719  0x00002075 beq  0x0000001d , 0x000046a1 
+ 00017720  0x00002076 beq  0x0000001f , 0x000046a7 
+ 00017721  0x00002077 beq  0x00000028 , 0x000046ab 
+ 00017722  0x00002078 beq  0x00000029 , 0x000046b6 
+ 00017723  0x00002079 beq  0x0000002b , 0x0000467b 
+ 00017724  0x0000207a branch  0x0000474d 
+ 00017725  0x0000207e set0  0x00000025 , 0x00000000 
+ 00017726  0x0000207f bpatch  0x000000d7 , 0x0000401a 
+ 00017727  0x00002080 deposit  0x00000007 
+ 00017728  0x00002081 beq  0x00000009 , 0x000046cc 
+ 00017729  0x00002082 beq  0x0000000d , 0x000046d7 
+ 00017730  0x00002083 beq  0x00000001 , 0x00004949 
+ 00017731  0x00002084 beq  0x00000003 , 0x0000474f 
+ 00017732  0x00002085 beq  0x00000004 , 0x0000475a 
+ 00017733  0x00002086 beq  0x00000005 , 0x00004949 
+ 00017734  0x00002087 beq  0x00000006 , 0x00004949 
+ 00017735  0x00002088 beq  0x00000007 , 0x00004949 
+ 00017736  0x00002089 beq  0x0000000b , 0x00004760 
+ 00017737  0x0000208a beq  0x0000000c , 0x00004949 
+ 00017738  0x0000208b beq  0x0000000e , 0x00004949 
+ 00017739  0x0000208c beq  0x0000000f , 0x00004949 
+ 00017740  0x0000208d beq  0x00000010 , 0x00004949 
+ 00017741  0x0000208e beq  0x00000011 , 0x0000475f 
+ 00017742  0x0000208f branch  0x0000474d 
+ 00017743  0x00002092 set0  0x00000025 , 0x00000000 
+ 00017744  0x00002093 bpatch  0x000000d8 , 0x0000401b 
+ 00017745  0x00002094 deposit  0x00000007 
+ 00017746  0x00002095 beq  0x00000001 , 0x00004725 
+ 00017747  0x00002096 beq  0x00000003 , 0x00004949 
+ 00017748  0x00002097 beq  0x00000012 , 0x000046da 
+ 00017749  0x00002098 beq  0x00000013 , 0x000046c2 
+ 00017750  0x00002099 beq  0x00000014 , 0x000046b8 
+ 00017751  0x0000209a beq  0x00000018 , 0x000046db 
+ 00017752  0x0000209b beq  0x00000019 , 0x00004705 
+ 00017753  0x0000209c beq  0x0000001a , 0x000046de 
+ 00017754  0x0000209d beq  0x0000001c , 0x000046e1 
+ 00017755  0x0000209e beq  0x0000001e , 0x000046e6 
+ 00017756  0x0000209f beq  0x00000020 , 0x000046ec 
+ 00017757  0x000020a0 beq  0x00000022 , 0x000046eb 
+ 00017758  0x000020a1 beq  0x00000024 , 0x000046ef 
+ 00017759  0x000020a2 beq  0x00000026 , 0x00004949 
+ 00017760  0x000020a3 beq  0x00000031 , 0x00004949 
+ 00017761  0x000020a4 beq  0x00000033 , 0x00004949 
+ 00017762  0x000020a5 beq  0x00000035 , 0x0000462e 
+ 00017763  0x000020a6 beq  0x00000043 , 0x00004949 
+ 00017764  0x000020a7 beq  0x00000045 , 0x00004949 
+ 00017765  0x000020a8 beq  0x00000047 , 0x00004949 
+ 00017766  0x000020a9 beq  0x00000051 , 0x000046f2 
+ 00017767  0x000020aa beq  0x00000056 , 0x00004701 
+ 00017768  0x000020ab branch  0x0000474d 
+ 00017769  0x000020ae set0  0x00000025 , 0x00000000 
+ 00017770  0x000020af bpatch  0x000000d9 , 0x0000401b 
+ 00017771  0x000020b0 deposit  0x00000007 
+ 00017772  0x000020b1 beq  0x00000001 , 0x0000470a 
+ 00017773  0x000020b2 beq  0x00000003 , 0x0000470f 
+ 00017774  0x000020b3 beq  0x00000004 , 0x00004714 
+ 00017775  0x000020b4 beq  0x00000005 , 0x0000471b 
+ 00017776  0x000020b5 beq  0x00000009 , 0x00004720 
+ 00017777  0x000020b6 branch  0x0000474d 
+ 00017778  0x000020b9 set0  0x00000025 , 0x00000000 
+ 00017779  0x000020ba bpatch  0x000000da , 0x0000401b 
+ 00017780  0x000020bb deposit  0x00000007 
+ 00017781  0x000020bc beq  0x00000001 , 0x00004949 
+ 00017782  0x000020bd beq  0x00000002 , 0x00004726 
+ 00017783  0x000020be beq  0x00000003 , 0x00004727 
+ 00017784  0x000020bf beq  0x00000005 , 0x0000472d 
+ 00017785  0x000020c0 beq  0x00000006 , 0x00004733 
+ 00017786  0x000020c1 beq  0x00000007 , 0x00004736 
+ 00017787  0x000020c2 branch  0x0000474d 
+ 00017788  0x000020c5 set0  0x00000025 , 0x00000000 
+ 00017789  0x000020c6 bpatch  0x000000db , 0x0000401b 
+ 00017790  0x000020c7 deposit  0x00000007 
+ 00017791  0x000020c8 beq  0x00000001 , 0x00004949 
+ 00017792  0x000020c9 beq  0x00000002 , 0x00004949 
+ 00017793  0x000020ca beq  0x00000003 , 0x00004949 
+ 00017794  0x000020cb beq  0x00000004 , 0x00004949 
+ 00017795  0x000020cc branch  0x0000474d 
+ 00017796  0x000020cd rtn 
+ 00017797  0x000020d0 set0  0x00000025 , 0x00000000 
+ 00017798  0x000020d1 bpatch  0x000000dc , 0x0000401b 
+ 00017799  0x000020d2 deposit  0x00000007 
+ 00017800  0x000020d3 beq  0x00000000 , 0x00004949 
+ 00017801  0x000020d4 beq  0x00000001 , 0x0000459d 
+ 00017802  0x000020d5 beq  0x00000002 , 0x000045a2 
+ 00017803  0x000020d6 beq  0x00000003 , 0x000045a6 
+ 00017804  0x000020d7 beq  0x00000004 , 0x000045b9 
+ 00017805  0x000020d8 beq  0x00000005 , 0x00004949 
+ 00017806  0x000020d9 beq  0x00000006 , 0x000045ca 
+ 00017807  0x000020da beq  0x00000007 , 0x00004593 
+ 00017808  0x000020dc beq  0x00000010 , 0x000045cd 
+ 00017809  0x000020dd beq  0x00000011 , 0x000045d5 
+ 00017810  0x000020de branch  0x00004949 
+ 00017811  0x000020e1 call  0x00004949 
+ 00017812  0x000020e2 call  0x00007f68 
+ 00017813  0x000020e3 call  0x00006a68 
+ 00017814  0x000020e5 call  0x00003f5c 
+ 00017815  0x000020e6 call  0x00003f66 
+ 00017816  0x000020e7 branch  0x00006a7d 
+ 00017817  0x000020ea jam  0x00000000 , 0x000042ae 
+ 00017818  0x000020eb call  0x00003f5a 
+ 00017819  0x000020ec call  0x00004468 
+ 00017820  0x000020ed branch  0x00003f68 
+ 00017821  0x000020f0 call  0x0000496e 
+ 00017822  0x000020f1 hfetch  0x00000002 , 0x00008000 
+ 00017823  0x000020f2 istore  0x00000002 , 0x0000000a 
+ 00017824  0x000020f3 force  0x00000006 , 0x00000039 
+ 00017825  0x000020f4 branch  0x0000494c 
+ 00017826  0x000020f7 ifetch  0x00000002 , 0x00000003 
+ 00017827  0x000020f8 store  0x00000002 , 0x000042ac 
+ 00017828  0x000020f9 hstore  0x00000002 , 0x00008052 
+ 00017829  0x000020fa rtn 
+ 00017830  0x000020fe ifetch  0x00000001 , 0x00000003 
+ 00017831  0x000020ff copy  0x0000003f , 0x00000002 
+ 00017832  0x00002100 hstore  0x00000001 , 0x00008024 
+ 00017833  0x00002101 ifetch  0x00000001 , 0x00000003 
+ 00017834  0x00002102 iadd  0x00000002 , 0x00000002 
+ 00017835  0x00002103 set1  0x00000007 , 0x0000003f 
+ 00017836  0x00002104 hstore  0x00000001 , 0x00008023 
+ 00017837  0x00002105 ifetch  0x00000001 , 0x00000003 
+ 00017838  0x00002106 iadd  0x00000002 , 0x00000002 
+ 00017839  0x00002107 copy  0x0000003f , 0x00000039 
+ 00017840  0x00002109 ifetch  0x00000001 , 0x00000003 
+ 00017841  0x0000210a hstore  0x00000001 , 0x00008025 
+ 00017842  0x0000210b iadd  0x00000002 , 0x00000002 
+ 00017843  0x0000210c loop  0x000045b0 
+ 00017844  0x0000210d and  0x00000002 , 0x000000ff , 0x00000002 
+ 00017845  0x0000210e ifetch  0x00000001 , 0x00000003 
+ 00017846  0x0000210f isub  0x00000002 , 0x0000003e 
+ 00017847  0x00002110 nbranch  0x000045c8 , 0x00000005 
+ 00017848  0x00002111 branch  0x00004949 
+ 00017849  0x00002114 arg  0x00000020 , 0x00000039 
+ 00017850  0x00002115 arg  0x00004000 , 0x00000005 
+ 00017851  0x00002116 arg  0x00000000 , 0x00000002 
+ 00017852  0x00002118 ifetch  0x00000001 , 0x00000003 
+ 00017853  0x00002119 istore  0x00000001 , 0x00000005 
+ 00017854  0x0000211a iadd  0x00000002 , 0x00000002 
+ 00017855  0x0000211b loop  0x000045bc 
+ 00017856  0x0000211c and  0x00000002 , 0x000000ff , 0x00000002 
+ 00017857  0x0000211d ifetch  0x00000001 , 0x00000003 
+ 00017858  0x0000211e isub  0x00000002 , 0x0000003e 
+ 00017859  0x0000211f nbranch  0x000045c8 , 0x00000005 
+ 00017860  0x00002120 hjam  0x00000000 , 0x00008023 
+ 00017861  0x00002121 call  0x00004949 
+ 00017862  0x00002122 call  0x0000440e 
+ 00017863  0x00002123 branch  0x00003001 
+ 00017864  0x00002126 hjam  0x00000000 , 0x00008023 
+ 00017865  0x00002127 branch  0x00003000 
+ 00017866  0x0000212a ifetch  0x00000006 , 0x00000003 
+ 00017867  0x0000212b store  0x00000006 , 0x00004140 
+ 00017868  0x0000212c branch  0x00004949 
+ 00017869  0x00002130 ifetch  0x00000001 , 0x00000003 
+ 00017870  0x00002131 store  0x00000001 , 0x000002c1 
+ 00017871  0x00002132 copy  0x0000003f , 0x00000039 
+ 00017872  0x00002133 ifetch  0x00000002 , 0x00000003 
+ 00017873  0x00002134 store  0x00000002 , 0x000002c2 
+ 00017874  0x00002135 copy  0x0000003f , 0x00000005 
+ 00017875  0x00002136 call  0x0000497c 
+ 00017876  0x00002137 branch  0x00004949 
+ 00017877  0x0000213b ifetch  0x00000001 , 0x00000003 
+ 00017878  0x0000213c store  0x00000001 , 0x000002c1 
+ 00017879  0x0000213d copy  0x0000003f , 0x00000039 
+ 00017880  0x0000213e ifetch  0x00000002 , 0x00000003 
+ 00017881  0x0000213f store  0x00000002 , 0x000002c2 
+ 00017882  0x00002140 arg  0x00001000 , 0x00000005 
+ 00017883  0x00002141 call  0x0000497c 
+ 00017884  0x00002142 fetcht  0x00000001 , 0x000002c1 
+ 00017885  0x00002143 arg  0x00001000 , 0x00000011 
+ 00017886  0x00002144 fetch  0x00000002 , 0x000002c2 
+ 00017887  0x00002145 branch  0x00006842 
+ 00017888  0x0000214c set0  0x00000025 , 0x00000000 
+ 00017889  0x0000214d bpatch  0x000000dd , 0x0000401b 
+ 00017890  0x0000214e deposit  0x00000007 
+ 00017891  0x0000214f beq  0x00000001 , 0x00004949 
+ 00017892  0x00002150 beq  0x00000002 , 0x000045f3 
+ 00017893  0x00002151 beq  0x00000003 , 0x000045f8 
+ 00017894  0x00002152 beq  0x00000006 , 0x000045ff 
+ 00017895  0x00002153 beq  0x00000008 , 0x00004603 
+ 00017896  0x00002154 beq  0x00000009 , 0x00004607 
+ 00017897  0x00002155 beq  0x0000000a , 0x0000460b 
+ 00017898  0x00002156 beq  0x0000000b , 0x0000460e 
+ 00017899  0x00002157 beq  0x0000000c , 0x00004611 
+ 00017900  0x00002158 beq  0x0000000d , 0x00004614 
+ 00017901  0x00002159 beq  0x0000000e , 0x00004626 
+ 00017902  0x0000215a beq  0x00000015 , 0x00004627 
+ 00017903  0x0000215b beq  0x00000016 , 0x00004933 
+ 00017904  0x0000215c beq  0x00000013 , 0x00004949 
+ 00017905  0x0000215d branch  0x0000474d 
+ 00017906  0x0000215e rtn 
+ 00017907  0x00002160 call  0x0000496e 
+ 00017908  0x00002161 setarg  0x00000000 
+ 00017909  0x00002162 istore  0x00000003 , 0x0000000a 
+ 00017910  0x00002163 force  0x00000007 , 0x00000039 
+ 00017911  0x00002164 branch  0x0000494c 
+ 00017912  0x00002167 call  0x0000496e 
+ 00017913  0x00002168 setarg  0x00000001 
+ 00017914  0x00002169 istore  0x00000002 , 0x0000000a 
+ 00017915  0x0000216a setarg  0x00000000 
+ 00017916  0x0000216b istore  0x00000006 , 0x0000000a 
+ 00017917  0x0000216c force  0x0000000c , 0x00000039 
+ 00017918  0x0000216d branch  0x0000494c 
+ 00017919  0x00002170 arg  0x0000000f , 0x00000039 
+ 00017920  0x00002171 arg  0x000044d7 , 0x00000005 
+ 00017921  0x00002172 call  0x0000497c 
+ 00017922  0x00002173 branch  0x00004949 
+ 00017923  0x00002176 arg  0x00000020 , 0x00000039 
+ 00017924  0x00002177 arg  0x000043d9 , 0x00000005 
+ 00017925  0x00002178 call  0x0000497c 
+ 00017926  0x00002179 branch  0x00004949 
+ 00017927  0x0000217c arg  0x00000020 , 0x00000039 
+ 00017928  0x0000217d arg  0x000043f9 , 0x00000005 
+ 00017929  0x0000217e call  0x0000497c 
+ 00017930  0x0000217f branch  0x00004949 
+ 00017931  0x00002182 ifetch  0x00000001 , 0x00000003 
+ 00017932  0x00002183 store  0x00000001 , 0x000043d8 
+ 00017933  0x00002184 branch  0x00004949 
+ 00017934  0x00002187 ifetch  0x00000007 , 0x00000003 
+ 00017935  0x00002188 store  0x00000007 , 0x000044f6 
+ 00017936  0x00002189 branch  0x00004949 
+ 00017937  0x0000218c ifetch  0x00000001 , 0x00000003 
+ 00017938  0x0000218d store  0x00000001 , 0x000043d2 
+ 00017939  0x0000218e branch  0x00004949 
+ 00017940  0x00002191 ifetch  0x00000004 , 0x00000003 
+ 00017941  0x00002192 store  0x00000004 , 0x000043d3 
+ 00017942  0x00002193 ifetch  0x00000001 , 0x00000003 
+ 00017943  0x00002194 store  0x00000001 , 0x000044f8 
+ 00017944  0x00002195 arg  0x00000014 , 0x00000039 
+ 00017945  0x00002196 arg  0x000044e6 , 0x00000005 
+ 00017946  0x00002197 call  0x0000497c 
+ 00017947  0x00002198 jam  0x00000001 , 0x000043d2 
+ 00017948  0x00002199 fetch  0x00000001 , 0x000044ed 
+ 00017949  0x0000219a store  0x00000001 , 0x000044f7 
+ 00017950  0x0000219b fetch  0x00000002 , 0x000044f0 
+ 00017951  0x0000219c store  0x00000002 , 0x000043d0 
+ 00017952  0x0000219d fetch  0x00000002 , 0x000044f2 
+ 00017953  0x0000219e store  0x00000002 , 0x000003ed 
+ 00017954  0x0000219f fetch  0x00000002 , 0x000044f4 
+ 00017955  0x000021a0 store  0x00000002 , 0x000003ef 
+ 00017956  0x000021a1 jam  0x0000001b , 0x00004272 
+ 00017957  0x000021a2 branch  0x00004933 
+ 00017958  0x000021a6 branch  0x00004949 
+ 00017959  0x000021a9 call  0x0000496e 
+ 00017960  0x000021aa ifetch  0x00000002 , 0x00000003 
+ 00017961  0x000021ab istore  0x00000002 , 0x0000000a 
+ 00017962  0x000021ac setarg  0x001fffff 
+ 00017963  0x000021ad istore  0x00000005 , 0x0000000a 
+ 00017964  0x000021ae force  0x0000000b , 0x00000039 
+ 00017965  0x000021af branch  0x0000494c 
+ 00017966  0x000021b5 ifetch  0x00000003 , 0x00000003 
+ 00017967  0x000021b6 ifetcht  0x00000003 , 0x00000003 
+ 00017968  0x000021b7 fetch  0x00000002 , 0x00004800 
+ 00017969  0x000021b8 iadd  0x00000002 , 0x0000003f 
+ 00017970  0x000021b9 store  0x00000002 , 0x00004800 
+ 00017971  0x000021ba rtn 
+ 00017972  0x000021bd ifetch  0x00000003 , 0x00000003 
+ 00017973  0x000021be store  0x00000003 , 0x00004147 
+ 00017974  0x000021c0 jam  0x00000001 , 0x00004272 
+ 00017975  0x000021c1 ifetch  0x00000001 , 0x00000003 
+ 00017976  0x000021c2 arg  0x00000640 , 0x00000002 
+ 00017977  0x000021c3 imul32  0x00000002 , 0x0000003f 
+ 00017978  0x000021c4 arg  0x0000ffff , 0x00000002 
+ 00017979  0x000021c5 isub  0x00000002 , 0x0000003e 
+ 00017980  0x000021c6 nbranch  0x0000463e , 0x00000002 
+ 00017981  0x000021c7 deposit  0x00000002 
+ 00017982  0x000021c9 force  0x00000002 , 0x00000007 
+ 00017983  0x000021ca call  0x00007e4c 
+ 00017984  0x000021cb fetch  0x00000001 , 0x000042a4 
+ 00017985  0x000021cc bbit1  0x00000000 , 0x0000428c 
+ 00017986  0x000021cd branch  0x00004933 
+ 00017987  0x000021d1 jam  0x00000002 , 0x00004272 
+ 00017988  0x000021d2 branch  0x00004949 
+ 00017989  0x000021d5 call  0x00004763 
+ 00017990  0x000021d6 ifetch  0x00000002 , 0x00000003 
+ 00017991  0x000021d7 store  0x00000002 , 0x00000275 
+ 00017992  0x000021d8 ifetch  0x00000002 , 0x00000003 
+ 00017993  0x000021d9 store  0x00000001 , 0x000000f3 
+ 00017994  0x000021da call  0x00004776 
+ 00017995  0x000021db ifetch  0x00000001 , 0x00000003 
+ 00017996  0x000021dc store  0x00000001 , 0x00004802 
+ 00017997  0x000021dd jam  0x00000005 , 0x00004272 
+ 00017998  0x000021de branch  0x00004933 
+ 00017999  0x000021e2 jam  0x00000006 , 0x00004272 
+ 00018000  0x000021e3 ifetch  0x00000002 , 0x00000003 
+ 00018001  0x000021e4 store  0x00000001 , 0x00004273 
+ 00018002  0x000021e5 ifetch  0x00000001 , 0x00000003 
+ 00018003  0x000021e6 store  0x00000001 , 0x00000446 
+ 00018004  0x000021e7 jam  0x00000016 , 0x000002c0 
+ 00018005  0x000021e8 fetch  0x00000001 , 0x00004273 
+ 00018006  0x000021e9 fetcht  0x00000001 , 0x000000ad 
+ 00018007  0x000021ea isub  0x00000002 , 0x0000003e 
+ 00018008  0x000021eb nbranch  0x00004933 , 0x00000005 
+ 00018009  0x000021ec jam  0x00000011 , 0x00004272 
+ 00018010  0x000021ed fetch  0x00000001 , 0x000000ac 
+ 00018011  0x000021ee store  0x00000001 , 0x00004273 
+ 00018012  0x000021ef branch  0x00004933 
+ 00018013  0x000021f2 call  0x0000496e 
+ 00018014  0x000021f3 call  0x00004965 
+ 00018015  0x000021f4 force  0x0000000a , 0x00000039 
+ 00018016  0x000021f5 call  0x0000494c 
+ 00018017  0x000021f7 jam  0x0000001a , 0x00004272 
+ 00018018  0x000021f8 force  0x00000002 , 0x00000002 
+ 00018019  0x000021f9 branch  0x00004826 
+ 00018020  0x000021fc call  0x00004763 
+ 00018021  0x000021fd arg  0x00004262 , 0x00000005 
+ 00018022  0x000021fe force  0x00000010 , 0x00000039 
+ 00018023  0x000021ff call  0x0000497c 
+ 00018024  0x00002200 jam  0x0000000b , 0x00004272 
+ 00018025  0x00002201 branch  0x00004677 
+ 00018026  0x00002204 call  0x00004763 
+ 00018027  0x00002205 jam  0x0000000c , 0x00004272 
+ 00018028  0x00002206 branch  0x00004677 
+ 00018029  0x00002209 call  0x00004763 
+ 00018030  0x0000220a ifetch  0x00000001 , 0x00000003 
+ 00018031  0x0000220b store  0x00000001 , 0x0000054f 
+ 00018032  0x0000220c iforce  0x00000039 
+ 00018033  0x0000220d arg  0x00000550 , 0x00000005 
+ 00018034  0x0000220e call  0x0000497c 
+ 00018035  0x0000220f jam  0x00000009 , 0x00004272 
+ 00018036  0x00002210 branch  0x00004677 
+ 00018037  0x00002213 call  0x00004763 
+ 00018038  0x00002214 jam  0x0000000a , 0x00004272 
+ 00018039  0x00002216 call  0x0000496e 
+ 00018040  0x00002217 call  0x00004965 
+ 00018041  0x00002218 force  0x0000000a , 0x00000039 
+ 00018042  0x00002219 branch  0x0000494c 
+ 00018043  0x0000221d increase  0x00000006 , 0x00000003 
+ 00018044  0x0000221e ifetch  0x00000003 , 0x00000003 
+ 00018045  0x0000221f store  0x00000003 , 0x000007e6 
+ 00018046  0x00002220 fetch  0x00000001 , 0x000007db 
+ 00018047  0x00002221 beq  0x00000013 , 0x00004683 
+ 00018048  0x00002222 beq  0x00000003 , 0x00004683 
+ 00018049  0x00002223 jam  0x00000016 , 0x00004272 
+ 00018050  0x00002224 branch  0x00004684 
+ 00018051  0x00002226 jam  0x00000001 , 0x000007dd 
+ 00018052  0x00002228 call  0x0000496e 
+ 00018053  0x00002229 call  0x00004965 
+ 00018054  0x0000222a force  0x0000000a , 0x00000039 
+ 00018055  0x0000222b branch  0x0000494c 
+ 00018056  0x0000222f call  0x00004766 
+ 00018057  0x00002230 jam  0x0000000d , 0x00004272 
+ 00018058  0x00002231 branch  0x00004933 
+ 00018059  0x00002234 call  0x00004766 
+ 00018060  0x00002235 ifetch  0x00000001 , 0x00000003 
+ 00018061  0x00002236 increase  0x0000000e , 0x0000003f 
+ 00018062  0x00002237 store  0x00000001 , 0x00004272 
+ 00018063  0x00002238 branch  0x00004933 
+ 00018064  0x0000223b call  0x00004763 
+ 00018065  0x0000223c ifetch  0x00000002 , 0x00000003 
+ 00018066  0x0000223d store  0x00000001 , 0x000000f3 
+ 00018067  0x0000223e call  0x00004776 
+ 00018068  0x0000223f jam  0x00000003 , 0x00004272 
+ 00018069  0x00002240 branch  0x00004933 
+ 00018070  0x00002243 ifetch  0x00000002 , 0x00000003 
+ 00018071  0x00002244 ifetch  0x00000001 , 0x00000003 
+ 00018072  0x00002245 store  0x00000001 , 0x00000449 
+ 00018073  0x00002246 jam  0x00000015 , 0x00004272 
+ 00018074  0x00002247 branch  0x00004933 
+ 00018075  0x0000224b fetch  0x00000001 , 0x00000046 
+ 00018076  0x0000224c force  0x00000002 , 0x00000011 
+ 00018077  0x0000224d branch  0x0000493d , 0x00000034 
+ 00018078  0x0000224e call  0x00004766 
+ 00018079  0x0000224f jam  0x00000004 , 0x00004272 
+ 00018080  0x00002250 branch  0x00004933 
+ 00018081  0x00002255 fetch  0x00000001 , 0x00000046 
+ 00018082  0x00002256 force  0x00000002 , 0x00000011 
+ 00018083  0x00002257 branch  0x0000493d , 0x00000034 
+ 00018084  0x00002258 call  0x00004766 
+ 00018085  0x00002259 jam  0x00000014 , 0x00004272 
+ 00018086  0x0000225a branch  0x00004933 
+ 00018087  0x0000225e call  0x0000476e 
+ 00018088  0x0000225f force  0x0000001c , 0x00000007 
+ 00018089  0x00002260 force  0x00000005 , 0x00000039 
+ 00018090  0x00002261 branch  0x00004952 
+ 00018091  0x00002264 call  0x00004766 
+ 00018092  0x00002265 increase  0x0000000a , 0x00000003 
+ 00018093  0x00002266 ifetch  0x00000002 , 0x00000003 
+ 00018094  0x00002267 store  0x00000002 , 0x00000281 
+ 00018095  0x00002268 ifetch  0x00000001 , 0x00000003 
+ 00018096  0x00002269 store  0x00000001 , 0x00000283 
+ 00018097  0x0000226a ifetch  0x00000002 , 0x00000003 
+ 00018098  0x0000226b store  0x00000002 , 0x00000284 
+ 00018099  0x0000226c jam  0x00000002 , 0x000000ab 
+ 00018100  0x0000226d jam  0x00000010 , 0x00004272 
+ 00018101  0x0000226e branch  0x00004933 
+ 00018102  0x00002271 jam  0x0000001c , 0x00004272 
+ 00018103  0x00002272 branch  0x00004933 
+ 00018104  0x00002277 call  0x0000496e 
+ 00018105  0x00002278 arg  0x00004703 , 0x00000006 
+ 00018106  0x00002279 sub  0x00000006 , 0x000000ff , 0x00000039 
+ 00018107  0x0000227a call  0x00004976 
+ 00018108  0x0000227b force  0x00000000 , 0x0000003f 
+ 00018109  0x0000227c sub  0x00000006 , 0x00004703 , 0x00000039 
+ 00018110  0x0000227d increase  0x000000f8 , 0x00000039 
+ 00018111  0x0000227e call  0x00004982 
+ 00018112  0x0000227f force  0x000000fc , 0x00000039 
+ 00018113  0x00002280 branch  0x0000494c 
+ 00018114  0x00002283 arg  0x00004703 , 0x00000005 
+ 00018115  0x00002284 sub  0x00000005 , 0x000000ff , 0x00000039 
+ 00018116  0x00002286 ifetch  0x00000001 , 0x00000003 
+ 00018117  0x00002287 istore  0x00000001 , 0x00000005 
+ 00018118  0x00002288 branch  0x000046c8 , 0x00000034 
+ 00018119  0x00002289 loop  0x000046c4 
+ 00018120  0x0000228b sub  0x00000005 , 0x00004703 , 0x0000003f 
+ 00018121  0x0000228c sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00018122  0x0000228d store  0x00000001 , 0x00004702 
+ 00018123  0x0000228e branch  0x00004949 
+ 00018124  0x00002291 call  0x0000496e 
+ 00018125  0x00002292 call  0x0000496b 
+ 00018126  0x00002293 force  0x00000000 , 0x0000003f 
+ 00018127  0x00002294 nsetflag  0x00000029 , 0x00000000 , 0x0000003f 
+ 00018128  0x00002295 istore  0x00000001 , 0x0000000a 
+ 00018129  0x00002296 force  0x00000007 , 0x00000039 
+ 00018130  0x00002297 arg  0x00000809 , 0x00000030 
+ 00018131  0x00002298 call  0x0000494c 
+ 00018132  0x00002299 branch  0x000049bc 
+ 00018133  0x0000229a jam  0x00000017 , 0x00004272 
+ 00018134  0x0000229b rtn 
+ 00018135  0x0000229f call  0x00004769 
+ 00018136  0x000022a0 force  0x00000006 , 0x00000039 
+ 00018137  0x000022a1 branch  0x0000494c 
+ 00018138  0x000022a5 branch  0x00004949 
+ 00018139  0x000022a8 ifetch  0x00000002 , 0x00000003 
+ 00018140  0x000022a9 store  0x00000002 , 0x00004159 
+ 00018141  0x000022aa branch  0x00004949 
+ 00018142  0x000022ae ifetch  0x00000001 , 0x00000003 
+ 00018143  0x000022af store  0x00000001 , 0x00004133 
+ 00018144  0x000022b0 branch  0x00004949 
+ 00018145  0x000022b3 ifetch  0x00000002 , 0x00000003 
+ 00018146  0x000022b4 store  0x00000002 , 0x00004153 
+ 00018147  0x000022b5 ifetch  0x00000002 , 0x00000003 
+ 00018148  0x000022b6 store  0x00000002 , 0x00004151 
+ 00018149  0x000022b7 branch  0x00004949 
+ 00018150  0x000022ba ifetch  0x00000002 , 0x00000003 
+ 00018151  0x000022bb store  0x00000002 , 0x0000414f 
+ 00018152  0x000022bc ifetch  0x00000002 , 0x00000003 
+ 00018153  0x000022bd store  0x00000002 , 0x0000414d 
+ 00018154  0x000022be branch  0x00004949 
+ 00018155  0x000022c1 branch  0x00004949 
+ 00018156  0x000022c5 ifetch  0x00000001 , 0x00000003 
+ 00018157  0x000022c6 store  0x00000001 , 0x00000453 
+ 00018158  0x000022c7 branch  0x00004949 
+ 00018159  0x000022ca ifetch  0x00000003 , 0x00000003 
+ 00018160  0x000022cb store  0x00000003 , 0x0000414a 
+ 00018161  0x000022cc branch  0x00004949 
+ 00018162  0x000022d2 deposit  0x00000002 
+ 00018163  0x000022d3 branch  0x00004949 , 0x00000034 
+ 00018164  0x000022d4 call  0x00004970 
+ 00018165  0x000022d5 force  0x00000001 , 0x0000003f 
+ 00018166  0x000022d6 istore  0x00000001 , 0x0000000a 
+ 00018167  0x000022d7 deposit  0x00000030 
+ 00018168  0x000022d8 istore  0x00000002 , 0x0000000a 
+ 00018169  0x000022d9 force  0x00000012 , 0x0000003f 
+ 00018170  0x000022da istore  0x00000001 , 0x0000000a 
+ 00018171  0x000022db setarg  0x00000000 
+ 00018172  0x000022dc increase  0x000000f1 , 0x00000039 
+ 00018173  0x000022dd call  0x00004982 
+ 00018174  0x000022df force  0x0000000e , 0x00000007 
+ 00018175  0x000022e0 force  0x000000f5 , 0x00000039 
+ 00018176  0x000022e1 branch  0x00004952 
+ 00018177  0x000022e6 ifetch  0x00000001 , 0x00000003 
+ 00018178  0x000022e7 ncall  0x00006003 , 0x00000034 
+ 00018179  0x000022e8 call  0x00006009 , 0x00000034 
+ 00018180  0x000022e9 branch  0x00004949 
+ 00018181  0x000022ec call  0x0000496e 
+ 00018182  0x000022ed fetch  0x00000001 , 0x00004133 
+ 00018183  0x000022ee istore  0x00000001 , 0x0000000a 
+ 00018184  0x000022ef force  0x00000005 , 0x00000039 
+ 00018185  0x000022f0 branch  0x0000494c 
+ 00018186  0x000022f3 call  0x0000496e 
+ 00018187  0x000022f4 fetch  0x00000008 , 0x00000080 
+ 00018188  0x000022f5 istore  0x00000008 , 0x0000000a 
+ 00018189  0x000022f6 force  0x0000000c , 0x00000039 
+ 00018190  0x000022f7 branch  0x0000494c 
+ 00018191  0x000022fa call  0x0000496e 
+ 00018192  0x000022fb fetch  0x00000008 , 0x00004138 
+ 00018193  0x000022fc istore  0x00000008 , 0x0000000a 
+ 00018194  0x000022fd force  0x0000000c , 0x00000039 
+ 00018195  0x000022fe branch  0x0000494c 
+ 00018196  0x00002301 call  0x0000496e 
+ 00018197  0x00002302 setarg  0x00000101 
+ 00018198  0x00002303 istore  0x00000002 , 0x0000000a 
+ 00018199  0x00002304 setarg  0x00000001 
+ 00018200  0x00002305 istore  0x00000008 , 0x0000000a 
+ 00018201  0x00002306 force  0x0000000e , 0x00000039 
+ 00018202  0x00002307 branch  0x0000494c 
+ 00018203  0x0000230a call  0x0000496e 
+ 00018204  0x0000230b fetch  0x00000007 , 0x00000083 
+ 00018205  0x0000230c istore  0x00000007 , 0x0000000a 
+ 00018206  0x0000230d force  0x0000000b , 0x00000039 
+ 00018207  0x0000230e branch  0x0000494c 
+ 00018208  0x00002311 call  0x0000496e 
+ 00018209  0x00002312 fetch  0x00000006 , 0x00004140 
+ 00018210  0x00002313 istore  0x00000006 , 0x0000000a 
+ 00018211  0x00002314 force  0x0000000a , 0x00000039 
+ 00018212  0x00002315 branch  0x0000494c 
+ 00018213  0x00002318 branch  0x00004949 
+ 00018214  0x0000231c branch  0x00004949 
+ 00018215  0x0000231e call  0x0000496e 
+ 00018216  0x0000231f call  0x0000496b 
+ 00018217  0x00002320 setarg  0x000000ff 
+ 00018218  0x00002321 istore  0x00000001 , 0x0000000a 
+ 00018219  0x00002322 force  0x00000007 , 0x00000039 
+ 00018220  0x00002323 branch  0x0000494c 
+ 00018221  0x00002326 call  0x0000496e 
+ 00018222  0x00002327 call  0x0000496b 
+ 00018223  0x00002328 setarg  0x00000000 
+ 00018224  0x00002329 istore  0x00000001 , 0x0000000a 
+ 00018225  0x0000232a force  0x00000007 , 0x00000039 
+ 00018226  0x0000232b branch  0x0000494c 
+ 00018227  0x0000232e set0  0x00000025 , 0x00000000 
+ 00018228  0x0000232f bpatch  0x000000de , 0x0000401b 
+ 00018229  0x00002330 branch  0x00004949 
+ 00018230  0x00002332 set0  0x00000025 , 0x00000000 
+ 00018231  0x00002333 bpatch  0x000000df , 0x0000401b 
+ 00018232  0x00002334 branch  0x00004949 
+ 00018233  0x0000233a call  0x00004763 
+ 00018234  0x0000233b jam  0x00000007 , 0x00004272 
+ 00018235  0x0000233c ifetch  0x00000001 , 0x00000003 
+ 00018236  0x0000233d beq  0x00000001 , 0x00004933 
+ 00018237  0x0000233e jam  0x00000019 , 0x00004272 
+ 00018238  0x0000233f branch  0x00004933 
+ 00018239  0x00002342 branch  0x00004739 
+ 00018240  0x00002343 call  0x00004763 
+ 00018241  0x00002344 jam  0x00000008 , 0x00004272 
+ 00018242  0x00002345 branch  0x00004949 
+ 00018243  0x00002348 call  0x00004933 
+ 00018244  0x00002349 call  0x00004970 
+ 00018245  0x0000234a setarg  0x00000000 
+ 00018246  0x0000234b istore  0x00000001 , 0x0000000a 
+ 00018247  0x0000234c ifetch  0x00000004 , 0x00000003 
+ 00018248  0x0000234d istore  0x00000004 , 0x0000000a 
+ 00018249  0x0000234e force  0x00000008 , 0x00000039 
+ 00018250  0x0000234f arg  0x0000001d , 0x00000007 
+ 00018251  0x00002350 arg  0x00000005 , 0x00000039 
+ 00018252  0x00002351 branch  0x00004952 
+ 00018253  0x00002354 force  0x00000001 , 0x00000011 
+ 00018254  0x00002355 branch  0x0000493d 
+ 00018255  0x0000235a call  0x00004766 
+ 00018256  0x0000235b ifetch  0x00000002 , 0x00000003 
+ 00018257  0x0000235c store  0x00000002 , 0x00004280 
+ 00018258  0x0000235d ifetch  0x00000002 , 0x00000003 
+ 00018259  0x0000235e store  0x00000002 , 0x0000027b 
+ 00018260  0x0000235f ifetch  0x00000002 , 0x00000003 
+ 00018261  0x00002360 store  0x00000002 , 0x00004282 
+ 00018262  0x00002361 ifetch  0x00000002 , 0x00000003 
+ 00018263  0x00002362 store  0x00000002 , 0x00004284 
+ 00018264  0x00002363 jam  0x00000012 , 0x00004272 
+ 00018265  0x00002364 branch  0x00004933 
+ 00018266  0x00002367 call  0x00004766 
+ 00018267  0x00002368 call  0x0000475d 
+ 00018268  0x00002369 branch  0x00004933 
+ 00018269  0x0000236c jam  0x00000013 , 0x00004272 
+ 00018270  0x0000236d rtn 
+ 00018271  0x00002370 branch  0x00004949 
+ 00018272  0x00002373 call  0x00004763 
+ 00018273  0x00002374 jam  0x00000018 , 0x00004272 
+ 00018274  0x00002375 branch  0x00004933 
+ 00018275  0x00002378 ifetch  0x00000006 , 0x00000003 
+ 00018276  0x00002379 store  0x00000006 , 0x00004274 
+ 00018277  0x0000237a rtn 
+ 00018278  0x0000237d ifetch  0x00000002 , 0x00000003 
+ 00018279  0x0000237e store  0x00000001 , 0x00004273 
+ 00018280  0x0000237f rtn 
+ 00018281  0x00002382 call  0x00004766 
+ 00018282  0x00002383 call  0x0000496e 
+ 00018283  0x00002384 fetch  0x00000001 , 0x00004273 
+ 00018284  0x00002385 istore  0x00000002 , 0x0000000a 
+ 00018285  0x00002386 rtn 
+ 00018286  0x0000238b call  0x00004766 
+ 00018287  0x0000238c call  0x00004933 
+ 00018288  0x0000238d call  0x00004970 
+ 00018289  0x0000238e force  0x00000000 , 0x0000003f 
+ 00018290  0x0000238f istore  0x00000001 , 0x0000000a 
+ 00018291  0x00002390 fetch  0x00000001 , 0x00004273 
+ 00018292  0x00002391 istore  0x00000002 , 0x0000000a 
+ 00018293  0x00002392 rtn 
+ 00018294  0x00002395 ifetch  0x00000002 , 0x00000003 
+ 00018295  0x00002396 iadd  0x00000022 , 0x0000003f 
+ 00018296  0x00002397 and_into  0x000001fc , 0x0000003f 
+ 00018297  0x00002398 store  0x00000004 , 0x000000f4 
+ 00018298  0x00002399 rtn 
+ 00018299  0x0000239c set0  0x00000025 , 0x00000000 
+ 00018300  0x0000239d bpatch  0x000000e0 , 0x0000401c 
+ 00018301  0x0000239e fetch  0x00000001 , 0x00000274 
+ 00018302  0x0000239f sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00018303  0x000023a0 nrtn  0x00000002 
+ 00018304  0x000023a1 fetcht  0x00000006 , 0x00000182 
+ 00018305  0x000023a2 call  0x000032fc 
+ 00018306  0x000023a3 rtn  0x00000005 
+ 00018307  0x000023a4 call  0x00004972 
+ 00018308  0x000023a5 setarg  0x00010f22 
+ 00018309  0x000023a6 istore  0x00000003 , 0x0000000a 
+ 00018310  0x000023a7 fetch  0x00000006 , 0x00000182 
+ 00018311  0x000023a8 istore  0x00000006 , 0x0000000a 
+ 00018312  0x000023a9 fetch  0x00000001 , 0x0000017d 
+ 00018313  0x000023aa copy  0x0000003f , 0x00000002 
+ 00018314  0x000023ab rshift3  0x0000003f , 0x0000003f 
+ 00018315  0x000023ac rshift3  0x0000003f , 0x0000003f 
+ 00018316  0x000023ad istore  0x00000001 , 0x0000000a 
+ 00018317  0x000023ae copy  0x00000002 , 0x0000003f 
+ 00018318  0x000023af and  0x0000003f , 0x00000030 , 0x0000003f 
+ 00018319  0x000023b0 rshift3  0x0000003f , 0x0000003f 
+ 00018320  0x000023b1 rshift  0x0000003f , 0x0000003f 
+ 00018321  0x000023b2 istore  0x00000001 , 0x0000000a 
+ 00018322  0x000023b3 fetch  0x00000003 , 0x0000017f 
+ 00018323  0x000023b4 istore  0x00000003 , 0x0000000a 
+ 00018324  0x000023b5 fetch  0x00000004 , 0x0000016f 
+ 00018325  0x000023b6 isub  0x00000022 , 0x0000003f 
+ 00018326  0x000023b7 istore  0x00000002 , 0x0000000a 
+ 00018327  0x000023b8 setarg  0x000000c8 
+ 00018328  0x000023b9 istore  0x00000001 , 0x0000000a 
+ 00018329  0x000023ba force  0x0000000f , 0x00000039 
+ 00018330  0x000023bb branch  0x00004959 
+ 00018331  0x000023be set0  0x00000025 , 0x00000000 
+ 00018332  0x000023bf bpatch  0x000000e1 , 0x0000401c 
+ 00018333  0x000023c0 force  0x0000021c , 0x00000002 
+ 00018334  0x000023c1 fetch  0x00000002 , 0x00000291 
+ 00018335  0x000023c2 isub  0x00000002 , 0x0000003e 
+ 00018336  0x000023c3 nrtn  0x00000002 
+ 00018337  0x000023c4 fetcht  0x00000003 , 0x00000286 
+ 00018338  0x000023c5 fetch  0x00000003 , 0x00000185 
+ 00018339  0x000023c6 isub  0x00000002 , 0x0000003e 
+ 00018340  0x000023c7 rtn  0x00000005 
+ 00018341  0x000023c8 rtn  0x00000034 
+ 00018342  0x000023c9 store  0x00000003 , 0x00000286 
+ 00018343  0x000023ca fetch  0x00000001 , 0x00000274 
+ 00018344  0x000023cb sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00018345  0x000023cc nrtn  0x00000002 
+ 00018346  0x000023cd fetcht  0x00000006 , 0x00000182 
+ 00018347  0x000023ce call  0x000032fc 
+ 00018348  0x000023cf rtn  0x00000005 
+ 00018349  0x000023d0 call  0x000047cc 
+ 00018350  0x000023d1 force  0x0000000f , 0x00000002 
+ 00018351  0x000023d2 fetch  0x00000001 , 0x000004df 
+ 00018352  0x000023d3 bne  0x00000009 , 0x000047c5 
+ 00018353  0x000023d4 fetch  0x00000001 , 0x000004de 
+ 00018354  0x000023d5 branch  0x000047c5 , 0x00000034 
+ 00018355  0x000023d6 iforce  0x00000039 
+ 00018356  0x000023d7 istore  0x00000001 , 0x0000000a 
+ 00018357  0x000023d8 iadd  0x00000002 , 0x00000002 
+ 00018358  0x000023d9 increase  0x00000001 , 0x00000002 
+ 00018359  0x000023da arg  0x000004df , 0x00000006 
+ 00018360  0x000023dd ifetch  0x00000001 , 0x00000006 
+ 00018361  0x000023de istore  0x00000001 , 0x0000000a 
+ 00018362  0x000023df loop  0x000047b8 
+ 00018363  0x000023e1 ifetch  0x00000001 , 0x00000006 
+ 00018364  0x000023e2 branch  0x000047c5 , 0x00000034 
+ 00018365  0x000023e3 iforce  0x00000039 
+ 00018366  0x000023e4 istore  0x00000001 , 0x0000000a 
+ 00018367  0x000023e5 iadd  0x00000002 , 0x00000002 
+ 00018368  0x000023e6 increase  0x00000001 , 0x00000002 
+ 00018369  0x000023e8 ifetch  0x00000001 , 0x00000006 
+ 00018370  0x000023e9 istore  0x00000001 , 0x0000000a 
+ 00018371  0x000023ea loop  0x000047c1 
+ 00018372  0x000023eb branch  0x000047bb 
+ 00018373  0x000023ed sub  0x00000002 , 0x000000ff , 0x0000003f 
+ 00018374  0x000023ee iforce  0x00000039 
+ 00018375  0x000023f0 setarg  0x00000000 
+ 00018376  0x000023f1 istore  0x00000001 , 0x0000000a 
+ 00018377  0x000023f2 loop  0x000047c7 
+ 00018378  0x000023f3 force  0x000000ff , 0x00000039 
+ 00018379  0x000023f4 branch  0x00004959 
+ 00018380  0x000023f7 set0  0x00000025 , 0x00000000 
+ 00018381  0x000023f8 bpatch  0x000000e2 , 0x0000401c 
+ 00018382  0x000023f9 call  0x00004972 
+ 00018383  0x000023fa setarg  0x0001ff2f 
+ 00018384  0x000023fb istore  0x00000003 , 0x0000000a 
+ 00018385  0x000023fc fetch  0x00000006 , 0x00000182 
+ 00018386  0x000023fd istore  0x00000006 , 0x0000000a 
+ 00018387  0x000023fe fetch  0x00000001 , 0x0000017d 
+ 00018388  0x000023ff copy  0x0000003f , 0x00000002 
+ 00018389  0x00002400 rshift3  0x0000003f , 0x0000003f 
+ 00018390  0x00002401 rshift3  0x0000003f , 0x0000003f 
+ 00018391  0x00002402 istore  0x00000001 , 0x0000000a 
+ 00018392  0x00002403 copy  0x00000002 , 0x0000003f 
+ 00018393  0x00002404 and  0x0000003f , 0x00000030 , 0x0000003f 
+ 00018394  0x00002405 rshift3  0x0000003f , 0x0000003f 
+ 00018395  0x00002406 rshift  0x0000003f , 0x0000003f 
+ 00018396  0x00002407 istore  0x00000001 , 0x0000000a 
+ 00018397  0x00002408 fetch  0x00000003 , 0x0000017f 
+ 00018398  0x00002409 istore  0x00000003 , 0x0000000a 
+ 00018399  0x0000240a fetch  0x00000004 , 0x0000016f 
+ 00018400  0x0000240b isub  0x00000022 , 0x0000003f 
+ 00018401  0x0000240c istore  0x00000002 , 0x0000000a 
+ 00018402  0x0000240d setarg  0x000000c8 
+ 00018403  0x0000240e istore  0x00000001 , 0x0000000a 
+ 00018404  0x0000240f rtn 
+ 00018405  0x00002412 set0  0x00000025 , 0x00000000 
+ 00018406  0x00002413 bpatch  0x000000e3 , 0x0000401c 
+ 00018407  0x00002414 fetch  0x00000001 , 0x00004132 
+ 00018408  0x00002415 rtnne  0x00000001 
+ 00018409  0x00002416 call  0x00004968 
+ 00018410  0x00002417 istoret  0x00000008 , 0x0000000a 
+ 00018411  0x00002418 force  0x0000000b , 0x00000039 
+ 00018412  0x00002419 force  0x0000000b , 0x00000007 
+ 00018413  0x0000241a branch  0x00004952 
+ 00018414  0x0000241d set0  0x00000025 , 0x00000000 
+ 00018415  0x0000241e bpatch  0x000000e4 , 0x0000401c 
+ 00018416  0x0000241f fetch  0x00000001 , 0x00004132 
+ 00018417  0x00002420 rtnne  0x00000001 
+ 00018418  0x00002422 call  0x00004970 
+ 00018419  0x00002423 fetch  0x00000006 , 0x00000040 
+ 00018420  0x00002424 istore  0x00000006 , 0x0000000a 
+ 00018421  0x00002425 istoret  0x00000008 , 0x0000000a 
+ 00018422  0x00002426 force  0x0000000e , 0x00000039 
+ 00018423  0x00002427 force  0x0000003d , 0x00000007 
+ 00018424  0x00002428 branch  0x00004952 
+ 00018425  0x0000242b set0  0x00000025 , 0x00000000 
+ 00018426  0x0000242c bpatch  0x000000e5 , 0x0000401c 
+ 00018427  0x0000242d fetch  0x00000001 , 0x00004132 
+ 00018428  0x0000242e rtnne  0x00000001 
+ 00018429  0x00002430 call  0x00004968 
+ 00018430  0x00002431 fetch  0x00000001 , 0x00000449 
+ 00018431  0x00002432 istore  0x00000001 , 0x0000000a 
+ 00018432  0x00002433 setarg  0x00000001 
+ 00018433  0x00002434 istore  0x00000001 , 0x0000000a 
+ 00018434  0x00002435 istoret  0x00000008 , 0x0000000a 
+ 00018435  0x00002436 force  0x0000000d , 0x00000039 
+ 00018436  0x00002437 force  0x00000023 , 0x00000007 
+ 00018437  0x00002438 branch  0x00004952 
+ 00018438  0x0000243c set0  0x00000025 , 0x00000000 
+ 00018439  0x0000243d bpatch  0x000000e6 , 0x0000401c 
+ 00018440  0x0000243e fetch  0x00000001 , 0x00004132 
+ 00018441  0x0000243f rtnne  0x00000001 
+ 00018442  0x00002440 call  0x00004968 
+ 00018443  0x00002441 istoret  0x00000005 , 0x0000000a 
+ 00018444  0x00002442 force  0x00000008 , 0x00000039 
+ 00018445  0x00002443 force  0x0000000c , 0x00000007 
+ 00018446  0x00002444 branch  0x00004952 
+ 00018447  0x00002447 set0  0x00000025 , 0x00000000 
+ 00018448  0x00002448 bpatch  0x000000e7 , 0x0000401c 
+ 00018449  0x00002449 fetch  0x00000001 , 0x00004132 
+ 00018450  0x0000244a rtnne  0x00000001 
+ 00018451  0x0000244c call  0x00004970 
+ 00018452  0x0000244d fetch  0x00000006 , 0x00000040 
+ 00018453  0x0000244e istore  0x00000006 , 0x0000000a 
+ 00018454  0x0000244f fetch  0x00000003 , 0x000007e9 
+ 00018455  0x00002450 istore  0x00000003 , 0x0000000a 
+ 00018456  0x00002451 force  0x00000009 , 0x00000039 
+ 00018457  0x00002452 force  0x00000032 , 0x00000007 
+ 00018458  0x00002453 branch  0x00004952 
+ 00018459  0x00002456 set0  0x00000025 , 0x00000000 
+ 00018460  0x00002457 bpatch  0x000000e8 , 0x0000401d 
+ 00018461  0x00002458 fetch  0x00000001 , 0x00004132 
+ 00018462  0x00002459 rtnne  0x00000001 
+ 00018463  0x0000245b call  0x00004970 
+ 00018464  0x0000245c fetch  0x00000006 , 0x00000040 
+ 00018465  0x0000245d istore  0x00000006 , 0x0000000a 
+ 00018466  0x0000245e force  0x00000006 , 0x00000039 
+ 00018467  0x0000245f force  0x00000031 , 0x00000007 
+ 00018468  0x00002460 branch  0x00004952 
+ 00018469  0x00002464 force  0x00000000 , 0x00000002 
+ 00018470  0x00002466 set0  0x00000025 , 0x00000000 
+ 00018471  0x00002467 bpatch  0x000000e9 , 0x0000401d 
+ 00018472  0x00002468 fetch  0x00000001 , 0x00004132 
+ 00018473  0x00002469 rtnne  0x00000001 
+ 00018474  0x0000246a force  0x00000003 , 0x00000007 
+ 00018475  0x0000246b jam  0x00000005 , 0x00004800 
+ 00018476  0x0000246c call  0x00004970 
+ 00018477  0x0000246d istoret  0x00000001 , 0x0000000a 
+ 00018478  0x0000246e call  0x0000496b 
+ 00018479  0x0000246f call  0x00004965 
+ 00018480  0x00002470 force  0x00000001 , 0x0000003f 
+ 00018481  0x00002471 istore  0x00000001 , 0x0000000a 
+ 00018482  0x00002472 force  0x00000000 , 0x0000003f 
+ 00018483  0x00002473 fetcht  0x00000001 , 0x0000004c 
+ 00018484  0x00002474 isolate1  0x00000002 , 0x00000002 
+ 00018485  0x00002475 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00018486  0x00002476 istore  0x00000001 , 0x0000000a 
+ 00018487  0x00002477 force  0x0000000b , 0x00000039 
+ 00018488  0x00002478 branch  0x00004952 
+ 00018489  0x0000247c set0  0x00000025 , 0x00000000 
+ 00018490  0x0000247d bpatch  0x000000ea , 0x0000401d 
+ 00018491  0x0000247e fetch  0x00000001 , 0x00004132 
+ 00018492  0x0000247f rtnne  0x00000001 
+ 00018493  0x00002480 force  0x00000004 , 0x00000007 
+ 00018494  0x00002481 call  0x00004970 
+ 00018495  0x00002482 call  0x00004965 
+ 00018496  0x00002484 fetch  0x00000003 , 0x0000017f 
+ 00018497  0x00002485 istore  0x00000003 , 0x0000000a 
+ 00018498  0x00002486 istoret  0x00000001 , 0x0000000a 
+ 00018499  0x00002487 force  0x0000000a , 0x00000039 
+ 00018500  0x00002488 branch  0x00004952 
+ 00018501  0x0000248b set0  0x00000025 , 0x00000000 
+ 00018502  0x0000248c bpatch  0x000000eb , 0x0000401d 
+ 00018503  0x0000248d fetch  0x00000001 , 0x00004132 
+ 00018504  0x0000248e rtnne  0x00000001 
+ 00018505  0x0000248f call  0x00004968 
+ 00018506  0x00002490 force  0x00000000 , 0x0000003f 
+ 00018507  0x00002491 fetcht  0x00000001 , 0x0000004c 
+ 00018508  0x00002492 isolate1  0x00000002 , 0x00000002 
+ 00018509  0x00002493 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00018510  0x00002494 istore  0x00000001 , 0x0000000a 
+ 00018511  0x00002495 force  0x00000008 , 0x00000007 
+ 00018512  0x00002496 force  0x00000004 , 0x00000039 
+ 00018513  0x00002497 branch  0x00004952 
+ 00018514  0x0000249b set0  0x00000025 , 0x00000000 
+ 00018515  0x0000249c bpatch  0x000000ec , 0x0000401d 
+ 00018516  0x0000249d fetch  0x00000001 , 0x00004132 
+ 00018517  0x0000249e rtnne  0x00000001 
+ 00018518  0x0000249f force  0x00000018 , 0x00000007 
+ 00018519  0x000024a0 call  0x00004970 
+ 00018520  0x000024a1 call  0x00004965 
+ 00018521  0x000024a2 arg  0x00004262 , 0x00000006 
+ 00018522  0x000024a3 force  0x00000010 , 0x00000039 
+ 00018523  0x000024a4 call  0x00004976 
+ 00018524  0x000024a5 force  0x00000005 , 0x0000003f 
+ 00018525  0x000024a6 istore  0x00000001 , 0x0000000a 
+ 00018526  0x000024a7 force  0x00000017 , 0x00000039 
+ 00018527  0x000024a8 branch  0x00004952 
+ 00018528  0x000024ab fetch  0x00000001 , 0x00004132 
+ 00018529  0x000024ac rtnne  0x00000001 
+ 00018530  0x000024ad force  0x00000033 , 0x00000007 
+ 00018531  0x000024ae call  0x00004970 
+ 00018532  0x000024af call  0x00004965 
+ 00018533  0x000024b0 fetch  0x00000004 , 0x000007ec 
+ 00018534  0x000024b1 istore  0x00000004 , 0x0000000a 
+ 00018535  0x000024b2 force  0x0000000a , 0x00000039 
+ 00018536  0x000024b3 branch  0x00004952 
+ 00018537  0x000024b6 fetch  0x00000001 , 0x00004132 
+ 00018538  0x000024b7 rtnne  0x00000001 
+ 00018539  0x000024b8 force  0x00000036 , 0x00000007 
+ 00018540  0x000024b9 call  0x00004970 
+ 00018541  0x000024ba setarg  0x00000000 
+ 00018542  0x000024bb istore  0x00000001 , 0x0000000a 
+ 00018543  0x000024bc call  0x00004965 
+ 00018544  0x000024bd force  0x00000007 , 0x00000039 
+ 00018545  0x000024be branch  0x00004952 
+ 00018546  0x000024c2 set0  0x00000025 , 0x00000000 
+ 00018547  0x000024c3 bpatch  0x000000ed , 0x0000401d 
+ 00018548  0x000024c4 force  0x00000017 , 0x00000007 
+ 00018549  0x000024c6 fetch  0x00000001 , 0x00004132 
+ 00018550  0x000024c7 rtnne  0x00000001 
+ 00018551  0x000024c8 call  0x00004970 
+ 00018552  0x000024c9 call  0x00004965 
+ 00018553  0x000024ca force  0x00000006 , 0x00000039 
+ 00018554  0x000024cb branch  0x00004952 
+ 00018555  0x000024ce fetch  0x00000001 , 0x00004132 
+ 00018556  0x000024cf rtnne  0x00000001 
+ 00018557  0x000024d0 force  0x00000016 , 0x00000007 
+ 00018558  0x000024d1 branch  0x00004875 
+ 00018559  0x000024d5 fetch  0x00000001 , 0x00004132 
+ 00018560  0x000024d6 rtnne  0x00000001 
+ 00018561  0x000024d7 force  0x00000012 , 0x00000007 
+ 00018562  0x000024d8 call  0x00004970 
+ 00018563  0x000024d9 force  0x00000000 , 0x0000003f 
+ 00018564  0x000024da istore  0x00000001 , 0x0000000a 
+ 00018565  0x000024db call  0x00004965 
+ 00018566  0x000024dc istoret  0x00000001 , 0x0000000a 
+ 00018567  0x000024dd force  0x00000008 , 0x00000039 
+ 00018568  0x000024de branch  0x00004952 
+ 00018569  0x000024e1 fetch  0x00000001 , 0x00004132 
+ 00018570  0x000024e2 rtnne  0x00000001 
+ 00018571  0x000024e3 force  0x00000000 , 0x00000002 
+ 00018572  0x000024e4 nbranch  0x0000488e , 0x00000029 
+ 00018573  0x000024e5 force  0x00000001 , 0x00000002 
+ 00018574  0x000024e7 fetch  0x00000001 , 0x00004132 
+ 00018575  0x000024e8 rtnne  0x00000001 
+ 00018576  0x000024e9 force  0x00000012 , 0x00000007 
+ 00018577  0x000024ea call  0x00004970 
+ 00018578  0x000024eb force  0x00000035 , 0x0000003f 
+ 00018579  0x000024ec istore  0x00000001 , 0x0000000a 
+ 00018580  0x000024ed call  0x00004965 
+ 00018581  0x000024ee istoret  0x00000001 , 0x0000000a 
+ 00018582  0x000024ef force  0x00000008 , 0x00000039 
+ 00018583  0x000024f0 branch  0x00004952 
+ 00018584  0x000024f3 set0  0x00000025 , 0x00000000 
+ 00018585  0x000024f4 bpatch  0x000000ee , 0x0000401d 
+ 00018586  0x000024f5 fetch  0x00000001 , 0x00004132 
+ 00018587  0x000024f6 rtnne  0x00000001 
+ 00018588  0x000024f7 call  0x00004972 
+ 00018589  0x000024f8 setarg  0x0000ff07 
+ 00018590  0x000024f9 istore  0x00000002 , 0x0000000a 
+ 00018591  0x000024fa deposit  0x00000007 
+ 00018592  0x000024fb istore  0x00000001 , 0x0000000a 
+ 00018593  0x000024fc call  0x00004965 
+ 00018594  0x000024fd arg  0x00000103 , 0x00000006 
+ 00018595  0x000024fe force  0x000000f8 , 0x00000039 
+ 00018596  0x00002500 ifetch  0x00000001 , 0x00000006 
+ 00018597  0x00002501 istore  0x00000001 , 0x0000000a 
+ 00018598  0x00002502 loop  0x000048a4 
+ 00018599  0x00002503 force  0x000000ff , 0x00000039 
+ 00018600  0x00002504 branch  0x00004959 
+ 00018601  0x00002507 set0  0x00000025 , 0x00000000 
+ 00018602  0x00002508 bpatch  0x000000ef , 0x0000401d 
+ 00018603  0x00002509 fetch  0x00000001 , 0x00004132 
+ 00018604  0x0000250a rtnne  0x00000001 
+ 00018605  0x0000250b hfetch  0x00000001 , 0x0000810e 
+ 00018606  0x0000250c nrtn  0x00000034 
+ 00018607  0x0000250d fetch  0x00000001 , 0x0000004b 
+ 00018608  0x0000250e rtnbit0  0x00000007 
+ 00018609  0x0000250f set0  0x00000007 , 0x0000003f 
+ 00018610  0x00002510 store  0x00000001 , 0x0000004b 
+ 00018611  0x00002511 call  0x00004970 
+ 00018612  0x00002512 force  0x00000001 , 0x0000003f 
+ 00018613  0x00002513 istore  0x00000001 , 0x0000000a 
+ 00018614  0x00002514 call  0x0000496b 
+ 00018615  0x00002515 force  0x00000001 , 0x0000003f 
+ 00018616  0x00002516 istore  0x00000002 , 0x0000000a 
+ 00018617  0x00002517 force  0x00000013 , 0x00000007 
+ 00018618  0x00002518 force  0x00000005 , 0x00000039 
+ 00018619  0x00002519 branch  0x00004952 
+ 00018620  0x0000251e set0  0x00000025 , 0x00000000 
+ 00018621  0x0000251f bpatch  0x000000f0 , 0x0000401e 
+ 00018622  0x00002520 fetch  0x00000001 , 0x00004132 
+ 00018623  0x00002521 rtnne  0x00000001 
+ 00018624  0x00002522 call  0x00004968 
+ 00018625  0x00002523 force  0x00000006 , 0x00000007 
+ 00018626  0x00002524 force  0x00000003 , 0x00000039 
+ 00018627  0x00002525 branch  0x00004952 
+ 00018628  0x0000252a set0  0x00000025 , 0x00000000 
+ 00018629  0x0000252b bpatch  0x000000f1 , 0x0000401e 
+ 00018630  0x0000252c fetch  0x00000001 , 0x00004132 
+ 00018631  0x0000252d rtnne  0x00000001 
+ 00018632  0x0000252e call  0x00004970 
+ 00018633  0x0000252f force  0x00000000 , 0x0000003f 
+ 00018634  0x00002530 istore  0x00000001 , 0x0000000a 
+ 00018635  0x00002531 istoret  0x00000002 , 0x0000000a 
+ 00018636  0x00002532 fetch  0x00000001 , 0x000002c0 
+ 00018637  0x00002533 istore  0x00000001 , 0x0000000a 
+ 00018638  0x00002534 force  0x00000005 , 0x00000007 
+ 00018639  0x00002535 force  0x00000004 , 0x00000039 
+ 00018640  0x00002536 branch  0x00004952 
+ 00018641  0x0000253a set0  0x00000025 , 0x00000000 
+ 00018642  0x0000253b bpatch  0x000000f2 , 0x0000401e 
+ 00018643  0x0000253c fetch  0x00000001 , 0x00004132 
+ 00018644  0x0000253d rtnne  0x00000001 , 0x0000003f 
+ 00018645  0x0000253e call  0x00004970 
+ 00018646  0x0000253f setarg  0x00000102 
+ 00018647  0x00002540 istore  0x00000002 , 0x0000000a 
+ 00018648  0x00002541 fetcht  0x00000001 , 0x00000340 
+ 00018649  0x00002542 and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00018650  0x00002543 istore  0x00000001 , 0x0000000a 
+ 00018651  0x00002544 copy  0x00000011 , 0x0000003f 
+ 00018652  0x00002545 istore  0x00000001 , 0x0000000a 
+ 00018653  0x00002546 fetcht  0x00000001 , 0x00000341 
+ 00018654  0x00002547 increase  0xfffffffa , 0x00000002 
+ 00018655  0x00002548 fetch  0x00000006 , 0x00000342 
+ 00018656  0x00002549 istore  0x00000006 , 0x0000000a 
+ 00018657  0x0000254a istoret  0x00000001 , 0x0000000a 
+ 00018658  0x0000254b copy  0x00000002 , 0x00000039 
+ 00018659  0x0000254c call  0x00004976 
+ 00018660  0x0000254d setarg  0x0000007f 
+ 00018661  0x0000254e istore  0x00000001 , 0x0000000a 
+ 00018662  0x0000254f copy  0x00000002 , 0x00000039 
+ 00018663  0x00002550 add  0x00000039 , 0x0000000c , 0x00000039 
+ 00018664  0x00002551 force  0x0000003e , 0x00000007 
+ 00018665  0x00002552 branch  0x00004952 
+ 00018666  0x00002555 set0  0x00000025 , 0x00000000 
+ 00018667  0x00002556 bpatch  0x000000f3 , 0x0000401e 
+ 00018668  0x00002557 fetch  0x00000001 , 0x00004132 
+ 00018669  0x00002558 rtnne  0x00000001 , 0x0000003f 
+ 00018670  0x00002559 call  0x00004970 
+ 00018671  0x0000255a setarg  0x00000001 
+ 00018672  0x0000255b istore  0x00000001 , 0x0000000a 
+ 00018673  0x0000255c istoret  0x00000001 , 0x0000000a 
+ 00018674  0x0000255d fetch  0x00000001 , 0x000003d6 
+ 00018675  0x0000255e istore  0x00000002 , 0x0000000a 
+ 00018676  0x0000255f fetch  0x00000001 , 0x000003c1 
+ 00018677  0x00002560 rshift  0x0000003f , 0x0000003f 
+ 00018678  0x00002561 setflip  0x00000000 , 0x0000003f 
+ 00018679  0x00002562 istore  0x00000001 , 0x0000000a 
+ 00018680  0x00002563 fetch  0x00000001 , 0x000044e6 
+ 00018681  0x00002564 istore  0x00000001 , 0x0000000a 
+ 00018682  0x00002565 fetch  0x00000006 , 0x000003d0 
+ 00018683  0x00002566 istore  0x00000006 , 0x0000000a 
+ 00018684  0x00002567 fetch  0x00000002 , 0x000043d0 
+ 00018685  0x00002568 istore  0x00000002 , 0x0000000a 
+ 00018686  0x00002569 fetch  0x00000002 , 0x000003ed 
+ 00018687  0x0000256a istore  0x00000002 , 0x0000000a 
+ 00018688  0x0000256b fetch  0x00000002 , 0x000003ef 
+ 00018689  0x0000256c istore  0x00000002 , 0x0000000a 
+ 00018690  0x0000256d fetch  0x00000001 , 0x000003f8 
+ 00018691  0x0000256e istore  0x00000001 , 0x0000000a 
+ 00018692  0x0000256f force  0x0000003e , 0x00000007 
+ 00018693  0x00002570 arg  0x00000013 , 0x00000039 
+ 00018694  0x00002571 branch  0x00004952 
+ 00018695  0x00002576 set0  0x00000025 , 0x00000000 
+ 00018696  0x00002577 bpatch  0x000000f4 , 0x0000401e 
+ 00018697  0x00002578 fetch  0x00000001 , 0x00004132 
+ 00018698  0x00002579 rtnne  0x00000001 
+ 00018699  0x0000257b call  0x00004970 
+ 00018700  0x0000257c call  0x00004968 
+ 00018701  0x0000257d istoret  0x00000001 , 0x0000000a 
+ 00018702  0x0000257e fetch  0x00000002 , 0x00000032 
+ 00018703  0x0000257f rshift  0x0000003f , 0x0000003f 
+ 00018704  0x00002580 istore  0x00000002 , 0x0000000a 
+ 00018705  0x00002581 force  0x00000006 , 0x00000039 
+ 00018706  0x00002582 force  0x00000014 , 0x00000007 
+ 00018707  0x00002583 branch  0x00004952 
+ 00018708  0x00002587 set0  0x00000025 , 0x00000000 
+ 00018709  0x00002588 bpatch  0x000000f5 , 0x0000401e 
+ 00018710  0x00002589 fetch  0x00000001 , 0x00004132 
+ 00018711  0x0000258a rtnne  0x00000001 
+ 00018712  0x0000258b set0  0x00000025 , 0x00000000 
+ 00018713  0x0000258c bpatch  0x000000f6 , 0x0000401e 
+ 00018714  0x0000258d call  0x00004970 
+ 00018715  0x0000258e istoret  0x00000001 , 0x0000000a 
+ 00018716  0x0000258f setarg  0x00000e00 
+ 00018717  0x00002590 istore  0x00000002 , 0x0000000a 
+ 00018718  0x00002591 call  0x00004965 
+ 00018719  0x00002592 force  0x00000000 , 0x0000003f 
+ 00018720  0x00002593 bmark1  0x00000007 , 0x00004924 
+ 00018721  0x00002594 force  0x00000000 , 0x0000003f 
+ 00018722  0x00002595 istore  0x00000007 , 0x0000000a 
+ 00018723  0x00002596 branch  0x0000492c 
+ 00018724  0x00002598 fetch  0x00000001 , 0x00004132 
+ 00018725  0x00002599 rtnne  0x00000001 
+ 00018726  0x0000259a setarg  0x00020602 
+ 00018727  0x0000259b istore  0x00000003 , 0x0000000a 
+ 00018728  0x0000259c setarg  0x0000001e 
+ 00018729  0x0000259d istore  0x00000002 , 0x0000000a 
+ 00018730  0x0000259e setarg  0x0000001e 
+ 00018731  0x0000259f istore  0x00000002 , 0x0000000a 
+ 00018732  0x000025a1 fetch  0x00000001 , 0x00004132 
+ 00018733  0x000025a2 rtnne  0x00000001 
+ 00018734  0x000025a3 fetch  0x00000001 , 0x000000ab 
+ 00018735  0x000025a4 istore  0x00000001 , 0x0000000a 
+ 00018736  0x000025a5 force  0x0000002c , 0x00000007 
+ 00018737  0x000025a6 force  0x00000011 , 0x00000039 
+ 00018738  0x000025a7 branch  0x00004952 
+ 00018739  0x000025ab set0  0x00000025 , 0x00000000 
+ 00018740  0x000025ac bpatch  0x000000f7 , 0x0000401e 
+ 00018741  0x000025ad call  0x00004970 
+ 00018742  0x000025ae setarg  0x00000100 
+ 00018743  0x000025af istore  0x00000002 , 0x0000000a 
+ 00018744  0x000025b0 deposit  0x00000030 
+ 00018745  0x000025b1 istore  0x00000002 , 0x0000000a 
+ 00018746  0x000025b2 force  0x00000004 , 0x00000039 
+ 00018747  0x000025b3 force  0x0000000f , 0x00000007 
+ 00018748  0x000025b4 branch  0x00004952 
+ 00018749  0x000025b7 set0  0x00000025 , 0x00000000 
+ 00018750  0x000025b8 bpatch  0x000000f8 , 0x0000401f 
+ 00018751  0x000025b9 call  0x00004970 
+ 00018752  0x000025ba deposit  0x00000011 
+ 00018753  0x000025bb istore  0x00000001 , 0x0000000a 
+ 00018754  0x000025bc setarg  0x00000001 
+ 00018755  0x000025bd istore  0x00000001 , 0x0000000a 
+ 00018756  0x000025be deposit  0x00000030 
+ 00018757  0x000025bf istore  0x00000002 , 0x0000000a 
+ 00018758  0x000025c0 force  0x00000004 , 0x00000039 
+ 00018759  0x000025c1 force  0x0000000f , 0x00000007 
+ 00018760  0x000025c2 branch  0x00004952 
+ 00018761  0x000025c5 set0  0x00000025 , 0x00000000 
+ 00018762  0x000025c6 bpatch  0x000000f9 , 0x0000401f 
+ 00018763  0x000025c7 force  0x00000004 , 0x00000039 
+ 00018764  0x000025c9 call  0x00004970 
+ 00018765  0x000025ca force  0x00000001 , 0x0000003f 
+ 00018766  0x000025cb istore  0x00000001 , 0x0000000a 
+ 00018767  0x000025cc deposit  0x00000030 
+ 00018768  0x000025cd istore  0x00000003 , 0x0000000a 
+ 00018769  0x000025ce force  0x0000000e , 0x00000007 
+ 00018770  0x000025d0 set0  0x00000025 , 0x00000000 
+ 00018771  0x000025d1 bpatch  0x000000fa , 0x0000401f 
+ 00018772  0x000025d2 call  0x00004972 
+ 00018773  0x000025d3 deposit  0x00000007 
+ 00018774  0x000025d4 istore  0x00000001 , 0x0000000a 
+ 00018775  0x000025d5 deposit  0x00000039 
+ 00018776  0x000025d6 istore  0x00000001 , 0x0000000a 
+ 00018777  0x000025d8 set1  0x00000013 , 0x00000000 
+ 00018778  0x000025d9 force  0x00000005 , 0x00000007 
+ 00018779  0x000025da increase  0x00000002 , 0x00000039 
+ 00018780  0x000025dc call  0x00004494 
+ 00018781  0x000025dd branch  0x00004378 , 0x00000001 
+ 00018782  0x000025de branch  0x00004422 
+ 00018783  0x000025e1 force  0x000000ff , 0x00000007 
+ 00018784  0x000025e2 call  0x00004970 
+ 00018785  0x000025e3 setarg  0x00000001 
+ 00018786  0x000025e4 istore  0x00000001 , 0x0000000a 
+ 00018787  0x000025e5 force  0x00000001 , 0x00000039 
+ 00018788  0x000025e6 branch  0x00004952 
+ 00018789  0x000025ea fetch  0x00000006 , 0x00000040 
+ 00018790  0x000025eb istore  0x00000006 , 0x0000000a 
+ 00018791  0x000025ec rtn 
+ 00018792  0x000025ef call  0x00004970 
+ 00018793  0x000025f0 force  0x00000000 , 0x0000003f 
+ 00018794  0x000025f1 istore  0x00000001 , 0x0000000a 
+ 00018795  0x000025f3 fetch  0x00000001 , 0x00000046 
+ 00018796  0x000025f4 istore  0x00000002 , 0x0000000a 
+ 00018797  0x000025f5 rtn 
+ 00018798  0x000025f8 force  0x0000000c , 0x0000000a 
+ 00018799  0x000025f9 branch  0x00004973 
+ 00018800  0x000025fc force  0x00000008 , 0x0000000a 
+ 00018801  0x000025fd branch  0x00004973 
+ 00018802  0x00002600 force  0x00000006 , 0x0000000a 
+ 00018803  0x00002602 call  0x00004494 
+ 00018804  0x00002603 branch  0x000043de , 0x00000001 
+ 00018805  0x00002604 branch  0x0000441e 
+ 00018806  0x00002607 deposit  0x00000039 
+ 00018807  0x00002608 rtn  0x00000034 
+ 00018808  0x0000260a ifetch  0x00000001 , 0x00000006 
+ 00018809  0x0000260b istore  0x00000001 , 0x0000000a 
+ 00018810  0x0000260c loop  0x00004978 
+ 00018811  0x0000260d rtn 
+ 00018812  0x00002610 deposit  0x00000039 
+ 00018813  0x00002611 rtn  0x00000034 
+ 00018814  0x00002613 ifetch  0x00000001 , 0x00000003 
+ 00018815  0x00002614 istore  0x00000001 , 0x00000005 
+ 00018816  0x00002615 loop  0x0000497e 
+ 00018817  0x00002616 rtn 
+ 00018818  0x00002619 istore  0x00000001 , 0x0000000a 
+ 00018819  0x0000261a rshift8  0x0000003f , 0x0000003f 
+ 00018820  0x0000261b loop  0x00004982 
+ 00018821  0x0000261c rtn 
+ 00018822  0x00002620 pulse  0x0000000f 
+ 00018823  0x00002621 enable  0x00000009 
+ 00018824  0x00002623 ifetch  0x00000001 , 0x0000000a 
+ 00018825  0x00002624 inject  0x00000000 , 0x00000008 
+ 00018826  0x00002625 loop  0x00004988 
+ 00018827  0x00002626 enable  0x00000008 
+ 00018828  0x00002627 inject  0x00000000 , 0x00000010 
+ 00018829  0x00002628 disable  0x00000008 
+ 00018830  0x00002629 disable  0x00000009 
+ 00018831  0x0000262a disable  0x0000000f 
+ 00018832  0x0000262b byteswap  0x0000003f , 0x0000003f 
+ 00018833  0x0000262c rtn 
+ 00018834  0x0000262f nop  0x00000001 
+ 00018835  0x00002630 hjam  0x00000001 , 0x00008203 
+ 00018836  0x00002631 branch  0x00004992 
+ 00018837  0x00002636 set0  0x00000025 , 0x00000000 
+ 00018838  0x00002637 bpatch  0x000000fb , 0x0000401f 
+ 00018839  0x00002638 fetch  0x00000001 , 0x00004272 
+ 00018840  0x00002639 rtn  0x00000034 
+ 00018841  0x0000263a fetch  0x00000001 , 0x0000007c 
+ 00018842  0x0000263b nrtn  0x00000034 
+ 00018843  0x0000263c call  0x000049be 
+ 00018844  0x0000263d nbranch  0x000049aa , 0x00000005 
+ 00018845  0x0000263e fetch  0x00000001 , 0x00004272 
+ 00018846  0x0000263f beq  0x00000003 , 0x000049d4 
+ 00018847  0x00002640 beq  0x00000009 , 0x000049da 
+ 00018848  0x00002641 beq  0x0000000a , 0x000049e6 
+ 00018849  0x00002642 beq  0x0000000b , 0x000049ed 
+ 00018850  0x00002643 beq  0x0000000c , 0x000049f7 
+ 00018851  0x00002644 beq  0x00000008 , 0x00004a32 
+ 00018852  0x00002645 beq  0x00000018 , 0x000049cc 
+ 00018853  0x00002646 beq  0x00000007 , 0x000049c6 
+ 00018854  0x00002647 beq  0x00000019 , 0x000049ca 
+ 00018855  0x00002648 beq  0x0000001a , 0x00004a53 
+ 00018856  0x00002649 beq  0x00000012 , 0x00004a19 
+ 00018857  0x0000264a beq  0x00000013 , 0x00004a28 
+ 00018858  0x0000264c set0  0x00000025 , 0x00000000 
+ 00018859  0x0000264d bpatch  0x000000fc , 0x0000401f 
+ 00018860  0x0000264e call  0x000049c2 
+ 00018861  0x0000264f nrtn  0x00000034 
+ 00018862  0x00002650 fetch  0x00000001 , 0x00004272 
+ 00018863  0x00002651 beq  0x0000000d , 0x00004a01 
+ 00018864  0x00002652 beq  0x0000000f , 0x00004a0b 
+ 00018865  0x00002653 beq  0x0000000e , 0x00004a0d 
+ 00018866  0x00002654 beq  0x00000010 , 0x00004a2a 
+ 00018867  0x00002655 beq  0x00000011 , 0x00004a34 
+ 00018868  0x00002656 beq  0x0000001c , 0x00004a38 
+ 00018869  0x00002657 beq  0x00000004 , 0x00004a0f 
+ 00018870  0x00002658 beq  0x00000015 , 0x00004a14 
+ 00018871  0x00002659 beq  0x00000014 , 0x00004a17 
+ 00018872  0x0000265a beq  0x00000017 , 0x00004a48 
+ 00018873  0x0000265b beq  0x00000016 , 0x00004a51 
+ 00018874  0x0000265c rtnne  0x00000006 
+ 00018875  0x0000265d call  0x00005ed5 
+ 00018876  0x0000265f jam  0x00000000 , 0x00004272 
+ 00018877  0x00002660 rtn 
+ 00018878  0x00002663 fetch  0x00000006 , 0x00004274 
+ 00018879  0x00002664 fetcht  0x00000006 , 0x00000040 
+ 00018880  0x00002665 isub  0x00000002 , 0x0000003e 
+ 00018881  0x00002666 rtn 
+ 00018882  0x0000266a fetch  0x00000001 , 0x00004273 
+ 00018883  0x0000266b fetcht  0x00000001 , 0x00000046 
+ 00018884  0x0000266c isub  0x00000002 , 0x0000003f 
+ 00018885  0x0000266d rtn 
+ 00018886  0x00002670 jam  0x00000003 , 0x0000007c 
+ 00018887  0x00002671 jam  0x00000033 , 0x0000007d 
+ 00018888  0x00002672 call  0x00006212 
+ 00018889  0x00002673 branch  0x000049bc 
+ 00018890  0x00002676 branch  0x00004a38 , 0x00000029 
+ 00018891  0x00002677 set1  0x00000004 , 0x00000000 
+ 00018892  0x00002679 jam  0x00000034 , 0x0000007c 
+ 00018893  0x0000267a set1  0x00000003 , 0x00000000 
+ 00018894  0x0000267b nbranch  0x000049bc , 0x00000029 
+ 00018895  0x0000267c jam  0x00000013 , 0x0000007c 
+ 00018896  0x0000267d fetch  0x00000001 , 0x00000177 
+ 00018897  0x0000267e set0  0x00000002 , 0x0000003f 
+ 00018898  0x0000267f store  0x00000001 , 0x00000177 
+ 00018899  0x00002680 branch  0x000049bc 
+ 00018900  0x00002684 jam  0x00000001 , 0x0000007c 
+ 00018901  0x00002685 jam  0x00000000 , 0x00000053 
+ 00018902  0x00002686 branch  0x000049bc 
+ 00018903  0x0000268a jam  0x00000001 , 0x000007dd 
+ 00018904  0x0000268b jam  0x00000012 , 0x000007db 
+ 00018905  0x0000268c branch  0x000049bc 
+ 00018906  0x0000268f fetch  0x00000001 , 0x0000004b 
+ 00018907  0x00002690 bbit1  0x00000002 , 0x000049df 
+ 00018908  0x00002691 call  0x00006209 
+ 00018909  0x00002692 jam  0x00000008 , 0x0000007c 
+ 00018910  0x00002693 branch  0x000049bc 
+ 00018911  0x00002695 set0  0x00000002 , 0x0000003f 
+ 00018912  0x00002696 store  0x00000001 , 0x0000004b 
+ 00018913  0x00002697 call  0x00005ed0 
+ 00018914  0x00002698 setarg  0x00000000 
+ 00018915  0x00002699 setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00018916  0x0000269a store  0x00000001 , 0x0000007f 
+ 00018917  0x0000269b branch  0x000049bc 
+ 00018918  0x0000269e jam  0x00000018 , 0x00000446 
+ 00018919  0x0000269f jam  0x00000007 , 0x0000007c 
+ 00018920  0x000026a0 fetch  0x00000001 , 0x00000030 
+ 00018921  0x000026a1 bbit1  0x00000000 , 0x000049bc 
+ 00018922  0x000026a2 force  0x00000018 , 0x00000002 
+ 00018923  0x000026a3 call  0x00004826 
+ 00018924  0x000026a4 branch  0x000049bc 
+ 00018925  0x000026a8 call  0x0000321f 
+ 00018926  0x000026a9 fetch  0x00000001 , 0x0000004b 
+ 00018927  0x000026aa bbit1  0x00000001 , 0x00004a08 
+ 00018928  0x000026ab bbit1  0x00000000 , 0x000049f3 
+ 00018929  0x000026ac bbit1  0x00000002 , 0x000049df 
+ 00018930  0x000026ad branch  0x000049bc 
+ 00018931  0x000026af set0  0x00000000 , 0x0000003f 
+ 00018932  0x000026b0 store  0x00000001 , 0x0000004b 
+ 00018933  0x000026b1 jam  0x0000000c , 0x0000007c 
+ 00018934  0x000026b2 branch  0x000049bc 
+ 00018935  0x000026b5 fetch  0x00000001 , 0x0000004b 
+ 00018936  0x000026b6 bbit1  0x00000000 , 0x000049fb 
+ 00018937  0x000026b7 call  0x0000487b 
+ 00018938  0x000026b8 branch  0x000049bc 
+ 00018939  0x000026ba set0  0x00000000 , 0x0000003f 
+ 00018940  0x000026bb store  0x00000001 , 0x0000004b 
+ 00018941  0x000026bc jam  0x00000004 , 0x0000007c 
+ 00018942  0x000026bd jam  0x0000000b , 0x0000007d 
+ 00018943  0x000026be jam  0x00000006 , 0x0000007e 
+ 00018944  0x000026bf branch  0x000049bc 
+ 00018945  0x000026c3 fetch  0x00000001 , 0x0000004b 
+ 00018946  0x000026c4 set1  0x00000001 , 0x0000003f 
+ 00018947  0x000026c5 store  0x00000001 , 0x0000004b 
+ 00018948  0x000026c6 fetch  0x00000001 , 0x00000030 
+ 00018949  0x000026c7 bbit1  0x00000007 , 0x00004a08 
+ 00018950  0x000026c8 call  0x00004872 
+ 00018951  0x000026c9 branch  0x000049bc 
+ 00018952  0x000026cd call  0x00006209 
+ 00018953  0x000026ce jam  0x0000000b , 0x0000007c 
+ 00018954  0x000026cf branch  0x000049bc 
+ 00018955  0x000026d2 jam  0x0000000f , 0x0000007c 
+ 00018956  0x000026d3 branch  0x000049bc 
+ 00018957  0x000026d6 jam  0x0000000f , 0x0000007c 
+ 00018958  0x000026d7 branch  0x000049bc 
+ 00018959  0x000026da set0  0x00000025 , 0x00000000 
+ 00018960  0x000026db bpatch  0x000000fd , 0x0000401f 
+ 00018961  0x000026dc jam  0x00000027 , 0x0000007c 
+ 00018962  0x000026dd jam  0x00000050 , 0x00004272 
+ 00018963  0x000026de rtn 
+ 00018964  0x000026e1 jam  0x00000083 , 0x0000007c 
+ 00018965  0x000026e2 jam  0x00000051 , 0x00004272 
+ 00018966  0x000026e3 rtn 
+ 00018967  0x000026e6 jam  0x00000025 , 0x0000007c 
+ 00018968  0x000026e7 branch  0x000049bc 
+ 00018969  0x000026ea jam  0x00000017 , 0x0000007c 
+ 00018970  0x000026eb arg  0x00000455 , 0x00000005 
+ 00018971  0x000026ec setarg  0x00000000 
+ 00018972  0x000026ed isolate1  0x0000001b , 0x00000028 
+ 00018973  0x000026ee setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00018974  0x000026ef istore  0x00000001 , 0x00000005 
+ 00018975  0x000026f0 setarg  0x00000000 
+ 00018976  0x000026f1 istore  0x00000002 , 0x00000005 
+ 00018977  0x000026f2 fetch  0x00000002 , 0x00004280 
+ 00018978  0x000026f3 istore  0x00000002 , 0x00000005 
+ 00018979  0x000026f4 fetch  0x00000001 , 0x00004282 
+ 00018980  0x000026f5 istore  0x00000002 , 0x00000005 
+ 00018981  0x000026f6 fetch  0x00000001 , 0x00004284 
+ 00018982  0x000026f7 istore  0x00000002 , 0x00000005 
+ 00018983  0x000026f8 branch  0x000049bc 
+ 00018984  0x000026fb jam  0x00000018 , 0x0000007c 
+ 00018985  0x000026fc branch  0x000049bc 
+ 00018986  0x000026ff call  0x00003512 
+ 00018987  0x00002700 store  0x00000001 , 0x000000ad 
+ 00018988  0x00002701 fetch  0x00000001 , 0x00000046 
+ 00018989  0x00002702 store  0x00000001 , 0x000000ac 
+ 00018990  0x00002703 jam  0x0000002b , 0x0000007c 
+ 00018991  0x00002704 set1  0x00000007 , 0x00000000 
+ 00018992  0x00002705 jam  0x0000008c , 0x0000007c 
+ 00018993  0x00002706 branch  0x000049bc 
+ 00018994  0x00002709 call  0x00005ed5 
+ 00018995  0x0000270a branch  0x000049bc 
+ 00018996  0x0000270d jam  0x0000002c , 0x0000007c 
+ 00018997  0x0000270e bmark0  0x00000007 , 0x000049bc 
+ 00018998  0x0000270f jam  0x0000008d , 0x0000007c 
+ 00018999  0x00002710 branch  0x000049bc 
+ 00019000  0x00002713 branch  0x00004a41 , 0x00000029 
+ 00019001  0x00002714 jam  0x00000003 , 0x0000007c 
+ 00019002  0x00002715 jam  0x0000002b , 0x0000007d 
+ 00019003  0x00002716 bmark0  0x00000007 , 0x000049bc 
+ 00019004  0x00002717 fetch  0x00000001 , 0x000000b0 
+ 00019005  0x00002718 bne  0x00000007 , 0x00005c04 
+ 00019006  0x00002719 jam  0x00000081 , 0x0000007c 
+ 00019007  0x0000271a jam  0x0000008c , 0x0000007d 
+ 00019008  0x0000271b branch  0x000049bc 
+ 00019009  0x0000271d call  0x00003512 
+ 00019010  0x0000271e store  0x00000001 , 0x000000ad 
+ 00019011  0x0000271f fetch  0x00000001 , 0x00000046 
+ 00019012  0x00002720 store  0x00000001 , 0x000000ac 
+ 00019013  0x00002721 jam  0x0000002b , 0x0000007c 
+ 00019014  0x00002722 bmark0  0x00000007 , 0x000049bc 
+ 00019015  0x00002723 branch  0x00005c04 
+ 00019016  0x00002727 call  0x0000496e 
+ 00019017  0x00002728 call  0x0000496b 
+ 00019018  0x00002729 force  0x00000000 , 0x0000003f 
+ 00019019  0x0000272a nsetflag  0x00000029 , 0x00000000 , 0x0000003f 
+ 00019020  0x0000272b istore  0x00000001 , 0x0000000a 
+ 00019021  0x0000272c force  0x00000007 , 0x00000039 
+ 00019022  0x0000272d arg  0x00000809 , 0x00000030 
+ 00019023  0x0000272e call  0x0000494c 
+ 00019024  0x0000272f branch  0x000049bc 
+ 00019025  0x00002732 jam  0x0000009a , 0x0000007c 
+ 00019026  0x00002733 branch  0x000049bc 
+ 00019027  0x00002736 jam  0x00000007 , 0x0000007c 
+ 00019028  0x00002737 jam  0x00000013 , 0x00000446 
+ 00019029  0x00002738 branch  0x000049bc 
+ 00019030  0x0000273e jam  0x00000000 , 0x000002bc 
+ 00019031  0x00002741 ifetch  0x00000001 , 0x00000003 
+ 00019032  0x00002742 store  0x00000001 , 0x000002bb 
+ 00019033  0x00002743 call  0x00004a6d 
+ 00019034  0x00002745 call  0x00007e00 
+ 00019035  0x00002746 fetch  0x00000001 , 0x000002bb 
+ 00019036  0x00002747 copy  0x0000003f , 0x00000002 
+ 00019037  0x00002748 fetch  0x00000001 , 0x0000029f 
+ 00019038  0x00002749 increase  0x00000001 , 0x0000003f 
+ 00019039  0x0000274a icompare  0x000000ff , 0x00000002 
+ 00019040  0x0000274b nbranch  0x00004a77 , 0x00000001 
+ 00019041  0x0000274c store  0x00000001 , 0x0000029f 
+ 00019042  0x0000274d call  0x00007e0e 
+ 00019043  0x0000274f ifetch  0x00000001 , 0x00000003 
+ 00019044  0x00002750 beq  0x00000001 , 0x00004ad8 
+ 00019045  0x00002751 beq  0x00000002 , 0x00004aae 
+ 00019046  0x00002752 beq  0x00000003 , 0x00004adf 
+ 00019047  0x00002753 beq  0x00000005 , 0x00004ac3 
+ 00019048  0x00002754 beq  0x00000006 , 0x00004a80 
+ 00019049  0x00002755 beq  0x00000007 , 0x00004a91 
+ 00019050  0x00002756 beq  0x00000008 , 0x00004aa8 
+ 00019051  0x00002757 beq  0x00000009 , 0x00004ae6 
+ 00019052  0x00002758 rtn 
+ 00019053  0x0000275a copy  0x0000003f , 0x00000002 
+ 00019054  0x0000275b call  0x00007e00 
+ 00019055  0x0000275c fetch  0x00000001 , 0x000002bc 
+ 00019056  0x0000275d iadd  0x00000002 , 0x0000003f 
+ 00019057  0x0000275e store  0x00000001 , 0x000002bc 
+ 00019058  0x0000275f branch  0x00007e0e 
+ 00019059  0x00002763 force  0x00000001 , 0x0000003f 
+ 00019060  0x00002764 call  0x000044b5 
+ 00019061  0x00002765 fetch  0x00000001 , 0x0000029f 
+ 00019062  0x00002766 branch  0x000044b5 
+ 00019063  0x00002769 call  0x00007e0e 
+ 00019064  0x0000276a branch  0x00004a7c 
+ 00019065  0x0000276c fetch  0x00000001 , 0x0000029f 
+ 00019066  0x0000276d increase  0xffffffff , 0x0000003f 
+ 00019067  0x0000276e store  0x00000001 , 0x0000029f 
+ 00019068  0x00002770 force  0x00000000 , 0x0000003f 
+ 00019069  0x00002771 call  0x000044b5 
+ 00019070  0x00002772 fetch  0x00000001 , 0x0000029f 
+ 00019071  0x00002773 branch  0x000044b5 
+ 00019072  0x00002776 call  0x00004a6d 
+ 00019073  0x00002777 ifetch  0x00000001 , 0x00000003 
+ 00019074  0x00002778 store  0x00000001 , 0x000002bd 
+ 00019075  0x00002779 call  0x00004a6d 
+ 00019076  0x0000277a ifetch  0x00000001 , 0x00000003 
+ 00019077  0x0000277b lshift8  0x0000003f , 0x00000005 
+ 00019078  0x0000277c call  0x00004a6d 
+ 00019079  0x0000277d fetch  0x00000001 , 0x000002bd 
+ 00019080  0x0000277e iadd  0x00000005 , 0x00000005 
+ 00019081  0x0000277f ifetch  0x00000001 , 0x00000003 
+ 00019082  0x00002780 istore  0x00000001 , 0x00000005 
+ 00019083  0x00002781 call  0x00004a6d 
+ 00019084  0x00002782 ifetch  0x00000001 , 0x00000003 
+ 00019085  0x00002783 call  0x00004a6d 
+ 00019086  0x00002784 fetch  0x00000001 , 0x000002bc 
+ 00019087  0x00002785 bne  0x000000ff , 0x00004a79 
+ 00019088  0x00002786 branch  0x00004a73 
+ 00019089  0x00002789 call  0x00004a6d 
+ 00019090  0x0000278a ifetch  0x00000001 , 0x00000003 
+ 00019091  0x0000278b store  0x00000001 , 0x000002bd 
+ 00019092  0x0000278c call  0x00004a6d 
+ 00019093  0x0000278d ifetch  0x00000001 , 0x00000003 
+ 00019094  0x0000278e store  0x00000001 , 0x000002be 
+ 00019095  0x0000278f call  0x00004a6d 
+ 00019096  0x00002790 ifetch  0x00000001 , 0x00000003 
+ 00019097  0x00002791 call  0x00004a6d 
+ 00019098  0x00002792 fetch  0x00000001 , 0x000002bc 
+ 00019099  0x00002793 bne  0x000000ff , 0x00004a79 
+ 00019100  0x00002795 fetch  0x00000001 , 0x000002be 
+ 00019101  0x00002796 lshift8  0x0000003f , 0x00000002 
+ 00019102  0x00002797 fetch  0x00000001 , 0x000002bd 
+ 00019103  0x00002798 iadd  0x00000002 , 0x00000003 
+ 00019104  0x00002799 ifetch  0x00000001 , 0x00000003 
+ 00019105  0x0000279a store  0x00000001 , 0x000002bd 
+ 00019106  0x0000279c force  0x00000001 , 0x0000003f 
+ 00019107  0x0000279d call  0x000044b5 
+ 00019108  0x0000279e fetch  0x00000001 , 0x000002bd 
+ 00019109  0x0000279f call  0x000044b5 
+ 00019110  0x000027a0 jam  0x000000ff , 0x0000029f 
+ 00019111  0x000027a1 rtn 
+ 00019112  0x000027a4 call  0x00004a6d 
+ 00019113  0x000027a5 ifetch  0x00000001 , 0x00000003 
+ 00019114  0x000027a6 call  0x00004a6d 
+ 00019115  0x000027a7 fetch  0x00000001 , 0x000002bc 
+ 00019116  0x000027a8 bne  0x000000ff , 0x00004a79 
+ 00019117  0x000027a9 branch  0x00004a73 
+ 00019118  0x000027ac call  0x00004a6d 
+ 00019119  0x000027ad ifetch  0x00000001 , 0x00000003 
+ 00019120  0x000027ae hstore  0x00000001 , 0x00008024 
+ 00019121  0x000027af call  0x00004a6d 
+ 00019122  0x000027b0 ifetch  0x00000001 , 0x00000003 
+ 00019123  0x000027b1 set1  0x00000007 , 0x0000003f 
+ 00019124  0x000027b2 hstore  0x00000001 , 0x00008023 
+ 00019125  0x000027b3 set0  0x00000007 , 0x0000003f 
+ 00019126  0x000027b4 call  0x00004a6d 
+ 00019127  0x000027b5 ifetch  0x00000001 , 0x00000003 
+ 00019128  0x000027b6 copy  0x0000003f , 0x00000039 
+ 00019129  0x000027b7 call  0x00004a6d 
+ 00019130  0x000027b9 ifetch  0x00000001 , 0x00000003 
+ 00019131  0x000027ba hstore  0x00000001 , 0x00008025 
+ 00019132  0x000027bb call  0x00004a6d 
+ 00019133  0x000027bc loop  0x00004aba 
+ 00019134  0x000027bd ifetch  0x00000001 , 0x00000003 
+ 00019135  0x000027be call  0x00004a6d 
+ 00019136  0x000027bf fetch  0x00000001 , 0x000002bc 
+ 00019137  0x000027c0 bne  0x000000ff , 0x00004a79 
+ 00019138  0x000027c1 branch  0x00004a73 
+ 00019139  0x000027c4 call  0x00004a6d 
+ 00019140  0x000027c5 ifetch  0x00000001 , 0x00000003 
+ 00019141  0x000027c6 store  0x00000001 , 0x000002bd 
+ 00019142  0x000027c7 call  0x00004a6d 
+ 00019143  0x000027c8 ifetch  0x00000001 , 0x00000003 
+ 00019144  0x000027c9 lshift8  0x0000003f , 0x00000005 
+ 00019145  0x000027ca call  0x00004a6d 
+ 00019146  0x000027cb fetch  0x00000001 , 0x000002bd 
+ 00019147  0x000027cc iadd  0x00000005 , 0x00000005 
+ 00019148  0x000027cd ifetch  0x00000001 , 0x00000003 
+ 00019149  0x000027ce iforce  0x00000039 
+ 00019150  0x000027cf call  0x00004a6d 
+ 00019151  0x000027d1 ifetch  0x00000001 , 0x00000003 
+ 00019152  0x000027d2 istore  0x00000001 , 0x00000005 
+ 00019153  0x000027d3 call  0x00004a6d 
+ 00019154  0x000027d4 loop  0x00004acf 
+ 00019155  0x000027d5 ifetch  0x00000001 , 0x00000003 
+ 00019156  0x000027d6 call  0x00004a6d 
+ 00019157  0x000027d7 fetch  0x00000001 , 0x000002bc 
+ 00019158  0x000027d8 bne  0x000000ff , 0x00004a79 
+ 00019159  0x000027d9 branch  0x00004a73 
+ 00019160  0x000027de call  0x00004a6d 
+ 00019161  0x000027df ifetch  0x00000001 , 0x00000003 
+ 00019162  0x000027e0 call  0x00004a6d 
+ 00019163  0x000027e1 fetch  0x00000001 , 0x000002bc 
+ 00019164  0x000027e2 bne  0x000000ff , 0x00004a79 
+ 00019165  0x000027e3 hjam  0x00000080 , 0x00008023 
+ 00019166  0x000027e4 branch  0x00004a73 
+ 00019167  0x000027e7 call  0x00004a6d 
+ 00019168  0x000027e8 ifetch  0x00000001 , 0x00000003 
+ 00019169  0x000027e9 call  0x00004a6d 
+ 00019170  0x000027ea fetch  0x00000001 , 0x000002bc 
+ 00019171  0x000027eb bne  0x000000ff , 0x00004a79 
+ 00019172  0x000027ec hjam  0x00000000 , 0x00008023 
+ 00019173  0x000027ed branch  0x00004a73 
+ 00019174  0x000027f0 call  0x00004a6d 
+ 00019175  0x000027f1 ifetch  0x00000001 , 0x00000003 
+ 00019176  0x000027f2 call  0x00004a6d 
+ 00019177  0x000027f3 fetch  0x00000001 , 0x000002bc 
+ 00019178  0x000027f4 bne  0x000000ff , 0x00004a79 
+ 00019179  0x000027f5 call  0x00004a73 
+ 00019180  0x000027f6 branch  0x00003001 
+ 00019181  0x000027fa call  0x00006a8b 
+ 00019182  0x000027fb rtn  0x00000001 
+ 00019183  0x000027fc arg  0x00000007 , 0x00000002 
+ 00019184  0x000027fd call  0x000069e5 
+ 00019185  0x000027fe nbranch  0x00004af4 , 0x00000001 
+ 00019186  0x000027ff jam  0x00000001 , 0x000042ae 
+ 00019187  0x00002800 rtn 
+ 00019188  0x00002802 fetch  0x00000001 , 0x000042ae 
+ 00019189  0x00002803 rtnne  0x00000001 
+ 00019190  0x00002804 call  0x00004599 
+ 00019191  0x00002805 branch  0x0000495f 
+ 00019192  0x00002814 set1  0x00000025 , 0x00000000 
+ 00019193  0x00002815 bpatch  0x0000009c , 0x00004033 
+ 00019194  0x00002816 fetch  0x00000002 , 0x000002cb 
+ 00019195  0x00002817 copy  0x0000003f , 0x00000006 
+ 00019196  0x00002818 ifetch  0x00000001 , 0x00000006 
+ 00019197  0x00002819 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00019198  0x0000281a rshift4  0x0000003f , 0x0000003f 
+ 00019199  0x0000281b beq  0x00000009 , 0x00004b18 
+ 00019200  0x0000281c beq  0x00000007 , 0x00004b18 
+ 00019201  0x0000281d beq  0x0000000a , 0x00004b24 
+ 00019202  0x0000281e beq  0x00000005 , 0x00004b11 
+ 00019203  0x0000281f beq  0x00000001 , 0x00004b05 
+ 00019204  0x00002820 rtn 
+ 00019205  0x00002823 copy  0x00000002 , 0x0000003f 
+ 00019206  0x00002824 beq  0x00000005 , 0x00004b09 
+ 00019207  0x00002825 beq  0x00000003 , 0x00004b10 
+ 00019208  0x00002826 rtn 
+ 00019209  0x00002829 jam  0x00000027 , 0x00000b7d 
+ 00019210  0x0000282a call  0x00007c27 
+ 00019211  0x0000282b fetch  0x00000001 , 0x00004132 
+ 00019212  0x0000282c rtnne  0x00000006 , 0x0000003f 
+ 00019213  0x0000282d copy  0x00000002 , 0x0000003f 
+ 00019214  0x0000282e beq  0x00000005 , 0x00006946 
+ 00019215  0x0000282f rtn 
+ 00019216  0x00002831 rtn 
+ 00019217  0x00002834 arg  0x00000001 , 0x00000011 
+ 00019218  0x00002835 call  0x00004b2c 
+ 00019219  0x00002836 fetch  0x00000002 , 0x000042b5 
+ 00019220  0x00002837 istore  0x00000002 , 0x00000005 
+ 00019221  0x00002838 setarg  0x00000000 
+ 00019222  0x00002839 istore  0x00000001 , 0x00000005 
+ 00019223  0x0000283a rtn 
+ 00019224  0x0000283d arg  0x00000001 , 0x00000011 
+ 00019225  0x0000283e call  0x00004b2c 
+ 00019226  0x0000283f fetch  0x00000002 , 0x000042b5 
+ 00019227  0x00002840 istore  0x00000002 , 0x00000005 
+ 00019228  0x00002841 setarg  0x00000000 
+ 00019229  0x00002842 istore  0x00000001 , 0x00000005 
+ 00019230  0x00002843 jam  0x00000001 , 0x000008a8 
+ 00019231  0x00002844 fetch  0x00000001 , 0x000042bb 
+ 00019232  0x00002845 set1  0x00000006 
+ 00019233  0x00002846 store  0x00000001 , 0x000042bb 
+ 00019234  0x00002848 jam  0x00000012 , 0x00000b7d 
+ 00019235  0x00002849 branch  0x00007c27 
+ 00019236  0x0000284c ifetch  0x00000001 , 0x00000006 
+ 00019237  0x0000284d beq  0x00000001 , 0x00004b27 
+ 00019238  0x0000284e rtn 
+ 00019239  0x00002851 copy  0x00000006 , 0x00000011 
+ 00019240  0x00002852 fetch  0x00000001 , 0x00004132 
+ 00019241  0x00002853 rtnne  0x00000003 , 0x0000003f 
+ 00019242  0x00002854 copy  0x00000011 , 0x00000006 
+ 00019243  0x00002855 branch  0x00004c4a 
+ 00019244  0x00002858 call  0x00005248 
+ 00019245  0x00002859 copy  0x00000011 , 0x00000002 
+ 00019246  0x0000285a storet  0x00000001 , 0x000008a8 
+ 00019247  0x0000285b copy  0x0000003f , 0x00000005 
+ 00019248  0x0000285c copy  0x00000011 , 0x0000003f 
+ 00019249  0x0000285d istore  0x00000002 , 0x00000005 
+ 00019250  0x0000285e rtn 
+ 00019251  0x00002862 setarg  0x00004b5b 
+ 00019252  0x00002863 store  0x00000002 , 0x0000428c 
+ 00019253  0x00002864 setarg  0x00004b44 
+ 00019254  0x00002865 store  0x00000002 , 0x00004296 
+ 00019255  0x00002866 call  0x0000691d 
+ 00019256  0x00002867 call  0x00005347 
+ 00019257  0x00002868 hjam  0x0000009e , 0x000080a2 
+ 00019258  0x00002869 hjam  0x00000008 , 0x00008081 
+ 00019259  0x0000286a hjam  0x00000005 , 0x00008075 
+ 00019260  0x0000286b setarg  0xffffffff 
+ 00019261  0x0000286c set0  0x00000001 , 0x0000003f 
+ 00019262  0x0000286d set0  0x00000015 , 0x0000003f 
+ 00019263  0x0000286e hstore  0x00000004 , 0x00008070 
+ 00019264  0x0000286f hjam  0x00000002 , 0x00008078 
+ 00019265  0x00002870 rtn  0x0000002b 
+ 00019266  0x00002871 jam  0x00000001 , 0x000043d8 
+ 00019267  0x00002872 rtn 
+ 00019268  0x00002876 ifetch  0x00000001 , 0x00000011 
+ 00019269  0x00002877 store  0x00000001 , 0x00004803 
+ 00019270  0x00002878 beq  0x00000003 , 0x00004b4f 
+ 00019271  0x00002879 beq  0x00000004 , 0x00004b51 
+ 00019272  0x0000287a beq  0x00000005 , 0x00004b53 
+ 00019273  0x0000287b beq  0x00000014 , 0x00004b64 
+ 00019274  0x0000287c beq  0x00000015 , 0x00004b67 
+ 00019275  0x0000287d rtnne  0x00000002 
+ 00019276  0x0000287e ifetch  0x00000001 , 0x00000006 
+ 00019277  0x0000287f store  0x00000001 , 0x00004804 
+ 00019278  0x00002880 rtn 
+ 00019279  0x00002883 arg  0x00004807 , 0x00000005 
+ 00019280  0x00002884 branch  0x00004b55 
+ 00019281  0x00002887 arg  0x00004825 , 0x00000005 
+ 00019282  0x00002888 branch  0x00004b55 
+ 00019283  0x0000288b fetch  0x00000002 , 0x00004800 
+ 00019284  0x0000288c iforce  0x00000005 
+ 00019285  0x0000288f arg  0x00000013 , 0x00000039 
+ 00019286  0x00002890 call  0x00007e45 
+ 00019287  0x00002891 deposit  0x00000005 
+ 00019288  0x00002892 store  0x00000002 , 0x00004800 
+ 00019289  0x00002893 jam  0x00000000 , 0x00004803 
+ 00019290  0x00002894 rtn 
+ 00019291  0x00002899 fetch  0x00000001 , 0x00004803 
+ 00019292  0x0000289a beq  0x00000001 , 0x00004b71 
+ 00019293  0x0000289b beq  0x00000002 , 0x00004b8d 
+ 00019294  0x0000289c beq  0x0000000a , 0x00004b7a 
+ 00019295  0x0000289d beq  0x0000000b , 0x00004b7a 
+ 00019296  0x0000289e beq  0x0000000c , 0x00004b7a 
+ 00019297  0x0000289f beq  0x00000008 , 0x00004b8d 
+ 00019298  0x000028a0 beq  0x00000009 , 0x00004b6a 
+ 00019299  0x000028a1 rtn 
+ 00019300  0x000028a4 jam  0x00000000 , 0x00004213 
+ 00019301  0x000028a5 jam  0x00000000 , 0x00004803 
+ 00019302  0x000028a6 rtn 
+ 00019303  0x000028a8 jam  0x0000001e , 0x00004213 
+ 00019304  0x000028a9 jam  0x00000000 , 0x00004803 
+ 00019305  0x000028aa rtn 
+ 00019306  0x000028af jam  0x00000000 , 0x00004803 
+ 00019307  0x000028b0 arg  0x000fffff , 0x0000001b 
+ 00019308  0x000028b1 call  0x00004b91 
+ 00019309  0x000028b2 rtn 
+ 00019310  0x000028b5 fetcht  0x00000002 , 0x000003c2 
+ 00019311  0x000028b6 iadd  0x00000002 , 0x0000003f 
+ 00019312  0x000028b7 store  0x00000004 , 0x000003c4 
+ 00019313  0x000028b9 fetch  0x00000004 , 0x000003c4 
+ 00019314  0x000028ba isub  0x00000028 , 0x0000003f 
+ 00019315  0x000028bb nbranch  0x00004b6e , 0x00000002 
+ 00019316  0x000028bc rshift  0x0000003f , 0x0000001b 
+ 00019317  0x000028bd call  0x00004b91 
+ 00019318  0x000028be rtn  0x00000034 
+ 00019319  0x000028bf jam  0x0000000c , 0x00004803 
+ 00019320  0x000028c0 arg  0x00001800 , 0x00000002 
+ 00019321  0x000028c1 storet  0x00000002 , 0x00004800 
+ 00019322  0x000028c4 call  0x0000561c 
+ 00019323  0x000028c5 nrtn  0x00000034 
+ 00019324  0x000028c6 jam  0x00000014 , 0x000044c2 
+ 00019325  0x000028c7 jam  0x0000001b , 0x00000b7d 
+ 00019326  0x000028c8 call  0x00005620 
+ 00019327  0x000028c9 fetch  0x00000002 , 0x00000419 
+ 00019328  0x000028ca iforce  0x00000005 
+ 00019329  0x000028cb fetch  0x00000002 , 0x00004800 
+ 00019330  0x000028cc iforce  0x00000006 
+ 00019331  0x000028cd arg  0x00000014 , 0x00000039 
+ 00019332  0x000028ce call  0x00007e45 
+ 00019333  0x000028cf deposit  0x00000006 
+ 00019334  0x000028d0 store  0x00000002 , 0x00004800 
+ 00019335  0x000028d1 fetch  0x00000002 , 0x00004805 
+ 00019336  0x000028d2 increase  0xffffffec , 0x0000003f 
+ 00019337  0x000028d3 store  0x00000002 , 0x00004805 
+ 00019338  0x000028d4 rtn  0x00000002 
+ 00019339  0x000028d5 jam  0x00000000 , 0x00004803 
+ 00019340  0x000028d6 rtn 
+ 00019341  0x000028da fetch  0x00000001 , 0x00004804 
+ 00019342  0x000028db call  0x00004be2 
+ 00019343  0x000028dc jam  0x00000000 , 0x00004803 
+ 00019344  0x000028dd rtn 
+ 00019345  0x000028e1 call  0x00004b97 
+ 00019346  0x000028e2 setarg  0x00001800 
+ 00019347  0x000028e3 isub  0x00000005 , 0x0000003f 
+ 00019348  0x000028e4 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00019349  0x000028e5 store  0x00000002 , 0x00004805 
+ 00019350  0x000028e6 rtn 
+ 00019351  0x000028eb disable  0x00000010 
+ 00019352  0x000028ec arg  0x00001800 , 0x00000005 
+ 00019353  0x000028ee rtn  0x00000003 
+ 00019354  0x000028ef hfetch  0x00000001 , 0x0000811e 
+ 00019355  0x000028f0 bbit0  0x00000005 , 0x00004b99 
+ 00019356  0x000028f1 copy  0x00000019 , 0x00000002 
+ 00019357  0x000028f2 arg  0x00000080 , 0x00000039 
+ 00019358  0x000028f3 call  0x00007e3b 
+ 00019359  0x000028f4 arg  0x00001800 , 0x00000005 
+ 00019360  0x000028f5 arg  0x00000000 , 0x00000013 
+ 00019361  0x000028f7 arg  0x000000b4 , 0x0000001b 
+ 00019362  0x000028f9 rtn  0x00000003 
+ 00019363  0x000028fa hfetch  0x00000001 , 0x0000811e 
+ 00019364  0x000028fb ixor  0x00000013 , 0x0000003f 
+ 00019365  0x000028fc bbit1  0x00000005 , 0x00004ba2 
+ 00019366  0x000028fd copy  0x00000019 , 0x0000003f 
+ 00019367  0x000028fe iforce  0x00000030 
+ 00019368  0x000028ff call  0x00007e78 
+ 00019369  0x00002900 sub  0x0000003f , 0x000000ff , 0x0000003e 
+ 00019370  0x00002901 branch  0x00004ba2 , 0x00000002 
+ 00019371  0x00002902 isolate0  0x00000005 , 0x00000013 
+ 00019372  0x00002903 setflag  0x00000001 , 0x00000017 , 0x0000003f 
+ 00019373  0x00002904 istore  0x00000003 , 0x00000005 
+ 00019374  0x00002905 rshift8  0x00000005 , 0x0000003f 
+ 00019375  0x00002906 rtneq  0x0000001c 
+ 00019376  0x00002907 copy  0x00000030 , 0x00000002 
+ 00019377  0x00002908 xor_into  0x00000020 , 0x00000013 
+ 00019378  0x00002909 branch  0x00004ba1 
+ 00019379  0x0000290e branch  0x00004bc7 , 0x00000028 
+ 00019380  0x0000290f branch  0x00004bca , 0x0000002c 
+ 00019381  0x00002911 arg  0x00004826 , 0x00000002 
+ 00019382  0x00002912 fetch  0x00000001 , 0x00004825 
+ 00019383  0x00002913 iadd  0x00000002 , 0x0000003f 
+ 00019384  0x00002914 isub  0x00000011 , 0x0000003e 
+ 00019385  0x00002915 branch  0x00004bda , 0x00000005 
+ 00019386  0x00002916 ifetch  0x00000001 , 0x00000011 
+ 00019387  0x00002917 copy  0x00000006 , 0x00000011 
+ 00019388  0x00002918 bbit0  0x00000007 , 0x00004bc1 
+ 00019389  0x00002919 enable  0x0000002c 
+ 00019390  0x0000291a and  0x0000003f , 0x0000007f , 0x00000012 
+ 00019391  0x0000291b lshift3  0x00000011 , 0x00000011 
+ 00019392  0x0000291c branch  0x00004bca 
+ 00019393  0x0000291e rshift4  0x0000003f , 0x00000008 
+ 00019394  0x0000291f and_into  0x0000000f , 0x0000003f 
+ 00019395  0x00002920 isub  0x00000008 , 0x0000003e 
+ 00019396  0x00002921 rtn  0x00000005 
+ 00019397  0x00002922 enable  0x00000028 
+ 00019398  0x00002923 rtn 
+ 00019399  0x00002925 deposit  0x00000008 
+ 00019400  0x00002926 disable  0x00000028 
+ 00019401  0x00002927 rtn 
+ 00019402  0x00002929 deposit  0x00000012 
+ 00019403  0x0000292a branch  0x00004bd6 , 0x00000034 
+ 00019404  0x0000292b and  0x00000011 , 0x00000007 , 0x00000007 
+ 00019405  0x0000292c rshift3  0x00000011 , 0x00000006 
+ 00019406  0x0000292d ifetch  0x00000001 , 0x00000006 
+ 00019407  0x0000292e increase  0x00000001 , 0x00000011 
+ 00019408  0x0000292f increase  0xffffffff , 0x00000012 
+ 00019409  0x00002930 qisolate0  0x0000003f 
+ 00019410  0x00002931 fetch  0x00000001 , 0x00004807 
+ 00019411  0x00002932 branch  0x00004bc1 , 0x00000001 
+ 00019412  0x00002933 fetch  0x00000001 , 0x00004808 
+ 00019413  0x00002934 branch  0x00004bc1 
+ 00019414  0x00002936 disable  0x0000002c 
+ 00019415  0x00002937 increase  0x00000007 , 0x00000011 
+ 00019416  0x00002938 rshift3  0x00000011 , 0x00000011 
+ 00019417  0x00002939 branch  0x00004bb5 
+ 00019418  0x0000293b setarg  0x000000ff 
+ 00019419  0x0000293c rtn 
+ 00019420  0x00002940 lshift  0x0000003f , 0x00000006 
+ 00019421  0x00002941 iadd  0x00000006 , 0x0000003f 
+ 00019422  0x00002942 arg  0x00004809 , 0x00000006 
+ 00019423  0x00002943 iadd  0x00000006 , 0x00000006 
+ 00019424  0x00002944 ifetch  0x00000003 , 0x00000006 
+ 00019425  0x00002945 rtn 
+ 00019426  0x00002949 enable  0x00000010 
+ 00019427  0x0000294a iforce  0x00000039 
+ 00019428  0x0000294c disable  0x00000028 
+ 00019429  0x0000294d disable  0x0000002c 
+ 00019430  0x0000294e arg  0x00004826 , 0x00000011 
+ 00019431  0x00002950 call  0x00004bb3 
+ 00019432  0x00002951 beq  0x000000ff , 0x00004bf1 
+ 00019433  0x00002952 call  0x00004bdc 
+ 00019434  0x00002953 bbit0  0x00000017 , 0x00004bed 
+ 00019435  0x00002954 set0  0x00000017 , 0x0000003f 
+ 00019436  0x00002955 hjam  0x0000009e , 0x000080a0 
+ 00019437  0x00002957 iforce  0x0000001b 
+ 00019438  0x00002958 until  0x0000003e , 0x00000003 
+ 00019439  0x00002959 hjam  0x00000000 , 0x000080a0 
+ 00019440  0x0000295a branch  0x00004be7 
+ 00019441  0x0000295c loop  0x00004be4 
+ 00019442  0x0000295d rtn 
+ 00019443  0x00002964 call  0x00004c21 
+ 00019444  0x00002965 setarg  0x00004d21 
+ 00019445  0x00002966 store  0x00000002 , 0x00004290 
+ 00019446  0x00002967 setarg  0x00004c59 
+ 00019447  0x00002968 store  0x00000002 , 0x0000428e 
+ 00019448  0x00002969 setarg  0x00004d37 
+ 00019449  0x0000296a store  0x00000002 , 0x00004292 
+ 00019450  0x0000296b setarg  0x00004d7e 
+ 00019451  0x0000296c store  0x00000002 , 0x0000428a 
+ 00019452  0x0000296d setarg  0x00004d7b 
+ 00019453  0x0000296e store  0x00000002 , 0x00004294 
+ 00019454  0x0000296f setarg  0x00004d7e 
+ 00019455  0x00002970 store  0x00000002 , 0x00004288 
+ 00019456  0x00002971 setarg  0x00004d22 
+ 00019457  0x00002972 store  0x00000002 , 0x00004286 
+ 00019458  0x00002973 rtn  0x0000002b 
+ 00019459  0x00002975 fetch  0x00000002 , 0x000047f4 
+ 00019460  0x00002976 bbit1  0x0000000c , 0x00003f79 
+ 00019461  0x00002977 call  0x00003f23 
+ 00019462  0x00002978 branch  0x00004d79 , 0x00000034 
+ 00019463  0x00002979 call  0x00003f7e 
+ 00019464  0x0000297a branch  0x00003f6e 
+ 00019465  0x0000297e call  0x00004c21 
+ 00019466  0x0000297f setarg  0x00004d21 
+ 00019467  0x00002980 store  0x00000002 , 0x00004290 
+ 00019468  0x00002981 setarg  0x00004c59 
+ 00019469  0x00002982 store  0x00000002 , 0x0000428e 
+ 00019470  0x00002983 setarg  0x00004d37 
+ 00019471  0x00002984 store  0x00000002 , 0x00004292 
+ 00019472  0x00002985 setarg  0x00004d7e 
+ 00019473  0x00002986 store  0x00000002 , 0x0000428a 
+ 00019474  0x00002987 setarg  0x00004d7b 
+ 00019475  0x00002988 store  0x00000002 , 0x00004294 
+ 00019476  0x00002989 setarg  0x00004d7e 
+ 00019477  0x0000298a store  0x00000002 , 0x00004288 
+ 00019478  0x0000298b setarg  0x00004d22 
+ 00019479  0x0000298c store  0x00000002 , 0x00004286 
+ 00019480  0x0000298d rtn  0x0000002b 
+ 00019481  0x0000298f jam  0x00000000 , 0x000007dc 
+ 00019482  0x00002990 jam  0x00000000 , 0x000007dd 
+ 00019483  0x00002992 fetch  0x00000002 , 0x000047f4 
+ 00019484  0x00002993 bbit1  0x0000000c , 0x00003f79 
+ 00019485  0x00002994 call  0x00003f23 
+ 00019486  0x00002995 branch  0x00004d79 , 0x00000034 
+ 00019487  0x00002996 call  0x00003f7e 
+ 00019488  0x00002997 branch  0x00003f6e 
+ 00019489  0x0000299c set1  0x00000025 , 0x00000000 
+ 00019490  0x0000299d bpatch  0x000000b6 , 0x00004036 
+ 00019491  0x0000299f fetch  0x00000001 , 0x00008140 
+ 00019492  0x000029a0 branch  0x00003bf1 , 0x00000034 
+ 00019493  0x000029a1 hjam  0x00000000 , 0x00008070 
+ 00019494  0x000029a2 hjam  0x000000ff , 0x00008078 
+ 00019495  0x000029a4 hjam  0x000000ff , 0x00008071 
+ 00019496  0x000029a5 hjam  0x000000ff , 0x00008072 
+ 00019497  0x000029a6 hfetch  0x00000001 , 0x00008073 
+ 00019498  0x000029a7 or_into  0x0000000f , 0x0000003f 
+ 00019499  0x000029a8 hstore  0x00000001 , 0x00008073 
+ 00019500  0x000029aa hjam  0x00000000 , 0x00008080 
+ 00019501  0x000029ab hjam  0x00000000 , 0x00008081 
+ 00019502  0x000029ac hjam  0x000000ff , 0x00008083 
+ 00019503  0x000029ad hjam  0x000000ff , 0x00008084 
+ 00019504  0x000029ae hfetch  0x00000001 , 0x00008085 
+ 00019505  0x000029af or_into  0x00000003 , 0x0000003f 
+ 00019506  0x000029b0 hstore  0x00000001 , 0x00008085 
+ 00019507  0x000029b1 hjam  0x00000000 , 0x0000806f 
+ 00019508  0x000029b2 setarg  0x00000013 
+ 00019509  0x000029b3 lshift3  0x0000003f , 0x0000003f 
+ 00019510  0x000029b4 add  0x0000003f , 0x00000007 , 0x0000003f 
+ 00019511  0x000029b5 hstore  0x00000001 , 0x00008064 
+ 00019512  0x000029b7 hfetch  0x00000001 , 0x00008043 
+ 00019513  0x000029b8 set1  0x00000002 , 0x0000003f 
+ 00019514  0x000029b9 hstore  0x00000001 , 0x00008043 
+ 00019515  0x000029ba hfetch  0x00000001 , 0x00008051 
+ 00019516  0x000029bb set0  0x00000001 , 0x0000003f 
+ 00019517  0x000029bc hstore  0x00000001 , 0x00008051 
+ 00019518  0x000029bd hjam  0x0000000d , 0x00008063 
+ 00019519  0x000029be hjam  0x000000d3 , 0x00008067 
+ 00019520  0x000029bf hjam  0x00000000 , 0x00008065 
+ 00019521  0x000029c0 hjam  0x00000031 , 0x00008066 
+ 00019522  0x000029c1 call  0x00003e0b 
+ 00019523  0x000029c2 fetcht  0x00000001 , 0x0000480e 
+ 00019524  0x000029c3 call  0x000069da 
+ 00019525  0x000029c4 fetcht  0x00000001 , 0x0000480f 
+ 00019526  0x000029c5 call  0x000069da 
+ 00019527  0x000029c6 fetcht  0x00000001 , 0x00004810 
+ 00019528  0x000029c7 call  0x000069da 
+ 00019529  0x000029c8 rtn 
+ 00019530  0x000029cb set1  0x00000025 , 0x00000000 
+ 00019531  0x000029cc bpatch  0x000000b7 , 0x00004036 
+ 00019532  0x000029cd ifetch  0x00000001 , 0x00000006 
+ 00019533  0x000029ce copy  0x0000003f , 0x00000011 
+ 00019534  0x000029cf fetcht  0x00000001 , 0x0000480f 
+ 00019535  0x000029d0 isolate1  0x00000000 , 0x00000011 
+ 00019536  0x000029d1 call  0x000069f0 
+ 00019537  0x000029d2 fetcht  0x00000001 , 0x0000480e 
+ 00019538  0x000029d3 isolate1  0x00000001 , 0x00000011 
+ 00019539  0x000029d4 call  0x000069f0 
+ 00019540  0x000029d5 fetcht  0x00000001 , 0x00004810 
+ 00019541  0x000029d6 isolate1  0x00000002 , 0x00000011 
+ 00019542  0x000029d7 call  0x000069f0 
+ 00019543  0x000029d8 jam  0x00000001 , 0x00004809 
+ 00019544  0x000029d9 rtn 
+ 00019545  0x000029de call  0x00004c99 
+ 00019546  0x000029df nrtn  0x00000028 
+ 00019547  0x000029e0 nrtn  0x0000002c 
+ 00019548  0x000029e2 fetch  0x00000001 , 0x00000450 
+ 00019549  0x000029e3 beq  0x00000001 , 0x00004c69 
+ 00019550  0x000029e4 fetch  0x00000001 , 0x000042bc 
+ 00019551  0x000029e5 rtnne  0x0000003f 
+ 00019552  0x000029e7 arg  0x0000000a , 0x00000011 
+ 00019553  0x000029e8 call  0x00004b2c 
+ 00019554  0x000029e9 fetch  0x00000002 , 0x000042b7 
+ 00019555  0x000029ea istore  0x00000002 , 0x00000005 
+ 00019556  0x000029eb setarg  0x000001a1 
+ 00019557  0x000029ec istore  0x00000002 , 0x00000005 
+ 00019558  0x000029ed fetch  0x00000008 , 0x00004800 
+ 00019559  0x000029ee istore  0x00000008 , 0x00000005 
+ 00019560  0x000029ef rtn 
+ 00019561  0x000029f2 fetcht  0x00000001 , 0x0000054f 
+ 00019562  0x000029f3 setarg  0x00000550 
+ 00019563  0x000029f4 iadd  0x00000002 , 0x00000005 
+ 00019564  0x000029f5 fetch  0x00000001 , 0x00004802 
+ 00019565  0x000029f6 branch  0x00004c72 , 0x00000034 
+ 00019566  0x000029f7 beq  0x0000002a , 0x00004c74 
+ 00019567  0x000029f8 bne  0x00000028 , 0x00004c7e 
+ 00019568  0x000029f9 storet  0x00000001 , 0x0000054f 
+ 00019569  0x000029fa branch  0x00003f6a 
+ 00019570  0x000029fd storet  0x00000001 , 0x0000054f 
+ 00019571  0x000029fe rtn 
+ 00019572  0x00002a00 fetch  0x00000001 , 0x0000054f 
+ 00019573  0x00002a01 rtn  0x00000034 
+ 00019574  0x00002a02 increase  0xffffffff , 0x0000003f 
+ 00019575  0x00002a03 store  0x00000001 , 0x0000054f 
+ 00019576  0x00002a04 arg  0x00000550 , 0x00000005 
+ 00019577  0x00002a05 iadd  0x00000005 , 0x00000005 
+ 00019578  0x00002a06 setarg  0x00000000 
+ 00019579  0x00002a07 istore  0x00000001 , 0x00000005 
+ 00019580  0x00002a08 enable  0x0000002c 
+ 00019581  0x00002a09 branch  0x00004c8d 
+ 00019582  0x00002a0b sub  0x0000003f , 0x0000001d , 0x0000003e 
+ 00019583  0x00002a0c rtn  0x00000002 
+ 00019584  0x00002a0d arg  0x00000030 , 0x00000002 
+ 00019585  0x00002a0e sub  0x0000003f , 0x00000027 , 0x0000003e 
+ 00019586  0x00002a0f nrtn  0x00000002 
+ 00019587  0x00002a10 branch  0x00004c87 , 0x00000005 
+ 00019588  0x00002a11 arg  0x0000001d , 0x00000002 
+ 00019589  0x00002a12 isub  0x00000002 , 0x00000002 
+ 00019590  0x00002a13 or_into  0x00000030 , 0x00000002 
+ 00019591  0x00002a15 istoret  0x00000001 , 0x00000005 
+ 00019592  0x00002a16 fetch  0x00000001 , 0x0000054f 
+ 00019593  0x00002a17 increase  0x00000001 , 0x0000003f 
+ 00019594  0x00002a18 store  0x00000001 , 0x0000054f 
+ 00019595  0x00002a19 disable  0x0000002c 
+ 00019596  0x00002a1a branch  0x00004c8d 
+ 00019597  0x00002a1d fetch  0x00000002 , 0x000042b7 
+ 00019598  0x00002a1e rtn  0x00000034 
+ 00019599  0x00002a1f arg  0x00000003 , 0x00000011 
+ 00019600  0x00002a20 call  0x00004b2c 
+ 00019601  0x00002a21 fetch  0x00000002 , 0x000042b7 
+ 00019602  0x00002a22 istore  0x00000002 , 0x00000005 
+ 00019603  0x00002a23 setarg  0x0000ffa1 
+ 00019604  0x00002a24 istore  0x00000002 , 0x00000005 
+ 00019605  0x00002a25 setarg  0x00000000 
+ 00019606  0x00002a26 setflag  0x0000002c , 0x00000000 , 0x0000003f 
+ 00019607  0x00002a27 istore  0x00000001 , 0x00000005 
+ 00019608  0x00002a28 rtn 
+ 00019609  0x00002a2d disable  0x00000028 
+ 00019610  0x00002a2e disable  0x0000002c 
+ 00019611  0x00002a2f hfetch  0x00000001 , 0x00008119 
+ 00019612  0x00002a30 rtnbit1  0x00000000 
+ 00019613  0x00002a33 hfetch  0x00000001 , 0x0000811b 
+ 00019614  0x00002a34 bbit1  0x00000000 , 0x00004ca3 
+ 00019615  0x00002a35 hfetch  0x00000001 , 0x00008119 
+ 00019616  0x00002a36 bbit0  0x00000006 , 0x00004ca3 
+ 00019617  0x00002a37 hfetch  0x00000001 , 0x0000811a 
+ 00019618  0x00002a38 branch  0x00004c99 
+ 00019619  0x00002a3b enable  0x00000028 
+ 00019620  0x00002a3c enable  0x0000002c 
+ 00019621  0x00002a3d hfetch  0x00000001 , 0x0000811b 
+ 00019622  0x00002a3e isolate0  0x00000000 , 0x0000003f 
+ 00019623  0x00002a3f hfetch  0x00000001 , 0x0000811a 
+ 00019624  0x00002a40 arg  0x00004811 , 0x00000006 
+ 00019625  0x00002a41 iadd  0x00000006 , 0x00000006 
+ 00019626  0x00002a42 ifetch  0x00000001 , 0x00000006 
+ 00019627  0x00002a43 bbit1  0x00000007 , 0x00004ce4 
+ 00019628  0x00002a44 nbranch  0x00004ccc , 0x00000001 
+ 00019629  0x00002a45 disable  0x0000002c 
+ 00019630  0x00002a46 iforce  0x00000002 
+ 00019631  0x00002a47 fetch  0x00000001 , 0x00004808 
+ 00019632  0x00002a48 sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00019633  0x00002a49 nrtn  0x00000002 
+ 00019634  0x00002a4a copy  0x0000003f , 0x00000011 
+ 00019635  0x00002a4b arg  0x00000003 , 0x00000039 
+ 00019636  0x00002a4c arg  0x00004802 , 0x00000006 
+ 00019637  0x00002a4e ifetch  0x00000001 , 0x00000006 
+ 00019638  0x00002a4f isub  0x00000002 , 0x0000003e 
+ 00019639  0x00002a50 branch  0x00004c99 , 0x00000005 
+ 00019640  0x00002a51 loop  0x00004cb5 
+ 00019641  0x00002a53 copy  0x00000011 , 0x0000003f 
+ 00019642  0x00002a54 arg  0x00004802 , 0x00000005 
+ 00019643  0x00002a55 iadd  0x00000005 , 0x00000005 
+ 00019644  0x00002a56 istoret  0x00000001 , 0x00000005 
+ 00019645  0x00002a57 increase  0x00000001 , 0x0000003f 
+ 00019646  0x00002a58 store  0x00000001 , 0x00004808 
+ 00019647  0x00002a59 hfetch  0x00000001 , 0x0000811b 
+ 00019648  0x00002a5a rshift3  0x0000003f , 0x0000003f 
+ 00019649  0x00002a5b nbranch  0x00004cc3 , 0x00000034 
+ 00019650  0x00002a5c branch  0x00004cca 
+ 00019651  0x00002a5f increase  0xffffffff , 0x0000003f 
+ 00019652  0x00002a60 branch  0x00004cca , 0x00000005 
+ 00019653  0x00002a61 hfetch  0x00000001 , 0x0000811b 
+ 00019654  0x00002a62 and_into  0x00000001 , 0x0000003f 
+ 00019655  0x00002a63 beq  0x00000000 , 0x00004c99 
+ 00019656  0x00002a64 beq  0x00000001 , 0x00004cca 
+ 00019657  0x00002a65 rtn 
+ 00019658  0x00002a67 enable  0x0000002c 
+ 00019659  0x00002a68 rtn 
+ 00019660  0x00002a6b and  0x0000003f , 0x000000ff , 0x00000002 
+ 00019661  0x00002a6c fetch  0x00000001 , 0x00004808 
+ 00019662  0x00002a6d rtn  0x00000034 
+ 00019663  0x00002a6e iforce  0x00000039 
+ 00019664  0x00002a6f arg  0x00004802 , 0x00000006 
+ 00019665  0x00002a71 ifetch  0x00000001 , 0x00000006 
+ 00019666  0x00002a72 isub  0x00000002 , 0x0000003e 
+ 00019667  0x00002a73 branch  0x00004cd6 , 0x00000005 
+ 00019668  0x00002a74 loop  0x00004cd1 
+ 00019669  0x00002a75 rtn 
+ 00019670  0x00002a77 add  0x00000006 , 0xffffffff , 0x00000005 
+ 00019671  0x00002a78 call  0x00007e45 
+ 00019672  0x00002a79 fetch  0x00000001 , 0x00004808 
+ 00019673  0x00002a7a increase  0xffffffff , 0x0000003f 
+ 00019674  0x00002a7b store  0x00000001 , 0x00004808 
+ 00019675  0x00002a7c hfetch  0x00000001 , 0x0000811b 
+ 00019676  0x00002a7d rshift3  0x0000003f , 0x0000003f 
+ 00019677  0x00002a7e nbranch  0x00004cdf , 0x00000034 
+ 00019678  0x00002a7f rtn 
+ 00019679  0x00002a82 hfetch  0x00000001 , 0x0000811b 
+ 00019680  0x00002a83 and_into  0x00000001 , 0x0000003f 
+ 00019681  0x00002a84 beq  0x00000000 , 0x00004cca 
+ 00019682  0x00002a85 beq  0x00000001 , 0x00004c99 
+ 00019683  0x00002a86 rtn 
+ 00019684  0x00002a89 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00019685  0x00002a8a fetch  0x00000001 , 0x00004800 
+ 00019686  0x00002a8b qsetflag  0x00000001 , 0x0000003f 
+ 00019687  0x00002a8c store  0x00000001 , 0x00004800 
+ 00019688  0x00002a8d rtn 
+ 00019689  0x00002a90 setarg  0x00000000 
+ 00019690  0x00002a91 store  0x00000008 , 0x00004800 
+ 00019691  0x00002a92 store  0x00000001 , 0x00004808 
+ 00019692  0x00002a93 rtn 
+ 00019693  0x00002a96 hfetch  0x00000001 , 0x0000811b 
+ 00019694  0x00002a97 hfetch  0x00000001 , 0x0000811a 
+ 00019695  0x00002a98 hfetch  0x00000001 , 0x00008119 
+ 00019696  0x00002a99 bbit0  0x00000000 , 0x00004ced 
+ 00019697  0x00002a9a setarg  0x000000ff 
+ 00019698  0x00002a9b enable  0x00000028 
+ 00019699  0x00002a9c rtn 
+ 00019700  0x00002a9f fetcht  0x00000002 , 0x000044c2 
+ 00019701  0x00002aa0 call  0x00005866 
+ 00019702  0x00002aa1 rtnbit0  0x00000000 
+ 00019703  0x00002aa2 fetch  0x00000001 , 0x000046f8 
+ 00019704  0x00002aa3 rtnbit0  0x00000000 
+ 00019705  0x00002aa4 call  0x0000561c 
+ 00019706  0x00002aa5 nrtn  0x00000034 
+ 00019707  0x00002aa6 call  0x00004c99 
+ 00019708  0x00002aa7 nrtn  0x00000028 
+ 00019709  0x00002aa8 nrtn  0x0000002c 
+ 00019710  0x00002aaa call  0x00003f5e 
+ 00019711  0x00002aab jam  0x00000002 , 0x00004213 
+ 00019712  0x00002aac fetcht  0x00000002 , 0x000044c2 
+ 00019713  0x00002aad call  0x00005a88 
+ 00019714  0x00002aae add  0x00000006 , 0x00000001 , 0x00000005 
+ 00019715  0x00002aaf fetch  0x00000008 , 0x00004800 
+ 00019716  0x00002ab0 istore  0x00000008 , 0x00000005 
+ 00019717  0x00002ab1 jam  0x0000001b , 0x00000b7d 
+ 00019718  0x00002ab2 call  0x00005620 
+ 00019719  0x00002ab3 fetch  0x00000001 , 0x000003e4 
+ 00019720  0x00002ab4 bbit1  0x00000003 , 0x00003bf2 
+ 00019721  0x00002ab5 rtn 
+ 00019722  0x00002ab7 copy  0x00000013 , 0x0000003f 
+ 00019723  0x00002ab8 beq  0x00000010 , 0x00004d15 
+ 00019724  0x00002aba beq  0x00000014 , 0x00004d13 
+ 00019725  0x00002abb beq  0x00000028 , 0x00004d11 
+ 00019726  0x00002abc beq  0x00000029 , 0x00004d11 
+ 00019727  0x00002abd beq  0x0000002e , 0x00003f57 
+ 00019728  0x00002abe rtn 
+ 00019729  0x00002ac1 call  0x00003fa4 
+ 00019730  0x00002ac2 branch  0x00003f92 
+ 00019731  0x00002ac4 call  0x00004ced 
+ 00019732  0x00002ac5 branch  0x00004ce9 
+ 00019733  0x00002ac8 call  0x00005b30 
+ 00019734  0x00002ac9 call  0x00003f90 
+ 00019735  0x00002aca call  0x00003f88 
+ 00019736  0x00002acb branch  0x00003f94 
+ 00019737  0x00002ace fetch  0x00000001 , 0x0000442e 
+ 00019738  0x00002acf rtn  0x00000034 
+ 00019739  0x00002ad0 increase  0xffffffff , 0x0000003f 
+ 00019740  0x00002ad1 store  0x00000001 , 0x0000442e 
+ 00019741  0x00002ad2 nrtn  0x00000034 
+ 00019742  0x00002ad3 fetch  0x00000001 , 0x000044db 
+ 00019743  0x00002ad4 rtn  0x00000034 
+ 00019744  0x00002ad5 branch  0x00003f98 
+ 00019745  0x00002ad9 branch  0x00004d2e 
+ 00019746  0x00002add hfetch  0x00000003 , 0x0000811c 
+ 00019747  0x00002ade copy  0x0000003f , 0x00000012 
+ 00019748  0x00002adf hfetch  0x00000001 , 0x0000811f 
+ 00019749  0x00002ae0 and_into  0x0000000f , 0x0000003f 
+ 00019750  0x00002ae1 lshift16  0x0000003f , 0x0000003f 
+ 00019751  0x00002ae2 lshift8  0x0000003f , 0x0000003f 
+ 00019752  0x00002ae3 ior  0x00000012 , 0x0000003f 
+ 00019753  0x00002ae4 fetcht  0x00000004 , 0x0000480a 
+ 00019754  0x00002ae5 isub  0x00000002 , 0x0000003f 
+ 00019755  0x00002ae6 rtn  0x00000034 
+ 00019756  0x00002ae7 arg  0x000000bb , 0x00000012 
+ 00019757  0x00002ae8 branch  0x00003f5e 
+ 00019758  0x00002aec fetch  0x00000001 , 0x00004133 
+ 00019759  0x00002aed nrtn  0x00000034 
+ 00019760  0x00002aee fetch  0x00000001 , 0x0000427f 
+ 00019761  0x00002aef nrtn  0x00000034 
+ 00019762  0x00002af0 fetch  0x00000001 , 0x000047ea 
+ 00019763  0x00002af1 rtn  0x00000034 
+ 00019764  0x00002af2 fetch  0x00000001 , 0x000047eb 
+ 00019765  0x00002af3 nrtn  0x00000034 
+ 00019766  0x00002af4 branch  0x00003f9a 
+ 00019767  0x00002af7 copy  0x00000013 , 0x0000003f 
+ 00019768  0x00002af8 beq  0x00000006 , 0x00004d8b 
+ 00019769  0x00002af9 beq  0x0000000a , 0x00004d7c 
+ 00019770  0x00002afa beq  0x00000006 , 0x00004d8f 
+ 00019771  0x00002afb beq  0x00000010 , 0x00004d68 
+ 00019772  0x00002afc beq  0x0000002e , 0x00003f57 
+ 00019773  0x00002afd beq  0x00000001 , 0x00004d77 
+ 00019774  0x00002afe beq  0x00000002 , 0x00004d51 
+ 00019775  0x00002b00 beq  0x00000004 , 0x00004d4e 
+ 00019776  0x00002b01 beq  0x00000013 , 0x00004d4e 
+ 00019777  0x00002b02 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00019778  0x00002b03 and_into  0x000000f0 , 0x0000003f 
+ 00019779  0x00002b04 beq  0x00000050 , 0x00004d45 
+ 00019780  0x00002b05 rtn 
+ 00019781  0x00002b08 set1  0x00000025 , 0x00000000 
+ 00019782  0x00002b09 bpatch  0x000000b8 , 0x00004037 
+ 00019783  0x00002b0a storet  0x00000001 , 0x00000259 
+ 00019784  0x00002b0c fetch  0x00000001 , 0x00000259 
+ 00019785  0x00002b0d rtn  0x00000034 
+ 00019786  0x00002b0e increase  0xffffffff , 0x0000003f 
+ 00019787  0x00002b0f store  0x00000001 , 0x00000259 
+ 00019788  0x00002b11 call  0x00004d62 
+ 00019789  0x00002b12 branch  0x00004d48 
+ 00019790  0x00002b15 fetch  0x00000002 , 0x000047f4 
+ 00019791  0x00002b16 bbit1  0x0000000c , 0x00004d79 
+ 00019792  0x00002b17 branch  0x00003f10 
+ 00019793  0x00002b1b set1  0x00000025 , 0x00000000 
+ 00019794  0x00002b1c bpatch  0x000000b9 , 0x00004037 
+ 00019795  0x00002b1d call  0x00004d59 
+ 00019796  0x00002b1e fetch  0x00000002 , 0x000042a0 
+ 00019797  0x00002b20 bbit1  0x00000000 , 0x00003f12 
+ 00019798  0x00002b21 bbit1  0x00000001 , 0x00004d5c 
+ 00019799  0x00002b22 bbit1  0x00000002 , 0x00004d5f 
+ 00019800  0x00002b23 branch  0x00004d79 
+ 00019801  0x00002b25 jam  0x00000000 , 0x0000425e 
+ 00019802  0x00002b26 jam  0x00000000 , 0x0000448b 
+ 00019803  0x00002b27 rtn 
+ 00019804  0x00002b2a bbit1  0x00000005 , 0x00003f10 
+ 00019805  0x00002b2b bbit1  0x00000003 , 0x00003f10 
+ 00019806  0x00002b2c branch  0x00004d79 
+ 00019807  0x00002b2e fetch  0x00000002 , 0x000047f4 
+ 00019808  0x00002b2f bbit1  0x0000000c , 0x00004d79 
+ 00019809  0x00002b30 branch  0x00003f10 
+ 00019810  0x00002b35 fetch  0x00000001 , 0x000047f2 
+ 00019811  0x00002b36 rtn  0x00000034 
+ 00019812  0x00002b37 increase  0xffffffff , 0x0000003f 
+ 00019813  0x00002b38 store  0x00000001 , 0x000047f2 
+ 00019814  0x00002b39 nrtn  0x00000034 
+ 00019815  0x00002b3a branch  0x00004d8f 
+ 00019816  0x00002b3e call  0x00004d6a 
+ 00019817  0x00002b3f branch  0x00004d79 
+ 00019818  0x00002b42 set1  0x00000025 , 0x00000000 
+ 00019819  0x00002b43 bpatch  0x000000ba , 0x00004037 
+ 00019820  0x00002b44 fetch  0x00000002 , 0x000047f4 
+ 00019821  0x00002b45 isolate1  0x00000007 , 0x0000003f 
+ 00019822  0x00002b46 call  0x00003f75 , 0x00000001 
+ 00019823  0x00002b47 fetch  0x00000002 , 0x000047fe 
+ 00019824  0x00002b48 store  0x00000002 , 0x000047f0 
+ 00019825  0x00002b49 fetch  0x00000002 , 0x000042a2 
+ 00019826  0x00002b4a set1  0x00000000 , 0x0000003f 
+ 00019827  0x00002b4b store  0x00000002 , 0x000042a2 
+ 00019828  0x00002b4c fetch  0x00000002 , 0x000047f4 
+ 00019829  0x00002b4d bbit1  0x00000000 , 0x00003f77 
+ 00019830  0x00002b4e rtn 
+ 00019831  0x00002b52 call  0x00003f7e 
+ 00019832  0x00002b53 branch  0x00003f98 
+ 00019833  0x00002b56 call  0x00003f7c 
+ 00019834  0x00002b57 branch  0x00003f94 
+ 00019835  0x00002b5a branch  0x00003f9a 
+ 00019836  0x00002b5d jam  0x00000000 , 0x0000054f 
+ 00019837  0x00002b5e rtn 
+ 00019838  0x00002b64 hjam  0x00000000 , 0x00008083 
+ 00019839  0x00002b65 hjam  0x00000000 , 0x00008084 
+ 00019840  0x00002b66 hfetch  0x00000001 , 0x00008085 
+ 00019841  0x00002b67 and_into  0x000000f0 , 0x0000003f 
+ 00019842  0x00002b68 hstore  0x00000001 , 0x00008085 
+ 00019843  0x00002b69 setarg  0x00000000 
+ 00019844  0x00002b6a store  0x00000004 , 0x000000a7 
+ 00019845  0x00002b6b setarg  0x000000ff 
+ 00019846  0x00002b6c fetcht  0x00000001 , 0x000047fd 
+ 00019847  0x00002b6d copy  0x00000002 , 0x00000007 
+ 00019848  0x00002b6e qset1  0x0000003f 
+ 00019849  0x00002b6f store  0x00000004 , 0x000000a3 
+ 00019850  0x00002b70 rtn 
+ 00019851  0x00002b73 setarg  0x00000002 
+ 00019852  0x00002b74 store  0x00000001 , 0x000047f2 
+ 00019853  0x00002b75 call  0x00004ced 
+ 00019854  0x00002b79 branch  0x00004ce9 
+ 00019855  0x00002b7b set1  0x00000025 , 0x00000000 
+ 00019856  0x00002b7c bpatch  0x000000bb , 0x00004037 
+ 00019857  0x00002b7d jam  0x00000001 , 0x0000427f 
+ 00019858  0x00002b7e call  0x00003fa4 
+ 00019859  0x00002b7f call  0x00003fa2 
+ 00019860  0x00002b81 setarg  0x00000000 
+ 00019861  0x00002b82 store  0x00000002 , 0x000047f0 
+ 00019862  0x00002b83 store  0x00000001 , 0x000047f2 
+ 00019863  0x00002b84 branch  0x00003f9e 
+ 00019864  0x00002b8c branch  0x00004d9d , 0x0000002b 
+ 00019865  0x00002b8e setarg  0x000043ce 
+ 00019866  0x00002b8f arg  0x000042af , 0x00000005 
+ 00019867  0x00002b90 isub  0x00000005 , 0x00000039 
+ 00019868  0x00002b91 call  0x00007e3f 
+ 00019869  0x00002b93 set1  0x00000025 , 0x00000000 
+ 00019870  0x00002b94 bpatch  0x00000016 , 0x00004022 
+ 00019871  0x00002b95 setarg  0x000004de 
+ 00019872  0x00002b96 arg  0x000004a9 , 0x00000005 
+ 00019873  0x00002b97 isub  0x00000005 , 0x00000039 
+ 00019874  0x00002b98 call  0x00007e3f 
+ 00019875  0x00002b99 setarg  0x00000330 
+ 00019876  0x00002b9a arg  0x000002c4 , 0x00000005 
+ 00019877  0x00002b9b isub  0x00000005 , 0x00000039 
+ 00019878  0x00002b9c call  0x00007e3f 
+ 00019879  0x00002b9d branch  0x0000532a 
+ 00019880  0x00002ba0 set1  0x00000025 , 0x00000000 
+ 00019881  0x00002ba1 bpatch  0x00000017 , 0x00004022 
+ 00019882  0x00002ba2 copy  0x00000006 , 0x00000002 
+ 00019883  0x00002ba5 copy  0x00000002 , 0x00000006 
+ 00019884  0x00002ba6 ifetch  0x00000002 , 0x00000006 
+ 00019885  0x00002ba7 store  0x00000002 , 0x000002cd 
+ 00019886  0x00002ba8 ifetch  0x00000002 , 0x00000006 
+ 00019887  0x00002ba9 store  0x00000002 , 0x000002cf 
+ 00019888  0x00002baa deposit  0x00000006 
+ 00019889  0x00002bab store  0x00000002 , 0x000002cb 
+ 00019890  0x00002bac fetch  0x00000001 , 0x000047f3 
+ 00019891  0x00002bad beq  0x00000000 , 0x00004db5 
+ 00019892  0x00002bae branch  0x000050fa 
+ 00019893  0x00002bb1 set1  0x00000025 , 0x00000000 
+ 00019894  0x00002bb2 bpatch  0x00000018 , 0x00004023 
+ 00019895  0x00002bb3 fetch  0x00000002 , 0x000002cd 
+ 00019896  0x00002bb4 branch  0x00004dfc , 0x00000034 
+ 00019897  0x00002bb5 fetch  0x00000001 , 0x000002cf 
+ 00019898  0x00002bb6 beq  0x00000001 , 0x00004dc0 
+ 00019899  0x00002bb8 beq  0x00000050 , 0x00004de7 
+ 00019900  0x00002bb9 beq  0x00000051 , 0x00004df4 
+ 00019901  0x00002bba beq  0x00000052 , 0x00004df2 
+ 00019902  0x00002bbb beq  0x00000053 , 0x00004df2 
+ 00019903  0x00002bbc branch  0x00004dfc 
+ 00019904  0x00002bbf call  0x0000527a 
+ 00019905  0x00002bc0 nrtn  0x00000034 
+ 00019906  0x00002bc1 jam  0x00000000 , 0x000043cd 
+ 00019907  0x00002bc3 call  0x000052c4 
+ 00019908  0x00002bc4 call  0x00004e01 
+ 00019909  0x00002bc5 fetcht  0x00000002 , 0x000002d6 
+ 00019910  0x00002bc6 branch  0x00004dfb , 0x00000034 
+ 00019911  0x00002bc7 call  0x000052ce 
+ 00019912  0x00002bc8 fetch  0x00000002 , 0x000002d6 
+ 00019913  0x00002bc9 istore  0x00000002 , 0x00000005 
+ 00019914  0x00002bca force  0x00000001 , 0x0000003f 
+ 00019915  0x00002bcb istore  0x00000002 , 0x00000005 
+ 00019916  0x00002bcc branch  0x00004dfc 
+ 00019917  0x00002bcf fetch  0x00000001 , 0x00004132 
+ 00019918  0x00002bd0 rtneq  0x00000001 
+ 00019919  0x00002bd1 fetch  0x00000001 , 0x000043cd 
+ 00019920  0x00002bd2 rtn  0x00000034 
+ 00019921  0x00002bd3 copy  0x0000003f , 0x00000011 
+ 00019922  0x00002bd4 fetch  0x00000004 , 0x0000033c 
+ 00019923  0x00002bd5 arg  0x00000100 , 0x00000002 
+ 00019924  0x00002bd6 iadd  0x00000002 , 0x00000002 
+ 00019925  0x00002bd7 copy  0x00000022 , 0x0000003f 
+ 00019926  0x00002bd8 isub  0x00000002 , 0x0000003e 
+ 00019927  0x00002bd9 nrtn  0x00000002 
+ 00019928  0x00002bda jam  0x00000000 , 0x000043cd 
+ 00019929  0x00002bdb copy  0x00000011 , 0x0000003f 
+ 00019930  0x00002bdc beq  0x00000050 , 0x00004ddc 
+ 00019931  0x00002bdd branch  0x00003bf1 
+ 00019932  0x00002bdf call  0x000052c4 
+ 00019933  0x00002be0 call  0x00004e84 
+ 00019934  0x00002be1 call  0x000052d0 
+ 00019935  0x00002be2 call  0x00007e1c 
+ 00019936  0x00002be3 call  0x00004eb7 
+ 00019937  0x00002be4 call  0x000052ce 
+ 00019938  0x00002be6 setarg  0x0000000c 
+ 00019939  0x00002be7 istore  0x00000002 , 0x00000005 
+ 00019940  0x00002be8 force  0x00000001 , 0x0000003f 
+ 00019941  0x00002be9 istore  0x00000002 , 0x00000005 
+ 00019942  0x00002bea branch  0x00004dfc 
+ 00019943  0x00002bed call  0x0000527e 
+ 00019944  0x00002bee nrtn  0x00000034 
+ 00019945  0x00002bef call  0x000052d2 
+ 00019946  0x00002bf0 call  0x00006f72 
+ 00019947  0x00002bf1 call  0x000052dc 
+ 00019948  0x00002bf2 fetch  0x00000002 , 0x000002dc 
+ 00019949  0x00002bf3 branch  0x00004dfb , 0x00000034 
+ 00019950  0x00002bf4 istore  0x00000002 , 0x00000005 
+ 00019951  0x00002bf5 fetch  0x00000002 , 0x000042b1 
+ 00019952  0x00002bf6 istore  0x00000002 , 0x00000005 
+ 00019953  0x00002bf7 branch  0x00004dfc 
+ 00019954  0x00002bfa call  0x00004af8 
+ 00019955  0x00002bfb branch  0x00004dfc 
+ 00019956  0x00002bfe set1  0x00000025 , 0x00000000 
+ 00019957  0x00002bff bpatch  0x00000019 , 0x00004023 
+ 00019958  0x00002c00 jam  0x00000000 , 0x000002eb 
+ 00019959  0x00002c01 call  0x00006bdc 
+ 00019960  0x00002c02 fetch  0x00000001 , 0x000002eb 
+ 00019961  0x00002c03 rtneq  0x00000001 
+ 00019962  0x00002c04 branch  0x00004dfc 
+ 00019963  0x00002c06 call  0x0000526f 
+ 00019964  0x00002c09 setarg  0x00000000 
+ 00019965  0x00002c0a store  0x00000002 , 0x000002cd 
+ 00019966  0x00002c0b store  0x00000002 , 0x000002cf 
+ 00019967  0x00002c0c jam  0x00000001 , 0x000002d1 
+ 00019968  0x00002c0d rtn 
+ 00019969  0x00002c10 set1  0x00000025 , 0x00000000 
+ 00019970  0x00002c11 bpatch  0x0000001a , 0x00004023 
+ 00019971  0x00002c12 call  0x000052d0 
+ 00019972  0x00002c13 force  0x00000000 , 0x00000012 
+ 00019973  0x00002c14 fetch  0x00000002 , 0x000002cd 
+ 00019974  0x00002c15 copy  0x0000003f , 0x00000013 
+ 00019975  0x00002c16 fetch  0x00000002 , 0x000002cb 
+ 00019976  0x00002c17 iforce  0x00000006 
+ 00019977  0x00002c19 call  0x00004e11 
+ 00019978  0x00002c1a deposit  0x00000013 
+ 00019979  0x00002c1b increase  0xfffffffc , 0x00000013 
+ 00019980  0x00002c1c increase  0xfffffffc , 0x0000003f 
+ 00019981  0x00002c1d nbranch  0x00004e09 , 0x00000034 
+ 00019982  0x00002c1e copy  0x00000012 , 0x0000003f 
+ 00019983  0x00002c1f store  0x00000002 , 0x000002d6 
+ 00019984  0x00002c20 rtn 
+ 00019985  0x00002c23 set1  0x00000025 , 0x00000000 
+ 00019986  0x00002c24 bpatch  0x0000001b , 0x00004023 
+ 00019987  0x00002c25 ifetch  0x00000001 , 0x00000006 
+ 00019988  0x00002c26 beq  0x00000001 , 0x00004e54 
+ 00019989  0x00002c27 beq  0x00000002 , 0x00004e5c 
+ 00019990  0x00002c28 beq  0x00000003 , 0x00004ee0 
+ 00019991  0x00002c29 beq  0x00000004 , 0x00004f0f 
+ 00019992  0x00002c2a beq  0x00000005 , 0x00004fad 
+ 00019993  0x00002c2b beq  0x00000006 , 0x00004fd5 
+ 00019994  0x00002c2c beq  0x00000007 , 0x00005024 
+ 00019995  0x00002c2d beq  0x00000008 , 0x00005058 
+ 00019996  0x00002c2e beq  0x00000009 , 0x00005068 
+ 00019997  0x00002c2f beq  0x0000000a , 0x00004e21 
+ 00019998  0x00002c30 beq  0x0000000b , 0x00005069 
+ 00019999  0x00002c31 call  0x0000506a 
+ 00020000  0x00002c33 rtn 
+ 00020001  0x00002c36 ifetch  0x00000001 , 0x00000006 
+ 00020002  0x00002c37 copy  0x0000003f , 0x00000007 
+ 00020003  0x00002c38 ifetch  0x00000002 , 0x00000006 
+ 00020004  0x00002c39 copy  0x0000003f , 0x00000011 
+ 00020005  0x00002c3a copy  0x00000013 , 0x0000003f 
+ 00020006  0x00002c3b isub  0x00000011 , 0x00000013 
+ 00020007  0x00002c3c copy  0x00000011 , 0x0000003f 
+ 00020008  0x00002c3d iadd  0x00000006 , 0x00000006 
+ 00020009  0x00002c3e setarg  0x0000000b 
+ 00020010  0x00002c3f istore  0x00000001 , 0x00000005 
+ 00020011  0x00002c40 copy  0x00000007 , 0x0000003f 
+ 00020012  0x00002c41 istore  0x00000001 , 0x00000005 
+ 00020013  0x00002c42 force  0x00000008 , 0x0000003f 
+ 00020014  0x00002c43 istore  0x00000002 , 0x00000005 
+ 00020015  0x00002c44 force  0x00000002 , 0x0000003f 
+ 00020016  0x00002c45 istore  0x00000002 , 0x00000005 
+ 00020017  0x00002c46 force  0x00000000 , 0x0000003f 
+ 00020018  0x00002c47 istore  0x00000002 , 0x00000005 
+ 00020019  0x00002c48 force  0x00000400 , 0x0000003f 
+ 00020020  0x00002c49 istore  0x00000002 , 0x00000005 
+ 00020021  0x00002c4a force  0x00000000 , 0x0000003f 
+ 00020022  0x00002c4b istore  0x00000002 , 0x00000005 
+ 00020023  0x00002c4c force  0x0000000c , 0x0000003f 
+ 00020024  0x00002c4d iadd  0x00000012 , 0x00000012 
+ 00020025  0x00002c4e branch  0x00004e20 
+ 00020026  0x00002c51 ifetch  0x00000001 , 0x00000006 
+ 00020027  0x00002c52 copy  0x0000003f , 0x00000007 
+ 00020028  0x00002c53 ifetch  0x00000002 , 0x00000006 
+ 00020029  0x00002c54 copy  0x0000003f , 0x00000011 
+ 00020030  0x00002c55 copy  0x00000013 , 0x0000003f 
+ 00020031  0x00002c56 isub  0x00000011 , 0x00000013 
+ 00020032  0x00002c57 copy  0x00000011 , 0x0000003f 
+ 00020033  0x00002c58 iadd  0x00000006 , 0x00000006 
+ 00020034  0x00002c59 call  0x000052d0 
+ 00020035  0x00002c5a setarg  0x0000000b 
+ 00020036  0x00002c5b istore  0x00000001 , 0x00000005 
+ 00020037  0x00002c5c copy  0x00000007 , 0x0000003f 
+ 00020038  0x00002c5d istore  0x00000001 , 0x00000005 
+ 00020039  0x00002c5e force  0x00000008 , 0x0000003f 
+ 00020040  0x00002c5f istore  0x00000002 , 0x00000005 
+ 00020041  0x00002c60 force  0x00000002 , 0x0000003f 
+ 00020042  0x00002c61 istore  0x00000002 , 0x00000005 
+ 00020043  0x00002c62 force  0x00000000 , 0x0000003f 
+ 00020044  0x00002c63 istore  0x00000002 , 0x00000005 
+ 00020045  0x00002c64 force  0x00000400 , 0x0000003f 
+ 00020046  0x00002c65 istore  0x00000002 , 0x00000005 
+ 00020047  0x00002c66 force  0x00000000 , 0x0000003f 
+ 00020048  0x00002c67 istore  0x00000002 , 0x00000005 
+ 00020049  0x00002c68 force  0x0000000c , 0x0000003f 
+ 00020050  0x00002c69 iadd  0x00000012 , 0x00000012 
+ 00020051  0x00002c6b branch  0x00004e20 
+ 00020052  0x00002c70 ifetch  0x00000001 , 0x00000006 
+ 00020053  0x00002c71 copy  0x0000003f , 0x00000007 
+ 00020054  0x00002c72 ifetch  0x00000002 , 0x00000006 
+ 00020055  0x00002c73 copy  0x0000003f , 0x00000011 
+ 00020056  0x00002c74 iadd  0x00000006 , 0x00000006 
+ 00020057  0x00002c75 copy  0x00000013 , 0x0000003f 
+ 00020058  0x00002c76 isub  0x00000011 , 0x00000013 
+ 00020059  0x00002c78 branch  0x00004e20 
+ 00020060  0x00002c7b call  0x00007e1c 
+ 00020061  0x00002c7e call  0x00007e21 
+ 00020062  0x00002c7f arg  0x00000000 , 0x00000008 
+ 00020063  0x00002c80 ifetch  0x00000001 , 0x00000006 
+ 00020064  0x00002c81 copy  0x0000003f , 0x00000007 
+ 00020065  0x00002c82 ifetch  0x00000002 , 0x00000006 
+ 00020066  0x00002c83 copy  0x0000003f , 0x00000011 
+ 00020067  0x00002c84 ifetch  0x00000002 , 0x00000006 
+ 00020068  0x00002c85 copy  0x0000003f , 0x00000002 
+ 00020069  0x00002c86 ifetch  0x00000002 , 0x00000006 
+ 00020070  0x00002c87 copy  0x0000003f , 0x0000000b 
+ 00020071  0x00002c88 copy  0x00000002 , 0x0000003f 
+ 00020072  0x00002c89 beq  0x00000001 , 0x00004e6e 
+ 00020073  0x00002c8a beq  0x00000003 , 0x00004e90 
+ 00020074  0x00002c8b beq  0x00000011 , 0x00004e9c 
+ 00020075  0x00002c8c beq  0x00000013 , 0x00004ea7 
+ 00020076  0x00002c8d call  0x0000506a 
+ 00020077  0x00002c8e branch  0x00004edf 
+ 00020078  0x00002c91 call  0x00007e1c 
+ 00020079  0x00002c92 arg  0x00000050 , 0x00000002 
+ 00020080  0x00002c93 fetch  0x00000002 , 0x000042b1 
+ 00020081  0x00002c94 nbranch  0x00004ed9 , 0x00000034 
+ 00020082  0x00002c95 copy  0x0000000b , 0x0000003f 
+ 00020083  0x00002c96 store  0x00000002 , 0x000042b1 
+ 00020084  0x00002c97 copy  0x00000022 , 0x0000003f 
+ 00020085  0x00002c98 store  0x00000004 , 0x0000033c 
+ 00020086  0x00002c99 call  0x00004e78 
+ 00020087  0x00002c9a branch  0x00004eb3 
+ 00020088  0x00002c9d storet  0x00000002 , 0x0000033a 
+ 00020089  0x00002c9e deposit  0x0000000b 
+ 00020090  0x00002c9f store  0x00000002 , 0x00000330 
+ 00020091  0x00002ca0 deposit  0x00000011 
+ 00020092  0x00002ca1 store  0x00000002 , 0x00000332 
+ 00020093  0x00002ca2 deposit  0x00000012 
+ 00020094  0x00002ca3 store  0x00000002 , 0x00000334 
+ 00020095  0x00002ca4 deposit  0x00000013 
+ 00020096  0x00002ca5 store  0x00000002 , 0x00000336 
+ 00020097  0x00002ca6 deposit  0x00000007 
+ 00020098  0x00002ca7 store  0x00000002 , 0x00000338 
+ 00020099  0x00002ca8 rtn 
+ 00020100  0x00002cab fetcht  0x00000002 , 0x0000033a 
+ 00020101  0x00002cac fetch  0x00000002 , 0x00000330 
+ 00020102  0x00002cad copy  0x0000003f , 0x0000000b 
+ 00020103  0x00002cae fetch  0x00000002 , 0x00000332 
+ 00020104  0x00002caf copy  0x0000003f , 0x00000011 
+ 00020105  0x00002cb0 fetch  0x00000002 , 0x00000334 
+ 00020106  0x00002cb1 copy  0x0000003f , 0x00000012 
+ 00020107  0x00002cb2 fetch  0x00000002 , 0x00000336 
+ 00020108  0x00002cb3 copy  0x0000003f , 0x00000013 
+ 00020109  0x00002cb4 fetch  0x00000002 , 0x00000338 
+ 00020110  0x00002cb5 copy  0x0000003f , 0x00000007 
+ 00020111  0x00002cb6 rtn 
+ 00020112  0x00002cb9 call  0x00007e1c 
+ 00020113  0x00002cba setarg  0x00000051 
+ 00020114  0x00002cbb arg  0x00000051 , 0x00000002 
+ 00020115  0x00002cbc fetch  0x00000002 , 0x000042b3 
+ 00020116  0x00002cbd nbranch  0x00004ed9 , 0x00000034 
+ 00020117  0x00002cbe copy  0x0000000b , 0x0000003f 
+ 00020118  0x00002cbf store  0x00000002 , 0x000042b3 
+ 00020119  0x00002cc0 fetch  0x00000001 , 0x000042ba 
+ 00020120  0x00002cc1 set1  0x00000000 , 0x0000003f 
+ 00020121  0x00002cc2 set1  0x00000001 , 0x0000003f 
+ 00020122  0x00002cc3 store  0x00000001 , 0x000042ba 
+ 00020123  0x00002cc4 branch  0x00004ebb 
+ 00020124  0x00002cc6 call  0x00007e1c 
+ 00020125  0x00002cc7 arg  0x00000052 , 0x00000002 
+ 00020126  0x00002cc8 fetch  0x00000002 , 0x000042b5 
+ 00020127  0x00002cc9 nbranch  0x00004ed9 , 0x00000034 
+ 00020128  0x00002cca copy  0x0000000b , 0x0000003f 
+ 00020129  0x00002ccb store  0x00000002 , 0x000042b5 
+ 00020130  0x00002ccc fetch  0x00000001 , 0x000042bb 
+ 00020131  0x00002ccd set1  0x00000000 , 0x0000003f 
+ 00020132  0x00002cce set1  0x00000001 , 0x0000003f 
+ 00020133  0x00002ccf store  0x00000001 , 0x000042bb 
+ 00020134  0x00002cd0 branch  0x00004ebb 
+ 00020135  0x00002cd2 call  0x00007e1c 
+ 00020136  0x00002cd3 deposit  0x0000001a 
+ 00020137  0x00002cd4 arg  0x00000053 , 0x00000002 
+ 00020138  0x00002cd5 fetch  0x00000002 , 0x000042b7 
+ 00020139  0x00002cd6 nbranch  0x00004ed9 , 0x00000034 
+ 00020140  0x00002cd7 copy  0x0000000b , 0x0000003f 
+ 00020141  0x00002cd8 store  0x00000002 , 0x000042b7 
+ 00020142  0x00002cd9 fetch  0x00000001 , 0x000042bc 
+ 00020143  0x00002cda set1  0x00000000 , 0x0000003f 
+ 00020144  0x00002cdb set1  0x00000001 , 0x0000003f 
+ 00020145  0x00002cdc store  0x00000001 , 0x000042bc 
+ 00020146  0x00002cdd branch  0x00004ebb 
+ 00020147  0x00002ce0 setarg  0x00000001 
+ 00020148  0x00002ce1 store  0x00000002 , 0x000002e4 
+ 00020149  0x00002ce2 jam  0x00000050 , 0x000043cd 
+ 00020150  0x00002ce3 branch  0x00004ebd 
+ 00020151  0x00002ce5 fetch  0x00000001 , 0x000042b9 
+ 00020152  0x00002ce6 set1  0x00000000 , 0x0000003f 
+ 00020153  0x00002ce7 set1  0x00000001 , 0x0000003f 
+ 00020154  0x00002ce8 store  0x00000001 , 0x000042b9 
+ 00020155  0x00002cea setarg  0x00000000 
+ 00020156  0x00002ceb store  0x00000002 , 0x000002e4 
+ 00020157  0x00002ced set1  0x00000025 , 0x00000000 
+ 00020158  0x00002cee bpatch  0x0000001c , 0x00004023 
+ 00020159  0x00002cef call  0x00007e21 
+ 00020160  0x00002cf0 setarg  0x00000003 
+ 00020161  0x00002cf1 istore  0x00000001 , 0x00000005 
+ 00020162  0x00002cf2 copy  0x00000007 , 0x0000003f 
+ 00020163  0x00002cf3 istore  0x00000001 , 0x00000005 
+ 00020164  0x00002cf4 setarg  0x00000008 
+ 00020165  0x00002cf5 istore  0x00000002 , 0x00000005 
+ 00020166  0x00002cf6 copy  0x00000002 , 0x0000003f 
+ 00020167  0x00002cf7 istore  0x00000002 , 0x00000005 
+ 00020168  0x00002cf8 copy  0x0000000b , 0x0000003f 
+ 00020169  0x00002cf9 istore  0x00000002 , 0x00000005 
+ 00020170  0x00002cfa fetch  0x00000002 , 0x000002e4 
+ 00020171  0x00002cfb beq  0x00000001 , 0x00004ed4 
+ 00020172  0x00002cfc isolate0  0x00000000 , 0x00000008 
+ 00020173  0x00002cfd branch  0x00004ecf , 0x00000001 
+ 00020174  0x00002cfe setarg  0x00000004 
+ 00020175  0x00002d00 istore  0x00000002 , 0x00000005 
+ 00020176  0x00002d01 force  0x00000000 , 0x0000003f 
+ 00020177  0x00002d02 istore  0x00000002 , 0x00000005 
+ 00020178  0x00002d03 setarg  0x0000000c 
+ 00020179  0x00002d04 branch  0x00004edb 
+ 00020180  0x00002d06 istore  0x00000002 , 0x00000005 
+ 00020181  0x00002d07 force  0x00000002 , 0x0000003f 
+ 00020182  0x00002d08 istore  0x00000002 , 0x00000005 
+ 00020183  0x00002d09 setarg  0x0000000c 
+ 00020184  0x00002d0a branch  0x00004edb 
+ 00020185  0x00002d0d set1  0x00000000 , 0x00000008 
+ 00020186  0x00002d0e branch  0x00004ebb 
+ 00020187  0x00002d10 iadd  0x00000012 , 0x00000012 
+ 00020188  0x00002d11 copy  0x00000013 , 0x0000003f 
+ 00020189  0x00002d12 isub  0x00000011 , 0x00000013 
+ 00020190  0x00002d13 branch  0x00004edf 
+ 00020191  0x00002d15 branch  0x00004e20 
+ 00020192  0x00002d18 ifetch  0x00000001 , 0x00000006 
+ 00020193  0x00002d19 copy  0x0000003f , 0x00000007 
+ 00020194  0x00002d1a ifetch  0x00000002 , 0x00000006 
+ 00020195  0x00002d1b copy  0x0000003f , 0x00000011 
+ 00020196  0x00002d1c copy  0x00000013 , 0x0000003f 
+ 00020197  0x00002d1d isub  0x00000011 , 0x00000013 
+ 00020198  0x00002d1e ifetch  0x00000002 , 0x00000006 
+ 00020199  0x00002d1f copy  0x0000003f , 0x0000000b 
+ 00020200  0x00002d20 ifetch  0x00000002 , 0x00000006 
+ 00020201  0x00002d21 copy  0x0000003f , 0x00000002 
+ 00020202  0x00002d22 setarg  0x00000050 
+ 00020203  0x00002d23 isub  0x00000002 , 0x0000003e 
+ 00020204  0x00002d24 branch  0x00004ef7 , 0x00000005 
+ 00020205  0x00002d25 setarg  0x00000051 
+ 00020206  0x00002d26 isub  0x00000002 , 0x0000003e 
+ 00020207  0x00002d27 branch  0x00004efd , 0x00000005 
+ 00020208  0x00002d28 setarg  0x00000052 
+ 00020209  0x00002d29 isub  0x00000002 , 0x0000003e 
+ 00020210  0x00002d2a branch  0x00004f09 , 0x00000005 
+ 00020211  0x00002d2b setarg  0x00000053 
+ 00020212  0x00002d2c isub  0x00000002 , 0x0000003e 
+ 00020213  0x00002d2d branch  0x00004f03 , 0x00000005 
+ 00020214  0x00002d2e rtn 
+ 00020215  0x00002d31 copy  0x0000000b , 0x0000003f 
+ 00020216  0x00002d32 store  0x00000002 , 0x000042b1 
+ 00020217  0x00002d33 fetch  0x00000001 , 0x000042b9 
+ 00020218  0x00002d34 set1  0x00000001 , 0x0000003f 
+ 00020219  0x00002d35 store  0x00000001 , 0x000042b9 
+ 00020220  0x00002d36 branch  0x00004e20 
+ 00020221  0x00002d38 copy  0x0000000b , 0x0000003f 
+ 00020222  0x00002d39 store  0x00000002 , 0x000042b3 
+ 00020223  0x00002d3a fetch  0x00000001 , 0x000042ba 
+ 00020224  0x00002d3b set1  0x00000001 , 0x0000003f 
+ 00020225  0x00002d3c store  0x00000001 , 0x000042ba 
+ 00020226  0x00002d3d rtn 
+ 00020227  0x00002d3f copy  0x0000000b , 0x0000003f 
+ 00020228  0x00002d40 store  0x00000002 , 0x000042b5 
+ 00020229  0x00002d41 fetch  0x00000001 , 0x000042bc 
+ 00020230  0x00002d42 set1  0x00000001 , 0x0000003f 
+ 00020231  0x00002d43 store  0x00000001 , 0x000042bc 
+ 00020232  0x00002d44 rtn 
+ 00020233  0x00002d46 copy  0x0000000b , 0x0000003f 
+ 00020234  0x00002d47 store  0x00000002 , 0x000042b7 
+ 00020235  0x00002d48 fetch  0x00000001 , 0x000042bb 
+ 00020236  0x00002d49 set1  0x00000001 , 0x0000003f 
+ 00020237  0x00002d4a store  0x00000001 , 0x000042bb 
+ 00020238  0x00002d4b rtn 
+ 00020239  0x00002d4e ifetch  0x00000001 , 0x00000006 
+ 00020240  0x00002d4f copy  0x0000003f , 0x00000007 
+ 00020241  0x00002d50 ifetch  0x00000002 , 0x00000006 
+ 00020242  0x00002d51 copy  0x0000003f , 0x00000011 
+ 00020243  0x00002d52 copy  0x00000013 , 0x0000003f 
+ 00020244  0x00002d53 isub  0x00000011 , 0x00000013 
+ 00020245  0x00002d54 ifetch  0x00000002 , 0x00000006 
+ 00020246  0x00002d55 copy  0x0000003f , 0x00000002 
+ 00020247  0x00002d56 copy  0x00000002 , 0x00000011 
+ 00020248  0x00002d57 setarg  0x00000050 
+ 00020249  0x00002d58 isub  0x00000002 , 0x0000003e 
+ 00020250  0x00002d59 branch  0x00004f25 , 0x00000005 
+ 00020251  0x00002d5a setarg  0x00000051 
+ 00020252  0x00002d5b isub  0x00000002 , 0x0000003e 
+ 00020253  0x00002d5c branch  0x00004f43 , 0x00000005 
+ 00020254  0x00002d5d setarg  0x00000052 
+ 00020255  0x00002d5e isub  0x00000002 , 0x0000003e 
+ 00020256  0x00002d5f branch  0x00004f2f , 0x00000005 
+ 00020257  0x00002d60 setarg  0x00000053 
+ 00020258  0x00002d61 isub  0x00000002 , 0x0000003e 
+ 00020259  0x00002d62 branch  0x00004f39 , 0x00000005 
+ 00020260  0x00002d63 branch  0x0000506a 
+ 00020261  0x00002d66 copy  0x00000005 , 0x0000000b 
+ 00020262  0x00002d67 fetch  0x00000001 , 0x000042b9 
+ 00020263  0x00002d68 set1  0x00000004 , 0x0000003f 
+ 00020264  0x00002d69 set1  0x00000003 , 0x0000003f 
+ 00020265  0x00002d6b store  0x00000001 , 0x000042b9 
+ 00020266  0x00002d6c copy  0x0000000b , 0x00000005 
+ 00020267  0x00002d6d arg  0x00000050 , 0x0000000b 
+ 00020268  0x00002d6e fetch  0x00000002 , 0x000042b1 
+ 00020269  0x00002d6f copy  0x0000003f , 0x00000002 
+ 00020270  0x00002d70 branch  0x00004f4c 
+ 00020271  0x00002d72 copy  0x00000005 , 0x0000000b 
+ 00020272  0x00002d73 fetch  0x00000001 , 0x000042bb 
+ 00020273  0x00002d74 set1  0x00000004 , 0x0000003f 
+ 00020274  0x00002d75 set1  0x00000003 , 0x0000003f 
+ 00020275  0x00002d77 store  0x00000001 , 0x000042bb 
+ 00020276  0x00002d78 copy  0x0000000b , 0x00000005 
+ 00020277  0x00002d79 arg  0x00000052 , 0x0000000b 
+ 00020278  0x00002d7a fetch  0x00000002 , 0x000042b5 
+ 00020279  0x00002d7b copy  0x0000003f , 0x00000002 
+ 00020280  0x00002d7c branch  0x00004f4c 
+ 00020281  0x00002d7e copy  0x00000005 , 0x0000000b 
+ 00020282  0x00002d7f fetch  0x00000001 , 0x000042bc 
+ 00020283  0x00002d80 set1  0x00000004 , 0x0000003f 
+ 00020284  0x00002d81 set1  0x00000003 , 0x0000003f 
+ 00020285  0x00002d83 store  0x00000001 , 0x000042bc 
+ 00020286  0x00002d84 copy  0x0000000b , 0x00000005 
+ 00020287  0x00002d85 arg  0x00000053 , 0x0000000b 
+ 00020288  0x00002d86 fetch  0x00000002 , 0x000042b7 
+ 00020289  0x00002d87 copy  0x0000003f , 0x00000002 
+ 00020290  0x00002d88 branch  0x00004f4c 
+ 00020291  0x00002d8a copy  0x00000005 , 0x0000000b 
+ 00020292  0x00002d8b fetch  0x00000001 , 0x000042ba 
+ 00020293  0x00002d8c set1  0x00000004 , 0x0000003f 
+ 00020294  0x00002d8d set1  0x00000003 , 0x0000003f 
+ 00020295  0x00002d8f store  0x00000001 , 0x000042ba 
+ 00020296  0x00002d91 copy  0x0000000b , 0x00000005 
+ 00020297  0x00002d92 arg  0x00000051 , 0x0000000b 
+ 00020298  0x00002d93 fetch  0x00000002 , 0x000042b3 
+ 00020299  0x00002d94 copy  0x0000003f , 0x00000002 
+ 00020300  0x00002d96 set1  0x00000025 , 0x00000000 
+ 00020301  0x00002d97 bpatch  0x0000001d , 0x00004023 
+ 00020302  0x00002d98 setarg  0x00000005 
+ 00020303  0x00002d99 istore  0x00000001 , 0x00000005 
+ 00020304  0x00002d9a copy  0x00000007 , 0x0000003f 
+ 00020305  0x00002d9b istore  0x00000001 , 0x00000005 
+ 00020306  0x00002d9c setarg  0x00000006 
+ 00020307  0x00002d9d istore  0x00000002 , 0x00000005 
+ 00020308  0x00002d9e copy  0x00000002 , 0x0000003f 
+ 00020309  0x00002d9f istore  0x00000002 , 0x00000005 
+ 00020310  0x00002da0 force  0x00000000 , 0x0000003f 
+ 00020311  0x00002da1 istore  0x00000002 , 0x00000005 
+ 00020312  0x00002da2 force  0x00000000 , 0x0000003f 
+ 00020313  0x00002da3 istore  0x00000002 , 0x00000005 
+ 00020314  0x00002da4 force  0x0000000a , 0x0000003f 
+ 00020315  0x00002da5 iadd  0x00000012 , 0x00000012 
+ 00020316  0x00002da7 storet  0x00000002 , 0x000002e9 
+ 00020317  0x00002da8 copy  0x00000007 , 0x0000003f 
+ 00020318  0x00002da9 store  0x00000001 , 0x000002e8 
+ 00020319  0x00002daa force  0x00000050 , 0x0000003f 
+ 00020320  0x00002dab icompare  0x000000ff , 0x0000000b 
+ 00020321  0x00002dac branch  0x00004f63 , 0x00000001 
+ 00020322  0x00002dad increase  0x00000001 , 0x0000003f 
+ 00020323  0x00002db0 rtn 
+ 00020324  0x00002db2 disable  0x00000028 
+ 00020325  0x00002db3 rtnbit1  0x00000002 , 0x0000003f 
+ 00020326  0x00002db4 rtnbit0  0x00000000 , 0x0000003f 
+ 00020327  0x00002db5 rtnbit0  0x00000001 , 0x0000003f 
+ 00020328  0x00002db6 set1  0x00000002 , 0x0000003f 
+ 00020329  0x00002db7 copy  0x00000006 , 0x00000005 
+ 00020330  0x00002db8 increase  0xffffffff , 0x00000005 
+ 00020331  0x00002db9 istore  0x00000001 , 0x00000005 
+ 00020332  0x00002dba enable  0x00000028 
+ 00020333  0x00002dbb rtn 
+ 00020334  0x00002dbe fetch  0x00000001 , 0x000042b9 
+ 00020335  0x00002dbf call  0x00004f64 
+ 00020336  0x00002dc0 nbranch  0x00004f75 , 0x00000028 
+ 00020337  0x00002dc1 jam  0x00000050 , 0x000002e7 
+ 00020338  0x00002dc2 fetch  0x00000002 , 0x000042b1 
+ 00020339  0x00002dc3 store  0x00000002 , 0x000002e9 
+ 00020340  0x00002dc4 branch  0x00004f89 
+ 00020341  0x00002dc6 fetch  0x00000001 , 0x000042ba 
+ 00020342  0x00002dc7 call  0x00004f64 
+ 00020343  0x00002dc8 nbranch  0x00004f7c , 0x00000028 
+ 00020344  0x00002dc9 jam  0x00000051 , 0x000002e7 
+ 00020345  0x00002dca fetch  0x00000002 , 0x000042b3 
+ 00020346  0x00002dcb store  0x00000002 , 0x000002e9 
+ 00020347  0x00002dcc branch  0x00004f89 
+ 00020348  0x00002dce fetch  0x00000001 , 0x000042bb 
+ 00020349  0x00002dcf call  0x00004f64 
+ 00020350  0x00002dd0 nbranch  0x00004f83 , 0x00000028 
+ 00020351  0x00002dd1 jam  0x00000052 , 0x000002e7 
+ 00020352  0x00002dd2 fetch  0x00000002 , 0x000042b5 
+ 00020353  0x00002dd3 store  0x00000002 , 0x000002e9 
+ 00020354  0x00002dd4 branch  0x00004f89 
+ 00020355  0x00002dd6 fetch  0x00000001 , 0x000042bc 
+ 00020356  0x00002dd7 call  0x00004f64 
+ 00020357  0x00002dd8 nrtn  0x00000028 
+ 00020358  0x00002dd9 jam  0x00000053 , 0x000002e7 
+ 00020359  0x00002dda fetch  0x00000002 , 0x000042b7 
+ 00020360  0x00002ddb store  0x00000002 , 0x000002e9 
+ 00020361  0x00002ddf set1  0x00000025 , 0x00000000 
+ 00020362  0x00002de0 bpatch  0x0000001e , 0x00004023 
+ 00020363  0x00002de1 call  0x00005242 
+ 00020364  0x00002de2 call  0x000052c4 
+ 00020365  0x00002de3 force  0x00000000 , 0x00000012 
+ 00020366  0x00002de4 call  0x000052d0 
+ 00020367  0x00002de5 force  0x00000004 , 0x0000003f 
+ 00020368  0x00002de6 istore  0x00000001 , 0x00000005 
+ 00020369  0x00002de7 fetch  0x00000001 , 0x000042be 
+ 00020370  0x00002de8 istore  0x00000001 , 0x00000005 
+ 00020371  0x00002de9 setarg  0x00000008 
+ 00020372  0x00002dea istore  0x00000002 , 0x00000005 
+ 00020373  0x00002deb fetch  0x00000002 , 0x000002e9 
+ 00020374  0x00002dec istore  0x00000002 , 0x00000005 
+ 00020375  0x00002ded setarg  0x00000000 
+ 00020376  0x00002dee istore  0x00000002 , 0x00000005 
+ 00020377  0x00002def force  0x00000001 , 0x0000003f 
+ 00020378  0x00002df0 istore  0x00000001 , 0x00000005 
+ 00020379  0x00002df1 force  0x00000002 , 0x0000003f 
+ 00020380  0x00002df2 istore  0x00000001 , 0x00000005 
+ 00020381  0x00002df3 fetch  0x00000001 , 0x000002e7 
+ 00020382  0x00002df4 beq  0x00000051 , 0x00004fa2 
+ 00020383  0x00002df5 setarg  0x00000030 
+ 00020384  0x00002df6 istore  0x00000002 , 0x00000005 
+ 00020385  0x00002df7 branch  0x00004fa4 
+ 00020386  0x00002df9 setarg  0x000003e3 
+ 00020387  0x00002dfa istore  0x00000002 , 0x00000005 
+ 00020388  0x00002dfc arg  0x0000000c , 0x00000002 
+ 00020389  0x00002dfd storet  0x00000002 , 0x000002d6 
+ 00020390  0x00002dfe call  0x000052ce 
+ 00020391  0x00002dff fetch  0x00000002 , 0x000002d6 
+ 00020392  0x00002e00 istore  0x00000002 , 0x00000005 
+ 00020393  0x00002e01 force  0x00000001 , 0x0000003f 
+ 00020394  0x00002e02 istore  0x00000002 , 0x00000005 
+ 00020395  0x00002e03 jam  0x00000000 , 0x000002e7 
+ 00020396  0x00002e05 branch  0x00004e20 
+ 00020397  0x00002e08 increase  0x00000001 , 0x00000006 
+ 00020398  0x00002e09 ifetch  0x00000002 , 0x00000006 
+ 00020399  0x00002e0a copy  0x0000003f , 0x00000011 
+ 00020400  0x00002e0b copy  0x00000013 , 0x0000003f 
+ 00020401  0x00002e0c isub  0x00000011 , 0x00000013 
+ 00020402  0x00002e0d ifetch  0x00000002 , 0x00000006 
+ 00020403  0x00002e0e copy  0x0000003f , 0x00000011 
+ 00020404  0x00002e0f setarg  0x00000050 
+ 00020405  0x00002e10 isub  0x00000011 , 0x0000003e 
+ 00020406  0x00002e11 branch  0x00004fc4 , 0x00000005 
+ 00020407  0x00002e12 setarg  0x00000051 
+ 00020408  0x00002e13 isub  0x00000011 , 0x0000003e 
+ 00020409  0x00002e14 branch  0x00004fc8 , 0x00000005 
+ 00020410  0x00002e15 setarg  0x00000052 
+ 00020411  0x00002e16 isub  0x00000011 , 0x0000003e 
+ 00020412  0x00002e17 branch  0x00004fcc , 0x00000005 
+ 00020413  0x00002e18 setarg  0x00000053 
+ 00020414  0x00002e19 isub  0x00000011 , 0x0000003e 
+ 00020415  0x00002e1a branch  0x00004fd0 , 0x00000005 
+ 00020416  0x00002e1b increase  0x00000002 , 0x00000006 
+ 00020417  0x00002e1c ifetch  0x00000002 , 0x00000006 
+ 00020418  0x00002e1d iforce  0x0000003e 
+ 00020419  0x00002e1e branch  0x00004e20 
+ 00020420  0x00002e20 fetch  0x00000001 , 0x000042b9 
+ 00020421  0x00002e21 set1  0x00000005 , 0x0000003f 
+ 00020422  0x00002e22 store  0x00000001 , 0x000042b9 
+ 00020423  0x00002e23 branch  0x00004e20 
+ 00020424  0x00002e25 fetch  0x00000001 , 0x000042ba 
+ 00020425  0x00002e26 set1  0x00000005 , 0x0000003f 
+ 00020426  0x00002e27 store  0x00000001 , 0x000042ba 
+ 00020427  0x00002e28 branch  0x00004e20 
+ 00020428  0x00002e2a fetch  0x00000001 , 0x000042bb 
+ 00020429  0x00002e2b set1  0x00000005 , 0x0000003f 
+ 00020430  0x00002e2c store  0x00000001 , 0x000042bb 
+ 00020431  0x00002e2d branch  0x00004e20 
+ 00020432  0x00002e2f fetch  0x00000001 , 0x000042bc 
+ 00020433  0x00002e30 set1  0x00000005 , 0x0000003f 
+ 00020434  0x00002e31 store  0x00000001 , 0x000042bc 
+ 00020435  0x00002e32 jam  0x00000006 , 0x00000b7d 
+ 00020436  0x00002e33 branch  0x00007c27 
+ 00020437  0x00002e38 ifetch  0x00000001 , 0x00000006 
+ 00020438  0x00002e39 copy  0x0000003f , 0x00000007 
+ 00020439  0x00002e3a ifetch  0x00000002 , 0x00000006 
+ 00020440  0x00002e3b copy  0x0000003f , 0x00000011 
+ 00020441  0x00002e3c copy  0x00000013 , 0x0000003f 
+ 00020442  0x00002e3d isub  0x00000011 , 0x00000013 
+ 00020443  0x00002e3e ifetch  0x00000002 , 0x00000006 
+ 00020444  0x00002e3f copy  0x0000003f , 0x00000011 
+ 00020445  0x00002e40 ifetch  0x00000002 , 0x00000006 
+ 00020446  0x00002e41 copy  0x0000003f , 0x0000000b 
+ 00020447  0x00002e42 copy  0x00000011 , 0x00000002 
+ 00020448  0x00002e43 call  0x00007e1c 
+ 00020449  0x00002e44 setarg  0x00000050 
+ 00020450  0x00002e45 isub  0x00000002 , 0x0000003e 
+ 00020451  0x00002e46 branch  0x00004ffb , 0x00000005 
+ 00020452  0x00002e47 setarg  0x00000051 
+ 00020453  0x00002e48 isub  0x00000002 , 0x0000003e 
+ 00020454  0x00002e49 branch  0x0000500b , 0x00000005 
+ 00020455  0x00002e4a setarg  0x00000052 
+ 00020456  0x00002e4b isub  0x00000002 , 0x0000003e 
+ 00020457  0x00002e4c branch  0x00004fef , 0x00000005 
+ 00020458  0x00002e4d setarg  0x00000053 
+ 00020459  0x00002e4e isub  0x00000002 , 0x0000003e 
+ 00020460  0x00002e4f branch  0x00004ff5 , 0x00000005 
+ 00020461  0x00002e50 call  0x0000506a 
+ 00020462  0x00002e51 branch  0x00005020 
+ 00020463  0x00002e53 copy  0x0000000b , 0x00000002 
+ 00020464  0x00002e54 fetch  0x00000002 , 0x000042b5 
+ 00020465  0x00002e55 isub  0x00000002 , 0x0000003e 
+ 00020466  0x00002e56 branch  0x00005001 , 0x00000005 
+ 00020467  0x00002e57 call  0x0000506a 
+ 00020468  0x00002e58 branch  0x00005020 
+ 00020469  0x00002e5a copy  0x0000000b , 0x00000002 
+ 00020470  0x00002e5b fetch  0x00000002 , 0x000042b7 
+ 00020471  0x00002e5c isub  0x00000002 , 0x0000003e 
+ 00020472  0x00002e5d branch  0x00005003 , 0x00000005 
+ 00020473  0x00002e5e call  0x0000506a 
+ 00020474  0x00002e5f branch  0x00005020 
+ 00020475  0x00002e62 copy  0x0000000b , 0x00000002 
+ 00020476  0x00002e63 fetch  0x00000002 , 0x000042b1 
+ 00020477  0x00002e64 isub  0x00000002 , 0x0000003e 
+ 00020478  0x00002e65 branch  0x00005007 , 0x00000005 
+ 00020479  0x00002e66 call  0x0000506a 
+ 00020480  0x00002e67 branch  0x00005020 
+ 00020481  0x00002e69 call  0x00005081 
+ 00020482  0x00002e6a branch  0x00005013 
+ 00020483  0x00002e6c call  0x00005087 
+ 00020484  0x00002e6d fetch  0x00000002 , 0x000042b5 
+ 00020485  0x00002e6e branch  0x00005013 , 0x00000034 
+ 00020486  0x00002e76 branch  0x00005013 
+ 00020487  0x00002e79 call  0x0000507c 
+ 00020488  0x00002e7a fetch  0x00000001 , 0x000002ef 
+ 00020489  0x00002e7b nbranch  0x00005013 , 0x00000034 
+ 00020490  0x00002e7e branch  0x00005013 
+ 00020491  0x00002e80 copy  0x0000000b , 0x00000002 
+ 00020492  0x00002e81 fetch  0x00000002 , 0x000042b3 
+ 00020493  0x00002e82 isub  0x00000002 , 0x0000003e 
+ 00020494  0x00002e83 branch  0x00005011 , 0x00000005 
+ 00020495  0x00002e84 call  0x0000506a 
+ 00020496  0x00002e85 branch  0x00005020 
+ 00020497  0x00002e87 call  0x00005077 
+ 00020498  0x00002e88 branch  0x00005013 
+ 00020499  0x00002e8a call  0x00007e21 
+ 00020500  0x00002e8b setarg  0x00000007 
+ 00020501  0x00002e8c istore  0x00000001 , 0x00000005 
+ 00020502  0x00002e8d copy  0x00000007 , 0x0000003f 
+ 00020503  0x00002e8e istore  0x00000001 , 0x00000005 
+ 00020504  0x00002e8f setarg  0x00000004 
+ 00020505  0x00002e90 istore  0x00000002 , 0x00000005 
+ 00020506  0x00002e91 copy  0x00000011 , 0x0000003f 
+ 00020507  0x00002e92 istore  0x00000002 , 0x00000005 
+ 00020508  0x00002e93 copy  0x0000000b , 0x0000003f 
+ 00020509  0x00002e94 istore  0x00000002 , 0x00000005 
+ 00020510  0x00002e95 force  0x00000008 , 0x0000003f 
+ 00020511  0x00002e96 branch  0x00005022 
+ 00020512  0x00002e98 call  0x00007e21 
+ 00020513  0x00002e99 branch  0x00005022 
+ 00020514  0x00002e9b iadd  0x00000012 , 0x00000012 
+ 00020515  0x00002e9c branch  0x00004e20 
+ 00020516  0x00002e9e ifetch  0x00000001 , 0x00000006 
+ 00020517  0x00002e9f copy  0x0000003f , 0x00000007 
+ 00020518  0x00002ea0 ifetch  0x00000002 , 0x00000006 
+ 00020519  0x00002ea1 copy  0x0000003f , 0x00000011 
+ 00020520  0x00002ea2 copy  0x00000013 , 0x0000003f 
+ 00020521  0x00002ea3 isub  0x00000011 , 0x00000013 
+ 00020522  0x00002ea4 ifetch  0x00000002 , 0x00000006 
+ 00020523  0x00002ea5 copy  0x0000003f , 0x0000000b 
+ 00020524  0x00002ea6 ifetch  0x00000002 , 0x00000006 
+ 00020525  0x00002ea7 copy  0x0000003f , 0x00000002 
+ 00020526  0x00002ea8 call  0x00007e1c 
+ 00020527  0x00002ea9 setarg  0x00000050 
+ 00020528  0x00002eaa isub  0x00000002 , 0x0000003e 
+ 00020529  0x00002eab branch  0x0000503d , 0x00000005 
+ 00020530  0x00002eac setarg  0x00000051 
+ 00020531  0x00002ead isub  0x00000002 , 0x0000003e 
+ 00020532  0x00002eae branch  0x00005043 , 0x00000005 
+ 00020533  0x00002eaf setarg  0x00000052 
+ 00020534  0x00002eb0 isub  0x00000002 , 0x0000003e 
+ 00020535  0x00002eb1 branch  0x00005049 , 0x00000005 
+ 00020536  0x00002eb2 setarg  0x00000053 
+ 00020537  0x00002eb3 isub  0x00000002 , 0x0000003e 
+ 00020538  0x00002eb4 branch  0x0000504f , 0x00000005 
+ 00020539  0x00002eb5 call  0x0000506a 
+ 00020540  0x00002eb6 branch  0x00005057 
+ 00020541  0x00002eb8 copy  0x00000002 , 0x00000011 
+ 00020542  0x00002eb9 copy  0x0000000b , 0x00000002 
+ 00020543  0x00002eba fetch  0x00000002 , 0x000042b1 
+ 00020544  0x00002ebb isub  0x00000002 , 0x0000003e 
+ 00020545  0x00002ebc call  0x0000507c , 0x00000005 
+ 00020546  0x00002ebd branch  0x00005055 
+ 00020547  0x00002ebf copy  0x00000002 , 0x00000011 
+ 00020548  0x00002ec0 copy  0x0000000b , 0x00000002 
+ 00020549  0x00002ec1 fetch  0x00000002 , 0x000042b3 
+ 00020550  0x00002ec2 isub  0x00000002 , 0x0000003e 
+ 00020551  0x00002ec3 call  0x00005077 , 0x00000005 
+ 00020552  0x00002ec4 branch  0x00005055 
+ 00020553  0x00002ec6 copy  0x00000002 , 0x00000011 
+ 00020554  0x00002ec7 copy  0x0000000b , 0x00000002 
+ 00020555  0x00002ec8 fetch  0x00000002 , 0x000042b5 
+ 00020556  0x00002ec9 isub  0x00000002 , 0x0000003e 
+ 00020557  0x00002eca call  0x00005081 , 0x00000005 
+ 00020558  0x00002ecb branch  0x00005055 
+ 00020559  0x00002ecd copy  0x00000002 , 0x00000011 
+ 00020560  0x00002ece copy  0x0000000b , 0x00000002 
+ 00020561  0x00002ecf fetch  0x00000002 , 0x000042b7 
+ 00020562  0x00002ed0 isub  0x00000002 , 0x0000003e 
+ 00020563  0x00002ed1 call  0x00005087 , 0x00000005 
+ 00020564  0x00002ed2 branch  0x00005055 
+ 00020565  0x00002ed4 call  0x00007e21 
+ 00020566  0x00002ed5 branch  0x00004e20 
+ 00020567  0x00002ed7 branch  0x00004e20 
+ 00020568  0x00002edb ifetch  0x00000001 , 0x00000006 
+ 00020569  0x00002edc copy  0x0000003f , 0x00000007 
+ 00020570  0x00002edd ifetch  0x00000002 , 0x00000006 
+ 00020571  0x00002ede copy  0x0000003f , 0x00000011 
+ 00020572  0x00002edf iadd  0x00000006 , 0x00000006 
+ 00020573  0x00002ee0 setarg  0x00000009 
+ 00020574  0x00002ee1 istore  0x00000001 , 0x00000005 
+ 00020575  0x00002ee2 copy  0x00000007 , 0x0000003f 
+ 00020576  0x00002ee3 istore  0x00000001 , 0x00000005 
+ 00020577  0x00002ee4 force  0x00000000 , 0x0000003f 
+ 00020578  0x00002ee5 istore  0x00000002 , 0x00000005 
+ 00020579  0x00002ee6 force  0x00000004 , 0x0000003f 
+ 00020580  0x00002ee7 iadd  0x00000012 , 0x00000012 
+ 00020581  0x00002ee8 copy  0x00000013 , 0x0000003f 
+ 00020582  0x00002ee9 isub  0x00000011 , 0x00000013 
+ 00020583  0x00002eea branch  0x00004e20 
+ 00020584  0x00002eec branch  0x00004e20 
+ 00020585  0x00002eef branch  0x00004e20 
+ 00020586  0x00002ef1 force  0x00000000 , 0x00000012 
+ 00020587  0x00002ef2 call  0x000052d0 
+ 00020588  0x00002ef3 setarg  0x00000001 
+ 00020589  0x00002ef4 istore  0x00000001 , 0x00000005 
+ 00020590  0x00002ef5 copy  0x00000007 , 0x0000003f 
+ 00020591  0x00002ef6 istore  0x00000001 , 0x00000005 
+ 00020592  0x00002ef7 setarg  0x00000002 
+ 00020593  0x00002ef8 istore  0x00000002 , 0x00000005 
+ 00020594  0x00002ef9 setarg  0x00000000 
+ 00020595  0x00002efa istore  0x00000002 , 0x00000005 
+ 00020596  0x00002efb increase  0x00000006 , 0x00000012 
+ 00020597  0x00002efc arg  0x00000004 , 0x00000013 
+ 00020598  0x00002efd branch  0x00004e20 
+ 00020599  0x00002f02 setarg  0x00000000 
+ 00020600  0x00002f03 store  0x00000002 , 0x000002e2 
+ 00020601  0x00002f04 store  0x00000002 , 0x000042b3 
+ 00020602  0x00002f05 jam  0x00000000 , 0x000042ba 
+ 00020603  0x00002f06 rtn 
+ 00020604  0x00002f08 setarg  0x00000000 
+ 00020605  0x00002f09 store  0x00000002 , 0x000002dc 
+ 00020606  0x00002f0a store  0x00000002 , 0x000042b1 
+ 00020607  0x00002f0b jam  0x00000000 , 0x000042b9 
+ 00020608  0x00002f0c rtn 
+ 00020609  0x00002f0e setarg  0x00000000 
+ 00020610  0x00002f0f store  0x00000002 , 0x000042b5 
+ 00020611  0x00002f10 jam  0x00000000 , 0x000042bb 
+ 00020612  0x00002f11 fetch  0x00000001 , 0x000042bc 
+ 00020613  0x00002f12 beq  0x00000000 , 0x0000508d 
+ 00020614  0x00002f13 rtn 
+ 00020615  0x00002f16 setarg  0x00000000 
+ 00020616  0x00002f17 store  0x00000002 , 0x000042b7 
+ 00020617  0x00002f18 jam  0x00000000 , 0x000042bc 
+ 00020618  0x00002f19 fetch  0x00000001 , 0x000042bb 
+ 00020619  0x00002f1a beq  0x00000000 , 0x0000508d 
+ 00020620  0x00002f1b rtn 
+ 00020621  0x00002f1e jam  0x00000007 , 0x00000b7d 
+ 00020622  0x00002f1f branch  0x00007c27 
+ 00020623  0x00002f22 fetch  0x00000001 , 0x000002e6 
+ 00020624  0x00002f23 set0  0x00000000 , 0x0000003f 
+ 00020625  0x00002f24 store  0x00000001 , 0x000002e6 
+ 00020626  0x00002f25 fetch  0x00000002 , 0x000042b7 
+ 00020627  0x00002f26 rtn  0x00000034 
+ 00020628  0x00002f27 call  0x000052c4 
+ 00020629  0x00002f28 fetch  0x00000002 , 0x000042b7 
+ 00020630  0x00002f29 copy  0x0000003f , 0x00000011 
+ 00020631  0x00002f2a force  0x00000053 , 0x00000012 
+ 00020632  0x00002f2b branch  0x000050a2 
+ 00020633  0x00002f2d fetch  0x00000001 , 0x000002e6 
+ 00020634  0x00002f2e set0  0x00000007 , 0x0000003f 
+ 00020635  0x00002f2f store  0x00000001 , 0x000002e6 
+ 00020636  0x00002f30 fetch  0x00000002 , 0x000042b5 
+ 00020637  0x00002f31 rtn  0x00000034 
+ 00020638  0x00002f32 call  0x000052c4 
+ 00020639  0x00002f33 fetch  0x00000002 , 0x000042b5 
+ 00020640  0x00002f34 copy  0x0000003f , 0x00000011 
+ 00020641  0x00002f35 force  0x00000052 , 0x00000012 
+ 00020642  0x00002f37 call  0x00005242 
+ 00020643  0x00002f38 call  0x000052d0 
+ 00020644  0x00002f39 force  0x00000006 , 0x0000003f 
+ 00020645  0x00002f3a istore  0x00000001 , 0x00000005 
+ 00020646  0x00002f3b fetch  0x00000001 , 0x000042be 
+ 00020647  0x00002f3c istore  0x00000001 , 0x00000005 
+ 00020648  0x00002f3d setarg  0x00000004 
+ 00020649  0x00002f3e istore  0x00000002 , 0x00000005 
+ 00020650  0x00002f3f copy  0x00000011 , 0x0000003f 
+ 00020651  0x00002f40 istore  0x00000002 , 0x00000005 
+ 00020652  0x00002f41 copy  0x00000012 , 0x0000003f 
+ 00020653  0x00002f42 istore  0x00000002 , 0x00000005 
+ 00020654  0x00002f43 force  0x00000008 , 0x00000002 
+ 00020655  0x00002f44 branch  0x000050e9 
+ 00020656  0x00002f47 set1  0x00000025 , 0x00000000 
+ 00020657  0x00002f48 bpatch  0x0000001f , 0x00004023 
+ 00020658  0x00002f49 call  0x00005242 
+ 00020659  0x00002f4a call  0x000052d0 
+ 00020660  0x00002f4b setarg  0x00000002 
+ 00020661  0x00002f4c istore  0x00000001 , 0x00000005 
+ 00020662  0x00002f4d fetch  0x00000001 , 0x000042be 
+ 00020663  0x00002f4e istore  0x00000001 , 0x00000005 
+ 00020664  0x00002f4f setarg  0x00000004 
+ 00020665  0x00002f50 istore  0x00000002 , 0x00000005 
+ 00020666  0x00002f51 copy  0x00000002 , 0x0000003f 
+ 00020667  0x00002f52 istore  0x00000002 , 0x00000005 
+ 00020668  0x00002f53 copy  0x0000000b , 0x0000003f 
+ 00020669  0x00002f54 istore  0x00000002 , 0x00000005 
+ 00020670  0x00002f55 arg  0x00000008 , 0x00000002 
+ 00020671  0x00002f56 branch  0x000050e9 
+ 00020672  0x00002f58 set1  0x00000025 , 0x00000000 
+ 00020673  0x00002f59 bpatch  0x00000020 , 0x00004024 
+ 00020674  0x00002f5a call  0x00005242 
+ 00020675  0x00002f5b call  0x000052d0 
+ 00020676  0x00002f5c setarg  0x00000004 
+ 00020677  0x00002f5d istore  0x00000001 , 0x00000005 
+ 00020678  0x00002f5e fetch  0x00000001 , 0x000042be 
+ 00020679  0x00002f5f istore  0x00000001 , 0x00000005 
+ 00020680  0x00002f60 setarg  0x00000008 
+ 00020681  0x00002f61 istore  0x00000002 , 0x00000005 
+ 00020682  0x00002f63 copy  0x00000002 , 0x0000003f 
+ 00020683  0x00002f65 istore  0x00000002 , 0x00000005 
+ 00020684  0x00002f66 setarg  0x00000000 
+ 00020685  0x00002f67 istore  0x00000002 , 0x00000005 
+ 00020686  0x00002f68 setarg  0x00000001 
+ 00020687  0x00002f69 istore  0x00000001 , 0x00000005 
+ 00020688  0x00002f6a setarg  0x00000002 
+ 00020689  0x00002f6b istore  0x00000001 , 0x00000005 
+ 00020690  0x00002f6c setarg  0x000003e3 
+ 00020691  0x00002f6d istore  0x00000002 , 0x00000005 
+ 00020692  0x00002f6e arg  0x0000000c , 0x00000002 
+ 00020693  0x00002f6f branch  0x000050e9 
+ 00020694  0x00002f71 set1  0x00000025 , 0x00000000 
+ 00020695  0x00002f72 bpatch  0x00000021 , 0x00004024 
+ 00020696  0x00002f73 call  0x00005242 
+ 00020697  0x00002f74 call  0x000052d0 
+ 00020698  0x00002f75 setarg  0x00000006 
+ 00020699  0x00002f76 istore  0x00000001 , 0x00000005 
+ 00020700  0x00002f77 fetch  0x00000001 , 0x000042be 
+ 00020701  0x00002f78 increase  0x00000001 , 0x0000003f 
+ 00020702  0x00002f79 copy  0x00000005 , 0x00000011 
+ 00020703  0x00002f7a store  0x00000001 , 0x000042be 
+ 00020704  0x00002f7b copy  0x00000011 , 0x00000005 
+ 00020705  0x00002f7c istore  0x00000001 , 0x00000005 
+ 00020706  0x00002f7d setarg  0x00000004 
+ 00020707  0x00002f7e istore  0x00000002 , 0x00000005 
+ 00020708  0x00002f7f copy  0x00000002 , 0x0000003f 
+ 00020709  0x00002f80 istore  0x00000002 , 0x00000005 
+ 00020710  0x00002f81 copy  0x0000000b , 0x0000003f 
+ 00020711  0x00002f82 istore  0x00000002 , 0x00000005 
+ 00020712  0x00002f83 arg  0x00000008 , 0x00000002 
+ 00020713  0x00002f87 storet  0x00000002 , 0x000002d6 
+ 00020714  0x00002f88 copy  0x00000002 , 0x0000003f 
+ 00020715  0x00002f89 branch  0x0000526f , 0x00000034 
+ 00020716  0x00002f8a call  0x000052ce 
+ 00020717  0x00002f8b fetch  0x00000002 , 0x000002d6 
+ 00020718  0x00002f8c istore  0x00000002 , 0x00000005 
+ 00020719  0x00002f8d force  0x00000001 , 0x0000003f 
+ 00020720  0x00002f8e istore  0x00000002 , 0x00000005 
+ 00020721  0x00002f8f rtn 
+ 00020722  0x00002f92 fetch  0x00000002 , 0x000002dc 
+ 00020723  0x00002f93 branch  0x00003bf1 , 0x00000034 
+ 00020724  0x00002f94 call  0x000052dc 
+ 00020725  0x00002f95 fetch  0x00000002 , 0x000002dc 
+ 00020726  0x00002f96 istore  0x00000002 , 0x00000005 
+ 00020727  0x00002f97 fetch  0x00000002 , 0x000042b1 
+ 00020728  0x00002f98 istore  0x00000002 , 0x00000005 
+ 00020729  0x00002f99 rtn 
+ 00020730  0x00002f9b set1  0x00000025 , 0x00000000 
+ 00020731  0x00002f9c bpatch  0x00000022 , 0x00004024 
+ 00020732  0x00002f9d fetch  0x00000002 , 0x000002cd 
+ 00020733  0x00002f9e branch  0x00004dfc , 0x00000034 
+ 00020734  0x00002f9f fetch  0x00000001 , 0x000002cf 
+ 00020735  0x00002fa0 beq  0x00000001 , 0x00005105 
+ 00020736  0x00002fa1 beq  0x00000050 , 0x00004de7 
+ 00020737  0x00002fa2 beq  0x00000051 , 0x00004df4 
+ 00020738  0x00002fa3 beq  0x00000052 , 0x00004df2 
+ 00020739  0x00002fa4 beq  0x00000053 , 0x00004df2 
+ 00020740  0x00002fa5 branch  0x00004dfc 
+ 00020741  0x00002fa8 set1  0x00000025 , 0x00000000 
+ 00020742  0x00002fa9 bpatch  0x00000023 , 0x00004024 
+ 00020743  0x00002faa call  0x000052c4 
+ 00020744  0x00002fab force  0x00000000 , 0x00000012 
+ 00020745  0x00002fac call  0x000052d0 
+ 00020746  0x00002fad copy  0x0000003f , 0x00000005 
+ 00020747  0x00002fae fetch  0x00000002 , 0x000002cd 
+ 00020748  0x00002faf copy  0x0000003f , 0x00000013 
+ 00020749  0x00002fb0 fetch  0x00000002 , 0x000002cb 
+ 00020750  0x00002fb1 iforce  0x00000006 
+ 00020751  0x00002fb3 call  0x00005115 
+ 00020752  0x00002fb4 increase  0xfffffffc , 0x00000013 
+ 00020753  0x00002fb5 nbranch  0x0000510f , 0x00000005 
+ 00020754  0x00002fb6 copy  0x00000012 , 0x00000002 
+ 00020755  0x00002fb7 call  0x000050e9 
+ 00020756  0x00002fb8 branch  0x00004dfc 
+ 00020757  0x00002fbb ifetch  0x00000001 , 0x00000006 
+ 00020758  0x00002fbc beq  0x00000002 , 0x00005120 
+ 00020759  0x00002fbd beq  0x00000001 , 0x00005123 
+ 00020760  0x00002fbe beq  0x00000003 , 0x0000512d 
+ 00020761  0x00002fbf beq  0x00000005 , 0x00005168 
+ 00020762  0x00002fc0 beq  0x00000004 , 0x00005199 
+ 00020763  0x00002fc1 beq  0x00000007 , 0x0000521c 
+ 00020764  0x00002fc2 beq  0x00000006 , 0x000051eb 
+ 00020765  0x00002fc3 beq  0x00000008 , 0x00005058 
+ 00020766  0x00002fc4 beq  0x0000000a , 0x00004e3a 
+ 00020767  0x00002fc5 branch  0x00005236 
+ 00020768  0x00002fc8 call  0x00007e1c 
+ 00020769  0x00002fca call  0x00007e21 
+ 00020770  0x00002fcb branch  0x00004e5c 
+ 00020771  0x00002fcd ifetch  0x00000001 , 0x00000006 
+ 00020772  0x00002fce copy  0x0000003f , 0x00000007 
+ 00020773  0x00002fcf ifetch  0x00000002 , 0x00000006 
+ 00020774  0x00002fd0 copy  0x0000003f , 0x00000011 
+ 00020775  0x00002fd1 copy  0x00000013 , 0x0000003f 
+ 00020776  0x00002fd2 isub  0x00000011 , 0x00000013 
+ 00020777  0x00002fd4 ifetch  0x00000001 , 0x00000006 
+ 00020778  0x00002fd5 increase  0xffffffff , 0x00000011 
+ 00020779  0x00002fd6 nbranch  0x00005129 , 0x00000005 
+ 00020780  0x00002fd7 rtn 
+ 00020781  0x00002fd9 ifetch  0x00000001 , 0x00000006 
+ 00020782  0x00002fda copy  0x0000003f , 0x00000007 
+ 00020783  0x00002fdb ifetch  0x00000002 , 0x00000006 
+ 00020784  0x00002fdc copy  0x0000003f , 0x00000011 
+ 00020785  0x00002fdd ifetch  0x00000002 , 0x00000006 
+ 00020786  0x00002fde copy  0x0000003f , 0x0000000b 
+ 00020787  0x00002fdf ifetch  0x00000002 , 0x00000006 
+ 00020788  0x00002fe0 copy  0x0000003f , 0x00000002 
+ 00020789  0x00002fe1 ifetch  0x00000002 , 0x00000006 
+ 00020790  0x00002fe2 sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00020791  0x00002fe3 branch  0x0000513f , 0x00000005 
+ 00020792  0x00002fe4 beq  0x00000002 , 0x0000513b 
+ 00020793  0x00002fe5 beq  0x00000004 , 0x0000513b 
+ 00020794  0x00002fe6 branch  0x0000513d 
+ 00020795  0x00002fe8 jam  0x00000016 , 0x00000b7d 
+ 00020796  0x00002fe9 call  0x00007c27 
+ 00020797  0x00002feb ifetch  0x00000002 , 0x00000006 
+ 00020798  0x00002fec branch  0x00005165 
+ 00020799  0x00002fee call  0x00007e1c 
+ 00020800  0x00002ff2 setarg  0x00000050 
+ 00020801  0x00002ff3 isub  0x00000002 , 0x0000003e 
+ 00020802  0x00002ff4 branch  0x0000514d , 0x00000005 
+ 00020803  0x00002ff5 setarg  0x00000051 
+ 00020804  0x00002ff6 isub  0x00000002 , 0x0000003e 
+ 00020805  0x00002ff7 branch  0x00005153 , 0x00000005 
+ 00020806  0x00002ff8 setarg  0x00000053 
+ 00020807  0x00002ff9 isub  0x00000002 , 0x0000003e 
+ 00020808  0x00002ffa branch  0x0000515f , 0x00000005 
+ 00020809  0x00002ffb setarg  0x00000052 
+ 00020810  0x00002ffc isub  0x00000002 , 0x0000003e 
+ 00020811  0x00002ffd branch  0x00005159 , 0x00000005 
+ 00020812  0x00002ffe branch  0x00005165 
+ 00020813  0x00003000 copy  0x0000000b , 0x0000003f 
+ 00020814  0x00003001 store  0x00000002 , 0x000042b1 
+ 00020815  0x00003002 fetch  0x00000001 , 0x000042b9 
+ 00020816  0x00003003 set1  0x00000001 
+ 00020817  0x00003004 store  0x00000001 , 0x000042b9 
+ 00020818  0x00003005 branch  0x00005164 
+ 00020819  0x00003007 copy  0x0000000b , 0x0000003f 
+ 00020820  0x00003008 store  0x00000002 , 0x000042b3 
+ 00020821  0x00003009 fetch  0x00000001 , 0x000042ba 
+ 00020822  0x0000300a set1  0x00000001 
+ 00020823  0x0000300b store  0x00000001 , 0x000042ba 
+ 00020824  0x0000300c branch  0x00005164 
+ 00020825  0x0000300e copy  0x0000000b , 0x0000003f 
+ 00020826  0x0000300f store  0x00000002 , 0x000042b5 
+ 00020827  0x00003010 fetch  0x00000001 , 0x000042bb 
+ 00020828  0x00003011 set1  0x00000001 
+ 00020829  0x00003012 store  0x00000001 , 0x000042bb 
+ 00020830  0x00003013 branch  0x00005164 
+ 00020831  0x00003015 copy  0x0000000b , 0x0000003f 
+ 00020832  0x00003016 store  0x00000002 , 0x000042b7 
+ 00020833  0x00003017 fetch  0x00000001 , 0x000042bc 
+ 00020834  0x00003018 set1  0x00000001 
+ 00020835  0x00003019 store  0x00000001 , 0x000042bc 
+ 00020836  0x0000301d call  0x00007e21 
+ 00020837  0x0000301f copy  0x00000013 , 0x0000003f 
+ 00020838  0x00003020 isub  0x00000011 , 0x00000013 
+ 00020839  0x00003021 rtn 
+ 00020840  0x00003024 ifetch  0x00000001 , 0x00000006 
+ 00020841  0x00003025 copy  0x0000003f , 0x00000007 
+ 00020842  0x00003026 ifetch  0x00000002 , 0x00000006 
+ 00020843  0x00003027 copy  0x0000003f , 0x00000011 
+ 00020844  0x00003028 copy  0x00000013 , 0x0000003f 
+ 00020845  0x00003029 isub  0x00000011 , 0x00000013 
+ 00020846  0x0000302a ifetch  0x00000002 , 0x00000006 
+ 00020847  0x0000302b copy  0x0000003f , 0x0000000b 
+ 00020848  0x0000302c ifetch  0x00000002 , 0x00000006 
+ 00020849  0x0000302d ifetch  0x00000002 , 0x00000006 
+ 00020850  0x0000302e nbranch  0x00005193 , 0x00000034 
+ 00020851  0x0000302f call  0x00007e1c 
+ 00020852  0x00003033 copy  0x0000000b , 0x00000002 
+ 00020853  0x00003034 setarg  0x00000050 
+ 00020854  0x00003035 isub  0x00000002 , 0x0000003e 
+ 00020855  0x00003036 branch  0x00005181 , 0x00000005 
+ 00020856  0x00003037 setarg  0x00000051 
+ 00020857  0x00003038 isub  0x00000002 , 0x0000003e 
+ 00020858  0x00003039 branch  0x00005185 , 0x00000005 
+ 00020859  0x0000303a setarg  0x00000052 
+ 00020860  0x0000303b isub  0x00000002 , 0x0000003e 
+ 00020861  0x0000303c branch  0x00005189 , 0x00000005 
+ 00020862  0x0000303d setarg  0x00000053 
+ 00020863  0x0000303e isub  0x00000002 , 0x0000003e 
+ 00020864  0x0000303f branch  0x0000518d , 0x00000005 
+ 00020865  0x00003041 fetch  0x00000001 , 0x000042b9 
+ 00020866  0x00003042 set1  0x00000005 
+ 00020867  0x00003043 store  0x00000001 , 0x000042b9 
+ 00020868  0x00003044 rtn 
+ 00020869  0x00003046 fetch  0x00000001 , 0x000042ba 
+ 00020870  0x00003047 set1  0x00000005 
+ 00020871  0x00003048 store  0x00000001 , 0x000042ba 
+ 00020872  0x00003049 rtn 
+ 00020873  0x0000304b fetch  0x00000001 , 0x000042bb 
+ 00020874  0x0000304c set1  0x00000005 
+ 00020875  0x0000304d store  0x00000001 , 0x000042bb 
+ 00020876  0x0000304e rtn 
+ 00020877  0x00003050 fetch  0x00000001 , 0x000042bc 
+ 00020878  0x00003051 set1  0x00000005 
+ 00020879  0x00003052 store  0x00000001 , 0x000042bc 
+ 00020880  0x00003053 jam  0x00000006 , 0x00000b7d 
+ 00020881  0x00003054 branch  0x00007c27 
+ 00020882  0x00003058 call  0x00007e21 
+ 00020883  0x0000305a increase  0xfffffffa , 0x00000011 
+ 00020884  0x0000305c branch  0x00005198 , 0x00000005 
+ 00020885  0x0000305d increase  0x00000001 , 0x00000006 
+ 00020886  0x0000305e increase  0xffffffff , 0x00000011 
+ 00020887  0x0000305f branch  0x00005194 
+ 00020888  0x00003061 rtn 
+ 00020889  0x00003063 ifetch  0x00000001 , 0x00000006 
+ 00020890  0x00003064 copy  0x0000003f , 0x00000007 
+ 00020891  0x00003065 ifetch  0x00000002 , 0x00000006 
+ 00020892  0x00003066 copy  0x0000003f , 0x00000011 
+ 00020893  0x00003067 copy  0x00000013 , 0x0000003f 
+ 00020894  0x00003068 isub  0x00000011 , 0x00000013 
+ 00020895  0x00003069 ifetch  0x00000002 , 0x00000006 
+ 00020896  0x0000306a increase  0x00000002 , 0x00000006 
+ 00020897  0x0000306b copy  0x0000003f , 0x00000002 
+ 00020898  0x0000306c setarg  0x00000005 
+ 00020899  0x0000306d istore  0x00000001 , 0x00000005 
+ 00020900  0x0000306e copy  0x00000007 , 0x0000003f 
+ 00020901  0x0000306f istore  0x00000001 , 0x00000005 
+ 00020902  0x00003070 increase  0x00000002 , 0x00000011 
+ 00020903  0x00003071 copy  0x00000011 , 0x0000003f 
+ 00020904  0x00003072 istore  0x00000002 , 0x00000005 
+ 00020905  0x00003073 call  0x00007e1c 
+ 00020906  0x00003074 setarg  0x00000050 
+ 00020907  0x00003075 isub  0x00000002 , 0x0000003e 
+ 00020908  0x00003076 branch  0x000051b7 , 0x00000005 
+ 00020909  0x00003077 setarg  0x00000051 
+ 00020910  0x00003078 isub  0x00000002 , 0x0000003e 
+ 00020911  0x00003079 branch  0x000051c8 , 0x00000005 
+ 00020912  0x0000307a setarg  0x00000052 
+ 00020913  0x0000307b isub  0x00000002 , 0x0000003e 
+ 00020914  0x0000307c branch  0x000051ce , 0x00000005 
+ 00020915  0x0000307d setarg  0x00000053 
+ 00020916  0x0000307e isub  0x00000002 , 0x0000003e 
+ 00020917  0x0000307f branch  0x000051d4 , 0x00000005 
+ 00020918  0x00003080 branch  0x000051d9 
+ 00020919  0x00003082 fetch  0x00000001 , 0x000042b9 
+ 00020920  0x00003083 set1  0x00000004 , 0x0000003f 
+ 00020921  0x00003084 set1  0x00000003 , 0x0000003f 
+ 00020922  0x00003085 store  0x00000001 , 0x000042b9 
+ 00020923  0x00003086 bbit1  0x00000002 , 0x000051c5 
+ 00020924  0x00003087 fetcht  0x00000001 , 0x000002e6 
+ 00020925  0x00003088 set1  0x00000006 , 0x00000002 
+ 00020926  0x00003089 storet  0x00000001 , 0x000002e6 
+ 00020927  0x0000308a copy  0x00000007 , 0x0000003f 
+ 00020928  0x0000308b increase  0x00000001 , 0x0000003f 
+ 00020929  0x0000308c store  0x00000001 , 0x000002e8 
+ 00020930  0x0000308d fetch  0x00000001 , 0x000042b9 
+ 00020931  0x0000308e set1  0x00000002 , 0x0000003f 
+ 00020932  0x0000308f store  0x00000001 , 0x000042b9 
+ 00020933  0x00003091 fetch  0x00000002 , 0x000042b1 
+ 00020934  0x00003092 store  0x00000002 , 0x000002e9 
+ 00020935  0x00003093 branch  0x000051d9 
+ 00020936  0x00003095 fetch  0x00000001 , 0x000042ba 
+ 00020937  0x00003096 set1  0x00000004 , 0x0000003f 
+ 00020938  0x00003097 set1  0x00000003 , 0x0000003f 
+ 00020939  0x00003098 store  0x00000001 , 0x000042ba 
+ 00020940  0x00003099 fetch  0x00000002 , 0x000042b3 
+ 00020941  0x0000309a branch  0x000051d9 
+ 00020942  0x0000309c fetch  0x00000001 , 0x000042bb 
+ 00020943  0x0000309d set1  0x00000004 , 0x0000003f 
+ 00020944  0x0000309e set1  0x00000003 , 0x0000003f 
+ 00020945  0x0000309f store  0x00000001 , 0x000042bb 
+ 00020946  0x000030a0 fetch  0x00000002 , 0x000042b5 
+ 00020947  0x000030a1 branch  0x000051d9 
+ 00020948  0x000030a3 fetch  0x00000001 , 0x000042bc 
+ 00020949  0x000030a4 set1  0x00000004 , 0x0000003f 
+ 00020950  0x000030a5 set1  0x00000003 , 0x0000003f 
+ 00020951  0x000030a6 store  0x00000001 , 0x000042bc 
+ 00020952  0x000030a7 fetch  0x00000002 , 0x000042b7 
+ 00020953  0x000030ab copy  0x0000003f , 0x0000000b 
+ 00020954  0x000030ac call  0x00007e21 
+ 00020955  0x000030ae copy  0x0000000b , 0x0000003f 
+ 00020956  0x000030b0 istore  0x00000002 , 0x00000005 
+ 00020957  0x000030b1 force  0x00000000 , 0x0000003f 
+ 00020958  0x000030b2 istore  0x00000002 , 0x00000005 
+ 00020959  0x000030b3 force  0x00000000 , 0x0000003f 
+ 00020960  0x000030b4 istore  0x00000002 , 0x00000005 
+ 00020961  0x000030b5 force  0x0000000a , 0x0000003f 
+ 00020962  0x000030b6 iadd  0x00000012 , 0x00000012 
+ 00020963  0x000030b7 increase  0xfffffffa , 0x00000011 
+ 00020964  0x000030b9 branch  0x000051ea , 0x00000005 
+ 00020965  0x000030ba ifetch  0x00000001 , 0x00000006 
+ 00020966  0x000030bb istore  0x00000001 , 0x00000005 
+ 00020967  0x000030bc increase  0x00000001 , 0x00000012 
+ 00020968  0x000030bd increase  0xffffffff , 0x00000011 
+ 00020969  0x000030be branch  0x000051e4 
+ 00020970  0x000030c0 rtn 
+ 00020971  0x000030c2 ifetch  0x00000001 , 0x00000006 
+ 00020972  0x000030c3 copy  0x0000003f , 0x00000007 
+ 00020973  0x000030c4 ifetch  0x00000002 , 0x00000006 
+ 00020974  0x000030c5 copy  0x0000003f , 0x00000011 
+ 00020975  0x000030c6 copy  0x00000013 , 0x0000003f 
+ 00020976  0x000030c7 isub  0x00000011 , 0x00000013 
+ 00020977  0x000030c9 ifetch  0x00000002 , 0x00000006 
+ 00020978  0x000030ca copy  0x0000003f , 0x00000011 
+ 00020979  0x000030cb ifetch  0x00000002 , 0x00000006 
+ 00020980  0x000030cc copy  0x0000003f , 0x0000000b 
+ 00020981  0x000030cd call  0x00007e1c 
+ 00020982  0x000030ce setarg  0x00000050 
+ 00020983  0x000030cf copy  0x00000011 , 0x00000002 
+ 00020984  0x000030d0 isub  0x00000002 , 0x0000003e 
+ 00020985  0x000030d1 branch  0x00005203 , 0x00000005 
+ 00020986  0x000030d2 setarg  0x00000052 
+ 00020987  0x000030d3 copy  0x00000011 , 0x00000002 
+ 00020988  0x000030d4 isub  0x00000002 , 0x0000003e 
+ 00020989  0x000030d5 branch  0x00005208 , 0x00000005 
+ 00020990  0x000030d6 setarg  0x00000053 
+ 00020991  0x000030d7 copy  0x00000011 , 0x00000002 
+ 00020992  0x000030d8 isub  0x00000002 , 0x0000003e 
+ 00020993  0x000030d9 branch  0x0000520a , 0x00000005 
+ 00020994  0x000030da branch  0x0000520c 
+ 00020995  0x000030dc setarg  0x00000000 
+ 00020996  0x000030dd store  0x00000002 , 0x000002dc 
+ 00020997  0x000030de store  0x00000002 , 0x000042b1 
+ 00020998  0x000030df store  0x00000001 , 0x000042b9 
+ 00020999  0x000030e0 branch  0x0000520e 
+ 00021000  0x000030e2 call  0x00005081 
+ 00021001  0x000030e3 branch  0x0000520e 
+ 00021002  0x000030e5 call  0x00005087 
+ 00021003  0x000030eb branch  0x0000520e 
+ 00021004  0x000030ed setarg  0x00000000 
+ 00021005  0x000030ee store  0x00000002 , 0x000002e2 
+ 00021006  0x000030f0 call  0x00007e21 
+ 00021007  0x000030f1 setarg  0x00000007 
+ 00021008  0x000030f2 istore  0x00000001 , 0x00000005 
+ 00021009  0x000030f3 copy  0x00000007 , 0x0000003f 
+ 00021010  0x000030f4 istore  0x00000001 , 0x00000005 
+ 00021011  0x000030f5 setarg  0x00000004 
+ 00021012  0x000030f6 istore  0x00000002 , 0x00000005 
+ 00021013  0x000030f7 copy  0x00000011 , 0x0000003f 
+ 00021014  0x000030f8 istore  0x00000002 , 0x00000005 
+ 00021015  0x000030f9 copy  0x0000000b , 0x0000003f 
+ 00021016  0x000030fa istore  0x00000002 , 0x00000005 
+ 00021017  0x000030fb force  0x00000008 , 0x0000003f 
+ 00021018  0x000030fc iadd  0x00000012 , 0x00000012 
+ 00021019  0x000030fd rtn 
+ 00021020  0x00003100 ifetch  0x00000001 , 0x00000006 
+ 00021021  0x00003101 copy  0x0000003f , 0x00000007 
+ 00021022  0x00003102 ifetch  0x00000002 , 0x00000006 
+ 00021023  0x00003103 copy  0x0000003f , 0x00000011 
+ 00021024  0x00003104 ifetch  0x00000002 , 0x00000006 
+ 00021025  0x00003105 copy  0x0000003f , 0x0000000b 
+ 00021026  0x00003106 ifetch  0x00000002 , 0x00000006 
+ 00021027  0x00003107 copy  0x0000003f , 0x00000002 
+ 00021028  0x00003108 call  0x00007e1c 
+ 00021029  0x00003109 fetch  0x00000001 , 0x000042be 
+ 00021030  0x0000310a icompare  0x000000ff , 0x00000007 
+ 00021031  0x0000310b nbranch  0x00005232 , 0x00000001 
+ 00021032  0x0000310c setarg  0x00000050 
+ 00021033  0x0000310d isub  0x00000002 , 0x0000003e 
+ 00021034  0x0000310e branch  0x0000522f , 0x00000005 
+ 00021035  0x0000310f setarg  0x00000051 
+ 00021036  0x00003110 isub  0x00000002 , 0x0000003e 
+ 00021037  0x00003111 branch  0x00005232 , 0x00000005 
+ 00021038  0x00003112 branch  0x00005232 
+ 00021039  0x00003114 jam  0x00000000 , 0x000042b1 
+ 00021040  0x00003115 jam  0x00000000 , 0x000042b9 
+ 00021041  0x00003116 branch  0x00005232 
+ 00021042  0x0000311b call  0x00007e21 
+ 00021043  0x0000311c copy  0x00000013 , 0x0000003f 
+ 00021044  0x0000311d isub  0x00000011 , 0x00000013 
+ 00021045  0x0000311e rtn 
+ 00021046  0x00003121 setarg  0x00000001 
+ 00021047  0x00003122 istore  0x00000001 , 0x00000005 
+ 00021048  0x00003123 ifetch  0x00000001 , 0x00000006 
+ 00021049  0x00003124 istore  0x00000001 , 0x00000005 
+ 00021050  0x00003125 setarg  0x00000002 
+ 00021051  0x00003126 istore  0x00000002 , 0x00000005 
+ 00021052  0x00003127 setarg  0x00000000 
+ 00021053  0x00003128 istore  0x00000002 , 0x00000005 
+ 00021054  0x00003129 setarg  0x00000006 
+ 00021055  0x0000312a iadd  0x00000012 , 0x00000012 
+ 00021056  0x0000312b force  0x00000004 , 0x00000013 
+ 00021057  0x0000312c rtn 
+ 00021058  0x00003130 fetch  0x00000001 , 0x000042be 
+ 00021059  0x00003131 increase  0x00000001 , 0x0000003f 
+ 00021060  0x00003132 bne  0x00000000 , 0x00005246 
+ 00021061  0x00003133 increase  0x00000001 , 0x0000003f 
+ 00021062  0x00003135 store  0x00000001 , 0x000042be 
+ 00021063  0x00003136 rtn 
+ 00021064  0x00003141 set1  0x00000025 , 0x00000000 
+ 00021065  0x00003142 bpatch  0x00000024 , 0x00004024 
+ 00021066  0x00003143 arg  0x00000000 , 0x00000012 
+ 00021067  0x00003144 call  0x0000527a 
+ 00021068  0x00003145 nbranch  0x00003bf1 , 0x00000034 
+ 00021069  0x00003146 call  0x00005287 
+ 00021070  0x00003147 arg  0x00001800 , 0x00000012 
+ 00021071  0x00003148 arg  0x00000000 , 0x00000007 
+ 00021072  0x0000314a fetcht  0x00000001 , 0x000042bf 
+ 00021073  0x0000314b qisolate1  0x00000002 
+ 00021074  0x0000314c branch  0x00005258 , 0x00000001 
+ 00021075  0x0000314d call  0x000052ab 
+ 00021076  0x0000314e sub  0x0000000b , 0x00000000 , 0x0000003e 
+ 00021077  0x0000314f branch  0x00005258 , 0x00000002 
+ 00021078  0x00003150 call  0x00005292 
+ 00021079  0x00003151 branch  0x0000525e 
+ 00021080  0x00003153 increase  0x00000080 , 0x00000012 
+ 00021081  0x00003154 increase  0x00000001 , 0x00000007 
+ 00021082  0x00003155 setarg  0x00000008 
+ 00021083  0x00003156 isub  0x00000007 , 0x0000003e 
+ 00021084  0x00003157 branch  0x00005250 , 0x00000002 
+ 00021085  0x00003158 arg  0x00000000 , 0x00000012 
+ 00021086  0x0000315a copy  0x00000012 , 0x0000003f 
+ 00021087  0x0000315b branch  0x00003bf1 , 0x00000034 
+ 00021088  0x0000315c rtn 
+ 00021089  0x00003165 set1  0x00000025 , 0x00000000 
+ 00021090  0x00003166 bpatch  0x00000025 , 0x00004024 
+ 00021091  0x00003167 call  0x00005280 
+ 00021092  0x00003168 increase  0x00000001 , 0x00000006 
+ 00021093  0x00003169 ifetch  0x00000002 , 0x00000006 
+ 00021094  0x0000316a rtn 
+ 00021095  0x00003171 set1  0x00000025 , 0x00000000 
+ 00021096  0x00003172 bpatch  0x00000026 , 0x00004024 
+ 00021097  0x00003173 call  0x00005280 
+ 00021098  0x00003174 copy  0x00000006 , 0x00000005 
+ 00021099  0x00003175 copy  0x00000006 , 0x00000002 
+ 00021100  0x00003176 setarg  0x00000000 
+ 00021101  0x00003177 istore  0x00000003 , 0x00000005 
+ 00021102  0x00003178 rtn 
+ 00021103  0x0000317e set1  0x00000025 , 0x00000000 
+ 00021104  0x0000317f bpatch  0x00000027 , 0x00004024 
+ 00021105  0x00003180 call  0x0000527e 
+ 00021106  0x00003181 branch  0x00003bf1 , 0x00000034 
+ 00021107  0x00003182 fetch  0x00000003 , 0x000042c6 
+ 00021108  0x00003183 store  0x00000003 , 0x000042c9 
+ 00021109  0x00003184 fetch  0x00000003 , 0x000042c3 
+ 00021110  0x00003185 store  0x00000003 , 0x000042c6 
+ 00021111  0x00003186 fetch  0x00000003 , 0x000042c0 
+ 00021112  0x00003187 store  0x00000003 , 0x000042c3 
+ 00021113  0x00003188 rtn 
+ 00021114  0x0000318f fetch  0x00000003 , 0x000042c0 
+ 00021115  0x00003190 rtn 
+ 00021116  0x00003197 fetch  0x00000003 , 0x000042c3 
+ 00021117  0x00003198 rtn 
+ 00021118  0x0000319f fetch  0x00000003 , 0x000042c9 
+ 00021119  0x000031a0 rtn 
+ 00021120  0x000031a6 call  0x0000527e 
+ 00021121  0x000031a7 branch  0x00003bf1 , 0x00000034 
+ 00021122  0x000031a8 arg  0x000042c0 , 0x00000006 
+ 00021123  0x000031aa ifetch  0x00000003 , 0x00000006 
+ 00021124  0x000031ab branch  0x00005283 , 0x00000034 
+ 00021125  0x000031ac increase  0xfffffffd , 0x00000006 
+ 00021126  0x000031ad rtn 
+ 00021127  0x000031b5 set1  0x00000025 , 0x00000000 
+ 00021128  0x000031b6 bpatch  0x00000028 , 0x00004025 
+ 00021129  0x000031b7 arg  0x00000004 , 0x00000039 
+ 00021130  0x000031b8 arg  0x000042c0 , 0x00000006 
+ 00021131  0x000031b9 arg  0x00000000 , 0x00000002 
+ 00021132  0x000031bb ifetch  0x00000003 , 0x00000006 
+ 00021133  0x000031bc and  0x0000003f , 0x000000ff , 0x0000003f 
+ 00021134  0x000031bd ior  0x00000002 , 0x00000002 
+ 00021135  0x000031be loop  0x0000528c 
+ 00021136  0x000031bf storet  0x00000001 , 0x000042bf 
+ 00021137  0x000031c0 rtn 
+ 00021138  0x000031c9 set1  0x00000025 , 0x00000000 
+ 00021139  0x000031ca bpatch  0x00000029 , 0x00004025 
+ 00021140  0x000031cb call  0x0000527a 
+ 00021141  0x000031cc nbranch  0x00003bf1 , 0x00000034 
+ 00021142  0x000031cd call  0x0000527e 
+ 00021143  0x000031ce branch  0x000052a0 , 0x00000034 
+ 00021144  0x000031cf fetch  0x00000003 , 0x000042c3 
+ 00021145  0x000031d0 store  0x00000003 , 0x000042c0 
+ 00021146  0x000031d1 ifetch  0x00000003 , 0x00000006 
+ 00021147  0x000031d2 istore  0x00000003 , 0x00000005 
+ 00021148  0x000031d3 ifetch  0x00000003 , 0x00000006 
+ 00021149  0x000031d4 istore  0x00000003 , 0x00000005 
+ 00021150  0x000031d5 setarg  0x00000000 
+ 00021151  0x000031d6 istore  0x00000003 , 0x00000005 
+ 00021152  0x000031d8 arg  0x00000000 , 0x00000002 
+ 00021153  0x000031d9 copy  0x0000000b , 0x0000003f 
+ 00021154  0x000031da iadd  0x00000007 , 0x0000003f 
+ 00021155  0x000031dc qset1  0x00000002 
+ 00021156  0x000031dd increase  0x00000001 , 0x00000007 
+ 00021157  0x000031de isub  0x00000007 , 0x0000003e 
+ 00021158  0x000031df nbranch  0x000052a3 , 0x00000005 
+ 00021159  0x000031e1 lshift8  0x00000012 , 0x0000003f 
+ 00021160  0x000031e2 ior  0x00000002 , 0x0000003f 
+ 00021161  0x000031e3 store  0x00000003 , 0x000042c9 
+ 00021162  0x000031e4 rtn 
+ 00021163  0x000031ef set1  0x00000025 , 0x00000000 
+ 00021164  0x000031f0 bpatch  0x0000002a , 0x00004025 
+ 00021165  0x000031f1 call  0x00005287 
+ 00021166  0x000031f2 copy  0x00000007 , 0x00000013 
+ 00021167  0x000031f3 arg  0x00000000 , 0x00000002 
+ 00021168  0x000031f4 arg  0x00000000 , 0x0000000b 
+ 00021169  0x000031f7 copy  0x00000007 , 0x0000003f 
+ 00021170  0x000031f8 beq  0x00000008 , 0x000052bc 
+ 00021171  0x000031f9 fetch  0x00000001 , 0x000042bf 
+ 00021172  0x000031fa qisolate1  0x0000003f 
+ 00021173  0x000031fb branch  0x000052bc , 0x00000001 
+ 00021174  0x000031fc increase  0x00000080 , 0x00000002 
+ 00021175  0x000031fd increase  0x00000001 , 0x00000007 
+ 00021176  0x000031fe copy  0x00000011 , 0x0000003f 
+ 00021177  0x000031ff isub  0x00000002 , 0x0000003e 
+ 00021178  0x00003200 branch  0x000052bc , 0x00000005 
+ 00021179  0x00003201 branch  0x000052b1 , 0x00000002 
+ 00021180  0x00003203 copy  0x00000002 , 0x0000003f 
+ 00021181  0x00003204 isub  0x00000011 , 0x0000003e 
+ 00021182  0x00003205 nbranch  0x000052c2 , 0x00000002 
+ 00021183  0x00003206 copy  0x00000007 , 0x0000003f 
+ 00021184  0x00003207 copy  0x00000013 , 0x00000002 
+ 00021185  0x00003208 isub  0x00000002 , 0x0000000b 
+ 00021186  0x0000320a copy  0x00000013 , 0x00000007 
+ 00021187  0x0000320b rtn 
+ 00021188  0x0000320f set1  0x00000025 , 0x00000000 
+ 00021189  0x00003210 bpatch  0x0000002b , 0x00004025 
+ 00021190  0x00003211 arg  0x0000007f , 0x00000011 
+ 00021191  0x00003212 call  0x00005248 
+ 00021192  0x00003213 store  0x00000002 , 0x000002d2 
+ 00021193  0x00003214 increase  0x00000004 , 0x0000003f 
+ 00021194  0x00003215 store  0x00000002 , 0x000002d4 
+ 00021195  0x00003216 setarg  0x00000000 
+ 00021196  0x00003217 store  0x00000002 , 0x000002d6 
+ 00021197  0x00003218 rtn 
+ 00021198  0x0000321b fetch  0x00000002 , 0x000002d2 
+ 00021199  0x0000321c branch  0x000052f2 
+ 00021200  0x0000321f fetch  0x00000002 , 0x000002d4 
+ 00021201  0x00003220 branch  0x000052f2 
+ 00021202  0x00003224 set1  0x00000025 , 0x00000000 
+ 00021203  0x00003225 bpatch  0x0000002c , 0x00004025 
+ 00021204  0x00003226 arg  0x000002ff , 0x00000011 
+ 00021205  0x00003227 call  0x00005248 
+ 00021206  0x00003228 store  0x00000002 , 0x000002d8 
+ 00021207  0x00003229 increase  0x00000004 , 0x0000003f 
+ 00021208  0x0000322a store  0x00000002 , 0x000002da 
+ 00021209  0x0000322b setarg  0x00000000 
+ 00021210  0x0000322c store  0x00000002 , 0x000002dc 
+ 00021211  0x0000322d rtn 
+ 00021212  0x00003230 fetch  0x00000002 , 0x000002d8 
+ 00021213  0x00003231 branch  0x000052f2 
+ 00021214  0x00003234 fetch  0x00000002 , 0x000002da 
+ 00021215  0x00003235 branch  0x000052f2 
+ 00021216  0x00003239 set1  0x00000025 , 0x00000000 
+ 00021217  0x0000323a bpatch  0x0000002d , 0x00004025 
+ 00021218  0x0000323b call  0x00007e00 
+ 00021219  0x0000323c jam  0x00000001 , 0x000002eb 
+ 00021220  0x0000323d call  0x0000527a 
+ 00021221  0x0000323e nrtn  0x00000034 
+ 00021222  0x0000323f arg  0x0000007f , 0x00000011 
+ 00021223  0x00003240 call  0x00005248 
+ 00021224  0x00003241 store  0x00000002 , 0x000002de 
+ 00021225  0x00003242 increase  0x00000004 , 0x0000003f 
+ 00021226  0x00003243 store  0x00000002 , 0x000002e0 
+ 00021227  0x00003244 setarg  0x00000000 
+ 00021228  0x00003245 store  0x00000002 , 0x000002e2 
+ 00021229  0x00003246 jam  0x00000000 , 0x000002eb 
+ 00021230  0x00003247 branch  0x00007e0e 
+ 00021231  0x0000324a fetch  0x00000002 , 0x000002de 
+ 00021232  0x0000324b branch  0x000052f2 
+ 00021233  0x0000324e fetch  0x00000002 , 0x000002e0 
+ 00021234  0x00003251 branch  0x00003bf1 , 0x00000034 
+ 00021235  0x00003252 copy  0x0000003f , 0x00000005 
+ 00021236  0x00003253 rtn 
+ 00021237  0x00003257 set1  0x00000025 , 0x00000000 
+ 00021238  0x00003258 bpatch  0x0000002e , 0x00004025 
+ 00021239  0x00003259 arg  0x00000000 , 0x00000012 
+ 00021240  0x0000325a arg  0x000042c0 , 0x00000011 
+ 00021241  0x0000325b increase  0xfffffffe , 0x00000011 
+ 00021242  0x0000325d increase  0x00000002 , 0x00000011 
+ 00021243  0x0000325e setarg  0x000042cc 
+ 00021244  0x0000325f isub  0x00000011 , 0x0000003e 
+ 00021245  0x00003260 branch  0x00005306 , 0x00000005 
+ 00021246  0x00003261 ifetch  0x00000001 , 0x00000011 
+ 00021247  0x00003262 increase  0x00000001 , 0x00000011 
+ 00021248  0x00003263 branch  0x000052fa , 0x00000034 
+ 00021249  0x00003264 ifetcht  0x00000002 , 0x00000011 
+ 00021250  0x00003265 ifetch  0x00000002 , 0x00000002 
+ 00021251  0x00003266 iadd  0x00000012 , 0x00000012 
+ 00021252  0x00003267 increase  0x00000004 , 0x00000012 
+ 00021253  0x00003268 branch  0x000052fa 
+ 00021254  0x0000326a copy  0x00000012 , 0x0000003f 
+ 00021255  0x0000326b rtn 
+ 00021256  0x0000326f arg  0x0000000c , 0x00000007 
+ 00021257  0x00003270 branch  0x00003dc2 
+ 00021258  0x00003273 arg  0x0000000c , 0x00000007 
+ 00021259  0x00003274 branch  0x00003dc6 
+ 00021260  0x00003277 set1  0x00000025 , 0x00000000 
+ 00021261  0x00003278 bpatch  0x0000002f , 0x00004025 
+ 00021262  0x00003279 call  0x00005287 
+ 00021263  0x0000327a fetch  0x00000001 , 0x000042bf 
+ 00021264  0x0000327b rtn  0x00000034 
+ 00021265  0x0000327c call  0x000052f5 
+ 00021266  0x0000327d arg  0x00000100 , 0x00000002 
+ 00021267  0x0000327e isub  0x00000002 , 0x0000003e 
+ 00021268  0x0000327f branch  0x00005308 , 0x00000002 
+ 00021269  0x00003280 call  0x0000530a 
+ 00021270  0x00003281 arg  0x000042cc , 0x00000005 
+ 00021271  0x00003282 arg  0x000042c0 , 0x00000011 
+ 00021272  0x00003284 setarg  0x000042cc 
+ 00021273  0x00003285 isub  0x00000011 , 0x0000003e 
+ 00021274  0x00003286 rtn  0x00000005 
+ 00021275  0x00003287 ifetch  0x00000001 , 0x00000011 
+ 00021276  0x00003288 increase  0x00000001 , 0x00000011 
+ 00021277  0x00003289 nbranch  0x00005321 , 0x00000034 
+ 00021278  0x0000328a istore  0x00000002 , 0x00000005 
+ 00021279  0x0000328b increase  0x00000002 , 0x00000011 
+ 00021280  0x0000328c branch  0x00005318 
+ 00021281  0x0000328e ifetch  0x00000002 , 0x00000011 
+ 00021282  0x0000328f increase  0x00000002 , 0x00000011 
+ 00021283  0x00003290 copy  0x0000003f , 0x00000006 
+ 00021284  0x00003291 ifetch  0x00000002 , 0x00000006 
+ 00021285  0x00003292 istore  0x00000002 , 0x00000005 
+ 00021286  0x00003293 copy  0x0000003f , 0x00000039 
+ 00021287  0x00003294 increase  0x00000002 , 0x00000039 
+ 00021288  0x00003295 call  0x00007e45 
+ 00021289  0x00003296 branch  0x00005318 
+ 00021290  0x00003299 set1  0x00000025 , 0x00000000 
+ 00021291  0x0000329a bpatch  0x00000030 , 0x00004026 
+ 00021292  0x0000329b call  0x00005287 
+ 00021293  0x0000329c fetch  0x00000001 , 0x000042bf 
+ 00021294  0x0000329d rtn  0x00000034 
+ 00021295  0x0000329e arg  0x000042c1 , 0x00000011 
+ 00021296  0x0000329f increase  0xfffffffd , 0x00000011 
+ 00021297  0x000032a0 arg  0x000042cc , 0x00000006 
+ 00021298  0x000032a2 increase  0x00000003 , 0x00000011 
+ 00021299  0x000032a3 setarg  0x000042cd 
+ 00021300  0x000032a4 isub  0x00000011 , 0x0000003e 
+ 00021301  0x000032a5 rtn  0x00000005 
+ 00021302  0x000032a6 ifetch  0x00000002 , 0x00000006 
+ 00021303  0x000032a7 branch  0x00005332 , 0x00000034 
+ 00021304  0x000032a8 increase  0x00000004 , 0x0000003f 
+ 00021305  0x000032a9 copy  0x0000003f , 0x00000039 
+ 00021306  0x000032aa copy  0x00000006 , 0x00000012 
+ 00021307  0x000032ab ifetch  0x00000002 , 0x00000011 
+ 00021308  0x000032ac copy  0x0000003f , 0x00000005 
+ 00021309  0x000032ad copy  0x00000012 , 0x00000006 
+ 00021310  0x000032ae increase  0xfffffffe , 0x00000006 
+ 00021311  0x000032af call  0x00007e45 
+ 00021312  0x000032b0 branch  0x00005332 
+ 00021313  0x000032b9 rtn  0x0000002b 
+ 00021314  0x000032ba setarg  0x00000010 
+ 00021315  0x000032bb store  0x00000002 , 0x000043d3 
+ 00021316  0x000032bc setarg  0x00000010 
+ 00021317  0x000032bd store  0x00000002 , 0x000043d5 
+ 00021318  0x000032be rtn 
+ 00021319  0x000032c1 arg  0x00000014 , 0x00000002 
+ 00021320  0x000032c2 call  0x00005a88 
+ 00021321  0x000032c3 add  0x00000006 , 0x00000001 , 0x0000003f 
+ 00021322  0x000032c4 store  0x00000002 , 0x00000419 
+ 00021323  0x000032c5 rtn 
+ 00021324  0x000032c8 set1  0x00000025 , 0x00000000 
+ 00021325  0x000032c9 bpatch  0x00000032 , 0x00004026 
+ 00021326  0x000032ca disable  0x0000002b 
+ 00021327  0x000032cb jam  0x00000001 , 0x0000427e 
+ 00021328  0x000032cc jam  0x00000001 , 0x000003d6 
+ 00021329  0x000032cd jam  0x00000003 , 0x000003c0 
+ 00021330  0x000032ce jam  0x00000001 , 0x000003d7 
+ 00021331  0x000032cf setarg  0xffffffff 
+ 00021332  0x000032d0 store  0x00000002 , 0x000003da 
+ 00021333  0x000032d1 force  0x00000000 , 0x0000003f 
+ 00021334  0x000032d2 store  0x00000001 , 0x000003e3 
+ 00021335  0x000032d3 store  0x00000001 , 0x000003d8 
+ 00021336  0x000032d4 store  0x00000001 , 0x000003e4 
+ 00021337  0x000032d5 store  0x00000003 , 0x0000420a 
+ 00021338  0x000032d6 store  0x00000003 , 0x0000420d 
+ 00021339  0x000032d7 store  0x00000005 , 0x00004465 
+ 00021340  0x000032d8 set1  0x00000027 , 0x0000003f 
+ 00021341  0x000032d9 store  0x00000005 , 0x0000446a 
+ 00021342  0x000032da branch  0x00005a0b 
+ 00021343  0x000032dd set1  0x00000025 , 0x00000000 
+ 00021344  0x000032de bpatch  0x00000033 , 0x00004026 
+ 00021345  0x000032df enable  0x00000029 
+ 00021346  0x000032e0 jam  0x00000003 , 0x000003c1 
+ 00021347  0x000032e1 jam  0x00000001 , 0x000003fa 
+ 00021348  0x000032e2 jam  0x00000001 , 0x000044bc 
+ 00021349  0x000032e3 setarg  0x0000ffff 
+ 00021350  0x000032e4 store  0x00000002 , 0x000044be 
+ 00021351  0x000032e5 force  0x00000000 , 0x0000003f 
+ 00021352  0x000032e6 store  0x00000005 , 0x0000446a 
+ 00021353  0x000032e7 set1  0x00000027 , 0x0000003f 
+ 00021354  0x000032e8 store  0x00000005 , 0x00004465 
+ 00021355  0x000032e9 branch  0x0000534c 
+ 00021356  0x000032ed set1  0x00000025 , 0x00000000 
+ 00021357  0x000032ee bpatch  0x00000034 , 0x00004026 
+ 00021358  0x000032ef disable  0x00000029 
+ 00021359  0x000032f0 jam  0x00000001 , 0x000003c1 
+ 00021360  0x000032f1 jam  0x00000000 , 0x000043d8 
+ 00021361  0x000032f2 jam  0x00000000 , 0x000000a2 
+ 00021362  0x000032f3 branch  0x0000534c 
+ 00021363  0x000032fa call  0x000053d2 
+ 00021364  0x000032fb call  0x000055d3 
+ 00021365  0x000032fc call  0x00005a0e 
+ 00021366  0x000032fd branch  0x000053d7 
+ 00021367  0x00003300 set1  0x00000025 , 0x00000000 
+ 00021368  0x00003301 bpatch  0x00000035 , 0x00004026 
+ 00021369  0x00003302 call  0x000053d2 
+ 00021370  0x00003303 call  0x00003e71 
+ 00021371  0x00003304 fetch  0x00000001 , 0x000003c1 
+ 00021372  0x00003305 beq  0x00000003 , 0x0000537e 
+ 00021373  0x00003306 branch  0x00005395 
+ 00021374  0x0000330d set1  0x00000025 , 0x00000000 
+ 00021375  0x0000330e bpatch  0x00000036 , 0x00004026 
+ 00021376  0x0000330f enable  0x00000029 
+ 00021377  0x00003310 call  0x00005a02 
+ 00021378  0x00003311 branch  0x00005392 , 0x00000002 
+ 00021379  0x00003312 call  0x00003e28 
+ 00021380  0x00003313 call  0x0000541c 
+ 00021381  0x00003314 call  0x00005622 
+ 00021382  0x00003315 disable  0x0000002d 
+ 00021383  0x00003316 call  0x000054b2 
+ 00021384  0x00003317 nrtn  0x0000002d 
+ 00021385  0x00003318 set1  0x00000025 , 0x00000000 
+ 00021386  0x00003319 bpatch  0x00000037 , 0x00004026 
+ 00021387  0x0000331a fetch  0x00000001 , 0x00000005 
+ 00021388  0x0000331b increase  0x00000001 , 0x0000003f 
+ 00021389  0x0000331c store  0x00000001 , 0x00000005 
+ 00021390  0x0000331d call  0x000055a2 
+ 00021391  0x0000331e call  0x00005a99 
+ 00021392  0x0000331f disable  0x00000029 
+ 00021393  0x00003320 rtn 
+ 00021394  0x00003323 call  0x000053ba 
+ 00021395  0x00003324 disable  0x00000029 
+ 00021396  0x00003325 rtn 
+ 00021397  0x0000332b set1  0x00000025 , 0x00000000 
+ 00021398  0x0000332c bpatch  0x00000038 , 0x00004027 
+ 00021399  0x0000332d disable  0x0000002e 
+ 00021400  0x0000332e call  0x00005a02 
+ 00021401  0x0000332f branch  0x000053ba , 0x00000002 
+ 00021402  0x00003330 call  0x00003e28 
+ 00021403  0x00003331 call  0x0000541c 
+ 00021404  0x00003332 call  0x00005478 
+ 00021405  0x00003333 nbranch  0x000053ad , 0x0000002d 
+ 00021406  0x00003335 set1  0x00000025 , 0x00000000 
+ 00021407  0x00003336 bpatch  0x00000039 , 0x00004027 
+ 00021408  0x00003337 call  0x000053c8 
+ 00021409  0x00003338 call  0x000055a2 
+ 00021410  0x00003339 call  0x00005622 
+ 00021411  0x0000333a fetch  0x00000001 , 0x00000340 
+ 00021412  0x0000333b bbit1  0x00000004 , 0x000053b4 
+ 00021413  0x0000333c call  0x0000561a 
+ 00021414  0x0000333d nbranch  0x000053b4 , 0x00000034 
+ 00021415  0x0000333f set1  0x00000025 , 0x00000000 
+ 00021416  0x00003340 bpatch  0x0000003a , 0x00004027 
+ 00021417  0x00003341 call  0x000054bb 
+ 00021418  0x00003343 call  0x00007c45 
+ 00021419  0x00003344 fetch  0x00000001 , 0x000003e4 
+ 00021420  0x00003345 bbit1  0x00000003 , 0x000053ba 
+ 00021421  0x00003347 set1  0x00000025 , 0x00000000 
+ 00021422  0x00003348 bpatch  0x0000003b , 0x00004027 
+ 00021423  0x00003349 call  0x00007f44 
+ 00021424  0x0000334a call  0x00005b19 
+ 00021425  0x0000334b call  0x00005594 
+ 00021426  0x0000334c call  0x00005576 
+ 00021427  0x0000334d branch  0x000039ac 
+ 00021428  0x00003350 set1  0x00000025 , 0x00000000 
+ 00021429  0x00003351 bpatch  0x0000003c , 0x00004027 
+ 00021430  0x00003352 enable  0x0000002e 
+ 00021431  0x00003353 call  0x000054b2 
+ 00021432  0x00003354 branch  0x0000539e , 0x0000002d 
+ 00021433  0x00003355 branch  0x000053aa 
+ 00021434  0x0000335b set1  0x00000025 , 0x00000000 
+ 00021435  0x0000335c bpatch  0x0000003d , 0x00004027 
+ 00021436  0x0000335d call  0x000053c0 
+ 00021437  0x0000335e call  0x00003f1d 
+ 00021438  0x0000335f jam  0x00000015 , 0x00000b7d 
+ 00021439  0x00003360 branch  0x00007c27 
+ 00021440  0x00003363 fetcht  0x00000001 , 0x000003d6 
+ 00021441  0x00003364 jam  0x00000008 , 0x000002c0 
+ 00021442  0x00003365 call  0x000048c4 
+ 00021443  0x00003366 jam  0x00000000 , 0x000003d6 
+ 00021444  0x00003367 jam  0x00000000 , 0x000003c1 
+ 00021445  0x00003368 jam  0x00000000 , 0x000003c0 
+ 00021446  0x00003369 jam  0x00000000 , 0x0000427e 
+ 00021447  0x0000336a rtn 
+ 00021448  0x0000336d fetch  0x00000001 , 0x00000005 
+ 00021449  0x0000336e increase  0x00000001 , 0x0000003f 
+ 00021450  0x0000336f store  0x00000001 , 0x00000005 
+ 00021451  0x00003370 fetch  0x00000001 , 0x000003c0 
+ 00021452  0x00003371 rtnbit1  0x00000003 
+ 00021453  0x00003372 set1  0x00000003 
+ 00021454  0x00003373 store  0x00000001 , 0x000003c0 
+ 00021455  0x00003374 setarg  0x00000000 
+ 00021456  0x00003375 store  0x00000004 , 0x000046f9 
+ 00021457  0x00003376 rtn 
+ 00021458  0x0000337c set1  0x00000025 , 0x00000000 
+ 00021459  0x0000337d bpatch  0x0000003e , 0x00004027 
+ 00021460  0x0000337e enable  0x00000036 
+ 00021461  0x0000337f hjam  0x00000007 , 0x00008914 
+ 00021462  0x00003380 branch  0x00003e28 
+ 00021463  0x00003383 set1  0x00000025 , 0x00000000 
+ 00021464  0x00003384 bpatch  0x0000003f , 0x00004027 
+ 00021465  0x00003385 disable  0x00000036 
+ 00021466  0x00003386 hjam  0x00000003 , 0x00008914 
+ 00021467  0x00003387 arg  0x00000000 , 0x0000001b 
+ 00021468  0x00003388 rtn 
+ 00021469  0x0000338b disable  0x00000009 
+ 00021470  0x0000338c disable  0x00000007 
+ 00021471  0x0000338d fetch  0x00000003 , 0x000003e9 
+ 00021472  0x0000338e iforce  0x0000000f 
+ 00021473  0x0000338f fetch  0x00000001 , 0x00000016 
+ 00021474  0x00003390 reverse  0x0000003f , 0x00000002 
+ 00021475  0x00003391 set1  0x00000001 , 0x00000002 
+ 00021476  0x00003392 rshift  0x00000002 , 0x0000000e 
+ 00021477  0x00003393 rtn 
+ 00021478  0x00003397 call  0x000053ee 
+ 00021479  0x00003398 call  0x00003a82 
+ 00021480  0x00003399 setarg  0x00000500 
+ 00021481  0x0000339a call  0x00003bf3 
+ 00021482  0x0000339b branch  0x00003a87 
+ 00021483  0x0000339e branch  0x00003a98 , 0x0000002d 
+ 00021484  0x0000339f call  0x000053ee 
+ 00021485  0x000033a0 branch  0x00003a91 
+ 00021486  0x000033a2 set1  0x00000025 , 0x00000000 
+ 00021487  0x000033a3 bpatch  0x00000040 , 0x00004028 
+ 00021488  0x000033a4 call  0x00003a7a 
+ 00021489  0x000033a5 fetch  0x00000001 , 0x0000040d 
+ 00021490  0x000033a6 nbranch  0x00005402 , 0x00000034 
+ 00021491  0x000033a7 fetch  0x00000001 , 0x00000016 
+ 00021492  0x000033a8 sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00021493  0x000033a9 branch  0x000053fc , 0x00000002 
+ 00021494  0x000033aa force  0x00000000 , 0x00000002 
+ 00021495  0x000033ab rtneq  0x00000025 
+ 00021496  0x000033ac force  0x00000018 , 0x00000002 
+ 00021497  0x000033ad rtneq  0x00000026 
+ 00021498  0x000033ae force  0x0000004e , 0x00000002 
+ 00021499  0x000033af rtn 
+ 00021500  0x000033b2 sub  0x0000003f , 0x0000000a , 0x0000003e 
+ 00021501  0x000033b3 branch  0x000053ff , 0x00000002 
+ 00021502  0x000033b4 increase  0x00000001 , 0x0000003f 
+ 00021503  0x000033b7 lshift  0x0000003f , 0x0000003f 
+ 00021504  0x000033b8 add  0x0000003f , 0x00000002 , 0x00000002 
+ 00021505  0x000033b9 rtn 
+ 00021506  0x000033bc fetch  0x00000001 , 0x00000016 
+ 00021507  0x000033bd lshift  0x0000003f , 0x00000002 
+ 00021508  0x000033be rtn 
+ 00021509  0x000033c1 arg  0x000001f4 , 0x00000002 
+ 00021510  0x000033c2 rtn  0x00000034 
+ 00021511  0x000033c3 arg  0x000000fa , 0x00000002 
+ 00021512  0x000033c4 rtneq  0x00000001 
+ 00021513  0x000033c5 arg  0x00000096 , 0x00000002 
+ 00021514  0x000033c6 rtneq  0x00000002 
+ 00021515  0x000033c7 arg  0x00000064 , 0x00000002 
+ 00021516  0x000033c8 rtneq  0x00000003 
+ 00021517  0x000033c9 arg  0x0000004b , 0x00000002 
+ 00021518  0x000033ca rtneq  0x00000004 
+ 00021519  0x000033cb arg  0x00000032 , 0x00000002 
+ 00021520  0x000033cc rtneq  0x00000005 
+ 00021521  0x000033cd arg  0x00000028 , 0x00000002 
+ 00021522  0x000033ce rtneq  0x00000006 
+ 00021523  0x000033cf arg  0x00000014 , 0x00000002 
+ 00021524  0x000033d0 rtn 
+ 00021525  0x000033d5 setarg  0x008e89be 
+ 00021526  0x000033d6 lshift8  0x0000003f , 0x0000003f 
+ 00021527  0x000033d7 or_into  0x000000d6 , 0x0000003f 
+ 00021528  0x000033d8 iforce  0x00000009 
+ 00021529  0x000033d9 setarg  0x00555555 
+ 00021530  0x000033da store  0x00000003 , 0x000003e9 
+ 00021531  0x000033db rtn 
+ 00021532  0x000033de set1  0x00000025 , 0x00000000 
+ 00021533  0x000033df bpatch  0x00000041 , 0x00004028 
+ 00021534  0x000033e0 enable  0x00000010 
+ 00021535  0x000033e1 fetch  0x00000004 , 0x000003e5 
+ 00021536  0x000033e2 iforce  0x00000009 
+ 00021537  0x000033e3 call  0x00005453 
+ 00021538  0x000033e4 setarg  0x00000200 
+ 00021539  0x000033e5 branch  0x00005426 , 0x00000029 
+ 00021540  0x000033e6 fetch  0x00000002 , 0x000003ce 
+ 00021541  0x000033e7 rshift  0x0000003f , 0x0000003f 
+ 00021542  0x000033e9 arg  0x00000500 , 0x00000002 
+ 00021543  0x000033ea iadd  0x00000002 , 0x0000003f 
+ 00021544  0x000033eb call  0x00003b7d 
+ 00021545  0x000033ec deposit  0x0000001a 
+ 00021546  0x000033ed store  0x00000006 , 0x00000412 
+ 00021547  0x000033ee rtn 
+ 00021548  0x000033f1 set1  0x00000025 , 0x00000000 
+ 00021549  0x000033f2 bpatch  0x00000042 , 0x00004028 
+ 00021550  0x000033f3 fetch  0x00000001 , 0x00000016 
+ 00021551  0x000033f4 increase  0x00000001 , 0x0000003f 
+ 00021552  0x000033f5 store  0x00000001 , 0x00000016 
+ 00021553  0x000033f6 rtnne  0x00000028 
+ 00021554  0x000033f7 jam  0x00000025 , 0x00000016 
+ 00021555  0x000033f8 rtn 
+ 00021556  0x000033fb set1  0x00000025 , 0x00000000 
+ 00021557  0x000033fc bpatch  0x00000043 , 0x00004028 
+ 00021558  0x000033fd add  0x00000011 , 0x00000001 , 0x00000006 
+ 00021559  0x000033fe ifetch  0x00000001 , 0x00000006 
+ 00021560  0x000033ff rtnbit0  0x00000000 
+ 00021561  0x00003400 add  0x00000011 , 0x0000001a , 0x00000005 
+ 00021562  0x00003401 ifetch  0x00000002 , 0x00000005 
+ 00021563  0x00003402 increase  0x00000001 , 0x0000003f 
+ 00021564  0x00003403 istore  0x00000002 , 0x00000005 
+ 00021565  0x00003404 add  0x00000011 , 0x00000019 , 0x00000006 
+ 00021566  0x00003405 ifetch  0x00000001 , 0x00000006 
+ 00021567  0x00003406 add  0x00000011 , 0x00000018 , 0x00000005 
+ 00021568  0x00003407 ifetcht  0x00000001 , 0x00000005 
+ 00021569  0x00003408 iadd  0x00000002 , 0x0000003f 
+ 00021570  0x00003409 sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00021571  0x0000340a branch  0x00005445 , 0x00000002 
+ 00021572  0x0000340b increase  0xffffffdb , 0x0000003f 
+ 00021573  0x0000340d istore  0x00000001 , 0x00000005 
+ 00021574  0x0000340e rtn 
+ 00021575  0x00003412 set1  0x00000025 , 0x00000000 
+ 00021576  0x00003413 bpatch  0x00000044 , 0x00004028 
+ 00021577  0x00003414 fetch  0x00000005 , 0x000003f1 
+ 00021578  0x00003415 force  0x00000000 , 0x00000002 
+ 00021579  0x00003416 force  0x00000025 , 0x00000039 
+ 00021580  0x00003418 bbit0  0x00000000 , 0x0000544e 
+ 00021581  0x00003419 increase  0x00000001 , 0x00000002 
+ 00021582  0x0000341b rshift  0x0000003f , 0x0000003f 
+ 00021583  0x0000341c loop  0x0000544c 
+ 00021584  0x0000341d add  0x00000002 , 0xffffffff , 0x0000003f 
+ 00021585  0x0000341e store  0x00000001 , 0x000003e2 
+ 00021586  0x0000341f rtn 
+ 00021587  0x00003422 set1  0x00000025 , 0x00000000 
+ 00021588  0x00003423 bpatch  0x00000045 , 0x00004028 
+ 00021589  0x00003424 fetch  0x00000001 , 0x000003d8 
+ 00021590  0x00003425 iforce  0x00000007 
+ 00021591  0x00003426 fetcht  0x00000005 , 0x000003f1 
+ 00021592  0x00003427 qisolate1  0x00000002 
+ 00021593  0x00003428 branch  0x0000546b , 0x00000001 
+ 00021594  0x0000342a set1  0x00000025 , 0x00000000 
+ 00021595  0x0000342b bpatch  0x00000046 , 0x00004028 
+ 00021596  0x0000342c fetch  0x00000001 , 0x000003e2 
+ 00021597  0x0000342d isub  0x00000007 , 0x0000003f 
+ 00021598  0x0000342e branch  0x00005461 , 0x00000002 
+ 00021599  0x0000342f sub  0x0000003f , 0xffffffff , 0x00000007 
+ 00021600  0x00003430 branch  0x0000545a 
+ 00021601  0x00003432 copy  0x00000007 , 0x00000039 
+ 00021602  0x00003433 force  0x00000000 , 0x00000007 
+ 00021603  0x00003435 qisolate1  0x00000002 
+ 00021604  0x00003436 branch  0x00005466 , 0x00000001 
+ 00021605  0x00003437 increase  0x00000001 , 0x00000039 
+ 00021606  0x00003439 deposit  0x00000039 
+ 00021607  0x0000343a branch  0x0000546b , 0x00000034 
+ 00021608  0x0000343b increase  0x00000001 , 0x00000007 
+ 00021609  0x0000343c increase  0xffffffff , 0x00000039 
+ 00021610  0x0000343d branch  0x00005463 
+ 00021611  0x0000343f deposit  0x00000007 
+ 00021612  0x00003440 store  0x00000001 , 0x00000016 
+ 00021613  0x00003441 rtn 
+ 00021614  0x00003445 branch  0x00005471 , 0x00000029 
+ 00021615  0x00003446 until  0x0000003e , 0x00000003 
+ 00021616  0x00003447 rtn 
+ 00021617  0x0000344a arg  0x00000ea0 , 0x0000000b 
+ 00021618  0x0000344b until  0x00000023 , 0x00000026 
+ 00021619  0x0000344c rtn 
+ 00021620  0x0000344f disable  0x00000010 
+ 00021621  0x00003450 fetch  0x00000002 , 0x000043d5 
+ 00021622  0x00003451 copy  0x0000003f , 0x0000000b 
+ 00021623  0x00003452 branch  0x0000547e 
+ 00021624  0x00003456 set1  0x00000025 , 0x00000000 
+ 00021625  0x00003457 bpatch  0x00000047 , 0x00004028 
+ 00021626  0x00003458 enable  0x00000010 
+ 00021627  0x00003459 fetch  0x00000002 , 0x000003ce 
+ 00021628  0x0000345a fetcht  0x00000004 , 0x000046f9 
+ 00021629  0x0000345b iadd  0x00000002 , 0x0000000b 
+ 00021630  0x0000345d call  0x000053e6 
+ 00021631  0x0000345f set1  0x00000025 , 0x00000000 
+ 00021632  0x00003460 bpatch  0x00000048 , 0x00004029 
+ 00021633  0x00003461 call  0x000053dd 
+ 00021634  0x00003462 disable  0x0000002d 
+ 00021635  0x00003463 enable  0x0000000d 
+ 00021636  0x00003464 enable  0x00000021 
+ 00021637  0x00003465 disable  0x00000020 
+ 00021638  0x00003466 copy  0x0000000b , 0x0000001b 
+ 00021639  0x00003467 correlate  0x0000003e , 0x00000003 
+ 00021640  0x00003468 branch  0x0000548b , 0x0000002e 
+ 00021641  0x00003469 copy  0x0000001a , 0x00000002 
+ 00021642  0x0000346a storet  0x00000006 , 0x0000009c 
+ 00021643  0x0000346c nbranch  0x0000375c , 0x00000018 
+ 00021644  0x0000346d branch  0x00005492 , 0x0000002e 
+ 00021645  0x0000346e arg  0x000001e0 , 0x00000029 
+ 00021646  0x0000346f copy  0x00000021 , 0x00000028 
+ 00021647  0x00003470 fetch  0x00000001 , 0x000003c0 
+ 00021648  0x00003471 bbit0  0x00000003 , 0x00005492 
+ 00021649  0x00003472 call  0x00003cb6 , 0x0000002b 
+ 00021650  0x00003474 set1  0x00000025 , 0x00000000 
+ 00021651  0x00003475 bpatch  0x00000049 , 0x00004029 
+ 00021652  0x00003476 call  0x00003af3 
+ 00021653  0x00003477 enable  0x00000007 
+ 00021654  0x00003478 enable  0x00000009 
+ 00021655  0x00003479 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00021656  0x0000347a rshift3  0x0000000c , 0x0000003f 
+ 00021657  0x0000347b store  0x00000001 , 0x00000340 
+ 00021658  0x0000347c parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00021659  0x0000347d rshift3  0x0000000c , 0x0000003f 
+ 00021660  0x0000347e istore  0x00000001 , 0x00000005 
+ 00021661  0x0000347f and  0x0000003f , 0x0000003f , 0x00000039 
+ 00021662  0x00003480 branch  0x000054a3 , 0x00000005 
+ 00021663  0x00003483 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00021664  0x00003484 rshift3  0x0000000c , 0x0000003f 
+ 00021665  0x00003485 istore  0x00000001 , 0x00000005 
+ 00021666  0x00003486 loop  0x0000549f 
+ 00021667  0x00003489 set1  0x00000025 , 0x00000000 
+ 00021668  0x0000348a bpatch  0x0000004a , 0x00004029 
+ 00021669  0x0000348b parse  0x00000003 , 0x00000000 , 0x00000018 
+ 00021670  0x0000348c enable  0x00000010 
+ 00021671  0x0000348d arg  0x00000664 , 0x0000001b 
+ 00021672  0x0000348e rshift32  0x0000003f , 0x0000003f 
+ 00021673  0x0000348f rshift16  0x0000003f , 0x0000003f 
+ 00021674  0x00003490 istore  0x00000003 , 0x00000005 
+ 00021675  0x00003491 branch  0x0000375c , 0x00000006 
+ 00021676  0x00003492 enable  0x0000002d 
+ 00021677  0x00003493 fetch  0x00000001 , 0x00000017 
+ 00021678  0x00003494 add  0x0000003f , 0x00000002 , 0x00000011 
+ 00021679  0x00003495 call  0x00003ab6 
+ 00021680  0x00003496 disable  0x0000000d 
+ 00021681  0x00003497 branch  0x00003a7a 
+ 00021682  0x0000349a set1  0x00000025 , 0x00000000 
+ 00021683  0x0000349b bpatch  0x0000004b , 0x00004029 
+ 00021684  0x0000349c call  0x000054bd 
+ 00021685  0x0000349d fetcht  0x00000001 , 0x00000017 
+ 00021686  0x0000349e call  0x00003a82 
+ 00021687  0x0000349f call  0x00003a87 
+ 00021688  0x000034a0 enable  0x00000010 
+ 00021689  0x000034a1 arg  0x00001388 , 0x0000000b 
+ 00021690  0x000034a2 branch  0x0000547f 
+ 00021691  0x000034a5 call  0x000054bd 
+ 00021692  0x000034a6 branch  0x0000375c 
+ 00021693  0x000034a9 set1  0x00000025 , 0x00000000 
+ 00021694  0x000034aa bpatch  0x0000004c , 0x00004029 
+ 00021695  0x000034ab call  0x000053dd 
+ 00021696  0x000034ac call  0x000053eb 
+ 00021697  0x000034ad set1  0x00000000 , 0x00000015 
+ 00021698  0x000034ae enable  0x0000001d 
+ 00021699  0x000034af enable  0x00000020 
+ 00021700  0x000034b0 disable  0x00000021 
+ 00021701  0x000034b1 call  0x0000546e 
+ 00021702  0x000034b2 rshift16  0x00000009 , 0x0000003f 
+ 00021703  0x000034b3 rshift8  0x0000003f , 0x0000003f 
+ 00021704  0x000034b4 rshift4  0x0000003f , 0x0000003f 
+ 00021705  0x000034b5 inject  0x00000003 , 0x00000028 
+ 00021706  0x000034b6 enable  0x00000007 
+ 00021707  0x000034b7 enable  0x00000009 
+ 00021708  0x000034b8 set1  0x00000025 , 0x00000000 
+ 00021709  0x000034b9 bpatch  0x0000004d , 0x00004029 
+ 00021710  0x000034ba fetch  0x00000001 , 0x0000443e 
+ 00021711  0x000034bb inject  0x00000003 , 0x00000008 
+ 00021712  0x000034bc ifetch  0x00000001 , 0x00000006 
+ 00021713  0x000034bd and  0x0000003f , 0x0000003f , 0x00000039 
+ 00021714  0x000034be inject  0x00000003 , 0x00000008 
+ 00021715  0x000034bf branch  0x000054d7 , 0x00000005 
+ 00021716  0x000034c1 ifetch  0x00000001 , 0x00000006 
+ 00021717  0x000034c2 inject  0x00000003 , 0x00000008 
+ 00021718  0x000034c3 loop  0x000054d4 
+ 00021719  0x000034c6 enable  0x00000008 
+ 00021720  0x000034c7 inject  0x00000003 , 0x00000018 
+ 00021721  0x000034c8 disable  0x00000008 
+ 00021722  0x000034c9 until  0x0000003e , 0x00000027 
+ 00021723  0x000034ca nop  0x00000064 
+ 00021724  0x000034cb disable  0x0000001d 
+ 00021725  0x000034cc rtn 
+ 00021726  0x000034cf set1  0x00000025 , 0x00000000 
+ 00021727  0x000034d0 bpatch  0x0000004e , 0x00004029 
+ 00021728  0x000034d1 fetch  0x00000001 , 0x000044db 
+ 00021729  0x000034d2 beq  0x00000001 , 0x000054ef 
+ 00021730  0x000034d3 fetch  0x00000001 , 0x000044dc 
+ 00021731  0x000034d4 lshift4  0x0000003f , 0x0000003f 
+ 00021732  0x000034d5 lshift2  0x0000003f , 0x0000003f 
+ 00021733  0x000034d6 store  0x00000001 , 0x0000443e 
+ 00021734  0x000034d7 fetcht  0x00000001 , 0x000043d9 
+ 00021735  0x000034d8 add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00021736  0x000034d9 store  0x00000001 , 0x0000443f 
+ 00021737  0x000034da fetch  0x00000006 , 0x000044f9 
+ 00021738  0x000034db store  0x00000006 , 0x00004440 
+ 00021739  0x000034dc copy  0x00000002 , 0x00000039 
+ 00021740  0x000034dd arg  0x000043da , 0x00000006 
+ 00021741  0x000034de call  0x00007e45 
+ 00021742  0x000034df branch  0x000054ff 
+ 00021743  0x000034e1 fetcht  0x00000002 , 0x000044c2 
+ 00021744  0x000034e2 call  0x00005866 
+ 00021745  0x000034e3 copy  0x00000011 , 0x00000005 
+ 00021746  0x000034e4 setarg  0x00000001 
+ 00021747  0x000034e5 istore  0x00000001 , 0x00000005 
+ 00021748  0x000034e6 fetch  0x00000001 , 0x000044dd 
+ 00021749  0x000034e7 lshift4  0x0000003f , 0x0000003f 
+ 00021750  0x000034e8 lshift2  0x0000003f , 0x0000003f 
+ 00021751  0x000034e9 increase  0x00000001 , 0x0000003f 
+ 00021752  0x000034ea store  0x00000001 , 0x0000443e 
+ 00021753  0x000034eb setarg  0x0000000c 
+ 00021754  0x000034ec store  0x00000001 , 0x0000443f 
+ 00021755  0x000034ed fetch  0x00000006 , 0x000044f9 
+ 00021756  0x000034ee store  0x00000006 , 0x00004440 
+ 00021757  0x000034ef fetch  0x00000006 , 0x00004274 
+ 00021758  0x000034f0 istore  0x00000006 , 0x00000005 
+ 00021759  0x000034f2 set1  0x00000025 , 0x00000000 
+ 00021760  0x000034f3 bpatch  0x0000004f , 0x00004029 
+ 00021761  0x000034f4 fetch  0x00000001 , 0x00000000 
+ 00021762  0x000034f5 increase  0x00000001 , 0x0000003f 
+ 00021763  0x000034f6 store  0x00000001 , 0x00000000 
+ 00021764  0x000034f7 arg  0x00000708 , 0x0000001b 
+ 00021765  0x000034f8 disable  0x0000002d 
+ 00021766  0x000034f9 branch  0x000054b2 
+ 00021767  0x000034fc set1  0x00000025 , 0x00000000 
+ 00021768  0x000034fd bpatch  0x00000050 , 0x0000402a 
+ 00021769  0x000034fe fetch  0x00000001 , 0x000044f6 
+ 00021770  0x000034ff rtnne  0x00000001 , 0x0000003f 
+ 00021771  0x00003500 fetch  0x00000001 , 0x00000000 
+ 00021772  0x00003501 increase  0x00000001 , 0x0000003f 
+ 00021773  0x00003502 store  0x00000001 , 0x00000000 
+ 00021774  0x00003503 arg  0x00000c03 , 0x00000002 
+ 00021775  0x00003504 fetch  0x00000001 , 0x000044f7 
+ 00021776  0x00003505 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00021777  0x00003506 copy  0x00000011 , 0x0000003f 
+ 00021778  0x00003507 nsetflag  0x00000034 , 0x00000007 , 0x00000002 
+ 00021779  0x00003508 storet  0x00000002 , 0x0000443e 
+ 00021780  0x00003509 fetch  0x00000006 , 0x000044f9 
+ 00021781  0x0000350a istore  0x00000006 , 0x00000005 
+ 00021782  0x0000350b fetch  0x00000006 , 0x000003d0 
+ 00021783  0x0000350c istore  0x00000006 , 0x00000005 
+ 00021784  0x0000350d branch  0x000054b2 
+ 00021785  0x00003511 set1  0x00000025 , 0x00000000 
+ 00021786  0x00003512 bpatch  0x00000051 , 0x0000402a 
+ 00021787  0x00003513 arg  0x00000004 , 0x00000002 
+ 00021788  0x00003514 fetch  0x00000001 , 0x000044dc 
+ 00021789  0x00003515 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00021790  0x00003516 storet  0x00000001 , 0x0000443e 
+ 00021791  0x00003517 fetcht  0x00000001 , 0x000043f9 
+ 00021792  0x00003518 add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00021793  0x00003519 store  0x00000001 , 0x0000443f 
+ 00021794  0x0000351a fetch  0x00000006 , 0x000044f9 
+ 00021795  0x0000351b store  0x00000006 , 0x00004440 
+ 00021796  0x0000351c arg  0x000043fa , 0x00000006 
+ 00021797  0x0000351d copy  0x00000002 , 0x00000039 
+ 00021798  0x0000351e call  0x00007e45 
+ 00021799  0x0000351f branch  0x000054bb 
+ 00021800  0x00003523 set1  0x00000025 , 0x00000000 
+ 00021801  0x00003524 bpatch  0x00000052 , 0x0000402a 
+ 00021802  0x00003525 force  0xffffffff , 0x0000003f 
+ 00021803  0x00003526 setsect  0x00000002 , 0x00000001 
+ 00021804  0x00003527 store  0x00000005 , 0x000003f1 
+ 00021805  0x00003528 call  0x00005447 
+ 00021806  0x00003529 force  0x00000004 , 0x00000039 
+ 00021807  0x0000352a arg  0x000003e5 , 0x00000005 
+ 00021808  0x0000352b call  0x00006227 
+ 00021809  0x0000352c fetch  0x00000002 , 0x000044f4 
+ 00021810  0x0000352d store  0x00000002 , 0x000003ef 
+ 00021811  0x0000352f random  0x0000003f 
+ 00021812  0x00003530 and_into  0x0000000f , 0x0000003f 
+ 00021813  0x00003531 sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00021814  0x00003532 branch  0x00005533 , 0x00000002 
+ 00021815  0x00003533 store  0x00000001 , 0x000003d9 
+ 00021816  0x00003534 store  0x00000001 , 0x00000682 
+ 00021817  0x00003535 set1  0x00000025 , 0x00000000 
+ 00021818  0x00003536 bpatch  0x00000053 , 0x0000402a 
+ 00021819  0x00003537 fetcht  0x00000002 , 0x000043d0 
+ 00021820  0x00003538 storet  0x00000002 , 0x000003c2 
+ 00021821  0x00003539 copy  0x00000002 , 0x00000013 
+ 00021822  0x0000353a add  0x00000022 , 0x00000007 , 0x0000003f 
+ 00021823  0x0000353b idiv  0x00000013 
+ 00021824  0x0000353c call  0x00007efd 
+ 00021825  0x0000353d remainder  0x00000011 
+ 00021826  0x0000353e isub  0x00000011 , 0x0000003f 
+ 00021827  0x0000353f iadd  0x00000013 , 0x0000003f 
+ 00021828  0x00003540 fetcht  0x00000002 , 0x000043ce 
+ 00021829  0x00003541 iadd  0x00000002 , 0x0000003f 
+ 00021830  0x00003542 store  0x00000004 , 0x000003c4 
+ 00021831  0x00003543 isub  0x00000022 , 0x00000011 
+ 00021832  0x00003544 increase  0xfffffffa , 0x00000011 
+ 00021833  0x00003545 arg  0x00002205 , 0x00000012 
+ 00021834  0x00003546 fetch  0x00000001 , 0x000044ed 
+ 00021835  0x00003547 nsetflag  0x00000034 , 0x00000006 , 0x00000012 
+ 00021836  0x00003548 fetch  0x00000001 , 0x000044e6 
+ 00021837  0x00003549 nsetflag  0x00000034 , 0x00000007 , 0x00000012 
+ 00021838  0x0000354a copy  0x00000012 , 0x0000003f 
+ 00021839  0x0000354b store  0x00000002 , 0x0000443e 
+ 00021840  0x0000354c fetch  0x00000006 , 0x000044f9 
+ 00021841  0x0000354d istore  0x00000006 , 0x00000005 
+ 00021842  0x0000354e fetch  0x00000006 , 0x000003d0 
+ 00021843  0x0000354f istore  0x00000006 , 0x00000005 
+ 00021844  0x00003550 fetch  0x00000004 , 0x000003e5 
+ 00021845  0x00003551 istore  0x00000004 , 0x00000005 
+ 00021846  0x00003552 random  0x0000003f 
+ 00021847  0x00003553 istore  0x00000002 , 0x00000005 
+ 00021848  0x00003554 random  0x0000003f 
+ 00021849  0x00003555 istore  0x00000001 , 0x00000005 
+ 00021850  0x00003556 force  0x00000002 , 0x0000003f 
+ 00021851  0x00003557 istore  0x00000001 , 0x00000005 
+ 00021852  0x00003558 rshift2  0x00000011 , 0x0000003f 
+ 00021853  0x00003559 istore  0x00000002 , 0x00000005 
+ 00021854  0x0000355a rshift2  0x00000013 , 0x0000003f 
+ 00021855  0x0000355b istore  0x00000002 , 0x00000005 
+ 00021856  0x0000355c set1  0x00000025 , 0x00000000 
+ 00021857  0x0000355d bpatch  0x00000054 , 0x0000402a 
+ 00021858  0x0000355e fetch  0x00000002 , 0x000044f2 
+ 00021859  0x0000355f istore  0x00000002 , 0x00000005 
+ 00021860  0x00003560 fetch  0x00000002 , 0x000044f4 
+ 00021861  0x00003561 istore  0x00000002 , 0x00000005 
+ 00021862  0x00003562 fetch  0x00000005 , 0x000003f1 
+ 00021863  0x00003563 istore  0x00000005 , 0x00000005 
+ 00021864  0x00003564 fetch  0x00000001 , 0x000003d9 
+ 00021865  0x00003565 arg  0x000000a0 , 0x00000002 
+ 00021866  0x00003566 ior  0x00000002 , 0x0000003f 
+ 00021867  0x00003567 istore  0x00000001 , 0x00000005 
+ 00021868  0x00003568 call  0x000054bb 
+ 00021869  0x00003569 setarg  0x0000443e 
+ 00021870  0x0000356a add  0x0000003f , 0x00000012 , 0x00000006 
+ 00021871  0x0000356b ifetch  0x00000003 , 0x00000006 
+ 00021872  0x0000356c store  0x00000003 , 0x000003e9 
+ 00021873  0x0000356d rtn 
+ 00021874  0x00003570 set1  0x00000025 , 0x00000000 
+ 00021875  0x00003571 bpatch  0x00000055 , 0x0000402a 
+ 00021876  0x00003572 disable  0x00000029 
+ 00021877  0x00003573 branch  0x00005415 
+ 00021878  0x00003578 set1  0x00000025 , 0x00000000 
+ 00021879  0x00003579 bpatch  0x00000056 , 0x0000402a 
+ 00021880  0x0000357a fetch  0x00000001 , 0x000003c0 
+ 00021881  0x0000357b rtnbit0  0x00000005 
+ 00021882  0x0000357c fetch  0x00000002 , 0x000003da 
+ 00021883  0x0000357d fetcht  0x00000002 , 0x000003e0 
+ 00021884  0x0000357e isub  0x00000002 , 0x0000003f 
+ 00021885  0x0000357f nrtn  0x00000002 
+ 00021886  0x00003580 fetch  0x00000001 , 0x000003c0 
+ 00021887  0x00003581 set0  0x00000005 , 0x0000003f 
+ 00021888  0x00003582 set0  0x00000003 , 0x0000003f 
+ 00021889  0x00003583 store  0x00000001 , 0x000003c0 
+ 00021890  0x00003584 fetch  0x00000004 , 0x000003c4 
+ 00021891  0x00003585 fetcht  0x00000002 , 0x000003c2 
+ 00021892  0x00003586 isub  0x00000002 , 0x00000011 
+ 00021893  0x00003587 set1  0x00000025 , 0x00000000 
+ 00021894  0x00003588 bpatch  0x00000057 , 0x0000402a 
+ 00021895  0x00003589 fetch  0x00000001 , 0x00004434 
+ 00021896  0x0000358a store  0x00000001 , 0x000003ec 
+ 00021897  0x0000358b ifetcht  0x00000002 , 0x00000006 
+ 00021898  0x0000358c ifetch  0x00000002 , 0x00000006 
+ 00021899  0x0000358d lshift2  0x0000003f , 0x0000003f 
+ 00021900  0x0000358e store  0x00000002 , 0x000003c2 
+ 00021901  0x0000358f lshift2  0x00000002 , 0x00000002 
+ 00021902  0x00003590 iadd  0x00000002 , 0x0000003f 
+ 00021903  0x00003591 ifetcht  0x00000004 , 0x00000006 
+ 00021904  0x00003592 storet  0x00000004 , 0x000003ed 
+ 00021905  0x00003593 iadd  0x00000011 , 0x0000003f 
+ 00021906  0x00003594 store  0x00000004 , 0x000003c4 
+ 00021907  0x00003595 branch  0x00005a2b 
+ 00021908  0x00003598 set1  0x00000025 , 0x00000000 
+ 00021909  0x00003599 bpatch  0x00000058 , 0x0000402b 
+ 00021910  0x0000359a fetch  0x00000001 , 0x000003c0 
+ 00021911  0x0000359b rtnbit0  0x00000006 
+ 00021912  0x0000359c fetch  0x00000002 , 0x000003da 
+ 00021913  0x0000359d fetcht  0x00000002 , 0x000003e0 
+ 00021914  0x0000359e isub  0x00000002 , 0x0000003f 
+ 00021915  0x0000359f nrtn  0x00000002 
+ 00021916  0x000035a0 fetch  0x00000001 , 0x000003c0 
+ 00021917  0x000035a1 set0  0x00000006 , 0x0000003f 
+ 00021918  0x000035a2 store  0x00000001 , 0x000003c0 
+ 00021919  0x000035a3 fetch  0x00000005 , 0x0000442f 
+ 00021920  0x000035a4 store  0x00000005 , 0x000003f1 
+ 00021921  0x000035a5 branch  0x00005447 
+ 00021922  0x000035a9 set1  0x00000025 , 0x00000000 
+ 00021923  0x000035aa bpatch  0x00000059 , 0x0000402b 
+ 00021924  0x000035ab call  0x00005a0b 
+ 00021925  0x000035ac call  0x000055b7 
+ 00021926  0x000035ad fetch  0x00000001 , 0x00000340 
+ 00021927  0x000035ae rshift  0x0000003f , 0x0000003f 
+ 00021928  0x000035af ixor  0x00000002 , 0x0000003f 
+ 00021929  0x000035b0 isolate1  0x00000002 , 0x0000003f 
+ 00021930  0x000035b1 setflag  0x00000001 , 0x0000000f , 0x00000000 
+ 00021931  0x000035b2 fetch  0x00000001 , 0x00000341 
+ 00021932  0x000035b3 branch  0x000055b2 , 0x00000034 
+ 00021933  0x000035b4 fetch  0x00000001 , 0x000003c0 
+ 00021934  0x000035b5 bbit0  0x00000004 , 0x000055b2 
+ 00021935  0x000035b6 call  0x00007599 
+ 00021936  0x000035b7 call  0x0000750e 
+ 00021937  0x000035b8 nrtn  0x00000034 
+ 00021938  0x000035ba rtnmark1  0x0000000f 
+ 00021939  0x000035bb fetcht  0x00000001 , 0x000003d7 
+ 00021940  0x000035bc setflip  0x00000002 , 0x00000002 
+ 00021941  0x000035bd storet  0x00000001 , 0x000003d7 
+ 00021942  0x000035be branch  0x000058ac 
+ 00021943  0x000035c1 set1  0x00000025 , 0x00000000 
+ 00021944  0x000035c2 bpatch  0x0000005a , 0x0000402b 
+ 00021945  0x000035c3 fetcht  0x00000001 , 0x000003d7 
+ 00021946  0x000035c4 isolate0  0x00000005 , 0x00000002 
+ 00021947  0x000035c5 rtn  0x00000001 
+ 00021948  0x000035c6 fetch  0x00000001 , 0x00000340 
+ 00021949  0x000035c7 lshift  0x0000003f , 0x0000003f 
+ 00021950  0x000035c8 ixor  0x00000002 , 0x0000003f 
+ 00021951  0x000035c9 rtnbit0  0x00000003 
+ 00021952  0x000035ca set0  0x00000005 , 0x00000002 
+ 00021953  0x000035cb setflip  0x00000003 , 0x00000002 
+ 00021954  0x000035cc storet  0x00000001 , 0x000003d7 
+ 00021955  0x000035cd compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00021956  0x000035ce nrtn  0x00000001 
+ 00021957  0x000035cf fetch  0x00000001 , 0x00004440 
+ 00021958  0x000035d0 rtnne  0x00000005 
+ 00021959  0x000035d1 fetch  0x00000001 , 0x000003c0 
+ 00021960  0x000035d2 set1  0x00000004 , 0x0000003f 
+ 00021961  0x000035d3 store  0x00000001 , 0x000003c0 
+ 00021962  0x000035d4 rtn 
+ 00021963  0x000035d7 set1  0x00000025 , 0x00000000 
+ 00021964  0x000035d8 bpatch  0x0000005b , 0x0000402b 
+ 00021965  0x000035d9 call  0x0000542c 
+ 00021966  0x000035da call  0x00005474 
+ 00021967  0x000035db fetch  0x00000001 , 0x00000001 
+ 00021968  0x000035dc increase  0x00000001 , 0x0000003f 
+ 00021969  0x000035dd store  0x00000001 , 0x00000001 
+ 00021970  0x000035de rtn 
+ 00021971  0x000035e1 set1  0x00000025 , 0x00000000 
+ 00021972  0x000035e2 bpatch  0x0000005c , 0x0000402b 
+ 00021973  0x000035e3 fetch  0x00000001 , 0x000043d2 
+ 00021974  0x000035e4 rtnne  0x00000001 
+ 00021975  0x000035e5 arg  0x00000003 , 0x00000007 
+ 00021976  0x000035e6 call  0x00007e53 
+ 00021977  0x000035e7 nrtn  0x00000034 
+ 00021978  0x000035e8 fetch  0x00000002 , 0x000043d3 
+ 00021979  0x000035e9 fetcht  0x00000002 , 0x000043d5 
+ 00021980  0x000035ea isub  0x00000002 , 0x0000003f 
+ 00021981  0x000035eb arg  0x00000003 , 0x00000007 
+ 00021982  0x000035ec call  0x00007e4c 
+ 00021983  0x000035ed disable  0x00000029 
+ 00021984  0x000035ee call  0x00005572 
+ 00021985  0x000035ef call  0x000055cb 
+ 00021986  0x000035f0 nrtn  0x0000002d 
+ 00021987  0x000035f1 set1  0x00000025 , 0x00000000 
+ 00021988  0x000035f2 bpatch  0x0000005d , 0x0000402b 
+ 00021989  0x000035f3 fetch  0x00000006 , 0x00000342 
+ 00021990  0x000035f4 store  0x00000006 , 0x000003d0 
+ 00021991  0x000035f5 call  0x000042a7 
+ 00021992  0x000035f6 call  0x00005b39 
+ 00021993  0x000035f8 fetch  0x00000001 , 0x00000002 
+ 00021994  0x000035f9 increase  0x00000001 , 0x0000003f 
+ 00021995  0x000035fa store  0x00000001 , 0x00000002 
+ 00021996  0x000035fb call  0x000055f9 
+ 00021997  0x000035fc rtn  0x00000029 
+ 00021998  0x000035fd call  0x000048d1 
+ 00021999  0x000035fe call  0x00005507 
+ 00022000  0x000035ff nrtn  0x0000002d 
+ 00022001  0x00003600 set1  0x00000025 , 0x00000000 
+ 00022002  0x00003601 bpatch  0x0000005e , 0x0000402b 
+ 00022003  0x00003602 fetch  0x00000001 , 0x00000004 
+ 00022004  0x00003603 increase  0x00000001 , 0x0000003f 
+ 00022005  0x00003604 store  0x00000001 , 0x00000004 
+ 00022006  0x00003605 fetch  0x00000009 , 0x00000348 
+ 00022007  0x00003606 store  0x00000009 , 0x00000103 
+ 00022008  0x00003607 branch  0x000048d1 
+ 00022009  0x0000360a set1  0x00000025 , 0x00000000 
+ 00022010  0x0000360b bpatch  0x0000005f , 0x0000402b 
+ 00022011  0x0000360c fetch  0x00000001 , 0x0000041c 
+ 00022012  0x0000360d rtnne  0x0000001b , 0x0000003f 
+ 00022013  0x0000360e fetch  0x00000006 , 0x000003d0 
+ 00022014  0x0000360f fetcht  0x00000006 , 0x000044e7 
+ 00022015  0x00003610 isub  0x00000002 , 0x0000003e 
+ 00022016  0x00003611 nrtn  0x00000005 
+ 00022017  0x00003612 call  0x000032d6 
+ 00022018  0x00003613 nrtn  0x00000005 
+ 00022019  0x00003614 call  0x00005528 
+ 00022020  0x00003615 call  0x0000535f 
+ 00022021  0x00003616 set1  0x00000025 , 0x00000000 
+ 00022022  0x00003617 bpatch  0x00000060 , 0x0000402c 
+ 00022023  0x00003618 jam  0x00000000 , 0x00004272 
+ 00022024  0x00003619 jam  0x00000000 , 0x000003f8 
+ 00022025  0x0000361a fetch  0x00000001 , 0x00004132 
+ 00022026  0x0000361b bne  0x00000004 , 0x0000560c 
+ 00022027  0x0000361c jam  0x00000021 , 0x000003e3 
+ 00022028  0x0000361e arg  0x00000000 , 0x00000002 
+ 00022029  0x0000361f call  0x000048ea 
+ 00022030  0x00003620 jam  0x00000000 , 0x000043d2 
+ 00022031  0x00003621 jam  0x00000000 , 0x0000041c 
+ 00022032  0x00003622 jam  0x0000002c , 0x00000b7d 
+ 00022033  0x00003623 call  0x00005620 
+ 00022034  0x00003624 branch  0x000032bd 
+ 00022035  0x00003627 arg  0x00000001 , 0x00000011 
+ 00022036  0x00003628 fetch  0x00000001 , 0x00000340 
+ 00022037  0x00003629 rtnbit1  0x00000006 
+ 00022038  0x0000362a arg  0x00000000 , 0x00000011 
+ 00022039  0x0000362b rtn 
+ 00022040  0x0000362e arg  0x000044ff , 0x00000006 
+ 00022041  0x0000362f branch  0x00007fb2 
+ 00022042  0x00003632 arg  0x000044ff , 0x00000011 
+ 00022043  0x00003633 branch  0x00007fac 
+ 00022044  0x00003636 arg  0x000044ff , 0x00000011 
+ 00022045  0x00003637 branch  0x00007fae 
+ 00022046  0x0000363a arg  0x000044ff , 0x00000011 
+ 00022047  0x0000363b branch  0x00007fb0 
+ 00022048  0x0000363e arg  0x000044ff , 0x00000011 
+ 00022049  0x0000363f branch  0x00007f92 
+ 00022050  0x00003642 set1  0x00000025 , 0x00000000 
+ 00022051  0x00003643 bpatch  0x00000061 , 0x0000402c 
+ 00022052  0x00003644 fetch  0x00000001 , 0x000003d7 
+ 00022053  0x00003645 rtnbit1  0x00000005 
+ 00022054  0x00003646 arg  0x000044ff , 0x00000011 
+ 00022055  0x00003647 call  0x00007f9f 
+ 00022056  0x00003648 nbranch  0x00005630 , 0x00000034 
+ 00022057  0x00003649 fetch  0x00000001 , 0x00004132 
+ 00022058  0x0000364a bne  0x00000001 , 0x00005890 
+ 00022059  0x0000364b arg  0x00000000 , 0x00000001 
+ 00022060  0x0000364c call  0x000044a3 
+ 00022061  0x0000364d copy  0x00000001 , 0x0000003f 
+ 00022062  0x0000364e nrtn  0x00000034 
+ 00022063  0x0000364f branch  0x00005890 
+ 00022064  0x00003651 copy  0x0000003f , 0x00000002 
+ 00022065  0x00003652 set1  0x00000025 , 0x00000000 
+ 00022066  0x00003653 bpatch  0x00000062 , 0x0000402c 
+ 00022067  0x00003654 copy  0x00000002 , 0x0000003f 
+ 00022068  0x00003655 bbit0  0x00000005 , 0x0000564b 
+ 00022069  0x00003656 force  0x00000003 , 0x00000001 
+ 00022070  0x00003657 set0  0x00000005 , 0x0000003f 
+ 00022071  0x00003658 store  0x00000001 , 0x00004440 
+ 00022072  0x00003659 set1  0x00000025 , 0x00000000 
+ 00022073  0x0000365a bpatch  0x00000063 , 0x0000402c 
+ 00022074  0x0000365b fetch  0x00000001 , 0x00004440 
+ 00022075  0x0000365c beq  0x00000000 , 0x0000568f 
+ 00022076  0x0000365d beq  0x00000001 , 0x00005691 
+ 00022077  0x0000365e beq  0x00000002 , 0x00005693 
+ 00022078  0x0000365f beq  0x00000003 , 0x00005695 
+ 00022079  0x00003660 beq  0x00000004 , 0x000056a6 
+ 00022080  0x00003661 beq  0x00000005 , 0x000056b7 
+ 00022081  0x00003662 beq  0x00000006 , 0x000056b9 
+ 00022082  0x00003663 beq  0x00000007 , 0x000056bf 
+ 00022083  0x00003664 beq  0x00000008 , 0x000056c1 
+ 00022084  0x00003665 beq  0x00000009 , 0x000056c1 
+ 00022085  0x00003666 beq  0x0000000a , 0x000056c5 
+ 00022086  0x00003667 beq  0x0000000b , 0x000056c7 
+ 00022087  0x00003668 beq  0x0000000c , 0x000056c9 
+ 00022088  0x00003669 beq  0x0000000d , 0x000056cf 
+ 00022089  0x0000366a beq  0x0000000f , 0x000056d1 
+ 00022090  0x0000366b branch  0x00003bf1 
+ 00022091  0x0000366e jam  0x00000000 , 0x00004443 
+ 00022092  0x0000366f force  0x00000002 , 0x00000001 
+ 00022093  0x00003670 bbit0  0x00000006 , 0x00005662 
+ 00022094  0x00003671 beq  0x00000052 , 0x00005662 
+ 00022095  0x00003672 beq  0x000000d2 , 0x00005662 
+ 00022096  0x00003673 jam  0x00000006 , 0x00004442 
+ 00022097  0x00003674 set0  0x00000006 , 0x0000003f 
+ 00022098  0x00003675 store  0x00000001 , 0x00004444 
+ 00022099  0x00003677 set1  0x00000025 , 0x00000000 
+ 00022100  0x00003678 bpatch  0x00000064 , 0x0000402c 
+ 00022101  0x00003679 fetch  0x00000001 , 0x00004444 
+ 00022102  0x0000367b beq  0x00000001 , 0x000056e5 
+ 00022103  0x0000367c beq  0x00000002 , 0x000056ed 
+ 00022104  0x0000367d beq  0x00000003 , 0x000056f5 
+ 00022105  0x0000367e beq  0x00000004 , 0x000056fa 
+ 00022106  0x0000367f beq  0x00000005 , 0x000056ff 
+ 00022107  0x00003680 beq  0x00000006 , 0x00005701 
+ 00022108  0x00003681 beq  0x00000007 , 0x0000570b 
+ 00022109  0x00003682 beq  0x00000008 , 0x00005712 
+ 00022110  0x00003683 beq  0x00000009 , 0x00005717 
+ 00022111  0x00003684 beq  0x0000000a , 0x0000571e 
+ 00022112  0x00003685 beq  0x0000000b , 0x00005721 
+ 00022113  0x00003686 branch  0x00003bf1 
+ 00022114  0x00003689 jam  0x00000004 , 0x00004442 
+ 00022115  0x0000368a store  0x00000001 , 0x00004444 
+ 00022116  0x0000368b set1  0x00000025 , 0x00000000 
+ 00022117  0x0000368c bpatch  0x00000065 , 0x0000402c 
+ 00022118  0x0000368e fetch  0x00000001 , 0x00004444 
+ 00022119  0x0000368f beq  0x00000001 , 0x00005729 
+ 00022120  0x00003690 beq  0x00000002 , 0x0000572f 
+ 00022121  0x00003691 beq  0x00000003 , 0x0000572f 
+ 00022122  0x00003692 beq  0x00000004 , 0x00005732 
+ 00022123  0x00003693 beq  0x00000005 , 0x00005737 
+ 00022124  0x00003694 beq  0x00000006 , 0x00005748 
+ 00022125  0x00003695 beq  0x00000007 , 0x00005752 
+ 00022126  0x00003696 beq  0x00000008 , 0x00005793 
+ 00022127  0x00003697 beq  0x00000009 , 0x0000579b 
+ 00022128  0x00003698 beq  0x0000000a , 0x000057be 
+ 00022129  0x00003699 beq  0x0000000b , 0x000057c6 
+ 00022130  0x0000369a beq  0x0000000c , 0x000057d1 
+ 00022131  0x0000369b beq  0x0000000d , 0x000057d6 
+ 00022132  0x0000369c beq  0x0000000e , 0x000057e5 
+ 00022133  0x0000369d beq  0x0000000f , 0x000057ec 
+ 00022134  0x0000369e beq  0x00000010 , 0x00005812 
+ 00022135  0x0000369f beq  0x00000011 , 0x0000581a 
+ 00022136  0x000036a0 beq  0x00000012 , 0x0000583e 
+ 00022137  0x000036a1 beq  0x00000013 , 0x00005845 
+ 00022138  0x000036a2 beq  0x00000016 , 0x0000585e 
+ 00022139  0x000036a3 beq  0x00000017 , 0x00005860 
+ 00022140  0x000036a4 beq  0x00000018 , 0x00005862 
+ 00022141  0x000036a5 beq  0x00000019 , 0x00005864 
+ 00022142  0x000036a6 beq  0x0000001b , 0x00005873 
+ 00022143  0x000036a7 beq  0x0000001d , 0x00005882 
+ 00022144  0x000036a8 beq  0x0000001e , 0x00005884 
+ 00022145  0x000036a9 beq  0x00000052 , 0x00005886 
+ 00022146  0x000036aa beq  0x000000d2 , 0x00005888 
+ 00022147  0x000036ab beq  0x0000009e , 0x00005686 
+ 00022148  0x000036ac beq  0x0000009f , 0x00005688 
+ 00022149  0x000036ad branch  0x00003bf1 
+ 00022150  0x000036b0 jam  0x00000010 , 0x00000b7d 
+ 00022151  0x000036b1 call  0x00005620 
+ 00022152  0x000036b4 setarg  0x00000011 
+ 00022153  0x000036b5 store  0x00000002 , 0x0000443e 
+ 00022154  0x000036b6 fetch  0x00000001 , 0x000003d7 
+ 00022155  0x000036b7 set1  0x00000005 , 0x0000003f 
+ 00022156  0x000036b8 store  0x00000001 , 0x000003d7 
+ 00022157  0x000036b9 jam  0x00000012 , 0x00000b7d 
+ 00022158  0x000036ba branch  0x00005620 
+ 00022159  0x000036bd force  0x0000000c , 0x00000002 
+ 00022160  0x000036be branch  0x00005892 
+ 00022161  0x000036c1 force  0x00000008 , 0x00000002 
+ 00022162  0x000036c2 branch  0x00005892 
+ 00022163  0x000036c5 force  0x00000002 , 0x00000002 
+ 00022164  0x000036c6 branch  0x00005892 
+ 00022165  0x000036c9 force  0x00000000 , 0x0000003f 
+ 00022166  0x000036ca istore  0x00000008 , 0x00000005 
+ 00022167  0x000036cb istore  0x00000002 , 0x00000005 
+ 00022168  0x000036cc copy  0x00000005 , 0x00000002 
+ 00022169  0x000036cd arg  0x00000380 , 0x00000005 
+ 00022170  0x000036ce force  0x00000008 , 0x00000039 
+ 00022171  0x000036cf call  0x00006227 
+ 00022172  0x000036d0 fetch  0x00000008 , 0x00000380 
+ 00022173  0x000036d1 istore  0x00000008 , 0x00000002 
+ 00022174  0x000036d2 copy  0x00000005 , 0x00000002 
+ 00022175  0x000036d3 arg  0x00004473 , 0x00000005 
+ 00022176  0x000036d4 force  0x00000004 , 0x00000039 
+ 00022177  0x000036d5 call  0x00006227 
+ 00022178  0x000036d6 fetch  0x00000004 , 0x00004473 
+ 00022179  0x000036d7 istore  0x00000004 , 0x00000002 
+ 00022180  0x000036d8 force  0x00000017 , 0x00000002 
+ 00022181  0x000036d9 branch  0x00005892 
+ 00022182  0x000036dc copy  0x00000005 , 0x00000002 
+ 00022183  0x000036dd arg  0x00000388 , 0x00000005 
+ 00022184  0x000036de force  0x00000008 , 0x00000039 
+ 00022185  0x000036df call  0x00006227 
+ 00022186  0x000036e0 fetch  0x00000008 , 0x00000388 
+ 00022187  0x000036e1 istore  0x00000008 , 0x00000002 
+ 00022188  0x000036e2 copy  0x00000005 , 0x00000002 
+ 00022189  0x000036e3 arg  0x00004477 , 0x00000005 
+ 00022190  0x000036e4 force  0x00000004 , 0x00000039 
+ 00022191  0x000036e5 call  0x00006227 
+ 00022192  0x000036e6 fetch  0x00000004 , 0x00004477 
+ 00022193  0x000036e7 istore  0x00000004 , 0x00000002 
+ 00022194  0x000036e8 call  0x000074b6 
+ 00022195  0x000036e9 jam  0x00000025 , 0x00000b7d 
+ 00022196  0x000036ea call  0x00005620 
+ 00022197  0x000036eb force  0x0000000d , 0x00000002 
+ 00022198  0x000036ec branch  0x00005892 
+ 00022199  0x000036ef force  0x00000001 , 0x00000002 
+ 00022200  0x000036f0 branch  0x00005892 
+ 00022201  0x000036f3 force  0x00000001 , 0x00000002 
+ 00022202  0x000036f4 branch  0x00005892 , 0x00000029 
+ 00022203  0x000036f5 jam  0x00000046 , 0x00000b7d 
+ 00022204  0x000036f6 call  0x00005620 
+ 00022205  0x000036f7 force  0x00000001 , 0x00000002 
+ 00022206  0x000036f8 branch  0x00005892 
+ 00022207  0x000036fb force  0x00000002 , 0x00000002 
+ 00022208  0x000036fc branch  0x00005892 
+ 00022209  0x000036ff setarg  0x00000001 
+ 00022210  0x00003700 istore  0x00000008 , 0x00000005 
+ 00022211  0x00003701 force  0x00000009 , 0x00000002 
+ 00022212  0x00003702 branch  0x00005892 
+ 00022213  0x00003705 force  0x00000006 , 0x00000002 
+ 00022214  0x00003706 branch  0x00005892 
+ 00022215  0x00003709 force  0x00000006 , 0x00000002 
+ 00022216  0x0000370a branch  0x00005892 
+ 00022217  0x0000370d setarg  0x00000a06 
+ 00022218  0x0000370e istore  0x00000003 , 0x00000005 
+ 00022219  0x0000370f setarg  0x00001d87 
+ 00022220  0x00003710 istore  0x00000002 , 0x00000005 
+ 00022221  0x00003711 force  0x00000006 , 0x00000002 
+ 00022222  0x00003712 branch  0x00005892 
+ 00022223  0x00003715 force  0x00000002 , 0x00000002 
+ 00022224  0x00003716 branch  0x00005892 
+ 00022225  0x00003719 increase  0xffffffff , 0x00000005 
+ 00022226  0x0000371a setarg  0x0000000c 
+ 00022227  0x0000371b istore  0x00000002 , 0x00000005 
+ 00022228  0x0000371c setarg  0x00000005 
+ 00022229  0x0000371d istore  0x00000002 , 0x00000005 
+ 00022230  0x0000371e setarg  0x0000b412 
+ 00022231  0x0000371f istore  0x00000002 , 0x00000005 
+ 00022232  0x00003720 setarg  0x00000008 
+ 00022233  0x00003721 istore  0x00000002 , 0x00000005 
+ 00022234  0x00003722 setarg  0x00000008 
+ 00022235  0x00003723 istore  0x00000002 , 0x00000005 
+ 00022236  0x00003724 setarg  0x00000010 
+ 00022237  0x00003725 istore  0x00000002 , 0x00000005 
+ 00022238  0x00003726 setarg  0x00000000 
+ 00022239  0x00003727 istore  0x00000002 , 0x00000005 
+ 00022240  0x00003728 setarg  0x0000012c 
+ 00022241  0x00003729 istore  0x00000002 , 0x00000005 
+ 00022242  0x0000372a call  0x0000588a 
+ 00022243  0x0000372b force  0x00000002 , 0x00000001 
+ 00022244  0x0000372c branch  0x00005892 
+ 00022245  0x0000372f setarg  0x01000401 
+ 00022246  0x00003730 store  0x00000004 , 0x000044ae 
+ 00022247  0x00003731 setarg  0x00070710 
+ 00022248  0x00003732 istore  0x00000003 , 0x00000005 
+ 00022249  0x00003733 fetch  0x00000006 , 0x000044af 
+ 00022250  0x00003734 store  0x00000006 , 0x00004445 
+ 00022251  0x00003735 force  0x0000000b , 0x00000002 
+ 00022252  0x00003736 branch  0x00005892 
+ 00022253  0x00003739 setarg  0x01000302 
+ 00022254  0x0000373a store  0x00000004 , 0x000044b5 
+ 00022255  0x0000373b setarg  0x00010410 
+ 00022256  0x0000373c istore  0x00000003 , 0x00000005 
+ 00022257  0x0000373d fetch  0x00000006 , 0x000044b6 
+ 00022258  0x0000373e store  0x00000006 , 0x00004445 
+ 00022259  0x0000373f force  0x0000000b , 0x00000002 
+ 00022260  0x00003740 branch  0x00005892 
+ 00022261  0x00003743 call  0x000074b0 
+ 00022262  0x00003744 arg  0x00004445 , 0x00000005 
+ 00022263  0x00003745 call  0x000075a3 
+ 00022264  0x00003746 force  0x00000015 , 0x00000002 
+ 00022265  0x00003747 branch  0x00005892 
+ 00022266  0x0000374a fetch  0x00000008 , 0x000003b0 
+ 00022267  0x0000374b branch  0x000056fd , 0x00000029 
+ 00022268  0x0000374c fetch  0x00000008 , 0x0000449c 
+ 00022269  0x0000374f call  0x00005723 
+ 00022270  0x00003750 branch  0x00005892 
+ 00022271  0x00003753 force  0x00000006 , 0x00000002 
+ 00022272  0x00003754 branch  0x00005892 
+ 00022273  0x00003757 jam  0x00000029 , 0x00000b7d 
+ 00022274  0x00003758 call  0x00007c27 
+ 00022275  0x00003759 jam  0x00000047 , 0x00000b7d 
+ 00022276  0x0000375a call  0x00005620 
+ 00022277  0x0000375b arg  0x000003a0 , 0x00000005 
+ 00022278  0x0000375c call  0x00006226 
+ 00022279  0x0000375d fetch  0x00000008 , 0x000003a0 
+ 00022280  0x0000375e fetch  0x00000008 , 0x0000447b 
+ 00022281  0x0000375f call  0x00005723 
+ 00022282  0x00003760 branch  0x00005892 
+ 00022283  0x00003763 jam  0x00000048 , 0x00000b7d 
+ 00022284  0x00003764 call  0x00005620 
+ 00022285  0x00003765 arg  0x00004445 , 0x00000005 
+ 00022286  0x00003766 force  0x00000008 , 0x00000039 
+ 00022287  0x00003767 call  0x00006227 
+ 00022288  0x00003768 force  0x0000000f , 0x00000002 
+ 00022289  0x00003769 branch  0x00005892 
+ 00022290  0x0000376c jam  0x00000049 , 0x00000b7d 
+ 00022291  0x0000376d call  0x00005620 
+ 00022292  0x0000376e arg  0x00004445 , 0x00000005 
+ 00022293  0x0000376f call  0x00006226 
+ 00022294  0x00003770 branch  0x0000588a 
+ 00022295  0x00003773 jam  0x0000004a , 0x00000b7d 
+ 00022296  0x00003774 call  0x00005620 
+ 00022297  0x00003775 force  0x00000000 , 0x0000003f 
+ 00022298  0x00003776 store  0x00000001 , 0x00004445 
+ 00022299  0x00003777 fetch  0x00000006 , 0x000044f9 
+ 00022300  0x00003778 istore  0x00000006 , 0x00000005 
+ 00022301  0x00003779 branch  0x0000588a 
+ 00022302  0x0000377c arg  0x00004445 , 0x00000005 
+ 00022303  0x0000377d call  0x00006226 
+ 00022304  0x0000377e branch  0x0000588a 
+ 00022305  0x00003781 force  0x00000006 , 0x00000002 
+ 00022306  0x00003782 branch  0x00005892 
+ 00022307  0x00003785 store  0x00000008 , 0x00004445 
+ 00022308  0x00003786 ifetch  0x00000008 , 0x00000006 
+ 00022309  0x00003787 istore  0x00000008 , 0x00000005 
+ 00022310  0x00003788 force  0x00000015 , 0x00000002 
+ 00022311  0x00003789 rtn 
+ 00022312  0x0000378c jam  0x0000000a , 0x000003fc 
+ 00022313  0x0000378e jam  0x00000001 , 0x00004444 
+ 00022314  0x0000378f fetch  0x00000003 , 0x000003f9 
+ 00022315  0x00003790 store  0x00000003 , 0x00004445 
+ 00022316  0x00003791 fetch  0x00000001 , 0x000003fc 
+ 00022317  0x00003792 istore  0x00000001 , 0x00000005 
+ 00022318  0x00003793 branch  0x0000588a 
+ 00022319  0x00003796 setarg  0x00000017 
+ 00022320  0x00003797 istore  0x00000002 , 0x00000005 
+ 00022321  0x00003798 branch  0x0000588a 
+ 00022322  0x0000379b fetch  0x00000002 , 0x000044bc 
+ 00022323  0x0000379c store  0x00000002 , 0x00004445 
+ 00022324  0x0000379d fetch  0x00000002 , 0x000044be 
+ 00022325  0x0000379e istore  0x00000002 , 0x00000005 
+ 00022326  0x0000379f branch  0x0000588a 
+ 00022327  0x000037a4 force  0x00000001 , 0x0000003f 
+ 00022328  0x000037a5 store  0x00000001 , 0x00004445 
+ 00022329  0x000037a6 call  0x00005a74 
+ 00022330  0x000037a8 call  0x00005a7d 
+ 00022331  0x000037a9 branch  0x00005746 , 0x00000034 
+ 00022332  0x000037aa nbranch  0x00005744 , 0x00000002 
+ 00022333  0x000037ab disable  0x00000028 
+ 00022334  0x000037ac istore  0x00000002 , 0x00000005 
+ 00022335  0x000037ad ifetch  0x00000002 , 0x00000006 
+ 00022336  0x000037ae istore  0x00000002 , 0x00000005 
+ 00022337  0x000037b0 ifetch  0x00000001 , 0x00000006 
+ 00022338  0x000037b1 iadd  0x00000006 , 0x00000006 
+ 00022339  0x000037b2 branch  0x0000573a 
+ 00022340  0x000037b4 increase  0x00000002 , 0x00000006 
+ 00022341  0x000037b5 branch  0x00005741 
+ 00022342  0x000037b7 branch  0x00005728 , 0x00000028 
+ 00022343  0x000037b8 branch  0x0000588a 
+ 00022344  0x000037bc fetch  0x00000002 , 0x000044bc 
+ 00022345  0x000037bd branch  0x00005688 , 0x00000034 
+ 00022346  0x000037be store  0x00000002 , 0x00004445 
+ 00022347  0x000037bf fetch  0x00000002 , 0x000044be 
+ 00022348  0x000037c1 istore  0x00000002 , 0x00000005 
+ 00022349  0x000037c2 fetch  0x00000002 , 0x000044c4 
+ 00022350  0x000037c4 istore  0x00000002 , 0x00000005 
+ 00022351  0x000037c5 fetch  0x00000002 , 0x000044c0 
+ 00022352  0x000037c7 istore  0x00000002 , 0x00000005 
+ 00022353  0x000037c8 branch  0x0000588a 
+ 00022354  0x000037cc call  0x0000577b 
+ 00022355  0x000037cd rtn  0x00000028 
+ 00022356  0x000037ce fetcht  0x00000002 , 0x000044c4 
+ 00022357  0x000037cf setarg  0x00002800 
+ 00022358  0x000037d0 isub  0x00000002 , 0x0000003e 
+ 00022359  0x000037d1 branch  0x00005762 , 0x00000005 
+ 00022360  0x000037d2 setarg  0x00002801 
+ 00022361  0x000037d3 isub  0x00000002 , 0x0000003e 
+ 00022362  0x000037d4 branch  0x00005728 , 0x00000005 
+ 00022363  0x000037d5 setarg  0x00002802 
+ 00022364  0x000037d6 isub  0x00000002 , 0x0000003e 
+ 00022365  0x000037d7 branch  0x00005728 , 0x00000005 
+ 00022366  0x000037d8 setarg  0x00002803 
+ 00022367  0x000037d9 isub  0x00000002 , 0x0000003e 
+ 00022368  0x000037da branch  0x00005728 , 0x00000005 
+ 00022369  0x000037db branch  0x00005728 
+ 00022370  0x000037de fetcht  0x00000002 , 0x000044c0 
+ 00022371  0x000037df increase  0x00000002 , 0x00000006 
+ 00022372  0x000037e0 ifetch  0x00000001 , 0x00000006 
+ 00022373  0x000037e1 icopy  0x00000013 
+ 00022374  0x000037e2 increase  0x00000001 , 0x00000013 
+ 00022375  0x000037e5 increase  0xffffffff , 0x00000013 
+ 00022376  0x000037e6 branch  0x00005728 , 0x00000005 
+ 00022377  0x000037e7 ifetch  0x00000002 , 0x00000006 
+ 00022378  0x000037e8 isub  0x00000002 , 0x0000003e 
+ 00022379  0x000037e9 branch  0x0000576e , 0x00000005 
+ 00022380  0x000037ea increase  0x00000004 , 0x00000006 
+ 00022381  0x000037eb branch  0x00005767 
+ 00022382  0x000037ee ifetch  0x00000002 , 0x00000006 
+ 00022383  0x000037ef icopy  0x00000011 
+ 00022384  0x000037f0 ifetch  0x00000002 , 0x00000006 
+ 00022385  0x000037f1 icopy  0x00000012 
+ 00022386  0x000037f2 call  0x00005785 
+ 00022387  0x000037f3 rtn  0x00000028 
+ 00022388  0x000037f4 jam  0x00000007 , 0x00004444 
+ 00022389  0x000037f5 deposit  0x00000011 
+ 00022390  0x000037f6 store  0x00000002 , 0x00004445 
+ 00022391  0x000037f7 deposit  0x00000012 
+ 00022392  0x000037f8 istore  0x00000002 , 0x00000005 
+ 00022393  0x000037f9 force  0x00000009 , 0x00000002 
+ 00022394  0x000037fa branch  0x00005892 
+ 00022395  0x00003800 disable  0x00000028 
+ 00022396  0x00003801 fetcht  0x00000002 , 0x000044bc 
+ 00022397  0x00003802 fetch  0x00000002 , 0x000044be 
+ 00022398  0x00003803 isub  0x00000002 , 0x0000003e 
+ 00022399  0x00003804 nbranch  0x00005782 , 0x00000002 
+ 00022400  0x00003805 deposit  0x00000002 
+ 00022401  0x00003806 rtnne  0x00000000 
+ 00022402  0x00003809 enable  0x00000028 
+ 00022403  0x0000380b jam  0x00000001 , 0x000003fc 
+ 00022404  0x0000380c branch  0x00005729 
+ 00022405  0x0000380f disable  0x00000028 
+ 00022406  0x00003810 fetcht  0x00000002 , 0x000044bc 
+ 00022407  0x00003811 deposit  0x00000011 
+ 00022408  0x00003812 isub  0x00000002 , 0x0000003e 
+ 00022409  0x00003813 nbranch  0x00005791 , 0x00000002 
+ 00022410  0x00003814 fetch  0x00000002 , 0x000044be 
+ 00022411  0x00003815 isub  0x00000012 , 0x0000003e 
+ 00022412  0x00003816 nbranch  0x00005791 , 0x00000002 
+ 00022413  0x00003817 deposit  0x00000012 
+ 00022414  0x00003818 isub  0x00000011 , 0x0000003e 
+ 00022415  0x00003819 nbranch  0x00005791 , 0x00000002 
+ 00022416  0x0000381a rtn 
+ 00022417  0x0000381d enable  0x00000028 
+ 00022418  0x0000381e branch  0x00005728 
+ 00022419  0x00003822 fetch  0x00000002 , 0x000044bc 
+ 00022420  0x00003824 istore  0x00000002 , 0x00000005 
+ 00022421  0x00003825 fetch  0x00000002 , 0x000044be 
+ 00022422  0x00003827 istore  0x00000002 , 0x00000005 
+ 00022423  0x00003828 fetch  0x00000002 , 0x000044c0 
+ 00022424  0x00003829 istore  0x00000002 , 0x00000005 
+ 00022425  0x0000382a force  0x0000000b , 0x00000002 
+ 00022426  0x0000382b branch  0x00005892 
+ 00022427  0x0000382f fetcht  0x00000002 , 0x000044c0 
+ 00022428  0x00003830 setarg  0x00002803 
+ 00022429  0x00003831 isub  0x00000002 , 0x0000003e 
+ 00022430  0x00003832 setarg  0x00000007 
+ 00022431  0x00003833 branch  0x000057a5 , 0x00000005 
+ 00022432  0x00003834 setarg  0x00002800 
+ 00022433  0x00003835 isub  0x00000002 , 0x0000003e 
+ 00022434  0x00003836 setarg  0x00000006 
+ 00022435  0x00003837 branch  0x000057a5 , 0x00000005 
+ 00022436  0x00003838 branch  0x00005728 
+ 00022437  0x0000383a store  0x00000001 , 0x00004445 
+ 00022438  0x0000383b call  0x00005a74 
+ 00022439  0x0000383c force  0x00000003 , 0x00000030 
+ 00022440  0x0000383e call  0x00005a7d 
+ 00022441  0x0000383f branch  0x000057bc , 0x00000034 
+ 00022442  0x00003840 nbranch  0x000057b8 , 0x00000002 
+ 00022443  0x00003841 iforce  0x00000011 
+ 00022444  0x00003842 ifetch  0x00000002 , 0x00000006 
+ 00022445  0x00003843 isub  0x00000002 , 0x0000003e 
+ 00022446  0x00003844 nbranch  0x000057b9 , 0x00000005 
+ 00022447  0x00003845 disable  0x00000028 
+ 00022448  0x00003846 deposit  0x00000011 
+ 00022449  0x00003847 istore  0x00000002 , 0x00000005 
+ 00022450  0x00003848 ifetch  0x00000001 , 0x00000006 
+ 00022451  0x00003849 add  0x0000003f , 0x00000004 , 0x00000039 
+ 00022452  0x0000384a call  0x00007e45 
+ 00022453  0x0000384b increase  0xffffffff , 0x00000030 
+ 00022454  0x0000384c branch  0x000057bc , 0x00000005 
+ 00022455  0x0000384d branch  0x000057b9 
+ 00022456  0x0000384f increase  0x00000002 , 0x00000006 
+ 00022457  0x00003851 ifetch  0x00000001 , 0x00000006 
+ 00022458  0x00003852 iadd  0x00000006 , 0x00000006 
+ 00022459  0x00003853 branch  0x000057a8 
+ 00022460  0x00003855 branch  0x00005728 , 0x00000028 
+ 00022461  0x00003856 branch  0x0000588a 
+ 00022462  0x0000385a fetch  0x00000001 , 0x0000443d 
+ 00022463  0x0000385c increase  0xffffffff , 0x0000003f 
+ 00022464  0x0000385d store  0x00000001 , 0x0000443d 
+ 00022465  0x0000385e lshift  0x0000003f , 0x0000003f 
+ 00022466  0x00003860 iadd  0x00000006 , 0x00000006 
+ 00022467  0x00003861 ifetcht  0x00000002 , 0x00000006 
+ 00022468  0x00003862 storet  0x00000002 , 0x00004445 
+ 00022469  0x00003863 branch  0x0000588a 
+ 00022470  0x00003866 fetcht  0x00000002 , 0x000003fa 
+ 00022471  0x00003867 call  0x00005a88 
+ 00022472  0x00003868 branch  0x00005728 , 0x00000034 
+ 00022473  0x00003869 ifetch  0x00000001 , 0x00000006 
+ 00022474  0x0000386a branch  0x0000588a , 0x00000034 
+ 00022475  0x0000386b sub  0x0000003f , 0x00000016 , 0x0000003e 
+ 00022476  0x0000386c branch  0x000057ce , 0x00000002 
+ 00022477  0x0000386d force  0x00000016 , 0x0000003f 
+ 00022478  0x0000386f icopy  0x00000039 
+ 00022479  0x00003870 call  0x00007e45 
+ 00022480  0x00003871 branch  0x0000588a 
+ 00022481  0x00003875 setarg  0x00000003 
+ 00022482  0x00003876 store  0x00000002 , 0x00004445 
+ 00022483  0x00003877 setarg  0x00000008 
+ 00022484  0x00003878 istore  0x00000002 , 0x00000005 
+ 00022485  0x00003879 branch  0x0000588a 
+ 00022486  0x0000387c fetch  0x00000002 , 0x000044c0 
+ 00022487  0x0000387d iforce  0x00000011 
+ 00022488  0x0000387e fetcht  0x00000002 , 0x000003fa 
+ 00022489  0x0000387f call  0x00005a88 
+ 00022490  0x00003880 branch  0x00005728 , 0x00000034 
+ 00022491  0x00003881 ifetch  0x00000001 , 0x00000006 
+ 00022492  0x00003882 isub  0x00000011 , 0x00000039 
+ 00022493  0x00003883 nbranch  0x00005728 , 0x00000002 
+ 00022494  0x00003884 sub  0x00000039 , 0x00000016 , 0x0000003e 
+ 00022495  0x00003885 branch  0x000057e1 , 0x00000002 
+ 00022496  0x00003886 force  0x00000016 , 0x00000039 
+ 00022497  0x00003888 deposit  0x00000011 
+ 00022498  0x00003889 iadd  0x00000006 , 0x00000006 
+ 00022499  0x0000388a call  0x00007e45 
+ 00022500  0x0000388b branch  0x0000588a 
+ 00022501  0x0000388e setarg  0x00000003 
+ 00022502  0x0000388f istore  0x00000002 , 0x00000005 
+ 00022503  0x00003890 setarg  0x00000007 
+ 00022504  0x00003891 istore  0x00000002 , 0x00000005 
+ 00022505  0x00003892 setarg  0x00000009 
+ 00022506  0x00003893 istore  0x00000002 , 0x00000005 
+ 00022507  0x00003894 branch  0x0000588a 
+ 00022508  0x00003897 fetch  0x00000001 , 0x0000443d 
+ 00022509  0x00003898 icopy  0x00000013 
+ 00022510  0x00003899 arg  0x00000347 , 0x00000011 
+ 00022511  0x0000389a arg  0x00004445 , 0x00000012 
+ 00022512  0x0000389b arg  0x00000000 , 0x0000000b 
+ 00022513  0x0000389c disable  0x00000031 
+ 00022514  0x0000389f copy  0x00000011 , 0x00000006 
+ 00022515  0x000038a0 ifetcht  0x00000002 , 0x00000006 
+ 00022516  0x000038a1 copy  0x00000006 , 0x00000011 
+ 00022517  0x000038a2 call  0x00005a88 
+ 00022518  0x000038a3 branch  0x00005805 , 0x00000034 
+ 00022519  0x000038a4 ifetch  0x00000001 , 0x00000006 
+ 00022520  0x000038a5 icopy  0x00000039 
+ 00022521  0x000038a6 iadd  0x0000000b , 0x0000000b 
+ 00022522  0x000038aa sub  0x0000000b , 0x00000018 , 0x0000003e 
+ 00022523  0x000038ab nbranch  0x0000580a , 0x00000002 
+ 00022524  0x000038ac copy  0x00000012 , 0x00000005 
+ 00022525  0x000038af ifetch  0x00000001 , 0x00000006 
+ 00022526  0x000038b0 istore  0x00000001 , 0x00000005 
+ 00022527  0x000038b1 loop  0x000057fd 
+ 00022528  0x000038b2 copy  0x00000005 , 0x00000012 
+ 00022529  0x000038b3 enable  0x00000031 
+ 00022530  0x000038b4 increase  0xffffffff , 0x00000013 
+ 00022531  0x000038b5 branch  0x00005805 , 0x00000005 
+ 00022532  0x000038b6 branch  0x000057f2 
+ 00022533  0x000038b9 nbranch  0x00005810 , 0x00000031 
+ 00022534  0x000038ba disable  0x00000031 
+ 00022535  0x000038bb copy  0x0000000b , 0x00000002 
+ 00022536  0x000038bc increase  0x00000005 , 0x00000002 
+ 00022537  0x000038bd branch  0x00005892 
+ 00022538  0x000038c0 nbranch  0x00005810 , 0x00000031 
+ 00022539  0x000038c1 disable  0x00000031 
+ 00022540  0x000038c2 deposit  0x0000000b 
+ 00022541  0x000038c3 isub  0x00000039 , 0x00000002 
+ 00022542  0x000038c4 increase  0x00000005 , 0x00000002 
+ 00022543  0x000038c5 branch  0x00005892 
+ 00022544  0x000038c8 jam  0x00000010 , 0x000003fc 
+ 00022545  0x000038c9 branch  0x00005729 
+ 00022546  0x000038cd fetch  0x00000002 , 0x000003fa 
+ 00022547  0x000038ce branch  0x00005688 , 0x00000034 
+ 00022548  0x000038cf istore  0x00000002 , 0x00000005 
+ 00022549  0x000038d0 setarg  0x0000ffff 
+ 00022550  0x000038d1 istore  0x00000002 , 0x00000005 
+ 00022551  0x000038d2 setarg  0x00002800 
+ 00022552  0x000038d3 istore  0x00000002 , 0x00000005 
+ 00022553  0x000038d4 branch  0x0000588a 
+ 00022554  0x000038d8 setarg  0x00000006 
+ 00022555  0x000038d9 store  0x00000001 , 0x00004445 
+ 00022556  0x000038da fetch  0x00000002 , 0x000044c0 
+ 00022557  0x000038db iforce  0x00000011 
+ 00022558  0x000038dc call  0x00005a74 
+ 00022559  0x000038dd force  0x00000003 , 0x00000039 
+ 00022560  0x000038df call  0x00005a7d 
+ 00022561  0x000038e0 branch  0x00005835 , 0x00000034 
+ 00022562  0x000038e1 nbranch  0x0000583a , 0x00000002 
+ 00022563  0x000038e2 iforce  0x00000030 
+ 00022564  0x000038e3 ifetch  0x00000002 , 0x00000006 
+ 00022565  0x000038e4 isub  0x00000011 , 0x0000003e 
+ 00022566  0x000038e5 nbranch  0x0000583b , 0x00000005 
+ 00022567  0x000038e6 deposit  0x00000030 
+ 00022568  0x000038e7 branch  0x0000582f , 0x00000028 
+ 00022569  0x000038e8 increase  0xffffffff , 0x0000003f 
+ 00022570  0x000038e9 istore  0x00000002 , 0x00000005 
+ 00022571  0x000038ea istoret  0x00000002 , 0x00000005 
+ 00022572  0x000038eb increase  0x00000001 , 0x0000003f 
+ 00022573  0x000038ec increase  0xffffffff , 0x00000039 
+ 00022574  0x000038ed branch  0x0000588a , 0x00000005 
+ 00022575  0x000038ef disable  0x00000028 
+ 00022576  0x000038f0 istore  0x00000002 , 0x00000005 
+ 00022577  0x000038f1 increase  0x00000001 , 0x00000006 
+ 00022578  0x000038f2 ifetcht  0x00000002 , 0x00000006 
+ 00022579  0x000038f3 increase  0xfffffffd , 0x00000006 
+ 00022580  0x000038f4 branch  0x0000583b 
+ 00022581  0x000038f6 branch  0x00005728 , 0x00000028 
+ 00022582  0x000038f7 force  0xffffffff , 0x0000003f 
+ 00022583  0x000038f8 istore  0x00000002 , 0x00000005 
+ 00022584  0x000038f9 istoret  0x00000002 , 0x00000005 
+ 00022585  0x000038fa branch  0x0000588a 
+ 00022586  0x000038fc increase  0x00000002 , 0x00000006 
+ 00022587  0x000038fe ifetch  0x00000001 , 0x00000006 
+ 00022588  0x000038ff iadd  0x00000006 , 0x00000006 
+ 00022589  0x00003900 branch  0x00005820 
+ 00022590  0x00003905 fetch  0x00000002 , 0x000044c2 
+ 00022591  0x00003906 store  0x00000002 , 0x00004445 
+ 00022592  0x00003907 fetch  0x00000001 , 0x000044c6 
+ 00022593  0x00003908 copy  0x0000003f , 0x00000039 
+ 00022594  0x00003909 arg  0x000044c7 , 0x00000006 
+ 00022595  0x0000390a call  0x00007e45 
+ 00022596  0x0000390b branch  0x0000588a 
+ 00022597  0x0000390e fetcht  0x00000002 , 0x000003fa 
+ 00022598  0x0000390f call  0x00005a88 
+ 00022599  0x00003910 branch  0x0000585c , 0x00000034 
+ 00022600  0x00003911 increase  0xfffffffe , 0x00000006 
+ 00022601  0x00003912 ifetcht  0x00000002 , 0x00000006 
+ 00022602  0x00003913 setarg  0x00002902 
+ 00022603  0x00003914 isub  0x00000002 , 0x0000003e 
+ 00022604  0x00003915 nbranch  0x0000585c , 0x00000005 
+ 00022605  0x00003916 increase  0x00000001 , 0x00000006 
+ 00022606  0x00003917 ifetcht  0x00000002 , 0x00000006 
+ 00022607  0x00003918 setarg  0x00000001 
+ 00022608  0x00003919 isub  0x00000002 , 0x0000003e 
+ 00022609  0x0000391a branch  0x00005856 , 0x00000005 
+ 00022610  0x0000391b setarg  0x00000000 
+ 00022611  0x0000391c isub  0x00000002 , 0x0000003e 
+ 00022612  0x0000391d nbranch  0x0000585c , 0x00000005 
+ 00022613  0x0000391e branch  0x0000585c 
+ 00022614  0x00003921 increase  0xfffffff9 , 0x00000006 
+ 00022615  0x00003922 ifetch  0x00000002 , 0x00000006 
+ 00022616  0x00003923 increase  0xffffffff , 0x0000003f 
+ 00022617  0x00003924 store  0x00000002 , 0x000044c2 
+ 00022618  0x00003925 jam  0x0000001b , 0x00000b7d 
+ 00022619  0x00003926 call  0x00005620 
+ 00022620  0x0000392a force  0x00000005 , 0x00000002 
+ 00022621  0x0000392b branch  0x00005892 
+ 00022622  0x0000392e force  0x00000006 , 0x00000002 
+ 00022623  0x0000392f branch  0x00005892 
+ 00022624  0x00003932 force  0x00000006 , 0x00000002 
+ 00022625  0x00003933 branch  0x00005892 
+ 00022626  0x00003936 force  0x00000006 , 0x00000002 
+ 00022627  0x00003937 branch  0x00005892 
+ 00022628  0x0000393a force  0x00000006 , 0x00000002 
+ 00022629  0x0000393b branch  0x00005892 
+ 00022630  0x0000393e set1  0x00000025 , 0x00000000 
+ 00022631  0x0000393f bpatch  0x00000066 , 0x0000402c 
+ 00022632  0x00003940 increase  0x00000001 , 0x00000002 
+ 00022633  0x00003941 call  0x00005a88 
+ 00022634  0x00003942 increase  0xfffffffe , 0x00000006 
+ 00022635  0x00003943 ifetch  0x00000002 , 0x00000006 
+ 00022636  0x00003944 arg  0x00002902 , 0x00000002 
+ 00022637  0x00003945 isub  0x00000002 , 0x0000003e 
+ 00022638  0x00003946 nrtn  0x00000005 
+ 00022639  0x00003947 increase  0x00000001 , 0x00000006 
+ 00022640  0x00003948 copy  0x00000006 , 0x00000011 
+ 00022641  0x00003949 ifetch  0x00000001 , 0x00000006 
+ 00022642  0x0000394a rtn 
+ 00022643  0x0000394d jam  0x00000000 , 0x0000041b 
+ 00022644  0x0000394e fetch  0x00000002 , 0x00004298 
+ 00022645  0x0000394f call  0x00007f66 
+ 00022646  0x00003950 arg  0x00004444 , 0x00000005 
+ 00022647  0x00003951 increase  0x00000001 , 0x00000005 
+ 00022648  0x00003952 fetcht  0x00000002 , 0x000044c2 
+ 00022649  0x00003953 istoret  0x00000002 , 0x00000005 
+ 00022650  0x00003954 call  0x00005a88 
+ 00022651  0x00003955 ifetch  0x00000001 , 0x00000006 
+ 00022652  0x00003956 icopy  0x00000039 
+ 00022653  0x00003957 call  0x00007e45 
+ 00022654  0x00003958 fetcht  0x00000001 , 0x0000041b 
+ 00022655  0x00003959 increase  0x00000007 , 0x00000002 
+ 00022656  0x0000395a call  0x00005892 
+ 00022657  0x0000395b branch  0x00005ace 
+ 00022658  0x0000395e force  0x00000006 , 0x00000002 
+ 00022659  0x0000395f branch  0x00005892 
+ 00022660  0x00003962 force  0x00000006 , 0x00000002 
+ 00022661  0x00003963 branch  0x00005892 
+ 00022662  0x00003966 force  0x00000006 , 0x00000002 
+ 00022663  0x00003967 branch  0x00005892 
+ 00022664  0x0000396a force  0x00000006 , 0x00000002 
+ 00022665  0x0000396b branch  0x00005892 
+ 00022666  0x0000396f set1  0x00000025 , 0x00000000 
+ 00022667  0x00003970 bpatch  0x00000067 , 0x0000402c 
+ 00022668  0x00003971 setarg  0x00004440 
+ 00022669  0x00003972 isub  0x00000005 , 0x0000003f 
+ 00022670  0x00003973 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00022671  0x00003974 branch  0x00005892 
+ 00022672  0x00003978 force  0x00000000 , 0x00000002 
+ 00022673  0x00003979 force  0x00000001 , 0x00000001 
+ 00022674  0x0000397c set1  0x00000025 , 0x00000000 
+ 00022675  0x0000397d bpatch  0x00000068 , 0x0000402d 
+ 00022676  0x0000397e storet  0x00000001 , 0x0000443f 
+ 00022677  0x0000397f compare  0x00000002 , 0x00000001 , 0x00000003 
+ 00022678  0x00003980 nbranch  0x00005899 , 0x00000001 
+ 00022679  0x00003981 add  0x00000002 , 0xfffffffc , 0x0000003f 
+ 00022680  0x00003982 store  0x00000002 , 0x00004440 
+ 00022681  0x00003985 fetcht  0x00000001 , 0x000003d7 
+ 00022682  0x00003986 call  0x0000561a 
+ 00022683  0x00003987 nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00022684  0x00003988 set1  0x00000005 , 0x00000002 
+ 00022685  0x00003989 and  0x00000002 , 0x000000fc , 0x0000003f 
+ 00022686  0x0000398a ior  0x00000001 , 0x0000003f 
+ 00022687  0x0000398b store  0x00000001 , 0x000003d7 
+ 00022688  0x0000398c and_into  0x0000001f , 0x0000003f 
+ 00022689  0x0000398d store  0x00000001 , 0x0000443e 
+ 00022690  0x0000398e set1  0x00000025 , 0x00000000 
+ 00022691  0x0000398f bpatch  0x00000069 , 0x0000402d 
+ 00022692  0x00003990 fetch  0x00000001 , 0x0000443e 
+ 00022693  0x00003991 compare  0x00000001 , 0x00000001 , 0x00000003 
+ 00022694  0x00003992 rtn  0x00000001 
+ 00022695  0x00003993 fetch  0x00000007 , 0x0000443f 
+ 00022696  0x00003994 fetch  0x00000001 , 0x000003c0 
+ 00022697  0x00003995 rtnbit0  0x00000004 
+ 00022698  0x00003996 call  0x00007599 
+ 00022699  0x00003997 branch  0x000074f7 
+ 00022700  0x0000399a set1  0x00000025 , 0x00000000 
+ 00022701  0x0000399b bpatch  0x0000006a , 0x0000402d 
+ 00022702  0x0000399c call  0x0000561c 
+ 00022703  0x0000399d nbranch  0x00003bf1 , 0x00000034 
+ 00022704  0x0000399e nrtn  0x00000034 
+ 00022705  0x0000399f fetch  0x00000001 , 0x00000341 
+ 00022706  0x000039a0 rtn  0x00000034 
+ 00022707  0x000039a1 fetch  0x00000001 , 0x00000340 
+ 00022708  0x000039a2 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00022709  0x000039a3 branch  0x000058cf , 0x00000001 
+ 00022710  0x000039a4 fetch  0x00000007 , 0x00000341 
+ 00022711  0x000039a5 fetch  0x00000001 , 0x00000340 
+ 00022712  0x000039a6 compare  0x00000002 , 0x0000003f , 0x00000003 
+ 00022713  0x000039a7 branch  0x000058cf , 0x00000001 
+ 00022714  0x000039a8 fetch  0x00000001 , 0x00000342 
+ 00022715  0x000039a9 store  0x00000001 , 0x00000418 
+ 00022716  0x000039aa copy  0x0000003f , 0x00000013 
+ 00022717  0x000039ab set1  0x00000025 , 0x00000000 
+ 00022718  0x000039ac bpatch  0x0000006b , 0x0000402d 
+ 00022719  0x000039ad copy  0x00000013 , 0x0000003f 
+ 00022720  0x000039ae beq  0x00000000 , 0x00005924 
+ 00022721  0x000039af beq  0x00000001 , 0x0000592c 
+ 00022722  0x000039b0 beq  0x00000002 , 0x00005934 
+ 00022723  0x000039b1 beq  0x00000003 , 0x00005938 
+ 00022724  0x000039b2 beq  0x00000004 , 0x0000593f 
+ 00022725  0x000039b3 beq  0x00000005 , 0x00005944 
+ 00022726  0x000039b4 beq  0x00000006 , 0x00005949 
+ 00022727  0x000039b5 beq  0x00000007 , 0x0000594c 
+ 00022728  0x000039b6 beq  0x00000008 , 0x0000594d 
+ 00022729  0x000039b7 beq  0x00000009 , 0x0000594f 
+ 00022730  0x000039b8 beq  0x0000000a , 0x00005950 
+ 00022731  0x000039b9 beq  0x0000000b , 0x00005951 
+ 00022732  0x000039ba beq  0x0000000c , 0x00005952 
+ 00022733  0x000039bb beq  0x0000000d , 0x00005955 
+ 00022734  0x000039bc branch  0x00003bf1 
+ 00022735  0x000039bf fetch  0x00000001 , 0x00000341 
+ 00022736  0x000039c0 and  0x0000003f , 0x0000001f , 0x0000003f 
+ 00022737  0x000039c1 rtn  0x00000034 
+ 00022738  0x000039c2 fetch  0x00000001 , 0x00004132 
+ 00022739  0x000039c3 beq  0x00000001 , 0x000058d8 
+ 00022740  0x000039c4 fetch  0x00000002 , 0x00000344 
+ 00022741  0x000039c5 beq  0x00000004 , 0x00005903 
+ 00022742  0x000039c6 beq  0x00000006 , 0x000058f4 
+ 00022743  0x000039c7 rtn 
+ 00022744  0x000039ca set1  0x00000025 , 0x00000000 
+ 00022745  0x000039cb bpatch  0x0000006c , 0x0000402d 
+ 00022746  0x000039cc call  0x00004972 
+ 00022747  0x000039cd fetch  0x00000001 , 0x000003d6 
+ 00022748  0x000039ce fetcht  0x00000001 , 0x00000340 
+ 00022749  0x000039cf and_into  0x00000003 , 0x00000002 
+ 00022750  0x000039d0 lshift8  0x00000002 , 0x00000002 
+ 00022751  0x000039d1 lshift4  0x00000002 , 0x00000002 
+ 00022752  0x000039d2 ior  0x00000002 , 0x0000003f 
+ 00022753  0x000039d3 istore  0x00000002 , 0x0000000a 
+ 00022754  0x000039d4 fetcht  0x00000001 , 0x00000341 
+ 00022755  0x000039d5 and  0x00000002 , 0x0000001f , 0x00000002 
+ 00022756  0x000039d6 istoret  0x00000002 , 0x0000000a 
+ 00022757  0x000039d7 copy  0x00000002 , 0x00000039 
+ 00022758  0x000039d8 call  0x00004976 
+ 00022759  0x000039d9 add  0x00000002 , 0x00000004 , 0x00000039 
+ 00022760  0x000039da call  0x00004424 
+ 00022761  0x000039db branch  0x00004435 
+ 00022762  0x000039de set1  0x00000025 , 0x00000000 
+ 00022763  0x000039df bpatch  0x0000006d , 0x0000402d 
+ 00022764  0x000039e0 arg  0x00000002 , 0x00000001 
+ 00022765  0x000039e1 ifetch  0x00000002 , 0x00000003 
+ 00022766  0x000039e2 ifetch  0x00000002 , 0x00000003 
+ 00022767  0x000039e3 branch  0x00003bf1 , 0x00000034 
+ 00022768  0x000039e4 copy  0x0000003f , 0x00000039 
+ 00022769  0x000039e5 arg  0x00004440 , 0x00000005 
+ 00022770  0x000039e6 call  0x0000497c 
+ 00022771  0x000039e7 branch  0x0000588a 
+ 00022772  0x000039ea set1  0x00000025 , 0x00000000 
+ 00022773  0x000039eb bpatch  0x0000006e , 0x0000402d 
+ 00022774  0x000039ec ifetch  0x00000001 , 0x00000006 
+ 00022775  0x000039ed beq  0x00000001 , 0x00005956 
+ 00022776  0x000039ee beq  0x00000002 , 0x0000595b 
+ 00022777  0x000039ef beq  0x00000003 , 0x00005960 
+ 00022778  0x000039f0 beq  0x00000004 , 0x00005966 
+ 00022779  0x000039f1 beq  0x00000005 , 0x0000596f 
+ 00022780  0x000039f2 beq  0x00000006 , 0x00005970 
+ 00022781  0x000039f3 beq  0x00000007 , 0x00005972 
+ 00022782  0x000039f4 beq  0x00000008 , 0x00005973 
+ 00022783  0x000039f5 beq  0x00000009 , 0x00005974 
+ 00022784  0x000039f6 beq  0x0000000a , 0x00005975 
+ 00022785  0x000039f7 beq  0x0000000b , 0x00005976 
+ 00022786  0x000039f8 branch  0x00003bf1 
+ 00022787  0x000039fb set1  0x00000025 , 0x00000000 
+ 00022788  0x000039fc bpatch  0x0000006f , 0x0000402d 
+ 00022789  0x000039fd ifetch  0x00000003 , 0x00000006 
+ 00022790  0x000039fe store  0x00000003 , 0x000003f9 
+ 00022791  0x00003a00 beq  0x00000001 , 0x00005977 
+ 00022792  0x00003a01 beq  0x00000002 , 0x0000598e 
+ 00022793  0x00003a02 beq  0x00000003 , 0x00005990 
+ 00022794  0x00003a03 beq  0x00000004 , 0x00005991 
+ 00022795  0x00003a04 beq  0x00000005 , 0x00005997 
+ 00022796  0x00003a05 beq  0x00000006 , 0x0000599a 
+ 00022797  0x00003a06 beq  0x00000007 , 0x000059a4 
+ 00022798  0x00003a07 beq  0x00000008 , 0x000059a5 
+ 00022799  0x00003a08 beq  0x00000009 , 0x000059ad 
+ 00022800  0x00003a09 beq  0x0000000a , 0x000059ae 
+ 00022801  0x00003a0a beq  0x0000000b , 0x000059b2 
+ 00022802  0x00003a0b beq  0x0000000c , 0x000059b5 
+ 00022803  0x00003a0c beq  0x0000000d , 0x000059b9 
+ 00022804  0x00003a0d beq  0x0000000e , 0x000059ba 
+ 00022805  0x00003a0e beq  0x0000000f , 0x000059c0 
+ 00022806  0x00003a0f beq  0x00000010 , 0x000059c1 
+ 00022807  0x00003a10 beq  0x00000011 , 0x000059c9 
+ 00022808  0x00003a11 beq  0x00000012 , 0x000059ca 
+ 00022809  0x00003a12 beq  0x00000013 , 0x000059da 
+ 00022810  0x00003a13 beq  0x00000016 , 0x000059dc 
+ 00022811  0x00003a14 beq  0x00000017 , 0x000059dd 
+ 00022812  0x00003a15 beq  0x00000018 , 0x000059de 
+ 00022813  0x00003a16 beq  0x00000019 , 0x000059df 
+ 00022814  0x00003a17 beq  0x0000001b , 0x000059e0 
+ 00022815  0x00003a18 beq  0x0000001d , 0x000059eb 
+ 00022816  0x00003a19 beq  0x0000001e , 0x000059ec 
+ 00022817  0x00003a1a beq  0x00000052 , 0x000059ed 
+ 00022818  0x00003a1b beq  0x000000d2 , 0x00005a01 
+ 00022819  0x00003a1c branch  0x00003bf1 
+ 00022820  0x00003a20 ifetch  0x00000009 , 0x00000006 
+ 00022821  0x00003a21 store  0x00000009 , 0x00004434 
+ 00022822  0x00003a22 ifetch  0x00000002 , 0x00000006 
+ 00022823  0x00003a23 store  0x00000002 , 0x000003e0 
+ 00022824  0x00003a24 fetch  0x00000001 , 0x000003c0 
+ 00022825  0x00003a25 set1  0x00000005 , 0x0000003f 
+ 00022826  0x00003a26 store  0x00000001 , 0x000003c0 
+ 00022827  0x00003a27 rtn 
+ 00022828  0x00003a2a ifetch  0x00000005 , 0x00000006 
+ 00022829  0x00003a2b store  0x00000005 , 0x0000442f 
+ 00022830  0x00003a2c ifetch  0x00000002 , 0x00000006 
+ 00022831  0x00003a2d store  0x00000002 , 0x000003e0 
+ 00022832  0x00003a2e fetch  0x00000001 , 0x000003c0 
+ 00022833  0x00003a2f set1  0x00000006 , 0x0000003f 
+ 00022834  0x00003a30 store  0x00000001 , 0x000003c0 
+ 00022835  0x00003a31 rtn 
+ 00022836  0x00003a34 fetch  0x00000001 , 0x000003e4 
+ 00022837  0x00003a35 set1  0x00000003 , 0x0000003f 
+ 00022838  0x00003a36 store  0x00000001 , 0x000003e4 
+ 00022839  0x00003a37 rtn 
+ 00022840  0x00003a3a increase  0x0000000a , 0x00000006 
+ 00022841  0x00003a3b ifetch  0x00000008 , 0x00000006 
+ 00022842  0x00003a3c store  0x00000008 , 0x00000380 
+ 00022843  0x00003a3d ifetch  0x00000004 , 0x00000006 
+ 00022844  0x00003a3e store  0x00000004 , 0x00004473 
+ 00022845  0x00003a3f jam  0x00000024 , 0x00000b7d 
+ 00022846  0x00003a40 branch  0x00005620 
+ 00022847  0x00003a43 ifetch  0x00000008 , 0x00000006 
+ 00022848  0x00003a44 store  0x00000008 , 0x00000388 
+ 00022849  0x00003a45 ifetch  0x00000004 , 0x00000006 
+ 00022850  0x00003a46 store  0x00000004 , 0x00004477 
+ 00022851  0x00003a47 branch  0x000074b6 
+ 00022852  0x00003a4a fetch  0x00000001 , 0x000003c0 
+ 00022853  0x00003a4b set1  0x00000004 , 0x0000003f 
+ 00022854  0x00003a4c store  0x00000001 , 0x000003c0 
+ 00022855  0x00003a4d jam  0x00000026 , 0x00000b7d 
+ 00022856  0x00003a4e branch  0x00005620 
+ 00022857  0x00003a51 rtn  0x00000029 
+ 00022858  0x00003a52 jam  0x00000026 , 0x00000b7d 
+ 00022859  0x00003a53 branch  0x00005620 
+ 00022860  0x00003a56 rtn 
+ 00022861  0x00003a59 jam  0x00000029 , 0x00000b7d 
+ 00022862  0x00003a5a branch  0x00005620 
+ 00022863  0x00003a5d rtn 
+ 00022864  0x00003a60 rtn 
+ 00022865  0x00003a63 rtn 
+ 00022866  0x00003a66 rtn  0x00000029 
+ 00022867  0x00003a67 jam  0x0000002c , 0x00000b7d 
+ 00022868  0x00003a68 branch  0x00005620 
+ 00022869  0x00003a6b rtn 
+ 00022870  0x00003a6f store  0x00000001 , 0x000044ae 
+ 00022871  0x00003a70 ifetch  0x00000006 , 0x00000006 
+ 00022872  0x00003a71 istore  0x00000006 , 0x00000005 
+ 00022873  0x00003a72 jam  0x00000042 , 0x00000b7d 
+ 00022874  0x00003a73 branch  0x00005620 
+ 00022875  0x00003a76 store  0x00000001 , 0x000044b5 
+ 00022876  0x00003a77 ifetch  0x00000006 , 0x00000006 
+ 00022877  0x00003a78 istore  0x00000006 , 0x00000005 
+ 00022878  0x00003a79 jam  0x00000043 , 0x00000b7d 
+ 00022879  0x00003a7a branch  0x00005620 
+ 00022880  0x00003a7d arg  0x0000448c , 0x00000005 
+ 00022881  0x00003a7e call  0x00007e35 
+ 00022882  0x00003a7f jam  0x00000044 , 0x00000b7d 
+ 00022883  0x00003a80 branch  0x00005620 , 0x00000029 
+ 00022884  0x00003a81 jam  0x00000043 , 0x00000b7d 
+ 00022885  0x00003a82 branch  0x00005620 
+ 00022886  0x00003a85 call  0x000074a8 
+ 00022887  0x00003a86 branch  0x0000596a , 0x00000005 
+ 00022888  0x00003a87 jam  0x00000045 , 0x00000b7d 
+ 00022889  0x00003a88 branch  0x00005620 
+ 00022890  0x00003a8b call  0x000074a5 
+ 00022891  0x00003a8c jam  0x00000023 , 0x00000b7d 
+ 00022892  0x00003a8d branch  0x00005620 , 0x00000029 
+ 00022893  0x00003a8e jam  0x00000044 , 0x00000b7d 
+ 00022894  0x00003a8f branch  0x00005620 
+ 00022895  0x00003a92 rtn 
+ 00022896  0x00003a95 arg  0x00000390 , 0x00000005 
+ 00022897  0x00003a96 branch  0x00007e35 
+ 00022898  0x00003a99 rtn 
+ 00022899  0x00003a9c rtn 
+ 00022900  0x00003a9f rtn 
+ 00022901  0x00003aa2 rtn 
+ 00022902  0x00003aa5 rtn 
+ 00022903  0x00003aa8 increase  0xfffffffe , 0x00000006 
+ 00022904  0x00003aa9 ifetcht  0x00000001 , 0x00000006 
+ 00022905  0x00003aaa setarg  0x00000006 
+ 00022906  0x00003aab isub  0x00000002 , 0x0000003e 
+ 00022907  0x00003aac branch  0x00005989 , 0x00000005 
+ 00022908  0x00003aad setarg  0x00000004 
+ 00022909  0x00003aae isub  0x00000002 , 0x0000003e 
+ 00022910  0x00003aaf branch  0x0000598a , 0x00000005 
+ 00022911  0x00003ab0 setarg  0x00000008 
+ 00022912  0x00003ab1 isub  0x00000002 , 0x0000003e 
+ 00022913  0x00003ab2 branch  0x0000598b , 0x00000005 
+ 00022914  0x00003ab3 setarg  0x0000000c 
+ 00022915  0x00003ab4 isub  0x00000002 , 0x0000003e 
+ 00022916  0x00003ab5 branch  0x0000598c , 0x00000005 
+ 00022917  0x00003ab6 setarg  0x0000000e 
+ 00022918  0x00003ab7 isub  0x00000002 , 0x0000003e 
+ 00022919  0x00003ab8 branch  0x0000598d , 0x00000005 
+ 00022920  0x00003ab9 rtn 
+ 00022921  0x00003abc rtn 
+ 00022922  0x00003abf rtn 
+ 00022923  0x00003ac2 rtn 
+ 00022924  0x00003ac5 rtn 
+ 00022925  0x00003ac8 rtn 
+ 00022926  0x00003acc jam  0x00000003 , 0x00000b7d 
+ 00022927  0x00003acd branch  0x00005620 
+ 00022928  0x00003ad0 rtn 
+ 00022929  0x00003ad3 rshift8  0x0000003f , 0x0000003f 
+ 00022930  0x00003ad4 store  0x00000002 , 0x000044bc 
+ 00022931  0x00003ad5 ifetch  0x00000002 , 0x00000006 
+ 00022932  0x00003ad6 store  0x00000002 , 0x000044be 
+ 00022933  0x00003ad7 jam  0x00000005 , 0x00000b7d 
+ 00022934  0x00003ad8 branch  0x00005620 
+ 00022935  0x00003adb rtn 
+ 00022936  0x00003ade rtn 
+ 00022937  0x00003ae1 rtn 
+ 00022938  0x00003ae4 rshift8  0x0000003f , 0x0000003f 
+ 00022939  0x00003ae5 store  0x00000002 , 0x000044bc 
+ 00022940  0x00003ae6 ifetch  0x00000002 , 0x00000006 
+ 00022941  0x00003ae7 store  0x00000002 , 0x000044be 
+ 00022942  0x00003ae8 ifetch  0x00000002 , 0x00000006 
+ 00022943  0x00003ae9 store  0x00000002 , 0x000044c4 
+ 00022944  0x00003aea ifetch  0x00000002 , 0x00000006 
+ 00022945  0x00003aeb store  0x00000002 , 0x000044c0 
+ 00022946  0x00003aec jam  0x00000007 , 0x00000b7d 
+ 00022947  0x00003aed branch  0x00005620 
+ 00022948  0x00003af1 rtn 
+ 00022949  0x00003af4 rshift8  0x0000003f , 0x0000003f 
+ 00022950  0x00003af5 store  0x00000002 , 0x000044bc 
+ 00022951  0x00003af6 ifetch  0x00000002 , 0x00000006 
+ 00022952  0x00003af7 store  0x00000002 , 0x000044be 
+ 00022953  0x00003af8 ifetch  0x00000002 , 0x00000006 
+ 00022954  0x00003af9 store  0x00000002 , 0x000044c0 
+ 00022955  0x00003afa jam  0x00000009 , 0x00000b7d 
+ 00022956  0x00003afb branch  0x00005620 
+ 00022957  0x00003afe rtn 
+ 00022958  0x00003b01 fetch  0x00000002 , 0x00000347 
+ 00022959  0x00003b02 store  0x00000002 , 0x000003fa 
+ 00022960  0x00003b03 jam  0x0000000b , 0x00000b7d 
+ 00022961  0x00003b04 branch  0x00005620 
+ 00022962  0x00003b07 rtn 
+ 00022963  0x00003b0a rtn 
+ 00022964  0x00003b0d rtn 
+ 00022965  0x00003b11 ifetch  0x00000002 , 0x00000006 
+ 00022966  0x00003b12 store  0x00000002 , 0x000044c0 
+ 00022967  0x00003b13 jam  0x0000000d , 0x00000b7d 
+ 00022968  0x00003b14 branch  0x00005620 
+ 00022969  0x00003b17 rtn 
+ 00022970  0x00003b1a fetch  0x00000001 , 0x00000341 
+ 00022971  0x00003b1b increase  0xfffffffb , 0x0000003f 
+ 00022972  0x00003b1c rshift  0x0000003f , 0x0000003f 
+ 00022973  0x00003b1d store  0x00000001 , 0x0000443d 
+ 00022974  0x00003b1e jam  0x0000000f , 0x00000b7d 
+ 00022975  0x00003b1f branch  0x00005620 
+ 00022976  0x00003b22 rtn 
+ 00022977  0x00003b25 rshift8  0x0000003f , 0x0000003f 
+ 00022978  0x00003b26 store  0x00000002 , 0x000044bc 
+ 00022979  0x00003b27 ifetch  0x00000002 , 0x00000006 
+ 00022980  0x00003b28 store  0x00000002 , 0x000044be 
+ 00022981  0x00003b29 ifetch  0x00000002 , 0x00000006 
+ 00022982  0x00003b2a store  0x00000002 , 0x000044c0 
+ 00022983  0x00003b2b jam  0x00000011 , 0x00000b7d 
+ 00022984  0x00003b2c branch  0x00005620 
+ 00022985  0x00003b2f rtn 
+ 00022986  0x00003b32 fetch  0x00000001 , 0x00000341 
+ 00022987  0x00003b33 increase  0xfffffff9 , 0x0000003f 
+ 00022988  0x00003b34 icopy  0x00000039 
+ 00022989  0x00003b35 fetcht  0x00000002 , 0x000003fa 
+ 00022990  0x00003b36 call  0x00005a88 
+ 00022991  0x00003b37 branch  0x000059d8 , 0x00000034 
+ 00022992  0x00003b38 ifetch  0x00000001 , 0x00000006 
+ 00022993  0x00003b39 isub  0x00000039 , 0x0000003e 
+ 00022994  0x00003b3a nbranch  0x000059d8 , 0x00000002 
+ 00022995  0x00003b3b copy  0x00000006 , 0x00000005 
+ 00022996  0x00003b3d arg  0x00000349 , 0x00000006 
+ 00022997  0x00003b3e call  0x00007e45 
+ 00022998  0x00003b3f jam  0x00000028 , 0x00000b7d 
+ 00022999  0x00003b40 call  0x00007c27 
+ 00023000  0x00003b42 jam  0x00000013 , 0x00000b7d 
+ 00023001  0x00003b43 branch  0x00005620 
+ 00023002  0x00003b46 fetch  0x00000001 , 0x000003e3 
+ 00023003  0x00003b47 rtn 
+ 00023004  0x00003b4a rtn 
+ 00023005  0x00003b4d rtn 
+ 00023006  0x00003b50 rtn 
+ 00023007  0x00003b53 rtn 
+ 00023008  0x00003b5c ifetch  0x00000005 , 0x00000006 
+ 00023009  0x00003b5d store  0x00000005 , 0x00000ff1 
+ 00023010  0x00003b5e jam  0x00000001 , 0x00000ff0 
+ 00023011  0x00003b60 call  0x00007cdb 
+ 00023012  0x00003b61 rtn 
+ 00023013  0x00003b63 copy  0x00000011 , 0x00000006 
+ 00023014  0x00003b64 ifetch  0x00000008 , 0x00000006 
+ 00023015  0x00003b65 store  0x00000008 , 0x00000ff1 
+ 00023016  0x00003b66 jam  0x00000002 , 0x00000ff0 
+ 00023017  0x00003b67 call  0x00007cdb 
+ 00023018  0x00003b68 rtn 
+ 00023019  0x00003b6b rtn 
+ 00023020  0x00003b6e rtn 
+ 00023021  0x00003b71 fetch  0x00000001 , 0x00000341 
+ 00023022  0x00003b72 increase  0xfffffff9 , 0x0000003f 
+ 00023023  0x00003b73 icopy  0x00000039 
+ 00023024  0x00003b74 fetcht  0x00000002 , 0x000003fa 
+ 00023025  0x00003b75 call  0x00005a88 
+ 00023026  0x00003b76 branch  0x000059fd , 0x00000034 
+ 00023027  0x00003b77 ifetch  0x00000001 , 0x00000006 
+ 00023028  0x00003b78 isub  0x00000039 , 0x0000003e 
+ 00023029  0x00003b79 nbranch  0x000059fd , 0x00000002 
+ 00023030  0x00003b7a copy  0x00000006 , 0x00000005 
+ 00023031  0x00003b7b copy  0x00000006 , 0x00000011 
+ 00023032  0x00003b7c copy  0x00000039 , 0x00000012 
+ 00023033  0x00003b7d arg  0x00000349 , 0x00000006 
+ 00023034  0x00003b7e call  0x00007e45 
+ 00023035  0x00003b7f jam  0x00000001 , 0x00000481 
+ 00023036  0x00003b80 call  0x000059fe 
+ 00023037  0x00003b82 rtn 
+ 00023038  0x00003b86 fetch  0x00000002 , 0x00004296 
+ 00023039  0x00003b87 rtn  0x00000034 
+ 00023040  0x00003b88 iforce  0x0000003d 
+ 00023041  0x00003b8c rtn 
+ 00023042  0x00003b8f fetcht  0x00000004 , 0x000003dc 
+ 00023043  0x00003b90 call  0x00003bde 
+ 00023044  0x00003b91 isub  0x00000002 , 0x0000000b 
+ 00023045  0x00003b92 deposit  0x0000000b 
+ 00023046  0x00003b93 fetcht  0x00000002 , 0x000003ef 
+ 00023047  0x00003b94 lshift4  0x00000002 , 0x00000002 
+ 00023048  0x00003b95 lshift  0x00000002 , 0x00000002 
+ 00023049  0x00003b96 isub  0x00000002 , 0x0000003f 
+ 00023050  0x00003b97 rtn 
+ 00023051  0x00003b9a call  0x00003bde 
+ 00023052  0x00003b9b store  0x00000004 , 0x000003dc 
+ 00023053  0x00003b9c rtn 
+ 00023054  0x00003ba1 set1  0x00000025 , 0x00000000 
+ 00023055  0x00003ba2 bpatch  0x00000070 , 0x0000402e 
+ 00023056  0x00003ba3 fetch  0x00000001 , 0x000043d8 
+ 00023057  0x00003ba4 rtn  0x00000034 
+ 00023058  0x00003ba5 arg  0x00000001 , 0x00000007 
+ 00023059  0x00003ba6 call  0x00007e53 
+ 00023060  0x00003ba7 nrtn  0x00000034 
+ 00023061  0x00003ba8 disable  0x00000029 
+ 00023062  0x00003ba9 enable  0x00000010 
+ 00023063  0x00003baa call  0x00005572 
+ 00023064  0x00003bab call  0x0000542c 
+ 00023065  0x00003bac call  0x000054de 
+ 00023066  0x00003bad nbranch  0x00005a24 , 0x0000002d 
+ 00023067  0x00003bae set1  0x00000025 , 0x00000000 
+ 00023068  0x00003baf bpatch  0x00000071 , 0x0000402e 
+ 00023069  0x00003bb0 fetch  0x00000001 , 0x00000003 
+ 00023070  0x00003bb1 increase  0x00000001 , 0x0000003f 
+ 00023071  0x00003bb2 store  0x00000001 , 0x00000003 
+ 00023072  0x00003bb3 fetch  0x00000001 , 0x00000340 
+ 00023073  0x00003bb4 and  0x0000003f , 0x0000000f , 0x0000003f 
+ 00023074  0x00003bb5 beq  0x00000003 , 0x00005519 
+ 00023075  0x00003bb6 beq  0x00000005 , 0x00005a41 
+ 00023076  0x00003bb8 nop  0x00002710 
+ 00023077  0x00003bb9 fetch  0x00000001 , 0x00000016 
+ 00023078  0x00003bba bne  0x00000027 , 0x00005a0e 
+ 00023079  0x00003bbb call  0x00005ad8 
+ 00023080  0x00003bbc arg  0x00000001 , 0x00000007 
+ 00023081  0x00003bbd fetch  0x00000002 , 0x000044d9 
+ 00023082  0x00003bbe branch  0x00007e4c 
+ 00023083  0x00003bc2 set1  0x00000025 , 0x00000000 
+ 00023084  0x00003bc3 bpatch  0x00000072 , 0x0000402e 
+ 00023085  0x00003bc4 fetch  0x00000001 , 0x000003f8 
+ 00023086  0x00003bc5 call  0x00005405 
+ 00023087  0x00003bc6 fetch  0x00000002 , 0x000003c2 
+ 00023088  0x00003bc7 imul32  0x00000002 , 0x0000003f 
+ 00023089  0x00003bc8 arg  0x00000177 , 0x00000002 
+ 00023090  0x00003bc9 imul32  0x00000002 , 0x0000003f 
+ 00023091  0x00003bca arg  0x000186a0 , 0x00000002 
+ 00023092  0x00003bcb idiv  0x00000002 
+ 00023093  0x00003bcc fetch  0x00000001 , 0x000003ec 
+ 00023094  0x00003bcd arg  0x00004e20 , 0x00000002 
+ 00023095  0x00003bce imul32  0x00000002 , 0x0000003f 
+ 00023096  0x00003bcf store  0x00000004 , 0x000046f9 
+ 00023097  0x00003bd0 set1  0x00000025 , 0x00000000 
+ 00023098  0x00003bd1 bpatch  0x00000073 , 0x0000402e 
+ 00023099  0x00003bd2 fetch  0x00000002 , 0x00004161 
+ 00023100  0x00003bd3 call  0x00007efd 
+ 00023101  0x00003bd4 quotient  0x00000002 
+ 00023102  0x00003bd5 iadd  0x00000002 , 0x0000003f 
+ 00023103  0x00003bd6 store  0x00000002 , 0x000003ce 
+ 00023104  0x00003bd7 rtn 
+ 00023105  0x00003bda set1  0x00000025 , 0x00000000 
+ 00023106  0x00003bdb bpatch  0x00000074 , 0x0000402e 
+ 00023107  0x00003bdc fetch  0x00000006 , 0x00000348 
+ 00023108  0x00003bdd fetcht  0x00000006 , 0x000044f9 
+ 00023109  0x00003bde isub  0x00000002 , 0x0000003e 
+ 00023110  0x00003bdf nrtn  0x00000005 
+ 00023111  0x00003be0 call  0x00005613 
+ 00023112  0x00003be1 copy  0x00000011 , 0x0000003f 
+ 00023113  0x00003be2 store  0x00000001 , 0x000044e6 
+ 00023114  0x00003be3 fetch  0x00000007 , 0x00000355 
+ 00023115  0x00003be4 store  0x00000007 , 0x00000103 
+ 00023116  0x00003be5 ifetch  0x00000008 , 0x00000006 
+ 00023117  0x00003be6 istore  0x00000008 , 0x00000005 
+ 00023118  0x00003be7 fetch  0x00000006 , 0x00000342 
+ 00023119  0x00003be8 store  0x00000006 , 0x000003d0 
+ 00023120  0x00003be9 set1  0x00000025 , 0x00000000 
+ 00023121  0x00003bea bpatch  0x00000075 , 0x0000402e 
+ 00023122  0x00003beb increase  0x00000006 , 0x00000006 
+ 00023123  0x00003bec ifetch  0x00000008 , 0x00000006 
+ 00023124  0x00003bed store  0x00000008 , 0x000003e5 
+ 00023125  0x00003bee ifetcht  0x00000002 , 0x00000006 
+ 00023126  0x00003bef lshift2  0x00000002 , 0x00000002 
+ 00023127  0x00003bf0 ifetch  0x00000002 , 0x00000006 
+ 00023128  0x00003bf1 lshift2  0x0000003f , 0x0000003f 
+ 00023129  0x00003bf2 store  0x00000002 , 0x000003c2 
+ 00023130  0x00003bf3 store  0x00000004 , 0x000003c4 
+ 00023131  0x00003bf4 isub  0x00000002 , 0x0000003f 
+ 00023132  0x00003bf5 add  0x0000003f , 0xfffffffe , 0x00000028 
+ 00023133  0x00003bf6 ifetch  0x00000009 , 0x00000006 
+ 00023134  0x00003bf7 store  0x00000009 , 0x000003ed 
+ 00023135  0x00003bf8 set1  0x00000025 , 0x00000000 
+ 00023136  0x00003bf9 bpatch  0x00000076 , 0x0000402e 
+ 00023137  0x00003bfa ifetch  0x00000001 , 0x00000006 
+ 00023138  0x00003bfb rshift4  0x0000003f , 0x00000002 
+ 00023139  0x00003bfc rshift  0x00000002 , 0x00000002 
+ 00023140  0x00003bfd storet  0x00000001 , 0x000003f8 
+ 00023141  0x00003bfe and_into  0x0000001f , 0x0000003f 
+ 00023142  0x00003bff store  0x00000001 , 0x000003d9 
+ 00023143  0x00003c00 call  0x00005a2b 
+ 00023144  0x00003c01 call  0x00005447 
+ 00023145  0x00003c02 call  0x0000536c 
+ 00023146  0x00003c03 call  0x000032d6 
+ 00023147  0x00003c04 nrtn  0x00000005 
+ 00023148  0x00003c05 set1  0x00000025 , 0x00000000 
+ 00023149  0x00003c06 bpatch  0x00000077 , 0x0000402e 
+ 00023150  0x00003c07 arg  0x00000000 , 0x00000002 
+ 00023151  0x00003c08 call  0x000048ea 
+ 00023152  0x00003c09 call  0x000039ac 
+ 00023153  0x00003c0a jam  0x00000014 , 0x00000b7d 
+ 00023154  0x00003c0b call  0x00007c27 
+ 00023155  0x00003c0d branch  0x000032bd 
+ 00023156  0x00003c11 set1  0x00000025 , 0x00000000 
+ 00023157  0x00003c12 bpatch  0x00000078 , 0x0000402f 
+ 00023158  0x00003c13 fetch  0x00000002 , 0x000044bc 
+ 00023159  0x00003c14 iforce  0x00000012 
+ 00023160  0x00003c15 fetch  0x00000002 , 0x000044be 
+ 00023161  0x00003c16 iforce  0x00000013 
+ 00023162  0x00003c17 arg  0x00004504 , 0x00000006 
+ 00023163  0x00003c18 enable  0x00000028 
+ 00023164  0x00003c19 rtn 
+ 00023165  0x00003c1d ifetch  0x00000002 , 0x00000006 
+ 00023166  0x00003c1e rtn  0x00000034 
+ 00023167  0x00003c1f isub  0x00000012 , 0x0000003e 
+ 00023168  0x00003c20 nrtn  0x00000002 
+ 00023169  0x00003c21 isub  0x00000013 , 0x0000003e 
+ 00023170  0x00003c22 rtn  0x00000005 
+ 00023171  0x00003c23 branch  0x00005a86 , 0x00000002 
+ 00023172  0x00003c24 force  0x00000001 , 0x0000003e 
+ 00023173  0x00003c25 rtn 
+ 00023174  0x00003c27 force  0x00000000 , 0x0000003f 
+ 00023175  0x00003c28 rtn 
+ 00023176  0x00003c2c arg  0x00004504 , 0x00000006 
+ 00023177  0x00003c2e ifetch  0x00000002 , 0x00000006 
+ 00023178  0x00003c2f rtn  0x00000034 
+ 00023179  0x00003c30 increase  0x00000002 , 0x00000006 
+ 00023180  0x00003c31 isub  0x00000002 , 0x0000003e 
+ 00023181  0x00003c32 rtn  0x00000005 
+ 00023182  0x00003c33 ifetch  0x00000001 , 0x00000006 
+ 00023183  0x00003c34 iadd  0x00000006 , 0x00000006 
+ 00023184  0x00003c35 branch  0x00005a89 
+ 00023185  0x00003c38 jam  0x00000002 , 0x000044c6 
+ 00023186  0x00003c39 setarg  0x00000001 
+ 00023187  0x00003c3a store  0x00000002 , 0x000044c7 
+ 00023188  0x00003c3b jam  0x00000025 , 0x000003e3 
+ 00023189  0x00003c3c jam  0x00000012 , 0x00000b7d 
+ 00023190  0x00003c3d branch  0x00005620 
+ 00023191  0x00003c40 rtn 
+ 00023192  0x00003c42 rtn 
+ 00023193  0x00003c44 set1  0x00000025 , 0x00000000 
+ 00023194  0x00003c45 bpatch  0x00000079 , 0x0000402f 
+ 00023195  0x00003c46 fetch  0x00000001 , 0x00004132 
+ 00023196  0x00003c47 rtnne  0x00000004 
+ 00023197  0x00003c48 fetch  0x00000001 , 0x000003e3 
+ 00023198  0x00003c49 beq  0x00000021 , 0x00005a91 
+ 00023199  0x00003c4a beq  0x00000025 , 0x00005a97 
+ 00023200  0x00003c4b beq  0x00000026 , 0x00005a98 
+ 00023201  0x00003c4c rtn 
+ 00023202  0x00003c4f setarg  0x00005aae 
+ 00023203  0x00003c50 store  0x00000002 , 0x0000428c 
+ 00023204  0x00003c51 hjam  0x00000081 , 0x00008062 
+ 00023205  0x00003c52 setarg  0x000001a0 
+ 00023206  0x00003c53 hstore  0x00000002 , 0x00008052 
+ 00023207  0x00003c54 hjam  0x00000001 , 0x00008043 
+ 00023208  0x00003c55 hjam  0x00000004 , 0x00008081 
+ 00023209  0x00003c56 setarg  0x00005ac6 
+ 00023210  0x00003c57 store  0x00000002 , 0x00004296 
+ 00023211  0x00003c58 call  0x00005347 
+ 00023212  0x00003c59 rtn  0x0000002b 
+ 00023213  0x00003c5a branch  0x0000691d 
+ 00023214  0x00003c5e fetch  0x00000001 , 0x000003c1 
+ 00023215  0x00003c5f compare  0x00000001 , 0x0000003f , 0x000000ff 
+ 00023216  0x00003c60 setarg  0x00000005 
+ 00023217  0x00003c61 call  0x00006a04 , 0x00000001 
+ 00023218  0x00003c62 ncall  0x000069ff , 0x00000001 
+ 00023219  0x00003c63 call  0x000068fd 
+ 00023220  0x00003c64 branch  0x00005abe , 0x00000034 
+ 00023221  0x00003c65 fetch  0x00000002 , 0x00000419 
+ 00023222  0x00003c66 iforce  0x00000005 
+ 00023223  0x00003c67 sub  0x00000039 , 0x00000014 , 0x0000003e 
+ 00023224  0x00003c68 branch  0x00005aba , 0x00000002 
+ 00023225  0x00003c69 force  0x00000014 , 0x00000039 
+ 00023226  0x00003c6b ifetch  0x00000001 , 0x00000003 
+ 00023227  0x00003c6c istore  0x00000001 , 0x00000005 
+ 00023228  0x00003c6d loop  0x00005aba 
+ 00023229  0x00003c6e call  0x00006906 
+ 00023230  0x00003c70 jam  0x00000014 , 0x000044c2 
+ 00023231  0x00003c71 fetcht  0x00000002 , 0x00000419 
+ 00023232  0x00003c72 ifetch  0x00000001 , 0x00000002 
+ 00023233  0x00003c73 rtn  0x00000034 
+ 00023234  0x00003c74 call  0x0000561c 
+ 00023235  0x00003c75 nrtn  0x00000034 
+ 00023236  0x00003c76 jam  0x0000001b , 0x00000b7d 
+ 00023237  0x00003c77 branch  0x00005620 
+ 00023238  0x00003c7a copy  0x00000012 , 0x00000002 
+ 00023239  0x00003c7b call  0x000068f7 
+ 00023240  0x00003c7c copy  0x00000011 , 0x00000006 
+ 00023241  0x00003c7d copy  0x00000012 , 0x00000039 
+ 00023242  0x00003c7f ifetch  0x00000001 , 0x00000006 
+ 00023243  0x00003c80 istore  0x00000001 , 0x0000000a 
+ 00023244  0x00003c81 loop  0x00005aca 
+ 00023245  0x00003c82 branch  0x000068fa 
+ 00023246  0x00003c85 fetch  0x00000001 , 0x00004132 
+ 00023247  0x00003c86 rtnne  0x00000006 
+ 00023248  0x00003c87 fetch  0x00000002 , 0x000044c2 
+ 00023249  0x00003c88 rtnne  0x00000014 
+ 00023250  0x00003c89 fetcht  0x00000002 , 0x00000419 
+ 00023251  0x00003c8a setarg  0x00000000 
+ 00023252  0x00003c8b istore  0x00000009 , 0x00000002 
+ 00023253  0x00003c8c istore  0x00000009 , 0x00000005 
+ 00023254  0x00003c8d istore  0x00000002 , 0x00000005 
+ 00023255  0x00003c8e rtn 
+ 00023256  0x00003c92 fetcht  0x00000001 , 0x000043d7 
+ 00023257  0x00003c93 setflip  0x00000007 , 0x00000002 
+ 00023258  0x00003c94 branch  0x000069f3 
+ 00023259  0x00003c98 set1  0x00000025 , 0x00000000 
+ 00023260  0x00003c99 bpatch  0x0000007a , 0x0000402f 
+ 00023261  0x00003c9a call  0x00005adf 
+ 00023262  0x00003c9b branch  0x00005aed 
+ 00023263  0x00003c9e fetch  0x00000001 , 0x00004419 
+ 00023264  0x00003c9f copy  0x0000003f , 0x00000039 
+ 00023265  0x00003ca0 arg  0x00002a00 , 0x00000002 
+ 00023266  0x00003ca1 call  0x00005b0c 
+ 00023267  0x00003ca2 increase  0x00000001 , 0x00000006 
+ 00023268  0x00003ca3 copy  0x00000006 , 0x00000005 
+ 00023269  0x00003ca4 arg  0x0000441a , 0x00000006 
+ 00023270  0x00003ca5 call  0x00007e45 
+ 00023271  0x00003ca6 fetch  0x00000001 , 0x00004419 
+ 00023272  0x00003ca7 sub  0x0000003f , 0x00000014 , 0x00000039 
+ 00023273  0x00003ca8 copy  0x00000039 , 0x00000002 
+ 00023274  0x00003ca9 copy  0x00000039 , 0x0000003f 
+ 00023275  0x00003caa ncall  0x00005b15 , 0x00000034 
+ 00023276  0x00003cab rtn 
+ 00023277  0x00003cae fetch  0x00000001 , 0x000043d9 
+ 00023278  0x00003caf fetcht  0x00000001 , 0x000043da 
+ 00023279  0x00003cb0 isub  0x00000002 , 0x0000003f 
+ 00023280  0x00003cb1 copy  0x0000003f , 0x00000039 
+ 00023281  0x00003cb2 copy  0x0000003f , 0x00000011 
+ 00023282  0x00003cb3 fetch  0x00000001 , 0x000043da 
+ 00023283  0x00003cb4 increase  0x00000001 , 0x0000003f 
+ 00023284  0x00003cb5 arg  0x000043da , 0x00000006 
+ 00023285  0x00003cb6 iadd  0x00000006 , 0x00000006 
+ 00023286  0x00003cb7 arg  0x0000041d , 0x00000005 
+ 00023287  0x00003cb8 call  0x00007e45 
+ 00023288  0x00003cb9 set1  0x00000025 , 0x00000000 
+ 00023289  0x00003cba bpatch  0x0000007b , 0x0000402f 
+ 00023290  0x00003cbb fetch  0x00000001 , 0x00004419 
+ 00023291  0x00003cbc copy  0x0000003f , 0x00000039 
+ 00023292  0x00003cbd increase  0x00000001 , 0x0000003f 
+ 00023293  0x00003cbe store  0x00000001 , 0x000043da 
+ 00023294  0x00003cbf arg  0x000043dc , 0x00000005 
+ 00023295  0x00003cc0 arg  0x0000441a , 0x00000006 
+ 00023296  0x00003cc1 call  0x00007e45 
+ 00023297  0x00003cc2 copy  0x00000011 , 0x00000039 
+ 00023298  0x00003cc3 arg  0x0000041d , 0x00000006 
+ 00023299  0x00003cc4 call  0x00007e45 
+ 00023300  0x00003cc5 fetch  0x00000001 , 0x000043da 
+ 00023301  0x00003cc6 iadd  0x00000011 , 0x0000003f 
+ 00023302  0x00003cc7 store  0x00000001 , 0x000043d9 
+ 00023303  0x00003cc8 rtn 
+ 00023304  0x00003ccc set1  0x00000025 , 0x00000000 
+ 00023305  0x00003ccd bpatch  0x0000007c , 0x0000402f 
+ 00023306  0x00003cce arg  0x00002a00 , 0x00000002 
+ 00023307  0x00003ccf branch  0x00005b0c 
+ 00023308  0x00003cd3 arg  0x00004504 , 0x00000006 
+ 00023309  0x00003cd5 ifetch  0x00000002 , 0x00000006 
+ 00023310  0x00003cd6 branch  0x00003bf1 , 0x00000034 
+ 00023311  0x00003cd7 ifetch  0x00000002 , 0x00000006 
+ 00023312  0x00003cd8 isub  0x00000002 , 0x0000003e 
+ 00023313  0x00003cd9 rtn  0x00000005 
+ 00023314  0x00003cda ifetch  0x00000001 , 0x00000006 
+ 00023315  0x00003cdb iadd  0x00000006 , 0x00000006 
+ 00023316  0x00003cdc branch  0x00005b0d 
+ 00023317  0x00003ce0 setarg  0x00000020 
+ 00023318  0x00003ce1 istore  0x00000001 , 0x00000005 
+ 00023319  0x00003ce2 loop  0x00005b15 
+ 00023320  0x00003ce3 rtn 
+ 00023321  0x00003ce7 set1  0x00000025 , 0x00000000 
+ 00023322  0x00003ce8 bpatch  0x0000007d , 0x0000402f 
+ 00023323  0x00003ce9 disable  0x0000002b 
+ 00023324  0x00003cea branch  0x00005b1e , 0x0000002e 
+ 00023325  0x00003ceb nbranch  0x00005b2a , 0x0000002d 
+ 00023326  0x00003ced call  0x00003d76 
+ 00023327  0x00003cee fetch  0x00000002 , 0x00004161 
+ 00023328  0x00003cef store  0x00000002 , 0x000003ce 
+ 00023329  0x00003cf0 fetch  0x00000001 , 0x00000340 
+ 00023330  0x00003cf1 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00023331  0x00003cf2 nbranch  0x00003d8a , 0x00000001 
+ 00023332  0x00003cf3 fetch  0x00000001 , 0x0000443e 
+ 00023333  0x00003cf4 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00023334  0x00003cf5 nbranch  0x00003d8a , 0x00000001 
+ 00023335  0x00003cf6 fetch  0x00000001 , 0x000003c0 
+ 00023336  0x00003cf7 bbit1  0x00000005 , 0x00003d8a 
+ 00023337  0x00003cf8 branch  0x00003d6f 
+ 00023338  0x00003cfb fetcht  0x00000002 , 0x00004161 
+ 00023339  0x00003cfc rshift  0x00000002 , 0x00000002 
+ 00023340  0x00003cfd fetch  0x00000002 , 0x000003ce 
+ 00023341  0x00003cfe iadd  0x00000002 , 0x0000003f 
+ 00023342  0x00003cff store  0x00000002 , 0x000003ce 
+ 00023343  0x00003d00 branch  0x00003d82 
+ 00023344  0x00003d03 set1  0x00000025 , 0x00000000 
+ 00023345  0x00003d04 bpatch  0x0000007e , 0x0000402f 
+ 00023346  0x00003d05 jam  0x00000000 , 0x000046f8 
+ 00023347  0x00003d06 fetcht  0x00000002 , 0x000044c2 
+ 00023348  0x00003d07 call  0x00005866 
+ 00023349  0x00003d08 copy  0x00000011 , 0x00000005 
+ 00023350  0x00003d09 setarg  0x00000000 
+ 00023351  0x00003d0a istore  0x00000001 , 0x00000005 
+ 00023352  0x00003d0b rtn 
+ 00023353  0x00003d0d fetch  0x00000001 , 0x00004132 
+ 00023354  0x00003d0e rtnne  0x0000000a 
+ 00023355  0x00003d0f call  0x00007f6e 
+ 00023356  0x00003d10 arg  0x000003d0 , 0x00000011 
+ 00023357  0x00003d11 call  0x00007e9d 
+ 00023358  0x00003d12 setarg  0x0000002c 
+ 00023359  0x00003d13 istore  0x00000001 , 0x0000000a 
+ 00023360  0x00003d14 call  0x000041d4 
+ 00023361  0x00003d15 branch  0x000068fa 
+ 00023362  0x00003d19 arg  0x00000014 , 0x00000002 
+ 00023363  0x00003d1a call  0x00005866 
+ 00023364  0x00003d1b rtnbit0  0x00000000 
+ 00023365  0x00003d1c call  0x0000561c 
+ 00023366  0x00003d1d nrtn  0x00000034 
+ 00023367  0x00003d1e arg  0x00000014 , 0x00000002 
+ 00023368  0x00003d1f storet  0x00000002 , 0x000044c2 
+ 00023369  0x00003d20 call  0x00005a88 
+ 00023370  0x00003d21 branch  0x00003bf1 , 0x00000034 
+ 00023371  0x00003d22 add  0x00000006 , 0x00000001 , 0x00000005 
+ 00023372  0x00003d23 arg  0x00000014 , 0x00000039 
+ 00023373  0x00003d24 arg  0x0000046d , 0x00000006 
+ 00023374  0x00003d25 call  0x00007e45 
+ 00023375  0x00003d26 jam  0x0000001b , 0x00000b7d 
+ 00023376  0x00003d27 branch  0x00005620 
+ 00023377  0x00003d29 rtn 
+ 00023378  0x00003d2d set1  0x00000025 , 0x00000000 
+ 00023379  0x00003d2e bpatch  0x0000007f , 0x0000402f 
+ 00023380  0x00003d2f fetch  0x00000001 , 0x00000341 
+ 00023381  0x00003d30 arg  0x00000348 , 0x00000006 
+ 00023382  0x00003d31 iadd  0x00000006 , 0x00000039 
+ 00023383  0x00003d33 ifetcht  0x00000001 , 0x00000006 
+ 00023384  0x00003d34 ifetch  0x00000001 , 0x00000006 
+ 00023385  0x00003d35 isub  0x00000011 , 0x0000003e 
+ 00023386  0x00003d36 rtn  0x00000005 
+ 00023387  0x00003d37 add  0x00000002 , 0xffffffff , 0x0000003f 
+ 00023388  0x00003d38 iadd  0x00000006 , 0x00000006 
+ 00023389  0x00003d39 deposit  0x00000039 
+ 00023390  0x00003d3a isub  0x00000006 , 0x0000003e 
+ 00023391  0x00003d3b branch  0x00005b57 , 0x00000002 
+ 00023392  0x00003d3c force  0x00000001 , 0x0000003e 
+ 00023393  0x00003d3d rtn 
+ 00023394  0x00003d45 rtn  0x0000002b 
+ 00023395  0x00003d47 setarg  0x00000000 
+ 00023396  0x00003d48 store  0x00000001 , 0x00000048 
+ 00023397  0x00003d49 store  0x00000001 , 0x00000055 
+ 00023398  0x00003d4a store  0x00000001 , 0x00000078 
+ 00023399  0x00003d4b store  0x00000001 , 0x0000007c 
+ 00023400  0x00003d4c store  0x00000001 , 0x000041f9 
+ 00023401  0x00003d4d store  0x00000001 , 0x00000453 
+ 00023402  0x00003d4e store  0x00000001 , 0x00000177 
+ 00023403  0x00003d4f store  0x00000001 , 0x000007e1 
+ 00023404  0x00003d50 jam  0x00000000 , 0x00004748 
+ 00023405  0x00003d51 jam  0x00000000 , 0x00000258 
+ 00023406  0x00003d52 jam  0x00000000 , 0x00000454 
+ 00023407  0x00003d54 set1  0x00000025 , 0x00000000 
+ 00023408  0x00003d55 bpatch  0x000000e0 , 0x0000403c 
+ 00023409  0x00003d56 jam  0x00000000 , 0x000007e1 
+ 00023410  0x00003d57 jam  0x00000000 , 0x000007e0 
+ 00023411  0x00003d58 jam  0x00000000 , 0x0000044d 
+ 00023412  0x00003d59 fetch  0x00000001 , 0x00004132 
+ 00023413  0x00003d5a rtnne  0x00000001 , 0x0000003f 
+ 00023414  0x00003d5b jam  0x00000000 , 0x0000425e 
+ 00023415  0x00003d5e rtn 
+ 00023416  0x00003d61 set1  0x00000025 , 0x00000000 
+ 00023417  0x00003d62 bpatch  0x000000e1 , 0x0000403c 
+ 00023418  0x00003d63 call  0x00006219 , 0x00000029 
+ 00023419  0x00003d64 ncall  0x0000621d , 0x00000029 
+ 00023420  0x00003d65 fetch  0x00000001 , 0x0000007c 
+ 00023421  0x00003d66 ncall  0x000061d9 , 0x00000034 
+ 00023422  0x00003d67 fetch  0x00000001 , 0x0000007c 
+ 00023423  0x00003d68 nrtn  0x00000034 
+ 00023424  0x00003d69 fetch  0x00000001 , 0x0000004c 
+ 00023425  0x00003d6a rtnbit0  0x00000006 
+ 00023426  0x00003d6b set0  0x00000006 , 0x0000003f 
+ 00023427  0x00003d6c set0  0x00000001 , 0x00000000 
+ 00023428  0x00003d6d store  0x00000001 , 0x0000004c 
+ 00023429  0x00003d6e fetch  0x00000001 , 0x000004de 
+ 00023430  0x00003d6f fetcht  0x00000001 , 0x0000004c 
+ 00023431  0x00003d70 isolate1  0x00000000 , 0x0000003f 
+ 00023432  0x00003d71 setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00023433  0x00003d72 storet  0x00000001 , 0x0000004c 
+ 00023434  0x00003d73 and_into  0x00000002 , 0x00000002 
+ 00023435  0x00003d74 storet  0x00000001 , 0x0000007f 
+ 00023436  0x00003d75 fetcht  0x00000001 , 0x0000004c 
+ 00023437  0x00003d76 rshift  0x0000003f , 0x0000003f 
+ 00023438  0x00003d77 store  0x00000001 , 0x0000007d 
+ 00023439  0x00003d78 set1  0x00000025 , 0x00000000 
+ 00023440  0x00003d79 bpatch  0x000000e2 , 0x0000403c 
+ 00023441  0x00003d7a fetch  0x00000001 , 0x0000007d 
+ 00023442  0x00003d7b beq  0x0000007f , 0x00005bdc 
+ 00023443  0x00003d7c beq  0x00000003 , 0x00005c56 
+ 00023444  0x00003d7d beq  0x00000004 , 0x00005c67 
+ 00023445  0x00003d7e beq  0x0000003c , 0x00005bcf 
+ 00023446  0x00003d7f beq  0x00000005 , 0x00005bcb 
+ 00023447  0x00003d80 beq  0x0000000f , 0x00005e48 
+ 00023448  0x00003d81 beq  0x00000010 , 0x00005ce1 
+ 00023449  0x00003d82 beq  0x00000023 , 0x00005cff 
+ 00023450  0x00003d83 beq  0x00000039 , 0x00005e67 
+ 00023451  0x00003d84 beq  0x00000038 , 0x00005e62 
+ 00023452  0x00003d85 beq  0x00000031 , 0x00005ce4 
+ 00023453  0x00003d86 beq  0x00000037 , 0x00005d72 
+ 00023454  0x00003d87 beq  0x00000027 , 0x00005d6e 
+ 00023455  0x00003d88 beq  0x00000033 , 0x00005d68 
+ 00023456  0x00003d89 beq  0x00000025 , 0x00005d70 
+ 00023457  0x00003d8a beq  0x00000026 , 0x00005cfb 
+ 00023458  0x00003d8b beq  0x00000007 , 0x00005cf3 
+ 00023459  0x00003d8c beq  0x0000002d , 0x00005cea 
+ 00023460  0x00003d8d beq  0x0000002e , 0x00005ceb 
+ 00023461  0x00003d8e beq  0x00000001 , 0x00005d64 
+ 00023462  0x00003d8f beq  0x00000002 , 0x00005d4f 
+ 00023463  0x00003d90 beq  0x00000028 , 0x00005e53 
+ 00023464  0x00003d91 beq  0x00000009 , 0x00005d45 
+ 00023465  0x00003d92 beq  0x0000000b , 0x00005d1a 
+ 00023466  0x00003d93 beq  0x00000008 , 0x00005d00 
+ 00023467  0x00003d94 beq  0x0000000c , 0x00005d2c 
+ 00023468  0x00003d95 beq  0x0000001f , 0x00005cf7 
+ 00023469  0x00003d96 beq  0x00000020 , 0x00005cf9 
+ 00023470  0x00003d97 beq  0x00000021 , 0x00005d8d 
+ 00023471  0x00003d98 beq  0x00000022 , 0x00005d8e 
+ 00023472  0x00003d99 beq  0x00000035 , 0x00005d8f 
+ 00023473  0x00003d9a beq  0x00000036 , 0x00005d90 
+ 00023474  0x00003d9b beq  0x00000024 , 0x00005d91 
+ 00023475  0x00003d9c beq  0x0000002c , 0x00005d92 
+ 00023476  0x00003d9d beq  0x0000002b , 0x00005d95 
+ 00023477  0x00003d9e beq  0x00000034 , 0x00005d9f 
+ 00023478  0x00003d9f beq  0x00000017 , 0x00005da2 
+ 00023479  0x00003da0 beq  0x00000011 , 0x00005db7 
+ 00023480  0x00003da1 beq  0x00000012 , 0x00005dbb 
+ 00023481  0x00003da2 beq  0x00000013 , 0x00005dbd 
+ 00023482  0x00003da3 beq  0x0000000d , 0x00005dcf 
+ 00023483  0x00003da4 beq  0x0000000e , 0x00005dd0 
+ 00023484  0x00003da5 beq  0x0000002f , 0x00005d6c 
+ 00023485  0x00003da6 beq  0x00000030 , 0x00005dd1 
+ 00023486  0x00003da7 beq  0x0000000a , 0x00005dd2 
+ 00023487  0x00003da8 beq  0x00000018 , 0x00005dd3 
+ 00023488  0x00003da9 beq  0x00000032 , 0x00005dda 
+ 00023489  0x00003daa beq  0x0000003d , 0x00005ddb 
+ 00023490  0x00003dab beq  0x0000003e , 0x00005dff 
+ 00023491  0x00003dac beq  0x0000003f , 0x00005df9 
+ 00023492  0x00003dad beq  0x00000040 , 0x00005e22 
+ 00023493  0x00003dae beq  0x00000041 , 0x00005e34 
+ 00023494  0x00003daf beq  0x00000006 , 0x00005e47 
+ 00023495  0x00003db0 beq  0x0000003a , 0x00005bcd 
+ 00023496  0x00003db4 jam  0x00000019 , 0x0000007e 
+ 00023497  0x00003db6 jam  0x00000004 , 0x0000007c 
+ 00023498  0x00003db7 rtn 
+ 00023499  0x00003dba jam  0x00000006 , 0x0000007c 
+ 00023500  0x00003dbb rtn 
+ 00023501  0x00003dbe jam  0x0000003b , 0x0000007c 
+ 00023502  0x00003dbf rtn 
+ 00023503  0x00003dc2 fetch  0x00000004 , 0x000004df 
+ 00023504  0x00003dc3 lshift  0x0000003f , 0x0000003f 
+ 00023505  0x00003dc4 store  0x00000004 , 0x00004173 
+ 00023506  0x00003dc5 fetch  0x00000001 , 0x000004e3 
+ 00023507  0x00003dc6 store  0x00000001 , 0x0000417a 
+ 00023508  0x00003dc7 fetch  0x00000005 , 0x000004e4 
+ 00023509  0x00003dc8 store  0x00000005 , 0x00004188 
+ 00023510  0x00003dc9 fetch  0x00000005 , 0x000004e9 
+ 00023511  0x00003dca istore  0x00000005 , 0x00000005 
+ 00023512  0x00003dcb fetch  0x00000001 , 0x00000031 
+ 00023513  0x00003dcc set1  0x00000003 , 0x0000003f 
+ 00023514  0x00003dcd store  0x00000001 , 0x00000031 
+ 00023515  0x00003dce rtn 
+ 00023516  0x00003dd0 fetch  0x00000001 , 0x000004df 
+ 00023517  0x00003dd1 set1  0x00000007 , 0x0000003f 
+ 00023518  0x00003dd2 store  0x00000001 , 0x0000007d 
+ 00023519  0x00003dd3 beq  0x00000081 , 0x00005c26 
+ 00023520  0x00003dd4 beq  0x00000082 , 0x00005c2e 
+ 00023521  0x00003dd5 beq  0x00000095 , 0x00005d73 
+ 00023522  0x00003dd6 beq  0x00000096 , 0x00005d8c 
+ 00023523  0x00003dd7 beq  0x0000008b , 0x00005d81 
+ 00023524  0x00003dd8 beq  0x00000083 , 0x00005c49 
+ 00023525  0x00003dd9 beq  0x00000084 , 0x00005c4b 
+ 00023526  0x00003dda beq  0x00000090 , 0x00005bf1 
+ 00023527  0x00003ddb beq  0x00000097 , 0x00005c42 
+ 00023528  0x00003ddc beq  0x00000098 , 0x00005c47 
+ 00023529  0x00003ddd beq  0x00000099 , 0x00005c14 
+ 00023530  0x00003dde beq  0x0000009a , 0x00005c19 
+ 00023531  0x00003ddf beq  0x0000008d , 0x00005c11 
+ 00023532  0x00003de0 beq  0x0000008c , 0x00005bf4 
+ 00023533  0x00003de1 rtneq  0x00000084 
+ 00023534  0x00003de5 jam  0x00000082 , 0x0000007c 
+ 00023535  0x00003de6 jam  0x00000019 , 0x0000007e 
+ 00023536  0x00003de8 rtn 
+ 00023537  0x00003dea jam  0x00000082 , 0x0000007c 
+ 00023538  0x00003deb jam  0x0000002e , 0x0000007e 
+ 00023539  0x00003dec rtn 
+ 00023540  0x00003def fetch  0x00000001 , 0x000004e0 
+ 00023541  0x00003df0 store  0x00000001 , 0x000000ad 
+ 00023542  0x00003df1 fetch  0x00000001 , 0x000004e1 
+ 00023543  0x00003df2 store  0x00000001 , 0x000041f9 
+ 00023544  0x00003df3 fetch  0x00000001 , 0x000004e3 
+ 00023545  0x00003df4 store  0x00000001 , 0x000000af 
+ 00023546  0x00003df5 fetch  0x00000001 , 0x000004e7 
+ 00023547  0x00003df6 store  0x00000001 , 0x000000b0 
+ 00023548  0x00003df7 fetch  0x00000001 , 0x000004ec 
+ 00023549  0x00003df8 store  0x00000001 , 0x000000ab 
+ 00023550  0x00003df9 bmark1  0x00000007 , 0x00005c07 
+ 00023551  0x00003dfa set1  0x00000007 , 0x00000000 
+ 00023552  0x00003dfb call  0x00005d16 
+ 00023553  0x00003dfc store  0x00000001 , 0x00000452 
+ 00023554  0x00003dfd force  0x00000000 , 0x00000002 
+ 00023555  0x00003dfe branch  0x00004839 
+ 00023556  0x00003e01 jam  0x0000008c , 0x0000007c 
+ 00023557  0x00003e02 jam  0x00000001 , 0x000000b1 
+ 00023558  0x00003e03 branch  0x000049bc 
+ 00023559  0x00003e06 fetch  0x00000001 , 0x000000b0 
+ 00023560  0x00003e07 bne  0x00000007 , 0x00005c0b 
+ 00023561  0x00003e08 jam  0x00000081 , 0x0000007c 
+ 00023562  0x00003e09 branch  0x00005c0f 
+ 00023563  0x00003e0b set0  0x00000007 , 0x00000000 
+ 00023564  0x00003e0c jam  0x00000082 , 0x0000007c 
+ 00023565  0x00003e0d force  0x00000001 , 0x00000002 
+ 00023566  0x00003e0e call  0x00004914 
+ 00023567  0x00003e10 jam  0x0000008c , 0x0000007d 
+ 00023568  0x00003e11 rtn 
+ 00023569  0x00003e15 jam  0x00000081 , 0x0000007c 
+ 00023570  0x00003e16 jam  0x0000008d , 0x0000007d 
+ 00023571  0x00003e17 branch  0x00003869 
+ 00023572  0x00003e1a call  0x00005c1d 
+ 00023573  0x00003e1b fetch  0x00000001 , 0x00004132 
+ 00023574  0x00003e1c beq  0x00000001 , 0x00005c21 
+ 00023575  0x00003e1d jam  0x0000009a , 0x0000007c 
+ 00023576  0x00003e1e rtn 
+ 00023577  0x00003e21 call  0x00005c1d 
+ 00023578  0x00003e22 fetch  0x00000001 , 0x00004132 
+ 00023579  0x00003e23 beq  0x00000001 , 0x00005c21 
+ 00023580  0x00003e24 branch  0x00005c22 
+ 00023581  0x00003e27 arg  0x000007e9 , 0x00000005 
+ 00023582  0x00003e28 fetch  0x00000003 , 0x000004e0 
+ 00023583  0x00003e29 istore  0x00000003 , 0x00000005 
+ 00023584  0x00003e2a rtn 
+ 00023585  0x00003e2d call  0x0000480f 
+ 00023586  0x00003e2f call  0x00006216 
+ 00023587  0x00003e30 ncall  0x0000481b , 0x00000001 
+ 00023588  0x00003e31 branch  0x0000780f , 0x00000001 
+ 00023589  0x00003e32 rtn 
+ 00023590  0x00003e34 fetch  0x00000001 , 0x000004e1 
+ 00023591  0x00003e35 set1  0x00000007 , 0x0000003f 
+ 00023592  0x00003e36 store  0x00000001 , 0x00000445 
+ 00023593  0x00003e37 beq  0x0000008b , 0x00005c36 
+ 00023594  0x00003e38 beq  0x0000008c , 0x0000384a 
+ 00023595  0x00003e39 beq  0x0000008d , 0x00005c2d 
+ 00023596  0x00003e3a rtn 
+ 00023597  0x00003e3d branch  0x00003869 
+ 00023598  0x00003e40 fetch  0x00000001 , 0x000004e1 
+ 00023599  0x00003e41 set1  0x00000007 , 0x0000003f 
+ 00023600  0x00003e42 store  0x00000001 , 0x00000445 
+ 00023601  0x00003e43 beq  0x0000008b , 0x00005c3a 
+ 00023602  0x00003e44 beq  0x0000008c , 0x00005c34 
+ 00023603  0x00003e45 rtn 
+ 00023604  0x00003e48 set0  0x00000007 , 0x00000000 
+ 00023605  0x00003e49 rtn 
+ 00023606  0x00003e4c fetch  0x00000001 , 0x000041fb 
+ 00023607  0x00003e4d fetcht  0x00000001 , 0x0000004c 
+ 00023608  0x00003e4e nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00023609  0x00003e4f storet  0x00000001 , 0x0000004c 
+ 00023610  0x00003e51 fetch  0x00000001 , 0x00000030 
+ 00023611  0x00003e52 rtnbit0  0x00000005 
+ 00023612  0x00003e53 set0  0x00000005 , 0x0000003f 
+ 00023613  0x00003e54 store  0x00000001 , 0x00000030 
+ 00023614  0x00003e55 fetch  0x00000001 , 0x00000453 
+ 00023615  0x00003e56 nbranch  0x00004872 , 0x00000034 
+ 00023616  0x00003e57 jam  0x00000031 , 0x0000007c 
+ 00023617  0x00003e58 rtn 
+ 00023618  0x00003e5b nbranch  0x00005c45 , 0x00000029 
+ 00023619  0x00003e5c jam  0x00000012 , 0x0000007c 
+ 00023620  0x00003e5d branch  0x00006205 
+ 00023621  0x00003e60 jam  0x00000097 , 0x0000007c 
+ 00023622  0x00003e61 rtn 
+ 00023623  0x00003e66 call  0x00006205 
+ 00023624  0x00003e67 branch  0x00005ecd 
+ 00023625  0x00003e6a jam  0x00000084 , 0x0000007c 
+ 00023626  0x00003e6b rtn 
+ 00023627  0x00003e6e fetcht  0x00000001 , 0x000004e2 
+ 00023628  0x00003e6f and  0x00000002 , 0x00000001 , 0x00000002 
+ 00023629  0x00003e70 storet  0x00000001 , 0x0000044c 
+ 00023630  0x00003e71 fetch  0x00000001 , 0x00004272 
+ 00023631  0x00003e72 bne  0x00000051 , 0x00005c52 
+ 00023632  0x00003e73 jam  0x00000000 , 0x00004272 
+ 00023633  0x00003e74 call  0x000047f9 
+ 00023634  0x00003e76 fetch  0x00000001 , 0x00000055 
+ 00023635  0x00003e77 rtnne  0x00000015 
+ 00023636  0x00003e78 jam  0x00000004 , 0x00000055 
+ 00023637  0x00003e79 branch  0x00006235 
+ 00023638  0x00003e7c fetch  0x00000001 , 0x000004df 
+ 00023639  0x00003e7d store  0x00000001 , 0x00000445 
+ 00023640  0x00003e7e beq  0x00000033 , 0x00005c7d 
+ 00023641  0x00003e7f beq  0x00000008 , 0x00005c90 
+ 00023642  0x00003e80 beq  0x0000000f , 0x00005c97 
+ 00023643  0x00003e81 beq  0x00000010 , 0x00005c9d 
+ 00023644  0x00003e82 beq  0x00000011 , 0x00005c9e 
+ 00023645  0x00003e83 beq  0x00000012 , 0x00005ca6 
+ 00023646  0x00003e84 beq  0x00000018 , 0x00005ccc 
+ 00023647  0x00003e85 beq  0x00000017 , 0x00005cd1 
+ 00023648  0x00003e86 beq  0x0000002b , 0x0000384a 
+ 00023649  0x00003e88 beq  0x00000013 , 0x00005c74 
+ 00023650  0x00003e8a beq  0x0000003d , 0x00005de9 
+ 00023651  0x00003e8b beq  0x0000003e , 0x00005e18 
+ 00023652  0x00003e8c beq  0x00000040 , 0x00005deb 
+ 00023653  0x00003e8d beq  0x00000041 , 0x00005def 
+ 00023654  0x00003e8e rtn 
+ 00023655  0x00003e91 fetch  0x00000001 , 0x000004df 
+ 00023656  0x00003e92 store  0x00000001 , 0x00000445 
+ 00023657  0x00003e93 beq  0x00000001 , 0x00005cc3 
+ 00023658  0x00003e94 beq  0x00000033 , 0x00005c87 
+ 00023659  0x00003e95 beq  0x0000000b , 0x00005ca7 
+ 00023660  0x00003e96 beq  0x0000002b , 0x00005c8e 
+ 00023661  0x00003e97 beq  0x00000008 , 0x00005cba 
+ 00023662  0x00003e98 beq  0x00000013 , 0x00005c77 
+ 00023663  0x00003e9a beq  0x00000040 , 0x00005cc4 
+ 00023664  0x00003e9b beq  0x00000041 , 0x00005cc7 
+ 00023665  0x00003e9c beq  0x00000018 , 0x00005cca 
+ 00023666  0x00003e9d beq  0x00000017 , 0x00005cdf 
+ 00023667  0x00003e9e rtn 
+ 00023668  0x00003ea1 jam  0x00000020 , 0x00000b7d 
+ 00023669  0x00003ea2 call  0x00007c27 
+ 00023670  0x00003ea3 branch  0x00003245 
+ 00023671  0x00003ea5 jam  0x00000019 , 0x00000b7d 
+ 00023672  0x00003ea6 call  0x00007c27 
+ 00023673  0x00003ea7 jam  0x00000002 , 0x00004748 
+ 00023674  0x00003ea8 setarg  0x00000050 
+ 00023675  0x00003ea9 arg  0x0000000a , 0x00000007 
+ 00023676  0x00003eaa branch  0x00007e4c 
+ 00023677  0x00003eb0 fetch  0x00000001 , 0x0000044d 
+ 00023678  0x00003eb1 set1  0x00000000 , 0x0000003f 
+ 00023679  0x00003eb2 store  0x00000001 , 0x0000044d 
+ 00023680  0x00003eb3 jam  0x00000001 , 0x00000b7d 
+ 00023681  0x00003eb4 call  0x00007c27 
+ 00023682  0x00003eb5 jam  0x0000008b , 0x0000007c 
+ 00023683  0x00003eb9 fetch  0x00000001 , 0x00000055 
+ 00023684  0x00003eba bne  0x00000005 , 0x00005b77 
+ 00023685  0x00003ebd jam  0x00000006 , 0x00000055 
+ 00023686  0x00003ebe rtn 
+ 00023687  0x00003ec7 jam  0x0000000b , 0x00000446 
+ 00023688  0x00003ec8 jam  0x00000007 , 0x0000007c 
+ 00023689  0x00003ec9 force  0x00000010 , 0x00000002 
+ 00023690  0x00003eca call  0x00004826 
+ 00023691  0x00003ecc jam  0x00000000 , 0x00000055 
+ 00023692  0x00003ece branch  0x00005b77 , 0x00000001 
+ 00023693  0x00003ecf rtn 
+ 00023694  0x00003ed2 jam  0x0000002b , 0x0000007c 
+ 00023695  0x00003ed3 rtn 
+ 00023696  0x00003ed7 fetch  0x00000001 , 0x0000425e 
+ 00023697  0x00003ed8 nrtn  0x00000034 
+ 00023698  0x00003ed9 call  0x00003507 
+ 00023699  0x00003eda call  0x00005ecb 
+ 00023700  0x00003edb rtn  0x00000029 
+ 00023701  0x00003edc set1  0x00000021 , 0x00000000 
+ 00023702  0x00003edd rtn 
+ 00023703  0x00003ee0 nrtn  0x00000029 
+ 00023704  0x00003ee1 jam  0x00000010 , 0x0000007c 
+ 00023705  0x00003ee2 fetch  0x00000001 , 0x0000004c 
+ 00023706  0x00003ee3 rtnbit0  0x00000002 
+ 00023707  0x00003ee4 jam  0x00000012 , 0x0000007c 
+ 00023708  0x00003ee5 rtn 
+ 00023709  0x00003ee8 branch  0x00005ecd 
+ 00023710  0x00003eeb call  0x00005f2d 
+ 00023711  0x00003eec fetch  0x00000001 , 0x00000030 
+ 00023712  0x00003eed rtnbit1  0x00000004 
+ 00023713  0x00003eee jam  0x00000031 , 0x0000007c 
+ 00023714  0x00003eef fetch  0x00000001 , 0x00000055 
+ 00023715  0x00003ef0 rtnne  0x0000000a 
+ 00023716  0x00003ef1 jam  0x0000000b , 0x00000055 
+ 00023717  0x00003ef2 rtn 
+ 00023718  0x00003efc rtn 
+ 00023719  0x00003eff fetch  0x00000001 , 0x00004132 
+ 00023720  0x00003f00 bne  0x00000001 , 0x00005cb7 
+ 00023721  0x00003f01 fetch  0x00000001 , 0x0000425e 
+ 00023722  0x00003f02 rtn  0x00000034 
+ 00023723  0x00003f03 fetcht  0x00000001 , 0x00000055 
+ 00023724  0x00003f04 jam  0x00000000 , 0x00000055 
+ 00023725  0x00003f05 jam  0x00000000 , 0x0000425e 
+ 00023726  0x00003f06 fetch  0x00000001 , 0x000004e0 
+ 00023727  0x00003f07 rtnne  0x00000006 
+ 00023728  0x00003f08 storet  0x00000001 , 0x00000055 
+ 00023729  0x00003f09 jam  0x00000001 , 0x000007e0 
+ 00023730  0x00003f0a fetch  0x00000002 , 0x0000044a 
+ 00023731  0x00003f0b fetcht  0x00000001 , 0x0000044c 
+ 00023732  0x00003f0c iand  0x00000002 , 0x0000003f 
+ 00023733  0x00003f0d branch  0x000049da , 0x00000034 
+ 00023734  0x00003f0e branch  0x000049d7 
+ 00023735  0x00003f11 jam  0x00000007 , 0x0000007c 
+ 00023736  0x00003f12 jam  0x00000013 , 0x00000446 
+ 00023737  0x00003f13 rtn 
+ 00023738  0x00003f16 fetch  0x00000001 , 0x000004e0 
+ 00023739  0x00003f17 beq  0x00000006 , 0x00005cc0 
+ 00023740  0x00003f18 rtnne  0x00000018 
+ 00023741  0x00003f19 jam  0x00000018 , 0x00000446 
+ 00023742  0x00003f1a jam  0x00000007 , 0x0000007c 
+ 00023743  0x00003f1b rtn 
+ 00023744  0x00003f1d jam  0x00000006 , 0x00000446 
+ 00023745  0x00003f1e jam  0x00000007 , 0x0000007c 
+ 00023746  0x00003f1f rtn 
+ 00023747  0x00003f22 rtn 
+ 00023748  0x00003f25 jam  0x00000000 , 0x000007da 
+ 00023749  0x00003f26 jam  0x00000007 , 0x0000007c 
+ 00023750  0x00003f27 branch  0x00005b77 
+ 00023751  0x00003f2a jam  0x00000000 , 0x000007da 
+ 00023752  0x00003f2b jam  0x00000007 , 0x0000007c 
+ 00023753  0x00003f2c branch  0x00005b77 
+ 00023754  0x00003f2e jam  0x00000024 , 0x00000b7d 
+ 00023755  0x00003f2f branch  0x00007c27 
+ 00023756  0x00003f32 jam  0x00000023 , 0x00000b7d 
+ 00023757  0x00003f33 call  0x00007c27 
+ 00023758  0x00003f34 call  0x00003806 
+ 00023759  0x00003f35 force  0x00000000 , 0x00000002 
+ 00023760  0x00003f36 branch  0x00004907 
+ 00023761  0x00003f39 jam  0x00000022 , 0x00000b7d 
+ 00023762  0x00003f3a call  0x00007c27 
+ 00023763  0x00003f3b force  0x00000002 , 0x00000002 
+ 00023764  0x00003f3c call  0x00004907 
+ 00023765  0x00003f3d setarg  0x00000000 
+ 00023766  0x00003f3e store  0x00000002 , 0x00000075 
+ 00023767  0x00003f3f fetch  0x00000002 , 0x00004280 
+ 00023768  0x00003f40 lshift  0x0000003f , 0x0000003f 
+ 00023769  0x00003f41 store  0x00000002 , 0x00000032 
+ 00023770  0x00003f42 fetch  0x00000001 , 0x00004282 
+ 00023771  0x00003f43 store  0x00000001 , 0x00000073 
+ 00023772  0x00003f44 fetch  0x00000001 , 0x00004284 
+ 00023773  0x00003f45 store  0x00000001 , 0x00000074 
+ 00023774  0x00003f46 branch  0x000037e1 
+ 00023775  0x00003f49 jam  0x00000021 , 0x00000b7d 
+ 00023776  0x00003f4a branch  0x00007c27 
+ 00023777  0x00003f4d fetcht  0x00000001 , 0x000004df 
+ 00023778  0x00003f4e storet  0x00000001 , 0x00000054 
+ 00023779  0x00003f4f branch  0x00005cf5 
+ 00023780  0x00003f52 fetch  0x00000001 , 0x0000044d 
+ 00023781  0x00003f53 set1  0x00000002 , 0x0000003f 
+ 00023782  0x00003f54 store  0x00000001 , 0x0000044d 
+ 00023783  0x00003f55 rtnbit1  0x00000003 
+ 00023784  0x00003f56 jam  0x00000031 , 0x0000007c 
+ 00023785  0x00003f57 branch  0x00005b77 
+ 00023786  0x00003f5c rtn 
+ 00023787  0x00003f5f fetch  0x00000001 , 0x00004171 
+ 00023788  0x00003f60 fetcht  0x00000001 , 0x000004df 
+ 00023789  0x00003f61 isub  0x00000002 , 0x0000003e 
+ 00023790  0x00003f63 branch  0x00005cf5 , 0x00000002 
+ 00023791  0x00003f64 jam  0x00000004 , 0x0000007c 
+ 00023792  0x00003f65 jam  0x0000001f , 0x0000007e 
+ 00023793  0x00003f66 jam  0x0000002e , 0x0000007d 
+ 00023794  0x00003f67 rtn 
+ 00023795  0x00003f6a call  0x0000605a 
+ 00023796  0x00003f6b branch  0x00005cf5 
+ 00023797  0x00003f6e jam  0x00000003 , 0x0000007c 
+ 00023798  0x00003f6f rtn 
+ 00023799  0x00003f72 jam  0x00000021 , 0x0000007c 
+ 00023800  0x00003f73 rtn 
+ 00023801  0x00003f76 jam  0x00000022 , 0x0000007c 
+ 00023802  0x00003f77 rtn 
+ 00023803  0x00003f7a fetch  0x00000001 , 0x00000055 
+ 00023804  0x00003f7b rtneq  0x00000013 
+ 00023805  0x00003f7d jam  0x00000002 , 0x00000055 
+ 00023806  0x00003f7f rtn 
+ 00023807  0x00003f83 rtn 
+ 00023808  0x00003f86 call  0x00005ec8 
+ 00023809  0x00003f87 jam  0x00000001 , 0x00000450 
+ 00023810  0x00003f88 fetch  0x00000001 , 0x00004132 
+ 00023811  0x00003f89 beq  0x00000001 , 0x00005d06 
+ 00023812  0x00003f8a jam  0x0000000a , 0x00000b7d 
+ 00023813  0x00003f8b call  0x00007c27 
+ 00023814  0x00003f8d call  0x0000487b 
+ 00023815  0x00003f8e call  0x0000620d 
+ 00023816  0x00003f8f nbranch  0x00005ed0 , 0x00000001 
+ 00023817  0x00003f90 nbranch  0x00005d0e , 0x00000029 
+ 00023818  0x00003f91 jam  0x00000004 , 0x0000007c 
+ 00023819  0x00003f92 jam  0x00000008 , 0x0000007d 
+ 00023820  0x00003f93 jam  0x00000023 , 0x0000007e 
+ 00023821  0x00003f94 rtn 
+ 00023822  0x00003f96 fetch  0x00000001 , 0x0000004b 
+ 00023823  0x00003f97 set1  0x00000002 , 0x0000003f 
+ 00023824  0x00003f98 store  0x00000001 , 0x0000004b 
+ 00023825  0x00003f99 rtn 
+ 00023826  0x00003f9d fetcht  0x00000001 , 0x0000004c 
+ 00023827  0x00003f9e nsetflag  0x00000034 , 0x00000001 , 0x00000002 
+ 00023828  0x00003f9f storet  0x00000001 , 0x0000004c 
+ 00023829  0x00003fa0 rtn 
+ 00023830  0x00003fa4 fetch  0x00000001 , 0x0000007f 
+ 00023831  0x00003fa5 rshift  0x0000003f , 0x0000003f 
+ 00023832  0x00003fa6 and_into  0x00000001 , 0x0000003f 
+ 00023833  0x00003fa7 rtn 
+ 00023834  0x00003faa call  0x00005d16 
+ 00023835  0x00003fab store  0x00000001 , 0x00000451 
+ 00023836  0x00003fac call  0x00005ec8 
+ 00023837  0x00003fad jam  0x0000000c , 0x0000007c 
+ 00023838  0x00003fae fetch  0x00000001 , 0x0000425e 
+ 00023839  0x00003faf nrtn  0x00000034 
+ 00023840  0x00003fb0 fetch  0x00000001 , 0x00000030 
+ 00023841  0x00003fb1 rtnbit1  0x00000006 
+ 00023842  0x00003fb2 jam  0x00000006 , 0x0000007e 
+ 00023843  0x00003fb3 fetch  0x00000001 , 0x00004132 
+ 00023844  0x00003fb4 bne  0x00000001 , 0x00005bc9 
+ 00023845  0x00003fb5 fetch  0x00000001 , 0x00000453 
+ 00023846  0x00003fb6 nbranch  0x00005bc9 , 0x00000034 
+ 00023847  0x00003fb7 jam  0x00000000 , 0x0000007c 
+ 00023848  0x00003fb9 fetch  0x00000001 , 0x0000004b 
+ 00023849  0x00003fba set1  0x00000000 , 0x0000003f 
+ 00023850  0x00003fbb store  0x00000001 , 0x0000004b 
+ 00023851  0x00003fbc branch  0x00004872 
+ 00023852  0x00003fbf arg  0x00000040 , 0x00000011 
+ 00023853  0x00003fc0 call  0x0000739d 
+ 00023854  0x00003fc1 fetch  0x00000004 , 0x000004df 
+ 00023855  0x00003fc2 fetcht  0x00000004 , 0x0000051f 
+ 00023856  0x00003fc3 isub  0x00000002 , 0x0000003e 
+ 00023857  0x00003fc4 branch  0x00005d35 , 0x00000005 
+ 00023858  0x00003fc5 jam  0x00000007 , 0x0000007c 
+ 00023859  0x00003fc6 jam  0x00000005 , 0x00000446 
+ 00023860  0x00003fc7 rtn 
+ 00023861  0x00003fc9 call  0x0000749b 
+ 00023862  0x00003fca call  0x00003211 
+ 00023863  0x00003fcb fetch  0x00000001 , 0x0000004b 
+ 00023864  0x00003fcc isolate1  0x00000001 , 0x0000003f 
+ 00023865  0x00003fcd set0  0x00000001 , 0x0000003f 
+ 00023866  0x00003fce store  0x00000001 , 0x0000004b 
+ 00023867  0x00003fcf call  0x000048bc , 0x00000001 
+ 00023868  0x00003fd0 fetch  0x00000001 , 0x00000055 
+ 00023869  0x00003fd1 beq  0x00000019 , 0x00005d40 
+ 00023870  0x00003fd2 beq  0x00000018 , 0x00005d40 
+ 00023871  0x00003fd3 rtn 
+ 00023872  0x00003fd5 fetch  0x00000001 , 0x000007e1 
+ 00023873  0x00003fd6 rtnne  0x00000000 
+ 00023874  0x00003fd7 fetch  0x00000001 , 0x0000004c 
+ 00023875  0x00003fd8 rtnbit1  0x00000002 
+ 00023876  0x00003fd9 branch  0x000062cf 
+ 00023877  0x00003fdc arg  0x000004df , 0x00000011 
+ 00023878  0x00003fdd arg  0x0000050f , 0x00000012 
+ 00023879  0x00003fde arg  0x000004ef , 0x00000005 
+ 00023880  0x00003fdf call  0x00007467 
+ 00023881  0x00003fe0 arg  0x00000040 , 0x00000011 
+ 00023882  0x00003fe1 call  0x0000622b 
+ 00023883  0x00003fe2 jam  0x0000000b , 0x0000007c 
+ 00023884  0x00003fe3 fetch  0x00000001 , 0x00000030 
+ 00023885  0x00003fe4 bbit0  0x00000006 , 0x00005ecb 
+ 00023886  0x00003fe5 rtn 
+ 00023887  0x00003fe8 fetch  0x00000002 , 0x00000169 
+ 00023888  0x00003fe9 add  0x0000003f , 0xfffffffd , 0x00000039 
+ 00023889  0x00003fea fetcht  0x00000001 , 0x000004df 
+ 00023890  0x00003feb setarg  0x00000103 
+ 00023891  0x00003fec iadd  0x00000002 , 0x00000005 
+ 00023892  0x00003fed arg  0x000004e1 , 0x00000006 
+ 00023893  0x00003fee call  0x00007e45 
+ 00023894  0x00003fef fetcht  0x00000001 , 0x00000053 
+ 00023895  0x00003ff0 fetch  0x00000001 , 0x000004e0 
+ 00023896  0x00003ff1 isub  0x00000002 , 0x0000003f 
+ 00023897  0x00003ff2 sub  0x0000003f , 0x0000000e , 0x0000003e 
+ 00023898  0x00003ff3 branch  0x00005d5f , 0x00000002 
+ 00023899  0x00003ff4 add  0x00000002 , 0x0000000e , 0x0000003f 
+ 00023900  0x00003ff5 store  0x00000001 , 0x00000053 
+ 00023901  0x00003ff6 jam  0x00000001 , 0x0000007c 
+ 00023902  0x00003ff7 rtn 
+ 00023903  0x00003ff9 fetch  0x00000001 , 0x0000004c 
+ 00023904  0x00003ffa set1  0x00000003 , 0x0000003f 
+ 00023905  0x00003ffb store  0x00000001 , 0x0000004c 
+ 00023906  0x00003ffc bbit1  0x00000004 , 0x00005ed5 
+ 00023907  0x00003fff rtn 
+ 00023908  0x00004001 fetch  0x00000001 , 0x000004df 
+ 00023909  0x00004002 store  0x00000001 , 0x0000007d 
+ 00023910  0x00004003 jam  0x00000002 , 0x0000007c 
+ 00023911  0x00004004 rtn 
+ 00023912  0x00004007 fetch  0x00000001 , 0x00004132 
+ 00023913  0x00004008 bne  0x00000001 , 0x00005cf5 
+ 00023914  0x00004009 force  0x00000001 , 0x00000002 
+ 00023915  0x0000400a branch  0x00004839 
+ 00023916  0x0000400d jam  0x00000030 , 0x0000007c 
+ 00023917  0x0000400e rtn 
+ 00023918  0x00004011 jam  0x00000028 , 0x0000007c 
+ 00023919  0x00004012 rtn 
+ 00023920  0x00004015 jam  0x00000026 , 0x0000007c 
+ 00023921  0x00004016 rtn 
+ 00023922  0x0000401b rtn 
+ 00023923  0x00004020 fetch  0x00000002 , 0x00000032 
+ 00023924  0x00004021 iforce  0x00000002 
+ 00023925  0x00004022 fetch  0x00000001 , 0x000004e0 
+ 00023926  0x00004023 store  0x00000001 , 0x00000097 
+ 00023927  0x00004024 imul32  0x00000002 , 0x00000002 
+ 00023928  0x00004025 fetch  0x00000002 , 0x000004e1 
+ 00023929  0x00004026 lshift  0x0000003f , 0x0000003f 
+ 00023930  0x00004027 store  0x00000002 , 0x00000098 
+ 00023931  0x00004028 fetch  0x00000004 , 0x000004e3 
+ 00023932  0x00004029 lshift  0x0000003f , 0x0000003f 
+ 00023933  0x0000402a store  0x00000004 , 0x00000093 
+ 00023934  0x0000402c deposit  0x00000002 
+ 00023935  0x0000402d store  0x00000002 , 0x0000009a 
+ 00023936  0x0000402e rtn 
+ 00023937  0x00004030 fetcht  0x00000001 , 0x000041fb 
+ 00023938  0x00004031 fetch  0x00000001 , 0x000004e0 
+ 00023939  0x00004032 ixor  0x00000002 , 0x0000003e 
+ 00023940  0x00004033 nbranch  0x00005bee , 0x00000005 
+ 00023941  0x00004034 isolate1  0x00000000 , 0x0000003f 
+ 00023942  0x00004035 fetch  0x00000001 , 0x0000004c 
+ 00023943  0x00004036 setflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00023944  0x00004037 store  0x00000001 , 0x0000004c 
+ 00023945  0x00004038 jam  0x00000081 , 0x0000007c 
+ 00023946  0x00004039 jam  0x0000008b , 0x0000007d 
+ 00023947  0x0000403a rtn 
+ 00023948  0x0000403e rtn 
+ 00023949  0x00004041 rtn 
+ 00023950  0x00004043 rtn 
+ 00023951  0x00004046 branch  0x00005cf5 
+ 00023952  0x0000404a branch  0x00005cf5 
+ 00023953  0x0000404c rtn 
+ 00023954  0x0000404e call  0x0000385e 
+ 00023955  0x0000404f jam  0x0000002c , 0x0000007d 
+ 00023956  0x00004050 branch  0x00005cf5 
+ 00023957  0x00004054 fetch  0x00000001 , 0x000004df 
+ 00023958  0x00004055 store  0x00000001 , 0x000000ad 
+ 00023959  0x00004056 fetch  0x00000001 , 0x000004e1 
+ 00023960  0x00004057 store  0x00000001 , 0x000000af 
+ 00023961  0x00004058 fetch  0x00000001 , 0x000004e4 
+ 00023962  0x00004059 store  0x00000001 , 0x000000ab 
+ 00023963  0x0000405a call  0x00005d16 
+ 00023964  0x0000405b store  0x00000001 , 0x00000452 
+ 00023965  0x0000405c force  0x00000000 , 0x00000002 
+ 00023966  0x0000405d branch  0x00004839 
+ 00023967  0x00004060 fetch  0x00000002 , 0x000004df 
+ 00023968  0x00004061 store  0x00000002 , 0x0000017b 
+ 00023969  0x00004062 rtn 
+ 00023970  0x00004065 fetch  0x00000001 , 0x00000030 
+ 00023971  0x00004066 bbit1  0x00000001 , 0x00005db5 
+ 00023972  0x00004067 fetch  0x00000002 , 0x000004e0 
+ 00023973  0x00004068 lshift  0x0000003f , 0x0000003f 
+ 00023974  0x00004069 store  0x00000002 , 0x00000075 
+ 00023975  0x0000406a fetch  0x00000002 , 0x000004e2 
+ 00023976  0x0000406b lshift  0x0000003f , 0x0000003f 
+ 00023977  0x0000406c store  0x00000002 , 0x00000032 
+ 00023978  0x0000406d fetch  0x00000002 , 0x000004e4 
+ 00023979  0x0000406e store  0x00000001 , 0x00000073 
+ 00023980  0x0000406f iforce  0x00000002 
+ 00023981  0x00004070 fetch  0x00000002 , 0x000004e6 
+ 00023982  0x00004071 store  0x00000001 , 0x00000074 
+ 00023983  0x00004072 isub  0x00000002 , 0x0000003e 
+ 00023984  0x00004073 nbranch  0x00005db2 , 0x00000002 
+ 00023985  0x00004074 store  0x00000001 , 0x00000073 
+ 00023986  0x00004077 jam  0x00000003 , 0x0000007c 
+ 00023987  0x00004078 jam  0x00000017 , 0x0000007d 
+ 00023988  0x00004079 rtn 
+ 00023989  0x0000407c jam  0x00000024 , 0x0000007e 
+ 00023990  0x0000407d branch  0x00005bc9 
+ 00023991  0x00004080 call  0x00005cf5 
+ 00023992  0x00004081 call  0x00005ec8 
+ 00023993  0x00004082 call  0x000073a0 
+ 00023994  0x00004083 branch  0x000037d0 
+ 00023995  0x00004086 call  0x00005cf5 
+ 00023996  0x00004087 branch  0x000037da 
+ 00023997  0x0000408b fetch  0x00000004 , 0x000004df 
+ 00023998  0x0000408c lshift  0x0000003f , 0x0000003f 
+ 00023999  0x0000408e branch  0x00005dc9 , 0x00000029 
+ 00024000  0x0000408f fetcht  0x00000001 , 0x0000425e 
+ 00024001  0x00004090 nbranch  0x00005dc6 , 0x00000034 
+ 00024002  0x00004092 jam  0x00000004 , 0x0000007c 
+ 00024003  0x00004093 jam  0x00000013 , 0x0000007d 
+ 00024004  0x00004094 jam  0x00000024 , 0x0000007e 
+ 00024005  0x00004095 rtn 
+ 00024006  0x00004097 jam  0x00000034 , 0x0000007c 
+ 00024007  0x00004098 jam  0x00000000 , 0x00000055 
+ 00024008  0x00004099 branch  0x00003241 
+ 00024009  0x0000409c call  0x00003241 
+ 00024010  0x0000409d set1  0x00000022 , 0x00000000 
+ 00024011  0x0000409e fetch  0x00000001 , 0x00000177 
+ 00024012  0x0000409f set0  0x00000002 , 0x0000003f 
+ 00024013  0x000040a0 store  0x00000001 , 0x00000177 
+ 00024014  0x000040a1 branch  0x00005cf5 
+ 00024015  0x000040a6 rtn 
+ 00024016  0x000040a8 rtn 
+ 00024017  0x000040aa rtn 
+ 00024018  0x000040ae rtn 
+ 00024019  0x000040b2 jam  0x00000003 , 0x0000007c 
+ 00024020  0x000040b3 jam  0x00000018 , 0x0000007d 
+ 00024021  0x000040b4 jam  0x0000002e , 0x00000b7d 
+ 00024022  0x000040b5 call  0x00007c27 
+ 00024023  0x000040b6 force  0x00000000 , 0x00000002 
+ 00024024  0x000040b7 call  0x00004907 
+ 00024025  0x000040b8 branch  0x00003806 
+ 00024026  0x000040ba rtn 
+ 00024027  0x000040bd fetch  0x00000001 , 0x000004df 
+ 00024028  0x000040be bne  0x00000001 , 0x00005de7 
+ 00024029  0x000040bf fetch  0x00000001 , 0x000004e0 
+ 00024030  0x000040c0 bne  0x00000001 , 0x00005de7 
+ 00024031  0x000040c1 fetch  0x00000001 , 0x000004e1 
+ 00024032  0x000040c2 bne  0x00000030 , 0x00005de7 
+ 00024033  0x000040c3 call  0x00006216 
+ 00024034  0x000040c4 branch  0x00005de4 , 0x00000001 
+ 00024035  0x000040c5 jam  0x00000001 , 0x000007da 
+ 00024036  0x000040c7 jam  0x00000003 , 0x0000007c 
+ 00024037  0x000040c8 jam  0x0000003d , 0x0000007d 
+ 00024038  0x000040c9 branch  0x00005b77 
+ 00024039  0x000040cc jam  0x00000024 , 0x0000007e 
+ 00024040  0x000040cd branch  0x00005bc9 
+ 00024041  0x000040d2 jam  0x0000003e , 0x0000007c 
+ 00024042  0x000040d4 rtn 
+ 00024043  0x000040d6 call  0x00006216 
+ 00024044  0x000040d7 rtn  0x00000001 
+ 00024045  0x000040d8 jam  0x00000008 , 0x000007da 
+ 00024046  0x000040d9 rtn 
+ 00024047  0x000040dd call  0x00006216 
+ 00024048  0x000040de ncall  0x00007a9d , 0x00000001 
+ 00024049  0x000040df call  0x00007aab , 0x00000001 
+ 00024050  0x000040e0 call  0x00004860 
+ 00024051  0x000040e1 call  0x00004869 
+ 00024052  0x000040e2 call  0x00006216 
+ 00024053  0x000040e3 rtn  0x00000001 
+ 00024054  0x000040e4 jam  0x0000000c , 0x000007da 
+ 00024055  0x000040e5 jam  0x00000001 , 0x000007dc 
+ 00024056  0x000040e6 rtn 
+ 00024057  0x000040e9 arg  0x00000888 , 0x00000005 
+ 00024058  0x000040ea fetch  0x00000008 , 0x000004df 
+ 00024059  0x000040eb istore  0x00000008 , 0x00000005 
+ 00024060  0x000040ec fetch  0x00000008 , 0x000004e7 
+ 00024061  0x000040ed istore  0x00000008 , 0x00000005 
+ 00024062  0x000040ee branch  0x0000780f 
+ 00024063  0x000040f1 fetch  0x00000001 , 0x000007db 
+ 00024064  0x000040f2 beq  0x00000007 , 0x00005e03 
+ 00024065  0x000040f3 fetch  0x00000001 , 0x000007da 
+ 00024066  0x000040f4 bne  0x00000001 , 0x00005e16 
+ 00024067  0x000040f6 fetch  0x00000001 , 0x000007e3 
+ 00024068  0x000040f7 sub  0x0000003f , 0x00000020 , 0x00000005 
+ 00024069  0x000040f8 nbranch  0x00005e16 , 0x00000002 
+ 00024070  0x000040f9 arg  0x000007f0 , 0x00000005 
+ 00024071  0x000040fa iadd  0x00000005 , 0x00000005 
+ 00024072  0x000040fb fetch  0x00000008 , 0x000004df 
+ 00024073  0x000040fc istore  0x00000008 , 0x00000005 
+ 00024074  0x000040fd fetch  0x00000008 , 0x000004e7 
+ 00024075  0x000040fe istore  0x00000008 , 0x00000005 
+ 00024076  0x000040ff fetch  0x00000001 , 0x000007e3 
+ 00024077  0x00004100 increase  0x00000010 , 0x0000003f 
+ 00024078  0x00004101 store  0x00000001 , 0x000007e3 
+ 00024079  0x00004102 bne  0x00000030 , 0x00005cf5 
+ 00024080  0x00004104 call  0x00006216 
+ 00024081  0x00004105 branch  0x00005cf5 , 0x00000001 
+ 00024082  0x00004106 jam  0x00000001 , 0x000007e4 
+ 00024083  0x00004107 jam  0x00000002 , 0x000007da 
+ 00024084  0x00004108 jam  0x00000001 , 0x000007dc 
+ 00024085  0x00004109 branch  0x00005cf5 
+ 00024086  0x0000410b jam  0x00000024 , 0x0000007e 
+ 00024087  0x0000410c branch  0x00005bc9 
+ 00024088  0x0000410e fetch  0x00000001 , 0x000007e2 
+ 00024089  0x0000410f beq  0x00000030 , 0x00005e1c 
+ 00024090  0x00004110 jam  0x0000003e , 0x0000007c 
+ 00024091  0x00004111 branch  0x00005b77 
+ 00024092  0x00004113 call  0x00006216 
+ 00024093  0x00004114 branch  0x00005e21 , 0x00000001 
+ 00024094  0x00004115 jam  0x00000001 , 0x000007dc 
+ 00024095  0x00004116 jam  0x00000004 , 0x000007da 
+ 00024096  0x00004117 branch  0x00005b77 
+ 00024097  0x0000411a branch  0x00005b77 
+ 00024098  0x0000411d fetch  0x00000001 , 0x000007db 
+ 00024099  0x0000411e beq  0x00000007 , 0x00005e26 
+ 00024100  0x0000411f fetch  0x00000001 , 0x000007da 
+ 00024101  0x00004120 bne  0x00000006 , 0x00005e32 
+ 00024102  0x00004122 arg  0x00000848 , 0x00000005 
+ 00024103  0x00004123 fetch  0x00000008 , 0x000004df 
+ 00024104  0x00004124 istore  0x00000008 , 0x00000005 
+ 00024105  0x00004125 fetch  0x00000008 , 0x000004e7 
+ 00024106  0x00004126 istore  0x00000008 , 0x00000005 
+ 00024107  0x00004127 call  0x00006216 
+ 00024108  0x00004128 branch  0x00005e30 , 0x00000001 
+ 00024109  0x00004129 jam  0x00000007 , 0x000007da 
+ 00024110  0x0000412a jam  0x00000001 , 0x000007dc 
+ 00024111  0x0000412b branch  0x00005cf5 
+ 00024112  0x0000412d jam  0x00000004 , 0x000007db 
+ 00024113  0x0000412e branch  0x0000780f 
+ 00024114  0x00004132 jam  0x00000024 , 0x0000007e 
+ 00024115  0x00004133 branch  0x00005bc9 
+ 00024116  0x00004136 fetch  0x00000001 , 0x000007db 
+ 00024117  0x00004137 beq  0x0000000b , 0x00005e38 
+ 00024118  0x00004138 fetch  0x00000001 , 0x000007da 
+ 00024119  0x00004139 bne  0x00000008 , 0x00005e45 
+ 00024120  0x0000413b arg  0x00000878 , 0x00000005 
+ 00024121  0x0000413c fetch  0x00000008 , 0x000004df 
+ 00024122  0x0000413d istore  0x00000008 , 0x00000005 
+ 00024123  0x0000413e fetch  0x00000008 , 0x000004e7 
+ 00024124  0x0000413f istore  0x00000008 , 0x00000005 
+ 00024125  0x00004140 call  0x00006216 
+ 00024126  0x00004141 branch  0x00005e42 , 0x00000001 
+ 00024127  0x00004142 jam  0x00000009 , 0x000007da 
+ 00024128  0x00004143 jam  0x00000001 , 0x000007dc 
+ 00024129  0x00004144 branch  0x00005b77 
+ 00024130  0x00004146 jam  0x00000009 , 0x000007db 
+ 00024131  0x00004147 jam  0x00000001 , 0x000007dd 
+ 00024132  0x00004148 branch  0x00005b77 
+ 00024133  0x0000414a jam  0x00000024 , 0x0000007e 
+ 00024134  0x0000414b branch  0x00005bc9 
+ 00024135  0x0000414e branch  0x00005b77 
+ 00024136  0x00004151 fetch  0x00000001 , 0x00000177 
+ 00024137  0x00004152 set0  0x00000001 
+ 00024138  0x00004153 store  0x00000001 , 0x00000177 
+ 00024139  0x00004154 call  0x00005cf5 
+ 00024140  0x00004155 nrtn  0x00000029 
+ 00024141  0x00004156 fetch  0x00000001 , 0x000004df 
+ 00024142  0x00004157 fetcht  0x00000001 , 0x0000004b 
+ 00024143  0x00004158 setflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00024144  0x00004159 nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00024145  0x0000415a storet  0x00000001 , 0x0000004b 
+ 00024146  0x0000415b rtn 
+ 00024147  0x0000415e fetcht  0x00000008 , 0x000004df 
+ 00024148  0x0000415f fetch  0x00000001 , 0x00004272 
+ 00024149  0x00004160 bne  0x00000050 , 0x00005e58 
+ 00024150  0x00004161 jam  0x00000000 , 0x00004272 
+ 00024151  0x00004162 call  0x000047e5 
+ 00024152  0x00004164 fetch  0x00000001 , 0x00000055 
+ 00024153  0x00004165 rtnne  0x00000003 
+ 00024154  0x00004166 fetch  0x00000001 , 0x00004132 
+ 00024155  0x00004167 beq  0x00000001 , 0x00005e5e 
+ 00024156  0x00004168 fetch  0x00000001 , 0x00000177 
+ 00024157  0x00004169 bbit0  0x00000004 , 0x00005e60 
+ 00024158  0x0000416b jam  0x00000014 , 0x00000055 
+ 00024159  0x0000416c rtn 
+ 00024160  0x0000416e jam  0x00000004 , 0x00000055 
+ 00024161  0x0000416f rtn 
+ 00024162  0x00004171 fetch  0x00000001 , 0x00000189 
+ 00024163  0x00004172 store  0x00000001 , 0x0000015d 
+ 00024164  0x00004173 jam  0x00000003 , 0x0000007c 
+ 00024165  0x00004174 jam  0x00000038 , 0x0000007d 
+ 00024166  0x00004175 rtn 
+ 00024167  0x00004179 jam  0x00000003 , 0x0000007c 
+ 00024168  0x0000417a jam  0x00000039 , 0x0000007d 
+ 00024169  0x0000417b force  0x00000009 , 0x00000039 
+ 00024170  0x0000417c arg  0x000004df , 0x00000006 
+ 00024171  0x0000417d arg  0x00000154 , 0x00000005 
+ 00024172  0x0000417f ifetch  0x00000001 , 0x00000006 
+ 00024173  0x00004180 xor_into  0x00000055 , 0x0000003f 
+ 00024174  0x00004181 istore  0x00000001 , 0x00000005 
+ 00024175  0x00004182 loop  0x00005e6c 
+ 00024176  0x00004183 fetch  0x00000001 , 0x00000154 
+ 00024177  0x00004184 fetcht  0x00000001 , 0x00000153 
+ 00024178  0x00004185 set0  0x00000007 , 0x00000002 
+ 00024179  0x00004186 set0  0x00000004 , 0x00000002 
+ 00024180  0x00004187 beq  0x000000ff , 0x00005e80 
+ 00024181  0x00004188 beq  0x00000000 , 0x00005e99 
+ 00024182  0x00004189 beq  0x00000005 , 0x00005e8d 
+ 00024183  0x0000418a beq  0x00000007 , 0x00005e8c 
+ 00024184  0x0000418b beq  0x00000006 , 0x00005e8d 
+ 00024185  0x0000418c beq  0x00000008 , 0x00005e8c 
+ 00024186  0x0000418d beq  0x00000001 , 0x00005e85 
+ 00024187  0x0000418e beq  0x00000002 , 0x00005e85 
+ 00024188  0x0000418f beq  0x00000003 , 0x00005e85 
+ 00024189  0x00004190 beq  0x00000009 , 0x00005e85 
+ 00024190  0x00004191 beq  0x00000004 , 0x00005e85 
+ 00024191  0x00004192 rtn 
+ 00024192  0x00004195 fetch  0x00000001 , 0x00000153 
+ 00024193  0x00004196 set1  0x00000003 , 0x0000003f 
+ 00024194  0x00004197 set1  0x00000002 , 0x0000003f 
+ 00024195  0x00004198 store  0x00000001 , 0x00000153 
+ 00024196  0x00004199 rtn 
+ 00024197  0x0000419b set1  0x00000004 , 0x00000002 
+ 00024198  0x0000419c jam  0x00000005 , 0x0000018a 
+ 00024199  0x0000419d fetch  0x00000002 , 0x0000015b 
+ 00024200  0x0000419e iforce  0x00000039 
+ 00024201  0x0000419f store  0x00000002 , 0x00000169 
+ 00024202  0x000041a0 arg  0x000004de , 0x00000005 
+ 00024203  0x000041a1 call  0x00007ed8 
+ 00024204  0x000041a3 set1  0x00000007 , 0x00000002 
+ 00024205  0x000041a5 set1  0x00000002 , 0x00000002 
+ 00024206  0x000041a6 force  0x00000000 , 0x0000003f 
+ 00024207  0x000041a7 store  0x00000001 , 0x0000000b 
+ 00024208  0x000041a8 store  0x00000002 , 0x000000fc 
+ 00024209  0x000041a9 store  0x00000002 , 0x000000fe 
+ 00024210  0x000041aa store  0x00000002 , 0x000000fa 
+ 00024211  0x000041ab store  0x00000002 , 0x000000f8 
+ 00024212  0x000041ac fetch  0x00000001 , 0x00000155 
+ 00024213  0x000041ad compare  0x00000000 , 0x0000003f , 0x000000ff 
+ 00024214  0x000041ae setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00024215  0x000041af storet  0x00000001 , 0x00000153 
+ 00024216  0x000041b0 rtn 
+ 00024217  0x000041b3 set0  0x00000011 , 0x00000000 
+ 00024218  0x000041b4 jam  0x00000000 , 0x00000153 
+ 00024219  0x000041b5 fetch  0x00000001 , 0x00000189 
+ 00024220  0x000041b6 set0  0x00000006 , 0x0000003f 
+ 00024221  0x000041b7 store  0x00000001 , 0x00000189 
+ 00024222  0x000041b8 rtn 
+ 00024223  0x000041bb fetch  0x00000001 , 0x00000153 
+ 00024224  0x000041bc rtnbit0  0x00000002 
+ 00024225  0x000041bd fetch  0x00000001 , 0x0000015e 
+ 00024226  0x000041be increase  0x00000001 , 0x0000003f 
+ 00024227  0x000041bf store  0x00000001 , 0x0000015e 
+ 00024228  0x000041c0 rtnne  0x00000005 
+ 00024229  0x000041c1 jam  0x00000000 , 0x0000015e 
+ 00024230  0x000041c2 fetch  0x00000001 , 0x00000153 
+ 00024231  0x000041c3 set0  0x00000002 , 0x0000003f 
+ 00024232  0x000041c4 store  0x00000001 , 0x00000153 
+ 00024233  0x000041c5 bbit1  0x00000003 , 0x00005ec0 
+ 00024234  0x000041c6 isolate1  0x00000007 , 0x0000003f 
+ 00024235  0x000041c7 call  0x00007f86 , 0x00000001 
+ 00024236  0x000041c8 ncall  0x00007f8a , 0x00000001 
+ 00024237  0x000041c9 fetch  0x00000001 , 0x0000015a 
+ 00024238  0x000041ca compare  0x00000020 , 0x0000003f , 0x00000030 
+ 00024239  0x000041cb fetch  0x00000001 , 0x0000004c 
+ 00024240  0x000041cc setflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00024241  0x000041cd store  0x00000001 , 0x0000004c 
+ 00024242  0x000041ce fetch  0x00000001 , 0x00000153 
+ 00024243  0x000041cf fetcht  0x00000001 , 0x00000189 
+ 00024244  0x000041d0 isolate1  0x00000004 , 0x0000003f 
+ 00024245  0x000041d1 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00024246  0x000041d2 isolate1  0x00000006 , 0x0000003f 
+ 00024247  0x000041d3 setflag  0x00000001 , 0x00000004 , 0x00000002 
+ 00024248  0x000041d4 setflag  0x00000001 , 0x00000005 , 0x00000002 
+ 00024249  0x000041d5 storet  0x00000001 , 0x00000189 
+ 00024250  0x000041d6 fetch  0x00000001 , 0x00000156 
+ 00024251  0x000041d7 store  0x00000001 , 0x00000447 
+ 00024252  0x000041d8 fetch  0x00000001 , 0x00000157 
+ 00024253  0x000041d9 store  0x00000001 , 0x00000448 
+ 00024254  0x000041da set1  0x00000011 , 0x00000000 
+ 00024255  0x000041db rtn 
+ 00024256  0x000041de set0  0x00000011 , 0x00000000 
+ 00024257  0x000041df jam  0x00000000 , 0x00000153 
+ 00024258  0x000041e0 fetch  0x00000001 , 0x0000015d 
+ 00024259  0x000041e1 store  0x00000001 , 0x00000189 
+ 00024260  0x000041e2 hfetch  0x00000001 , 0x00008043 
+ 00024261  0x000041e3 and_into  0x000000fb , 0x0000003f 
+ 00024262  0x000041e4 hstore  0x00000001 , 0x00008043 
+ 00024263  0x000041e5 rtn 
+ 00024264  0x000041e9 arg  0x000004df , 0x00000006 
+ 00024265  0x000041ea arg  0x000004ef , 0x00000005 
+ 00024266  0x000041eb branch  0x00007e35 
+ 00024267  0x000041ee jam  0x00000009 , 0x0000007c 
+ 00024268  0x000041ef rtn 
+ 00024269  0x000041f2 nrtn  0x00000029 
+ 00024270  0x000041f3 jam  0x00000011 , 0x0000007c 
+ 00024271  0x000041f4 rtn 
+ 00024272  0x000041f7 arg  0x00004140 , 0x00000011 
+ 00024273  0x000041f8 call  0x0000736a 
+ 00024274  0x000041f9 jam  0x00000003 , 0x0000007c 
+ 00024275  0x000041fa jam  0x00000008 , 0x0000007d 
+ 00024276  0x000041fb rtn 
+ 00024277  0x000041fe jam  0x0000000a , 0x00000072 
+ 00024278  0x000041ff jam  0x00000007 , 0x0000007c 
+ 00024279  0x00004200 jam  0x00000016 , 0x00000446 
+ 00024280  0x00004201 rtn 
+ 00024281  0x00004208 set1  0x00000025 , 0x00000000 
+ 00024282  0x00004209 bpatch  0x000000e3 , 0x0000403c 
+ 00024283  0x0000420a disable  0x00000028 
+ 00024284  0x0000420b call  0x000061d9 
+ 00024285  0x0000420c fetch  0x00000001 , 0x00000048 
+ 00024286  0x0000420d rtn  0x00000034 
+ 00024287  0x00004212 bbit1  0x00000007 , 0x00005f10 
+ 00024288  0x00004213 beq  0x00000001 , 0x00006072 
+ 00024289  0x00004214 beq  0x00000002 , 0x00005f9b 
+ 00024290  0x00004215 beq  0x00000003 , 0x00005f1d 
+ 00024291  0x00004216 beq  0x00000004 , 0x00005f36 
+ 00024292  0x00004217 beq  0x00000027 , 0x000060f2 
+ 00024293  0x00004218 beq  0x00000028 , 0x00005fbf 
+ 00024294  0x00004219 beq  0x00000030 , 0x00005fab 
+ 00024295  0x0000421a beq  0x00000025 , 0x000060ed 
+ 00024296  0x0000421b beq  0x00000026 , 0x00005fba 
+ 00024297  0x0000421c beq  0x00000031 , 0x000060dc 
+ 00024298  0x0000421d beq  0x00000037 , 0x0000606d 
+ 00024299  0x0000421e beq  0x00000033 , 0x0000605f 
+ 00024300  0x0000421f beq  0x00000008 , 0x00006174 
+ 00024301  0x00004220 beq  0x00000009 , 0x0000616a 
+ 00024302  0x00004221 beq  0x0000000b , 0x0000617f 
+ 00024303  0x00004222 beq  0x0000000c , 0x00006188 
+ 00024304  0x00004223 beq  0x0000000f , 0x00006065 
+ 00024305  0x00004224 beq  0x00000010 , 0x000061af 
+ 00024306  0x00004225 beq  0x00000011 , 0x000061a5 
+ 00024307  0x00004226 beq  0x00000007 , 0x00006055 
+ 00024308  0x00004227 beq  0x0000002a , 0x00006081 
+ 00024309  0x00004228 beq  0x0000000a , 0x00006082 
+ 00024310  0x0000422a beq  0x0000002b , 0x000060b5 
+ 00024311  0x0000422b beq  0x00000006 , 0x00005fb0 
+ 00024312  0x0000422c beq  0x00000021 , 0x00006062 
+ 00024313  0x0000422d beq  0x0000002d , 0x000060d2 
+ 00024314  0x0000422e beq  0x0000002e , 0x000060d7 
+ 00024315  0x0000422f beq  0x00000022 , 0x00006062 
+ 00024316  0x00004230 beq  0x0000002c , 0x000060cb 
+ 00024317  0x00004231 beq  0x00000034 , 0x00006083 
+ 00024318  0x00004232 beq  0x00000013 , 0x00006098 
+ 00024319  0x00004233 beq  0x00000017 , 0x000060a7 
+ 00024320  0x00004234 beq  0x00000012 , 0x000061ac 
+ 00024321  0x00004235 beq  0x0000002f , 0x000060ad 
+ 00024322  0x00004236 beq  0x00000018 , 0x000060b2 
+ 00024323  0x00004237 beq  0x0000003d , 0x00006119 
+ 00024324  0x00004238 beq  0x0000003e , 0x00006125 
+ 00024325  0x00004239 beq  0x0000003f , 0x00006137 
+ 00024326  0x0000423a beq  0x00000040 , 0x00006142 
+ 00024327  0x0000423b beq  0x00000041 , 0x00006157 
+ 00024328  0x0000423c beq  0x00000023 , 0x00006166 
+ 00024329  0x0000423d beq  0x0000003b , 0x00006161 
+ 00024330  0x0000423f beq  0x00000005 , 0x00006167 
+ 00024331  0x00004240 beq  0x00000029 , 0x00006168 
+ 00024332  0x00004241 beq  0x00000038 , 0x00006169 
+ 00024333  0x00004242 beq  0x00000039 , 0x00006078 
+ 00024334  0x00004244 branch  0x00003bf1 
+ 00024335  0x00004245 rtn 
+ 00024336  0x00004247 beq  0x0000008c , 0x00005fc4 
+ 00024337  0x00004248 beq  0x0000008d , 0x00005fe3 
+ 00024338  0x00004249 beq  0x00000081 , 0x00005f43 
+ 00024339  0x0000424a beq  0x00000084 , 0x00005f76 
+ 00024340  0x0000424b beq  0x00000082 , 0x00005f50 
+ 00024341  0x0000424c beq  0x00000083 , 0x00005fec 
+ 00024342  0x0000424d beq  0x0000008b , 0x00005ff7 
+ 00024343  0x0000424e beq  0x00000097 , 0x00006051 
+ 00024344  0x0000424f beq  0x00000099 , 0x00005f8c 
+ 00024345  0x00004250 beq  0x0000009a , 0x00005f81 
+ 00024346  0x00004251 beq  0x00000095 , 0x00005f91 
+ 00024347  0x00004252 beq  0x00000096 , 0x00005f92 
+ 00024348  0x00004253 branch  0x00003bf1 
+ 00024349  0x0000425a force  0x00000002 , 0x0000003f 
+ 00024350  0x0000425b call  0x000061b5 
+ 00024351  0x0000425c fetch  0x00000001 , 0x00000049 
+ 00024352  0x0000425d istore  0x00000001 , 0x00000005 
+ 00024353  0x0000425e beq  0x0000002b , 0x00005f5a 
+ 00024354  0x0000425f call  0x000061c4 
+ 00024355  0x00004260 fetch  0x00000001 , 0x00000049 
+ 00024356  0x00004261 beq  0x00000008 , 0x00005f5d 
+ 00024357  0x00004262 beq  0x0000000f , 0x00005f61 
+ 00024358  0x00004263 beq  0x00000010 , 0x00005f6c 
+ 00024359  0x00004264 beq  0x00000017 , 0x00005f33 
+ 00024360  0x00004265 beq  0x00000033 , 0x00005f6f 
+ 00024361  0x00004266 beq  0x0000002c , 0x00005f74 
+ 00024362  0x00004267 beq  0x00000041 , 0x00005f75 
+ 00024363  0x00004268 beq  0x00000011 , 0x00005f2d 
+ 00024364  0x00004269 rtn 
+ 00024365  0x0000426c fetch  0x00000001 , 0x00000055 
+ 00024366  0x0000426d rtn  0x00000034 
+ 00024367  0x0000426e jam  0x0000001b , 0x00000055 
+ 00024368  0x0000426f setarg  0x0000000c 
+ 00024369  0x00004270 arg  0x0000000b , 0x00000007 
+ 00024370  0x00004271 branch  0x00007e4c 
+ 00024371  0x00004274 force  0x00000002 , 0x00000002 
+ 00024372  0x00004275 call  0x00004907 
+ 00024373  0x00004276 branch  0x000037e1 
+ 00024374  0x00004278 force  0x00000003 , 0x0000003f 
+ 00024375  0x00004279 call  0x000061b5 
+ 00024376  0x0000427a fetch  0x00000001 , 0x00000049 
+ 00024377  0x0000427b beq  0x0000000b , 0x00005f3e 
+ 00024378  0x0000427c istore  0x00000001 , 0x00000005 
+ 00024379  0x0000427d fetch  0x00000001 , 0x0000004a 
+ 00024380  0x0000427e istore  0x00000001 , 0x00000005 
+ 00024381  0x0000427f branch  0x000061c4 
+ 00024382  0x00004282 istore  0x00000001 , 0x00000005 
+ 00024383  0x00004283 fetch  0x00000001 , 0x0000004a 
+ 00024384  0x00004284 istore  0x00000001 , 0x00000005 
+ 00024385  0x00004285 arg  0x00000451 , 0x00000002 
+ 00024386  0x00004286 branch  0x000061fb 
+ 00024387  0x00004289 force  0x00000004 , 0x00000007 
+ 00024388  0x0000428a call  0x000061bd 
+ 00024389  0x0000428b setarg  0x0000007f 
+ 00024390  0x0000428c istore  0x00000001 , 0x00000005 
+ 00024391  0x0000428d fetch  0x00000001 , 0x00000049 
+ 00024392  0x0000428e set0  0x00000007 , 0x0000003f 
+ 00024393  0x0000428f istore  0x00000001 , 0x00000005 
+ 00024394  0x00004290 fetch  0x00000001 , 0x00000049 
+ 00024395  0x00004291 beq  0x0000008c , 0x00005f5a 
+ 00024396  0x00004292 call  0x000061c4 
+ 00024397  0x00004293 fetch  0x00000001 , 0x00000049 
+ 00024398  0x00004294 beq  0x0000008d , 0x00005f74 
+ 00024399  0x00004295 rtn 
+ 00024400  0x00004298 force  0x00000005 , 0x00000007 
+ 00024401  0x00004299 call  0x000061bd 
+ 00024402  0x0000429a setarg  0x0000007f 
+ 00024403  0x0000429b istore  0x00000001 , 0x00000005 
+ 00024404  0x0000429c fetch  0x00000001 , 0x00000049 
+ 00024405  0x0000429d set0  0x00000007 , 0x0000003f 
+ 00024406  0x0000429e istore  0x00000001 , 0x00000005 
+ 00024407  0x0000429f fetch  0x00000001 , 0x0000004a 
+ 00024408  0x000042a0 istore  0x00000001 , 0x00000005 
+ 00024409  0x000042a1 branch  0x000061c4 
+ 00024410  0x000042a4 call  0x0000384a 
+ 00024411  0x000042a5 arg  0x00000452 , 0x00000002 
+ 00024412  0x000042a6 branch  0x000061fb 
+ 00024413  0x000042aa call  0x00003507 
+ 00024414  0x000042ab call  0x0000620d 
+ 00024415  0x000042ac rtn  0x00000001 
+ 00024416  0x000042ad branch  0x00005ecb 
+ 00024417  0x000042b0 fetch  0x00000001 , 0x0000004b 
+ 00024418  0x000042b1 bbit1  0x00000005 , 0x00005f68 
+ 00024419  0x000042b2 rtnbit0  0x00000004 
+ 00024420  0x000042b3 jam  0x00000012 , 0x0000007c 
+ 00024421  0x000042b4 set0  0x00000004 , 0x0000003f 
+ 00024422  0x000042b5 call  0x00006205 
+ 00024423  0x000042b6 branch  0x00005f6a 
+ 00024424  0x000042b8 jam  0x00000010 , 0x0000007c 
+ 00024425  0x000042b9 set0  0x00000005 , 0x0000003f 
+ 00024426  0x000042bb store  0x00000001 , 0x0000004b 
+ 00024427  0x000042bc rtn 
+ 00024428  0x000042bf call  0x00006216 
+ 00024429  0x000042c0 branch  0x00005ecd , 0x00000001 
+ 00024430  0x000042c1 rtn 
+ 00024431  0x000042c5 fetch  0x00000001 , 0x0000044d 
+ 00024432  0x000042c6 set1  0x00000000 , 0x0000003f 
+ 00024433  0x000042c7 store  0x00000001 , 0x0000044d 
+ 00024434  0x000042c8 jam  0x00000001 , 0x00000b7d 
+ 00024435  0x000042c9 branch  0x00007c27 
+ 00024436  0x000042cd rtn 
+ 00024437  0x000042d0 rtn 
+ 00024438  0x000042d5 force  0x0000000c , 0x00000007 
+ 00024439  0x000042d6 call  0x000061bd 
+ 00024440  0x000042d7 setarg  0x00000001 
+ 00024441  0x000042d8 istore  0x00000001 , 0x00000005 
+ 00024442  0x000042d9 fetch  0x00000002 , 0x0000044a 
+ 00024443  0x000042da istore  0x00000002 , 0x00000005 
+ 00024444  0x000042db setarg  0x00000000 
+ 00024445  0x000042dc istore  0x00000003 , 0x00000005 
+ 00024446  0x000042dd setarg  0x00000000 
+ 00024447  0x000042de istore  0x00000004 , 0x00000005 
+ 00024448  0x000042df branch  0x000061cd 
+ 00024449  0x000042e2 force  0x00000005 , 0x00000007 
+ 00024450  0x000042e3 call  0x000061bd 
+ 00024451  0x000042e4 fetch  0x00000001 , 0x00004132 
+ 00024452  0x000042e5 beq  0x00000001 , 0x00005f89 
+ 00024453  0x000042e6 setarg  0x00040003 
+ 00024454  0x000042e7 istore  0x00000003 , 0x00000005 
+ 00024455  0x000042e8 store  0x00000003 , 0x000007e6 
+ 00024456  0x000042e9 branch  0x000061cd 
+ 00024457  0x000042eb fetch  0x00000003 , 0x000007e6 
+ 00024458  0x000042ec istore  0x00000003 , 0x00000005 
+ 00024459  0x000042ed branch  0x000061cd 
+ 00024460  0x000042f0 force  0x00000005 , 0x00000007 
+ 00024461  0x000042f1 call  0x000061bd 
+ 00024462  0x000042f2 fetch  0x00000003 , 0x000007e6 
+ 00024463  0x000042f3 istore  0x00000003 , 0x00000005 
+ 00024464  0x000042f4 branch  0x000061cf 
+ 00024465  0x000042f9 rtn 
+ 00024466  0x000042fb force  0x00000009 , 0x00000007 
+ 00024467  0x000042fc call  0x000061bd 
+ 00024468  0x000042fd fetch  0x00000001 , 0x00000097 
+ 00024469  0x000042fe istore  0x00000001 , 0x00000005 
+ 00024470  0x000042ff fetch  0x00000002 , 0x00000098 
+ 00024471  0x00004300 istore  0x00000002 , 0x00000005 
+ 00024472  0x00004301 fetch  0x00000004 , 0x00000093 
+ 00024473  0x00004302 istore  0x00000004 , 0x00000005 
+ 00024474  0x00004303 branch  0x000061cd 
+ 00024475  0x00004306 force  0x00000011 , 0x0000003f 
+ 00024476  0x00004307 call  0x000061b5 
+ 00024477  0x00004308 fetch  0x00000001 , 0x00000049 
+ 00024478  0x00004309 copy  0x0000003f , 0x00000002 
+ 00024479  0x0000430a beq  0x00000000 , 0x00005fa3 
+ 00024480  0x0000430b beq  0x0000000e , 0x00005fa3 
+ 00024481  0x0000430c beq  0x0000001c , 0x00005fa3 
+ 00024482  0x0000430d rtn 
+ 00024483  0x0000430f istore  0x00000001 , 0x00000005 
+ 00024484  0x00004310 fetch  0x00000001 , 0x00004702 
+ 00024485  0x00004311 istore  0x00000001 , 0x00000005 
+ 00024486  0x00004312 copy  0x0000003f , 0x00000039 
+ 00024487  0x00004313 setarg  0x00004703 
+ 00024488  0x00004314 iadd  0x00000002 , 0x00000006 
+ 00024489  0x00004315 call  0x00007e45 
+ 00024490  0x00004316 branch  0x000061cd 
+ 00024491  0x0000431a force  0x00000003 , 0x0000003f 
+ 00024492  0x0000431b call  0x000061b5 
+ 00024493  0x0000431c setarg  0x00000114 
+ 00024494  0x0000431d istore  0x00000002 , 0x00000005 
+ 00024495  0x0000431e branch  0x000061cd 
+ 00024496  0x00004322 force  0x00000003 , 0x0000003f 
+ 00024497  0x00004323 call  0x000061b5 
+ 00024498  0x00004324 fetch  0x00000004 , 0x0000016f 
+ 00024499  0x00004325 isub  0x00000022 , 0x0000003f 
+ 00024500  0x00004326 branch  0x00005fb6 , 0x00000029 
+ 00024501  0x00004327 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00024502  0x0000432a rshift2  0x0000003f , 0x0000003f 
+ 00024503  0x0000432b set0  0x0000000f , 0x0000003f 
+ 00024504  0x0000432c istore  0x00000002 , 0x00000005 
+ 00024505  0x0000432d branch  0x000061cd 
+ 00024506  0x00004330 force  0x00000006 , 0x0000003f 
+ 00024507  0x00004331 call  0x000061b5 
+ 00024508  0x00004332 fetch  0x00000005 , 0x000046fd 
+ 00024509  0x00004333 istore  0x00000005 , 0x00000005 
+ 00024510  0x00004334 branch  0x000061cd 
+ 00024511  0x00004337 force  0x00000009 , 0x0000003f 
+ 00024512  0x00004338 call  0x000061b5 
+ 00024513  0x00004339 fetch  0x00000008 , 0x00004138 
+ 00024514  0x0000433a istore  0x00000008 , 0x00000005 
+ 00024515  0x0000433b branch  0x000061cd 
+ 00024516  0x00004342 branch  0x00005fc6 , 0x00000029 
+ 00024517  0x00004345 branch  0x00005fc7 
+ 00024518  0x00004347 jam  0x00000007 , 0x000041f9 
+ 00024519  0x00004349 jam  0x00000000 , 0x000000af 
+ 00024520  0x0000434a force  0x00000010 , 0x00000007 
+ 00024521  0x0000434b call  0x000061bd 
+ 00024522  0x0000434c fetch  0x00000001 , 0x000000ad 
+ 00024523  0x0000434d istore  0x00000001 , 0x00000005 
+ 00024524  0x0000434e fetch  0x00000001 , 0x000041f9 
+ 00024525  0x0000434f istore  0x00000001 , 0x00000005 
+ 00024526  0x00004350 setarg  0x00000000 
+ 00024527  0x00004351 istore  0x00000001 , 0x00000005 
+ 00024528  0x00004352 fetch  0x00000001 , 0x000000af 
+ 00024529  0x00004353 istore  0x00000001 , 0x00000005 
+ 00024530  0x00004354 setarg  0x00000006 
+ 00024531  0x00004355 istore  0x00000001 , 0x00000005 
+ 00024532  0x00004356 setarg  0x00000002 
+ 00024533  0x00004357 istore  0x00000001 , 0x00000005 
+ 00024534  0x00004358 setarg  0x00000007 
+ 00024535  0x00004359 istore  0x00000001 , 0x00000005 
+ 00024536  0x0000435a istore  0x00000001 , 0x00000005 
+ 00024537  0x0000435b setarg  0x0000001e 
+ 00024538  0x0000435c istore  0x00000002 , 0x00000005 
+ 00024539  0x0000435d istore  0x00000002 , 0x00000005 
+ 00024540  0x0000435e fetch  0x00000001 , 0x000000ab 
+ 00024541  0x0000435f istore  0x00000001 , 0x00000005 
+ 00024542  0x00004360 fetch  0x00000001 , 0x000000b1 
+ 00024543  0x00004361 istore  0x00000001 , 0x00000005 
+ 00024544  0x00004362 nbranch  0x000061cd , 0x00000034 
+ 00024545  0x00004363 branch  0x000061cd , 0x00000029 
+ 00024546  0x00004364 branch  0x000061cf 
+ 00024547  0x00004367 force  0x00000004 , 0x00000007 
+ 00024548  0x00004368 call  0x000061bd 
+ 00024549  0x00004369 fetch  0x00000001 , 0x000000ad 
+ 00024550  0x0000436a istore  0x00000001 , 0x00000005 
+ 00024551  0x0000436b fetch  0x00000001 , 0x00000446 
+ 00024552  0x0000436c istore  0x00000001 , 0x00000005 
+ 00024553  0x0000436d fetch  0x00000001 , 0x000000b4 
+ 00024554  0x0000436e store  0x00000001 , 0x00000047 
+ 00024555  0x0000436f branch  0x000061cf 
+ 00024556  0x00004373 force  0x0000000c , 0x00000007 
+ 00024557  0x00004374 call  0x000061bd 
+ 00024558  0x00004375 setarg  0x00000001 
+ 00024559  0x00004376 istore  0x00000001 , 0x00000005 
+ 00024560  0x00004377 fetch  0x00000002 , 0x0000044a 
+ 00024561  0x00004378 istore  0x00000002 , 0x00000005 
+ 00024562  0x00004379 setarg  0x00000000 
+ 00024563  0x0000437a istore  0x00000003 , 0x00000005 
+ 00024564  0x0000437b setarg  0x00000000 
+ 00024565  0x0000437c istore  0x00000004 , 0x00000005 
+ 00024566  0x0000437d branch  0x000061cf 
+ 00024567  0x00004380 force  0x00000003 , 0x00000007 
+ 00024568  0x00004381 call  0x000061bd 
+ 00024569  0x00004382 fetch  0x00000001 , 0x000041fb 
+ 00024570  0x00004383 istore  0x00000001 , 0x00000005 
+ 00024571  0x00004384 disable  0x00000028 
+ 00024572  0x00004385 call  0x000061cf 
+ 00024573  0x00004386 nrtn  0x00000028 
+ 00024574  0x00004387 nrtn  0x00000029 
+ 00024575  0x00004388 fetch  0x00000001 , 0x00004179 
+ 00024576  0x00004389 rtnbit0  0x00000000 
+ 00024577  0x0000438a call  0x0000600f 
+ 00024578  0x0000438b branch  0x00006019 
+ 00024579  0x0000438f fetch  0x00000001 , 0x0000413e 
+ 00024580  0x00004390 set1  0x00000003 , 0x0000003f 
+ 00024581  0x00004391 store  0x00000001 , 0x0000413e 
+ 00024582  0x00004392 setarg  0x00000101 
+ 00024583  0x00004393 store  0x00000002 , 0x0000044a 
+ 00024584  0x00004394 rtn 
+ 00024585  0x00004397 fetch  0x00000001 , 0x0000413e 
+ 00024586  0x00004398 set0  0x00000003 , 0x0000003f 
+ 00024587  0x00004399 store  0x00000001 , 0x0000413e 
+ 00024588  0x0000439a setarg  0x00000000 
+ 00024589  0x0000439b store  0x00000002 , 0x0000044a 
+ 00024590  0x0000439c rtn 
+ 00024591  0x0000439f jam  0x00000003 , 0x00004179 
+ 00024592  0x000043a0 setarg  0x00000000 
+ 00024593  0x000043a1 store  0x00000004 , 0x000041e3 
+ 00024594  0x000043a2 arg  0x0000417b , 0x00000005 
+ 00024595  0x000043a3 call  0x00006023 
+ 00024596  0x000043a4 arg  0x00004188 , 0x00000005 
+ 00024597  0x000043a5 call  0x00006023 
+ 00024598  0x000043a6 arg  0x000041e7 , 0x00000005 
+ 00024599  0x000043a7 call  0x00006023 
+ 00024600  0x000043a8 branch  0x0000602a 
+ 00024601  0x000043aa arg  0x00004188 , 0x00000005 
+ 00024602  0x000043ab call  0x00006023 
+ 00024603  0x000043ac call  0x0000602a 
+ 00024604  0x000043ad branch  0x0000602d 
+ 00024605  0x000043b1 fetch  0x00000005 , 0x000041e7 
+ 00024606  0x000043b2 store  0x00000005 , 0x00004188 
+ 00024607  0x000043b3 ifetch  0x00000005 , 0x00000006 
+ 00024608  0x000043b4 istore  0x00000005 , 0x00000005 
+ 00024609  0x000043b5 call  0x0000602a 
+ 00024610  0x000043b6 branch  0x0000602d 
+ 00024611  0x000043b9 setarg  0x00ffffff 
+ 00024612  0x000043ba istore  0x00000003 , 0x00000005 
+ 00024613  0x000043bb istore  0x00000003 , 0x00000005 
+ 00024614  0x000043bc istore  0x00000003 , 0x00000005 
+ 00024615  0x000043bd setarg  0x0000007f 
+ 00024616  0x000043be istore  0x00000001 , 0x00000005 
+ 00024617  0x000043bf rtn 
+ 00024618  0x000043c1 setarg  0x00000000 
+ 00024619  0x000043c2 store  0x00000002 , 0x00004177 
+ 00024620  0x000043c3 rtn 
+ 00024621  0x000043c5 fetch  0x00000001 , 0x00004179 
+ 00024622  0x000043c6 set1  0x00000002 , 0x0000003f 
+ 00024623  0x000043c7 store  0x00000001 , 0x00004179 
+ 00024624  0x000043c8 rtn 
+ 00024625  0x000043ca nrtn  0x00000029 
+ 00024626  0x000043cb force  0x00000010 , 0x0000003f 
+ 00024627  0x000043cc call  0x000061b5 
+ 00024628  0x000043cd deposit  0x00000022 
+ 00024629  0x000043ce arg  0x000001dc , 0x00000002 
+ 00024630  0x000043cf iadd  0x00000002 , 0x0000003f 
+ 00024631  0x000043d0 rshift  0x0000003f , 0x0000003f 
+ 00024632  0x000043d1 increase  0x00000001 , 0x0000003f 
+ 00024633  0x000043d2 set0  0x00000000 , 0x0000003f 
+ 00024634  0x000043d3 istore  0x00000004 , 0x00000005 
+ 00024635  0x000043d4 copy  0x0000003f , 0x00000002 
+ 00024636  0x000043d5 setarg  0x00000001 
+ 00024637  0x000043d6 istore  0x00000001 , 0x00000005 
+ 00024638  0x000043d7 fetch  0x00000005 , 0x00004188 
+ 00024639  0x000043d8 istore  0x00000005 , 0x00000005 
+ 00024640  0x000043d9 ifetch  0x00000005 , 0x00000006 
+ 00024641  0x000043da istore  0x00000005 , 0x00000005 
+ 00024642  0x000043db lshift  0x00000002 , 0x00000002 
+ 00024643  0x000043dc storet  0x00000004 , 0x00004173 
+ 00024644  0x000043dd call  0x000061cf 
+ 00024645  0x000043de fetch  0x00000001 , 0x00000031 
+ 00024646  0x000043df set1  0x00000003 , 0x0000003f 
+ 00024647  0x000043e0 store  0x00000001 , 0x00000031 
+ 00024648  0x000043e1 jam  0x00000001 , 0x0000417a 
+ 00024649  0x000043e2 fetch  0x00000004 , 0x00004173 
+ 00024650  0x000043e3 arg  0x0002ee00 , 0x00000002 
+ 00024651  0x000043e4 iadd  0x00000002 , 0x0000003f 
+ 00024652  0x000043e5 store  0x00000004 , 0x000041e3 
+ 00024653  0x000043e6 fetch  0x00000001 , 0x00004179 
+ 00024654  0x000043e7 rtnbit1  0x00000004 
+ 00024655  0x000043e8 jam  0x00000090 , 0x0000007c 
+ 00024656  0x000043e9 rtn 
+ 00024657  0x000043ed force  0x00000002 , 0x00000007 
+ 00024658  0x000043ee call  0x000061bd 
+ 00024659  0x000043ef nbranch  0x000061cd , 0x00000029 
+ 00024660  0x000043f1 branch  0x000061cf 
+ 00024661  0x000043f6 force  0x00000002 , 0x0000003f 
+ 00024662  0x000043f7 call  0x000061b5 
+ 00024663  0x000043f8 fetch  0x00000001 , 0x00000446 
+ 00024664  0x000043f9 istore  0x00000001 , 0x00000005 
+ 00024665  0x000043fa call  0x000061cf 
+ 00024666  0x000043fc fetch  0x00000001 , 0x0000004b 
+ 00024667  0x000043fd set1  0x00000003 , 0x0000003f 
+ 00024668  0x000043fe store  0x00000001 , 0x0000004b 
+ 00024669  0x000043ff jam  0x00000032 , 0x00000072 
+ 00024670  0x00004400 rtn 
+ 00024671  0x00004404 force  0x00000001 , 0x0000003f 
+ 00024672  0x00004405 call  0x000061b5 
+ 00024673  0x00004406 branch  0x000061cf 
+ 00024674  0x00004408 force  0x00000001 , 0x0000003f 
+ 00024675  0x00004409 call  0x000061b5 
+ 00024676  0x0000440a branch  0x000061cd 
+ 00024677  0x0000440e force  0x00000002 , 0x0000003f 
+ 00024678  0x0000440f call  0x000061b5 
+ 00024679  0x00004410 fetch  0x00000001 , 0x0000004c 
+ 00024680  0x00004411 isolate0  0x00000002 , 0x0000003f 
+ 00024681  0x00004412 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00024682  0x00004413 and_into  0x00000001 , 0x0000003f 
+ 00024683  0x00004414 istore  0x00000001 , 0x00000005 
+ 00024684  0x00004415 branch  0x000061cf 
+ 00024685  0x00004419 force  0x00000003 , 0x0000003f 
+ 00024686  0x0000441a call  0x000061b5 
+ 00024687  0x0000441b fetch  0x00000002 , 0x00000051 
+ 00024688  0x0000441c istore  0x00000002 , 0x00000005 
+ 00024689  0x0000441d branch  0x000061cf 
+ 00024690  0x00004420 jam  0x000000fa , 0x00000072 
+ 00024691  0x00004421 force  0x00000002 , 0x0000003f 
+ 00024692  0x00004422 call  0x000061b5 
+ 00024693  0x00004423 fetch  0x00000001 , 0x00000053 
+ 00024694  0x00004424 istore  0x00000001 , 0x00000005 
+ 00024695  0x00004425 branch  0x000061cf 
+ 00024696  0x00004428 force  0x0000000a , 0x0000003f 
+ 00024697  0x00004429 call  0x000061b5 
+ 00024698  0x0000442a arg  0x00000154 , 0x00000006 
+ 00024699  0x0000442b force  0x00000009 , 0x00000039 
+ 00024700  0x0000442d ifetch  0x00000001 , 0x00000006 
+ 00024701  0x0000442e xor_into  0x00000055 , 0x0000003f 
+ 00024702  0x0000442f istore  0x00000001 , 0x00000005 
+ 00024703  0x00004430 loop  0x0000607c 
+ 00024704  0x00004431 branch  0x000061cf 
+ 00024705  0x00004434 branch  0x000061cf 
+ 00024706  0x00004436 branch  0x000061cf 
+ 00024707  0x00004439 rtn  0x00000029 
+ 00024708  0x0000443a call  0x00003997 
+ 00024709  0x0000443b force  0x00000009 , 0x0000003f 
+ 00024710  0x0000443c call  0x000061b5 
+ 00024711  0x0000443d fetch  0x00000002 , 0x0000017b 
+ 00024712  0x0000443e istore  0x00000002 , 0x00000005 
+ 00024713  0x0000443f fetch  0x00000003 , 0x00004140 
+ 00024714  0x00004440 istore  0x00000003 , 0x00000005 
+ 00024715  0x00004441 fetch  0x00000001 , 0x00004143 
+ 00024716  0x00004442 istore  0x00000001 , 0x00000005 
+ 00024717  0x00004443 fetch  0x00000002 , 0x00004144 
+ 00024718  0x00004444 istore  0x00000002 , 0x00000005 
+ 00024719  0x00004445 bmark0  0x00000003 , 0x00006094 
+ 00024720  0x00004446 set0  0x00000003 , 0x00000000 
+ 00024721  0x00004447 call  0x000061cf 
+ 00024722  0x00004448 jam  0x00000013 , 0x0000007c 
+ 00024723  0x00004449 rtn 
+ 00024724  0x0000444b call  0x000061cd 
+ 00024725  0x0000444c jam  0x00000003 , 0x0000007c 
+ 00024726  0x0000444d jam  0x00000013 , 0x0000007d 
+ 00024727  0x0000444e rtn 
+ 00024728  0x00004451 arg  0x00000200 , 0x00000002 
+ 00024729  0x00004452 branch  0x0000609c , 0x00000029 
+ 00024730  0x00004453 deposit  0x00000028 
+ 00024731  0x00004454 branch  0x0000609d 
+ 00024732  0x00004456 deposit  0x00000022 
+ 00024733  0x00004458 deposit  0x00000021 
+ 00024734  0x00004459 iadd  0x00000002 , 0x0000003f 
+ 00024735  0x0000445a and_into  0x000001fc , 0x0000003f 
+ 00024736  0x0000445b store  0x00000004 , 0x00000034 
+ 00024737  0x0000445c force  0x00000005 , 0x0000003f 
+ 00024738  0x0000445d call  0x000061b5 
+ 00024739  0x0000445e fetch  0x00000004 , 0x00000034 
+ 00024740  0x0000445f rshift  0x0000003f , 0x0000003f 
+ 00024741  0x00004460 istore  0x00000004 , 0x00000005 
+ 00024742  0x00004461 branch  0x000061cf 
+ 00024743  0x00004464 force  0x0000000a , 0x0000003f 
+ 00024744  0x00004465 call  0x000061b5 
+ 00024745  0x00004466 arg  0x00000455 , 0x00000006 
+ 00024746  0x00004467 ifetch  0x00000009 , 0x00000006 
+ 00024747  0x00004468 istore  0x00000009 , 0x00000005 
+ 00024748  0x00004469 branch  0x000061cf 
+ 00024749  0x0000446e force  0x00000003 , 0x0000003f 
+ 00024750  0x0000446f call  0x000061b5 
+ 00024751  0x00004470 setarg  0x00000114 
+ 00024752  0x00004471 istore  0x00000002 , 0x00000005 
+ 00024753  0x00004472 branch  0x000061cf 
+ 00024754  0x00004476 force  0x00000001 , 0x0000003f 
+ 00024755  0x00004477 call  0x000061b5 
+ 00024756  0x00004480 branch  0x000061cf 
+ 00024757  0x00004483 branch  0x000060ba , 0x00000029 
+ 00024758  0x00004484 jam  0x00000000 , 0x000000ad 
+ 00024759  0x00004485 fetch  0x00000001 , 0x00000031 
+ 00024760  0x00004486 set1  0x00000004 , 0x0000003f 
+ 00024761  0x00004487 store  0x00000001 , 0x00000031 
+ 00024762  0x00004489 jam  0x00000000 , 0x000000af 
+ 00024763  0x0000448a force  0x00000007 , 0x0000003f 
+ 00024764  0x0000448b call  0x000061b5 
+ 00024765  0x0000448c fetch  0x00000001 , 0x000000ad 
+ 00024766  0x0000448d istore  0x00000001 , 0x00000005 
+ 00024767  0x0000448e setarg  0x00000000 
+ 00024768  0x0000448f istore  0x00000001 , 0x00000005 
+ 00024769  0x00004490 fetch  0x00000001 , 0x000000af 
+ 00024770  0x00004491 istore  0x00000001 , 0x00000005 
+ 00024771  0x00004492 setarg  0x00000006 
+ 00024772  0x00004493 istore  0x00000001 , 0x00000005 
+ 00024773  0x00004494 setarg  0x00000002 
+ 00024774  0x00004495 istore  0x00000001 , 0x00000005 
+ 00024775  0x00004496 fetch  0x00000001 , 0x000000ab 
+ 00024776  0x00004497 istore  0x00000001 , 0x00000005 
+ 00024777  0x00004498 branch  0x000061cd , 0x00000029 
+ 00024778  0x00004499 branch  0x000061ca 
+ 00024779  0x0000449d force  0x00000003 , 0x0000003f 
+ 00024780  0x0000449e call  0x000061b5 
+ 00024781  0x0000449f fetch  0x00000001 , 0x000000ad 
+ 00024782  0x000044a0 istore  0x00000001 , 0x00000005 
+ 00024783  0x000044a1 force  0x00000013 , 0x0000003f 
+ 00024784  0x000044a2 istore  0x00000001 , 0x00000005 
+ 00024785  0x000044a3 branch  0x000061cf 
+ 00024786  0x000044a6 force  0x00000002 , 0x0000003f 
+ 00024787  0x000044a7 call  0x000061b5 
+ 00024788  0x000044a8 fetch  0x00000001 , 0x00004171 
+ 00024789  0x000044a9 istore  0x00000001 , 0x00000005 
+ 00024790  0x000044aa branch  0x000061cf 
+ 00024791  0x000044ae force  0x00000002 , 0x0000003f 
+ 00024792  0x000044af call  0x000061b5 
+ 00024793  0x000044b0 setarg  0x00000005 
+ 00024794  0x000044b1 istore  0x00000001 , 0x00000005 
+ 00024795  0x000044b2 branch  0x000061cf 
+ 00024796  0x000044b5 fetch  0x00000001 , 0x00000030 
+ 00024797  0x000044b6 set1  0x00000004 , 0x0000003f 
+ 00024798  0x000044b7 store  0x00000001 , 0x00000030 
+ 00024799  0x000044b8 copy  0x00000022 , 0x0000003f 
+ 00024800  0x000044b9 store  0x00000004 , 0x00000465 
+ 00024801  0x000044ba fetch  0x00000001 , 0x0000044d 
+ 00024802  0x000044bb bbit1  0x00000003 , 0x000060eb 
+ 00024803  0x000044bc set1  0x00000003 , 0x0000003f 
+ 00024804  0x000044bd store  0x00000001 , 0x0000044d 
+ 00024805  0x000044be jam  0x00000005 , 0x00000b7d 
+ 00024806  0x000044bf call  0x00007c27 
+ 00024807  0x000044c0 call  0x00004825 
+ 00024808  0x000044c1 force  0x00000001 , 0x0000003f 
+ 00024809  0x000044c2 call  0x000061b5 
+ 00024810  0x000044c3 branch  0x000061cf 
+ 00024811  0x000044c5 jam  0x00000000 , 0x00000048 
+ 00024812  0x000044c6 rtn 
+ 00024813  0x000044c9 force  0x00000006 , 0x0000003f 
+ 00024814  0x000044ca call  0x000061b5 
+ 00024815  0x000044cb fetch  0x00000005 , 0x000046fd 
+ 00024816  0x000044cc istore  0x00000005 , 0x00000005 
+ 00024817  0x000044cd branch  0x000061cf 
+ 00024818  0x000044d0 force  0x00000009 , 0x0000003f 
+ 00024819  0x000044d1 call  0x000061b5 
+ 00024820  0x000044d2 fetch  0x00000008 , 0x00004138 
+ 00024821  0x000044d3 istore  0x00000008 , 0x00000005 
+ 00024822  0x000044d4 branch  0x000061cf 
+ 00024823  0x000044d7 call  0x0000481b 
+ 00024824  0x000044d8 fetch  0x00000001 , 0x00004132 
+ 00024825  0x000044d9 beq  0x00000001 , 0x000060fd 
+ 00024826  0x000044da jam  0x00000001 , 0x000007dd 
+ 00024827  0x000044db fetch  0x00000001 , 0x00004793 
+ 00024828  0x000044dc rtnne  0x00000001 
+ 00024829  0x000044de jam  0x00000013 , 0x000007db 
+ 00024830  0x000044df rtn 
+ 00024831  0x000044e2 call  0x00006209 
+ 00024832  0x000044e3 jam  0x00000099 , 0x0000007c 
+ 00024833  0x000044e4 jam  0x00000003 , 0x000007db 
+ 00024834  0x000044e5 rtn 
+ 00024835  0x000044e9 call  0x00006209 
+ 00024836  0x000044ea jam  0x0000003d , 0x0000007c 
+ 00024837  0x000044eb jam  0x00000007 , 0x000007db 
+ 00024838  0x000044ec rtn 
+ 00024839  0x000044ef arg  0x00000868 , 0x00000011 
+ 00024840  0x000044f0 arg  0x00000888 , 0x00000012 
+ 00024841  0x000044f1 arg  0x00000010 , 0x00000039 
+ 00024842  0x000044f2 call  0x00007f25 
+ 00024843  0x000044f3 branch  0x00006111 , 0x00000005 
+ 00024844  0x000044f4 jam  0x00000000 , 0x000007db 
+ 00024845  0x000044f5 call  0x00007811 
+ 00024846  0x000044f6 jam  0x00000024 , 0x0000007e 
+ 00024847  0x000044f7 jam  0x00000040 , 0x0000007d 
+ 00024848  0x000044f8 branch  0x00005bc9 
+ 00024849  0x000044fa jam  0x0000000a , 0x000007db 
+ 00024850  0x000044fb call  0x0000780f 
+ 00024851  0x000044fc jam  0x00000040 , 0x0000007d 
+ 00024852  0x000044fd branch  0x00005cf5 
+ 00024853  0x00004502 jam  0x00000040 , 0x0000007c 
+ 00024854  0x00004503 rtn 
+ 00024855  0x0000450a jam  0x0000003d , 0x0000007c 
+ 00024856  0x0000450c rtn 
+ 00024857  0x00004513 jam  0x00000000 , 0x000007e2 
+ 00024858  0x00004514 force  0x00000004 , 0x0000003f 
+ 00024859  0x00004515 call  0x000061b5 
+ 00024860  0x00004516 force  0x00000001 , 0x0000003f 
+ 00024861  0x00004517 istore  0x00000001 , 0x00000005 
+ 00024862  0x00004518 force  0x00000001 , 0x0000003f 
+ 00024863  0x00004519 istore  0x00000001 , 0x00000005 
+ 00024864  0x0000451a force  0x00000030 , 0x0000003f 
+ 00024865  0x0000451b istore  0x00000001 , 0x00000005 
+ 00024866  0x0000451c call  0x00006216 
+ 00024867  0x0000451d branch  0x000061cf , 0x00000001 
+ 00024868  0x0000451e branch  0x000061cd 
+ 00024869  0x00004522 force  0x00000011 , 0x0000003f 
+ 00024870  0x00004523 call  0x000061b5 
+ 00024871  0x00004524 fetch  0x00000001 , 0x000007e2 
+ 00024872  0x00004525 arg  0x000047ac , 0x00000006 
+ 00024873  0x00004526 iadd  0x00000006 , 0x00000006 
+ 00024874  0x00004527 ifetch  0x00000008 , 0x00000006 
+ 00024875  0x00004528 istore  0x00000008 , 0x00000005 
+ 00024876  0x00004529 ifetch  0x00000008 , 0x00000006 
+ 00024877  0x0000452a istore  0x00000008 , 0x00000005 
+ 00024878  0x0000452b fetch  0x00000001 , 0x000007e2 
+ 00024879  0x0000452c increase  0x00000010 , 0x0000003f 
+ 00024880  0x0000452d store  0x00000001 , 0x000007e2 
+ 00024881  0x0000452e call  0x00006216 
+ 00024882  0x0000452f branch  0x000061cf , 0x00000001 
+ 00024883  0x00004530 branch  0x000061cd 
+ 00024884  0x00004534 jam  0x00000006 , 0x000007da 
+ 00024885  0x00004535 jam  0x0000003f , 0x0000007c 
+ 00024886  0x00004536 rtn 
+ 00024887  0x0000453a force  0x00000011 , 0x0000003f 
+ 00024888  0x0000453b call  0x000061b5 
+ 00024889  0x0000453c arg  0x00000868 , 0x00000006 
+ 00024890  0x0000453d ifetch  0x00000008 , 0x00000006 
+ 00024891  0x0000453e istore  0x00000008 , 0x00000005 
+ 00024892  0x0000453f ifetch  0x00000008 , 0x00000006 
+ 00024893  0x00004540 istore  0x00000008 , 0x00000005 
+ 00024894  0x00004541 branch  0x000061cd 
+ 00024895  0x00004544 call  0x000061d9 
+ 00024896  0x00004546 jam  0x00000040 , 0x0000007c 
+ 00024897  0x00004547 rtn 
+ 00024898  0x0000454b call  0x00006216 
+ 00024899  0x0000454c call  0x0000774d , 0x00000001 
+ 00024900  0x0000454d force  0x00000011 , 0x0000003f 
+ 00024901  0x0000454e call  0x000061b5 
+ 00024902  0x0000454f arg  0x00000838 , 0x00000006 
+ 00024903  0x00004550 ifetch  0x00000008 , 0x00000006 
+ 00024904  0x00004551 istore  0x00000008 , 0x00000005 
+ 00024905  0x00004552 ifetch  0x00000008 , 0x00000006 
+ 00024906  0x00004553 istore  0x00000008 , 0x00000005 
+ 00024907  0x00004554 call  0x00006216 
+ 00024908  0x00004555 nbranch  0x000061cd , 0x00000001 
+ 00024909  0x00004556 branch  0x000061cf , 0x00000001 
+ 00024910  0x0000455a jam  0x0000000f , 0x000007db 
+ 00024911  0x0000455c call  0x00006209 
+ 00024912  0x0000455d jam  0x0000000b , 0x0000007c 
+ 00024913  0x0000455e call  0x00006221 
+ 00024914  0x0000455f branch  0x00007785 , 0x00000001 
+ 00024915  0x00004560 branch  0x0000778f 
+ 00024916  0x00004562 call  0x00006205 
+ 00024917  0x00004564 jam  0x00000041 , 0x0000007c 
+ 00024918  0x00004565 rtn 
+ 00024919  0x00004568 force  0x00000011 , 0x0000003f 
+ 00024920  0x00004569 call  0x000061b5 
+ 00024921  0x0000456a arg  0x00000868 , 0x00000006 
+ 00024922  0x0000456b ifetch  0x00000008 , 0x00000006 
+ 00024923  0x0000456c istore  0x00000008 , 0x00000005 
+ 00024924  0x0000456d ifetch  0x00000008 , 0x00000006 
+ 00024925  0x0000456e istore  0x00000008 , 0x00000005 
+ 00024926  0x0000456f call  0x00006216 
+ 00024927  0x00004570 nbranch  0x000061cd , 0x00000001 
+ 00024928  0x00004571 branch  0x000061cf , 0x00000001 
+ 00024929  0x00004574 force  0x00000003 , 0x0000003f 
+ 00024930  0x00004575 call  0x000061b5 
+ 00024931  0x00004576 setarg  0x0000fffe 
+ 00024932  0x00004577 istore  0x00000002 , 0x00000005 
+ 00024933  0x00004578 branch  0x000061cd 
+ 00024934  0x0000457b branch  0x000061cf 
+ 00024935  0x0000457d branch  0x000061cf 
+ 00024936  0x0000457f branch  0x000061cf 
+ 00024937  0x00004581 branch  0x000061cf 
+ 00024938  0x00004587 call  0x00006225 
+ 00024939  0x00004588 arg  0x00004140 , 0x00000011 
+ 00024940  0x00004589 call  0x0000622b 
+ 00024941  0x0000458a force  0x00000011 , 0x0000003f 
+ 00024942  0x0000458b call  0x000061b5 
+ 00024943  0x0000458c arg  0x0000050f , 0x00000011 
+ 00024944  0x0000458d arg  0x000004ef , 0x00000012 
+ 00024945  0x0000458e call  0x00007467 
+ 00024946  0x0000458f nbranch  0x000061c4 , 0x00000029 
+ 00024947  0x00004590 branch  0x000061ca 
+ 00024948  0x00004593 call  0x00006225 
+ 00024949  0x00004594 arg  0x00000040 , 0x00000011 
+ 00024950  0x00004595 call  0x0000736a 
+ 00024951  0x00004597 force  0x00000011 , 0x0000003f 
+ 00024952  0x00004598 call  0x000061b5 
+ 00024953  0x00004599 arg  0x000004ef , 0x00000006 
+ 00024954  0x0000459a call  0x00007e35 
+ 00024955  0x0000459b fetch  0x00000001 , 0x00000055 
+ 00024956  0x0000459c beq  0x00000019 , 0x000061cf 
+ 00024957  0x0000459d beq  0x00000018 , 0x000061cf 
+ 00024958  0x0000459e branch  0x000061ca 
+ 00024959  0x000045a1 fetch  0x00000001 , 0x000007e1 
+ 00024960  0x000045a2 branch  0x00006185 , 0x00000034 
+ 00024961  0x000045a3 call  0x00006216 
+ 00024962  0x000045a4 call  0x00006209 , 0x00000001 
+ 00024963  0x000045a5 ncall  0x00006205 , 0x00000001 
+ 00024964  0x000045a6 branch  0x00006186 
+ 00024965  0x000045a8 call  0x00006209 
+ 00024966  0x000045aa call  0x00006225 
+ 00024967  0x000045ab branch  0x00006177 
+ 00024968  0x000045ae arg  0x00004140 , 0x00000011 
+ 00024969  0x000045af call  0x0000739d 
+ 00024970  0x000045b0 force  0x00000005 , 0x0000003f 
+ 00024971  0x000045b1 call  0x000061b5 
+ 00024972  0x000045b2 fetch  0x00000004 , 0x0000051f 
+ 00024973  0x000045b3 istore  0x00000004 , 0x00000005 
+ 00024974  0x000045b4 arg  0x00000451 , 0x00000002 
+ 00024975  0x000045b5 call  0x000061fb 
+ 00024976  0x000045b6 call  0x0000749b 
+ 00024977  0x000045b7 call  0x00006216 
+ 00024978  0x000045b8 branch  0x00006197 , 0x00000001 
+ 00024979  0x000045b9 jam  0x00000001 , 0x00000454 
+ 00024980  0x000045ba fetch  0x00000001 , 0x000007e1 
+ 00024981  0x000045bb rtn  0x00000034 
+ 00024982  0x000045bc jam  0x0000000b , 0x0000007c 
+ 00024983  0x000045be fetch  0x00000001 , 0x0000425e 
+ 00024984  0x000045bf rtn  0x00000034 
+ 00024985  0x000045c0 call  0x00006216 
+ 00024986  0x000045c1 call  0x00004852 , 0x00000001 
+ 00024987  0x000045c3 call  0x00006216 
+ 00024988  0x000045c4 nbranch  0x000061a1 , 0x00000001 
+ 00024989  0x000045c5 fetch  0x00000001 , 0x00000453 
+ 00024990  0x000045c6 rtn  0x00000034 
+ 00024991  0x000045c7 jam  0x0000000f , 0x0000007c 
+ 00024992  0x000045c8 rtn 
+ 00024993  0x000045ca rtnmark0  0x00000021 
+ 00024994  0x000045cb set0  0x00000021 , 0x00000000 
+ 00024995  0x000045cc jam  0x0000000f , 0x0000007c 
+ 00024996  0x000045cd rtn 
+ 00024997  0x000045d2 call  0x00006225 
+ 00024998  0x000045d3 call  0x000073a0 
+ 00024999  0x000045d4 force  0x00000011 , 0x0000003f 
+ 00025000  0x000045d5 call  0x000061b5 
+ 00025001  0x000045d6 arg  0x000004ef , 0x00000006 
+ 00025002  0x000045d7 call  0x00007e35 
+ 00025003  0x000045d8 branch  0x000061ca 
+ 00025004  0x000045db force  0x00000001 , 0x0000003f 
+ 00025005  0x000045dc call  0x000061b5 
+ 00025006  0x000045dd branch  0x000061ca 
+ 00025007  0x000045e0 force  0x00000002 , 0x0000003f 
+ 00025008  0x000045e1 call  0x000061b5 
+ 00025009  0x000045e2 force  0x00000010 , 0x0000003f 
+ 00025010  0x000045e3 istore  0x00000001 , 0x00000005 
+ 00025011  0x000045e4 store  0x00000001 , 0x00000054 
+ 00025012  0x000045e5 branch  0x000061ca 
+ 00025013  0x000045e9 lshift3  0x0000003f , 0x0000003f 
+ 00025014  0x000045ea or_into  0x00000007 , 0x0000003f 
+ 00025015  0x000045eb store  0x00000001 , 0x00000432 
+ 00025016  0x000045ec arg  0x00000011 , 0x00000039 
+ 00025017  0x000045ed arg  0x00000434 , 0x00000005 
+ 00025018  0x000045ee call  0x00007e3f 
+ 00025019  0x000045ef arg  0x00000434 , 0x00000005 
+ 00025020  0x000045f0 rtn 
+ 00025021  0x000045f3 and  0x0000003f , 0x0000007f , 0x00000011 
+ 00025022  0x000045f4 jam  0x0000007f , 0x00000048 
+ 00025023  0x000045f5 deposit  0x00000007 
+ 00025024  0x000045f6 call  0x000061b5 
+ 00025025  0x000045f7 deposit  0x00000011 
+ 00025026  0x000045f8 istore  0x00000001 , 0x00000005 
+ 00025027  0x000045f9 rtn 
+ 00025028  0x000045fc fetch  0x00000001 , 0x00000048 
+ 00025029  0x000045fd lshift  0x0000003f , 0x0000003f 
+ 00025030  0x000045fe fetcht  0x00000001 , 0x0000004c 
+ 00025031  0x000045ff isolate1  0x00000001 , 0x00000002 
+ 00025032  0x00004600 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00025033  0x00004601 branch  0x000061d4 
+ 00025034  0x00004605 fetcht  0x00000001 , 0x0000004c 
+ 00025035  0x00004606 and_into  0x00000001 , 0x00000002 
+ 00025036  0x00004607 branch  0x000061d0 
+ 00025037  0x0000460a force  0x00000000 , 0x00000002 
+ 00025038  0x0000460b branch  0x000061d0 
+ 00025039  0x0000460e force  0x00000001 , 0x00000002 
+ 00025040  0x00004610 fetch  0x00000001 , 0x00000048 
+ 00025041  0x00004611 lshift  0x0000003f , 0x0000003f 
+ 00025042  0x00004612 setflag  0x00000029 , 0x00000000 , 0x0000003f 
+ 00025043  0x00004613 ixor  0x00000002 , 0x0000003f 
+ 00025044  0x00004615 store  0x00000001 , 0x00000433 
+ 00025045  0x00004616 jam  0x00000000 , 0x00000048 
+ 00025046  0x00004617 call  0x000061e0 
+ 00025047  0x00004618 enable  0x00000028 
+ 00025048  0x00004619 rtn 
+ 00025049  0x0000461c set1  0x00000025 , 0x00000000 
+ 00025050  0x0000461d bpatch  0x000000e4 , 0x0000403c 
+ 00025051  0x0000461e fetch  0x00000001 , 0x00000048 
+ 00025052  0x0000461f branch  0x000061e0 , 0x00000034 
+ 00025053  0x00004620 fetch  0x00000001 , 0x00000078 
+ 00025054  0x00004621 nrtn  0x00000034 
+ 00025055  0x00004622 branch  0x000061ea 
+ 00025056  0x00004624 fetch  0x00000001 , 0x00000078 
+ 00025057  0x00004625 branch  0x000061f0 , 0x00000034 
+ 00025058  0x00004626 fetch  0x00000003 , 0x00000078 
+ 00025059  0x00004627 store  0x00000003 , 0x00000048 
+ 00025060  0x00004628 fetcht  0x00000001 , 0x0000007b 
+ 00025061  0x00004629 fetch  0x00000001 , 0x0000004c 
+ 00025062  0x0000462a set0  0x00000001 , 0x0000003f 
+ 00025063  0x0000462b ior  0x00000002 , 0x0000003f 
+ 00025064  0x0000462c store  0x00000001 , 0x0000004c 
+ 00025065  0x0000462d jam  0x00000000 , 0x00000078 
+ 00025066  0x0000462f fetch  0x00000001 , 0x0000007c 
+ 00025067  0x00004630 rtn  0x00000034 
+ 00025068  0x00004631 fetch  0x00000004 , 0x0000007c 
+ 00025069  0x00004632 store  0x00000004 , 0x00000078 
+ 00025070  0x00004633 jam  0x00000000 , 0x0000007c 
+ 00025071  0x00004634 rtn 
+ 00025072  0x00004636 fetch  0x00000001 , 0x0000007c 
+ 00025073  0x00004637 rtn  0x00000034 
+ 00025074  0x00004638 fetch  0x00000003 , 0x0000007c 
+ 00025075  0x00004639 store  0x00000003 , 0x00000048 
+ 00025076  0x0000463a fetcht  0x00000001 , 0x0000007f 
+ 00025077  0x0000463b fetch  0x00000001 , 0x0000004c 
+ 00025078  0x0000463c set0  0x00000001 , 0x0000003f 
+ 00025079  0x0000463d ior  0x00000002 , 0x0000003f 
+ 00025080  0x0000463e store  0x00000001 , 0x0000004c 
+ 00025081  0x0000463f jam  0x00000000 , 0x0000007c 
+ 00025082  0x00004640 rtn 
+ 00025083  0x00004644 set1  0x00000025 , 0x00000000 
+ 00025084  0x00004645 bpatch  0x000000e5 , 0x0000403c 
+ 00025085  0x00004646 fetch  0x00000001 , 0x0000004c 
+ 00025086  0x00004647 copy  0x0000003f , 0x00000013 
+ 00025087  0x00004648 ifetch  0x00000001 , 0x00000002 
+ 00025088  0x00004649 call  0x00005d12 
+ 00025089  0x0000464a call  0x000061c4 
+ 00025090  0x0000464b copy  0x00000013 , 0x0000003f 
+ 00025091  0x0000464c store  0x00000001 , 0x0000004c 
+ 00025092  0x0000464d rtn 
+ 00025093  0x00004650 fetcht  0x00000001 , 0x0000004c 
+ 00025094  0x00004651 set0  0x00000000 , 0x00000002 
+ 00025095  0x00004652 storet  0x00000001 , 0x0000004c 
+ 00025096  0x00004653 rtn 
+ 00025097  0x00004656 fetcht  0x00000001 , 0x0000004c 
+ 00025098  0x00004657 set1  0x00000000 , 0x00000002 
+ 00025099  0x00004658 storet  0x00000001 , 0x0000004c 
+ 00025100  0x00004659 rtn 
+ 00025101  0x0000465d nsetflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00025102  0x0000465e fetcht  0x00000001 , 0x0000004c 
+ 00025103  0x0000465f ixor  0x00000002 , 0x0000003f 
+ 00025104  0x00004660 isolate1  0x00000001 , 0x0000003f 
+ 00025105  0x00004661 rtn 
+ 00025106  0x00004665 fetch  0x00000001 , 0x0000004c 
+ 00025107  0x00004666 setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00025108  0x00004667 store  0x00000001 , 0x0000004c 
+ 00025109  0x00004668 rtn 
+ 00025110  0x0000466c fetch  0x00000001 , 0x000007e0 
+ 00025111  0x0000466d compare  0x00000001 , 0x0000003f , 0x0000007f 
+ 00025112  0x0000466e rtn 
+ 00025113  0x00004670 fetch  0x00000001 , 0x000007e0 
+ 00025114  0x00004671 set1  0x00000007 , 0x0000003f 
+ 00025115  0x00004672 store  0x00000001 , 0x000007e0 
+ 00025116  0x00004673 rtn 
+ 00025117  0x00004675 fetch  0x00000001 , 0x000007e0 
+ 00025118  0x00004676 set0  0x00000007 , 0x0000003f 
+ 00025119  0x00004677 store  0x00000001 , 0x000007e0 
+ 00025120  0x00004678 rtn 
+ 00025121  0x0000467a fetch  0x00000001 , 0x000007e0 
+ 00025122  0x0000467b isolate1  0x00000007 , 0x0000003f 
+ 00025123  0x0000467c store  0x00000001 , 0x000007e0 
+ 00025124  0x0000467d rtn 
+ 00025125  0x00004681 arg  0x000004ef , 0x00000005 
+ 00025126  0x00004683 force  0x00000010 , 0x00000039 
+ 00025127  0x00004686 random  0x0000003f 
+ 00025128  0x00004687 istore  0x00000001 , 0x00000005 
+ 00025129  0x00004688 loop  0x00006227 
+ 00025130  0x00004689 rtn 
+ 00025131  0x0000468c call  0x0000736e 
+ 00025132  0x0000468d arg  0x00004262 , 0x00000011 
+ 00025133  0x0000468e arg  0x0000051f , 0x00000012 
+ 00025134  0x0000468f ifetch  0x00000008 , 0x00000011 
+ 00025135  0x00004690 fetcht  0x00000001 , 0x00000030 
+ 00025136  0x00004691 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00025137  0x00004692 storet  0x00000001 , 0x00000030 
+ 00025138  0x00004693 copy  0x00000011 , 0x00000005 
+ 00025139  0x00004694 call  0x00007467 
+ 00025140  0x00004695 branch  0x00003229 
+ 00025141  0x0000469d set1  0x00000025 , 0x00000000 
+ 00025142  0x0000469e bpatch  0x000000e6 , 0x0000403c 
+ 00025143  0x0000469f fetch  0x00000001 , 0x0000007c 
+ 00025144  0x000046a0 branch  0x0000623c , 0x00000034 
+ 00025145  0x000046a1 call  0x000061d9 
+ 00025146  0x000046a2 fetch  0x00000001 , 0x0000007c 
+ 00025147  0x000046a3 nrtn  0x00000034 
+ 00025148  0x000046a5 fetch  0x00000001 , 0x00000055 
+ 00025149  0x000046a6 rtn  0x00000034 
+ 00025150  0x000046aa beq  0x00000004 , 0x0000628d 
+ 00025151  0x000046ab beq  0x00000005 , 0x00006292 
+ 00025152  0x000046ac beq  0x00000002 , 0x00006284 
+ 00025153  0x000046ad beq  0x00000003 , 0x0000629a 
+ 00025154  0x000046ae beq  0x0000000e , 0x00006287 
+ 00025155  0x000046af beq  0x00000006 , 0x000062b6 
+ 00025156  0x000046b0 beq  0x00000007 , 0x000062ce 
+ 00025157  0x000046b1 beq  0x00000009 , 0x000062cf 
+ 00025158  0x000046b2 beq  0x0000000a , 0x000062d8 
+ 00025159  0x000046b3 beq  0x0000000b , 0x000062dc 
+ 00025160  0x000046b4 beq  0x0000000c , 0x000062a4 
+ 00025161  0x000046b5 beq  0x0000000d , 0x000062a7 
+ 00025162  0x000046b6 beq  0x0000000f , 0x000062ad 
+ 00025163  0x000046b7 beq  0x00000012 , 0x00006277 
+ 00025164  0x000046b8 beq  0x00000013 , 0x0000629a 
+ 00025165  0x000046b9 beq  0x00000010 , 0x0000627a 
+ 00025166  0x000046ba beq  0x00000014 , 0x00006274 
+ 00025167  0x000046bb beq  0x00000015 , 0x0000629a 
+ 00025168  0x000046bc beq  0x00000016 , 0x0000626e 
+ 00025169  0x000046bd beq  0x00000018 , 0x00006273 
+ 00025170  0x000046be beq  0x00000017 , 0x00006267 
+ 00025171  0x000046bf beq  0x00000019 , 0x0000626d 
+ 00025172  0x000046c0 beq  0x0000001a , 0x00006258 
+ 00025173  0x000046c1 beq  0x0000001b , 0x00006262 
+ 00025174  0x000046c2 jam  0x00000000 , 0x00000055 
+ 00025175  0x000046c4 rtn 
+ 00025176  0x000046c6 fetch  0x00000001 , 0x0000044d 
+ 00025177  0x000046c7 rtnbit0  0x00000002 
+ 00025178  0x000046c8 rtnbit0  0x00000003 
+ 00025179  0x000046c9 jam  0x00000000 , 0x00000055 
+ 00025180  0x000046ca call  0x0000625e 
+ 00025181  0x000046cb branch  0x00006e41 
+ 00025182  0x000046ce fetch  0x00000001 , 0x00000177 
+ 00025183  0x000046cf rtnbit0  0x00000001 
+ 00025184  0x000046d0 jam  0x0000000a , 0x00000055 
+ 00025185  0x000046d1 rtn 
+ 00025186  0x000046d4 arg  0x0000000b , 0x00000007 
+ 00025187  0x000046d5 call  0x00007e53 
+ 00025188  0x000046d6 nrtn  0x00000034 
+ 00025189  0x000046d7 jam  0x0000001a , 0x00000055 
+ 00025190  0x000046d8 rtn 
+ 00025191  0x000046db fetch  0x00000001 , 0x00000177 
+ 00025192  0x000046dc set0  0x00000000 , 0x0000003f 
+ 00025193  0x000046dd store  0x00000001 , 0x00000177 
+ 00025194  0x000046de jam  0x00000019 , 0x00000055 
+ 00025195  0x000046df jam  0x0000000b , 0x0000007c 
+ 00025196  0x000046e0 rtn 
+ 00025197  0x000046e2 rtn 
+ 00025198  0x000046e4 fetch  0x00000001 , 0x00000450 
+ 00025199  0x000046e5 rtnne  0x00000002 
+ 00025200  0x000046e6 call  0x000062de 
+ 00025201  0x000046e7 jam  0x00000018 , 0x00000055 
+ 00025202  0x000046e8 rtn 
+ 00025203  0x000046eb rtn 
+ 00025204  0x000046ed jam  0x00000015 , 0x00000055 
+ 00025205  0x000046ee jam  0x00000083 , 0x0000007c 
+ 00025206  0x000046ef rtn 
+ 00025207  0x000046f1 jam  0x00000013 , 0x00000055 
+ 00025208  0x000046f2 jam  0x00000025 , 0x0000007c 
+ 00025209  0x000046f3 rtn 
+ 00025210  0x000046f6 fetch  0x00000001 , 0x00004748 
+ 00025211  0x000046f7 rtneq  0x00000000 
+ 00025212  0x000046f8 beq  0x00000001 , 0x00006282 
+ 00025213  0x000046f9 arg  0x0000000a , 0x00000007 
+ 00025214  0x000046fa call  0x00007e53 
+ 00025215  0x000046fb nrtn  0x00000034 
+ 00025216  0x000046fc jam  0x00000000 , 0x00004748 
+ 00025217  0x000046fd branch  0x0000629b 
+ 00025218  0x000046ff rtn  0x00000029 
+ 00025219  0x00004700 branch  0x000062b6 
+ 00025220  0x00004703 jam  0x00000003 , 0x00000055 
+ 00025221  0x00004704 jam  0x00000027 , 0x0000007c 
+ 00025222  0x00004705 rtn 
+ 00025223  0x00004707 jam  0x00000013 , 0x0000007c 
+ 00025224  0x00004708 set1  0x00000003 , 0x00000000 
+ 00025225  0x00004709 jam  0x00000005 , 0x00000055 
+ 00025226  0x0000470a setarg  0x000001ff 
+ 00025227  0x0000470b store  0x00000002 , 0x0000044e 
+ 00025228  0x0000470c rtn 
+ 00025229  0x0000470e jam  0x00000005 , 0x00000055 
+ 00025230  0x0000470f jam  0x000000ff , 0x0000044e 
+ 00025231  0x00004710 set0  0x00000022 , 0x00000000 
+ 00025232  0x00004711 jam  0x00000033 , 0x0000007c 
+ 00025233  0x00004712 branch  0x00005b6f 
+ 00025234  0x00004714 rtnmark1  0x00000022 
+ 00025235  0x00004715 fetch  0x00000002 , 0x0000044e 
+ 00025236  0x00004716 sub  0x0000003f , 0x00000001 , 0x0000003f 
+ 00025237  0x00004717 branch  0x00006298 , 0x00000005 
+ 00025238  0x00004718 store  0x00000002 , 0x0000044e 
+ 00025239  0x00004719 rtn 
+ 00025240  0x0000471b jam  0x0000000e , 0x00000055 
+ 00025241  0x0000471c rtn 
+ 00025242  0x0000471f rtn 
+ 00025243  0x00004722 fetch  0x00000001 , 0x0000044d 
+ 00025244  0x00004723 rtnbit0  0x00000003 
+ 00025245  0x00004724 rtnbit0  0x00000002 
+ 00025246  0x00004725 fetch  0x00000001 , 0x00000177 
+ 00025247  0x00004726 set0  0x00000002 , 0x0000003f 
+ 00025248  0x00004727 store  0x00000001 , 0x00000177 
+ 00025249  0x00004728 jam  0x00000013 , 0x0000007c 
+ 00025250  0x00004729 jam  0x00000010 , 0x00000055 
+ 00025251  0x0000472a rtn 
+ 00025252  0x0000472d jam  0x0000000d , 0x00000055 
+ 00025253  0x0000472e jam  0x00000031 , 0x0000007c 
+ 00025254  0x0000472f rtn 
+ 00025255  0x00004732 fetch  0x00000001 , 0x0000044d 
+ 00025256  0x00004733 rtnbit0  0x00000002 
+ 00025257  0x00004734 jam  0x00000000 , 0x00000055 
+ 00025258  0x00004736 rtn 
+ 00025259  0x00004738 jam  0x00000006 , 0x00000055 
+ 00025260  0x00004739 rtn 
+ 00025261  0x0000473c fetch  0x00000001 , 0x0000044e 
+ 00025262  0x0000473d increase  0xffffffff , 0x0000003f 
+ 00025263  0x0000473e branch  0x000062b2 , 0x00000034 
+ 00025264  0x0000473f store  0x00000001 , 0x0000044e 
+ 00025265  0x00004740 rtn 
+ 00025266  0x00004742 jam  0x00000007 , 0x0000007c 
+ 00025267  0x00004743 jam  0x00000016 , 0x00000446 
+ 00025268  0x00004744 jam  0x00000000 , 0x00000055 
+ 00025269  0x00004745 rtn 
+ 00025270  0x00004748 fetch  0x00000001 , 0x00000177 
+ 00025271  0x00004749 bbit1  0x00000002 , 0x0000629b 
+ 00025272  0x0000474a bbit1  0x00000000 , 0x000062bb 
+ 00025273  0x0000474c jam  0x0000001a , 0x00000055 
+ 00025274  0x0000474d rtn 
+ 00025275  0x0000474f fetch  0x00000001 , 0x0000425e 
+ 00025276  0x00004750 branch  0x000062c7 , 0x00000034 
+ 00025277  0x00004751 fetch  0x00000001 , 0x0000044d 
+ 00025278  0x00004752 rtnbit0  0x00000003 
+ 00025279  0x00004753 rtnbit0  0x00000002 
+ 00025280  0x00004754 fetch  0x00000004 , 0x00000465 
+ 00025281  0x00004755 arg  0x00000064 , 0x00000002 
+ 00025282  0x00004756 iadd  0x00000002 , 0x00000002 
+ 00025283  0x00004757 copy  0x00000022 , 0x0000003f 
+ 00025284  0x00004758 isub  0x00000002 , 0x0000003e 
+ 00025285  0x00004759 nrtn  0x00000002 
+ 00025286  0x0000475a branch  0x00006267 
+ 00025287  0x0000475f jam  0x00000016 , 0x00000055 
+ 00025288  0x00004760 jam  0x00000004 , 0x0000054f 
+ 00025289  0x00004761 setarg  0x00003030 
+ 00025290  0x00004762 store  0x00000002 , 0x00000550 
+ 00025291  0x00004763 istore  0x00000002 , 0x00000005 
+ 00025292  0x00004764 jam  0x00000002 , 0x00000450 
+ 00025293  0x00004765 branch  0x0000626e 
+ 00025294  0x00004768 rtn 
+ 00025295  0x0000476a fetch  0x00000001 , 0x00000177 
+ 00025296  0x0000476b bbit1  0x00000001 , 0x000062d3 
+ 00025297  0x0000476c jam  0x0000001a , 0x00000055 
+ 00025298  0x0000476d rtn 
+ 00025299  0x00004770 fetch  0x00000001 , 0x00000177 
+ 00025300  0x00004771 set0  0x00000001 , 0x0000003f 
+ 00025301  0x00004772 store  0x00000001 , 0x00000177 
+ 00025302  0x00004773 jam  0x0000000f , 0x0000007c 
+ 00025303  0x00004774 rtn 
+ 00025304  0x00004777 fetch  0x00000001 , 0x00000454 
+ 00025305  0x00004778 rtn  0x00000034 
+ 00025306  0x00004779 jam  0x00000000 , 0x00000055 
+ 00025307  0x0000477a branch  0x000062d3 
+ 00025308  0x0000477d jam  0x0000000c , 0x00000055 
+ 00025309  0x0000477e rtn 
+ 00025310  0x00004781 fetch  0x00000001 , 0x0000004b 
+ 00025311  0x00004782 bbit1  0x00000002 , 0x000062e3 
+ 00025312  0x00004783 call  0x00006209 
+ 00025313  0x00004784 jam  0x00000008 , 0x0000007c 
+ 00025314  0x00004785 branch  0x000049bc 
+ 00025315  0x00004787 fetch  0x00000001 , 0x0000004b 
+ 00025316  0x00004788 set0  0x00000002 , 0x0000003f 
+ 00025317  0x00004789 store  0x00000001 , 0x0000004b 
+ 00025318  0x0000478a call  0x00005ed0 
+ 00025319  0x0000478b call  0x00006212 
+ 00025320  0x0000478c branch  0x000049bc 
+ 00025321  0x0000478f setarg  0x00000004 
+ 00025322  0x00004790 store  0x00000001 , 0x0000054f 
+ 00025323  0x00004791 setarg  0x00003030 
+ 00025324  0x00004792 istore  0x00000002 , 0x00000005 
+ 00025325  0x00004793 istore  0x00000002 , 0x00000005 
+ 00025326  0x00004794 rtn 
+ 00025327  0x0000479d rtn  0x0000002b 
+ 00025328  0x0000479e jam  0x00000000 , 0x00004813 
+ 00025329  0x0000479f call  0x00006321 
+ 00025330  0x000047a0 call  0x00006438 
+ 00025331  0x000047a1 setarg  0x0000632e 
+ 00025332  0x000047a2 store  0x00000002 , 0x00004290 
+ 00025333  0x000047a3 setarg  0x0000632f 
+ 00025334  0x000047a4 store  0x00000002 , 0x0000428e 
+ 00025335  0x000047a5 setarg  0x00006337 
+ 00025336  0x000047a6 store  0x00000002 , 0x00004292 
+ 00025337  0x000047a7 setarg  0x000063b6 
+ 00025338  0x000047a8 store  0x00000002 , 0x00004296 
+ 00025339  0x000047a9 setarg  0x0000632f 
+ 00025340  0x000047aa store  0x00000002 , 0x0000428c 
+ 00025341  0x000047ab set1  0x00000025 , 0x00000000 
+ 00025342  0x000047ac bpatch  0x00000080 , 0x00004030 
+ 00025343  0x000047ad setarg  0x0000632a 
+ 00025344  0x000047ae store  0x00000002 , 0x00004286 
+ 00025345  0x000047af setarg  0x000063be 
+ 00025346  0x000047b0 store  0x00000002 , 0x00004298 
+ 00025347  0x000047b1 setarg  0x00000000 
+ 00025348  0x000047b2 store  0x00000004 , 0x0000480a 
+ 00025349  0x000047b3 store  0x00000002 , 0x00004810 
+ 00025350  0x000047b4 call  0x0000630a 
+ 00025351  0x000047b5 call  0x00003fc5 
+ 00025352  0x000047b6 call  0x00003e2b 
+ 00025353  0x000047b7 branch  0x0000691d 
+ 00025354  0x000047ba rtn  0x0000002b 
+ 00025355  0x000047bb setarg  0x000001a0 
+ 00025356  0x000047bc store  0x00000002 , 0x000042ac 
+ 00025357  0x000047be call  0x00006a0d 
+ 00025358  0x000047bf setarg  0x00004a00 
+ 00025359  0x000047c0 hstore  0x00000002 , 0x00008054 
+ 00025360  0x000047c1 setarg  0x00004fff 
+ 00025361  0x000047c2 hstore  0x00000002 , 0x00008056 
+ 00025362  0x000047c3 setarg  0x00001c00 
+ 00025363  0x000047c4 hstore  0x00000002 , 0x0000805a 
+ 00025364  0x000047c5 setarg  0x00001fff 
+ 00025365  0x000047c6 hstore  0x00000002 , 0x0000805c 
+ 00025366  0x000047c7 hjam  0x00000004 , 0x00008081 
+ 00025367  0x000047c8 jam  0x000000ff , 0x0000029f 
+ 00025368  0x000047c9 hjam  0x00000000 , 0x00008062 
+ 00025369  0x000047ca setarg  0x00001c00 
+ 00025370  0x000047cb hstore  0x00000002 , 0x0000805e 
+ 00025371  0x000047cc hstore  0x00000002 , 0x00008060 
+ 00025372  0x000047cd setarg  0x00004a00 
+ 00025373  0x000047ce hstore  0x00000002 , 0x00008058 
+ 00025374  0x000047cf branch  0x00004480 
+ 00025375  0x000047d3 call  0x0000630d 
+ 00025376  0x000047d4 branch  0x00006321 
+ 00025377  0x000047d8 call  0x00007bd9 
+ 00025378  0x000047d9 call  0x00003f94 
+ 00025379  0x000047db fetcht  0x00000001 , 0x00004803 
+ 00025380  0x000047dc call  0x000069da 
+ 00025381  0x000047dd call  0x0000639e 
+ 00025382  0x000047df fetcht  0x00000001 , 0x00004801 
+ 00025383  0x000047e0 call  0x000069d1 
+ 00025384  0x000047e1 fetcht  0x00000001 , 0x00004800 
+ 00025385  0x000047e2 branch  0x000069d2 
+ 00025386  0x000047e5 fetcht  0x00000001 , 0x00004801 
+ 00025387  0x000047e6 call  0x000069e5 
+ 00025388  0x000047e7 nbranch  0x00003f5c , 0x00000001 
+ 00025389  0x000047e8 branch  0x00003f5a 
+ 00025390  0x000047ed branch  0x00006330 
+ 00025391  0x000047ef branch  0x00006330 
+ 00025392  0x000047f1 set1  0x00000025 , 0x00000000 
+ 00025393  0x000047f2 bpatch  0x00000081 , 0x00004030 
+ 00025394  0x000047f3 call  0x0000641c 
+ 00025395  0x000047f4 call  0x00006421 
+ 00025396  0x000047f5 call  0x0000527a 
+ 00025397  0x000047f6 nrtn  0x00000034 
+ 00025398  0x000047f7 branch  0x000063a0 
+ 00025399  0x000047f9 copy  0x00000013 , 0x0000003f 
+ 00025400  0x000047fa beq  0x0000000a , 0x00006368 
+ 00025401  0x000047fb beq  0x00000004 , 0x00006383 
+ 00025402  0x000047fc beq  0x00000013 , 0x00006387 
+ 00025403  0x000047fd beq  0x00000002 , 0x0000634c 
+ 00025404  0x000047fe beq  0x00000019 , 0x0000636a 
+ 00025405  0x000047ff beq  0x00000020 , 0x0000636f 
+ 00025406  0x00004800 beq  0x00000022 , 0x00006374 
+ 00025407  0x00004801 beq  0x00000021 , 0x00006375 
+ 00025408  0x00004802 beq  0x00000023 , 0x00006376 
+ 00025409  0x00004803 beq  0x00000024 , 0x00006379 
+ 00025410  0x00004804 beq  0x00000014 , 0x0000637a 
+ 00025411  0x00004805 beq  0x00000001 , 0x00006382 
+ 00025412  0x00004806 beq  0x00000015 , 0x00006364 
+ 00025413  0x00004807 beq  0x00000005 , 0x0000635d 
+ 00025414  0x00004808 beq  0x0000000b , 0x00006352 
+ 00025415  0x00004809 beq  0x0000000c , 0x00003fa6 
+ 00025416  0x0000480a and  0x0000003f , 0x0000000f , 0x00000002 
+ 00025417  0x0000480b and_into  0x000000f0 , 0x0000003f 
+ 00025418  0x0000480c beq  0x00000050 , 0x000063ec 
+ 00025419  0x0000480d rtn 
+ 00025420  0x00004810 call  0x0000638a 
+ 00025421  0x00004811 fetch  0x00000002 , 0x000042a0 
+ 00025422  0x00004812 rtnbit0  0x00000004 
+ 00025423  0x00004813 arg  0x00000003 , 0x00000039 
+ 00025424  0x00004814 arg  0x00004849 , 0x00000006 
+ 00025425  0x00004815 branch  0x00007f71 
+ 00025426  0x0000481a fetch  0x00000002 , 0x00004042 
+ 00025427  0x0000481b rshift  0x0000003f , 0x0000003f 
+ 00025428  0x0000481c fetcht  0x00000002 , 0x00004280 
+ 00025429  0x0000481d isub  0x00000002 , 0x0000003e 
+ 00025430  0x0000481e nbranch  0x00006358 , 0x00000005 
+ 00025431  0x0000481f branch  0x00003fa4 
+ 00025432  0x00004821 fetch  0x00000001 , 0x00004813 
+ 00025433  0x00004822 rtnbit1  0x00000000 
+ 00025434  0x00004823 hfetch  0x00000002 , 0x00008112 
+ 00025435  0x00004824 ncall  0x0000640c , 0x00000034 
+ 00025436  0x00004825 branch  0x00003f9c 
+ 00025437  0x00004828 call  0x00006395 
+ 00025438  0x00004829 call  0x0000642e 
+ 00025439  0x0000482a branch  0x00006361 , 0x00000005 
+ 00025440  0x0000482b branch  0x00003f77 
+ 00025441  0x0000482d arg  0x00000004 , 0x00000039 
+ 00025442  0x0000482e arg  0x0000488e , 0x00000006 
+ 00025443  0x0000482f branch  0x00007f71 
+ 00025444  0x00004832 call  0x0000638a 
+ 00025445  0x00004833 arg  0x00000005 , 0x00000039 
+ 00025446  0x00004834 arg  0x00004847 , 0x00000006 
+ 00025447  0x00004835 branch  0x00007f71 
+ 00025448  0x00004838 call  0x00003fc1 
+ 00025449  0x00004839 branch  0x00003f6a 
+ 00025450  0x0000483b fetch  0x00000001 , 0x00004813 
+ 00025451  0x0000483c rtnbit0  0x00000004 
+ 00025452  0x0000483d set0  0x00000004 , 0x0000003f 
+ 00025453  0x0000483e store  0x00000001 , 0x00004813 
+ 00025454  0x0000483f branch  0x0000427f 
+ 00025455  0x00004842 fetch  0x00000001 , 0x00004813 
+ 00025456  0x00004843 rtnbit0  0x00000004 
+ 00025457  0x00004844 set0  0x00000004 , 0x0000003f 
+ 00025458  0x00004845 store  0x00000001 , 0x00004813 
+ 00025459  0x00004846 branch  0x00004286 
+ 00025460  0x00004849 rtn 
+ 00025461  0x0000484c rtn 
+ 00025462  0x0000484f fetch  0x00000001 , 0x00004813 
+ 00025463  0x00004850 bbit0  0x00000000 , 0x00003f9e 
+ 00025464  0x00004851 branch  0x00006410 
+ 00025465  0x00004854 rtn 
+ 00025466  0x00004857 call  0x00006395 
+ 00025467  0x00004858 arg  0x000003d0 , 0x00000012 
+ 00025468  0x00004859 call  0x0000642e 
+ 00025469  0x0000485a branch  0x0000637f , 0x00000005 
+ 00025470  0x0000485b branch  0x00003f90 
+ 00025471  0x0000485d arg  0x00000006 , 0x00000039 
+ 00025472  0x0000485e arg  0x0000488c , 0x00000006 
+ 00025473  0x0000485f branch  0x00007f71 
+ 00025474  0x00004862 rtn 
+ 00025475  0x00004866 arg  0x00000007 , 0x00000039 
+ 00025476  0x00004867 arg  0x00004899 , 0x00000006 
+ 00025477  0x00004868 call  0x00007f71 
+ 00025478  0x00004869 branch  0x0000638a 
+ 00025479  0x0000486b arg  0x00000007 , 0x00000039 
+ 00025480  0x0000486c arg  0x00004892 , 0x00000006 
+ 00025481  0x0000486d call  0x00007f71 
+ 00025482  0x0000486f call  0x0000638c 
+ 00025483  0x00004870 branch  0x00006393 
+ 00025484  0x00004873 fetch  0x00000001 , 0x00004812 
+ 00025485  0x00004874 isolate1  0x00000000 , 0x0000003f 
+ 00025486  0x00004875 call  0x00003f7c , 0x00000001 
+ 00025487  0x00004876 fetch  0x00000001 , 0x00004812 
+ 00025488  0x00004877 isolate1  0x00000001 , 0x0000003f 
+ 00025489  0x00004878 call  0x00003f88 , 0x00000001 
+ 00025490  0x00004879 rtn 
+ 00025491  0x0000487b fetcht  0x00000001 , 0x00004803 
+ 00025492  0x0000487c branch  0x000069ef 
+ 00025493  0x0000487f call  0x00006397 
+ 00025494  0x00004880 branch  0x0000639e 
+ 00025495  0x00004883 fetch  0x00000001 , 0x00004812 
+ 00025496  0x00004884 isolate1  0x00000000 , 0x0000003f 
+ 00025497  0x00004885 call  0x00003f7e , 0x00000001 
+ 00025498  0x00004886 fetch  0x00000001 , 0x00004812 
+ 00025499  0x00004887 isolate1  0x00000001 , 0x0000003f 
+ 00025500  0x00004888 call  0x00003f86 , 0x00000001 
+ 00025501  0x00004889 rtn 
+ 00025502  0x0000488b fetcht  0x00000001 , 0x00004803 
+ 00025503  0x0000488c branch  0x000069ed 
+ 00025504  0x00004892 fetch  0x00000001 , 0x00004132 
+ 00025505  0x00004893 rtnne  0x0000000a 
+ 00025506  0x00004894 hfetch  0x00000002 , 0x00008112 
+ 00025507  0x00004895 rtn  0x00000034 
+ 00025508  0x00004896 store  0x00000002 , 0x0000480e 
+ 00025509  0x00004898 call  0x000063a9 
+ 00025510  0x00004899 branch  0x00003fef , 0x00000001 
+ 00025511  0x0000489a call  0x00006400 
+ 00025512  0x0000489b branch  0x000063af 
+ 00025513  0x0000489f fetcht  0x00000001 , 0x00004800 
+ 00025514  0x000048a0 branch  0x000069e5 
+ 00025515  0x000048a4 fetch  0x00000001 , 0x00004813 
+ 00025516  0x000048a5 rtnbit1  0x00000000 
+ 00025517  0x000048a6 call  0x0000640c 
+ 00025518  0x000048a7 branch  0x00003f9c 
+ 00025519  0x000048aa fetch  0x00000001 , 0x00004040 
+ 00025520  0x000048ab bbit0  0x00000000 , 0x0000428c 
+ 00025521  0x000048ac fetch  0x00000001 , 0x00004041 
+ 00025522  0x000048ad bbit1  0x00000000 , 0x000063d5 
+ 00025523  0x000048ae call  0x00003f40 
+ 00025524  0x000048af branch  0x000063ab , 0x00000001 
+ 00025525  0x000048b0 branch  0x00006d97 
+ 00025526  0x000048b3 call  0x00005a88 
+ 00025527  0x000048b4 ifetch  0x00000001 , 0x00000006 
+ 00025528  0x000048b5 copy  0x00000006 , 0x00000011 
+ 00025529  0x000048b6 call  0x00007f6e 
+ 00025530  0x000048b7 copy  0x00000012 , 0x00000039 
+ 00025531  0x000048b8 copy  0x00000011 , 0x00000006 
+ 00025532  0x000048b9 call  0x00004976 
+ 00025533  0x000048ba branch  0x000068fa 
+ 00025534  0x000048bf fetch  0x00000002 , 0x00004810 
+ 00025535  0x000048c0 rtn  0x00000034 
+ 00025536  0x000048c1 arg  0x00000014 , 0x00000002 
+ 00025537  0x000048c2 call  0x00007fb9 
+ 00025538  0x000048c3 store  0x00000002 , 0x00000469 
+ 00025539  0x000048c5 copy  0x0000003f , 0x00000002 
+ 00025540  0x000048c6 fetch  0x00000002 , 0x00004810 
+ 00025541  0x000048c7 isub  0x00000002 , 0x0000003f 
+ 00025542  0x000048c8 store  0x00000002 , 0x00004810 
+ 00025543  0x000048c9 nbranch  0x00003bf1 , 0x00000002 
+ 00025544  0x000048cb arg  0x00000014 , 0x00000002 
+ 00025545  0x000048cc storet  0x00000002 , 0x000044c2 
+ 00025546  0x000048cd call  0x00005a88 
+ 00025547  0x000048ce branch  0x00003bf1 , 0x00000034 
+ 00025548  0x000048cf add  0x00000006 , 0x00000001 , 0x00000005 
+ 00025549  0x000048d1 fetch  0x00000002 , 0x00000469 
+ 00025550  0x000048d2 copy  0x0000003f , 0x00000039 
+ 00025551  0x000048d4 call  0x00007f6b 
+ 00025552  0x000048d6 call  0x0000497c 
+ 00025553  0x000048d8 fetch  0x00000002 , 0x00000469 
+ 00025554  0x000048d9 store  0x00000002 , 0x0000480e 
+ 00025555  0x000048da store  0x00000002 , 0x0000041b 
+ 00025556  0x000048db branch  0x0000428c 
+ 00025557  0x000048df rtnmark0  0x00000009 
+ 00025558  0x000048e0 call  0x000063d8 
+ 00025559  0x000048e1 call  0x000063d8 
+ 00025560  0x000048e3 call  0x0000561e 
+ 00025561  0x000048e4 nrtn  0x00000034 
+ 00025562  0x000048e5 hfetch  0x00000002 , 0x00008112 
+ 00025563  0x000048e6 rtn  0x00000034 
+ 00025564  0x000048e7 fetcht  0x00000002 , 0x00004810 
+ 00025565  0x000048e8 isub  0x00000002 , 0x0000003f 
+ 00025566  0x000048e9 nbranch  0x00003bf1 , 0x00000002 
+ 00025567  0x000048ea store  0x00000002 , 0x0000480e 
+ 00025568  0x000048eb rtn  0x00000034 
+ 00025569  0x000048ec call  0x00006407 
+ 00025570  0x000048ed fetch  0x00000002 , 0x00004810 
+ 00025571  0x000048ee fetcht  0x00000002 , 0x0000480e 
+ 00025572  0x000048ef iadd  0x00000002 , 0x0000003f 
+ 00025573  0x000048f0 store  0x00000002 , 0x00004810 
+ 00025574  0x000048f1 fetcht  0x00000002 , 0x00004810 
+ 00025575  0x000048f2 hfetch  0x00000002 , 0x00008112 
+ 00025576  0x000048f3 isub  0x00000002 , 0x00000011 
+ 00025577  0x000048f4 nbranch  0x00003bf1 , 0x00000002 
+ 00025578  0x000048f5 jam  0x0000001b , 0x00000b7d 
+ 00025579  0x000048f6 branch  0x00005620 
+ 00025580  0x000048f9 storet  0x00000001 , 0x00000259 
+ 00025581  0x000048fb fetch  0x00000001 , 0x00000259 
+ 00025582  0x000048fc rtn  0x00000034 
+ 00025583  0x000048fd increase  0xffffffff , 0x0000003f 
+ 00025584  0x000048fe store  0x00000001 , 0x00000259 
+ 00025585  0x000048ff call  0x000063f3 
+ 00025586  0x00004900 branch  0x000063ed 
+ 00025587  0x00004903 fetch  0x00000002 , 0x0000481a 
+ 00025588  0x00004904 rtn  0x00000034 
+ 00025589  0x00004905 increase  0xffffffff , 0x0000003f 
+ 00025590  0x00004906 store  0x00000002 , 0x0000481a 
+ 00025591  0x00004907 nrtn  0x00000034 
+ 00025592  0x00004908 fetch  0x00000001 , 0x000042a4 
+ 00025593  0x00004909 jam  0x00000000 , 0x000042a4 
+ 00025594  0x0000490a bbit1  0x00000001 , 0x000063fd 
+ 00025595  0x0000490b bbit1  0x00000000 , 0x000063fe 
+ 00025596  0x0000490c branch  0x00003bf1 
+ 00025597  0x0000490e branch  0x00003f8c 
+ 00025598  0x00004910 jam  0x00000002 , 0x00004272 
+ 00025599  0x00004911 rtn 
+ 00025600  0x00004914 fetch  0x00000001 , 0x00004041 
+ 00025601  0x00004915 bbit1  0x00000000 , 0x00006407 
+ 00025602  0x00004916 fetch  0x00000002 , 0x0000480e 
+ 00025603  0x00004917 arg  0x0000006e , 0x00000002 
+ 00025604  0x00004919 call  0x00007fb9 
+ 00025605  0x0000491a store  0x00000002 , 0x0000480e 
+ 00025606  0x0000491b rtn 
+ 00025607  0x0000491d fetch  0x00000002 , 0x0000480e 
+ 00025608  0x0000491e arg  0x00000014 , 0x00000002 
+ 00025609  0x0000491f call  0x00007fb9 
+ 00025610  0x00004920 store  0x00000002 , 0x0000480e 
+ 00025611  0x00004921 rtn 
+ 00025612  0x00004924 fetch  0x00000001 , 0x00004813 
+ 00025613  0x00004925 set1  0x00000000 , 0x0000003f 
+ 00025614  0x00004926 store  0x00000001 , 0x00004813 
+ 00025615  0x00004927 rtn 
+ 00025616  0x0000492a fetch  0x00000001 , 0x00004813 
+ 00025617  0x0000492b set0  0x00000000 , 0x0000003f 
+ 00025618  0x0000492c store  0x00000001 , 0x00004813 
+ 00025619  0x0000492d rtn 
+ 00025620  0x00004930 fetch  0x00000001 , 0x00004813 
+ 00025621  0x00004931 set1  0x00000007 , 0x0000003f 
+ 00025622  0x00004932 store  0x00000001 , 0x00004813 
+ 00025623  0x00004933 rtn 
+ 00025624  0x00004936 fetch  0x00000001 , 0x00004813 
+ 00025625  0x00004937 set0  0x00000007 , 0x0000003f 
+ 00025626  0x00004938 store  0x00000001 , 0x00004813 
+ 00025627  0x00004939 rtn 
+ 00025628  0x0000493c set1  0x00000025 , 0x00000000 
+ 00025629  0x0000493d bpatch  0x00000082 , 0x00004030 
+ 00025630  0x0000493e call  0x00007f8e 
+ 00025631  0x0000493f branch  0x00003f66 , 0x00000002 
+ 00025632  0x00004940 branch  0x00003f68 
+ 00025633  0x00004943 call  0x000063a9 
+ 00025634  0x00004944 branch  0x00006428 , 0x00000001 
+ 00025635  0x00004945 hfetcht  0x00000002 , 0x00008052 
+ 00025636  0x00004946 fetch  0x00000002 , 0x000042ac 
+ 00025637  0x00004947 isub  0x00000002 , 0x0000003e 
+ 00025638  0x00004948 rtn  0x00000005 
+ 00025639  0x00004949 branch  0x00006909 
+ 00025640  0x0000494d hfetcht  0x00000002 , 0x00008052 
+ 00025641  0x0000494e setarg  0x000001a0 
+ 00025642  0x0000494f isub  0x00000002 , 0x0000003e 
+ 00025643  0x00004950 rtn  0x00000005 
+ 00025644  0x00004951 hstore  0x00000002 , 0x00008052 
+ 00025645  0x00004952 rtn 
+ 00025646  0x00004955 set1  0x00000025 , 0x00000000 
+ 00025647  0x00004956 bpatch  0x00000083 , 0x00004030 
+ 00025648  0x00004957 fetch  0x00000001 , 0x00004812 
+ 00025649  0x00004958 isolate0  0x00000002 , 0x0000003f 
+ 00025650  0x00004959 branch  0x00006436 , 0x00000001 
+ 00025651  0x0000495a arg  0x00004814 , 0x00000011 
+ 00025652  0x0000495b arg  0x00000006 , 0x00000039 
+ 00025653  0x0000495c branch  0x00007f25 
+ 00025654  0x0000495e force  0x00000000 , 0x0000003e 
+ 00025655  0x0000495f rtn 
+ 00025656  0x00004962 set1  0x00000025 , 0x00000000 
+ 00025657  0x00004963 bpatch  0x00000084 , 0x00004030 
+ 00025658  0x00004964 arg  0x0000481c , 0x00000005 
+ 00025659  0x00004965 setsect  0x00000000 , 0x00035350 
+ 00025660  0x00004966 setsect  0x00000001 , 0x00015115 
+ 00025661  0x00004967 setsect  0x00000002 , 0x00012415 
+ 00025662  0x00004968 setsect  0x00000003 , 0x00010951 
+ 00025663  0x00004969 istore  0x00000009 , 0x00000005 
+ 00025664  0x0000496a setsect  0x00000000 , 0x0002454c 
+ 00025665  0x0000496b setsect  0x00000001 , 0x00035053 
+ 00025666  0x0000496c setsect  0x00000002 , 0x00002454 
+ 00025667  0x0000496d setsect  0x00000003 , 0x00011531 
+ 00025668  0x0000496e istore  0x00000009 , 0x00000005 
+ 00025669  0x0000496f setsect  0x00000000 , 0x00034441 
+ 00025670  0x00004970 setsect  0x00000001 , 0x000194d4 
+ 00025671  0x00004971 setsect  0x00000002 , 0x00012455 
+ 00025672  0x00004972 setsect  0x00000003 , 0x00010d4d 
+ 00025673  0x00004973 istore  0x00000009 , 0x00000005 
+ 00025674  0x00004974 setsect  0x00000000 , 0x0003414c 
+ 00025675  0x00004975 setsect  0x00000001 , 0x0000d4d4 
+ 00025676  0x00004976 setsect  0x00000002 , 0x000124c4 
+ 00025677  0x00004977 setsect  0x00000003 , 0x00013119 
+ 00025678  0x00004978 istore  0x00000009 , 0x00000005 
+ 00025679  0x00004979 setsect  0x00000000 , 0x00015247 
+ 00025680  0x0000497a setsect  0x00000001 , 0x0003d0d1 
+ 00025681  0x0000497b setsect  0x00000002 , 0x0000e4e4 
+ 00025682  0x0000497c setsect  0x00000003 , 0x00011531 
+ 00025683  0x0000497d istore  0x00000009 , 0x00000005 
+ 00025684  0x0000497e setsect  0x00000000 , 0x00034944 
+ 00025685  0x0000497f setsect  0x00000001 , 0x000114d4 
+ 00025686  0x00004980 setsect  0x00000002 , 0x0000e535 
+ 00025687  0x00004981 setsect  0x00000003 , 0x00015105 
+ 00025688  0x00004982 istore  0x00000009 , 0x00000005 
+ 00025689  0x00004983 setsect  0x00000000 , 0x00014c2b 
+ 00025690  0x00004984 setsect  0x00000001 , 0x000114d2 
+ 00025691  0x00004985 setsect  0x00000002 , 0x0000f525 
+ 00025692  0x00004986 setsect  0x00000003 , 0x00011531 
+ 00025693  0x00004987 istore  0x00000009 , 0x00000005 
+ 00025694  0x00004988 setsect  0x00000000 , 0x00014e53 
+ 00025695  0x00004989 setsect  0x00000001 , 0x00019192 
+ 00025696  0x0000498a setsect  0x00000002 , 0x000044c4 
+ 00025697  0x0000498b setsect  0x00000003 , 0x00015915 
+ 00025698  0x0000498c istore  0x00000009 , 0x00000005 
+ 00025699  0x0000498d setsect  0x00000000 , 0x00035352 
+ 00025700  0x0000498e setsect  0x00000001 , 0x0000d254 
+ 00025701  0x0000498f setsect  0x00000002 , 0x00005444 
+ 00025702  0x00004990 setsect  0x00000003 , 0x00010959 
+ 00025703  0x00004991 istore  0x00000009 , 0x00000005 
+ 00025704  0x00004992 setsect  0x00000000 , 0x0001454c 
+ 00025705  0x00004993 setsect  0x00000001 , 0x00005392 
+ 00025706  0x00004994 setsect  0x00000002 , 0x00003525 
+ 00025707  0x00004995 setsect  0x00000003 , 0x00013d35 
+ 00025708  0x00004996 istore  0x00000009 , 0x00000005 
+ 00025709  0x00004997 setsect  0x00000000 , 0x00014544 
+ 00025710  0x00004998 setsect  0x00000001 , 0x000113d3 
+ 00025711  0x00004999 setsect  0x00000002 , 0x00004454 
+ 00025712  0x0000499a setsect  0x00000003 , 0x00014d35 
+ 00025713  0x0000499b istore  0x00000009 , 0x00000005 
+ 00025714  0x0000499c setsect  0x00000000 , 0x00004154 
+ 00025715  0x0000499d setsect  0x00000001 , 0x00011155 
+ 00025716  0x0000499e setsect  0x00000002 , 0x00013494 
+ 00025717  0x0000499f setsect  0x00000003 , 0x00013d0d 
+ 00025718  0x000049a0 istore  0x00000009 , 0x00000005 
+ 00025719  0x000049a1 setsect  0x00000000 , 0x00004f56 
+ 00025720  0x000049a2 setsect  0x00000001 , 0x00031055 
+ 00025721  0x000049a3 setsect  0x00000002 , 0x00003454 
+ 00025722  0x000049a4 setsect  0x00000003 , 0x0001393d 
+ 00025723  0x000049a5 istore  0x00000009 , 0x00000005 
+ 00025724  0x000049a6 setsect  0x00000000 , 0x0001504e 
+ 00025725  0x000049a7 setsect  0x00000001 , 0x000151d0 
+ 00025726  0x000049a8 setsect  0x00000002 , 0x000154f4 
+ 00025727  0x000049a9 setsect  0x00000003 , 0x00014951 
+ 00025728  0x000049aa istore  0x00000009 , 0x00000005 
+ 00025729  0x000049ab setsect  0x00000000 , 0x00024345 
+ 00025730  0x000049ac setsect  0x00000001 , 0x00025051 
+ 00025731  0x000049ad setsect  0x00000002 , 0x000004c4 
+ 00025732  0x000049ae istore  0x00000006 , 0x00000005 
+ 00025733  0x000049af rtn 
+ 00025734  0x000049b4 setarg  0x000065d7 
+ 00025735  0x000049b5 store  0x00000002 , 0x0000428c 
+ 00025736  0x000049b6 setarg  0x0000652e 
+ 00025737  0x000049b7 store  0x00000002 , 0x0000428e 
+ 00025738  0x000049b8 setarg  0x000064e3 
+ 00025739  0x000049b9 store  0x00000002 , 0x0000428a 
+ 00025740  0x000049ba setarg  0x000065f3 
+ 00025741  0x000049bb store  0x00000002 , 0x00004292 
+ 00025742  0x000049bc setarg  0x000064a9 
+ 00025743  0x000049bd store  0x00000002 , 0x00004290 
+ 00025744  0x000049be setarg  0x00006561 
+ 00025745  0x000049bf store  0x00000002 , 0x00004298 
+ 00025746  0x000049c0 jam  0x00000000 , 0x000007dc 
+ 00025747  0x000049c1 jam  0x00000000 , 0x000007dd 
+ 00025748  0x000049c2 set0  0x00000025 , 0x00000000 
+ 00025749  0x000049c3 bpatch  0x000000c0 , 0x00004018 
+ 00025750  0x000049c4 call  0x000064c4 
+ 00025751  0x000049c5 rtn  0x0000002b 
+ 00025752  0x000049c6 call  0x0000649f 
+ 00025753  0x000049c7 call  0x000064a7 
+ 00025754  0x000049c8 setarg  0x000064e0 
+ 00025755  0x000049c9 store  0x00000002 , 0x00004288 
+ 00025756  0x000049ca fetch  0x00000002 , 0x000047f4 
+ 00025757  0x000049cb bbit1  0x0000000c , 0x00006697 
+ 00025758  0x000049cc branch  0x00006693 
+ 00025759  0x000049cf call  0x00003f4d 
+ 00025760  0x000049d0 branch  0x000064a4 , 0x00000005 
+ 00025761  0x000049d1 call  0x00006963 
+ 00025762  0x000049d2 call  0x000066ba 
+ 00025763  0x000049d3 branch  0x00003f45 
+ 00025764  0x000049d5 call  0x0000691d 
+ 00025765  0x000049d6 call  0x00006967 
+ 00025766  0x000049d7 branch  0x000066c0 
+ 00025767  0x000049da jam  0x00000001 , 0x0000481c 
+ 00025768  0x000049db branch  0x000064bb 
+ 00025769  0x000049de call  0x00007cd7 
+ 00025770  0x000049df call  0x000064ac 
+ 00025771  0x000049e0 branch  0x000064f6 
+ 00025772  0x000049e3 fetcht  0x00000001 , 0x00004825 
+ 00025773  0x000049e4 call  0x000069e5 
+ 00025774  0x000049e5 nbranch  0x000064b3 , 0x00000001 
+ 00025775  0x000049e7 fetch  0x00000001 , 0x0000481c 
+ 00025776  0x000049e8 rtneq  0x00000000 
+ 00025777  0x000049e9 jam  0x00000000 , 0x0000481c 
+ 00025778  0x000049ea rtn 
+ 00025779  0x000049ec fetch  0x00000001 , 0x0000481c 
+ 00025780  0x000049ed rtneq  0x00000001 
+ 00025781  0x000049ee jam  0x00000001 , 0x0000481c 
+ 00025782  0x000049ef fetch  0x00000001 , 0x0000481b 
+ 00025783  0x000049f0 increase  0x00000001 , 0x0000003f 
+ 00025784  0x000049f1 and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00025785  0x000049f2 store  0x00000001 , 0x0000481b 
+ 00025786  0x000049f3 branch  0x000064bb 
+ 00025787  0x000049f5 setarg  0x00000006 
+ 00025788  0x000049f6 call  0x000066d8 
+ 00025789  0x000049f7 and  0x0000003f , 0x000000fc , 0x00000002 
+ 00025790  0x000049f8 fetch  0x00000001 , 0x0000481b 
+ 00025791  0x000049f9 iadd  0x00000002 , 0x0000003f 
+ 00025792  0x000049fa lshift8  0x0000003f , 0x0000003f 
+ 00025793  0x000049fb add  0x0000003f , 0x00000006 , 0x0000003f 
+ 00025794  0x000049fc call  0x000066d7 
+ 00025795  0x000049fd branch  0x000066ba 
+ 00025796  0x00004a00 call  0x000065c5 
+ 00025797  0x00004a01 call  0x000064ca 
+ 00025798  0x00004a02 hfetch  0x00000002 , 0x00008050 
+ 00025799  0x00004a03 set0  0x0000000b , 0x0000003f 
+ 00025800  0x00004a04 hstore  0x00000002 , 0x00008050 
+ 00025801  0x00004a05 rtn 
+ 00025802  0x00004a08 call  0x00003e0b 
+ 00025803  0x00004a09 fetcht  0x00000001 , 0x00004827 
+ 00025804  0x00004a0a call  0x000069d1 
+ 00025805  0x00004a0b fetcht  0x00000001 , 0x00004828 
+ 00025806  0x00004a0c call  0x000069d1 
+ 00025807  0x00004a0d fetcht  0x00000001 , 0x00004822 
+ 00025808  0x00004a0e call  0x000069d1 
+ 00025809  0x00004a0f fetcht  0x00000001 , 0x00004823 
+ 00025810  0x00004a10 call  0x000069d1 
+ 00025811  0x00004a11 fetcht  0x00000001 , 0x00004824 
+ 00025812  0x00004a12 call  0x000069d1 
+ 00025813  0x00004a13 fetcht  0x00000001 , 0x00004826 
+ 00025814  0x00004a14 call  0x000069d1 
+ 00025815  0x00004a15 fetcht  0x00000001 , 0x00004825 
+ 00025816  0x00004a16 call  0x000069d1 
+ 00025817  0x00004a17 hfetch  0x00000001 , 0x0000807b 
+ 00025818  0x00004a18 or_into  0x00000018 , 0x0000003f 
+ 00025819  0x00004a19 hstore  0x00000001 , 0x0000807b 
+ 00025820  0x00004a1a hfetch  0x00000001 , 0x0000807f 
+ 00025821  0x00004a1b and_into  0x000000e7 , 0x0000003f 
+ 00025822  0x00004a1c hstore  0x00000001 , 0x0000807f 
+ 00025823  0x00004a1d rtn 
+ 00025824  0x00004a21 setarg  0x0000bc05 
+ 00025825  0x00004a22 call  0x000066d7 
+ 00025826  0x00004a23 jam  0x00000001 , 0x000000a2 
+ 00025827  0x00004a26 call  0x000064f6 
+ 00025828  0x00004a27 arg  0x00000019 , 0x00000002 
+ 00025829  0x00004a28 call  0x000069da 
+ 00025830  0x00004a29 hjam  0x00000000 , 0x00008081 
+ 00025831  0x00004a2a fetcht  0x00000001 , 0x00004827 
+ 00025832  0x00004a2b call  0x000069b4 
+ 00025833  0x00004a2c fetcht  0x00000001 , 0x00004828 
+ 00025834  0x00004a2d call  0x000069b4 
+ 00025835  0x00004a2e fetcht  0x00000001 , 0x00004822 
+ 00025836  0x00004a2f call  0x000069b4 
+ 00025837  0x00004a30 fetcht  0x00000001 , 0x00004823 
+ 00025838  0x00004a31 call  0x000069b4 
+ 00025839  0x00004a32 fetcht  0x00000001 , 0x00004824 
+ 00025840  0x00004a33 call  0x000069b4 
+ 00025841  0x00004a34 fetcht  0x00000001 , 0x00004826 
+ 00025842  0x00004a35 call  0x000069b9 
+ 00025843  0x00004a36 fetch  0x00000001 , 0x000000a2 
+ 00025844  0x00004a37 nrtn  0x00000034 
+ 00025845  0x00004a38 branch  0x000069c4 
+ 00025846  0x00004a3b set0  0x00000025 , 0x00000000 
+ 00025847  0x00004a3c bpatch  0x000000c1 , 0x00004018 
+ 00025848  0x00004a3d arg  0x00000000 , 0x00000011 
+ 00025849  0x00004a3e fetcht  0x00000001 , 0x00004827 
+ 00025850  0x00004a3f call  0x000069e5 
+ 00025851  0x00004a40 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00025852  0x00004a41 fetcht  0x00000001 , 0x00004828 
+ 00025853  0x00004a42 call  0x000069e5 
+ 00025854  0x00004a43 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00025855  0x00004a44 copy  0x00000011 , 0x0000003f 
+ 00025856  0x00004a46 and_into  0x00000003 , 0x0000003f 
+ 00025857  0x00004a47 fetcht  0x00000001 , 0x00004808 
+ 00025858  0x00004a48 store  0x00000001 , 0x00004808 
+ 00025859  0x00004a49 isub  0x00000002 , 0x0000003e 
+ 00025860  0x00004a4a branch  0x00006514 , 0x00000005 
+ 00025861  0x00004a4b fetch  0x00000001 , 0x00004807 
+ 00025862  0x00004a4c store  0x00000001 , 0x00004806 
+ 00025863  0x00004a4d storet  0x00000001 , 0x00004807 
+ 00025864  0x00004a4e fetch  0x00000001 , 0x00004808 
+ 00025865  0x00004a4f lshift4  0x0000003f , 0x0000003f 
+ 00025866  0x00004a50 fetcht  0x00000001 , 0x00004807 
+ 00025867  0x00004a51 lshift2  0x00000002 , 0x00000002 
+ 00025868  0x00004a52 iadd  0x00000002 , 0x0000003f 
+ 00025869  0x00004a53 fetcht  0x00000001 , 0x00004806 
+ 00025870  0x00004a54 iadd  0x00000002 , 0x0000003f 
+ 00025871  0x00004a55 beq  0x00000038 , 0x00006515 
+ 00025872  0x00004a56 beq  0x00000034 , 0x00006519 
+ 00025873  0x00004a57 beq  0x0000000b , 0x00006519 
+ 00025874  0x00004a58 beq  0x00000007 , 0x00006515 
+ 00025875  0x00004a59 rtn 
+ 00025876  0x00004a5c rtn 
+ 00025877  0x00004a5f fetch  0x00000001 , 0x00004809 
+ 00025878  0x00004a60 increase  0x00000001 , 0x0000003f 
+ 00025879  0x00004a61 store  0x00000001 , 0x00004809 
+ 00025880  0x00004a62 rtn 
+ 00025881  0x00004a65 fetch  0x00000001 , 0x00004809 
+ 00025882  0x00004a66 increase  0xffffffff , 0x0000003f 
+ 00025883  0x00004a67 store  0x00000001 , 0x00004809 
+ 00025884  0x00004a68 rtn 
+ 00025885  0x00004a6c rtn 
+ 00025886  0x00004a6e setarg  0x0000b805 
+ 00025887  0x00004a6f branch  0x000066d7 
+ 00025888  0x00004a72 rtn 
+ 00025889  0x00004a75 call  0x00003fa0 
+ 00025890  0x00004a76 jam  0x00000002 , 0x00004820 
+ 00025891  0x00004a77 call  0x00003fa4 
+ 00025892  0x00004a79 branch  0x00003f92 
+ 00025893  0x00004a7c fetch  0x00000002 , 0x0000481e 
+ 00025894  0x00004a7d rtn  0x00000034 
+ 00025895  0x00004a7e increase  0xffffffff , 0x0000003f 
+ 00025896  0x00004a7f store  0x00000002 , 0x0000481e 
+ 00025897  0x00004a80 nrtn  0x00000034 
+ 00025898  0x00004a81 branch  0x00003f9a 
+ 00025899  0x00004a84 setarg  0x00000002 
+ 00025900  0x00004a85 store  0x00000001 , 0x000047f2 
+ 00025901  0x00004a86 rtn 
+ 00025902  0x00004a89 fetch  0x00000001 , 0x0000427f 
+ 00025903  0x00004a8a rtn  0x00000034 
+ 00025904  0x00004a8b call  0x0000527c 
+ 00025905  0x00004a8c nrtn  0x00000034 
+ 00025906  0x00004a8d call  0x00006578 
+ 00025907  0x00004a8e nrtn  0x00000028 
+ 00025908  0x00004a8f call  0x0000655e 
+ 00025909  0x00004a90 call  0x0000655a 
+ 00025910  0x00004a92 arg  0x00000008 , 0x00000011 
+ 00025911  0x00004a93 call  0x00004b2c 
+ 00025912  0x00004a94 fetch  0x00000002 , 0x000042b7 
+ 00025913  0x00004a95 istore  0x00000002 , 0x00000005 
+ 00025914  0x00004a96 setarg  0x000002a1 
+ 00025915  0x00004a97 istore  0x00000002 , 0x00000005 
+ 00025916  0x00004a98 fetch  0x00000001 , 0x00004805 
+ 00025917  0x00004a99 istore  0x00000001 , 0x00000005 
+ 00025918  0x00004a9a fetch  0x00000002 , 0x00004800 
+ 00025919  0x00004a9b arg  0x00000fff , 0x00000002 
+ 00025920  0x00004a9c iand  0x00000002 , 0x0000003f 
+ 00025921  0x00004a9d fetcht  0x00000002 , 0x00004802 
+ 00025922  0x00004a9e lshift4  0x00000002 , 0x00000002 
+ 00025923  0x00004a9f lshift8  0x00000002 , 0x00000002 
+ 00025924  0x00004aa0 ior  0x00000002 , 0x0000003f 
+ 00025925  0x00004aa1 istore  0x00000003 , 0x00000005 
+ 00025926  0x00004aa2 fetch  0x00000001 , 0x00004804 
+ 00025927  0x00004aa3 istore  0x00000001 , 0x00000005 
+ 00025928  0x00004aa4 setarg  0x00000000 
+ 00025929  0x00004aa5 istore  0x00000001 , 0x00000005 
+ 00025930  0x00004aa6 jam  0x00000008 , 0x000008a8 
+ 00025931  0x00004aa7 rtn 
+ 00025932  0x00004aab set0  0x00000025 , 0x00000000 
+ 00025933  0x00004aac bpatch  0x000000c2 , 0x00004018 
+ 00025934  0x00004aad fetch  0x00000001 , 0x0000481a 
+ 00025935  0x00004aae rtn  0x00000034 
+ 00025936  0x00004aaf increase  0xffffffff , 0x0000003f 
+ 00025937  0x00004ab0 store  0x00000001 , 0x0000481a 
+ 00025938  0x00004ab1 nrtn  0x00000034 
+ 00025939  0x00004ab2 call  0x0000527e 
+ 00025940  0x00004ab3 nrtn  0x00000034 
+ 00025941  0x00004ab4 setarg  0x00000000 
+ 00025942  0x00004ab5 store  0x00000005 , 0x00004800 
+ 00025943  0x00004ab6 call  0x00006536 
+ 00025944  0x00004ab7 jam  0x00000050 , 0x0000481a 
+ 00025945  0x00004ab8 rtn 
+ 00025946  0x00004aba fetch  0x00000002 , 0x00004810 
+ 00025947  0x00004abb store  0x00000002 , 0x00004818 
+ 00025948  0x00004abc jam  0x00000050 , 0x0000481a 
+ 00025949  0x00004abd rtn 
+ 00025950  0x00004ac0 fetch  0x00000002 , 0x0000480e 
+ 00025951  0x00004ac1 store  0x00000002 , 0x00004816 
+ 00025952  0x00004ac2 rtn 
+ 00025953  0x00004ac6 fetcht  0x00000002 , 0x000044c2 
+ 00025954  0x00004ac7 call  0x00005a88 
+ 00025955  0x00004ac8 ifetch  0x00000001 , 0x00000006 
+ 00025956  0x00004ac9 store  0x00000001 , 0x0000041b 
+ 00025957  0x00004aca rtn 
+ 00025958  0x00004ace set0  0x00000025 , 0x00000000 
+ 00025959  0x00004acf bpatch  0x000000c3 , 0x00004018 
+ 00025960  0x00004ad0 fetcht  0x00000002 , 0x000044c2 
+ 00025961  0x00004ad1 call  0x00005a88 
+ 00025962  0x00004ad2 add  0x00000006 , 0x00000001 , 0x00000005 
+ 00025963  0x00004ad4 fetch  0x00000001 , 0x00004805 
+ 00025964  0x00004ad5 istore  0x00000001 , 0x00000005 
+ 00025965  0x00004ad6 fetch  0x00000002 , 0x00004800 
+ 00025966  0x00004ad7 arg  0x00000fff , 0x00000002 
+ 00025967  0x00004ad8 iand  0x00000002 , 0x0000003f 
+ 00025968  0x00004ad9 fetcht  0x00000002 , 0x00004802 
+ 00025969  0x00004ada lshift4  0x00000002 , 0x00000002 
+ 00025970  0x00004adb lshift8  0x00000002 , 0x00000002 
+ 00025971  0x00004adc ior  0x00000002 , 0x0000003f 
+ 00025972  0x00004add istore  0x00000003 , 0x00000005 
+ 00025973  0x00004ade fetch  0x00000001 , 0x00004804 
+ 00025974  0x00004adf istore  0x00000001 , 0x00000005 
+ 00025975  0x00004ae0 rtn 
+ 00025976  0x00004ae3 set0  0x00000025 , 0x00000000 
+ 00025977  0x00004ae4 bpatch  0x000000c4 , 0x00004018 
+ 00025978  0x00004ae5 disable  0x00000028 
+ 00025979  0x00004ae6 setarg  0x00000000 
+ 00025980  0x00004ae7 store  0x00000005 , 0x00004800 
+ 00025981  0x00004ae8 call  0x00006581 
+ 00025982  0x00004ae9 call  0x000065b4 
+ 00025983  0x00004aea call  0x0000659c 
+ 00025984  0x00004aeb branch  0x000065a2 
+ 00025985  0x00004aee fetch  0x00000001 , 0x00004821 
+ 00025986  0x00004aef rtnne  0x00000002 
+ 00025987  0x00004af0 fetch  0x00000001 , 0x0000480a 
+ 00025988  0x00004af1 call  0x000065ba , 0x00000034 
+ 00025989  0x00004af2 jam  0x00000001 , 0x0000480a 
+ 00025990  0x00004af3 disable  0x00000028 
+ 00025991  0x00004af4 fetcht  0x00000001 , 0x00004826 
+ 00025992  0x00004af5 call  0x000069e5 
+ 00025993  0x00004af6 nrtn  0x00000001 
+ 00025994  0x00004af7 setarg  0x00000000 
+ 00025995  0x00004af8 call  0x000066d8 
+ 00025996  0x00004af9 bne  0x00000030 , 0x000066c6 
+ 00025997  0x00004afa setarg  0x00000002 
+ 00025998  0x00004afb call  0x000066d8 
+ 00025999  0x00004afc rtnbit0  0x00000007 
+ 00026000  0x00004afd setarg  0x00000003 
+ 00026001  0x00004afe call  0x000066d8 
+ 00026002  0x00004aff call  0x000065d3 
+ 00026003  0x00004b00 store  0x00000002 , 0x00004800 
+ 00026004  0x00004b01 setarg  0x00000004 
+ 00026005  0x00004b02 call  0x000066d8 
+ 00026006  0x00004b03 call  0x000065d3 
+ 00026007  0x00004b04 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00026008  0x00004b05 store  0x00000002 , 0x00004802 
+ 00026009  0x00004b06 fetch  0x00000004 , 0x00004800 
+ 00026010  0x00004b07 enable  0x00000028 
+ 00026011  0x00004b08 rtn 
+ 00026012  0x00004b0a fetch  0x00000001 , 0x00004809 
+ 00026013  0x00004b0b rtn  0x00000034 
+ 00026014  0x00004b0c store  0x00000001 , 0x00004804 
+ 00026015  0x00004b0d jam  0x00000000 , 0x00004809 
+ 00026016  0x00004b0e enable  0x00000028 
+ 00026017  0x00004b0f rtn 
+ 00026018  0x00004b11 arg  0x00000000 , 0x00000011 
+ 00026019  0x00004b12 fetcht  0x00000001 , 0x00004822 
+ 00026020  0x00004b13 call  0x000069e5 
+ 00026021  0x00004b14 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00026022  0x00004b15 fetcht  0x00000001 , 0x00004823 
+ 00026023  0x00004b16 call  0x000069e5 
+ 00026024  0x00004b17 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00026025  0x00004b18 fetcht  0x00000001 , 0x00004824 
+ 00026026  0x00004b19 call  0x000069e5 
+ 00026027  0x00004b1a setflag  0x00000001 , 0x00000002 , 0x00000011 
+ 00026028  0x00004b1b deposit  0x00000011 
+ 00026029  0x00004b1c fetcht  0x00000001 , 0x00004805 
+ 00026030  0x00004b1d store  0x00000001 , 0x00004805 
+ 00026031  0x00004b1e ixor  0x00000002 , 0x0000003f 
+ 00026032  0x00004b1f sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00026033  0x00004b20 rtn  0x00000005 
+ 00026034  0x00004b21 enable  0x00000028 
+ 00026035  0x00004b22 rtn 
+ 00026036  0x00004b28 arg  0x0000001a , 0x00000002 
+ 00026037  0x00004b29 call  0x000069e5 
+ 00026038  0x00004b2a rtn  0x00000001 
+ 00026039  0x00004b2b setarg  0x00000000 
+ 00026040  0x00004b2c call  0x000066d8 
+ 00026041  0x00004b2d branch  0x000065b4 
+ 00026042  0x00004b30 arg  0x00000000 , 0x00000039 
+ 00026043  0x00004b32 setarg  0x00000002 
+ 00026044  0x00004b33 call  0x000066d8 
+ 00026045  0x00004b34 nop  0x00000064 
+ 00026046  0x00004b35 increase  0x00000001 , 0x00000039 
+ 00026047  0x00004b36 fetcht  0x00000001 , 0x00004826 
+ 00026048  0x00004b37 call  0x000069e5 
+ 00026049  0x00004b38 branch  0x000065bb , 0x00000001 
+ 00026050  0x00004b39 deposit  0x00000039 
+ 00026051  0x00004b3a store  0x00000002 , 0x0000046b 
+ 00026052  0x00004b3b rtn 
+ 00026053  0x00004b3d call  0x0000678e 
+ 00026054  0x00004b3e rtn  0x0000002b 
+ 00026055  0x00004b41 setarg  0x00000000 
+ 00026056  0x00004b42 call  0x000066d8 
+ 00026057  0x00004b43 store  0x00000001 , 0x00000256 
+ 00026058  0x00004b44 beq  0x00000030 , 0x000065ce 
+ 00026059  0x00004b45 call  0x000066c6 
+ 00026060  0x00004b46 nop  0x00002710 
+ 00026061  0x00004b47 branch  0x000065c7 
+ 00026062  0x00004b49 setarg  0x00008006 
+ 00026063  0x00004b4a call  0x000066d7 
+ 00026064  0x00004b4b nop  0x000003e8 
+ 00026065  0x00004b4c jam  0x00000002 , 0x00004821 
+ 00026066  0x00004b4d rtn 
+ 00026067  0x00004b52 rtnbit0  0x00000007 
+ 00026068  0x00004b53 arg  0x0000ff00 , 0x00000002 
+ 00026069  0x00004b54 ior  0x00000002 , 0x0000003f 
+ 00026070  0x00004b55 rtn 
+ 00026071  0x00004b5a call  0x0000561e 
+ 00026072  0x00004b5b nrtn  0x00000034 
+ 00026073  0x00004b5c fetcht  0x00000002 , 0x000044c2 
+ 00026074  0x00004b5d call  0x00005866 
+ 00026075  0x00004b5e rtnbit0  0x00000000 
+ 00026076  0x00004b5f fetch  0x00000001 , 0x000046f8 
+ 00026077  0x00004b60 rtnbit0  0x00000000 
+ 00026078  0x00004b61 call  0x00006578 
+ 00026079  0x00004b63 nrtn  0x00000028 
+ 00026080  0x00004b64 call  0x0000655e 
+ 00026081  0x00004b66 jam  0x0000001b , 0x00000b7d 
+ 00026082  0x00004b67 call  0x00005620 
+ 00026083  0x00004b68 branch  0x00006566 
+ 00026084  0x00004b6b rtn  0x00000028 
+ 00026085  0x00004b6c fetch  0x00000001 , 0x0000481d 
+ 00026086  0x00004b6d increase  0x00000001 , 0x0000003f 
+ 00026087  0x00004b6e store  0x00000001 , 0x0000481d 
+ 00026088  0x00004b6f arg  0x00000001 , 0x00000002 
+ 00026089  0x00004b70 bbit0  0x00000007 , 0x000065eb 
+ 00026090  0x00004b71 arg  0x0000ffff , 0x00000002 
+ 00026091  0x00004b73 storet  0x00000005 , 0x00004800 
+ 00026092  0x00004b74 enable  0x00000028 
+ 00026093  0x00004b75 rtn 
+ 00026094  0x00004b78 disable  0x00000028 
+ 00026095  0x00004b79 fetch  0x00000001 , 0x00004820 
+ 00026096  0x00004b7a rtneq  0x00000002 
+ 00026097  0x00004b7b enable  0x00000028 
+ 00026098  0x00004b7c rtn 
+ 00026099  0x00004b7f copy  0x00000013 , 0x0000003f 
+ 00026100  0x00004b80 beq  0x00000014 , 0x00006606 
+ 00026101  0x00004b81 beq  0x00000001 , 0x000066a6 
+ 00026102  0x00004b82 beq  0x00000015 , 0x00006617 
+ 00026103  0x00004b83 beq  0x00000002 , 0x00006617 
+ 00026104  0x00004b84 beq  0x00000005 , 0x00006616 
+ 00026105  0x00004b85 beq  0x00000010 , 0x0000666a 
+ 00026106  0x00004b86 beq  0x00000012 , 0x0000668a 
+ 00026107  0x00004b87 beq  0x00000006 , 0x00006614 
+ 00026108  0x00004b88 beq  0x00000028 , 0x00006521 
+ 00026109  0x00004b89 beq  0x00000029 , 0x00006524 
+ 00026110  0x00004b8a beq  0x00000004 , 0x00006611 
+ 00026111  0x00004b8b beq  0x00000013 , 0x00006611 
+ 00026112  0x00004b8c beq  0x0000000a , 0x0000660f 
+ 00026113  0x00004b8d beq  0x0000002e , 0x00003f57 
+ 00026114  0x00004b8e and  0x0000003f , 0x0000000f , 0x00000002 
+ 00026115  0x00004b8f and_into  0x000000f0 , 0x0000003f 
+ 00026116  0x00004b90 beq  0x00000050 , 0x00006634 
+ 00026117  0x00004b91 rtn 
+ 00026118  0x00004b94 fetch  0x00000002 , 0x000042a2 
+ 00026119  0x00004b95 set0  0x00000000 , 0x0000003f 
+ 00026120  0x00004b96 store  0x00000002 , 0x000042a2 
+ 00026121  0x00004b97 setarg  0x00000000 
+ 00026122  0x00004b98 store  0x00000002 , 0x00004814 
+ 00026123  0x00004b99 fetch  0x00000001 , 0x00004829 
+ 00026124  0x00004b9a increase  0x00000001 , 0x0000003f 
+ 00026125  0x00004b9b store  0x00000001 , 0x00004829 
+ 00026126  0x00004b9c branch  0x000066a6 
+ 00026127  0x00004b9f call  0x000062e9 
+ 00026128  0x00004ba0 branch  0x00003f6a 
+ 00026129  0x00004ba3 fetch  0x00000002 , 0x000047f4 
+ 00026130  0x00004ba4 bbit1  0x0000000c , 0x00006697 
+ 00026131  0x00004ba5 branch  0x00003f10 
+ 00026132  0x00004ba9 call  0x0000652b 
+ 00026133  0x00004baa rtn 
+ 00026134  0x00004bac rtn 
+ 00026135  0x00004baf set0  0x00000025 , 0x00000000 
+ 00026136  0x00004bb0 bpatch  0x000000c5 , 0x00004018 
+ 00026137  0x00004bb1 call  0x00006621 
+ 00026138  0x00004bb2 fetch  0x00000002 , 0x000042a0 
+ 00026139  0x00004bb3 bbit1  0x00000007 , 0x00006630 
+ 00026140  0x00004bb4 bbit1  0x00000000 , 0x00003f12 
+ 00026141  0x00004bb5 bbit1  0x00000001 , 0x0000662a 
+ 00026142  0x00004bb6 bbit1  0x00000002 , 0x0000662d 
+ 00026143  0x00004bb7 bbit1  0x00000003 , 0x0000662d 
+ 00026144  0x00004bb8 branch  0x00006697 
+ 00026145  0x00004bba setarg  0x00000000 
+ 00026146  0x00004bbb store  0x00000004 , 0x00004806 
+ 00026147  0x00004bbc jam  0x00000000 , 0x0000481a 
+ 00026148  0x00004bbd jam  0x00000000 , 0x0000480a 
+ 00026149  0x00004bbe jam  0x00000000 , 0x0000427f 
+ 00026150  0x00004bbf jam  0x00000000 , 0x0000448b 
+ 00026151  0x00004bc0 jam  0x00000000 , 0x00004820 
+ 00026152  0x00004bc1 jam  0x00000000 , 0x0000480b 
+ 00026153  0x00004bc2 rtn 
+ 00026154  0x00004bc5 bbit1  0x00000005 , 0x0000662d 
+ 00026155  0x00004bc6 bbit1  0x00000003 , 0x0000662d 
+ 00026156  0x00004bc7 branch  0x00006697 
+ 00026157  0x00004bc9 fetch  0x00000002 , 0x000047f4 
+ 00026158  0x00004bca bbit1  0x0000000c , 0x00006697 
+ 00026159  0x00004bcb branch  0x00003f10 
+ 00026160  0x00004bce call  0x00005b30 
+ 00026161  0x00004bcf fetch  0x00000002 , 0x000042a0 
+ 00026162  0x00004bd0 bbit1  0x00000000 , 0x00003f12 
+ 00026163  0x00004bd1 branch  0x00003f10 
+ 00026164  0x00004bd4 set0  0x00000025 , 0x00000000 
+ 00026165  0x00004bd5 bpatch  0x000000c6 , 0x00004018 
+ 00026166  0x00004bd6 storet  0x00000001 , 0x00000259 
+ 00026167  0x00004bd8 fetch  0x00000001 , 0x00000259 
+ 00026168  0x00004bd9 rtn  0x00000034 
+ 00026169  0x00004bda increase  0xffffffff , 0x0000003f 
+ 00026170  0x00004bdb store  0x00000001 , 0x00000259 
+ 00026171  0x00004bde call  0x00006649 
+ 00026172  0x00004bdf call  0x0000664f 
+ 00026173  0x00004be0 call  0x00006656 
+ 00026174  0x00004be1 call  0x00006664 
+ 00026175  0x00004be3 fetch  0x00000001 , 0x00004820 
+ 00026176  0x00004be4 compare  0x00000002 , 0x0000003f , 0x000000ff 
+ 00026177  0x00004be5 call  0x00006648 , 0x00000001 
+ 00026178  0x00004be6 fetch  0x00000001 , 0x00004820 
+ 00026179  0x00004be7 compare  0x00000001 , 0x0000003f , 0x000000ff 
+ 00026180  0x00004be8 call  0x00006646 , 0x00000001 
+ 00026181  0x00004be9 branch  0x00006637 
+ 00026182  0x00004bed call  0x0000665d 
+ 00026183  0x00004bee branch  0x0000654c 
+ 00026184  0x00004bf2 rtn 
+ 00026185  0x00004bf5 fetch  0x00000001 , 0x000047f2 
+ 00026186  0x00004bf6 rtn  0x00000034 
+ 00026187  0x00004bf7 increase  0xffffffff , 0x0000003f 
+ 00026188  0x00004bf8 store  0x00000001 , 0x000047f2 
+ 00026189  0x00004bf9 nrtn  0x00000034 
+ 00026190  0x00004bfa branch  0x0000668a 
+ 00026191  0x00004bfd fetch  0x00000002 , 0x00004812 
+ 00026192  0x00004bfe rtn  0x00000034 
+ 00026193  0x00004bff increase  0xffffffff , 0x0000003f 
+ 00026194  0x00004c00 store  0x00000002 , 0x00004812 
+ 00026195  0x00004c01 nrtn  0x00000034 
+ 00026196  0x00004c02 call  0x000066a6 
+ 00026197  0x00004c03 branch  0x00003f9a 
+ 00026198  0x00004c06 fetch  0x00000002 , 0x00004814 
+ 00026199  0x00004c07 rtn  0x00000034 
+ 00026200  0x00004c08 increase  0xffffffff , 0x0000003f 
+ 00026201  0x00004c09 store  0x00000002 , 0x00004814 
+ 00026202  0x00004c0a nrtn  0x00000034 
+ 00026203  0x00004c0b call  0x00003f84 
+ 00026204  0x00004c0c branch  0x00003f9a 
+ 00026205  0x00004c0f fetch  0x00000002 , 0x00004818 
+ 00026206  0x00004c10 rtn  0x00000034 
+ 00026207  0x00004c11 increase  0xffffffff , 0x0000003f 
+ 00026208  0x00004c12 store  0x00000002 , 0x00004818 
+ 00026209  0x00004c13 nrtn  0x00000034 
+ 00026210  0x00004c14 jam  0x00000000 , 0x0000481a 
+ 00026211  0x00004c15 rtn 
+ 00026212  0x00004c18 fetch  0x00000002 , 0x00004816 
+ 00026213  0x00004c19 rtn  0x00000034 
+ 00026214  0x00004c1a increase  0xffffffff , 0x0000003f 
+ 00026215  0x00004c1b store  0x00000002 , 0x00004816 
+ 00026216  0x00004c1c nrtn  0x00000034 
+ 00026217  0x00004c1d branch  0x000066b1 
+ 00026218  0x00004c20 set0  0x00000025 , 0x00000000 
+ 00026219  0x00004c21 bpatch  0x000000c7 , 0x00004018 
+ 00026220  0x00004c22 jam  0x00000000 , 0x0000481a 
+ 00026221  0x00004c23 jam  0x00000001 , 0x0000480b 
+ 00026222  0x00004c24 setarg  0x00000000 
+ 00026223  0x00004c25 store  0x00000002 , 0x00004814 
+ 00026224  0x00004c26 call  0x000066b1 
+ 00026225  0x00004c27 fetch  0x00000001 , 0x00004132 
+ 00026226  0x00004c28 isolate1  0x00000001 , 0x0000003f 
+ 00026227  0x00004c29 call  0x00006688 , 0x00000001 
+ 00026228  0x00004c2a fetch  0x00000001 , 0x00004132 
+ 00026229  0x00004c2b isolate1  0x00000000 , 0x0000003f 
+ 00026230  0x00004c2c call  0x00006684 , 0x00000001 
+ 00026231  0x00004c2d call  0x00003fa6 
+ 00026232  0x00004c2e branch  0x00006697 
+ 00026233  0x00004c33 fetch  0x00000006 , 0x00004274 
+ 00026234  0x00004c34 branch  0x00003f79 , 0x00000034 
+ 00026235  0x00004c35 branch  0x00003f6e 
+ 00026236  0x00004c38 fetch  0x00000006 , 0x00004274 
+ 00026237  0x00004c39 branch  0x00006682 , 0x00000034 
+ 00026238  0x00004c3a fetch  0x00000002 , 0x0000480c 
+ 00026239  0x00004c3b store  0x00000002 , 0x00004814 
+ 00026240  0x00004c3c call  0x00003fa4 
+ 00026241  0x00004c3d branch  0x00003f82 
+ 00026242  0x00004c3f call  0x00003f94 
+ 00026243  0x00004c40 branch  0x00003f88 
+ 00026244  0x00004c43 fetch  0x00000002 , 0x000047f4 
+ 00026245  0x00004c44 isolate1  0x00000007 , 0x0000003f 
+ 00026246  0x00004c45 call  0x00003f75 , 0x00000001 
+ 00026247  0x00004c46 rtn 
+ 00026248  0x00004c48 call  0x00005b30 
+ 00026249  0x00004c49 rtn 
+ 00026250  0x00004c4c jam  0x00000001 , 0x0000427f 
+ 00026251  0x00004c4d call  0x00003fa4 
+ 00026252  0x00004c4e call  0x00003fa2 
+ 00026253  0x00004c4f jam  0x00000001 , 0x00004820 
+ 00026254  0x00004c50 setarg  0x00000000 
+ 00026255  0x00004c51 store  0x00000002 , 0x000047f0 
+ 00026256  0x00004c52 store  0x00000001 , 0x000047f2 
+ 00026257  0x00004c53 call  0x00003f9e 
+ 00026258  0x00004c54 branch  0x0000655a 
+ 00026259  0x00004c57 fetch  0x00000001 , 0x000042a9 
+ 00026260  0x00004c58 beq  0x00000033 , 0x00006679 
+ 00026261  0x00004c59 beq  0x00000034 , 0x0000667c 
+ 00026262  0x00004c5a branch  0x00006697 
+ 00026263  0x00004c5d set0  0x00000025 , 0x00000000 
+ 00026264  0x00004c5e bpatch  0x000000c8 , 0x00004019 
+ 00026265  0x00004c5f fetch  0x00000001 , 0x000044f9 
+ 00026266  0x00004c60 increase  0x00000001 , 0x0000003f 
+ 00026267  0x00004c61 store  0x00000001 , 0x000044f9 
+ 00026268  0x00004c62 call  0x00003fa6 
+ 00026269  0x00004c63 fetch  0x00000002 , 0x000047fe 
+ 00026270  0x00004c64 store  0x00000002 , 0x00004812 
+ 00026271  0x00004c65 fetch  0x00000001 , 0x00004132 
+ 00026272  0x00004c66 isolate1  0x00000001 , 0x0000003f 
+ 00026273  0x00004c67 call  0x00003f88 , 0x00000001 
+ 00026274  0x00004c68 fetch  0x00000001 , 0x00004132 
+ 00026275  0x00004c69 isolate1  0x00000000 , 0x0000003f 
+ 00026276  0x00004c6a call  0x00003f7c , 0x00000001 
+ 00026277  0x00004c6b branch  0x00003f94 
+ 00026278  0x00004c6e set0  0x00000025 , 0x00000000 
+ 00026279  0x00004c6f bpatch  0x000000c9 , 0x00004019 
+ 00026280  0x00004c70 setarg  0x00000000 
+ 00026281  0x00004c71 store  0x00000002 , 0x00004812 
+ 00026282  0x00004c72 fetch  0x00000001 , 0x00004132 
+ 00026283  0x00004c73 isolate1  0x00000001 , 0x0000003f 
+ 00026284  0x00004c74 call  0x00003f86 , 0x00000001 
+ 00026285  0x00004c75 fetch  0x00000001 , 0x00004132 
+ 00026286  0x00004c76 isolate1  0x00000000 , 0x0000003f 
+ 00026287  0x00004c77 call  0x00003f7e , 0x00000001 
+ 00026288  0x00004c78 branch  0x00003f98 
+ 00026289  0x00004c7b set0  0x00000025 , 0x00000000 
+ 00026290  0x00004c7c bpatch  0x000000ca , 0x00004019 
+ 00026291  0x00004c7d setarg  0x00000000 
+ 00026292  0x00004c7e store  0x00000002 , 0x00004816 
+ 00026293  0x00004c7f fetch  0x00000002 , 0x000047f4 
+ 00026294  0x00004c80 bbit1  0x00000009 , 0x00003f90 
+ 00026295  0x00004c81 fetch  0x00000002 , 0x000047f4 
+ 00026296  0x00004c82 bbit1  0x00000000 , 0x00003f77 
+ 00026297  0x00004c83 rtn 
+ 00026298  0x00004c86 set0  0x00000025 , 0x00000000 
+ 00026299  0x00004c87 bpatch  0x000000cb , 0x00004019 
+ 00026300  0x00004c88 arg  0x00000001 , 0x00000002 
+ 00026301  0x00004c89 arg  0x0000481b , 0x00000011 
+ 00026302  0x00004c8a arg  0x000000c6 , 0x00000012 
+ 00026303  0x00004c8b branch  0x0000683e 
+ 00026304  0x00004c8e set0  0x00000025 , 0x00000000 
+ 00026305  0x00004c8f bpatch  0x000000cc , 0x00004019 
+ 00026306  0x00004c90 arg  0x00000001 , 0x00000002 
+ 00026307  0x00004c91 arg  0x0000481b , 0x00000011 
+ 00026308  0x00004c92 arg  0x000000c6 , 0x00000012 
+ 00026309  0x00004c93 branch  0x0000681d 
+ 00026310  0x00004c9c set0  0x00000025 , 0x00000000 
+ 00026311  0x00004c9d bpatch  0x000000fe , 0x0000401f 
+ 00026312  0x00004c9e hfetch  0x00000001 , 0x00008073 
+ 00026313  0x00004c9f arg  0x00000006 , 0x00000002 
+ 00026314  0x00004ca0 ior  0x00000002 , 0x0000003f 
+ 00026315  0x00004ca1 hstore  0x00000001 , 0x00008073 
+ 00026316  0x00004ca2 hfetch  0x00000001 , 0x00008077 
+ 00026317  0x00004ca3 ior  0x00000002 , 0x0000003f 
+ 00026318  0x00004ca4 hstore  0x00000001 , 0x00008077 
+ 00026319  0x00004ca5 hjam  0x00000000 , 0x00008081 
+ 00026320  0x00004ca6 hfetch  0x00000001 , 0x00008077 
+ 00026321  0x00004ca7 set0  0x00000001 , 0x0000003f 
+ 00026322  0x00004ca8 set0  0x00000002 , 0x0000003f 
+ 00026323  0x00004ca9 hstore  0x00000001 , 0x00008077 
+ 00026324  0x00004caa nop  0x0000001e 
+ 00026325  0x00004cab hjam  0x00000001 , 0x00008081 
+ 00026326  0x00004cac rtn 
+ 00026327  0x00004cae branch  0x000067a1 
+ 00026328  0x00004cb1 branch  0x000067a9 
+ 00026329  0x00004cb9 nbranch  0x000066dd , 0x00000028 
+ 00026330  0x00004cba hfetch  0x00000001 , 0x00008085 
+ 00026331  0x00004cbb or_into  0x00000020 , 0x0000003f 
+ 00026332  0x00004cbc hstore  0x00000001 , 0x00008085 
+ 00026333  0x00004cbe copy  0x00000002 , 0x0000003e 
+ 00026334  0x00004cbf branch  0x000066e0 , 0x00000005 
+ 00026335  0x00004cc0 copy  0x00000013 , 0x0000003d 
+ 00026336  0x00004cc2 isolate0  0x00000000 , 0x0000003e 
+ 00026337  0x00004cc3 branch  0x00006763 
+ 00026338  0x00004cc7 force  0x00000004 , 0x00000002 
+ 00026339  0x00004cc9 arg  0x0000022c , 0x00000011 
+ 00026340  0x00004cca hfetch  0x00000001 , 0x00008085 
+ 00026341  0x00004ccb and_into  0x000000df , 0x0000003f 
+ 00026342  0x00004ccc hstore  0x00000001 , 0x00008085 
+ 00026343  0x00004ccd call  0x000066dd 
+ 00026344  0x00004cce arg  0x000055aa , 0x00000011 
+ 00026345  0x00004ccf fetch  0x00000002 , 0x0000022c 
+ 00026346  0x00004cd0 ifetcht  0x00000002 , 0x00000006 
+ 00026347  0x00004cd1 isub  0x00000011 , 0x0000003e 
+ 00026348  0x00004cd2 rtn 
+ 00026349  0x00004cd5 arg  0x00000002 , 0x00000002 
+ 00026350  0x00004cd6 arg  0x00000232 , 0x00000011 
+ 00026351  0x00004cd7 call  0x000066dd 
+ 00026352  0x00004cd8 fetch  0x00000002 , 0x00000232 
+ 00026353  0x00004cd9 store  0x00000002 , 0x00000225 
+ 00026354  0x00004cda call  0x000066f4 , 0x00000028 
+ 00026355  0x00004cdb rtn 
+ 00026356  0x00004cde arg  0x00000010 , 0x00000002 
+ 00026357  0x00004cdf arg  0x00000234 , 0x00000011 
+ 00026358  0x00004ce0 hfetch  0x00000001 , 0x00008085 
+ 00026359  0x00004ce1 and_into  0x000000df , 0x0000003f 
+ 00026360  0x00004ce2 hstore  0x00000001 , 0x00008085 
+ 00026361  0x00004ce3 call  0x000066dd 
+ 00026362  0x00004ce4 arg  0x00000234 , 0x00000006 
+ 00026363  0x00004ce5 arg  0x00000010 , 0x00000039 
+ 00026364  0x00004ce6 call  0x00007584 
+ 00026365  0x00004ce7 call  0x0000753d 
+ 00026366  0x00004ce8 call  0x0000759d 
+ 00026367  0x00004ce9 branch  0x00007534 
+ 00026368  0x00004cec disable  0x0000002d 
+ 00026369  0x00004ced call  0x000066e2 
+ 00026370  0x00004cee nrtn  0x00000005 
+ 00026371  0x00004cef enable  0x0000002d 
+ 00026372  0x00004cf0 hjam  0x00000080 , 0x00008023 
+ 00026373  0x00004cf1 hjam  0x00000000 , 0x00008022 
+ 00026374  0x00004cf2 hjam  0x00000000 , 0x00008024 
+ 00026375  0x00004cf3 arg  0x00008025 , 0x00000011 
+ 00026376  0x00004cf4 call  0x000066d9 
+ 00026377  0x00004cf5 hjam  0x00000000 , 0x00008023 
+ 00026378  0x00004cf6 call  0x000066e2 
+ 00026379  0x00004cf7 nrtn  0x00000005 
+ 00026380  0x00004cf8 force  0x00000000 , 0x0000003f 
+ 00026381  0x00004cf9 hstore  0x00000002 , 0x00008288 
+ 00026382  0x00004cfa arg  0x0000828a , 0x00000011 
+ 00026383  0x00004cfb call  0x000066d9 
+ 00026384  0x00004cfd arg  0x00000006 , 0x00000002 
+ 00026385  0x00004cfe call  0x000066e3 
+ 00026386  0x00004cff nrtn  0x00000005 
+ 00026387  0x00004d00 ifetch  0x00000002 , 0x00000006 
+ 00026388  0x00004d01 iforce  0x00000011 
+ 00026389  0x00004d02 call  0x000066dd 
+ 00026390  0x00004d03 branch  0x00006710 
+ 00026391  0x00004d0a call  0x00007f36 
+ 00026392  0x00004d0b setarg  0x00001000 
+ 00026393  0x00004d0c store  0x00000002 , 0x00000225 
+ 00026394  0x00004d0d arg  0x00006823 , 0x00000013 
+ 00026395  0x00004d0e arg  0x00000002 , 0x00000039 
+ 00026396  0x00004d10 call  0x000066e2 
+ 00026397  0x00004d11 nrtn  0x00000005 
+ 00026398  0x00004d12 fetch  0x00000002 , 0x00000225 
+ 00026399  0x00004d13 byteswap  0x0000003f , 0x0000003f 
+ 00026400  0x00004d14 iadd  0x00000002 , 0x0000003f 
+ 00026401  0x00004d15 byteswap  0x0000003f , 0x0000003f 
+ 00026402  0x00004d16 store  0x00000002 , 0x00000225 
+ 00026403  0x00004d17 loop  0x0000671c 
+ 00026404  0x00004d18 branch  0x00006710 
+ 00026405  0x00004d1b hjam  0x00000025 , 0x00008050 
+ 00026406  0x00004d1c hjam  0x00000005 , 0x00008280 
+ 00026407  0x00004d1d call  0x00007f36 
+ 00026408  0x00004d1f disable  0x00000028 
+ 00026409  0x00004d20 call  0x0000688a 
+ 00026410  0x00004d21 setarg  0x00000000 
+ 00026411  0x00004d22 arg  0x00000221 , 0x00000011 
+ 00026412  0x00004d23 arg  0x00000002 , 0x00000002 
+ 00026413  0x00004d24 call  0x000068d3 
+ 00026414  0x00004d25 fetch  0x00000002 , 0x00000221 
+ 00026415  0x00004d26 bbit0  0x00000007 , 0x00006738 
+ 00026416  0x00004d27 setarg  0x000007f0 
+ 00026417  0x00004d28 arg  0x00000234 , 0x00000011 
+ 00026418  0x00004d29 arg  0x00000010 , 0x00000002 
+ 00026419  0x00004d2a call  0x000068d3 
+ 00026420  0x00004d2b hjam  0x00000008 , 0x00008006 
+ 00026421  0x00004d2c arg  0x00000234 , 0x00000006 
+ 00026422  0x00004d2d call  0x00007590 
+ 00026423  0x00004d2e enable  0x00000028 
+ 00026424  0x00004d30 fetch  0x00000002 , 0x00000221 
+ 00026425  0x00004d31 byteswap  0x0000003f , 0x0000003f 
+ 00026426  0x00004d32 arg  0x000007ff , 0x00000002 
+ 00026427  0x00004d33 iand  0x00000002 , 0x0000003f 
+ 00026428  0x00004d34 branch  0x00006744 , 0x00000005 
+ 00026429  0x00004d35 call  0x0000688f 
+ 00026430  0x00004d36 arg  0x000068d8 , 0x00000013 
+ 00026431  0x00004d37 call  0x000066f4 , 0x00000028 
+ 00026432  0x00004d38 call  0x00006700 
+ 00026433  0x00004d39 fetch  0x00000001 , 0x00000220 
+ 00026434  0x00004d3a compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00026435  0x00004d3b nbranch  0x00006738 , 0x00000001 
+ 00026436  0x00004d3d call  0x0000688d 
+ 00026437  0x00004d3e fetch  0x00000001 , 0x00000221 
+ 00026438  0x00004d3f bbit1  0x00000005 , 0x00006751 
+ 00026439  0x00004d40 setarg  0x00000000 
+ 00026440  0x00004d41 store  0x00000003 , 0x00000224 
+ 00026441  0x00004d42 call  0x000067b9 
+ 00026442  0x00004d43 arg  0x000067db , 0x00000013 
+ 00026443  0x00004d44 call  0x000066ed 
+ 00026444  0x00004d45 call  0x00006700 
+ 00026445  0x00004d46 nbranch  0x00006751 , 0x0000002d 
+ 00026446  0x00004d47 fetch  0x00000001 , 0x00000220 
+ 00026447  0x00004d48 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00026448  0x00004d49 nbranch  0x00006744 , 0x00000001 
+ 00026449  0x00004d4b fetch  0x00000001 , 0x00000221 
+ 00026450  0x00004d4c bbit1  0x00000006 , 0x0000675d 
+ 00026451  0x00004d4d setarg  0x00000000 
+ 00026452  0x00004d4e store  0x00000002 , 0x00000225 
+ 00026453  0x00004d4f arg  0x00006823 , 0x00000013 
+ 00026454  0x00004d50 call  0x00006805 
+ 00026455  0x00004d51 call  0x000066ed 
+ 00026456  0x00004d52 call  0x00006700 
+ 00026457  0x00004d53 nbranch  0x0000675d , 0x0000002d 
+ 00026458  0x00004d54 fetch  0x00000001 , 0x00000220 
+ 00026459  0x00004d55 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00026460  0x00004d56 nbranch  0x00006751 , 0x00000001 
+ 00026461  0x00004d58 hjam  0x00000021 , 0x00008050 
+ 00026462  0x00004d59 fetch  0x00000001 , 0x00000221 
+ 00026463  0x00004d5a rtnbit0  0x00000004 
+ 00026464  0x00004d5b call  0x00004461 
+ 00026465  0x00004d5d call  0x000044a3 
+ 00026466  0x00004d5e branch  0x00006761 
+ 00026467  0x00004d62 fetch  0x00000001 , 0x00000220 
+ 00026468  0x00004d63 lshift  0x0000003f , 0x0000003f 
+ 00026469  0x00004d64 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00026470  0x00004d65 isolate0  0x0000000f , 0x00000011 
+ 00026471  0x00004d66 rtn  0x00000001 
+ 00026472  0x00004d67 store  0x00000001 , 0x00000220 
+ 00026473  0x00004d68 rtn 
+ 00026474  0x00004d6c hfetch  0x00000001 , 0x00008085 
+ 00026475  0x00004d6d rtnbit0  0x00000005 
+ 00026476  0x00004d6e branch  0x00006770 
+ 00026477  0x00004d70 hfetch  0x00000001 , 0x0000812c 
+ 00026478  0x00004d71 qisolate1  0x0000003f 
+ 00026479  0x00004d72 rtn  0x00000001 
+ 00026480  0x00004d74 hfetch  0x00000001 , 0x00008108 
+ 00026481  0x00004d75 bbit0  0x00000001 , 0x0000676d 
+ 00026482  0x00004d76 call  0x00007534 
+ 00026483  0x00004d77 branch  0x0000676d 
+ 00026484  0x00004d7c copy  0x00000039 , 0x00000002 
+ 00026485  0x00004d7d storet  0x00000002 , 0x0000423c 
+ 00026486  0x00004d7e hjam  0x00000080 , 0x00008023 
+ 00026487  0x00004d7f hjam  0x00000000 , 0x00008022 
+ 00026488  0x00004d80 hjam  0x00000000 , 0x00008024 
+ 00026489  0x00004d81 store  0x00000002 , 0x0000423a 
+ 00026490  0x00004d82 iforce  0x00000005 
+ 00026491  0x00004d83 lshift2  0x00000039 , 0x00000039 
+ 00026492  0x00004d85 hfetch  0x00000001 , 0x00008025 
+ 00026493  0x00004d86 istore  0x00000001 , 0x00000005 
+ 00026494  0x00004d87 loop  0x0000677c 
+ 00026495  0x00004d88 hjam  0x00000000 , 0x00008023 
+ 00026496  0x00004d89 rtn 
+ 00026497  0x00004d8c fetch  0x00000002 , 0x0000423a 
+ 00026498  0x00004d8d rtn  0x00000034 
+ 00026499  0x00004d8e hjam  0x00000080 , 0x00008023 
+ 00026500  0x00004d8f hjam  0x00000000 , 0x00008022 
+ 00026501  0x00004d90 hjam  0x00000000 , 0x00008024 
+ 00026502  0x00004d91 fetcht  0x00000002 , 0x0000423c 
+ 00026503  0x00004d92 lshift2  0x00000002 , 0x00000039 
+ 00026504  0x00004d93 iforce  0x00000006 
+ 00026505  0x00004d95 ifetch  0x00000001 , 0x00000006 
+ 00026506  0x00004d96 hstore  0x00000001 , 0x00008025 
+ 00026507  0x00004d97 loop  0x00006789 
+ 00026508  0x00004d98 hjam  0x00000000 , 0x00008023 
+ 00026509  0x00004d99 rtn 
+ 00026510  0x00004d9f set0  0x00000025 , 0x00000000 
+ 00026511  0x00004da0 bpatch  0x000000ff , 0x0000401f 
+ 00026512  0x00004da1 hjam  0x00000075 , 0x00008086 
+ 00026513  0x00004da2 hjam  0x0000000a , 0x00008087 
+ 00026514  0x00004da3 setarg  0x00000223 
+ 00026515  0x00004da4 hstore  0x00000002 , 0x0000808a 
+ 00026516  0x00004da5 setarg  0x00000228 
+ 00026517  0x00004da6 hstore  0x00000002 , 0x0000808c 
+ 00026518  0x00004da7 hfetch  0x00000001 , 0x00008081 
+ 00026519  0x00004da8 set1  0x00000000 , 0x0000003f 
+ 00026520  0x00004da9 set0  0x00000001 , 0x0000003f 
+ 00026521  0x00004daa hstore  0x00000001 , 0x00008081 
+ 00026522  0x00004dab rtn 
+ 00026523  0x00004dae hfetch  0x00000001 , 0x00008086 
+ 00026524  0x00004daf set1  0x00000007 , 0x0000003f 
+ 00026525  0x00004db0 hstore  0x00000001 , 0x00008086 
+ 00026526  0x00004db1 set0  0x00000007 , 0x0000003f 
+ 00026527  0x00004db2 hstore  0x00000001 , 0x00008086 
+ 00026528  0x00004db3 rtn 
+ 00026529  0x00004db8 set1  0x00000007 , 0x0000003f 
+ 00026530  0x00004db9 store  0x00000002 , 0x00000223 
+ 00026531  0x00004dba set1  0x00000025 , 0x00000000 
+ 00026532  0x00004dbb bpatch  0x00000000 , 0x00004020 
+ 00026533  0x00004dbc hjam  0x00000002 , 0x00008088 
+ 00026534  0x00004dbd hjam  0x00000000 , 0x0000808e 
+ 00026535  0x00004dbe hjam  0x00000002 , 0x00008006 
+ 00026536  0x00004dbf branch  0x000067b3 
+ 00026537  0x00004dc3 force  0x00000001 , 0x00000002 
+ 00026538  0x00004dc7 store  0x00000001 , 0x00000223 
+ 00026539  0x00004dc8 set1  0x00000025 , 0x00000000 
+ 00026540  0x00004dc9 bpatch  0x00000001 , 0x00004020 
+ 00026541  0x00004dca hjam  0x00000001 , 0x00008088 
+ 00026542  0x00004dcb hstoret  0x00000002 , 0x0000808e 
+ 00026543  0x00004dcc hjam  0x00000002 , 0x00008006 
+ 00026544  0x00004dcd call  0x000067b3 
+ 00026545  0x00004dce fetch  0x00000001 , 0x00000228 
+ 00026546  0x00004dcf rtn 
+ 00026547  0x00004dd2 fetch  0x00000002 , 0x00004177 
+ 00026548  0x00004dd3 increase  0x00000001 , 0x0000003f 
+ 00026549  0x00004dd4 store  0x00000002 , 0x00004177 
+ 00026550  0x00004dd5 hfetch  0x00000001 , 0x0000812c 
+ 00026551  0x00004dd6 bbit0  0x00000003 , 0x000067b3 
+ 00026552  0x00004dd7 rtn 
+ 00026553  0x00004dda hjam  0x00000040 , 0x00008086 
+ 00026554  0x00004ddb hjam  0x00000000 , 0x00008087 
+ 00026555  0x00004ddc hfetch  0x00000001 , 0x00008081 
+ 00026556  0x00004ddd set0  0x00000000 , 0x0000003f 
+ 00026557  0x00004dde set1  0x00000001 , 0x0000003f 
+ 00026558  0x00004ddf hstore  0x00000001 , 0x00008081 
+ 00026559  0x00004de0 setarg  0x00000000 
+ 00026560  0x00004de1 store  0x00000004 , 0x00000223 
+ 00026561  0x00004de2 rtn 
+ 00026562  0x00004de5 setarg  0x00000000 
+ 00026563  0x00004de6 hstore  0x00000002 , 0x0000808e 
+ 00026564  0x00004de7 setarg  0x00000001 
+ 00026565  0x00004de8 hstore  0x00000001 , 0x00008088 
+ 00026566  0x00004de9 setarg  0x00000223 
+ 00026567  0x00004dea hstore  0x00000002 , 0x0000808a 
+ 00026568  0x00004deb jam  0x00000006 , 0x00000223 
+ 00026569  0x00004dec hjam  0x00000002 , 0x00008006 
+ 00026570  0x00004ded branch  0x000067b3 
+ 00026571  0x00004df2 increase  0x00000004 , 0x00000002 
+ 00026572  0x00004df3 hstoret  0x00000002 , 0x00008088 
+ 00026573  0x00004df4 increase  0xfffffffc , 0x00000011 
+ 00026574  0x00004df5 arg  0x00000002 , 0x00000002 
+ 00026575  0x00004df6 istoret  0x00000001 , 0x00000011 
+ 00026576  0x00004df7 rshift16  0x0000003f , 0x00000002 
+ 00026577  0x00004df8 istoret  0x00000001 , 0x00000005 
+ 00026578  0x00004df9 rshift8  0x0000003f , 0x00000002 
+ 00026579  0x00004dfa istoret  0x00000001 , 0x00000005 
+ 00026580  0x00004dfb istore  0x00000001 , 0x00000005 
+ 00026581  0x00004dfc deposit  0x00000011 
+ 00026582  0x00004dfd hstore  0x00000002 , 0x0000808a 
+ 00026583  0x00004dfe setarg  0x00000000 
+ 00026584  0x00004dff hstore  0x00000002 , 0x0000808e 
+ 00026585  0x00004e00 hjam  0x00000002 , 0x00008006 
+ 00026586  0x00004e01 branch  0x000067b3 
+ 00026587  0x00004e06 hstoret  0x00000002 , 0x0000808e 
+ 00026588  0x00004e07 setarg  0x00000004 
+ 00026589  0x00004e08 hstore  0x00000002 , 0x00008088 
+ 00026590  0x00004e09 jam  0x00000003 , 0x00000223 
+ 00026591  0x00004e0a setarg  0x00000223 
+ 00026592  0x00004e0b hstore  0x00000002 , 0x0000808a 
+ 00026593  0x00004e0c deposit  0x00000011 
+ 00026594  0x00004e0d hstore  0x00000002 , 0x0000808c 
+ 00026595  0x00004e0e hfetch  0x00000001 , 0x00008086 
+ 00026596  0x00004e0f isolate0  0x0000000f , 0x00000011 
+ 00026597  0x00004e10 setflag  0x00000001 , 0x00000006 , 0x0000003f 
+ 00026598  0x00004e11 hstore  0x00000001 , 0x00008086 
+ 00026599  0x00004e12 hjam  0x00000002 , 0x00008006 
+ 00026600  0x00004e14 hfetch  0x00000001 , 0x0000812c 
+ 00026601  0x00004e15 bbit1  0x00000007 , 0x000067e8 
+ 00026602  0x00004e16 arg  0x00000003 , 0x00000007 
+ 00026603  0x00004e17 call  0x0000676a 
+ 00026604  0x00004e18 call  0x000067b3 
+ 00026605  0x00004e19 isolate1  0x00000002 , 0x0000003f 
+ 00026606  0x00004e1a call  0x00006763 
+ 00026607  0x00004e1b fetch  0x00000001 , 0x00000224 
+ 00026608  0x00004e1c lshift16  0x0000003f , 0x00000012 
+ 00026609  0x00004e1d fetch  0x00000001 , 0x00000225 
+ 00026610  0x00004e1e lshift8  0x0000003f , 0x0000003f 
+ 00026611  0x00004e1f ior  0x00000012 , 0x00000012 
+ 00026612  0x00004e20 fetch  0x00000001 , 0x00000226 
+ 00026613  0x00004e21 ior  0x00000012 , 0x0000003f 
+ 00026614  0x00004e22 iadd  0x00000002 , 0x0000003f 
+ 00026615  0x00004e23 store  0x00000001 , 0x00000226 
+ 00026616  0x00004e24 rshift8  0x0000003f , 0x0000003f 
+ 00026617  0x00004e25 store  0x00000001 , 0x00000225 
+ 00026618  0x00004e26 rshift8  0x0000003f , 0x0000003f 
+ 00026619  0x00004e27 store  0x00000001 , 0x00000224 
+ 00026620  0x00004e28 rtn 
+ 00026621  0x00004e2d hjam  0x0000000a , 0x00008042 
+ 00026622  0x00004e2e hjam  0x00000002 , 0x00008091 
+ 00026623  0x00004e2f hjam  0x00000003 , 0x00008092 
+ 00026624  0x00004e30 hjam  0x00000003 , 0x00008093 
+ 00026625  0x00004e31 hjam  0x00000003 , 0x00008094 
+ 00026626  0x00004e32 hjam  0x00000003 , 0x00008095 
+ 00026627  0x00004e33 hjam  0x00000002 , 0x00008096 
+ 00026628  0x00004e34 rtn 
+ 00026629  0x00004e37 hjam  0x00000005 , 0x00008091 
+ 00026630  0x00004e38 hjam  0x00000007 , 0x00008092 
+ 00026631  0x00004e39 hjam  0x00000007 , 0x00008093 
+ 00026632  0x00004e3a hjam  0x00000007 , 0x00008094 
+ 00026633  0x00004e3b hjam  0x00000007 , 0x00008095 
+ 00026634  0x00004e3c hjam  0x00000005 , 0x00008096 
+ 00026635  0x00004e3d rtn 
+ 00026636  0x00004e42 hfetch  0x00000001 , 0x0000812c 
+ 00026637  0x00004e43 bbit0  0x00000005 , 0x0000680c 
+ 00026638  0x00004e44 rtn 
+ 00026639  0x00004e48 store  0x00000001 , 0x00000224 
+ 00026640  0x00004e49 setarg  0x00000224 
+ 00026641  0x00004e4a hstore  0x00000002 , 0x0000809a 
+ 00026642  0x00004e4b setarg  0x00000001 
+ 00026643  0x00004e4c hstore  0x00000002 , 0x00008098 
+ 00026644  0x00004e4d hstoret  0x00000002 , 0x0000809e 
+ 00026645  0x00004e4e deposit  0x00000011 
+ 00026646  0x00004e4f hstore  0x00000002 , 0x0000809c 
+ 00026647  0x00004e50 hjam  0x00000001 , 0x00008090 
+ 00026648  0x00004e51 hjam  0x00000004 , 0x00008006 
+ 00026649  0x00004e52 branch  0x0000680c 
+ 00026650  0x00004e55 byteswap  0x0000003f , 0x0000003f 
+ 00026651  0x00004e56 store  0x00000002 , 0x00000225 
+ 00026652  0x00004e57 rtn 
+ 00026653  0x00004e5e set1  0x00000025 , 0x00000000 
+ 00026654  0x00004e5f bpatch  0x00000002 , 0x00004020 
+ 00026655  0x00004e60 fetch  0x00000002 , 0x0000429b 
+ 00026656  0x00004e61 iadd  0x00000012 , 0x0000003f 
+ 00026657  0x00004e65 byteswap  0x0000003f , 0x0000003f 
+ 00026658  0x00004e66 store  0x00000002 , 0x00000225 
+ 00026659  0x00004e6a set1  0x00000025 , 0x00000000 
+ 00026660  0x00004e6b bpatch  0x00000003 , 0x00004020 
+ 00026661  0x00004e6c setarg  0x00000004 
+ 00026662  0x00004e6d hstore  0x00000002 , 0x00008098 
+ 00026663  0x00004e6e jam  0x000000a0 , 0x00000224 
+ 00026664  0x00004e6f jam  0x000000a1 , 0x00000227 
+ 00026665  0x00004e70 setarg  0x00000224 
+ 00026666  0x00004e71 hstore  0x00000002 , 0x0000809a 
+ 00026667  0x00004e72 hstoret  0x00000002 , 0x0000809e 
+ 00026668  0x00004e73 deposit  0x00000011 
+ 00026669  0x00004e74 hstore  0x00000002 , 0x0000809c 
+ 00026670  0x00004e75 setarg  0x00000002 
+ 00026671  0x00004e76 isolate0  0x0000000f , 0x00000011 
+ 00026672  0x00004e77 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00026673  0x00004e78 hstore  0x00000001 , 0x00008090 
+ 00026674  0x00004e79 hjam  0x00000004 , 0x00008006 
+ 00026675  0x00004e7a arg  0x00000005 , 0x00000007 
+ 00026676  0x00004e7b call  0x0000676a 
+ 00026677  0x00004e7c call  0x0000680c 
+ 00026678  0x00004e7d isolate1  0x00000004 , 0x0000003f 
+ 00026679  0x00004e7e call  0x00006763 
+ 00026680  0x00004e7f fetch  0x00000002 , 0x00000225 
+ 00026681  0x00004e80 byteswap  0x0000003f , 0x0000003f 
+ 00026682  0x00004e81 iadd  0x00000002 , 0x0000003f 
+ 00026683  0x00004e82 byteswap  0x0000003f , 0x0000003f 
+ 00026684  0x00004e83 store  0x00000002 , 0x00000225 
+ 00026685  0x00004e84 rtn 
+ 00026686  0x00004e8b set1  0x00000025 , 0x00000000 
+ 00026687  0x00004e8c bpatch  0x00000004 , 0x00004020 
+ 00026688  0x00004e8d fetch  0x00000002 , 0x0000429b 
+ 00026689  0x00004e8e iadd  0x00000012 , 0x0000003f 
+ 00026690  0x00004e92 store  0x00000002 , 0x00000161 
+ 00026691  0x00004e93 set1  0x00000025 , 0x00000000 
+ 00026692  0x00004e94 bpatch  0x00000005 , 0x00004020 
+ 00026693  0x00004e95 storet  0x00000002 , 0x000002a0 
+ 00026694  0x00004e96 copy  0x00000011 , 0x0000003f 
+ 00026695  0x00004e97 store  0x00000002 , 0x000002b7 
+ 00026696  0x00004e99 call  0x00006858 
+ 00026697  0x00004e9b fetcht  0x00000002 , 0x000002b0 
+ 00026698  0x00004e9c fetch  0x00000002 , 0x000002b7 
+ 00026699  0x00004e9d copy  0x0000003f , 0x00000011 
+ 00026700  0x00004e9e fetch  0x00000002 , 0x00000161 
+ 00026701  0x00004ea0 call  0x00006870 
+ 00026702  0x00004ea2 fetch  0x00000002 , 0x000002b0 
+ 00026703  0x00004ea3 fetcht  0x00000002 , 0x000002b7 
+ 00026704  0x00004ea4 iadd  0x00000002 , 0x00000002 
+ 00026705  0x00004ea5 storet  0x00000002 , 0x000002b7 
+ 00026706  0x00004ea6 fetcht  0x00000002 , 0x00000161 
+ 00026707  0x00004ea7 iadd  0x00000002 , 0x00000002 
+ 00026708  0x00004ea8 storet  0x00000002 , 0x00000161 
+ 00026709  0x00004ea9 fetch  0x00000002 , 0x000002a0 
+ 00026710  0x00004eaa nbranch  0x00006848 , 0x00000034 
+ 00026711  0x00004eab rtn 
+ 00026712  0x00004eb4 set1  0x00000025 , 0x00000000 
+ 00026713  0x00004eb5 bpatch  0x00000006 , 0x00004020 
+ 00026714  0x00004eb6 fetch  0x00000002 , 0x000042aa 
+ 00026715  0x00004eb7 increase  0xffffffff , 0x0000003f 
+ 00026716  0x00004eb8 fetcht  0x00000002 , 0x00000161 
+ 00026717  0x00004eb9 ior  0x00000002 , 0x0000003f 
+ 00026718  0x00004eba increase  0x00000001 , 0x0000003f 
+ 00026719  0x00004ebb store  0x00000003 , 0x000002b4 
+ 00026720  0x00004ebd fetch  0x00000002 , 0x000002a0 
+ 00026721  0x00004ebe iadd  0x00000002 , 0x0000003f 
+ 00026722  0x00004ec0 fetcht  0x00000003 , 0x000002b4 
+ 00026723  0x00004ec1 isub  0x00000002 , 0x0000003f 
+ 00026724  0x00004ec2 nbranch  0x0000686b , 0x00000002 
+ 00026725  0x00004ec3 store  0x00000002 , 0x000002a0 
+ 00026726  0x00004ec4 fetch  0x00000003 , 0x000002b4 
+ 00026727  0x00004ec5 fetcht  0x00000002 , 0x00000161 
+ 00026728  0x00004ec6 isub  0x00000002 , 0x0000003f 
+ 00026729  0x00004ec7 store  0x00000002 , 0x000002b0 
+ 00026730  0x00004ec8 rtn 
+ 00026731  0x00004eca fetch  0x00000002 , 0x000002a0 
+ 00026732  0x00004ecb store  0x00000002 , 0x000002b0 
+ 00026733  0x00004ecc setarg  0x00000000 
+ 00026734  0x00004ecd store  0x00000002 , 0x000002a0 
+ 00026735  0x00004ece rtn 
+ 00026736  0x00004ed4 copy  0x0000003f , 0x00000012 
+ 00026737  0x00004ed5 set1  0x00000025 , 0x00000000 
+ 00026738  0x00004ed6 bpatch  0x00000007 , 0x00004020 
+ 00026739  0x00004ed7 copy  0x00000012 , 0x0000003f 
+ 00026740  0x00004ed8 increase  0x00000003 , 0x00000002 
+ 00026741  0x00004ed9 hstoret  0x00000002 , 0x00008098 
+ 00026742  0x00004eda increase  0xfffffffd , 0x00000011 
+ 00026743  0x00004edb ifetcht  0x00000003 , 0x00000011 
+ 00026744  0x00004edc copy  0x00000002 , 0x00000012 
+ 00026745  0x00004edd arg  0x000000a0 , 0x00000002 
+ 00026746  0x00004ede istoret  0x00000001 , 0x00000011 
+ 00026747  0x00004edf byteswap  0x0000003f , 0x0000003f 
+ 00026748  0x00004ee0 istore  0x00000002 , 0x00000005 
+ 00026749  0x00004ee1 deposit  0x00000011 
+ 00026750  0x00004ee2 hstore  0x00000002 , 0x0000809a 
+ 00026751  0x00004ee3 setarg  0x00000000 
+ 00026752  0x00004ee4 hstore  0x00000002 , 0x0000809e 
+ 00026753  0x00004ee5 hjam  0x00000001 , 0x00008090 
+ 00026754  0x00004ee6 hjam  0x00000004 , 0x00008006 
+ 00026755  0x00004ee7 call  0x0000680c 
+ 00026756  0x00004ee8 copy  0x00000012 , 0x0000003f 
+ 00026757  0x00004ee9 istore  0x00000003 , 0x00000011 
+ 00026758  0x00004eea nop  0x00002710 
+ 00026759  0x00004eeb nop  0x00002710 
+ 00026760  0x00004eec nop  0x00002710 
+ 00026761  0x00004eed rtn 
+ 00026762  0x00004ef2 hjam  0x00000070 , 0x00008973 
+ 00026763  0x00004ef3 nop  0x00000bb8 
+ 00026764  0x00004ef4 rtn 
+ 00026765  0x00004ef7 hjam  0x00000030 , 0x00008973 
+ 00026766  0x00004ef8 rtn 
+ 00026767  0x00004efb lshift3  0x0000003f , 0x0000003f 
+ 00026768  0x00004efc hstore  0x00000002 , 0x00008045 
+ 00026769  0x00004efd hjam  0x00000000 , 0x0000804b 
+ 00026770  0x00004efe rtn 
+ 00026771  0x00004f02 call  0x0000688f 
+ 00026772  0x00004f03 call  0x000068c0 
+ 00026773  0x00004f05 ifetcht  0x00000001 , 0x00000011 
+ 00026774  0x00004f06 increase  0x00000001 , 0x00000011 
+ 00026775  0x00004f07 force  0x00000000 , 0x00000007 
+ 00026776  0x00004f09 qisolate0  0x00000002 
+ 00026777  0x00004f0a branch  0x000068b7 , 0x00000001 
+ 00026778  0x00004f0b hfetch  0x00000001 , 0x00008046 
+ 00026779  0x00004f0c set1  0x00000006 , 0x0000003f 
+ 00026780  0x00004f0d set1  0x00000007 , 0x0000003f 
+ 00026781  0x00004f0e hstore  0x00000001 , 0x00008046 
+ 00026782  0x00004f0f hjam  0x00000002 , 0x00008047 
+ 00026783  0x00004f10 hjam  0x00000082 , 0x00008047 
+ 00026784  0x00004f11 set0  0x00000007 , 0x0000003f 
+ 00026785  0x00004f12 hstore  0x00000001 , 0x00008046 
+ 00026786  0x00004f13 hjam  0x0000008a , 0x00008047 
+ 00026787  0x00004f14 nop  0x0000000b 
+ 00026788  0x00004f15 hjam  0x000000ca , 0x00008047 
+ 00026789  0x00004f16 nop  0x00000021 
+ 00026790  0x00004f17 hjam  0x0000004a , 0x00008047 
+ 00026791  0x00004f18 nop  0x0000002c 
+ 00026792  0x00004f19 hjam  0x000000ca , 0x00008047 
+ 00026793  0x00004f1a nop  0x00000016 
+ 00026794  0x00004f1b hjam  0x0000008a , 0x00008047 
+ 00026795  0x00004f1c nop  0x00000021 
+ 00026796  0x00004f1d hjam  0x00000082 , 0x00008047 
+ 00026797  0x00004f1e nop  0x00000001 
+ 00026798  0x00004f1f hjam  0x00000092 , 0x00008047 
+ 00026799  0x00004f20 nop  0x0000000a 
+ 00026800  0x00004f21 hjam  0x000000b2 , 0x00008047 
+ 00026801  0x00004f22 hfetch  0x00000001 , 0x00008007 
+ 00026802  0x00004f23 hjam  0x00000092 , 0x00008047 
+ 00026803  0x00004f24 nop  0x00000001 
+ 00026804  0x00004f25 hjam  0x00000082 , 0x00008047 
+ 00026805  0x00004f26 qisolate0  0x0000003f 
+ 00026806  0x00004f27 branch  0x00006898 , 0x00000001 
+ 00026807  0x00004f29 hfetch  0x00000002 , 0x00008045 
+ 00026808  0x00004f2a increase  0x00000001 , 0x0000003f 
+ 00026809  0x00004f2b hstore  0x00000002 , 0x00008045 
+ 00026810  0x00004f2c increase  0x00000001 , 0x00000007 
+ 00026811  0x00004f2d compare  0x00000008 , 0x00000007 , 0x0000000f 
+ 00026812  0x00004f2e nbranch  0x00006898 , 0x00000001 
+ 00026813  0x00004f2f loop  0x00006895 
+ 00026814  0x00004f30 hjam  0x00000083 , 0x00008047 
+ 00026815  0x00004f31 rtn 
+ 00026816  0x00004f34 hjam  0x00000082 , 0x00008047 
+ 00026817  0x00004f35 nop  0x0000000c 
+ 00026818  0x00004f36 hjam  0x00000080 , 0x00008047 
+ 00026819  0x00004f37 hjam  0x00000082 , 0x00008047 
+ 00026820  0x00004f38 nop  0x00000096 
+ 00026821  0x00004f39 rtn 
+ 00026822  0x00004f3d call  0x000068c0 
+ 00026823  0x00004f3f hjam  0x000000a2 , 0x00008047 
+ 00026824  0x00004f40 deposit  0x00000011 
+ 00026825  0x00004f41 hstore  0x00000002 , 0x00008048 
+ 00026826  0x00004f42 set1  0x0000000b , 0x00000002 
+ 00026827  0x00004f43 isolate0  0x0000000f , 0x0000003f 
+ 00026828  0x00004f44 setflag  0x00000001 , 0x0000000f , 0x00000002 
+ 00026829  0x00004f45 hstoret  0x00000002 , 0x0000804a 
+ 00026830  0x00004f46 hjam  0x00000001 , 0x00008006 
+ 00026831  0x00004f47 rtn 
+ 00026832  0x00004f4a hfetch  0x00000001 , 0x0000812c 
+ 00026833  0x00004f4b bbit0  0x00000001 , 0x000068d0 
+ 00026834  0x00004f4c rtn 
+ 00026835  0x00004f50 call  0x0000688f 
+ 00026836  0x00004f51 call  0x000068c6 
+ 00026837  0x00004f52 call  0x000068d0 
+ 00026838  0x00004f53 hjam  0x00000083 , 0x00008047 
+ 00026839  0x00004f54 rtn 
+ 00026840  0x00004f5a hfetch  0x00000002 , 0x00008124 
+ 00026841  0x00004f5b hstore  0x00000002 , 0x00008045 
+ 00026842  0x00004f5c call  0x000068c6 
+ 00026843  0x00004f5d arg  0x00000001 , 0x00000007 
+ 00026844  0x00004f5e call  0x0000676a 
+ 00026845  0x00004f5f call  0x000068d0 
+ 00026846  0x00004f60 isolate1  0x00000000 , 0x0000003f 
+ 00026847  0x00004f61 call  0x00006763 
+ 00026848  0x00004f62 hjam  0x00000083 , 0x00008047 
+ 00026849  0x00004f63 rtn 
+ 00026850  0x00004f67 jam  0x00000001 , 0x0000427a 
+ 00026851  0x00004f68 force  0x0000000e , 0x00000007 
+ 00026852  0x00004f69 fetch  0x00000002 , 0x0000427c 
+ 00026853  0x00004f6a branch  0x00007e4c 
+ 00026854  0x00004f6c hfetch  0x00000002 , 0x00008112 
+ 00026855  0x00004f6d rtn  0x00000034 
+ 00026856  0x00004f6e fetcht  0x00000001 , 0x0000427b 
+ 00026857  0x00004f6f isub  0x00000002 , 0x0000003e 
+ 00026858  0x00004f70 branch  0x000068f2 , 0x00000002 
+ 00026859  0x00004f71 fetch  0x00000001 , 0x0000427a 
+ 00026860  0x00004f72 branch  0x000068e2 , 0x00000034 
+ 00026861  0x00004f73 arg  0x0000000e , 0x00000007 
+ 00026862  0x00004f74 call  0x00007e53 
+ 00026863  0x00004f75 branch  0x000068f2 , 0x00000034 
+ 00026864  0x00004f76 setarg  0x00000000 
+ 00026865  0x00004f77 rtn 
+ 00026866  0x00004f79 force  0x0000000e , 0x00000007 
+ 00026867  0x00004f7a call  0x00007e4b 
+ 00026868  0x00004f7b jam  0x00000000 , 0x0000427a 
+ 00026869  0x00004f7c hfetch  0x00000002 , 0x00008112 
+ 00026870  0x00004f7d rtn 
+ 00026871  0x00004f85 hfetch  0x00000002 , 0x0000805e 
+ 00026872  0x00004f86 iforce  0x0000000a 
+ 00026873  0x00004f87 rtn 
+ 00026874  0x00004f8a deposit  0x0000000a 
+ 00026875  0x00004f8b hstore  0x00000002 , 0x0000805e 
+ 00026876  0x00004f8c rtn 
+ 00026877  0x00004f8f hfetch  0x00000002 , 0x00008112 
+ 00026878  0x00004f90 rtn  0x00000034 
+ 00026879  0x00004f91 iforce  0x00000039 
+ 00026880  0x00004f92 hfetch  0x00000002 , 0x00008058 
+ 00026881  0x00004f93 iforce  0x00000003 
+ 00026882  0x00004f94 rtn 
+ 00026883  0x00004f98 hfetch  0x00000002 , 0x00008058 
+ 00026884  0x00004f99 iadd  0x00000002 , 0x0000003f 
+ 00026885  0x00004f9a copy  0x0000003f , 0x00000003 
+ 00026886  0x00004f9c deposit  0x00000003 
+ 00026887  0x00004f9d hstore  0x00000002 , 0x00008058 
+ 00026888  0x00004f9e rtn 
+ 00026889  0x00004fa1 fetch  0x00000002 , 0x000042ac 
+ 00026890  0x00004fa2 hstore  0x00000002 , 0x00008052 
+ 00026891  0x00004fa3 rtn 
+ 00026892  0x00004fa8 fetch  0x00000006 , 0x000003d0 
+ 00026893  0x00004fa9 store  0x00000006 , 0x000001b4 
+ 00026894  0x00004faa jam  0x00000034 , 0x000001b3 
+ 00026895  0x00004fab branch  0x00006913 
+ 00026896  0x00004fad fetch  0x00000006 , 0x00000040 
+ 00026897  0x00004fae store  0x00000006 , 0x000001b4 
+ 00026898  0x00004faf jam  0x00000033 , 0x000001b3 
+ 00026899  0x00004fb1 set1  0x00000025 , 0x00000000 
+ 00026900  0x00004fb2 bpatch  0x00000008 , 0x00004021 
+ 00026901  0x00004fb3 call  0x00006954 
+ 00026902  0x00004fb4 call  0x00006950 
+ 00026903  0x00004fb5 fetch  0x00000001 , 0x000001b3 
+ 00026904  0x00004fb6 beq  0x00000034 , 0x0000691b 
+ 00026905  0x00004fb7 beq  0x00000033 , 0x0000697c 
+ 00026906  0x00004fb8 rtn 
+ 00026907  0x00004fba call  0x0000697a 
+ 00026908  0x00004fbb branch  0x00006963 
+ 00026909  0x00004fbf set1  0x00000025 , 0x00000000 
+ 00026910  0x00004fc0 bpatch  0x00000009 , 0x00004021 
+ 00026911  0x00004fc1 call  0x00006929 
+ 00026912  0x00004fc2 fetch  0x00000001 , 0x000001b2 
+ 00026913  0x00004fc3 rtneq  0x000000ff 
+ 00026914  0x00004fc4 fetch  0x00000006 , 0x000001b4 
+ 00026915  0x00004fc5 store  0x00000006 , 0x00004274 
+ 00026916  0x00004fc6 fetch  0x00000001 , 0x000001b3 
+ 00026917  0x00004fc7 store  0x00000001 , 0x000042a9 
+ 00026918  0x00004fc8 beq  0x00000033 , 0x0000692d 
+ 00026919  0x00004fc9 beq  0x00000034 , 0x0000692f 
+ 00026920  0x00004fca rtn 
+ 00026921  0x00004fcc call  0x0000694c 
+ 00026922  0x00004fcd fetch  0x00000001 , 0x000001b2 
+ 00026923  0x00004fce rtneq  0x000000ff 
+ 00026924  0x00004fcf branch  0x0000696b 
+ 00026925  0x00004fd1 call  0x00006983 
+ 00026926  0x00004fd2 branch  0x000069a2 
+ 00026927  0x00004fd4 call  0x00006981 
+ 00026928  0x00004fd5 branch  0x000069a8 
+ 00026929  0x00004fd7 call  0x00006988 
+ 00026930  0x00004fd8 disable  0x00000028 
+ 00026931  0x00004fd9 call  0x0000698c 
+ 00026932  0x00004fda nbranch  0x0000427f , 0x00000028 
+ 00026933  0x00004fdc fetcht  0x00000002 , 0x000001ba 
+ 00026934  0x00004fdd increase  0xffffffff , 0x00000002 
+ 00026935  0x00004fde setarg  0x00000000 
+ 00026936  0x00004fdf istore  0x00000007 , 0x00000002 
+ 00026937  0x00004fe0 arg  0x0000001c , 0x00000002 
+ 00026938  0x00004fe1 arg  0x00000195 , 0x00000011 
+ 00026939  0x00004fe2 arg  0x00000000 , 0x00000012 
+ 00026940  0x00004fe3 branch  0x0000683e 
+ 00026941  0x00004fe6 set1  0x00000025 , 0x00000000 
+ 00026942  0x00004fe7 bpatch  0x0000000a , 0x00004021 
+ 00026943  0x00004fe8 arg  0x0000018e , 0x00000005 
+ 00026944  0x00004fe9 force  0x00000004 , 0x00000039 
+ 00026945  0x00004fea call  0x00007e3b 
+ 00026946  0x00004feb arg  0x0000001c , 0x00000002 
+ 00026947  0x00004fec arg  0x0000018e , 0x00000011 
+ 00026948  0x00004fed arg  0x00000000 , 0x00000012 
+ 00026949  0x00004fee branch  0x0000683e 
+ 00026950  0x00004ff1 set1  0x00000025 , 0x00000000 
+ 00026951  0x00004ff2 bpatch  0x0000000b , 0x00004021 
+ 00026952  0x00004ff3 setarg  0x00000000 
+ 00026953  0x00004ff4 store  0x00000003 , 0x00000040 
+ 00026954  0x00004ff5 istore  0x00000003 , 0x00000005 
+ 00026955  0x00004ff6 branch  0x00006954 
+ 00026956  0x00004ff9 arg  0x00000001 , 0x00000002 
+ 00026957  0x00004ffa arg  0x000001b2 , 0x00000011 
+ 00026958  0x00004ffb arg  0x0000001c , 0x00000012 
+ 00026959  0x00004ffc branch  0x0000681d 
+ 00026960  0x00004fff arg  0x00000001 , 0x00000002 
+ 00026961  0x00005000 arg  0x000001b2 , 0x00000011 
+ 00026962  0x00005001 arg  0x0000001c , 0x00000012 
+ 00026963  0x00005002 branch  0x0000683e 
+ 00026964  0x00005006 set1  0x00000025 , 0x00000000 
+ 00026965  0x00005007 bpatch  0x0000000c , 0x00004021 
+ 00026966  0x00005008 call  0x00006988 
+ 00026967  0x00005009 disable  0x00000028 
+ 00026968  0x0000500a call  0x0000698c 
+ 00026969  0x0000500b rtn  0x00000028 
+ 00026970  0x0000500d jam  0x00000000 , 0x000001b2 
+ 00026971  0x0000500e fetch  0x00000006 , 0x000001b4 
+ 00026972  0x0000500f store  0x00000006 , 0x0000018f 
+ 00026973  0x00005010 fetch  0x00000001 , 0x000001b3 
+ 00026974  0x00005011 store  0x00000001 , 0x0000018e 
+ 00026975  0x00005012 arg  0x0000001c , 0x00000002 
+ 00026976  0x00005013 arg  0x0000018e , 0x00000011 
+ 00026977  0x00005014 arg  0x00000000 , 0x00000012 
+ 00026978  0x00005015 branch  0x0000683e 
+ 00026979  0x00005019 arg  0x00000006 , 0x00000002 
+ 00026980  0x0000501a arg  0x000044f9 , 0x00000011 
+ 00026981  0x0000501b arg  0x0000001d , 0x00000012 
+ 00026982  0x0000501c branch  0x0000683e 
+ 00026983  0x0000501f arg  0x00000006 , 0x00000002 
+ 00026984  0x00005020 arg  0x000044f9 , 0x00000011 
+ 00026985  0x00005021 arg  0x0000001d , 0x00000012 
+ 00026986  0x00005022 branch  0x0000681d 
+ 00026987  0x00005026 set1  0x00000025 , 0x00000000 
+ 00026988  0x00005027 bpatch  0x0000000d , 0x00004021 
+ 00026989  0x00005028 arg  0x00000007 , 0x00000002 
+ 00026990  0x00005029 arg  0x000001b3 , 0x00000011 
+ 00026991  0x0000502a arg  0x00000000 , 0x00000012 
+ 00026992  0x0000502b fetch  0x00000001 , 0x000001b2 
+ 00026993  0x0000502c mul32  0x0000003f , 0x00000007 , 0x0000003f 
+ 00026994  0x0000502d iadd  0x00000012 , 0x00000012 
+ 00026995  0x0000502e branch  0x0000681d 
+ 00026996  0x00005031 arg  0x00000010 , 0x00000002 
+ 00026997  0x00005032 arg  0x00000023 , 0x00000012 
+ 00026998  0x00005033 fetch  0x00000001 , 0x000001b2 
+ 00026999  0x00005034 lshift4  0x0000003f , 0x0000003f 
+ 00027000  0x00005035 iadd  0x00000012 , 0x00000012 
+ 00027001  0x00005036 rtn 
+ 00027002  0x00005039 arg  0x0000447b , 0x00000011 
+ 00027003  0x0000503a branch  0x0000697d 
+ 00027004  0x0000503c arg  0x00004262 , 0x00000011 
+ 00027005  0x0000503e set1  0x00000025 , 0x00000000 
+ 00027006  0x0000503f bpatch  0x0000000e , 0x00004021 
+ 00027007  0x00005040 call  0x00006974 
+ 00027008  0x00005041 branch  0x0000683e 
+ 00027009  0x00005044 arg  0x0000447b , 0x00000011 
+ 00027010  0x00005045 branch  0x00006984 
+ 00027011  0x00005047 arg  0x00004262 , 0x00000011 
+ 00027012  0x00005049 set1  0x00000025 , 0x00000000 
+ 00027013  0x0000504a bpatch  0x0000000f , 0x00004021 
+ 00027014  0x0000504b call  0x00006974 
+ 00027015  0x0000504c branch  0x0000681d 
+ 00027016  0x00005051 arg  0x0000001c , 0x00000002 
+ 00027017  0x00005052 arg  0x00000195 , 0x00000011 
+ 00027018  0x00005053 arg  0x00000000 , 0x00000012 
+ 00027019  0x00005054 branch  0x0000681d 
+ 00027020  0x00005057 set1  0x00000025 , 0x00000000 
+ 00027021  0x00005058 bpatch  0x00000010 , 0x00004022 
+ 00027022  0x00005059 setarg  0x00000195 
+ 00027023  0x0000505a store  0x00000002 , 0x000001ba 
+ 00027024  0x0000505b jam  0x00000000 , 0x000001b2 
+ 00027025  0x0000505c arg  0x00000004 , 0x00000039 
+ 00027026  0x0000505e copy  0x00000039 , 0x0000003f 
+ 00027027  0x0000505f store  0x00000001 , 0x00000161 
+ 00027028  0x00005060 fetch  0x00000002 , 0x000001ba 
+ 00027029  0x00005061 copy  0x0000003f , 0x00000011 
+ 00027030  0x00005062 call  0x000069ac 
+ 00027031  0x00005063 rtn  0x00000028 
+ 00027032  0x00005064 fetch  0x00000002 , 0x000001ba 
+ 00027033  0x00005065 increase  0x00000007 , 0x0000003f 
+ 00027034  0x00005066 store  0x00000002 , 0x000001ba 
+ 00027035  0x00005067 fetch  0x00000001 , 0x000001b2 
+ 00027036  0x00005068 increase  0x00000001 , 0x0000003f 
+ 00027037  0x00005069 store  0x00000001 , 0x000001b2 
+ 00027038  0x0000506a fetch  0x00000001 , 0x00000161 
+ 00027039  0x0000506b copy  0x0000003f , 0x00000039 
+ 00027040  0x0000506c loop  0x00006992 
+ 00027041  0x0000506d rtn 
+ 00027042  0x00005070 fetch  0x00000008 , 0x00004262 
+ 00027043  0x00005071 fetcht  0x00000008 , 0x0000426a 
+ 00027044  0x00005072 ior  0x00000002 , 0x0000003f 
+ 00027045  0x00005073 rtn  0x00000034 
+ 00027046  0x00005074 jam  0x00000001 , 0x0000425e 
+ 00027047  0x00005075 rtn 
+ 00027048  0x00005077 fetch  0x00000006 , 0x00004274 
+ 00027049  0x00005078 rtn  0x00000034 
+ 00027050  0x00005079 jam  0x00000001 , 0x0000448b 
+ 00027051  0x0000507a rtn 
+ 00027052  0x0000507d arg  0x000001b3 , 0x00000012 
+ 00027053  0x0000507e arg  0x00000007 , 0x00000039 
+ 00027054  0x0000507f call  0x00007f25 
+ 00027055  0x00005080 branch  0x000069b1 , 0x00000005 
+ 00027056  0x00005081 rtn 
+ 00027057  0x00005083 enable  0x00000028 
+ 00027058  0x00005084 rtn 
+ 00027059  0x00005086 branch  0x00003bf1 
+ 00027060  0x0000508e set1  0x00000025 , 0x00000000 
+ 00027061  0x0000508f bpatch  0x00000011 , 0x00004022 
+ 00027062  0x00005090 set1  0x00000007 , 0x00000002 
+ 00027063  0x00005091 call  0x000069e5 
+ 00027064  0x00005092 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00027065  0x00005098 set1  0x00000025 , 0x00000000 
+ 00027066  0x00005099 bpatch  0x00000012 , 0x00004022 
+ 00027067  0x0000509a isolate0  0x00000007 , 0x00000002 
+ 00027068  0x0000509b and  0x00000002 , 0x0000001f , 0x00000007 
+ 00027069  0x0000509c fetch  0x00000004 , 0x000000a3 
+ 00027070  0x0000509d qsetflag  0x00000001 , 0x0000003f 
+ 00027071  0x0000509e store  0x00000004 , 0x000000a3 
+ 00027072  0x0000509f fetch  0x00000004 , 0x000000a7 
+ 00027073  0x000050a0 nqsetflag  0x00000001 , 0x0000003f 
+ 00027074  0x000050a1 store  0x00000004 , 0x000000a7 
+ 00027075  0x000050a2 rtn 
+ 00027076  0x000050a6 set1  0x00000025 , 0x00000000 
+ 00027077  0x000050a7 bpatch  0x00000013 , 0x00004022 
+ 00027078  0x000050a8 isolate0  0x00000007 , 0x00000002 
+ 00027079  0x000050a9 and  0x00000002 , 0x0000001f , 0x00000007 
+ 00027080  0x000050aa fetch  0x00000004 , 0x000000a3 
+ 00027081  0x000050ab qset0  0x0000003f 
+ 00027082  0x000050ac store  0x00000004 , 0x000000a3 
+ 00027083  0x000050ad fetch  0x00000004 , 0x000000a7 
+ 00027084  0x000050ae qset0  0x0000003f 
+ 00027085  0x000050af store  0x00000004 , 0x000000a7 
+ 00027086  0x000050b0 rtn 
+ 00027087  0x000050b4 call  0x000069c4 
+ 00027088  0x000050b5 branch  0x000069d2 
+ 00027089  0x000050b9 ncall  0x000069b9 , 0x0000002b 
+ 00027090  0x000050bc arg  0x0000807c , 0x00000005 
+ 00027091  0x000050bd call  0x000069f4 
+ 00027092  0x000050be setflip  0x00000007 , 0x00000002 
+ 00027093  0x000050bf arg  0x00008078 , 0x00000005 
+ 00027094  0x000050c0 call  0x000069f4 
+ 00027095  0x000050c1 set0  0x00000007 , 0x00000002 
+ 00027096  0x000050c2 arg  0x00008070 , 0x00000005 
+ 00027097  0x000050c3 branch  0x000069f4 
+ 00027098  0x000050c7 setflip  0x00000007 , 0x00000002 
+ 00027099  0x000050c8 call  0x000069f3 
+ 00027100  0x000050c9 set1  0x00000007 , 0x00000002 
+ 00027101  0x000050ca arg  0x00008070 , 0x00000005 
+ 00027102  0x000050cb branch  0x000069f4 
+ 00027103  0x000050ce and  0x00000002 , 0x00000007 , 0x00000007 
+ 00027104  0x000050cf rshift3  0x00000002 , 0x0000003f 
+ 00027105  0x000050d0 and_into  0x00000003 , 0x0000003f 
+ 00027106  0x000050d1 iadd  0x00000005 , 0x00000005 
+ 00027107  0x000050d2 ifetch  0x00000001 , 0x00000005 
+ 00027108  0x000050d3 rtn 
+ 00027109  0x000050d8 arg  0x0000811c , 0x00000005 
+ 00027110  0x000050d9 call  0x000069df 
+ 00027111  0x000050da isolate1  0x00000007 , 0x00000002 
+ 00027112  0x000050db branch  0x000069eb , 0x00000001 
+ 00027113  0x000050dc qisolate0  0x0000003f 
+ 00027114  0x000050dd rtn 
+ 00027115  0x000050df qisolate1  0x0000003f 
+ 00027116  0x000050e0 rtn 
+ 00027117  0x000050e3 isolate1  0x00000007 , 0x0000003e 
+ 00027118  0x000050e4 branch  0x000069f0 
+ 00027119  0x000050e7 isolate0  0x00000007 , 0x0000003e 
+ 00027120  0x000050eb setarg  0x00000000 
+ 00027121  0x000050ec nsetflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00027122  0x000050ed ixor  0x00000002 , 0x00000002 
+ 00027123  0x000050f1 arg  0x00008074 , 0x00000005 
+ 00027124  0x000050f5 call  0x000069df 
+ 00027125  0x000050f6 isolate1  0x00000007 , 0x00000002 
+ 00027126  0x000050f7 qsetflag  0x00000001 , 0x0000003f 
+ 00027127  0x000050f8 istore  0x00000001 , 0x00000005 
+ 00027128  0x000050f9 rtn 
+ 00027129  0x000050fc fetch  0x00000001 , 0x0000416e 
+ 00027130  0x000050fd rtneq  0x0000007f 
+ 00027131  0x000050fe hjam  0x00000000 , 0x00008077 
+ 00027132  0x000050ff nop  0x0000001e 
+ 00027133  0x00005100 hjam  0x00000008 , 0x00008077 
+ 00027134  0x00005101 rtn 
+ 00027135  0x00005107 lshift8  0x0000003f , 0x0000003f 
+ 00027136  0x00005108 lshift4  0x0000003f , 0x0000003f 
+ 00027137  0x00005109 hstore  0x00000002 , 0x000080a2 
+ 00027138  0x0000510a hstore  0x00000002 , 0x000080a0 
+ 00027139  0x0000510b rtn 
+ 00027140  0x0000510e setarg  0x00000000 
+ 00027141  0x0000510f hstore  0x00000002 , 0x000080a2 
+ 00027142  0x00005110 setarg  0x00000001 
+ 00027143  0x00005111 hstore  0x00000002 , 0x000080a0 
+ 00027144  0x00005112 rtn 
+ 00027145  0x00005115 setarg  0x00000000 
+ 00027146  0x00005116 hstore  0x00000002 , 0x000080a2 
+ 00027147  0x00005117 hstore  0x00000002 , 0x000080a0 
+ 00027148  0x00005118 rtn 
+ 00027149  0x0000511e arg  0x00008800 , 0x00000005 
+ 00027150  0x0000511f arg  0x00000020 , 0x00000039 
+ 00027151  0x00005120 call  0x00007e3b 
+ 00027152  0x00005121 setarg  0x000004f9 
+ 00027153  0x00005122 hstore  0x00000002 , 0x00008848 
+ 00027154  0x00005123 hstore  0x00000002 , 0x0000884a 
+ 00027155  0x00005124 hstore  0x00000002 , 0x0000884c 
+ 00027156  0x00005125 hstore  0x00000002 , 0x0000886c 
+ 00027157  0x00005126 hstore  0x00000002 , 0x0000888c 
+ 00027158  0x00005127 hstore  0x00000002 , 0x000088ac 
+ 00027159  0x00005128 setarg  0x00000204 
+ 00027160  0x00005129 hstore  0x00000002 , 0x000088ae 
+ 00027161  0x0000512a setarg  0x00000506 
+ 00027162  0x0000512b hstore  0x00000002 , 0x000088b0 
+ 00027163  0x0000512c setarg  0x00000504 
+ 00027164  0x0000512d hstore  0x00000002 , 0x000088b2 
+ 00027165  0x0000512e setarg  0x00000200 
+ 00027166  0x0000512f hstore  0x00000002 , 0x000088b4 
+ 00027167  0x00005130 setarg  0x0000fefb 
+ 00027168  0x00005131 hstore  0x00000002 , 0x000088b6 
+ 00027169  0x00005132 setarg  0x0000faf9 
+ 00027170  0x00005133 hstore  0x00000002 , 0x000088b8 
+ 00027171  0x00005134 setarg  0x0000fafb 
+ 00027172  0x00005135 hstore  0x00000002 , 0x000088ba 
+ 00027173  0x00005136 setarg  0x0000fd00 
+ 00027174  0x00005137 hstore  0x00000002 , 0x000088bc 
+ 00027175  0x00005138 setarg  0x00000408 
+ 00027176  0x00005139 hstore  0x00000002 , 0x000088be 
+ 00027177  0x0000513a setarg  0x00000a0c 
+ 00027178  0x0000513b hstore  0x00000002 , 0x000088c0 
+ 00027179  0x0000513c setarg  0x00000b09 
+ 00027180  0x0000513d hstore  0x00000002 , 0x000088c2 
+ 00027181  0x0000513e setarg  0x00000500 
+ 00027182  0x0000513f hstore  0x00000002 , 0x000088c4 
+ 00027183  0x00005140 setarg  0x0000f8f1 
+ 00027184  0x00005141 hstore  0x00000002 , 0x000088c6 
+ 00027185  0x00005142 setarg  0x0000ece8 
+ 00027186  0x00005143 hstore  0x00000002 , 0x000088c8 
+ 00027187  0x00005144 setarg  0x0000e9eb 
+ 00027188  0x00005145 hstore  0x00000002 , 0x000088ca 
+ 00027189  0x00005146 setarg  0x0000f500 
+ 00027190  0x00005147 hstore  0x00000002 , 0x000088cc 
+ 00027191  0x00005148 setarg  0x00001223 
+ 00027192  0x00005149 hstore  0x00000002 , 0x000088ce 
+ 00027193  0x0000514a setarg  0x0000374b 
+ 00027194  0x0000514b hstore  0x00000002 , 0x000088d0 
+ 00027195  0x0000514c setarg  0x00005e71 
+ 00027196  0x0000514d hstore  0x00000002 , 0x000088d2 
+ 00027197  0x0000514e setarg  0x0000787f 
+ 00027198  0x0000514f hstore  0x00000002 , 0x000088d4 
+ 00027199  0x00005150 rtn 
+ 00027200  0x00005153 set1  0x00000025 , 0x00000000 
+ 00027201  0x00005154 bpatch  0x00000014 , 0x00004022 
+ 00027202  0x00005155 hfetch  0x00000002 , 0x00008050 
+ 00027203  0x00005156 set0  0x0000000e , 0x0000003f 
+ 00027204  0x00005157 hstore  0x00000002 , 0x00008050 
+ 00027205  0x00005158 hjam  0x00000011 , 0x000080b0 
+ 00027206  0x00005159 hjam  0x00000001 , 0x000080b1 
+ 00027207  0x0000515a hjam  0x00000001 , 0x000080b2 
+ 00027208  0x0000515b hjam  0x00000011 , 0x000080b3 
+ 00027209  0x0000515c rtn 
+ 00027210  0x0000515f set1  0x00000025 , 0x00000000 
+ 00027211  0x00005160 bpatch  0x00000015 , 0x00004022 
+ 00027212  0x00005161 hfetch  0x00000002 , 0x00008050 
+ 00027213  0x00005162 set1  0x0000000e , 0x0000003f 
+ 00027214  0x00005163 hstore  0x00000002 , 0x00008050 
+ 00027215  0x00005164 hjam  0x00000004 , 0x000080b0 
+ 00027216  0x00005165 hjam  0x00000004 , 0x000080b3 
+ 00027217  0x00005166 hjam  0x00000000 , 0x000080b1 
+ 00027218  0x00005167 hjam  0x00000000 , 0x000080b2 
+ 00027219  0x00005168 rtn 
+ 00027220  0x0000516d fetch  0x00000001 , 0x00000030 
+ 00027221  0x0000516e rtnbit0  0x00000002 
+ 00027222  0x0000516f arg  0x000000b5 , 0x00000005 
+ 00027223  0x00005170 arg  0x0000001e , 0x00000039 
+ 00027224  0x00005172 hfetch  0x00000001 , 0x00008134 
+ 00027225  0x00005173 istore  0x00000001 , 0x00000005 
+ 00027226  0x00005174 loop  0x00006a58 
+ 00027227  0x00005175 rtn 
+ 00027228  0x00005179 fetch  0x00000001 , 0x00000030 
+ 00027229  0x0000517a rtnbit0  0x00000002 
+ 00027230  0x0000517b arg  0x000000d3 , 0x00000006 
+ 00027231  0x0000517c force  0x0000001e , 0x00000039 
+ 00027232  0x0000517e ifetch  0x00000001 , 0x00000006 
+ 00027233  0x0000517f hstore  0x00000001 , 0x00008009 
+ 00027234  0x00005180 loop  0x00006a60 
+ 00027235  0x00005181 rtn 
+ 00027236  0x00005184 rtn 
+ 00027237  0x0000518a call  0x00006a87 
+ 00027238  0x0000518b arg  0x00000006 , 0x00000002 
+ 00027239  0x0000518c branch  0x000069da 
+ 00027240  0x0000518f call  0x00006a65 
+ 00027241  0x00005190 arg  0x00000006 , 0x00000002 
+ 00027242  0x00005191 branch  0x000069ed 
+ 00027243  0x00005194 call  0x00006a65 
+ 00027244  0x00005195 arg  0x00000006 , 0x00000002 
+ 00027245  0x00005196 branch  0x000069ef 
+ 00027246  0x00005199 call  0x00006a87 
+ 00027247  0x0000519a arg  0x00000007 , 0x00000002 
+ 00027248  0x0000519b branch  0x000069da 
+ 00027249  0x0000519e call  0x00006a6e 
+ 00027250  0x0000519f arg  0x00000007 , 0x00000002 
+ 00027251  0x000051a0 branch  0x000069ed 
+ 00027252  0x000051a3 call  0x00006a6e 
+ 00027253  0x000051a4 arg  0x00000007 , 0x00000002 
+ 00027254  0x000051a5 branch  0x000069ef 
+ 00027255  0x000051a8 call  0x00006a87 
+ 00027256  0x000051a9 hfetch  0x00000001 , 0x00008078 
+ 00027257  0x000051aa set1  0x00000006 , 0x0000003f 
+ 00027258  0x000051ab hstore  0x00000001 , 0x00008078 
+ 00027259  0x000051ac arg  0x00000006 , 0x00000002 
+ 00027260  0x000051ad branch  0x000069d1 
+ 00027261  0x000051b0 call  0x00006a87 
+ 00027262  0x000051b1 hfetch  0x00000001 , 0x00008078 
+ 00027263  0x000051b2 set1  0x00000007 , 0x0000003f 
+ 00027264  0x000051b3 hstore  0x00000001 , 0x00008078 
+ 00027265  0x000051b4 arg  0x00000007 , 0x00000002 
+ 00027266  0x000051b5 branch  0x000069d1 
+ 00027267  0x000051b8 hfetch  0x00000001 , 0x00008081 
+ 00027268  0x000051b9 or_into  0x00000004 , 0x0000003f 
+ 00027269  0x000051ba hstore  0x00000001 , 0x00008081 
+ 00027270  0x000051bb rtn 
+ 00027271  0x000051be hfetch  0x00000001 , 0x00008081 
+ 00027272  0x000051bf and_into  0x000000fb , 0x0000003f 
+ 00027273  0x000051c0 hstore  0x00000001 , 0x00008081 
+ 00027274  0x000051c1 rtn 
+ 00027275  0x000051c4 hfetch  0x00000001 , 0x00008081 
+ 00027276  0x000051c5 isolate1  0x00000002 , 0x0000003f 
+ 00027277  0x000051c6 rtn 
+ 00027278  0x000051ca setarg  0x00006a91 
+ 00027279  0x000051cb store  0x00000002 , 0x00004296 
+ 00027280  0x000051cc rtn 
+ 00027281  0x000051ce call  0x00006b14 
+ 00027282  0x000051cf fetch  0x00000001 , 0x00000481 
+ 00027283  0x000051d0 beq  0x00000001 , 0x00006a96 
+ 00027284  0x000051d1 beq  0x00000002 , 0x00006a9c 
+ 00027285  0x000051d2 branch  0x00003bf1 
+ 00027286  0x000051d4 arg  0x00000017 , 0x00000002 
+ 00027287  0x000051d5 storet  0x00000002 , 0x000044c2 
+ 00027288  0x000051d6 call  0x00005a88 
+ 00027289  0x000051d7 ifetch  0x00000001 , 0x00000006 
+ 00027290  0x000051d8 call  0x00006a9e 
+ 00027291  0x000051d9 branch  0x00005b42 
+ 00027292  0x000051db call  0x00006a9e 
+ 00027293  0x000051dc branch  0x00005b51 
+ 00027294  0x000051de copy  0x00000006 , 0x00000011 
+ 00027295  0x000051df set1  0x00000025 , 0x00000000 
+ 00027296  0x000051e0 bpatch  0x00000031 , 0x00004026 
+ 00027297  0x000051e1 ifetch  0x00000001 , 0x00000006 
+ 00027298  0x000051e2 beq  0x00000000 , 0x00006ab7 
+ 00027299  0x000051e3 beq  0x00000001 , 0x00006abc 
+ 00027300  0x000051e4 beq  0x00000002 , 0x00006abd 
+ 00027301  0x000051e5 beq  0x00000003 , 0x00006abe 
+ 00027302  0x000051e6 beq  0x00000004 , 0x00006b50 
+ 00027303  0x000051e7 beq  0x00000005 , 0x00006aff 
+ 00027304  0x000051e8 beq  0x00000006 , 0x00006b51 
+ 00027305  0x000051e9 beq  0x00000007 , 0x00006b52 
+ 00027306  0x000051ea beq  0x00000008 , 0x00006abf 
+ 00027307  0x000051eb beq  0x00000009 , 0x00006ac0 
+ 00027308  0x000051ec beq  0x0000000a , 0x00006ac1 
+ 00027309  0x000051ed beq  0x0000000b , 0x00006ac2 
+ 00027310  0x000051ee beq  0x0000000c , 0x00006ac3 
+ 00027311  0x000051ef beq  0x0000000d , 0x00006ad5 
+ 00027312  0x000051f0 beq  0x0000000e , 0x00006ae3 
+ 00027313  0x000051f1 beq  0x0000000f , 0x00006af0 
+ 00027314  0x000051f2 beq  0x00000010 , 0x00006af1 
+ 00027315  0x000051f3 beq  0x00000011 , 0x00006af8 
+ 00027316  0x000051f4 beq  0x00000012 , 0x00006b19 
+ 00027317  0x000051f5 beq  0x00000013 , 0x00006b45 
+ 00027318  0x000051f6 rtn 
+ 00027319  0x000051fa copy  0x00000011 , 0x00000006 
+ 00027320  0x000051fb ifetch  0x00000001 , 0x00000006 
+ 00027321  0x000051fc lshift8  0x0000003f , 0x0000003f 
+ 00027322  0x000051fd store  0x00000003 , 0x0000046d 
+ 00027323  0x000051fe rtn 
+ 00027324  0x00005200 rtn 
+ 00027325  0x00005202 rtn 
+ 00027326  0x00005204 rtn 
+ 00027327  0x00005209 rtn 
+ 00027328  0x0000520b rtn 
+ 00027329  0x0000520d rtn 
+ 00027330  0x0000520f rtn 
+ 00027331  0x00005214 ifetch  0x00000004 , 0x00000006 
+ 00027332  0x00005215 hstore  0x00000001 , 0x00008082 
+ 00027333  0x00005216 rshift8  0x0000003f , 0x0000003f 
+ 00027334  0x00005217 hfetcht  0x00000001 , 0x00008081 
+ 00027335  0x00005218 and_into  0x0000007f , 0x00000002 
+ 00027336  0x00005219 ior  0x00000002 , 0x00000002 
+ 00027337  0x0000521a hstoret  0x00000001 , 0x00008081 
+ 00027338  0x0000521b rshift8  0x0000003f , 0x0000003f 
+ 00027339  0x0000521c hfetcht  0x00000001 , 0x00008051 
+ 00027340  0x0000521d and_into  0x000000df , 0x00000002 
+ 00027341  0x0000521e ior  0x00000002 , 0x00000002 
+ 00027342  0x0000521f hstoret  0x00000001 , 0x00008051 
+ 00027343  0x00005220 rshift8  0x0000003f , 0x0000003f 
+ 00027344  0x00005221 hfetcht  0x00000001 , 0x00008042 
+ 00027345  0x00005222 and_into  0x0000003f , 0x00000002 
+ 00027346  0x00005223 ior  0x00000002 , 0x00000002 
+ 00027347  0x00005224 hstoret  0x00000001 , 0x00008042 
+ 00027348  0x00005225 branch  0x00006ab7 
+ 00027349  0x00005227 ifetch  0x00000009 , 0x00000006 
+ 00027350  0x00005228 hfetcht  0x00000001 , 0x00008085 
+ 00027351  0x00005229 and_into  0x0000003f , 0x00000002 
+ 00027352  0x0000522a ior  0x00000002 , 0x00000002 
+ 00027353  0x0000522b hstoret  0x00000001 , 0x00008085 
+ 00027354  0x0000522c rshift8  0x0000003f , 0x0000003f 
+ 00027355  0x0000522d hstore  0x00000002 , 0x000080a0 
+ 00027356  0x0000522e rshift16  0x0000003f , 0x0000003f 
+ 00027357  0x0000522f hstore  0x00000002 , 0x000080a2 
+ 00027358  0x00005230 rshift16  0x0000003f , 0x0000003f 
+ 00027359  0x00005231 hstore  0x00000002 , 0x000080a4 
+ 00027360  0x00005232 rshift16  0x0000003f , 0x0000003f 
+ 00027361  0x00005233 hstore  0x00000002 , 0x000080a6 
+ 00027362  0x00005234 branch  0x00006ab7 
+ 00027363  0x00005239 ifetch  0x00000004 , 0x00000006 
+ 00027364  0x0000523a hstore  0x00000004 , 0x00008070 
+ 00027365  0x0000523b ifetch  0x00000004 , 0x00000006 
+ 00027366  0x0000523c hstore  0x00000004 , 0x00008078 
+ 00027367  0x0000523d ifetch  0x00000004 , 0x00000006 
+ 00027368  0x0000523e hstore  0x00000004 , 0x0000807c 
+ 00027369  0x0000523f ifetch  0x00000001 , 0x00000006 
+ 00027370  0x00005240 hstore  0x00000001 , 0x00008080 
+ 00027371  0x00005241 ifetch  0x00000001 , 0x00000006 
+ 00027372  0x00005242 hstore  0x00000001 , 0x00008081 
+ 00027373  0x00005243 ifetch  0x00000001 , 0x00000006 
+ 00027374  0x00005244 hstore  0x00000001 , 0x00008082 
+ 00027375  0x00005245 branch  0x00006ab7 
+ 00027376  0x00005247 branch  0x00006af1 
+ 00027377  0x00005249 jam  0x00000010 , 0x0000046d 
+ 00027378  0x0000524a arg  0x0000046e , 0x00000005 
+ 00027379  0x0000524b hfetch  0x00000004 , 0x00008074 
+ 00027380  0x0000524c istore  0x00000004 , 0x00000005 
+ 00027381  0x0000524d hfetch  0x00000004 , 0x0000811c 
+ 00027382  0x0000524e istore  0x00000004 , 0x00000005 
+ 00027383  0x0000524f rtn 
+ 00027384  0x00005251 ifetcht  0x00000001 , 0x00000006 
+ 00027385  0x00005252 ifetch  0x00000001 , 0x00000006 
+ 00027386  0x00005253 lshift3  0x0000003f , 0x0000003f 
+ 00027387  0x00005254 lshift4  0x0000003f , 0x0000003f 
+ 00027388  0x00005255 ior  0x00000002 , 0x00000002 
+ 00027389  0x00005256 call  0x000069f3 
+ 00027390  0x00005257 branch  0x00006ab7 
+ 00027391  0x0000525d ifetcht  0x00000001 , 0x00000006 
+ 00027392  0x0000525e hstoret  0x00000001 , 0x00008301 
+ 00027393  0x0000525f ifetch  0x00000001 , 0x00000006 
+ 00027394  0x00005260 compare  0x00000001 , 0x0000003f , 0x000000ff 
+ 00027395  0x00005261 ifetch  0x00000001 , 0x00000006 
+ 00027396  0x00005262 hstore  0x00000001 , 0x00008307 
+ 00027397  0x00005263 branch  0x00006b08 , 0x00000001 
+ 00027398  0x00005264 ifetch  0x00000001 , 0x00000006 
+ 00027399  0x00005265 hstore  0x00000001 , 0x00008307 
+ 00027400  0x00005267 ifetch  0x00000001 , 0x00000006 
+ 00027401  0x00005268 copy  0x0000003f , 0x00000039 
+ 00027402  0x00005269 increase  0xffffffff , 0x0000003f 
+ 00027403  0x0000526a or_into  0x00000090 , 0x0000003f 
+ 00027404  0x0000526b hstore  0x00000001 , 0x00008302 
+ 00027405  0x0000526c hjam  0x00000002 , 0x00008303 
+ 00027406  0x0000526d nop  0x00000001 
+ 00027407  0x0000526f arg  0x0000046d , 0x00000005 
+ 00027408  0x00005271 hfetch  0x00000001 , 0x00008307 
+ 00027409  0x00005272 istore  0x00000001 , 0x00000005 
+ 00027410  0x00005273 loop  0x00006b10 
+ 00027411  0x00005274 rtn 
+ 00027412  0x00005277 setarg  0x00000000 
+ 00027413  0x00005278 store  0x00000004 , 0x0000046d 
+ 00027414  0x00005279 istore  0x00000008 , 0x00000005 
+ 00027415  0x0000527a istore  0x00000008 , 0x00000005 
+ 00027416  0x0000527b rtn 
+ 00027417  0x00005282 copy  0x00000011 , 0x0000003f 
+ 00027418  0x00005283 increase  0x00000001 , 0x0000003f 
+ 00027419  0x00005284 store  0x00000002 , 0x00000483 
+ 00027420  0x00005285 fetch  0x00000002 , 0x00004749 
+ 00027421  0x00005286 beq  0x00000000 , 0x00006b28 
+ 00027422  0x00005288 fetch  0x00000002 , 0x00004749 
+ 00027423  0x00005289 fetcht  0x00000002 , 0x00000483 
+ 00027424  0x0000528a ifetcht  0x00000002 , 0x00000002 
+ 00027425  0x0000528b iadd  0x00000002 , 0x0000003f 
+ 00027426  0x0000528c fetcht  0x00000002 , 0x00000483 
+ 00027427  0x0000528d increase  0x00000002 , 0x00000002 
+ 00027428  0x0000528e copy  0x00000002 , 0x00000006 
+ 00027429  0x0000528f ifetcht  0x00000001 , 0x00000006 
+ 00027430  0x00005290 copy  0x00000006 , 0x00000011 
+ 00027431  0x00005291 branch  0x00006842 
+ 00027432  0x00005294 setarg  0x00000002 
+ 00027433  0x00005295 byteswap  0x0000003f , 0x0000003f 
+ 00027434  0x00005296 store  0x00000002 , 0x00000225 
+ 00027435  0x00005297 arg  0x00006823 , 0x00000013 
+ 00027436  0x00005298 arg  0x00000002 , 0x00000039 
+ 00027437  0x0000529a call  0x000066e2 
+ 00027438  0x0000529b nbranch  0x00006b36 , 0x00000005 
+ 00027439  0x0000529c fetch  0x00000002 , 0x00000225 
+ 00027440  0x0000529d byteswap  0x0000003f , 0x0000003f 
+ 00027441  0x0000529e iadd  0x00000002 , 0x0000003f 
+ 00027442  0x0000529f store  0x00000002 , 0x00004749 
+ 00027443  0x000052a0 byteswap  0x0000003f , 0x0000003f 
+ 00027444  0x000052a1 store  0x00000002 , 0x00000225 
+ 00027445  0x000052a2 loop  0x00006b2d 
+ 00027446  0x000052a4 fetch  0x00000002 , 0x00004749 
+ 00027447  0x000052a5 byteswap  0x0000003f , 0x0000003f 
+ 00027448  0x000052a6 store  0x00000002 , 0x00000225 
+ 00027449  0x000052a7 arg  0x00006823 , 0x00000013 
+ 00027450  0x000052a8 arg  0x0000ffff , 0x00000039 
+ 00027451  0x000052aa call  0x000066e2 
+ 00027452  0x000052ab nbranch  0x00006b1e , 0x00000005 
+ 00027453  0x000052ac fetch  0x00000002 , 0x00000225 
+ 00027454  0x000052ad byteswap  0x0000003f , 0x0000003f 
+ 00027455  0x000052ae iadd  0x00000002 , 0x0000003f 
+ 00027456  0x000052af increase  0x00000002 , 0x0000003f 
+ 00027457  0x000052b0 store  0x00000002 , 0x00004749 
+ 00027458  0x000052b1 byteswap  0x0000003f , 0x0000003f 
+ 00027459  0x000052b2 store  0x00000002 , 0x00000225 
+ 00027460  0x000052b3 loop  0x00006b3b 
+ 00027461  0x000052b6 fetch  0x00000002 , 0x00004749 
+ 00027462  0x000052b7 increase  0x00000002 , 0x0000003f 
+ 00027463  0x000052b8 byteswap  0x0000003f , 0x0000003f 
+ 00027464  0x000052b9 store  0x00000002 , 0x00004749 
+ 00027465  0x000052ba arg  0x00004749 , 0x00000011 
+ 00027466  0x000052bb arg  0x00000002 , 0x00000002 
+ 00027467  0x000052bc arg  0x00000000 , 0x0000003f 
+ 00027468  0x000052bd call  0x00006842 
+ 00027469  0x000052be setarg  0x00000000 
+ 00027470  0x000052bf store  0x00000002 , 0x00004749 
+ 00027471  0x000052c0 rtn 
+ 00027472  0x000052c3 rtn 
+ 00027473  0x000052c5 rtn 
+ 00027474  0x000052c7 rtn 
+ 00027475  0x000052cd rtn  0x0000002b 
+ 00027476  0x000052ce jam  0x00000000 , 0x00004755 
+ 00027477  0x000052cf jam  0x00000003 , 0x00000485 
+ 00027478  0x000052d0 jam  0x00000003 , 0x00000486 
+ 00027479  0x000052d1 jam  0x00000011 , 0x0000048a 
+ 00027480  0x000052d2 jam  0x00000013 , 0x0000048b 
+ 00027481  0x000052d3 setarg  0x00000000 
+ 00027482  0x000052d4 store  0x00000003 , 0x00000487 
+ 00027483  0x000052d5 store  0x00000001 , 0x000042bd 
+ 00027484  0x000052d6 jam  0x00000000 , 0x000047f3 
+ 00027485  0x000052d9 set1  0x00000025 , 0x00000000 
+ 00027486  0x000052da bpatch  0x000000bf , 0x00004037 
+ 00027487  0x000052db setarg  0x00000000 
+ 00027488  0x000052dc store  0x00000001 , 0x000042bd 
+ 00027489  0x000052dd store  0x00000001 , 0x00004752 
+ 00027490  0x000052de store  0x00000001 , 0x0000474b 
+ 00027491  0x000052df jam  0x00000050 , 0x00004757 
+ 00027492  0x000052e0 rtn 
+ 00027493  0x000052e3 or_into  0x00000002 , 0x00000002 
+ 00027494  0x000052e4 rtn 
+ 00027495  0x000052f1 copy  0x00000002 , 0x0000003f 
+ 00027496  0x000052f2 reverse  0x0000003f , 0x0000003f 
+ 00027497  0x000052f3 store  0x00000001 , 0x00004750 
+ 00027498  0x000052f4 force  0x0000003f , 0x0000003f 
+ 00027499  0x000052f5 reverse  0x0000003f , 0x0000003f 
+ 00027500  0x000052f6 store  0x00000001 , 0x0000474f 
+ 00027501  0x000052f7 force  0x00000001 , 0x0000003f 
+ 00027502  0x000052f8 reverse  0x0000003f , 0x0000003f 
+ 00027503  0x000052f9 store  0x00000001 , 0x0000474e 
+ 00027504  0x000052fa call  0x00006b9d 
+ 00027505  0x000052fb copy  0x00000002 , 0x0000003f 
+ 00027506  0x000052fc rtn 
+ 00027507  0x000052fe reverse  0x0000003f , 0x0000003f 
+ 00027508  0x000052ff store  0x00000001 , 0x00004750 
+ 00027509  0x00005300 force  0x00000073 , 0x0000003f 
+ 00027510  0x00005301 reverse  0x0000003f , 0x0000003f 
+ 00027511  0x00005302 store  0x00000001 , 0x0000474f 
+ 00027512  0x00005303 force  0x00000001 , 0x0000003f 
+ 00027513  0x00005304 reverse  0x0000003f , 0x0000003f 
+ 00027514  0x00005305 store  0x00000001 , 0x0000474e 
+ 00027515  0x00005306 branch  0x00006b9d 
+ 00027516  0x00005309 fetch  0x00000001 , 0x00004751 
+ 00027517  0x0000530a branch  0x00006b80 , 0x00000034 
+ 00027518  0x0000530b setarg  0x00000070 
+ 00027519  0x0000530c rtn 
+ 00027520  0x0000530e setarg  0x000000aa 
+ 00027521  0x0000530f rtn 
+ 00027522  0x00005312 reverse  0x0000003f , 0x0000003f 
+ 00027523  0x00005313 store  0x00000001 , 0x00004750 
+ 00027524  0x00005314 force  0x000000ef , 0x0000003f 
+ 00027525  0x00005315 call  0x00006b91 
+ 00027526  0x00005316 fetcht  0x00000002 , 0x0000048f 
+ 00027527  0x00005317 copy  0x00000002 , 0x00000005 
+ 00027528  0x00005318 istore  0x00000001 , 0x00000005 
+ 00027529  0x00005319 copy  0x00000005 , 0x00000002 
+ 00027530  0x0000531a storet  0x00000002 , 0x0000048f 
+ 00027531  0x0000531b force  0x000000ff , 0x0000003f 
+ 00027532  0x0000531c call  0x00006b91 
+ 00027533  0x0000531d fetcht  0x00000002 , 0x0000048f 
+ 00027534  0x0000531e copy  0x00000002 , 0x00000005 
+ 00027535  0x0000531f istore  0x00000001 , 0x00000005 
+ 00027536  0x00005320 rtn 
+ 00027537  0x0000532a reverse  0x0000003f , 0x0000003f 
+ 00027538  0x0000532b store  0x00000001 , 0x0000474f 
+ 00027539  0x0000532c fetch  0x00000002 , 0x0000474f 
+ 00027540  0x0000532d lshift8  0x0000003f , 0x0000003f 
+ 00027541  0x0000532e store  0x00000003 , 0x0000048c 
+ 00027542  0x0000532f arg  0x00000107 , 0x00000011 
+ 00027543  0x00005330 arg  0x0000000f , 0x00000012 
+ 00027544  0x00005331 call  0x00006baa 
+ 00027545  0x00005332 xor_into  0x000000d7 , 0x0000003f 
+ 00027546  0x00005333 invert  0x0000003f , 0x0000003f 
+ 00027547  0x00005334 reverse  0x0000003f , 0x0000003f 
+ 00027548  0x00005335 rtn 
+ 00027549  0x00005340 fetch  0x00000003 , 0x0000474e 
+ 00027550  0x00005341 store  0x00000003 , 0x0000048c 
+ 00027551  0x00005342 arg  0x00000107 , 0x00000011 
+ 00027552  0x00005343 arg  0x0000000f , 0x00000012 
+ 00027553  0x00005344 call  0x00006baa 
+ 00027554  0x00005345 lshift8  0x0000003f , 0x0000003f 
+ 00027555  0x00005346 arg  0x00000007 , 0x00000012 
+ 00027556  0x00005347 call  0x00006baa 
+ 00027557  0x00005348 xor_into  0x0000002b , 0x0000003f 
+ 00027558  0x00005349 invert  0x0000003f , 0x0000003f 
+ 00027559  0x0000534a reverse  0x0000003f , 0x0000003f 
+ 00027560  0x0000534b copy  0x0000003f , 0x00000002 
+ 00027561  0x0000534c rtn 
+ 00027562  0x0000534f arg  0x00000000 , 0x00000013 
+ 00027563  0x00005350 copy  0x00000012 , 0x00000039 
+ 00027564  0x00005351 call  0x00007dfb 
+ 00027565  0x00005352 icopy  0x00000002 
+ 00027566  0x00005358 copy  0x00000002 , 0x0000003f 
+ 00027567  0x00005359 lshift  0x00000013 , 0x00000013 
+ 00027568  0x0000535a bbit0  0x00000008 , 0x00006bb3 
+ 00027569  0x0000535b ixor  0x00000011 , 0x00000002 
+ 00027570  0x0000535c increase  0x00000001 , 0x00000013 
+ 00027571  0x0000535e lshift  0x00000002 , 0x00000002 
+ 00027572  0x0000535f fetch  0x00000003 , 0x0000048c 
+ 00027573  0x00005360 increase  0xffffffff , 0x00000012 
+ 00027574  0x00005361 compare  0x000000ff , 0x00000012 , 0x000000ff 
+ 00027575  0x00005362 branch  0x00006bbd , 0x00000001 
+ 00027576  0x00005363 copy  0x00000012 , 0x00000039 
+ 00027577  0x00005364 call  0x00007dfb 
+ 00027578  0x00005365 isolate1  0x00000000 , 0x0000003f 
+ 00027579  0x00005366 setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00027580  0x00005367 branch  0x00006bae 
+ 00027581  0x0000536a rshift  0x00000002 , 0x0000003f 
+ 00027582  0x0000536b rtn 
+ 00027583  0x0000536e fetcht  0x00000001 , 0x0000474b 
+ 00027584  0x00005371 lshift2  0x00000002 , 0x00000002 
+ 00027585  0x00005372 set1  0x00000000 , 0x00000002 
+ 00027586  0x00005373 fetch  0x00000001 , 0x00004751 
+ 00027587  0x00005374 ncall  0x00006b65 , 0x00000034 
+ 00027588  0x00005375 storet  0x00000001 , 0x000004a5 
+ 00027589  0x00005376 rtn 
+ 00027590  0x0000537a lshift2  0x00000002 , 0x00000002 
+ 00027591  0x0000537b set1  0x00000000 , 0x00000002 
+ 00027592  0x0000537c fetch  0x00000001 , 0x00004751 
+ 00027593  0x0000537d call  0x00006b65 , 0x00000034 
+ 00027594  0x0000537e rtn 
+ 00027595  0x00005381 lshift  0x00000002 , 0x00000002 
+ 00027596  0x00005382 fetch  0x00000001 , 0x00004751 
+ 00027597  0x00005383 setflag  0x00000034 , 0x00000000 , 0x00000002 
+ 00027598  0x00005385 rtn 
+ 00027599  0x00005387 fetcht  0x00000001 , 0x00000494 
+ 00027600  0x00005388 jam  0x000000d7 , 0x00000496 
+ 00027601  0x00005389 call  0x00006cf6 
+ 00027602  0x0000538a fetch  0x00000001 , 0x000042ba 
+ 00027603  0x0000538b set1  0x00000006 , 0x0000003f 
+ 00027604  0x0000538c set1  0x00000007 , 0x0000003f 
+ 00027605  0x0000538d store  0x00000001 , 0x000042ba 
+ 00027606  0x0000538e jam  0x00000000 , 0x00004751 
+ 00027607  0x0000538f branch  0x00006cd7 
+ 00027608  0x00005391 fetch  0x00000001 , 0x000042ba 
+ 00027609  0x00005392 set1  0x00000007 , 0x0000003f 
+ 00027610  0x00005393 store  0x00000001 , 0x000042ba 
+ 00027611  0x00005394 branch  0x00006cd7 
+ 00027612  0x00005398 set1  0x00000025 , 0x00000000 
+ 00027613  0x00005399 bpatch  0x000000c0 , 0x00004038 
+ 00027614  0x0000539a fetch  0x00000001 , 0x000047f3 
+ 00027615  0x0000539b beq  0x00000000 , 0x00006be1 
+ 00027616  0x0000539c branch  0x00006c8b 
+ 00027617  0x0000539f fetch  0x00000002 , 0x000002cb 
+ 00027618  0x000053a0 copy  0x0000003f , 0x00000006 
+ 00027619  0x000053a1 call  0x00006c0f 
+ 00027620  0x000053a2 fetch  0x00000001 , 0x00000494 
+ 00027621  0x000053a3 beq  0x00000000 , 0x00006be7 
+ 00027622  0x000053a4 branch  0x00006c57 
+ 00027623  0x000053a6 set1  0x00000025 , 0x00000000 
+ 00027624  0x000053a7 bpatch  0x000000c1 , 0x00004038 
+ 00027625  0x000053a8 fetch  0x00000001 , 0x00000495 
+ 00027626  0x000053a9 beq  0x0000003f , 0x00006bcf 
+ 00027627  0x000053aa beq  0x00000073 , 0x00006bd8 
+ 00027628  0x000053ab beq  0x000000ef , 0x00006bef 
+ 00027629  0x000053ac rtneq  0x00000053 
+ 00027630  0x000053ad branch  0x00003bf1 
+ 00027631  0x000053b1 fetch  0x00000002 , 0x00000499 
+ 00027632  0x000053b2 copy  0x0000003f , 0x00000006 
+ 00027633  0x000053b3 call  0x00006c1a 
+ 00027634  0x000053b4 fetch  0x00000001 , 0x0000049b 
+ 00027635  0x000053b5 beq  0x00000041 , 0x00006bf8 
+ 00027636  0x000053b6 beq  0x00000040 , 0x00006c04 
+ 00027637  0x000053b7 beq  0x00000071 , 0x00006c3f 
+ 00027638  0x000053b8 beq  0x00000070 , 0x00006c4e 
+ 00027639  0x000053b9 branch  0x00006cd7 
+ 00027640  0x000053bc call  0x00006c06 
+ 00027641  0x000053bd fetch  0x00000001 , 0x0000474b 
+ 00027642  0x000053be rshift  0x0000003f , 0x0000003f 
+ 00027643  0x000053bf sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00027644  0x000053c0 branch  0x00006bfe , 0x00000005 
+ 00027645  0x000053c1 branch  0x00003bf1 
+ 00027646  0x000053c3 fetch  0x00000001 , 0x000042bd 
+ 00027647  0x000053c4 set1  0x00000000 , 0x0000003f 
+ 00027648  0x000053c5 set1  0x00000001 , 0x0000003f 
+ 00027649  0x000053c6 store  0x00000001 , 0x000042bd 
+ 00027650  0x000053c7 call  0x00006d22 
+ 00027651  0x000053c8 branch  0x00006cd7 
+ 00027652  0x000053cb call  0x00006c06 
+ 00027653  0x000053cc branch  0x00006cd7 
+ 00027654  0x000053cf call  0x00006c22 
+ 00027655  0x000053d0 branch  0x00006c30 
+ 00027656  0x000053d3 call  0x00006c22 
+ 00027657  0x000053d4 ifetch  0x00000001 , 0x00000006 
+ 00027658  0x000053d5 rshift3  0x0000003f , 0x0000003f 
+ 00027659  0x000053d6 store  0x00000001 , 0x00004758 
+ 00027660  0x000053d7 ifetch  0x00000001 , 0x00000006 
+ 00027661  0x000053d8 store  0x00000001 , 0x000004a0 
+ 00027662  0x000053d9 rtn 
+ 00027663  0x000053dd ifetch  0x00000001 , 0x00000006 
+ 00027664  0x000053de store  0x00000001 , 0x00000493 
+ 00027665  0x000053df rshift3  0x0000003f , 0x0000003f 
+ 00027666  0x000053e0 store  0x00000001 , 0x00000494 
+ 00027667  0x000053e1 ifetch  0x00000001 , 0x00000006 
+ 00027668  0x000053e2 store  0x00000001 , 0x00000495 
+ 00027669  0x000053e4 call  0x00006c27 
+ 00027670  0x000053e5 storet  0x00000002 , 0x00000497 
+ 00027671  0x000053e6 copy  0x00000006 , 0x0000003f 
+ 00027672  0x000053e7 store  0x00000002 , 0x00000499 
+ 00027673  0x000053e8 rtn 
+ 00027674  0x000053eb ifetch  0x00000001 , 0x00000006 
+ 00027675  0x000053ec rshift  0x0000003f , 0x0000003f 
+ 00027676  0x000053ed store  0x00000001 , 0x0000049b 
+ 00027677  0x000053ee call  0x00006c27 
+ 00027678  0x000053ef storet  0x00000002 , 0x0000049c 
+ 00027679  0x000053f0 copy  0x00000006 , 0x0000003f 
+ 00027680  0x000053f1 store  0x00000002 , 0x0000049e 
+ 00027681  0x000053f2 rtn 
+ 00027682  0x000053f6 fetch  0x00000002 , 0x0000049e 
+ 00027683  0x000053f7 copy  0x0000003f , 0x00000006 
+ 00027684  0x000053f8 rtn 
+ 00027685  0x000053fb fetch  0x00000002 , 0x0000049e 
+ 00027686  0x000053fc copy  0x0000003f , 0x00000006 
+ 00027687  0x000053fe ifetch  0x00000001 , 0x00000006 
+ 00027688  0x000053ff copy  0x0000003f , 0x00000002 
+ 00027689  0x00005400 rshift  0x00000002 , 0x00000002 
+ 00027690  0x00005401 rtnbit1  0x00000000 
+ 00027691  0x00005402 ifetch  0x00000001 , 0x00000006 
+ 00027692  0x00005403 lshift3  0x0000003f , 0x0000003f 
+ 00027693  0x00005404 lshift4  0x0000003f , 0x0000003f 
+ 00027694  0x00005405 iadd  0x00000002 , 0x00000002 
+ 00027695  0x00005406 rtn 
+ 00027696  0x00005409 ifetch  0x00000001 , 0x00000006 
+ 00027697  0x0000540a store  0x00000001 , 0x0000474b 
+ 00027698  0x0000540b ifetch  0x00000001 , 0x00000006 
+ 00027699  0x0000540c store  0x00000001 , 0x000004a1 
+ 00027700  0x0000540d ifetch  0x00000001 , 0x00000006 
+ 00027701  0x0000540e store  0x00000001 , 0x000004a2 
+ 00027702  0x0000540f ifetch  0x00000001 , 0x00000006 
+ 00027703  0x00005410 store  0x00000001 , 0x000004a3 
+ 00027704  0x00005411 ifetch  0x00000002 , 0x00000006 
+ 00027705  0x00005412 store  0x00000002 , 0x0000474c 
+ 00027706  0x00005413 ifetch  0x00000001 , 0x00000006 
+ 00027707  0x00005414 store  0x00000001 , 0x000004a4 
+ 00027708  0x00005415 ifetch  0x00000001 , 0x00000006 
+ 00027709  0x00005416 store  0x00000001 , 0x00004756 
+ 00027710  0x00005417 rtn 
+ 00027711  0x0000541b call  0x00006c08 
+ 00027712  0x0000541c fetch  0x00000001 , 0x00004758 
+ 00027713  0x0000541d sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00027714  0x0000541e branch  0x00006c44 , 0x00000005 
+ 00027715  0x0000541f branch  0x00003bf1 
+ 00027716  0x00005421 fetch  0x00000001 , 0x000042bd 
+ 00027717  0x00005422 set1  0x00000005 , 0x0000003f 
+ 00027718  0x00005423 set1  0x00000006 , 0x0000003f 
+ 00027719  0x00005424 store  0x00000001 , 0x000042bd 
+ 00027720  0x00005425 fetcht  0x00000001 , 0x0000474b 
+ 00027721  0x00005426 lshift2  0x00000002 , 0x00000002 
+ 00027722  0x00005427 or_into  0x00000003 , 0x00000002 
+ 00027723  0x00005428 call  0x00006d55 
+ 00027724  0x00005429 jam  0x00000003 , 0x00004755 
+ 00027725  0x0000542a branch  0x00006cd7 
+ 00027726  0x0000542d call  0x00006c08 
+ 00027727  0x0000542e fetch  0x00000001 , 0x00004758 
+ 00027728  0x0000542f sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00027729  0x00005430 branch  0x00006c53 , 0x00000005 
+ 00027730  0x00005431 branch  0x00003bf1 
+ 00027731  0x00005433 fetch  0x00000001 , 0x000042bd 
+ 00027732  0x00005434 set1  0x00000007 , 0x0000003f 
+ 00027733  0x00005435 store  0x00000001 , 0x000042bd 
+ 00027734  0x00005436 branch  0x00006cd7 
+ 00027735  0x00005439 fetch  0x00000001 , 0x00000494 
+ 00027736  0x0000543a sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00027737  0x0000543b branch  0x00006c5b , 0x00000005 
+ 00027738  0x0000543c branch  0x00003bf1 
+ 00027739  0x0000543e fetch  0x00000001 , 0x00000495 
+ 00027740  0x0000543f beq  0x00000073 , 0x00006c62 
+ 00027741  0x00005440 beq  0x0000003f , 0x00006c66 
+ 00027742  0x00005441 beq  0x000000ef , 0x00006c80 
+ 00027743  0x00005442 beq  0x000000ff , 0x00006c78 
+ 00027744  0x00005443 beq  0x00000053 , 0x00006c85 
+ 00027745  0x00005444 branch  0x00003bf1 
+ 00027746  0x00005446 fetch  0x00000001 , 0x000042bd 
+ 00027747  0x00005447 set1  0x00000003 , 0x0000003f 
+ 00027748  0x00005448 store  0x00000001 , 0x000042bd 
+ 00027749  0x00005449 branch  0x00006cd7 
+ 00027750  0x0000544b fetch  0x00000001 , 0x000042bd 
+ 00027751  0x0000544c set1  0x00000003 , 0x0000003f 
+ 00027752  0x0000544d set1  0x00000002 , 0x0000003f 
+ 00027753  0x0000544e store  0x00000001 , 0x000042bd 
+ 00027754  0x0000544f fetch  0x00000001 , 0x00000493 
+ 00027755  0x00005450 call  0x00006b73 
+ 00027756  0x00005451 store  0x00000001 , 0x00000496 
+ 00027757  0x00005452 call  0x00006cf6 
+ 00027758  0x00005453 fetch  0x00000001 , 0x00000493 
+ 00027759  0x00005454 rshift2  0x0000003f , 0x0000003f 
+ 00027760  0x00005455 store  0x00000001 , 0x0000474b 
+ 00027761  0x00005456 lshift2  0x0000003f , 0x0000003f 
+ 00027762  0x00005457 set0  0x00000001 , 0x0000003f 
+ 00027763  0x00005458 set1  0x00000000 , 0x0000003f 
+ 00027764  0x00005459 arg  0x00004753 , 0x00000002 
+ 00027765  0x0000545a storet  0x00000002 , 0x0000048f 
+ 00027766  0x0000545b call  0x00006b82 
+ 00027767  0x0000545c branch  0x00006cd7 
+ 00027768  0x0000545f fetch  0x00000002 , 0x00000499 
+ 00027769  0x00005460 copy  0x0000003f , 0x00000006 
+ 00027770  0x00005461 increase  0x00000001 , 0x0000003f 
+ 00027771  0x00005462 store  0x00000002 , 0x00000499 
+ 00027772  0x00005463 ifetch  0x00000001 , 0x00000006 
+ 00027773  0x00005464 fetcht  0x00000001 , 0x00004756 
+ 00027774  0x00005465 iadd  0x00000002 , 0x0000003f 
+ 00027775  0x00005466 store  0x00000001 , 0x00004756 
+ 00027776  0x00005468 call  0x00006d88 
+ 00027777  0x0000546a call  0x00006bbf 
+ 00027778  0x0000546b call  0x00006d6d 
+ 00027779  0x0000546c call  0x00006d8e 
+ 00027780  0x0000546d branch  0x00006cd7 
+ 00027781  0x00005470 call  0x00006b5d 
+ 00027782  0x00005471 fetch  0x00000001 , 0x00000493 
+ 00027783  0x00005472 call  0x00006b73 
+ 00027784  0x00005473 store  0x00000001 , 0x00000496 
+ 00027785  0x00005474 call  0x00006cf6 
+ 00027786  0x00005475 branch  0x00006cd7 
+ 00027787  0x0000547b fetch  0x00000002 , 0x000002cb 
+ 00027788  0x0000547c copy  0x0000003f , 0x00000006 
+ 00027789  0x0000547d call  0x00006c0f 
+ 00027790  0x0000547e fetch  0x00000001 , 0x00000494 
+ 00027791  0x0000547f beq  0x00000000 , 0x00006c91 
+ 00027792  0x00005480 branch  0x00006cc6 
+ 00027793  0x00005483 set1  0x00000025 , 0x00000000 
+ 00027794  0x00005484 bpatch  0x000000c2 , 0x00004038 
+ 00027795  0x00005485 fetch  0x00000001 , 0x00000495 
+ 00027796  0x00005486 beq  0x0000003f , 0x00006bcf 
+ 00027797  0x00005487 beq  0x00000073 , 0x00006bd8 
+ 00027798  0x00005488 beq  0x000000ef , 0x00006c98 
+ 00027799  0x00005489 branch  0x00006cd7 
+ 00027800  0x0000548b fetch  0x00000002 , 0x00000499 
+ 00027801  0x0000548c copy  0x0000003f , 0x00000006 
+ 00027802  0x0000548d call  0x00006c1a 
+ 00027803  0x0000548e fetch  0x00000001 , 0x0000049b 
+ 00027804  0x0000548f beq  0x00000041 , 0x00006ca1 
+ 00027805  0x00005490 beq  0x00000040 , 0x00006ca1 
+ 00027806  0x00005491 beq  0x00000071 , 0x00006cac 
+ 00027807  0x00005492 beq  0x00000070 , 0x00006cbc 
+ 00027808  0x00005493 branch  0x00006cd7 
+ 00027809  0x00005496 call  0x00006c06 
+ 00027810  0x00005497 fetch  0x00000001 , 0x0000474b 
+ 00027811  0x00005498 rshift  0x0000003f , 0x0000003f 
+ 00027812  0x00005499 fetcht  0x00000001 , 0x00004752 
+ 00027813  0x0000549a isub  0x00000002 , 0x0000003e 
+ 00027814  0x0000549b branch  0x00006ca8 , 0x00000005 
+ 00027815  0x0000549c branch  0x00003bf1 
+ 00027816  0x0000549e fetch  0x00000001 , 0x000042bd 
+ 00027817  0x0000549f set1  0x00000001 , 0x0000003f 
+ 00027818  0x000054a0 store  0x00000001 , 0x000042bd 
+ 00027819  0x000054a1 branch  0x00006cd7 
+ 00027820  0x000054a4 call  0x00006c08 
+ 00027821  0x000054a5 fetch  0x00000001 , 0x00004758 
+ 00027822  0x000054a6 fetcht  0x00000001 , 0x00004752 
+ 00027823  0x000054a7 isub  0x00000002 , 0x0000003e 
+ 00027824  0x000054a8 branch  0x00006cb3 , 0x00000005 
+ 00027825  0x000054a9 branch  0x00003bf1 
+ 00027826  0x000054aa branch  0x00006cd7 
+ 00027827  0x000054ac fetch  0x00000001 , 0x000042bd 
+ 00027828  0x000054ad set1  0x00000005 , 0x0000003f 
+ 00027829  0x000054ae set1  0x00000006 , 0x0000003f 
+ 00027830  0x000054af store  0x00000001 , 0x000042bd 
+ 00027831  0x000054b0 fetcht  0x00000001 , 0x0000474b 
+ 00027832  0x000054b1 lshift2  0x00000002 , 0x00000002 
+ 00027833  0x000054b2 or_into  0x00000003 , 0x00000002 
+ 00027834  0x000054b3 call  0x00006d55 
+ 00027835  0x000054b4 branch  0x00006cd7 
+ 00027836  0x000054b7 call  0x00006c08 
+ 00027837  0x000054b8 fetch  0x00000001 , 0x00004758 
+ 00027838  0x000054b9 fetcht  0x00000001 , 0x00004752 
+ 00027839  0x000054ba isub  0x00000002 , 0x0000003e 
+ 00027840  0x000054bb branch  0x00006cc2 , 0x00000005 
+ 00027841  0x000054bc branch  0x00003bf1 
+ 00027842  0x000054be fetch  0x00000001 , 0x000042bd 
+ 00027843  0x000054bf set1  0x00000007 , 0x0000003f 
+ 00027844  0x000054c0 store  0x00000001 , 0x000042bd 
+ 00027845  0x000054c1 branch  0x00006cd7 
+ 00027846  0x000054c4 fetch  0x00000001 , 0x00000494 
+ 00027847  0x000054c5 fetcht  0x00000001 , 0x00004752 
+ 00027848  0x000054c6 isub  0x00000002 , 0x0000003e 
+ 00027849  0x000054c7 branch  0x00006ccc , 0x00000005 
+ 00027850  0x000054c8 branch  0x00003bf1 
+ 00027851  0x000054c9 branch  0x00006cd7 
+ 00027852  0x000054cc fetch  0x00000001 , 0x00000495 
+ 00027853  0x000054cd beq  0x00000073 , 0x00006cd1 
+ 00027854  0x000054ce beq  0x000000ef , 0x00006c80 
+ 00027855  0x000054cf beq  0x000000ff , 0x00006c78 
+ 00027856  0x000054d0 beq  0x00000053 , 0x00006cd6 
+ 00027857  0x000054d2 fetch  0x00000001 , 0x000042bd 
+ 00027858  0x000054d3 set1  0x00000003 , 0x0000003f 
+ 00027859  0x000054d4 store  0x00000001 , 0x000042bd 
+ 00027860  0x000054d5 branch  0x00006cd7 
+ 00027861  0x000054d7 branch  0x00006cd5 
+ 00027862  0x000054d9 branch  0x00006c85 
+ 00027863  0x000054db rtn 
+ 00027864  0x000054de fetch  0x00000001 , 0x00004755 
+ 00027865  0x000054df rtn  0x00000034 
+ 00027866  0x000054e0 beq  0x00000003 , 0x00006cdc 
+ 00027867  0x000054e1 branch  0x00003bf1 
+ 00027868  0x000054e4 jam  0x00000000 , 0x00004755 
+ 00027869  0x000054e5 call  0x000052e0 
+ 00027870  0x000054e6 arg  0x00000001 , 0x00000002 
+ 00027871  0x000054e7 lshift3  0x00000002 , 0x00000002 
+ 00027872  0x000054e9 or_into  0x00000003 , 0x00000002 
+ 00027873  0x000054ea arg  0x000000aa , 0x00000011 
+ 00027874  0x000054eb call  0x00006d3f 
+ 00027875  0x000054ec call  0x000052ef 
+ 00027876  0x000054ed copy  0x00000005 , 0x00000006 
+ 00027877  0x000054ee ifetch  0x00000002 , 0x00000006 
+ 00027878  0x000054ef branch  0x00003bf1 , 0x00000034 
+ 00027879  0x000054f0 rtn 
+ 00027880  0x000054f3 set1  0x00000025 , 0x00000000 
+ 00027881  0x000054f4 bpatch  0x000000c3 , 0x00004038 
+ 00027882  0x000054f5 call  0x000052ef 
+ 00027883  0x000054f6 setarg  0x00000004 
+ 00027884  0x000054f7 istore  0x00000002 , 0x00000005 
+ 00027885  0x000054f8 fetch  0x00000002 , 0x000042b3 
+ 00027886  0x000054f9 istore  0x00000002 , 0x00000005 
+ 00027887  0x000054fa fetch  0x00000001 , 0x00000493 
+ 00027888  0x000054fb istore  0x00000001 , 0x00000005 
+ 00027889  0x000054fc setarg  0x0000013f 
+ 00027890  0x000054fd istore  0x00000002 , 0x00000005 
+ 00027891  0x000054fe fetch  0x00000001 , 0x00000496 
+ 00027892  0x000054ff istore  0x00000001 , 0x00000005 
+ 00027893  0x00005500 rtn 
+ 00027894  0x00005502 set1  0x00000025 , 0x00000000 
+ 00027895  0x00005503 bpatch  0x000000c4 , 0x00004038 
+ 00027896  0x00005504 call  0x000052e0 
+ 00027897  0x00005505 call  0x000052ef 
+ 00027898  0x00005506 setarg  0x00000004 
+ 00027899  0x00005507 istore  0x00000002 , 0x00000005 
+ 00027900  0x00005508 fetch  0x00000002 , 0x000042b3 
+ 00027901  0x00005509 istore  0x00000002 , 0x00000005 
+ 00027902  0x0000550a fetch  0x00000001 , 0x00000493 
+ 00027903  0x0000550b istore  0x00000001 , 0x00000005 
+ 00027904  0x0000550c setarg  0x00000173 
+ 00027905  0x0000550d istore  0x00000002 , 0x00000005 
+ 00027906  0x0000550e fetch  0x00000001 , 0x00000496 
+ 00027907  0x0000550f istore  0x00000001 , 0x00000005 
+ 00027908  0x00005510 rtn 
+ 00027909  0x00005512 set1  0x00000025 , 0x00000000 
+ 00027910  0x00005513 bpatch  0x000000c5 , 0x00004038 
+ 00027911  0x00005514 call  0x000052ef 
+ 00027912  0x00005515 setarg  0x0000000e 
+ 00027913  0x00005516 istore  0x00000002 , 0x00000005 
+ 00027914  0x00005517 fetch  0x00000002 , 0x000042b3 
+ 00027915  0x00005518 istore  0x00000002 , 0x00000005 
+ 00027916  0x00005519 fetch  0x00000001 , 0x00004751 
+ 00027917  0x0000551a lshift  0x0000003f , 0x0000003f 
+ 00027918  0x0000551b set1  0x00000000 , 0x0000003f 
+ 00027919  0x0000551c istore  0x00000001 , 0x00000005 
+ 00027920  0x0000551d setarg  0x000015ef 
+ 00027921  0x0000551e istore  0x00000002 , 0x00000005 
+ 00027922  0x0000551f setarg  0x00001183 
+ 00027923  0x00005520 istore  0x00000002 , 0x00000005 
+ 00027924  0x00005521 copy  0x00000002 , 0x0000003f 
+ 00027925  0x00005522 istore  0x00000001 , 0x00000005 
+ 00027926  0x00005523 setarg  0x000000f0 
+ 00027927  0x00005524 istore  0x00000003 , 0x00000005 
+ 00027928  0x00005525 setarg  0x0000007f 
+ 00027929  0x00005526 istore  0x00000002 , 0x00000005 
+ 00027930  0x00005527 setarg  0x00000000 
+ 00027931  0x00005528 istore  0x00000001 , 0x00000005 
+ 00027932  0x00005529 setarg  0x00000001 
+ 00027933  0x0000552a istore  0x00000001 , 0x00000005 
+ 00027934  0x0000552b call  0x00006b7c 
+ 00027935  0x0000552c istore  0x00000001 , 0x00000005 
+ 00027936  0x0000552d jam  0x00000010 , 0x00004757 
+ 00027937  0x0000552e rtn 
+ 00027938  0x00005530 set1  0x00000025 , 0x00000000 
+ 00027939  0x00005531 bpatch  0x000000c6 , 0x00004038 
+ 00027940  0x00005532 call  0x000052e0 
+ 00027941  0x00005533 call  0x000052ef 
+ 00027942  0x00005534 setarg  0x0000000e 
+ 00027943  0x00005535 istore  0x00000002 , 0x00000005 
+ 00027944  0x00005536 fetch  0x00000002 , 0x000042b3 
+ 00027945  0x00005537 istore  0x00000002 , 0x00000005 
+ 00027946  0x00005538 fetch  0x00000001 , 0x00004751 
+ 00027947  0x00005539 lshift  0x0000003f , 0x0000003f 
+ 00027948  0x0000553a set1  0x00000000 , 0x0000003f 
+ 00027949  0x0000553b istore  0x00000001 , 0x00000005 
+ 00027950  0x0000553c setarg  0x000015ef 
+ 00027951  0x0000553d istore  0x00000002 , 0x00000005 
+ 00027952  0x0000553e setarg  0x00001181 
+ 00027953  0x0000553f istore  0x00000002 , 0x00000005 
+ 00027954  0x00005540 fetch  0x00000001 , 0x0000474b 
+ 00027955  0x00005541 istore  0x00000001 , 0x00000005 
+ 00027956  0x00005542 setarg  0x000000e0 
+ 00027957  0x00005543 istore  0x00000003 , 0x00000005 
+ 00027958  0x00005544 setarg  0x0000007f 
+ 00027959  0x00005545 istore  0x00000002 , 0x00000005 
+ 00027960  0x00005546 setarg  0x00000000 
+ 00027961  0x00005547 istore  0x00000001 , 0x00000005 
+ 00027962  0x00005548 setarg  0x00000007 
+ 00027963  0x00005549 istore  0x00000001 , 0x00000005 
+ 00027964  0x0000554a call  0x00006b7c 
+ 00027965  0x0000554b istore  0x00000001 , 0x00000005 
+ 00027966  0x0000554c rtn 
+ 00027967  0x0000554e set1  0x00000025 , 0x00000000 
+ 00027968  0x0000554f bpatch  0x000000c7 , 0x00004038 
+ 00027969  0x00005550 call  0x000052ef 
+ 00027970  0x00005551 setarg  0x00000008 
+ 00027971  0x00005552 istore  0x00000002 , 0x00000005 
+ 00027972  0x00005553 fetch  0x00000002 , 0x000042b3 
+ 00027973  0x00005554 istore  0x00000002 , 0x00000005 
+ 00027974  0x00005555 fetch  0x00000001 , 0x00004751 
+ 00027975  0x00005556 lshift  0x0000003f , 0x0000003f 
+ 00027976  0x00005557 set1  0x00000000 , 0x0000003f 
+ 00027977  0x00005558 istore  0x00000001 , 0x00000005 
+ 00027978  0x00005559 setarg  0x000009ef 
+ 00027979  0x0000555a istore  0x00000002 , 0x00000005 
+ 00027980  0x0000555b setarg  0x000005e3 
+ 00027981  0x0000555c istore  0x00000002 , 0x00000005 
+ 00027982  0x0000555d copy  0x00000002 , 0x0000003f 
+ 00027983  0x0000555e istore  0x00000001 , 0x00000005 
+ 00027984  0x0000555f setarg  0x0000008d 
+ 00027985  0x00005560 istore  0x00000001 , 0x00000005 
+ 00027986  0x00005561 call  0x00006b7c 
+ 00027987  0x00005562 istore  0x00000001 , 0x00000005 
+ 00027988  0x00005563 rtn 
+ 00027989  0x00005566 set1  0x00000025 , 0x00000000 
+ 00027990  0x00005567 bpatch  0x000000c8 , 0x00004039 
+ 00027991  0x00005568 call  0x000052e0 
+ 00027992  0x00005569 call  0x000052ef 
+ 00027993  0x0000556a setarg  0x00000008 
+ 00027994  0x0000556b istore  0x00000002 , 0x00000005 
+ 00027995  0x0000556c fetch  0x00000002 , 0x000042b3 
+ 00027996  0x0000556d istore  0x00000002 , 0x00000005 
+ 00027997  0x0000556e copy  0x00000002 , 0x0000000b 
+ 00027998  0x0000556f fetch  0x00000001 , 0x00004751 
+ 00027999  0x00005570 lshift  0x0000003f , 0x0000003f 
+ 00028000  0x00005571 set1  0x00000000 , 0x0000003f 
+ 00028001  0x00005572 istore  0x00000001 , 0x00000005 
+ 00028002  0x00005573 setarg  0x000009ef 
+ 00028003  0x00005574 istore  0x00000002 , 0x00000005 
+ 00028004  0x00005575 setarg  0x000005e1 
+ 00028005  0x00005576 istore  0x00000002 , 0x00000005 
+ 00028006  0x00005577 copy  0x0000000b , 0x0000003f 
+ 00028007  0x00005578 istore  0x00000001 , 0x00000005 
+ 00028008  0x00005579 setarg  0x0000008d 
+ 00028009  0x0000557a istore  0x00000001 , 0x00000005 
+ 00028010  0x0000557b call  0x00006b7c 
+ 00028011  0x0000557c istore  0x00000001 , 0x00000005 
+ 00028012  0x0000557d rtn 
+ 00028013  0x00005580 set1  0x00000025 , 0x00000000 
+ 00028014  0x00005581 bpatch  0x000000c9 , 0x00004039 
+ 00028015  0x00005582 fetch  0x00000001 , 0x00004757 
+ 00028016  0x00005583 rtn  0x00000034 
+ 00028017  0x00005584 hfetch  0x00000002 , 0x00008112 
+ 00028018  0x00005585 nrtn  0x00000034 
+ 00028019  0x00005586 copy  0x00000011 , 0x0000003f 
+ 00028020  0x00005587 store  0x00000001 , 0x00000162 
+ 00028021  0x00005588 storet  0x00000001 , 0x00000161 
+ 00028022  0x00005589 call  0x0000527a 
+ 00028023  0x0000558a nrtn  0x00000034 
+ 00028024  0x0000558b call  0x000052e0 
+ 00028025  0x0000558c call  0x000052ef 
+ 00028026  0x0000558d setarg  0x00000005 
+ 00028027  0x0000558e istore  0x00000002 , 0x00000005 
+ 00028028  0x0000558f fetch  0x00000002 , 0x000042b3 
+ 00028029  0x00005590 istore  0x00000002 , 0x00000005 
+ 00028030  0x00005591 fetch  0x00000001 , 0x000004a5 
+ 00028031  0x00005592 istore  0x00000001 , 0x00000005 
+ 00028032  0x00005593 setarg  0x000001ff 
+ 00028033  0x00005594 istore  0x00000002 , 0x00000005 
+ 00028034  0x00005595 fetch  0x00000001 , 0x00004757 
+ 00028035  0x00005596 istore  0x00000001 , 0x00000005 
+ 00028036  0x00005597 fetch  0x00000001 , 0x00004754 
+ 00028037  0x00005598 istore  0x00000001 , 0x00000005 
+ 00028038  0x00005599 jam  0x00000000 , 0x00004757 
+ 00028039  0x0000559a rtn 
+ 00028040  0x0000559d fetch  0x00000002 , 0x00000497 
+ 00028041  0x0000559e rtn  0x00000034 
+ 00028042  0x0000559f fetch  0x00000001 , 0x00004757 
+ 00028043  0x000055a0 increase  0x00000001 , 0x0000003f 
+ 00028044  0x000055a1 store  0x00000001 , 0x00004757 
+ 00028045  0x000055a2 rtn 
+ 00028046  0x000055a5 set1  0x00000025 , 0x00000000 
+ 00028047  0x000055a6 bpatch  0x000000ca , 0x00004039 
+ 00028048  0x000055a7 fetch  0x00000002 , 0x00000497 
+ 00028049  0x000055a8 copy  0x0000003f , 0x00000039 
+ 00028050  0x000055a9 call  0x000068f7 
+ 00028051  0x000055aa fetch  0x00000002 , 0x00000499 
+ 00028052  0x000055ab copy  0x0000003f , 0x00000006 
+ 00028053  0x000055ac call  0x00004976 
+ 00028054  0x000055ad branch  0x000068fa 
+ 00028055  0x000055b0 set1  0x00000025 , 0x00000000 
+ 00028056  0x000055b1 bpatch  0x000000cb , 0x00004039 
+ 00028057  0x000055b3 fetch  0x00000001 , 0x00004756 
+ 00028058  0x000055b4 rtn  0x00000034 
+ 00028059  0x000055b5 increase  0xffffffff , 0x0000003f 
+ 00028060  0x000055b6 store  0x00000001 , 0x00004756 
+ 00028061  0x000055b7 fetch  0x00000002 , 0x0000474c 
+ 00028062  0x000055b8 fetcht  0x00000002 , 0x0000480e 
+ 00028063  0x000055b9 isub  0x00000002 , 0x0000003e 
+ 00028064  0x000055ba branch  0x00006da2 , 0x00000002 
+ 00028065  0x000055bb store  0x00000002 , 0x0000480e 
+ 00028066  0x000055bd fetch  0x00000001 , 0x00004757 
+ 00028067  0x000055be branch  0x00006daa , 0x00000034 
+ 00028068  0x000055bf jam  0x00000001 , 0x000004a8 
+ 00028069  0x000055c0 fetch  0x00000001 , 0x00004754 
+ 00028070  0x000055c1 store  0x00000001 , 0x000004a7 
+ 00028071  0x000055c2 setarg  0x000000ff 
+ 00028072  0x000055c3 store  0x00000001 , 0x000004a6 
+ 00028073  0x000055c4 branch  0x00006daf 
+ 00028074  0x000055c6 jam  0x00000000 , 0x000004a8 
+ 00028075  0x000055c7 fetch  0x00000001 , 0x00004753 
+ 00028076  0x000055c8 store  0x00000001 , 0x000004a7 
+ 00028077  0x000055c9 setarg  0x000000ef 
+ 00028078  0x000055ca store  0x00000001 , 0x000004a6 
+ 00028079  0x000055cc set1  0x00000025 , 0x00000000 
+ 00028080  0x000055cd bpatch  0x000000cc , 0x00004039 
+ 00028081  0x000055ce fetch  0x00000001 , 0x0000480e 
+ 00028082  0x000055cf sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00028083  0x000055d0 branch  0x00006db7 , 0x00000002 
+ 00028084  0x000055d1 fetch  0x00000001 , 0x000004a8 
+ 00028085  0x000055d2 increase  0x00000001 , 0x0000003f 
+ 00028086  0x000055d3 store  0x00000001 , 0x000004a8 
+ 00028087  0x000055d5 call  0x00006bbf 
+ 00028088  0x000055d6 fetch  0x00000002 , 0x0000480e 
+ 00028089  0x000055d7 increase  0x00000008 , 0x0000003f 
+ 00028090  0x000055d8 fetcht  0x00000001 , 0x000004a8 
+ 00028091  0x000055d9 iadd  0x00000002 , 0x00000011 
+ 00028092  0x000055db call  0x00005248 
+ 00028093  0x000055dc store  0x00000002 , 0x000002de 
+ 00028094  0x000055dd increase  0x00000004 , 0x0000003f 
+ 00028095  0x000055de store  0x00000002 , 0x000002e0 
+ 00028096  0x000055df copy  0x0000003f , 0x00000005 
+ 00028097  0x000055e0 fetch  0x00000001 , 0x000004a5 
+ 00028098  0x000055e1 istore  0x00000001 , 0x00000005 
+ 00028099  0x000055e2 fetch  0x00000001 , 0x000004a6 
+ 00028100  0x000055e3 istore  0x00000001 , 0x00000005 
+ 00028101  0x000055e4 call  0x00006dd8 
+ 00028102  0x000055e5 call  0x00006de8 
+ 00028103  0x000055e6 call  0x00007f6b 
+ 00028104  0x000055e7 fetch  0x00000001 , 0x0000480e 
+ 00028105  0x000055e8 copy  0x0000003f , 0x00000039 
+ 00028106  0x000055e9 call  0x0000497c 
+ 00028107  0x000055ea fetch  0x00000001 , 0x000004a7 
+ 00028108  0x000055eb istore  0x00000001 , 0x00000005 
+ 00028109  0x000055ec fetch  0x00000002 , 0x000002de 
+ 00028110  0x000055ed copy  0x0000003f , 0x00000005 
+ 00028111  0x000055ee fetch  0x00000002 , 0x0000480e 
+ 00028112  0x000055ef fetcht  0x00000001 , 0x000004a8 
+ 00028113  0x000055f0 iadd  0x00000002 , 0x0000003f 
+ 00028114  0x000055f1 increase  0x00000004 , 0x0000003f 
+ 00028115  0x000055f2 istore  0x00000002 , 0x00000005 
+ 00028116  0x000055f3 fetch  0x00000002 , 0x000042b3 
+ 00028117  0x000055f4 istore  0x00000002 , 0x00000005 
+ 00028118  0x000055f5 jam  0x00000000 , 0x00004757 
+ 00028119  0x000055f6 branch  0x0000428c 
+ 00028120  0x000055f9 fetch  0x00000002 , 0x0000480e 
+ 00028121  0x000055fa sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00028122  0x000055fb nbranch  0x00006ddf , 0x00000002 
+ 00028123  0x000055fc lshift  0x0000003f , 0x0000003f 
+ 00028124  0x000055fd set1  0x00000000 , 0x0000003f 
+ 00028125  0x000055fe istore  0x00000001 , 0x00000005 
+ 00028126  0x000055ff rtn 
+ 00028127  0x00005601 fetch  0x00000002 , 0x0000480e 
+ 00028128  0x00005602 rshift3  0x0000003f , 0x0000003f 
+ 00028129  0x00005603 rshift4  0x0000003f , 0x00000002 
+ 00028130  0x00005604 and_into  0x0000007f , 0x0000003f 
+ 00028131  0x00005605 lshift  0x0000003f , 0x0000003f 
+ 00028132  0x00005606 set0  0x00000000 , 0x0000003f 
+ 00028133  0x00005607 istore  0x00000001 , 0x00000005 
+ 00028134  0x00005608 istoret  0x00000001 , 0x00000005 
+ 00028135  0x00005609 rtn 
+ 00028136  0x0000560b fetch  0x00000001 , 0x00004757 
+ 00028137  0x0000560c rtn  0x00000034 
+ 00028138  0x0000560d istore  0x00000001 , 0x00000005 
+ 00028139  0x0000560e rtn 
+ 00028140  0x00005614 set1  0x00000025 , 0x00000000 
+ 00028141  0x00005615 bpatch  0x0000009d , 0x00004033 
+ 00028142  0x00005616 call  0x00007c45 
+ 00028143  0x00005617 call  0x00003e73 
+ 00028144  0x00005618 call  0x00006235 
+ 00028145  0x0000561a set1  0x00000025 , 0x00000000 
+ 00028146  0x0000561b bpatch  0x0000009e , 0x00004033 
+ 00028147  0x0000561c call  0x00007813 
+ 00028148  0x0000561d call  0x000077ee 
+ 00028149  0x0000561e call  0x000077fe 
+ 00028150  0x00005620 set1  0x00000025 , 0x00000000 
+ 00028151  0x00005621 bpatch  0x0000009f , 0x00004033 
+ 00028152  0x00005622 fetch  0x00000001 , 0x00004132 
+ 00028153  0x00005623 rtneq  0x00000001 
+ 00028154  0x00005625 call  0x0000527a 
+ 00028155  0x00005626 nrtn  0x00000034 
+ 00028156  0x00005628 call  0x00004dcd 
+ 00028157  0x0000562a call  0x0000527a 
+ 00028158  0x0000562b nrtn  0x00000034 
+ 00028159  0x0000562c set1  0x00000025 , 0x00000000 
+ 00028160  0x0000562d bpatch  0x000000a0 , 0x00004034 
+ 00028161  0x0000562f call  0x00006e47 
+ 00028162  0x00005630 call  0x00004f6e 
+ 00028163  0x00005631 call  0x00006cd8 
+ 00028164  0x00005633 call  0x00006e0a 
+ 00028165  0x00005634 set1  0x00000025 , 0x00000000 
+ 00028166  0x00005635 bpatch  0x000000a1 , 0x00004034 
+ 00028167  0x00005636 call  0x0000527a 
+ 00028168  0x00005637 nrtn  0x00000034 
+ 00028169  0x00005638 branch  0x00003e6f 
+ 00028170  0x0000563b set1  0x00000025 , 0x00000000 
+ 00028171  0x0000563c bpatch  0x000000a2 , 0x00004034 
+ 00028172  0x0000563d fetch  0x00000001 , 0x000002e6 
+ 00028173  0x0000563e bbit1  0x00000000 , 0x0000508f 
+ 00028174  0x0000563f bbit1  0x00000007 , 0x00005099 
+ 00028175  0x00005640 rtn 
+ 00028176  0x00005643 set1  0x00000025 , 0x00000000 
+ 00028177  0x00005644 bpatch  0x000000a3 , 0x00004034 
+ 00028178  0x00005645 call  0x0000527e 
+ 00028179  0x00005646 rtn  0x00000034 
+ 00028180  0x00005647 fetch  0x00000001 , 0x0000004b 
+ 00028181  0x00005648 rtnbit1  0x00000006 
+ 00028182  0x00005649 call  0x00005261 
+ 00028183  0x0000564a store  0x00000002 , 0x00000179 
+ 00028184  0x0000564b copy  0x0000003f , 0x00000006 
+ 00028185  0x0000564c ifetch  0x00000002 , 0x00000006 
+ 00028186  0x0000564d increase  0x00000004 , 0x0000003f 
+ 00028187  0x0000564e store  0x00000002 , 0x00000091 
+ 00028188  0x0000564f jam  0x00000006 , 0x00000090 
+ 00028189  0x00005650 set1  0x00000025 , 0x00000000 
+ 00028190  0x00005651 bpatch  0x000000a4 , 0x00004034 
+ 00028191  0x00005652 fetch  0x00000002 , 0x000042af 
+ 00028192  0x00005653 branch  0x00006e2d , 0x00000034 
+ 00028193  0x00005654 fetch  0x00000001 , 0x0000004b 
+ 00028194  0x00005655 rtnbit0  0x00000007 
+ 00028195  0x00005656 set0  0x00000007 , 0x0000003f 
+ 00028196  0x00005657 store  0x00000001 , 0x0000004b 
+ 00028197  0x00005658 jam  0x00000005 , 0x00000090 
+ 00028198  0x00005659 fetcht  0x00000002 , 0x000042af 
+ 00028199  0x0000565a fetch  0x00000002 , 0x00000179 
+ 00028200  0x0000565b iadd  0x00000002 , 0x0000003f 
+ 00028201  0x0000565c store  0x00000002 , 0x00000179 
+ 00028202  0x0000565d fetch  0x00000002 , 0x00000091 
+ 00028203  0x0000565e isub  0x00000002 , 0x0000003f 
+ 00028204  0x0000565f store  0x00000002 , 0x00000091 
+ 00028205  0x00005661 set1  0x00000025 , 0x00000000 
+ 00028206  0x00005662 bpatch  0x000000a5 , 0x00004034 
+ 00028207  0x00005663 fetch  0x00000002 , 0x00000091 
+ 00028208  0x00005664 branch  0x00003bf1 , 0x00000034 
+ 00028209  0x00005665 arg  0x00000104 , 0x00000002 
+ 00028210  0x00005666 isub  0x00000002 , 0x0000003f 
+ 00028211  0x00005667 nbranch  0x00006e3b , 0x00000002 
+ 00028212  0x00005668 set1  0x00000025 , 0x00000000 
+ 00028213  0x00005669 bpatch  0x000000a6 , 0x00004034 
+ 00028214  0x0000566a storet  0x00000002 , 0x00000091 
+ 00028215  0x0000566b fetch  0x00000002 , 0x000042af 
+ 00028216  0x0000566c iadd  0x00000002 , 0x0000003f 
+ 00028217  0x0000566d store  0x00000002 , 0x000042af 
+ 00028218  0x0000566e branch  0x00006e3d 
+ 00028219  0x00005670 setarg  0x00000000 
+ 00028220  0x00005671 store  0x00000002 , 0x000042af 
+ 00028221  0x00005673 fetch  0x00000001 , 0x0000004b 
+ 00028222  0x00005674 set1  0x00000006 , 0x0000003f 
+ 00028223  0x00005675 store  0x00000001 , 0x0000004b 
+ 00028224  0x00005676 rtn 
+ 00028225  0x00005679 fetch  0x00000001 , 0x000047f6 
+ 00028226  0x0000567a bbit1  0x00000000 , 0x00006e45 
+ 00028227  0x0000567b jam  0x00000001 , 0x000002ee 
+ 00028228  0x0000567c rtn 
+ 00028229  0x0000567e jam  0x0000000f , 0x000002ee 
+ 00028230  0x0000567f rtn 
+ 00028231  0x00005682 fetch  0x00000001 , 0x000047f3 
+ 00028232  0x00005683 nbranch  0x00006e4d , 0x00000034 
+ 00028233  0x00005685 fetch  0x00000001 , 0x000002ed 
+ 00028234  0x00005687 rtn  0x00000034 
+ 00028235  0x00005689 jam  0x00000000 , 0x000002ed 
+ 00028236  0x0000568b rtn 
+ 00028237  0x0000568f set1  0x00000025 , 0x00000000 
+ 00028238  0x00005690 bpatch  0x000000a7 , 0x00004034 
+ 00028239  0x00005691 fetch  0x00000001 , 0x000002ee 
+ 00028240  0x00005692 rtn  0x00000034 
+ 00028241  0x00005693 beq  0x00000001 , 0x00006e6e 
+ 00028242  0x00005694 beq  0x00000002 , 0x00006ec7 
+ 00028243  0x00005695 beq  0x00000003 , 0x00006e74 
+ 00028244  0x00005696 beq  0x00000004 , 0x00006ecb 
+ 00028245  0x00005697 beq  0x0000003b , 0x00006e7e 
+ 00028246  0x00005698 beq  0x0000003c , 0x00006ece 
+ 00028247  0x00005699 beq  0x0000000d , 0x00006e83 
+ 00028248  0x0000569a beq  0x0000000e , 0x00006ed3 
+ 00028249  0x0000569b beq  0x0000000f , 0x00006e86 
+ 00028250  0x0000569c beq  0x00000010 , 0x00006ed9 
+ 00028251  0x0000569d beq  0x00000011 , 0x00006e8c 
+ 00028252  0x0000569e beq  0x00000012 , 0x00006edd 
+ 00028253  0x0000569f beq  0x00000013 , 0x00006e92 
+ 00028254  0x000056a0 beq  0x00000014 , 0x00006ee1 
+ 00028255  0x000056a1 beq  0x00000015 , 0x00006e98 
+ 00028256  0x000056a2 beq  0x00000016 , 0x00006ee5 
+ 00028257  0x000056a3 beq  0x00000017 , 0x00006e9e 
+ 00028258  0x000056a4 beq  0x00000018 , 0x00006eea 
+ 00028259  0x000056a5 beq  0x00000019 , 0x00006ea4 
+ 00028260  0x000056a6 beq  0x0000001a , 0x00006eee 
+ 00028261  0x000056a7 beq  0x0000001b , 0x00006eaa 
+ 00028262  0x000056a8 beq  0x0000001c , 0x00006ef2 
+ 00028263  0x000056a9 beq  0x0000001d , 0x00006eb0 
+ 00028264  0x000056aa beq  0x0000001e , 0x00006ef7 
+ 00028265  0x000056ab beq  0x0000001f , 0x00006eb6 
+ 00028266  0x000056ac beq  0x00000020 , 0x00006efb 
+ 00028267  0x000056ad beq  0x00000021 , 0x00006ec1 
+ 00028268  0x000056ae beq  0x00000022 , 0x00006eff 
+ 00028269  0x000056b0 rtn 
+ 00028270  0x000056b2 call  0x00006f0a 
+ 00028271  0x000056b3 jam  0x00000002 , 0x000002ee 
+ 00028272  0x000056b4 fetch  0x00000001 , 0x000042b9 
+ 00028273  0x000056b5 set1  0x00000000 , 0x0000003f 
+ 00028274  0x000056b6 store  0x00000001 , 0x000042b9 
+ 00028275  0x000056b7 rtn 
+ 00028276  0x000056b9 jam  0x00000004 , 0x000002ee 
+ 00028277  0x000056ba fetch  0x00000001 , 0x000042b9 
+ 00028278  0x000056bb rtnbit1  0x00000002 
+ 00028279  0x000056bc jam  0x00000003 , 0x000002ee 
+ 00028280  0x000056bd call  0x00006f12 
+ 00028281  0x000056be jam  0x00000004 , 0x000002ee 
+ 00028282  0x000056bf fetch  0x00000001 , 0x000042b9 
+ 00028283  0x000056c0 set1  0x00000002 , 0x0000003f 
+ 00028284  0x000056c1 store  0x00000001 , 0x000042b9 
+ 00028285  0x000056c2 rtn 
+ 00028286  0x000056c4 call  0x0000527e 
+ 00028287  0x000056c5 nrtn  0x00000034 
+ 00028288  0x000056c6 call  0x00006f23 
+ 00028289  0x000056c7 jam  0x0000003c , 0x000002ee 
+ 00028290  0x000056c8 rtn 
+ 00028291  0x000056ca call  0x00006f18 
+ 00028292  0x000056cb jam  0x0000000e , 0x000002ee 
+ 00028293  0x000056cc rtn 
+ 00028294  0x000056ce call  0x00006f36 
+ 00028295  0x000056cf jam  0x00000010 , 0x000002ee 
+ 00028296  0x000056d0 fetch  0x00000001 , 0x000042bb 
+ 00028297  0x000056d1 set1  0x00000000 , 0x0000003f 
+ 00028298  0x000056d2 store  0x00000001 , 0x000042bb 
+ 00028299  0x000056d3 rtn 
+ 00028300  0x000056d5 call  0x00006f3e 
+ 00028301  0x000056d6 jam  0x00000012 , 0x000002ee 
+ 00028302  0x000056d7 fetch  0x00000001 , 0x000042bb 
+ 00028303  0x000056d8 set1  0x00000002 , 0x0000003f 
+ 00028304  0x000056d9 store  0x00000001 , 0x000042bb 
+ 00028305  0x000056da rtn 
+ 00028306  0x000056dc call  0x00006f44 
+ 00028307  0x000056dd jam  0x00000014 , 0x000002ee 
+ 00028308  0x000056de fetch  0x00000001 , 0x000042bc 
+ 00028309  0x000056df set1  0x00000000 , 0x0000003f 
+ 00028310  0x000056e0 store  0x00000001 , 0x000042bc 
+ 00028311  0x000056e1 rtn 
+ 00028312  0x000056e3 call  0x00006f4c 
+ 00028313  0x000056e4 jam  0x00000016 , 0x000002ee 
+ 00028314  0x000056e5 fetch  0x00000001 , 0x000042bc 
+ 00028315  0x000056e6 set1  0x00000002 , 0x0000003f 
+ 00028316  0x000056e7 store  0x00000001 , 0x000042bc 
+ 00028317  0x000056e8 rtn 
+ 00028318  0x000056ea call  0x00006f28 
+ 00028319  0x000056eb jam  0x00000018 , 0x000002ee 
+ 00028320  0x000056ec fetch  0x00000001 , 0x000042ba 
+ 00028321  0x000056ed set1  0x00000000 , 0x0000003f 
+ 00028322  0x000056ee store  0x00000001 , 0x000042ba 
+ 00028323  0x000056ef rtn 
+ 00028324  0x000056f1 call  0x00006f30 
+ 00028325  0x000056f2 jam  0x0000001a , 0x000002ee 
+ 00028326  0x000056f3 fetch  0x00000001 , 0x000042ba 
+ 00028327  0x000056f4 set1  0x00000002 , 0x0000003f 
+ 00028328  0x000056f5 store  0x00000001 , 0x000042ba 
+ 00028329  0x000056f6 rtn 
+ 00028330  0x000056f8 call  0x00006f52 
+ 00028331  0x000056f9 jam  0x0000001c , 0x000002ee 
+ 00028332  0x000056fa fetch  0x00000001 , 0x000042ba 
+ 00028333  0x000056fb set1  0x00000006 , 0x0000003f 
+ 00028334  0x000056fc store  0x00000001 , 0x000042ba 
+ 00028335  0x000056fd rtn 
+ 00028336  0x000056ff call  0x00006f5a 
+ 00028337  0x00005700 fetch  0x00000001 , 0x000042bd 
+ 00028338  0x00005701 set1  0x00000000 
+ 00028339  0x00005702 store  0x00000001 , 0x000042bd 
+ 00028340  0x00005703 jam  0x0000001e , 0x000002ee 
+ 00028341  0x00005704 rtn 
+ 00028342  0x00005706 call  0x00006f61 
+ 00028343  0x00005707 fetch  0x00000001 , 0x000042bd 
+ 00028344  0x00005708 set1  0x00000002 
+ 00028345  0x00005709 store  0x00000001 , 0x000042bd 
+ 00028346  0x0000570a jam  0x00000020 , 0x000002ee 
+ 00028347  0x0000570b fetch  0x00000001 , 0x00004752 
+ 00028348  0x0000570c lshift3  0x0000003f , 0x0000003f 
+ 00028349  0x0000570d or_into  0x00000003 , 0x0000003f 
+ 00028350  0x0000570e arg  0x00004753 , 0x00000002 
+ 00028351  0x0000570f storet  0x00000002 , 0x0000048f 
+ 00028352  0x00005710 branch  0x00006b82 
+ 00028353  0x00005712 call  0x00006f6c 
+ 00028354  0x00005713 fetch  0x00000001 , 0x000042bd 
+ 00028355  0x00005714 set1  0x00000004 
+ 00028356  0x00005715 store  0x00000001 , 0x000042bd 
+ 00028357  0x00005716 jam  0x00000022 , 0x000002ee 
+ 00028358  0x00005717 rtn 
+ 00028359  0x0000571a fetch  0x00000001 , 0x000042b9 
+ 00028360  0x0000571b rtnbit0  0x00000001 
+ 00028361  0x0000571c jam  0x00000003 , 0x000002ee 
+ 00028362  0x0000571d branch  0x00006e4d 
+ 00028363  0x0000571f fetch  0x00000001 , 0x000042b9 
+ 00028364  0x00005720 rtnne  0x0000003f 
+ 00028365  0x00005721 jam  0x0000003b , 0x000002ee 
+ 00028366  0x00005723 fetch  0x00000001 , 0x000002ec 
+ 00028367  0x00005724 rtnne  0x00000017 
+ 00028368  0x00005725 jam  0x00000000 , 0x000002ec 
+ 00028369  0x00005726 jam  0x0000000d , 0x000002ee 
+ 00028370  0x00005727 branch  0x00006e4d 
+ 00028371  0x00005729 fetch  0x00000001 , 0x000042b9 
+ 00028372  0x0000572a nrtn  0x00000034 
+ 00028373  0x0000572b fetch  0x00000001 , 0x000047f6 
+ 00028374  0x0000572c bbit1  0x00000000 , 0x00006f02 
+ 00028375  0x0000572d bbit1  0x00000006 , 0x00006f04 
+ 00028376  0x0000572e branch  0x00006f08 
+ 00028377  0x00005730 fetch  0x00000001 , 0x000042bb 
+ 00028378  0x00005731 rtnbit0  0x00000001 
+ 00028379  0x00005732 jam  0x00000011 , 0x000002ee 
+ 00028380  0x00005733 branch  0x00006e4d 
+ 00028381  0x00005735 fetch  0x00000001 , 0x000042bb 
+ 00028382  0x00005736 rtnne  0x0000003f 
+ 00028383  0x00005737 jam  0x00000013 , 0x000002ee 
+ 00028384  0x00005738 branch  0x00006e4d 
+ 00028385  0x0000573a fetch  0x00000001 , 0x000042bc 
+ 00028386  0x0000573b rtnbit0  0x00000001 
+ 00028387  0x0000573c jam  0x00000015 , 0x000002ee 
+ 00028388  0x0000573d branch  0x00006e4d 
+ 00028389  0x0000573f fetch  0x00000001 , 0x000042bc 
+ 00028390  0x00005740 rtnne  0x0000003f 
+ 00028391  0x00005741 fetch  0x00000001 , 0x000047f6 
+ 00028392  0x00005742 bbit1  0x00000006 , 0x00006f04 
+ 00028393  0x00005743 branch  0x00006f08 
+ 00028394  0x00005745 fetch  0x00000001 , 0x000042ba 
+ 00028395  0x00005746 rtnbit0  0x00000001 
+ 00028396  0x00005747 jam  0x00000019 , 0x000002ee 
+ 00028397  0x00005748 branch  0x00006e4d 
+ 00028398  0x0000574a fetch  0x00000001 , 0x000042ba 
+ 00028399  0x0000574b rtnne  0x0000003f 
+ 00028400  0x0000574c jam  0x0000001b , 0x000002ee 
+ 00028401  0x0000574d branch  0x00006e4d 
+ 00028402  0x0000574f fetch  0x00000001 , 0x000042ba 
+ 00028403  0x00005750 rtnne  0x000000ff 
+ 00028404  0x00005751 fetch  0x00000001 , 0x000047f6 
+ 00028405  0x00005752 bbit1  0x00000006 , 0x00006f06 
+ 00028406  0x00005753 branch  0x00006f08 
+ 00028407  0x00005755 fetch  0x00000001 , 0x000042bd 
+ 00028408  0x00005756 rtnbit0  0x00000001 
+ 00028409  0x00005757 jam  0x0000001f , 0x000002ee 
+ 00028410  0x00005758 branch  0x00006e4d 
+ 00028411  0x0000575a fetch  0x00000001 , 0x000042bd 
+ 00028412  0x0000575b rtnbit0  0x00000003 
+ 00028413  0x0000575c jam  0x00000021 , 0x000002ee 
+ 00028414  0x0000575d branch  0x00006e4d 
+ 00028415  0x0000575f fetch  0x00000001 , 0x000042bd 
+ 00028416  0x00005760 rtnne  0x000000ff 
+ 00028417  0x00005761 branch  0x00006f08 
+ 00028418  0x00005764 jam  0x0000000f , 0x000002ee 
+ 00028419  0x00005765 branch  0x00006e4d 
+ 00028420  0x00005768 jam  0x00000017 , 0x000002ee 
+ 00028421  0x00005769 branch  0x00006e4d 
+ 00028422  0x0000576b jam  0x0000001d , 0x000002ee 
+ 00028423  0x0000576c branch  0x00006e4d 
+ 00028424  0x00005771 jam  0x00000000 , 0x000002ee 
+ 00028425  0x00005772 rtn 
+ 00028426  0x00005774 set1  0x00000025 , 0x00000000 
+ 00028427  0x00005775 bpatch  0x000000a8 , 0x00004035 
+ 00028428  0x00005776 call  0x000052c4 
+ 00028429  0x00005777 setarg  0x00000001 
+ 00028430  0x00005778 copy  0x0000003f , 0x00000002 
+ 00028431  0x00005779 setarg  0x00000050 
+ 00028432  0x0000577a copy  0x0000003f , 0x0000000b 
+ 00028433  0x0000577b branch  0x000050b0 
+ 00028434  0x0000577e set1  0x00000025 , 0x00000000 
+ 00028435  0x0000577f bpatch  0x000000a9 , 0x00004035 
+ 00028436  0x00005780 call  0x000052c4 
+ 00028437  0x00005781 fetch  0x00000002 , 0x000042b1 
+ 00028438  0x00005782 copy  0x0000003f , 0x00000002 
+ 00028439  0x00005783 branch  0x000050c0 
+ 00028440  0x00005786 set1  0x00000025 , 0x00000000 
+ 00028441  0x00005787 bpatch  0x000000aa , 0x00004035 
+ 00028442  0x00005788 call  0x000052c4 
+ 00028443  0x00005789 fetch  0x00000002 , 0x000042b1 
+ 00028444  0x0000578a copy  0x0000003f , 0x00000002 
+ 00028445  0x0000578b arg  0x00000050 , 0x0000000b 
+ 00028446  0x0000578c call  0x000050d6 
+ 00028447  0x0000578d fetch  0x00000001 , 0x000042b9 
+ 00028448  0x0000578e set0  0x00000005 , 0x0000003f 
+ 00028449  0x0000578f store  0x00000001 , 0x000042b9 
+ 00028450  0x00005790 rtn 
+ 00028451  0x00005793 set1  0x00000025 , 0x00000000 
+ 00028452  0x00005794 bpatch  0x000000ab , 0x00004035 
+ 00028453  0x00005795 call  0x000052d2 
+ 00028454  0x00005796 call  0x000071b0 
+ 00028455  0x00005797 branch  0x000050f2 
+ 00028456  0x0000579a set1  0x00000025 , 0x00000000 
+ 00028457  0x0000579b bpatch  0x000000ac , 0x00004035 
+ 00028458  0x0000579c call  0x000052c4 
+ 00028459  0x0000579d setarg  0x00000003 
+ 00028460  0x0000579e copy  0x0000003f , 0x00000002 
+ 00028461  0x0000579f setarg  0x00000051 
+ 00028462  0x000057a0 copy  0x0000003f , 0x0000000b 
+ 00028463  0x000057a1 branch  0x000050b0 
+ 00028464  0x000057a4 set1  0x00000025 , 0x00000000 
+ 00028465  0x000057a5 bpatch  0x000000ad , 0x00004035 
+ 00028466  0x000057a6 call  0x000052c4 
+ 00028467  0x000057a7 fetch  0x00000002 , 0x000042b3 
+ 00028468  0x000057a8 copy  0x0000003f , 0x00000002 
+ 00028469  0x000057a9 branch  0x000050c0 
+ 00028470  0x000057ac set1  0x00000025 , 0x00000000 
+ 00028471  0x000057ad bpatch  0x000000ae , 0x00004035 
+ 00028472  0x000057ae call  0x000052c4 
+ 00028473  0x000057af setarg  0x00000011 
+ 00028474  0x000057b0 copy  0x0000003f , 0x00000002 
+ 00028475  0x000057b1 setarg  0x00000052 
+ 00028476  0x000057b2 copy  0x0000003f , 0x0000000b 
+ 00028477  0x000057b3 branch  0x000050b0 
+ 00028478  0x000057b6 set1  0x00000025 , 0x00000000 
+ 00028479  0x000057b7 bpatch  0x000000af , 0x00004035 
+ 00028480  0x000057b8 call  0x000052c4 
+ 00028481  0x000057b9 fetch  0x00000002 , 0x000042b5 
+ 00028482  0x000057ba copy  0x0000003f , 0x00000002 
+ 00028483  0x000057bb branch  0x000050c0 
+ 00028484  0x000057be set1  0x00000025 , 0x00000000 
+ 00028485  0x000057bf bpatch  0x000000b0 , 0x00004036 
+ 00028486  0x000057c0 call  0x000052c4 
+ 00028487  0x000057c1 setarg  0x00000013 
+ 00028488  0x000057c2 copy  0x0000003f , 0x00000002 
+ 00028489  0x000057c3 setarg  0x00000053 
+ 00028490  0x000057c4 copy  0x0000003f , 0x0000000b 
+ 00028491  0x000057c5 branch  0x000050b0 
+ 00028492  0x000057c8 set1  0x00000025 , 0x00000000 
+ 00028493  0x000057c9 bpatch  0x000000b1 , 0x00004036 
+ 00028494  0x000057ca call  0x000052c4 
+ 00028495  0x000057cb fetch  0x00000002 , 0x000042b7 
+ 00028496  0x000057cc copy  0x0000003f , 0x00000002 
+ 00028497  0x000057cd branch  0x000050c0 
+ 00028498  0x000057d0 set1  0x00000025 , 0x00000000 
+ 00028499  0x000057d1 bpatch  0x000000b2 , 0x00004036 
+ 00028500  0x000057d2 call  0x000052e0 
+ 00028501  0x000057d4 jam  0x00000003 , 0x00000493 
+ 00028502  0x000057d5 jam  0x0000001c , 0x00000496 
+ 00028503  0x000057d6 call  0x00006ce8 
+ 00028504  0x000057d7 jam  0x00000001 , 0x00004751 
+ 00028505  0x000057d8 rtn 
+ 00028506  0x000057db set1  0x00000025 , 0x00000000 
+ 00028507  0x000057dc bpatch  0x000000b3 , 0x00004036 
+ 00028508  0x000057dd call  0x000052e0 
+ 00028509  0x000057de fetcht  0x00000001 , 0x00004752 
+ 00028510  0x000057df call  0x00006bcb 
+ 00028511  0x000057e0 storet  0x00000001 , 0x0000474b 
+ 00028512  0x000057e1 branch  0x00006d05 
+ 00028513  0x000057e4 set1  0x00000025 , 0x00000000 
+ 00028514  0x000057e5 bpatch  0x000000b4 , 0x00004036 
+ 00028515  0x000057e6 call  0x000052e0 
+ 00028516  0x000057e7 fetcht  0x00000001 , 0x0000474b 
+ 00028517  0x000057e8 call  0x00006bc0 
+ 00028518  0x000057e9 call  0x00006b67 
+ 00028519  0x000057ea store  0x00000001 , 0x00000496 
+ 00028520  0x000057eb fetcht  0x00000001 , 0x0000474b 
+ 00028521  0x000057ec call  0x00006bc0 
+ 00028522  0x000057ed storet  0x00000001 , 0x00000493 
+ 00028523  0x000057ee branch  0x00006ce8 
+ 00028524  0x000057f1 set1  0x00000025 , 0x00000000 
+ 00028525  0x000057f2 bpatch  0x000000b5 , 0x00004036 
+ 00028526  0x000057f3 call  0x000052e0 
+ 00028527  0x000057f4 fetcht  0x00000001 , 0x0000474b 
+ 00028528  0x000057f5 call  0x00006bc0 
+ 00028529  0x000057f6 branch  0x00006d3f 
+ 00028530  0x00005804 set1  0x00000025 , 0x00000000 
+ 00028531  0x00005805 bpatch  0x000000e7 , 0x0000403c 
+ 00028532  0x00005806 fetch  0x00000002 , 0x000002cb 
+ 00028533  0x00005807 iforce  0x00000006 
+ 00028534  0x00005808 ifetch  0x00000001 , 0x00000006 
+ 00028535  0x00005809 copy  0x0000003f , 0x00000012 
+ 00028536  0x0000580a store  0x00000001 , 0x000004af 
+ 00028537  0x0000580b ifetch  0x00000002 , 0x00000006 
+ 00028538  0x0000580c store  0x00000002 , 0x000004b0 
+ 00028539  0x0000580d ifetch  0x00000001 , 0x00000006 
+ 00028540  0x0000580e lshift8  0x0000003f , 0x0000000b 
+ 00028541  0x0000580f ifetch  0x00000001 , 0x00000006 
+ 00028542  0x00005810 iadd  0x0000000b , 0x0000000b 
+ 00028543  0x00005811 set1  0x00000025 , 0x00000000 
+ 00028544  0x00005812 bpatch  0x000000e8 , 0x0000403d 
+ 00028545  0x00005813 deposit  0x00000012 
+ 00028546  0x00005814 beq  0x00000002 , 0x00006f87 
+ 00028547  0x00005815 beq  0x00000004 , 0x00006fb0 
+ 00028548  0x00005816 beq  0x00000006 , 0x0000708b 
+ 00028549  0x00005817 beq  0x00000007 , 0x000071c7 
+ 00028550  0x00005818 branch  0x0000723e 
+ 00028551  0x00005824 call  0x0000724d 
+ 00028552  0x00005825 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00028553  0x00005826 branch  0x000072bb , 0x00000001 
+ 00028554  0x00005827 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00028555  0x00005828 branch  0x00007241 , 0x00000001 
+ 00028556  0x0000582a ifetch  0x00000002 , 0x00000006 
+ 00028557  0x0000582b store  0x00000002 , 0x000004b4 
+ 00028558  0x0000582c increase  0xfffffffe , 0x0000000b 
+ 00028559  0x0000582e increase  0xffffffff , 0x0000000b 
+ 00028560  0x0000582f nbranch  0x0000723b , 0x00000005 
+ 00028561  0x00005830 arg  0x000004a9 , 0x0000000b 
+ 00028562  0x00005831 ifetch  0x00000002 , 0x0000000b 
+ 00028563  0x00005832 rtn  0x00000034 
+ 00028564  0x00005833 increase  0x00000002 , 0x0000000b 
+ 00028565  0x00005834 call  0x00007307 
+ 00028566  0x00005835 call  0x000052de 
+ 00028567  0x00005836 force  0x00000003 , 0x0000003f 
+ 00028568  0x00005837 istore  0x00000001 , 0x00000005 
+ 00028569  0x00005838 fetch  0x00000002 , 0x000004b0 
+ 00028570  0x00005839 istore  0x00000002 , 0x00000005 
+ 00028571  0x0000583a lshift2  0x00000007 , 0x0000003f 
+ 00028572  0x0000583b add  0x0000003f , 0x00000005 , 0x0000003f 
+ 00028573  0x0000583c add  0x0000003f , 0x00000005 , 0x00000013 
+ 00028574  0x0000583d byteswap  0x0000003f , 0x0000003f 
+ 00028575  0x0000583e istore  0x00000002 , 0x00000005 
+ 00028576  0x0000583f deposit  0x00000007 
+ 00028577  0x00005840 byteswap  0x0000003f , 0x0000003f 
+ 00028578  0x00005841 istore  0x00000002 , 0x00000005 
+ 00028579  0x00005842 istore  0x00000002 , 0x00000005 
+ 00028580  0x00005843 arg  0x000004c5 , 0x00000006 
+ 00028581  0x00005844 copy  0x00000007 , 0x00000039 
+ 00028582  0x00005845 branch  0x00006faa , 0x00000005 
+ 00028583  0x00005847 ifetch  0x00000004 , 0x00000006 
+ 00028584  0x00005848 istore  0x00000004 , 0x00000005 
+ 00028585  0x00005849 loop  0x00006fa7 
+ 00028586  0x0000584b force  0x00000000 , 0x0000003f 
+ 00028587  0x0000584c istore  0x00000001 , 0x00000005 
+ 00028588  0x0000584d deposit  0x00000013 
+ 00028589  0x0000584e store  0x00000001 , 0x000002dc 
+ 00028590  0x0000584f branch  0x00003bf1 , 0x00000034 
+ 00028591  0x00005850 rtn 
+ 00028592  0x0000585c ifetch  0x00000004 , 0x00000006 
+ 00028593  0x0000585d store  0x00000004 , 0x000004be 
+ 00028594  0x0000585e increase  0xfffffffc , 0x0000000b 
+ 00028595  0x0000585f iforce  0x00000002 
+ 00028596  0x00005860 ifetch  0x00000002 , 0x00000006 
+ 00028597  0x00005861 byteswap  0x0000003f , 0x0000003f 
+ 00028598  0x00005862 increase  0xffffffee , 0x0000003f 
+ 00028599  0x00005863 store  0x00000002 , 0x000004b2 
+ 00028600  0x00005864 increase  0xfffffffe , 0x0000000b 
+ 00028601  0x00005865 call  0x000072a4 
+ 00028602  0x00005866 branch  0x00007241 , 0x00000005 
+ 00028603  0x00005867 compare  0x00000005 , 0x00000011 , 0x000000ff 
+ 00028604  0x00005869 branch  0x00006fc0 , 0x00000001 
+ 00028605  0x0000586b arg  0x00000491 , 0x00000005 
+ 00028606  0x0000586c force  0x00000000 , 0x00000007 
+ 00028607  0x0000586d branch  0x00006fd0 
+ 00028608  0x0000586f ifetch  0x00000001 , 0x00000006 
+ 00028609  0x00005870 bne  0x0000000a , 0x00007241 
+ 00028610  0x00005871 ifetch  0x00000002 , 0x00000006 
+ 00028611  0x00005872 nbranch  0x00006fce , 0x00000034 
+ 00028612  0x00005873 ifetch  0x00000001 , 0x00000006 
+ 00028613  0x00005874 bne  0x000000ff , 0x00006fcc 
+ 00028614  0x00005875 ifetch  0x00000001 , 0x00000006 
+ 00028615  0x00005876 bne  0x000000ff , 0x00006fca 
+ 00028616  0x00005877 increase  0xfffffffb , 0x00000006 
+ 00028617  0x00005878 branch  0x00007022 
+ 00028618  0x0000587a increase  0xfffffffb , 0x00000006 
+ 00028619  0x0000587b branch  0x00006fbd 
+ 00028620  0x0000587d increase  0xfffffffc , 0x00000006 
+ 00028621  0x0000587e branch  0x00006fbd 
+ 00028622  0x00005880 increase  0xfffffffd , 0x00000006 
+ 00028623  0x00005881 branch  0x00006fbd 
+ 00028624  0x00005883 ifetch  0x00000001 , 0x00000006 
+ 00028625  0x00005884 beq  0x00000009 , 0x00006fe5 
+ 00028626  0x00005885 beq  0x0000000a , 0x00006fd3 
+ 00028627  0x00005887 ifetch  0x00000002 , 0x00000006 
+ 00028628  0x00005888 istore  0x00000002 , 0x00000005 
+ 00028629  0x00005889 increase  0x00000001 , 0x00000007 
+ 00028630  0x0000588a byteswap  0x0000003f , 0x00000012 
+ 00028631  0x0000588b ifetch  0x00000002 , 0x00000006 
+ 00028632  0x0000588c byteswap  0x0000003f , 0x0000003f 
+ 00028633  0x0000588e increase  0x00000001 , 0x00000012 
+ 00028634  0x0000588f isub  0x00000012 , 0x0000003e 
+ 00028635  0x00005890 nbranch  0x00006fe2 , 0x00000002 
+ 00028636  0x00005891 copy  0x0000003f , 0x00000013 
+ 00028637  0x00005892 byteswap  0x00000012 , 0x0000003f 
+ 00028638  0x00005893 istore  0x00000002 , 0x00000005 
+ 00028639  0x00005894 increase  0x00000001 , 0x00000007 
+ 00028640  0x00005895 copy  0x00000013 , 0x0000003f 
+ 00028641  0x00005896 branch  0x00006fd9 
+ 00028642  0x00005898 increase  0xfffffffb , 0x0000000b 
+ 00028643  0x00005899 increase  0xfffffffb , 0x00000011 
+ 00028644  0x0000589a branch  0x00006fea 
+ 00028645  0x0000589c ifetch  0x00000002 , 0x00000006 
+ 00028646  0x0000589d istore  0x00000002 , 0x00000005 
+ 00028647  0x0000589e increase  0x00000001 , 0x00000007 
+ 00028648  0x0000589f increase  0xfffffffd , 0x0000000b 
+ 00028649  0x000058a0 increase  0xfffffffd , 0x00000011 
+ 00028650  0x000058a2 nbranch  0x00007241 , 0x00000002 
+ 00028651  0x000058a3 nbranch  0x00006fd0 , 0x00000005 
+ 00028652  0x000058a4 increase  0xffffffff , 0x0000000b 
+ 00028653  0x000058a5 nbranch  0x00007241 , 0x00000005 
+ 00028654  0x000058a7 call  0x000052de 
+ 00028655  0x000058a8 increase  0x0000000a , 0x00000005 
+ 00028656  0x000058a9 arg  0x00000491 , 0x00000011 
+ 00028657  0x000058ab copy  0x00000007 , 0x0000003f 
+ 00028658  0x000058ac branch  0x00007004 , 0x00000034 
+ 00028659  0x000058ad ifetch  0x00000002 , 0x00000011 
+ 00028660  0x000058ae branch  0x00007004 , 0x00000034 
+ 00028661  0x000058af iforce  0x00000012 
+ 00028662  0x000058b0 fetch  0x00000004 , 0x000004be 
+ 00028663  0x000058b1 iforce  0x00000002 
+ 00028664  0x000058b2 call  0x0000734e 
+ 00028665  0x000058b3 branch  0x00007001 , 0x00000034 
+ 00028666  0x000058b4 increase  0xfffffffd , 0x00000006 
+ 00028667  0x000058b5 ifetch  0x00000003 , 0x00000006 
+ 00028668  0x000058b6 istore  0x00000003 , 0x00000005 
+ 00028669  0x000058b7 call  0x00007199 
+ 00028670  0x000058b8 branch  0x00007001 , 0x00000034 
+ 00028671  0x000058b9 iforce  0x00000039 
+ 00028672  0x000058ba call  0x00007e45 
+ 00028673  0x000058bc increase  0x00000002 , 0x00000011 
+ 00028674  0x000058bd increase  0xffffffff , 0x00000007 
+ 00028675  0x000058be branch  0x00006ff1 
+ 00028676  0x000058c1 force  0x00000000 , 0x0000003f 
+ 00028677  0x000058c2 istore  0x00000001 , 0x00000005 
+ 00028678  0x000058c3 increase  0xffffffff , 0x00000005 
+ 00028679  0x000058c4 fetcht  0x00000002 , 0x000002da 
+ 00028680  0x000058c5 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00028681  0x000058c6 isub  0x00000005 , 0x0000003f 
+ 00028682  0x000058c7 sub  0x0000003f , 0x00000000 , 0x00000011 
+ 00028683  0x000058c8 byteswap  0x00000011 , 0x0000003f 
+ 00028684  0x000058c9 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00028685  0x000058ca istore  0x00000002 , 0x00000012 
+ 00028686  0x000058cb increase  0x00000003 , 0x00000011 
+ 00028687  0x000058cc byteswap  0x00000011 , 0x0000003f 
+ 00028688  0x000058cd add  0x00000002 , 0x00000005 , 0x00000012 
+ 00028689  0x000058ce istore  0x00000002 , 0x00000012 
+ 00028690  0x000058cf increase  0x00000003 , 0x00000011 
+ 00028691  0x000058d0 byteswap  0x00000011 , 0x0000003f 
+ 00028692  0x000058d1 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00028693  0x000058d2 istore  0x00000002 , 0x00000012 
+ 00028694  0x000058d3 increase  0x00000005 , 0x00000011 
+ 00028695  0x000058d4 copy  0x00000011 , 0x0000003f 
+ 00028696  0x000058d5 store  0x00000002 , 0x000002dc 
+ 00028697  0x000058d6 setarg  0x00000036 
+ 00028698  0x000058d7 add  0x00000002 , 0x00000007 , 0x00000012 
+ 00028699  0x000058d8 istore  0x00000001 , 0x00000012 
+ 00028700  0x000058d9 setarg  0x00000005 
+ 00028701  0x000058da istore  0x00000001 , 0x00000002 
+ 00028702  0x000058db fetch  0x00000002 , 0x000004b0 
+ 00028703  0x000058dc add  0x00000002 , 0x00000001 , 0x00000012 
+ 00028704  0x000058dd istore  0x00000002 , 0x00000012 
+ 00028705  0x000058de rtn 
+ 00028706  0x000058e0 ifetch  0x00000001 , 0x00000006 
+ 00028707  0x000058e1 bne  0x0000000a , 0x00007241 
+ 00028708  0x000058e2 ifetch  0x00000002 , 0x00000006 
+ 00028709  0x000058e3 nbranch  0x00007241 , 0x00000034 
+ 00028710  0x000058e4 ifetch  0x00000001 , 0x00000006 
+ 00028711  0x000058e5 bne  0x000000ff , 0x00007241 
+ 00028712  0x000058e6 ifetch  0x00000001 , 0x00000006 
+ 00028713  0x000058e7 bne  0x000000ff , 0x00007241 
+ 00028714  0x000058e8 increase  0xfffffffb , 0x0000000b 
+ 00028715  0x000058e9 ifetch  0x00000001 , 0x00000006 
+ 00028716  0x000058ea beq  0x00000000 , 0x0000702f 
+ 00028717  0x000058eb beq  0x00000001 , 0x00007032 
+ 00028718  0x000058ec beq  0x00000002 , 0x00007036 
+ 00028719  0x000058ee store  0x00000002 , 0x000004ad 
+ 00028720  0x000058ef increase  0xffffffff , 0x0000000b 
+ 00028721  0x000058f0 branch  0x0000703a 
+ 00028722  0x000058f2 ifetch  0x00000001 , 0x00000006 
+ 00028723  0x000058f3 store  0x00000002 , 0x000004ad 
+ 00028724  0x000058f4 increase  0xfffffffe , 0x0000000b 
+ 00028725  0x000058f5 branch  0x0000703a 
+ 00028726  0x000058f7 ifetch  0x00000002 , 0x00000006 
+ 00028727  0x000058f8 byteswap  0x0000003f , 0x0000003f 
+ 00028728  0x000058f9 store  0x00000002 , 0x000004ad 
+ 00028729  0x000058fa increase  0xfffffffd , 0x0000000b 
+ 00028730  0x000058fc nbranch  0x0000723b , 0x00000005 
+ 00028731  0x000058fd call  0x0000731e 
+ 00028732  0x000058fe nbranch  0x00007238 , 0x00000005 
+ 00028733  0x000058ff copy  0x00000006 , 0x00000011 
+ 00028734  0x00005900 call  0x000052de 
+ 00028735  0x00005901 copy  0x00000011 , 0x00000006 
+ 00028736  0x00005902 increase  0x00000003 , 0x00000005 
+ 00028737  0x00005903 copy  0x00000006 , 0x0000000b 
+ 00028738  0x00005904 call  0x000072e8 
+ 00028739  0x00005905 copy  0x0000003f , 0x00000011 
+ 00028740  0x00005906 fetch  0x00000002 , 0x000004ad 
+ 00028741  0x00005907 copy  0x0000003f , 0x00000012 
+ 00028742  0x00005908 copy  0x00000011 , 0x0000003f 
+ 00028743  0x00005909 isub  0x00000012 , 0x00000012 
+ 00028744  0x0000590a fetch  0x00000002 , 0x000004b2 
+ 00028745  0x0000590b isub  0x00000012 , 0x0000003e 
+ 00028746  0x0000590c nbranch  0x00007066 , 0x00000002 
+ 00028747  0x0000590e disable  0x00000028 
+ 00028748  0x0000590f fetch  0x00000002 , 0x000004ad 
+ 00028749  0x00005910 branch  0x00007059 , 0x00000034 
+ 00028750  0x00005911 iadd  0x0000000b , 0x00000006 
+ 00028751  0x00005912 increase  0x00000003 , 0x00000012 
+ 00028752  0x00005913 copy  0x00000012 , 0x00000039 
+ 00028753  0x00005914 copy  0x00000039 , 0x0000003f 
+ 00028754  0x00005915 increase  0x00000003 , 0x0000003f 
+ 00028755  0x00005916 byteswap  0x0000003f , 0x0000003f 
+ 00028756  0x00005917 istore  0x00000002 , 0x00000005 
+ 00028757  0x00005918 copy  0x00000039 , 0x0000003f 
+ 00028758  0x00005919 byteswap  0x0000003f , 0x0000003f 
+ 00028759  0x0000591a istore  0x00000002 , 0x00000005 
+ 00028760  0x0000591b branch  0x00007074 
+ 00028761  0x0000591d add  0x00000011 , 0x00000006 , 0x00000039 
+ 00028762  0x0000591e branch  0x0000705d , 0x00000028 
+ 00028763  0x0000591f byteswap  0x00000039 , 0x0000003f 
+ 00028764  0x00005920 branch  0x00007060 
+ 00028765  0x00005922 copy  0x00000039 , 0x0000003f 
+ 00028766  0x00005923 increase  0x00000002 , 0x0000003f 
+ 00028767  0x00005924 byteswap  0x0000003f , 0x0000003f 
+ 00028768  0x00005926 istore  0x00000002 , 0x00000005 
+ 00028769  0x00005927 increase  0xfffffffd , 0x00000039 
+ 00028770  0x00005928 byteswap  0x00000039 , 0x0000003f 
+ 00028771  0x00005929 istore  0x00000002 , 0x00000005 
+ 00028772  0x0000592a copy  0x0000000b , 0x00000006 
+ 00028773  0x0000592b branch  0x00007074 
+ 00028774  0x0000592d enable  0x00000028 
+ 00028775  0x0000592e fetch  0x00000002 , 0x000004b2 
+ 00028776  0x0000592f copy  0x0000003f , 0x00000011 
+ 00028777  0x00005930 copy  0x0000003f , 0x00000039 
+ 00028778  0x00005931 fetch  0x00000002 , 0x000004ad 
+ 00028779  0x00005932 branch  0x00007059 , 0x00000034 
+ 00028780  0x00005933 iadd  0x0000000b , 0x00000006 
+ 00028781  0x00005934 copy  0x00000011 , 0x0000003f 
+ 00028782  0x00005935 increase  0x00000005 , 0x0000003f 
+ 00028783  0x00005936 byteswap  0x0000003f , 0x0000003f 
+ 00028784  0x00005937 istore  0x00000002 , 0x00000005 
+ 00028785  0x00005938 copy  0x00000011 , 0x0000003f 
+ 00028786  0x00005939 byteswap  0x0000003f , 0x0000003f 
+ 00028787  0x0000593a istore  0x00000002 , 0x00000005 
+ 00028788  0x0000593c ifetch  0x00000001 , 0x00000006 
+ 00028789  0x0000593d istore  0x00000001 , 0x00000005 
+ 00028790  0x0000593e loop  0x00007074 
+ 00028791  0x0000593f nbranch  0x0000707f , 0x00000028 
+ 00028792  0x00005940 force  0x00000002 , 0x0000003f 
+ 00028793  0x00005941 istore  0x00000001 , 0x00000005 
+ 00028794  0x00005942 copy  0x00000006 , 0x0000003f 
+ 00028795  0x00005943 isub  0x0000000b , 0x0000003f 
+ 00028796  0x00005944 byteswap  0x0000003f , 0x0000003f 
+ 00028797  0x00005945 istore  0x00000002 , 0x00000005 
+ 00028798  0x00005946 branch  0x00007081 
+ 00028799  0x00005948 force  0x00000000 , 0x0000003f 
+ 00028800  0x00005949 istore  0x00000001 , 0x00000005 
+ 00028801  0x0000594b fetch  0x00000002 , 0x000002da 
+ 00028802  0x0000594c isub  0x00000005 , 0x0000003f 
+ 00028803  0x0000594d sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00028804  0x0000594e store  0x00000002 , 0x000002dc 
+ 00028805  0x0000594f call  0x000052de 
+ 00028806  0x00005950 setarg  0x00000005 
+ 00028807  0x00005951 istore  0x00000001 , 0x00000005 
+ 00028808  0x00005952 fetch  0x00000002 , 0x000004b0 
+ 00028809  0x00005953 istore  0x00000002 , 0x00000005 
+ 00028810  0x00005954 rtn 
+ 00028811  0x00005961 call  0x0000724d 
+ 00028812  0x00005962 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00028813  0x00005963 branch  0x000070b4 , 0x00000001 
+ 00028814  0x00005964 ifetch  0x00000002 , 0x00000006 
+ 00028815  0x00005965 store  0x00000002 , 0x000004b2 
+ 00028816  0x00005966 increase  0xfffffffe , 0x0000000b 
+ 00028817  0x00005967 call  0x000072a4 
+ 00028818  0x00005968 arg  0x00000491 , 0x00000005 
+ 00028819  0x00005969 force  0x00000000 , 0x00000007 
+ 00028820  0x0000596b ifetch  0x00000003 , 0x00000006 
+ 00028821  0x0000596c bne  0x00000009 , 0x000070b4 
+ 00028822  0x0000596e rshift8  0x0000003f , 0x0000003f 
+ 00028823  0x0000596f istore  0x00000002 , 0x00000005 
+ 00028824  0x00005970 increase  0x00000001 , 0x00000007 
+ 00028825  0x00005971 increase  0xfffffffd , 0x0000000b 
+ 00028826  0x00005972 increase  0xfffffffd , 0x00000011 
+ 00028827  0x00005973 nbranch  0x00007241 , 0x00000002 
+ 00028828  0x00005974 nbranch  0x00007094 , 0x00000005 
+ 00028829  0x00005975 increase  0xffffffff , 0x0000000b 
+ 00028830  0x00005976 nbranch  0x00007241 , 0x00000005 
+ 00028831  0x00005978 call  0x000052de 
+ 00028832  0x00005979 increase  0x0000000d , 0x00000005 
+ 00028833  0x0000597a fetch  0x00000002 , 0x000004a9 
+ 00028834  0x0000597b iforce  0x00000013 
+ 00028835  0x0000597c arg  0x00000491 , 0x00000011 
+ 00028836  0x0000597e ifetch  0x00000004 , 0x00000011 
+ 00028837  0x0000597f branch  0x000070c4 , 0x00000034 
+ 00028838  0x00005980 ifetch  0x00000002 , 0x00000011 
+ 00028839  0x00005981 iforce  0x00000012 
+ 00028840  0x00005982 call  0x0000732a 
+ 00028841  0x00005983 branch  0x000070b2 , 0x00000034 
+ 00028842  0x00005984 increase  0xfffffffd , 0x00000006 
+ 00028843  0x00005985 ifetch  0x00000003 , 0x00000006 
+ 00028844  0x00005986 istore  0x00000003 , 0x00000005 
+ 00028845  0x00005987 call  0x00007199 
+ 00028846  0x00005988 iforce  0x00000039 
+ 00028847  0x0000598a ifetch  0x00000001 , 0x00000006 
+ 00028848  0x0000598b istore  0x00000001 , 0x00000005 
+ 00028849  0x0000598c loop  0x000070af 
+ 00028850  0x0000598e increase  0x00000002 , 0x00000011 
+ 00028851  0x0000598f branch  0x000070a4 
+ 00028852  0x00005994 ifetch  0x00000001 , 0x00000006 
+ 00028853  0x00005996 ifetch  0x00000001 , 0x00000006 
+ 00028854  0x00005998 increase  0xfffffffb , 0x0000000b 
+ 00028855  0x00005999 increase  0xfffffffb , 0x00000011 
+ 00028856  0x0000599a nbranch  0x00007241 , 0x00000002 
+ 00028857  0x0000599b arg  0x000004a9 , 0x0000000b 
+ 00028858  0x0000599c ifetch  0x00000002 , 0x0000000b 
+ 00028859  0x0000599e increase  0x00000002 , 0x0000000b 
+ 00028860  0x0000599f call  0x00007307 
+ 00028861  0x000059a0 deposit  0x00000007 
+ 00028862  0x000059a1 store  0x00000001 , 0x000004dd 
+ 00028863  0x000059a2 branch  0x000072be , 0x00000034 
+ 00028864  0x000059a3 arg  0x00000000 , 0x00000007 
+ 00028865  0x000059a4 call  0x000052de 
+ 00028866  0x000059a5 increase  0x0000000a , 0x00000005 
+ 00028867  0x000059a6 branch  0x00007108 
+ 00028868  0x000059a8 force  0x00000000 , 0x0000003f 
+ 00028869  0x000059a9 istore  0x00000001 , 0x00000005 
+ 00028870  0x000059aa increase  0xffffffff , 0x00000005 
+ 00028871  0x000059ab fetcht  0x00000002 , 0x000002da 
+ 00028872  0x000059ac add  0x00000002 , 0x0000000d , 0x0000003f 
+ 00028873  0x000059ad isub  0x00000005 , 0x0000003f 
+ 00028874  0x000059ae branch  0x000070e8 , 0x00000005 
+ 00028875  0x000059af sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00028876  0x000059b0 add  0x00000002 , 0x0000000c , 0x00000012 
+ 00028877  0x000059b1 istore  0x00000001 , 0x00000012 
+ 00028878  0x000059b2 increase  0x00000003 , 0x0000003f 
+ 00028879  0x000059b3 add  0x00000002 , 0x00000009 , 0x00000012 
+ 00028880  0x000059b4 istore  0x00000001 , 0x00000012 
+ 00028881  0x000059b5 increase  0x00000003 , 0x0000003f 
+ 00028882  0x000059b6 byteswap  0x0000003f , 0x0000003f 
+ 00028883  0x000059b7 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00028884  0x000059b8 istore  0x00000002 , 0x00000012 
+ 00028885  0x000059b9 rshift8  0x0000003f , 0x0000003f 
+ 00028886  0x000059ba increase  0x00000003 , 0x0000003f 
+ 00028887  0x000059bb byteswap  0x0000003f , 0x0000003f 
+ 00028888  0x000059bc add  0x00000002 , 0x00000003 , 0x00000012 
+ 00028889  0x000059bd istore  0x00000002 , 0x00000012 
+ 00028890  0x000059be rshift8  0x0000003f , 0x0000003f 
+ 00028891  0x000059bf increase  0x00000005 , 0x0000003f 
+ 00028892  0x000059c0 store  0x00000001 , 0x000002dc 
+ 00028893  0x000059c2 fetch  0x00000002 , 0x000004b0 
+ 00028894  0x000059c3 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00028895  0x000059c4 istore  0x00000002 , 0x00000012 
+ 00028896  0x000059c5 setarg  0x00000007 
+ 00028897  0x000059c6 istore  0x00000001 , 0x00000002 
+ 00028898  0x000059cb setarg  0x00000036 
+ 00028899  0x000059cc add  0x00000002 , 0x00000007 , 0x00000012 
+ 00028900  0x000059cd istore  0x00000002 , 0x00000012 
+ 00028901  0x000059ce add  0x00000002 , 0x0000000a , 0x00000012 
+ 00028902  0x000059cf istore  0x00000002 , 0x00000012 
+ 00028903  0x000059d0 rtn 
+ 00028904  0x000059d2 jam  0x0000000a , 0x000002dc 
+ 00028905  0x000059d3 call  0x000052de 
+ 00028906  0x000059d5 setarg  0x00000007 
+ 00028907  0x000059d6 istore  0x00000001 , 0x00000005 
+ 00028908  0x000059d7 fetch  0x00000002 , 0x000004b0 
+ 00028909  0x000059d8 istore  0x00000002 , 0x00000005 
+ 00028910  0x000059dc setarg  0x00000500 
+ 00028911  0x000059dd istore  0x00000002 , 0x00000005 
+ 00028912  0x000059e0 setarg  0x00000200 
+ 00028913  0x000059e1 istore  0x00000002 , 0x00000005 
+ 00028914  0x000059e5 setarg  0x00000035 
+ 00028915  0x000059e6 istore  0x00000003 , 0x00000005 
+ 00028916  0x000059e7 rtn 
+ 00028917  0x000059ea ifetch  0x00000001 , 0x00000006 
+ 00028918  0x000059eb istore  0x00000001 , 0x00000005 
+ 00028919  0x000059ec increase  0x00000001 , 0x00000012 
+ 00028920  0x000059ed increase  0xffffffff , 0x00000011 
+ 00028921  0x000059ee branch  0x000070fb , 0x00000005 
+ 00028922  0x000059ef loop  0x000070f5 
+ 00028923  0x000059f1 copy  0x00000005 , 0x0000000b 
+ 00028924  0x000059f2 copy  0x00000012 , 0x0000003f 
+ 00028925  0x000059f3 store  0x00000002 , 0x000004ad 
+ 00028926  0x000059f4 copy  0x00000011 , 0x0000003f 
+ 00028927  0x000059f5 store  0x00000002 , 0x000004b2 
+ 00028928  0x000059f6 branch  0x00007117 , 0x00000034 
+ 00028929  0x000059f7 branch  0x00007152 , 0x00000028 
+ 00028930  0x000059f8 copy  0x0000000b , 0x00000005 
+ 00028931  0x000059fa increase  0x00000001 , 0x00000007 
+ 00028932  0x000059fb fetch  0x00000001 , 0x000004dd 
+ 00028933  0x000059fc isub  0x00000007 , 0x0000003e 
+ 00028934  0x000059fd nbranch  0x00007108 , 0x00000005 
+ 00028935  0x000059fe branch  0x00007171 
+ 00028936  0x00005a00 arg  0x000004c5 , 0x00000006 
+ 00028937  0x00005a01 lshift2  0x00000007 , 0x0000003f 
+ 00028938  0x00005a02 iadd  0x00000006 , 0x00000006 
+ 00028939  0x00005a03 ifetch  0x00000004 , 0x00000006 
+ 00028940  0x00005a04 iforce  0x00000002 
+ 00028941  0x00005a05 call  0x0000731e 
+ 00028942  0x00005a06 copy  0x00000006 , 0x0000000b 
+ 00028943  0x00005a07 call  0x000072e8 
+ 00028944  0x00005a08 add  0x0000003f , 0x00000003 , 0x00000039 
+ 00028945  0x00005a09 fetch  0x00000002 , 0x000004b2 
+ 00028946  0x00005a0a copy  0x0000003f , 0x00000011 
+ 00028947  0x00005a0b fetch  0x00000002 , 0x000004ad 
+ 00028948  0x00005a0c copy  0x0000003f , 0x00000012 
+ 00028949  0x00005a0d copy  0x0000000b , 0x00000006 
+ 00028950  0x00005a0e branch  0x000070f5 
+ 00028951  0x00005a10 arg  0x00000000 , 0x00000007 
+ 00028952  0x00005a11 arg  0x00000000 , 0x00000012 
+ 00028953  0x00005a13 arg  0x000004c5 , 0x00000006 
+ 00028954  0x00005a14 lshift2  0x00000007 , 0x0000003f 
+ 00028955  0x00005a15 iadd  0x00000006 , 0x00000006 
+ 00028956  0x00005a16 ifetch  0x00000004 , 0x00000006 
+ 00028957  0x00005a17 iforce  0x00000002 
+ 00028958  0x00005a18 call  0x0000731e 
+ 00028959  0x00005a19 call  0x000072e8 
+ 00028960  0x00005a1a add  0x0000003f , 0x00000003 , 0x0000003f 
+ 00028961  0x00005a1b iadd  0x00000012 , 0x00000012 
+ 00028962  0x00005a1c increase  0x00000001 , 0x00000007 
+ 00028963  0x00005a1d fetch  0x00000001 , 0x000004dd 
+ 00028964  0x00005a1e isub  0x00000007 , 0x0000003e 
+ 00028965  0x00005a1f nbranch  0x00007119 , 0x00000005 
+ 00028966  0x00005a21 copy  0x0000000b , 0x00000005 
+ 00028967  0x00005a22 force  0x00000002 , 0x0000003f 
+ 00028968  0x00005a23 istore  0x00000001 , 0x00000005 
+ 00028969  0x00005a24 fetch  0x00000002 , 0x000004ad 
+ 00028970  0x00005a25 byteswap  0x0000003f , 0x0000003f 
+ 00028971  0x00005a26 istore  0x00000002 , 0x00000005 
+ 00028972  0x00005a27 increase  0xfffffffd , 0x00000005 
+ 00028973  0x00005a28 fetcht  0x00000002 , 0x000002da 
+ 00028974  0x00005a29 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00028975  0x00005a2a isub  0x00000005 , 0x0000003f 
+ 00028976  0x00005a2b sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00028977  0x00005a2c iforce  0x00000011 
+ 00028978  0x00005a2e deposit  0x00000012 
+ 00028979  0x00005a2f add  0x00000002 , 0x00000009 , 0x00000012 
+ 00028980  0x00005a30 istore  0x00000001 , 0x00000012 
+ 00028981  0x00005a31 rshift8  0x0000003f , 0x0000003f 
+ 00028982  0x00005a32 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00028983  0x00005a33 istore  0x00000001 , 0x00000012 
+ 00028984  0x00005a34 increase  0x00000003 , 0x00000011 
+ 00028985  0x00005a35 deposit  0x00000011 
+ 00028986  0x00005a36 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00028987  0x00005a37 istore  0x00000001 , 0x00000012 
+ 00028988  0x00005a38 rshift8  0x0000003f , 0x0000003f 
+ 00028989  0x00005a39 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00028990  0x00005a3a istore  0x00000001 , 0x00000012 
+ 00028991  0x00005a3b increase  0x00000005 , 0x00000011 
+ 00028992  0x00005a3c deposit  0x00000011 
+ 00028993  0x00005a3d add  0x00000002 , 0x00000004 , 0x00000012 
+ 00028994  0x00005a3e istore  0x00000001 , 0x00000012 
+ 00028995  0x00005a3f rshift8  0x0000003f , 0x0000003f 
+ 00028996  0x00005a40 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00028997  0x00005a41 istore  0x00000001 , 0x00000012 
+ 00028998  0x00005a42 increase  0x00000005 , 0x00000011 
+ 00028999  0x00005a43 deposit  0x00000011 
+ 00029000  0x00005a44 store  0x00000002 , 0x000002dc 
+ 00029001  0x00005a45 setarg  0x00000007 
+ 00029002  0x00005a46 istore  0x00000001 , 0x00000002 
+ 00029003  0x00005a47 setarg  0x00000036 
+ 00029004  0x00005a48 add  0x00000002 , 0x00000007 , 0x00000012 
+ 00029005  0x00005a49 istore  0x00000001 , 0x00000012 
+ 00029006  0x00005a4a add  0x00000002 , 0x00000001 , 0x00000012 
+ 00029007  0x00005a4b fetch  0x00000002 , 0x000004b0 
+ 00029008  0x00005a4c istore  0x00000002 , 0x00000012 
+ 00029009  0x00005a4d rtn 
+ 00029010  0x00005a4f copy  0x0000000b , 0x00000005 
+ 00029011  0x00005a50 force  0x00000000 , 0x0000003f 
+ 00029012  0x00005a51 istore  0x00000001 , 0x00000005 
+ 00029013  0x00005a52 increase  0xffffffff , 0x00000005 
+ 00029014  0x00005a53 fetcht  0x00000002 , 0x000002da 
+ 00029015  0x00005a54 add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00029016  0x00005a55 isub  0x00000005 , 0x0000003f 
+ 00029017  0x00005a56 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00029018  0x00005a57 iforce  0x00000011 
+ 00029019  0x00005a59 deposit  0x00000011 
+ 00029020  0x00005a5a add  0x00000002 , 0x00000006 , 0x00000012 
+ 00029021  0x00005a5b istore  0x00000001 , 0x00000012 
+ 00029022  0x00005a5c rshift8  0x0000003f , 0x0000003f 
+ 00029023  0x00005a5d add  0x00000002 , 0x00000005 , 0x00000012 
+ 00029024  0x00005a5e istore  0x00000001 , 0x00000012 
+ 00029025  0x00005a5f increase  0x00000003 , 0x00000011 
+ 00029026  0x00005a60 deposit  0x00000011 
+ 00029027  0x00005a61 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00029028  0x00005a62 istore  0x00000001 , 0x00000012 
+ 00029029  0x00005a63 rshift8  0x0000003f , 0x0000003f 
+ 00029030  0x00005a64 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00029031  0x00005a65 istore  0x00000001 , 0x00000012 
+ 00029032  0x00005a66 increase  0x00000005 , 0x00000011 
+ 00029033  0x00005a67 deposit  0x00000011 
+ 00029034  0x00005a68 store  0x00000002 , 0x000002dc 
+ 00029035  0x00005a6a setarg  0x00000007 
+ 00029036  0x00005a6b istore  0x00000001 , 0x00000002 
+ 00029037  0x00005a6d fetch  0x00000002 , 0x000004b0 
+ 00029038  0x00005a6e add  0x00000002 , 0x00000001 , 0x00000012 
+ 00029039  0x00005a6f istore  0x00000002 , 0x00000012 
+ 00029040  0x00005a70 rtn 
+ 00029041  0x00005a73 force  0x00000000 , 0x0000003f 
+ 00029042  0x00005a74 istore  0x00000001 , 0x00000005 
+ 00029043  0x00005a75 increase  0xffffffff , 0x00000005 
+ 00029044  0x00005a76 fetcht  0x00000002 , 0x000002da 
+ 00029045  0x00005a77 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00029046  0x00005a78 isub  0x00000005 , 0x0000003f 
+ 00029047  0x00005a79 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00029048  0x00005a7a iforce  0x00000011 
+ 00029049  0x00005a7c deposit  0x00000011 
+ 00029050  0x00005a7d add  0x00000002 , 0x00000009 , 0x00000012 
+ 00029051  0x00005a7e istore  0x00000001 , 0x00000012 
+ 00029052  0x00005a7f rshift8  0x0000003f , 0x0000003f 
+ 00029053  0x00005a80 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00029054  0x00005a81 istore  0x00000001 , 0x00000012 
+ 00029055  0x00005a83 increase  0x00000003 , 0x00000011 
+ 00029056  0x00005a84 deposit  0x00000011 
+ 00029057  0x00005a85 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00029058  0x00005a86 istore  0x00000001 , 0x00000012 
+ 00029059  0x00005a87 rshift8  0x0000003f , 0x0000003f 
+ 00029060  0x00005a88 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00029061  0x00005a89 istore  0x00000001 , 0x00000012 
+ 00029062  0x00005a8a increase  0x00000003 , 0x00000011 
+ 00029063  0x00005a8b deposit  0x00000011 
+ 00029064  0x00005a8c add  0x00000002 , 0x00000004 , 0x00000012 
+ 00029065  0x00005a8d istore  0x00000001 , 0x00000012 
+ 00029066  0x00005a8e rshift8  0x0000003f , 0x0000003f 
+ 00029067  0x00005a8f add  0x00000002 , 0x00000003 , 0x00000012 
+ 00029068  0x00005a90 istore  0x00000001 , 0x00000012 
+ 00029069  0x00005a91 increase  0x00000005 , 0x00000011 
+ 00029070  0x00005a92 deposit  0x00000011 
+ 00029071  0x00005a93 store  0x00000002 , 0x000002dc 
+ 00029072  0x00005a94 setarg  0x00000036 
+ 00029073  0x00005a95 add  0x00000002 , 0x00000007 , 0x00000012 
+ 00029074  0x00005a96 istore  0x00000001 , 0x00000012 
+ 00029075  0x00005a97 setarg  0x00000007 
+ 00029076  0x00005a98 istore  0x00000001 , 0x00000002 
+ 00029077  0x00005a99 fetch  0x00000002 , 0x000004b0 
+ 00029078  0x00005a9a add  0x00000002 , 0x00000001 , 0x00000012 
+ 00029079  0x00005a9b istore  0x00000002 , 0x00000012 
+ 00029080  0x00005a9c rtn 
+ 00029081  0x00005a9e copy  0x00000006 , 0x0000000b 
+ 00029082  0x00005a9f ifetch  0x00000001 , 0x00000006 
+ 00029083  0x00005aa0 and  0x0000003f , 0x00000007 , 0x00000039 
+ 00029084  0x00005aa1 rshift3  0x0000003f , 0x0000003f 
+ 00029085  0x00005aa2 beq  0x00000006 , 0x000071a2 
+ 00029086  0x00005aa3 beq  0x00000001 , 0x000072e0 
+ 00029087  0x00005aa4 beq  0x00000004 , 0x000072e5 
+ 00029088  0x00005aa5 beq  0x00000005 , 0x000072e3 
+ 00029089  0x00005aa6 branch  0x000072de 
+ 00029090  0x00005aa8 call  0x000071a4 
+ 00029091  0x00005aa9 branch  0x000072de 
+ 00029092  0x00005aab deposit  0x00000039 
+ 00029093  0x00005aac beq  0x00000005 , 0x000071a9 
+ 00029094  0x00005aad beq  0x00000006 , 0x000071ac 
+ 00029095  0x00005aae force  0x00000003 , 0x00000039 
+ 00029096  0x00005aaf branch  0x000072ef 
+ 00029097  0x00005ab1 ifetch  0x00000001 , 0x00000006 
+ 00029098  0x00005ab2 increase  0x00000002 , 0x0000003f 
+ 00029099  0x00005ab3 rtn 
+ 00029100  0x00005ab5 ifetch  0x00000002 , 0x00000006 
+ 00029101  0x00005ab6 byteswap  0x0000003f , 0x0000003f 
+ 00029102  0x00005ab7 increase  0x00000003 , 0x0000003f 
+ 00029103  0x00005ab8 rtn 
+ 00029104  0x00005abb call  0x000052de 
+ 00029105  0x00005abc copy  0x0000003f , 0x00000005 
+ 00029106  0x00005abd setarg  0x00000006 
+ 00029107  0x00005abe istore  0x00000001 , 0x00000005 
+ 00029108  0x00005abf setarg  0x0000006e 
+ 00029109  0x00005ac0 istore  0x00000002 , 0x00000005 
+ 00029110  0x00005ac1 setarg  0x00000f00 
+ 00029111  0x00005ac2 istore  0x00000002 , 0x00000005 
+ 00029112  0x00005ac3 setarg  0x001a0535 
+ 00029113  0x00005ac4 istore  0x00000003 , 0x00000005 
+ 00029114  0x00005ac5 setarg  0x00000111 
+ 00029115  0x00005ac6 lshift16  0x0000003f , 0x0000003f 
+ 00029116  0x00005ac7 istore  0x00000004 , 0x00000005 
+ 00029117  0x00005ac8 setarg  0x00002600 
+ 00029118  0x00005ac9 istore  0x00000002 , 0x00000005 
+ 00029119  0x00005aca setarg  0x00000335 
+ 00029120  0x00005acb istore  0x00000002 , 0x00000005 
+ 00029121  0x00005acc setarg  0x00000009 
+ 00029122  0x00005acd istore  0x00000002 , 0x00000005 
+ 00029123  0x00005ace setarg  0x00000004 
+ 00029124  0x00005acf istore  0x00000002 , 0x00000005 
+ 00029125  0x00005ad0 jam  0x00000014 , 0x000002dc 
+ 00029126  0x00005ad1 rtn 
+ 00029127  0x00005adc copy  0x00000006 , 0x00000002 
+ 00029128  0x00005add fetch  0x00000002 , 0x000004b0 
+ 00029129  0x00005ade beq  0x0000006e , 0x000071cb 
+ 00029130  0x00005ae1 branch  0x000071d4 
+ 00029131  0x00005ae4 copy  0x00000002 , 0x00000006 
+ 00029132  0x00005ae5 increase  0xfffffffd , 0x0000000b 
+ 00029133  0x00005ae6 copy  0x0000000b , 0x0000003f 
+ 00029134  0x00005ae7 beq  0x00000002 , 0x000071d4 
+ 00029135  0x00005ae8 call  0x000071d5 
+ 00029136  0x00005ae9 rtn  0x00000028 
+ 00029137  0x00005aea store  0x00000001 , 0x00004752 
+ 00029138  0x00005aeb jam  0x00000017 , 0x000002ec 
+ 00029139  0x00005aec rtn 
+ 00029140  0x00005aef rtn 
+ 00029141  0x00005af6 enable  0x00000028 
+ 00029142  0x00005af7 copy  0x0000003f , 0x00000039 
+ 00029143  0x00005af8 arg  0x00000400 , 0x00000002 
+ 00029144  0x00005afa ifetch  0x00000002 , 0x00000006 
+ 00029145  0x00005afb isub  0x00000002 , 0x0000003e 
+ 00029146  0x00005afc branch  0x000071de , 0x00000005 
+ 00029147  0x00005afd increase  0xffffffff , 0x00000006 
+ 00029148  0x00005afe loop  0x000071d8 
+ 00029149  0x00005aff rtn 
+ 00029150  0x00005b01 arg  0x00000300 , 0x00000002 
+ 00029151  0x00005b03 ifetch  0x00000002 , 0x00000006 
+ 00029152  0x00005b04 isub  0x00000002 , 0x0000003e 
+ 00029153  0x00005b05 branch  0x000071e5 , 0x00000005 
+ 00029154  0x00005b06 increase  0xffffffff , 0x00000006 
+ 00029155  0x00005b07 loop  0x000071df 
+ 00029156  0x00005b08 rtn 
+ 00029157  0x00005b0a ifetch  0x00000001 , 0x00000006 
+ 00029158  0x00005b0b ifetch  0x00000001 , 0x00000006 
+ 00029159  0x00005b0c disable  0x00000028 
+ 00029160  0x00005b0d rtn 
+ 00029161  0x00005b19 call  0x000072a4 
+ 00029162  0x00005b1a branch  0x00007236 , 0x00000005 
+ 00029163  0x00005b1b force  0x00000000 , 0x00000012 
+ 00029164  0x00005b1c ifetch  0x00000001 , 0x00000006 
+ 00029165  0x00005b1d increase  0xffffffff , 0x00000011 
+ 00029166  0x00005b1e increase  0xffffffff , 0x0000000b 
+ 00029167  0x00005b1f compare  0x00000018 , 0x0000003f , 0x000000f8 
+ 00029168  0x00005b20 nbranch  0x00007230 , 0x00000001 
+ 00029169  0x00005b21 compare  0x00000004 , 0x0000003f , 0x00000007 
+ 00029170  0x00005b22 nbranch  0x000071f8 , 0x00000001 
+ 00029171  0x00005b23 force  0x00000001 , 0x00000012 
+ 00029172  0x00005b25 increase  0x00000002 , 0x00000006 
+ 00029173  0x00005b26 increase  0xfffffffe , 0x00000011 
+ 00029174  0x00005b27 increase  0xfffffffe , 0x0000000b 
+ 00029175  0x00005b28 branch  0x000071fd 
+ 00029176  0x00005b2a compare  0x00000002 , 0x0000003f , 0x00000007 
+ 00029177  0x00005b2b nbranch  0x000071fb , 0x00000001 
+ 00029178  0x00005b2c branch  0x000071f4 
+ 00029179  0x00005b2e compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00029180  0x00005b2f nbranch  0x00007230 , 0x00000001 
+ 00029181  0x00005b31 ifetch  0x00000001 , 0x00000006 
+ 00029182  0x00005b32 increase  0xffffffff , 0x00000011 
+ 00029183  0x00005b33 increase  0xffffffff , 0x0000000b 
+ 00029184  0x00005b34 bne  0x00000001 , 0x00007207 
+ 00029185  0x00005b35 ifetch  0x00000001 , 0x00000006 
+ 00029186  0x00005b36 increase  0xffffffff , 0x00000011 
+ 00029187  0x00005b37 increase  0xffffffff , 0x0000000b 
+ 00029188  0x00005b38 bne  0x00000000 , 0x00007230 
+ 00029189  0x00005b39 jam  0x000000ff , 0x000004c3 
+ 00029190  0x00005b3a branch  0x00007230 
+ 00029191  0x00005b3c bne  0x00000000 , 0x00007230 
+ 00029192  0x00005b3d ifetch  0x00000001 , 0x00000006 
+ 00029193  0x00005b3e increase  0xffffffff , 0x00000011 
+ 00029194  0x00005b3f increase  0xffffffff , 0x0000000b 
+ 00029195  0x00005b40 bne  0x00000003 , 0x00007230 
+ 00029196  0x00005b41 copy  0x00000012 , 0x0000003e 
+ 00029197  0x00005b42 branch  0x00007210 , 0x00000005 
+ 00029198  0x00005b43 increase  0xfffffff4 , 0x00000006 
+ 00029199  0x00005b44 increase  0xfffffff4 , 0x0000000b 
+ 00029200  0x00005b46 force  0x000000ff , 0x0000003f 
+ 00029201  0x00005b47 store  0x00000001 , 0x000004c4 
+ 00029202  0x00005b48 ifetch  0x00000001 , 0x00000006 
+ 00029203  0x00005b49 increase  0xffffffff , 0x00000011 
+ 00029204  0x00005b4a increase  0xffffffff , 0x0000000b 
+ 00029205  0x00005b4b compare  0x00000008 , 0x0000003f , 0x000000f8 
+ 00029206  0x00005b4c nbranch  0x00007230 , 0x00000001 
+ 00029207  0x00005b4d compare  0x00000000 , 0x0000003f , 0x00000007 
+ 00029208  0x00005b4e branch  0x0000722d , 0x00000001 
+ 00029209  0x00005b4f compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00029210  0x00005b50 branch  0x0000722a , 0x00000001 
+ 00029211  0x00005b51 compare  0x00000002 , 0x0000003f , 0x00000007 
+ 00029212  0x00005b52 branch  0x00007227 , 0x00000001 
+ 00029213  0x00005b53 compare  0x00000003 , 0x0000003f , 0x00000007 
+ 00029214  0x00005b54 branch  0x00007224 , 0x00000001 
+ 00029215  0x00005b55 compare  0x00000004 , 0x0000003f , 0x00000007 
+ 00029216  0x00005b56 nbranch  0x00007230 , 0x00000001 
+ 00029217  0x00005b57 increase  0x00000008 , 0x00000006 
+ 00029218  0x00005b58 increase  0xfffffff8 , 0x00000011 
+ 00029219  0x00005b59 increase  0xfffffff8 , 0x0000000b 
+ 00029220  0x00005b5b increase  0x00000004 , 0x00000006 
+ 00029221  0x00005b5c increase  0xfffffffc , 0x00000011 
+ 00029222  0x00005b5d increase  0xfffffffc , 0x0000000b 
+ 00029223  0x00005b5f increase  0x00000002 , 0x00000006 
+ 00029224  0x00005b60 increase  0xfffffffe , 0x00000011 
+ 00029225  0x00005b61 increase  0xfffffffe , 0x0000000b 
+ 00029226  0x00005b63 increase  0x00000001 , 0x00000006 
+ 00029227  0x00005b64 increase  0xffffffff , 0x00000011 
+ 00029228  0x00005b65 increase  0xffffffff , 0x0000000b 
+ 00029229  0x00005b67 ifetch  0x00000001 , 0x00000006 
+ 00029230  0x00005b68 increase  0xffffffff , 0x00000011 
+ 00029231  0x00005b69 increase  0xffffffff , 0x0000000b 
+ 00029232  0x00005b6b increase  0xffffffff , 0x0000000b 
+ 00029233  0x00005b6c increase  0xffffffff , 0x00000011 
+ 00029234  0x00005b6d branch  0x00007230 , 0x00000002 
+ 00029235  0x00005b6e increase  0x00000001 , 0x0000000b 
+ 00029236  0x00005b6f force  0x00000001 , 0x0000003f 
+ 00029237  0x00005b70 rtn ,
+ 00029238  0x00005b72 force  0x00000000 , 0x0000003f 
+ 00029239  0x00005b73 rtn ,
+ 00029240  0x00005b76 setarg  0x00000200 
+ 00029241  0x00005b77 store  0x00000002 , 0x000004b6 
+ 00029242  0x00005b78 branch  0x00007243 
+ 00029243  0x00005b7a setarg  0x00000400 
+ 00029244  0x00005b7b store  0x00000002 , 0x000004b6 
+ 00029245  0x00005b7c branch  0x00007243 
+ 00029246  0x00005b7e setarg  0x00000600 
+ 00029247  0x00005b7f store  0x00000002 , 0x000004b6 
+ 00029248  0x00005b80 branch  0x00007243 
+ 00029249  0x00005b82 setarg  0x00000300 
+ 00029250  0x00005b83 store  0x00000002 , 0x000004b6 
+ 00029251  0x00005b85 call  0x000052de 
+ 00029252  0x00005b86 istore  0x00000001 , 0x00000005 
+ 00029253  0x00005b87 fetch  0x00000002 , 0x000004b0 
+ 00029254  0x00005b88 istore  0x00000002 , 0x00000005 
+ 00029255  0x00005b89 setarg  0x00000200 
+ 00029256  0x00005b8a istore  0x00000002 , 0x00000005 
+ 00029257  0x00005b8b fetch  0x00000002 , 0x000004b6 
+ 00029258  0x00005b8c istore  0x00000002 , 0x00000005 
+ 00029259  0x00005b8d jam  0x00000007 , 0x000002dc 
+ 00029260  0x00005b8e rtn 
+ 00029261  0x00005b91 force  0x00000000 , 0x00000002 
+ 00029262  0x00005b92 arg  0x000004a9 , 0x00000005 
+ 00029263  0x00005b93 call  0x000072a4 
+ 00029264  0x00005b94 branch  0x000072a2 , 0x00000005 
+ 00029265  0x00005b96 ifetch  0x00000001 , 0x00000006 
+ 00029266  0x00005b97 increase  0xffffffff , 0x00000011 
+ 00029267  0x00005b98 increase  0xffffffff , 0x0000000b 
+ 00029268  0x00005b99 compare  0x00000018 , 0x0000003f , 0x000000f8 
+ 00029269  0x00005b9a nbranch  0x000072a2 , 0x00000001 
+ 00029270  0x00005b9b compare  0x00000004 , 0x0000003f , 0x00000007 
+ 00029271  0x00005b9c nbranch  0x0000726e , 0x00000001 
+ 00029272  0x00005b9d force  0x00000001 , 0x00000002 
+ 00029273  0x00005b9f ifetch  0x00000001 , 0x00000006 
+ 00029274  0x00005ba0 increase  0xffffffff , 0x00000011 
+ 00029275  0x00005ba1 increase  0xffffffff , 0x0000000b 
+ 00029276  0x00005ba2 bne  0x00000000 , 0x00007262 
+ 00029277  0x00005ba3 ifetch  0x00000001 , 0x00000006 
+ 00029278  0x00005ba4 increase  0xffffffff , 0x00000011 
+ 00029279  0x00005ba5 increase  0xffffffff , 0x0000000b 
+ 00029280  0x00005ba6 beq  0x00000000 , 0x00007273 
+ 00029281  0x00005ba7 branch  0x00007265 
+ 00029282  0x00005ba9 increase  0x00000001 , 0x00000006 
+ 00029283  0x00005baa increase  0xffffffff , 0x00000011 
+ 00029284  0x00005bab increase  0xffffffff , 0x0000000b 
+ 00029285  0x00005bad increase  0x00000002 , 0x00000006 
+ 00029286  0x00005bae increase  0xfffffffe , 0x00000011 
+ 00029287  0x00005baf increase  0xfffffffe , 0x0000000b 
+ 00029288  0x00005bb0 compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00029289  0x00005bb1 branch  0x0000729d , 0x00000001 
+ 00029290  0x00005bb2 increase  0x0000000c , 0x00000006 
+ 00029291  0x00005bb3 increase  0xfffffff4 , 0x00000011 
+ 00029292  0x00005bb4 increase  0xfffffff4 , 0x0000000b 
+ 00029293  0x00005bb5 branch  0x0000729d 
+ 00029294  0x00005bb7 compare  0x00000002 , 0x0000003f , 0x00000007 
+ 00029295  0x00005bb8 nbranch  0x00007271 , 0x00000001 
+ 00029296  0x00005bb9 branch  0x00007259 
+ 00029297  0x00005bbb compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00029298  0x00005bbc nbranch  0x000072a2 , 0x00000001 
+ 00029299  0x00005bbe ifetch  0x00000002 , 0x00000006 
+ 00029300  0x00005bbf increase  0xfffffffe , 0x00000011 
+ 00029301  0x00005bc0 increase  0xfffffffe , 0x0000000b 
+ 00029302  0x00005bc1 istore  0x00000002 , 0x00000005 
+ 00029303  0x00005bc3 compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00029304  0x00005bc4 branch  0x0000729d , 0x00000001 
+ 00029305  0x00005bc5 copy  0x00000006 , 0x00000002 
+ 00029306  0x00005bc6 ifetch  0x00000001 , 0x00000006 
+ 00029307  0x00005bc7 bne  0x00000000 , 0x00007292 
+ 00029308  0x00005bc8 ifetch  0x00000001 , 0x00000006 
+ 00029309  0x00005bc9 bne  0x00000000 , 0x00007292 
+ 00029310  0x00005bca ifetch  0x00000001 , 0x00000006 
+ 00029311  0x00005bcb bne  0x00000010 , 0x00007292 
+ 00029312  0x00005bcc ifetch  0x00000001 , 0x00000006 
+ 00029313  0x00005bcd bne  0x00000000 , 0x00007292 
+ 00029314  0x00005bce ifetch  0x00000001 , 0x00000006 
+ 00029315  0x00005bcf bne  0x00000080 , 0x00007292 
+ 00029316  0x00005bd0 ifetch  0x00000001 , 0x00000006 
+ 00029317  0x00005bd1 bne  0x00000000 , 0x00007292 
+ 00029318  0x00005bd2 ifetch  0x00000001 , 0x00000006 
+ 00029319  0x00005bd3 bne  0x00000000 , 0x00007292 
+ 00029320  0x00005bd4 ifetch  0x00000001 , 0x00000006 
+ 00029321  0x00005bd5 bne  0x00000080 , 0x00007292 
+ 00029322  0x00005bd6 ifetch  0x00000001 , 0x00000006 
+ 00029323  0x00005bd7 bne  0x0000005f , 0x00007292 
+ 00029324  0x00005bd8 ifetch  0x00000001 , 0x00000006 
+ 00029325  0x00005bd9 bne  0x0000009b , 0x00007292 
+ 00029326  0x00005bda ifetch  0x00000001 , 0x00000006 
+ 00029327  0x00005bdb bne  0x00000034 , 0x00007292 
+ 00029328  0x00005bdc ifetch  0x00000001 , 0x00000006 
+ 00029329  0x00005bdd beq  0x000000fb , 0x0000729b 
+ 00029330  0x00005bdf copy  0x00000002 , 0x00000006 
+ 00029331  0x00005be1 increase  0x0000000c , 0x00000006 
+ 00029332  0x00005be2 force  0x00000000 , 0x00000007 
+ 00029333  0x00005be3 force  0x00000000 , 0x00000002 
+ 00029334  0x00005be4 branch  0x0000729b 
+ 00029335  0x00005be6 ifetch  0x00000001 , 0x00000006 
+ 00029336  0x00005be7 increase  0xffffffff , 0x00000011 
+ 00029337  0x00005be8 increase  0xffffffff , 0x0000000b 
+ 00029338  0x00005be9 branch  0x00007277 
+ 00029339  0x00005beb increase  0xfffffff4 , 0x0000000b 
+ 00029340  0x00005bec increase  0xfffffff4 , 0x00000011 
+ 00029341  0x00005bee compare  0x00000000 , 0x00000011 , 0x000000ff 
+ 00029342  0x00005bef nbranch  0x00007251 , 0x00000001 
+ 00029343  0x00005bf0 force  0x00000000 , 0x0000003f 
+ 00029344  0x00005bf1 istore  0x00000002 , 0x00000005 
+ 00029345  0x00005bf2 rtn ,
+ 00029346  0x00005bf4 arg  0x000000ff , 0x00000002 
+ 00029347  0x00005bf5 rtn 
+ 00029348  0x00005c00 ifetch  0x00000001 , 0x00000006 
+ 00029349  0x00005c01 increase  0xffffffff , 0x0000000b 
+ 00029350  0x00005c02 compare  0x00000030 , 0x0000003f , 0x000000f8 
+ 00029351  0x00005c03 nbranch  0x000072b9 , 0x00000001 
+ 00029352  0x00005c04 compare  0x00000007 , 0x0000003f , 0x00000007 
+ 00029353  0x00005c05 branch  0x000072b2 , 0x00000001 
+ 00029354  0x00005c06 compare  0x00000006 , 0x0000003f , 0x00000007 
+ 00029355  0x00005c07 branch  0x000072b4 , 0x00000001 
+ 00029356  0x00005c08 compare  0x00000005 , 0x0000003f , 0x00000007 
+ 00029357  0x00005c09 nbranch  0x000072b9 , 0x00000001 
+ 00029358  0x00005c0a ifetch  0x00000001 , 0x00000006 
+ 00029359  0x00005c0b copy  0x0000003f , 0x00000011 
+ 00029360  0x00005c0c increase  0xffffffff , 0x0000000b 
+ 00029361  0x00005c0d branch  0x000072b7 
+ 00029362  0x00005c0f increase  0x00000002 , 0x00000006 
+ 00029363  0x00005c10 increase  0xfffffffe , 0x0000000b 
+ 00029364  0x00005c12 ifetch  0x00000002 , 0x00000006 
+ 00029365  0x00005c13 byteswap  0x0000003f , 0x00000011 
+ 00029366  0x00005c14 increase  0xfffffffe , 0x0000000b 
+ 00029367  0x00005c17 force  0x00000001 , 0x0000003f 
+ 00029368  0x00005c18 rtn 
+ 00029369  0x00005c1b force  0x00000000 , 0x0000003f 
+ 00029370  0x00005c1c rtn 
+ 00029371  0x00005c27 setarg  0x00000003 
+ 00029372  0x00005c28 store  0x00000001 , 0x000004af 
+ 00029373  0x00005c29 branch  0x000072c0 
+ 00029374  0x00005c2b setarg  0x00000007 
+ 00029375  0x00005c2c store  0x00000001 , 0x000004af 
+ 00029376  0x00005c2e call  0x000052de 
+ 00029377  0x00005c2f fetch  0x00000001 , 0x000004af 
+ 00029378  0x00005c30 istore  0x00000001 , 0x00000005 
+ 00029379  0x00005c31 copy  0x0000003f , 0x00000012 
+ 00029380  0x00005c32 fetch  0x00000002 , 0x000004b0 
+ 00029381  0x00005c33 istore  0x00000002 , 0x00000005 
+ 00029382  0x00005c35 setarg  0x00000500 
+ 00029383  0x00005c36 istore  0x00000002 , 0x00000005 
+ 00029384  0x00005c37 compare  0x00000005 , 0x00000012 , 0x000000ff 
+ 00029385  0x00005c38 branch  0x000072d0 , 0x00000001 
+ 00029386  0x00005c39 compare  0x00000007 , 0x00000012 , 0x000000ff 
+ 00029387  0x00005c3a branch  0x000072d0 , 0x00000001 
+ 00029388  0x00005c3b setarg  0x00000000 
+ 00029389  0x00005c3c istore  0x00000003 , 0x00000005 
+ 00029390  0x00005c3d istore  0x00000002 , 0x00000005 
+ 00029391  0x00005c3e branch  0x000072d4 
+ 00029392  0x00005c47 setarg  0x00350200 
+ 00029393  0x00005c48 istore  0x00000003 , 0x00000005 
+ 00029394  0x00005c4d setarg  0x00000000 
+ 00029395  0x00005c4e istore  0x00000002 , 0x00000005 
+ 00029396  0x00005c50 jam  0x0000000a , 0x000002dc 
+ 00029397  0x00005c51 rtn 
+ 00029398  0x00005c54 copy  0x00000006 , 0x0000000b 
+ 00029399  0x00005c55 ifetch  0x00000001 , 0x00000006 
+ 00029400  0x00005c56 and  0x0000003f , 0x00000007 , 0x00000039 
+ 00029401  0x00005c57 rshift3  0x0000003f , 0x0000003f 
+ 00029402  0x00005c58 beq  0x00000006 , 0x000072e5 
+ 00029403  0x00005c59 beq  0x00000001 , 0x000072e0 
+ 00029404  0x00005c5a beq  0x00000004 , 0x000072e5 
+ 00029405  0x00005c5b beq  0x00000005 , 0x000072e3 
+ 00029406  0x00005c5d copy  0x0000000b , 0x00000006 
+ 00029407  0x00005c5e rtn 
+ 00029408  0x00005c60 call  0x00007301 
+ 00029409  0x00005c61 increase  0x00000001 , 0x0000003f 
+ 00029410  0x00005c62 branch  0x000072de 
+ 00029411  0x00005c64 force  0x00000002 , 0x0000003f 
+ 00029412  0x00005c65 branch  0x000072de 
+ 00029413  0x00005c67 call  0x000072f7 
+ 00029414  0x00005c68 increase  0x00000002 , 0x0000003f 
+ 00029415  0x00005c69 branch  0x000072de 
+ 00029416  0x00005c6c ifetch  0x00000001 , 0x00000006 
+ 00029417  0x00005c6d and  0x0000003f , 0x00000007 , 0x00000039 
+ 00029418  0x00005c6e rshift3  0x0000003f , 0x0000003f 
+ 00029419  0x00005c6f beq  0x00000006 , 0x000072f7 
+ 00029420  0x00005c70 beq  0x00000001 , 0x000072ef 
+ 00029421  0x00005c71 beq  0x00000005 , 0x000072fc 
+ 00029422  0x00005c72 rtn 
+ 00029423  0x00005c74 call  0x00007301 
+ 00029424  0x00005c75 iforce  0x00000039 
+ 00029425  0x00005c76 force  0x00000000 , 0x00000002 
+ 00029426  0x00005c78 lshift8  0x00000002 , 0x00000002 
+ 00029427  0x00005c79 ifetch  0x00000001 , 0x00000006 
+ 00029428  0x00005c7a ior  0x00000002 , 0x00000002 
+ 00029429  0x00005c7b loop  0x000072f2 
+ 00029430  0x00005c7c rtn 
+ 00029431  0x00005c7e deposit  0x00000039 
+ 00029432  0x00005c7f beq  0x00000005 , 0x000072fc 
+ 00029433  0x00005c80 beq  0x00000006 , 0x000072fe 
+ 00029434  0x00005c81 force  0x00000003 , 0x00000039 
+ 00029435  0x00005c82 branch  0x000072ef 
+ 00029436  0x00005c84 ifetch  0x00000001 , 0x00000006 
+ 00029437  0x00005c85 rtn 
+ 00029438  0x00005c87 ifetch  0x00000002 , 0x00000006 
+ 00029439  0x00005c88 byteswap  0x0000003f , 0x0000003f 
+ 00029440  0x00005c89 rtn 
+ 00029441  0x00005c8d force  0x00000001 , 0x0000003f 
+ 00029442  0x00005c8e copy  0x00000039 , 0x0000003e 
+ 00029443  0x00005c8f rtn  0x00000005 
+ 00029444  0x00005c91 lshift  0x0000003f , 0x0000003f 
+ 00029445  0x00005c92 loop  0x00007304 
+ 00029446  0x00005c93 rtn 
+ 00029447  0x00005c99 iforce  0x00000013 
+ 00029448  0x00005c9a set1  0x00000025 , 0x00000000 
+ 00029449  0x00005c9b bpatch  0x000000e9 , 0x0000403d 
+ 00029450  0x00005c9c force  0x00000000 , 0x00000007 
+ 00029451  0x00005c9d fetch  0x00000002 , 0x00004759 
+ 00029452  0x00005c9e iforce  0x00000006 
+ 00029453  0x00005c9f arg  0x000004c5 , 0x00000005 
+ 00029454  0x00005ca1 disable  0x00000028 
+ 00029455  0x00005ca2 ifetch  0x00000001 , 0x00000006 
+ 00029456  0x00005ca3 rtn  0x00000034 
+ 00029457  0x00005ca4 iforce  0x00000039 
+ 00029458  0x00005ca6 ifetch  0x00000002 , 0x00000006 
+ 00029459  0x00005ca7 isub  0x00000013 , 0x0000003e 
+ 00029460  0x00005ca8 nbranch  0x00007316 , 0x00000005 
+ 00029461  0x00005ca9 enable  0x00000028 
+ 00029462  0x00005cab loop  0x00007312 
+ 00029463  0x00005cac ifetch  0x00000004 , 0x00000006 
+ 00029464  0x00005cad nbranch  0x0000731b , 0x00000028 
+ 00029465  0x00005cae istore  0x00000004 , 0x00000005 
+ 00029466  0x00005caf increase  0x00000001 , 0x00000007 
+ 00029467  0x00005cb1 call  0x000072e8 
+ 00029468  0x00005cb2 iadd  0x00000006 , 0x00000006 
+ 00029469  0x00005cb3 branch  0x0000730e 
+ 00029470  0x00005cb7 fetch  0x00000002 , 0x00004759 
+ 00029471  0x00005cb8 iforce  0x00000006 
+ 00029472  0x00005cba ifetch  0x00000001 , 0x00000006 
+ 00029473  0x00005cbb rtn  0x00000034 
+ 00029474  0x00005cbc lshift  0x0000003f , 0x0000003f 
+ 00029475  0x00005cbd iadd  0x00000006 , 0x00000006 
+ 00029476  0x00005cbe ifetch  0x00000004 , 0x00000006 
+ 00029477  0x00005cbf isub  0x00000002 , 0x0000003e 
+ 00029478  0x00005cc0 rtn  0x00000005 
+ 00029479  0x00005cc1 call  0x000072e8 
+ 00029480  0x00005cc2 iadd  0x00000006 , 0x00000006 
+ 00029481  0x00005cc3 branch  0x00007320 
+ 00029482  0x00005ccb set1  0x00000025 , 0x00000000 
+ 00029483  0x00005ccc bpatch  0x000000ea , 0x0000403d 
+ 00029484  0x00005ccd fetch  0x00000002 , 0x00004759 
+ 00029485  0x00005cce iforce  0x00000006 
+ 00029486  0x00005cd0 ifetch  0x00000001 , 0x00000006 
+ 00029487  0x00005cd1 branch  0x0000734b , 0x00000034 
+ 00029488  0x00005cd2 iforce  0x00000039 
+ 00029489  0x00005cd4 ifetch  0x00000002 , 0x00000006 
+ 00029490  0x00005cd5 isub  0x00000013 , 0x0000003e 
+ 00029491  0x00005cd6 branch  0x00007339 , 0x00000005 
+ 00029492  0x00005cd7 loop  0x00007331 
+ 00029493  0x00005cd8 increase  0x00000004 , 0x00000006 
+ 00029494  0x00005cd9 call  0x000072e8 
+ 00029495  0x00005cda iadd  0x00000006 , 0x00000006 
+ 00029496  0x00005cdb branch  0x0000732e 
+ 00029497  0x00005cdd increase  0xffffffff , 0x00000039 
+ 00029498  0x00005cde lshift  0x00000039 , 0x0000003f 
+ 00029499  0x00005cdf iadd  0x00000006 , 0x00000006 
+ 00029500  0x00005ce0 increase  0x00000004 , 0x00000006 
+ 00029501  0x00005ce1 call  0x000072e8 
+ 00029502  0x00005ce2 iadd  0x00000006 , 0x00000002 
+ 00029503  0x00005ce4 increase  0x00000001 , 0x00000006 
+ 00029504  0x00005ce5 ifetch  0x00000002 , 0x00000006 
+ 00029505  0x00005ce6 isub  0x00000012 , 0x0000000b 
+ 00029506  0x00005ce8 setflag  0x00000005 , 0x00000000 , 0x0000003f 
+ 00029507  0x00005ce9 copy  0x0000000b , 0x0000000b 
+ 00029508  0x00005cea rtn  0x00000005 
+ 00029509  0x00005ceb call  0x000072d6 
+ 00029510  0x00005cec iadd  0x00000006 , 0x00000006 
+ 00029511  0x00005ced deposit  0x00000002 
+ 00029512  0x00005cee isub  0x00000006 , 0x0000003e 
+ 00029513  0x00005cef branch  0x0000734b , 0x00000005 
+ 00029514  0x00005cf0 branch  0x0000733f 
+ 00029515  0x00005cf2 force  0x00000000 , 0x00000006 
+ 00029516  0x00005cf3 force  0x00000000 , 0x0000003f 
+ 00029517  0x00005cf4 rtn 
+ 00029518  0x00005cfb set1  0x00000025 , 0x00000000 
+ 00029519  0x00005cfc bpatch  0x000000eb , 0x0000403d 
+ 00029520  0x00005cfd fetch  0x00000002 , 0x00004759 
+ 00029521  0x00005cfe iforce  0x00000006 
+ 00029522  0x00005d00 ifetch  0x00000001 , 0x00000006 
+ 00029523  0x00005d01 branch  0x00007368 , 0x00000034 
+ 00029524  0x00005d02 lshift  0x0000003f , 0x0000003f 
+ 00029525  0x00005d03 iadd  0x00000006 , 0x00000006 
+ 00029526  0x00005d04 ifetch  0x00000004 , 0x00000006 
+ 00029527  0x00005d05 isub  0x00000002 , 0x0000003e 
+ 00029528  0x00005d06 branch  0x0000735c , 0x00000005 
+ 00029529  0x00005d07 call  0x000072e8 
+ 00029530  0x00005d08 iadd  0x00000006 , 0x00000006 
+ 00029531  0x00005d09 branch  0x00007352 
+ 00029532  0x00005d0b call  0x000072e8 
+ 00029533  0x00005d0c iadd  0x00000006 , 0x00000002 
+ 00029534  0x00005d0e increase  0x00000001 , 0x00000006 
+ 00029535  0x00005d0f ifetch  0x00000002 , 0x00000006 
+ 00029536  0x00005d10 isub  0x00000012 , 0x0000003e 
+ 00029537  0x00005d11 rtn  0x00000005 
+ 00029538  0x00005d12 call  0x000072d6 
+ 00029539  0x00005d13 iadd  0x00000006 , 0x00000006 
+ 00029540  0x00005d14 deposit  0x00000002 
+ 00029541  0x00005d15 isub  0x00000006 , 0x0000003e 
+ 00029542  0x00005d16 branch  0x00007368 , 0x00000005 
+ 00029543  0x00005d17 branch  0x0000735e 
+ 00029544  0x00005d19 force  0x00000000 , 0x00000006 
+ 00029545  0x00005d1a rtn 
+ 00029546  0x00005d1e call  0x0000737d 
+ 00029547  0x00005d1f arg  0x0000051f , 0x00000006 
+ 00029548  0x00005d20 arg  0x0000050f , 0x00000005 
+ 00029549  0x00005d21 branch  0x00007e35 
+ 00029550  0x00005d25 disable  0x00000028 
+ 00029551  0x00005d26 call  0x00007474 
+ 00029552  0x00005d27 arg  0x000004ef , 0x00000006 
+ 00029553  0x00005d28 arg  0x0000052f , 0x00000005 
+ 00029554  0x00005d29 force  0x0000000f , 0x00000039 
+ 00029555  0x00005d2a call  0x00007e45 
+ 00029556  0x00005d2b ifetch  0x00000001 , 0x00000006 
+ 00029557  0x00005d2c xor_into  0x00000006 , 0x0000003f 
+ 00029558  0x00005d2d istore  0x00000001 , 0x00000005 
+ 00029559  0x00005d2e setarg  0x0000053f 
+ 00029560  0x00005d2f store  0x00000002 , 0x00000574 
+ 00029561  0x00005d30 setarg  0x0000052f 
+ 00029562  0x00005d31 store  0x00000002 , 0x00000572 
+ 00029563  0x00005d32 set1  0x00000012 , 0x00000000 
+ 00029564  0x00005d33 branch  0x000073bd 
+ 00029565  0x00005d38 fetcht  0x00000001 , 0x0000054f 
+ 00029566  0x00005d39 force  0x00000010 , 0x00000012 
+ 00029567  0x00005d3a add  0x00000002 , 0x00000006 , 0x00000013 
+ 00029568  0x00005d3b sub  0x00000013 , 0x00000010 , 0x0000003e 
+ 00029569  0x00005d3c branch  0x00007383 , 0x00000002 
+ 00029570  0x00005d3d force  0x00000010 , 0x00000013 
+ 00029571  0x00005d3f arg  0x0000052f , 0x00000005 
+ 00029572  0x00005d41 arg  0x00000550 , 0x00000006 
+ 00029573  0x00005d42 copy  0x00000002 , 0x00000039 
+ 00029574  0x00005d43 disable  0x00000028 
+ 00029575  0x00005d45 ifetch  0x00000001 , 0x00000006 
+ 00029576  0x00005d46 istore  0x00000001 , 0x00000005 
+ 00029577  0x00005d47 increase  0xffffffff , 0x00000012 
+ 00029578  0x00005d48 branch  0x00007391 , 0x00000005 
+ 00029579  0x00005d49 loop  0x00007387 
+ 00029580  0x00005d4a branch  0x00007384 , 0x00000028 
+ 00029581  0x00005d4b enable  0x00000028 
+ 00029582  0x00005d4c force  0x00000006 , 0x00000039 
+ 00029583  0x00005d4d copy  0x00000011 , 0x00000006 
+ 00029584  0x00005d4e branch  0x00007387 
+ 00029585  0x00005d50 arg  0x000004ef , 0x00000006 
+ 00029586  0x00005d51 arg  0x0000053f , 0x00000005 
+ 00029587  0x00005d52 call  0x00007e35 
+ 00029588  0x00005d53 fetch  0x00000001 , 0x0000054e 
+ 00029589  0x00005d54 ixor  0x00000013 , 0x0000003f 
+ 00029590  0x00005d55 store  0x00000001 , 0x0000054e 
+ 00029591  0x00005d56 setarg  0x0000053f 
+ 00029592  0x00005d57 store  0x00000002 , 0x00000574 
+ 00029593  0x00005d58 setarg  0x0000052f 
+ 00029594  0x00005d59 store  0x00000002 , 0x00000572 
+ 00029595  0x00005d5a set1  0x00000012 , 0x00000000 
+ 00029596  0x00005d5b branch  0x000073bd 
+ 00029597  0x00005d61 disable  0x00000028 
+ 00029598  0x00005d62 call  0x00007474 
+ 00029599  0x00005d63 branch  0x000073a7 
+ 00029600  0x00005d66 arg  0x00000056 , 0x00000011 
+ 00029601  0x00005d67 enable  0x00000028 
+ 00029602  0x00005d68 call  0x00007474 
+ 00029603  0x00005d69 call  0x000073a7 
+ 00029604  0x00005d6a arg  0x0000051f , 0x00000006 
+ 00029605  0x00005d6b arg  0x00000062 , 0x00000005 
+ 00029606  0x00005d6c branch  0x00007e35 
+ 00029607  0x00005d70 setarg  0x000004ef 
+ 00029608  0x00005d71 store  0x00000002 , 0x00000574 
+ 00029609  0x00005d72 setarg  0x00004262 
+ 00029610  0x00005d73 store  0x00000002 , 0x00000572 
+ 00029611  0x00005d74 set0  0x00000012 , 0x00000000 
+ 00029612  0x00005d75 call  0x000073bd 
+ 00029613  0x00005d76 arg  0x0000051f , 0x00000011 
+ 00029614  0x00005d77 arg  0x000004ef , 0x00000012 
+ 00029615  0x00005d78 arg  0x0000052f , 0x00000005 
+ 00029616  0x00005d79 call  0x00007467 
+ 00029617  0x00005d7a arg  0x0000052f , 0x00000011 
+ 00029618  0x00005d7b arg  0x0000053f , 0x00000012 
+ 00029619  0x00005d7c copy  0x00000012 , 0x00000005 
+ 00029620  0x00005d7d enable  0x00000028 
+ 00029621  0x00005d7e call  0x00007465 
+ 00029622  0x00005d7f call  0x0000747f 
+ 00029623  0x00005d80 setarg  0x0000053f 
+ 00029624  0x00005d81 store  0x00000002 , 0x00000574 
+ 00029625  0x00005d82 setarg  0x0000052f 
+ 00029626  0x00005d83 store  0x00000002 , 0x00000572 
+ 00029627  0x00005d84 set1  0x00000012 , 0x00000000 
+ 00029628  0x00005d85 branch  0x000073bd 
+ 00029629  0x00005d8a jam  0x00000000 , 0x00000576 
+ 00029630  0x00005d8b fetch  0x00000002 , 0x00000572 
+ 00029631  0x00005d8c iforce  0x00000006 
+ 00029632  0x00005d8d arg  0x00000560 , 0x00000005 
+ 00029633  0x00005d8e call  0x00007e35 
+ 00029634  0x00005d8f fetch  0x00000002 , 0x00000574 
+ 00029635  0x00005d90 iforce  0x00000006 
+ 00029636  0x00005d91 arg  0x0000051f , 0x00000005 
+ 00029637  0x00005d92 call  0x00007e35 
+ 00029638  0x00005d95 call  0x000073e4 
+ 00029639  0x00005d96 disable  0x00000028 
+ 00029640  0x00005d97 bmark0  0x00000012 , 0x000073ce 
+ 00029641  0x00005d98 fetch  0x00000001 , 0x00000576 
+ 00029642  0x00005d99 bne  0x00000004 , 0x000073ce 
+ 00029643  0x00005d9a fetch  0x00000002 , 0x00000574 
+ 00029644  0x00005d9b iforce  0x00000012 
+ 00029645  0x00005d9c call  0x00007416 
+ 00029646  0x00005d9e call  0x00007415 
+ 00029647  0x00005d9f call  0x00007428 
+ 00029648  0x00005da0 fetch  0x00000001 , 0x00000576 
+ 00029649  0x00005da1 increase  0x00000001 , 0x0000003f 
+ 00029650  0x00005da2 store  0x00000001 , 0x00000576 
+ 00029651  0x00005da4 call  0x000073e4 
+ 00029652  0x00005da5 enable  0x00000028 
+ 00029653  0x00005da6 call  0x00007415 
+ 00029654  0x00005da7 call  0x00007437 
+ 00029655  0x00005da8 call  0x00007446 
+ 00029656  0x00005da9 call  0x00007437 
+ 00029657  0x00005daa call  0x00007446 
+ 00029658  0x00005dab call  0x00007437 
+ 00029659  0x00005dac call  0x00007446 
+ 00029660  0x00005dad call  0x00007437 
+ 00029661  0x00005dae fetch  0x00000001 , 0x00000576 
+ 00029662  0x00005daf increase  0x00000001 , 0x0000003f 
+ 00029663  0x00005db0 store  0x00000001 , 0x00000576 
+ 00029664  0x00005db1 bne  0x00000010 , 0x000073c6 
+ 00029665  0x00005db2 call  0x000073e4 
+ 00029666  0x00005db3 disable  0x00000028 
+ 00029667  0x00005db4 branch  0x00007415 
+ 00029668  0x00005db9 fetch  0x00000001 , 0x00000576 
+ 00029669  0x00005dba arg  0x00000560 , 0x00000006 
+ 00029670  0x00005dbb branch  0x0000740b , 0x00000034 
+ 00029671  0x00005dbc iforce  0x00000012 
+ 00029672  0x00005dbd force  0x00000011 , 0x00000039 
+ 00029673  0x00005dbe copy  0x00000006 , 0x00000005 
+ 00029674  0x00005dc0 ifetch  0x00000001 , 0x00000006 
+ 00029675  0x00005dc1 lshift3  0x0000003f , 0x00000002 
+ 00029676  0x00005dc2 rshift2  0x0000003f , 0x0000003f 
+ 00029677  0x00005dc3 rshift3  0x0000003f , 0x0000003f 
+ 00029678  0x00005dc4 ior  0x00000002 , 0x0000003f 
+ 00029679  0x00005dc5 istore  0x00000001 , 0x00000005 
+ 00029680  0x00005dc6 loop  0x000073ea 
+ 00029681  0x00005dc7 setarg  0x00000560 
+ 00029682  0x00005dc8 iadd  0x00000012 , 0x00000006 
+ 00029683  0x00005dc9 force  0x00000010 , 0x00000039 
+ 00029684  0x00005dca arg  0x000004ff , 0x00000005 
+ 00029685  0x00005dcc ifetch  0x00000001 , 0x00000006 
+ 00029686  0x00005dcd istore  0x00000001 , 0x00000005 
+ 00029687  0x00005dce compare  0x00000571 , 0x00000006 , 0x000000ff 
+ 00029688  0x00005dcf nbranch  0x000073fa , 0x00000001 
+ 00029689  0x00005dd0 increase  0xffffffef , 0x00000006 
+ 00029690  0x00005dd2 loop  0x000073f5 
+ 00029691  0x00005dd3 force  0x00000000 , 0x00000011 
+ 00029692  0x00005dd4 add  0x00000012 , 0xffffffff , 0x00000013 
+ 00029693  0x00005dd5 lshift2  0x00000013 , 0x00000013 
+ 00029694  0x00005dd6 lshift2  0x00000013 , 0x00000013 
+ 00029695  0x00005dd7 call  0x000075c5 
+ 00029696  0x00005dd8 setarg  0x00008400 
+ 00029697  0x00005dd9 iadd  0x00000013 , 0x00000013 
+ 00029698  0x00005dda arg  0x000004ff , 0x00000005 
+ 00029699  0x00005ddb force  0x00000010 , 0x00000039 
+ 00029700  0x00005ddd ifetcht  0x00000001 , 0x00000013 
+ 00029701  0x00005dde ifetch  0x00000001 , 0x00000005 
+ 00029702  0x00005ddf iadd  0x00000002 , 0x0000003f 
+ 00029703  0x00005de0 istore  0x00000001 , 0x00000005 
+ 00029704  0x00005de1 increase  0x00000001 , 0x00000013 
+ 00029705  0x00005de2 loop  0x00007404 
+ 00029706  0x00005de3 branch  0x000075c9 
+ 00029707  0x00005de6 force  0x00000010 , 0x00000039 
+ 00029708  0x00005de7 force  0x00000000 , 0x00000002 
+ 00029709  0x00005de9 ifetch  0x00000001 , 0x00000006 
+ 00029710  0x00005dea ixor  0x00000002 , 0x00000002 
+ 00029711  0x00005deb loop  0x0000740d 
+ 00029712  0x00005dec deposit  0x00000002 
+ 00029713  0x00005ded istore  0x00000001 , 0x00000006 
+ 00029714  0x00005dee arg  0x00000560 , 0x00000006 
+ 00029715  0x00005def arg  0x000004ff , 0x00000005 
+ 00029716  0x00005df0 branch  0x00007e35 
+ 00029717  0x00005df3 arg  0x000004ff , 0x00000012 
+ 00029718  0x00005df5 force  0x00000010 , 0x00000039 
+ 00029719  0x00005df6 arg  0x0000051f , 0x00000011 
+ 00029720  0x00005df7 copy  0x00000011 , 0x00000005 
+ 00029721  0x00005df9 ifetcht  0x00000001 , 0x00000011 
+ 00029722  0x00005dfa ifetch  0x00000001 , 0x00000012 
+ 00029723  0x00005dfb ixor  0x00000002 , 0x00000030 
+ 00029724  0x00005dfc and  0x00000039 , 0x00000003 , 0x00000013 
+ 00029725  0x00005dfd nbranch  0x0000741f , 0x00000028 
+ 00029726  0x00005dfe xor_into  0x00000003 , 0x00000013 
+ 00029727  0x00005e00 sub  0x00000013 , 0x00000001 , 0x00000013 
+ 00029728  0x00005e01 branch  0x00007422 , 0x00000002 
+ 00029729  0x00005e02 iadd  0x00000002 , 0x00000030 
+ 00029730  0x00005e04 deposit  0x00000030 
+ 00029731  0x00005e05 istore  0x00000001 , 0x00000005 
+ 00029732  0x00005e06 increase  0x00000001 , 0x00000011 
+ 00029733  0x00005e07 increase  0x00000001 , 0x00000012 
+ 00029734  0x00005e08 loop  0x00007419 
+ 00029735  0x00005e09 rtn 
+ 00029736  0x00005e0c call  0x000075c5 
+ 00029737  0x00005e0d force  0x00000010 , 0x00000039 
+ 00029738  0x00005e0e arg  0x0000051f , 0x00000011 
+ 00029739  0x00005e10 ifetch  0x00000001 , 0x00000011 
+ 00029740  0x00005e11 arg  0x00008500 , 0x00000006 
+ 00029741  0x00005e12 and  0x00000039 , 0x00000003 , 0x00000013 
+ 00029742  0x00005e13 sub  0x00000013 , 0x00000001 , 0x0000003e 
+ 00029743  0x00005e14 branch  0x00007431 , 0x00000002 
+ 00029744  0x00005e15 arg  0x00008600 , 0x00000006 
+ 00029745  0x00005e17 iadd  0x00000006 , 0x00000006 
+ 00029746  0x00005e18 ifetch  0x00000001 , 0x00000006 
+ 00029747  0x00005e19 istore  0x00000001 , 0x00000011 
+ 00029748  0x00005e1a increase  0x00000001 , 0x00000011 
+ 00029749  0x00005e1b loop  0x0000742b 
+ 00029750  0x00005e1c branch  0x000075c9 
+ 00029751  0x00005e1f force  0x00000008 , 0x00000039 
+ 00029752  0x00005e20 arg  0x0000051f , 0x00000006 
+ 00029753  0x00005e21 copy  0x00000006 , 0x00000005 
+ 00029754  0x00005e23 ifetch  0x00000001 , 0x00000006 
+ 00029755  0x00005e24 iforce  0x00000011 
+ 00029756  0x00005e25 ifetch  0x00000001 , 0x00000006 
+ 00029757  0x00005e26 iforce  0x00000012 
+ 00029758  0x00005e27 lshift  0x00000011 , 0x0000003f 
+ 00029759  0x00005e28 iadd  0x00000012 , 0x0000003f 
+ 00029760  0x00005e29 istore  0x00000001 , 0x00000005 
+ 00029761  0x00005e2a deposit  0x00000011 
+ 00029762  0x00005e2b iadd  0x00000012 , 0x0000003f 
+ 00029763  0x00005e2c istore  0x00000001 , 0x00000005 
+ 00029764  0x00005e2d loop  0x0000743a 
+ 00029765  0x00005e2e rtn 
+ 00029766  0x00005e32 setarg  0x008ae42c 
+ 00029767  0x00005e33 iforce  0x00000002 
+ 00029768  0x00005e34 force  0x00000007 , 0x00000039 
+ 00029769  0x00005e35 call  0x00007455 
+ 00029770  0x00005e36 setarg  0x000d751b 
+ 00029771  0x00005e37 iforce  0x00000002 
+ 00029772  0x00005e38 force  0x00000005 , 0x00000039 
+ 00029773  0x00005e39 call  0x00007455 
+ 00029774  0x00005e3a fetch  0x00000001 , 0x0000052e 
+ 00029775  0x00005e3b iforce  0x00000011 
+ 00029776  0x00005e3c fetch  0x00000001 , 0x00000522 
+ 00029777  0x00005e3d store  0x00000001 , 0x0000052e 
+ 00029778  0x00005e3e deposit  0x00000011 
+ 00029779  0x00005e3f store  0x00000001 , 0x00000522 
+ 00029780  0x00005e40 rtn 
+ 00029781  0x00005e43 and  0x00000002 , 0x0000000f , 0x00000012 
+ 00029782  0x00005e45 and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00029783  0x00005e46 arg  0x0000051f , 0x00000005 
+ 00029784  0x00005e47 iadd  0x00000005 , 0x00000005 
+ 00029785  0x00005e48 ifetch  0x00000001 , 0x00000005 
+ 00029786  0x00005e49 iforce  0x00000013 
+ 00029787  0x00005e4a deposit  0x00000011 
+ 00029788  0x00005e4b istore  0x00000001 , 0x00000005 
+ 00029789  0x00005e4c copy  0x00000013 , 0x00000011 
+ 00029790  0x00005e4d rshift4  0x00000002 , 0x00000002 
+ 00029791  0x00005e4e loop  0x00007456 
+ 00029792  0x00005e4f setarg  0x0000051f 
+ 00029793  0x00005e50 iadd  0x00000012 , 0x00000005 
+ 00029794  0x00005e51 deposit  0x00000011 
+ 00029795  0x00005e52 istore  0x00000001 , 0x00000005 
+ 00029796  0x00005e53 rtn 
+ 00029797  0x00005e56 enable  0x00000028 
+ 00029798  0x00005e57 branch  0x00007468 
+ 00029799  0x00005e5a disable  0x00000028 
+ 00029800  0x00005e5c force  0x00000010 , 0x00000039 
+ 00029801  0x00005e5e ifetcht  0x00000001 , 0x00000011 
+ 00029802  0x00005e5f ifetch  0x00000001 , 0x00000012 
+ 00029803  0x00005e60 branch  0x0000746e , 0x00000028 
+ 00029804  0x00005e61 ixor  0x00000002 , 0x0000003f 
+ 00029805  0x00005e62 branch  0x0000746f 
+ 00029806  0x00005e64 iadd  0x00000002 , 0x0000003f 
+ 00029807  0x00005e66 istore  0x00000001 , 0x00000005 
+ 00029808  0x00005e67 increase  0x00000001 , 0x00000011 
+ 00029809  0x00005e68 increase  0x00000001 , 0x00000012 
+ 00029810  0x00005e69 loop  0x00007469 
+ 00029811  0x00005e6a rtn 
+ 00029812  0x00005e6e arg  0x0000053f , 0x00000005 
+ 00029813  0x00005e6f ifetch  0x00000006 , 0x00000011 
+ 00029814  0x00005e70 istore  0x00000006 , 0x00000005 
+ 00029815  0x00005e71 branch  0x0000747a , 0x00000028 
+ 00029816  0x00005e72 ifetch  0x00000006 , 0x00000011 
+ 00029817  0x00005e73 branch  0x0000747b 
+ 00029818  0x00005e75 ifetch  0x00000006 , 0x00000006 
+ 00029819  0x00005e77 istore  0x00000006 , 0x00000005 
+ 00029820  0x00005e78 ifetch  0x00000004 , 0x00000011 
+ 00029821  0x00005e79 istore  0x00000004 , 0x00000005 
+ 00029822  0x00005e7a rtn 
+ 00029823  0x00005e7d arg  0x00004262 , 0x00000006 
+ 00029824  0x00005e7e arg  0x0000052f , 0x00000005 
+ 00029825  0x00005e7f arg  0x00000000 , 0x00000002 
+ 00029826  0x00005e80 setarg  0x008395a7 
+ 00029827  0x00005e81 call  0x000074a0 
+ 00029828  0x00005e82 setarg  0x00b3c1df 
+ 00029829  0x00005e83 call  0x000074a0 
+ 00029830  0x00005e84 setarg  0x0000e5e9 
+ 00029831  0x00005e85 call  0x000074a1 
+ 00029832  0x00005e86 copy  0x00000002 , 0x00000014 
+ 00029833  0x00005e87 disable  0x00000028 
+ 00029834  0x00005e88 call  0x0000748e 
+ 00029835  0x00005e89 copy  0x00000014 , 0x00000002 
+ 00029836  0x00005e8a enable  0x00000028 
+ 00029837  0x00005e8b branch  0x0000748e 
+ 00029838  0x00005e8e force  0x00000008 , 0x00000039 
+ 00029839  0x00005e90 ifetch  0x00000001 , 0x00000006 
+ 00029840  0x00005e91 compare  0x00000001 , 0x00000039 , 0x00000001 
+ 00029841  0x00005e92 branch  0x00007495 , 0x00000028 
+ 00029842  0x00005e93 branch  0x00007496 , 0x00000001 
+ 00029843  0x00005e95 iadd  0x00000002 , 0x0000003f 
+ 00029844  0x00005e96 branch  0x00007497 
+ 00029845  0x00005e98 branch  0x00007493 , 0x00000001 
+ 00029846  0x00005e9a ixor  0x00000002 , 0x0000003f 
+ 00029847  0x00005e9c istore  0x00000001 , 0x00000005 
+ 00029848  0x00005e9d rshift8  0x00000002 , 0x00000002 
+ 00029849  0x00005e9e loop  0x0000748f 
+ 00029850  0x00005e9f rtn 
+ 00029851  0x00005ea2 fetch  0x00000006 , 0x00000523 
+ 00029852  0x00005ea3 store  0x00000006 , 0x00000056 
+ 00029853  0x00005ea4 ifetch  0x00000006 , 0x00000006 
+ 00029854  0x00005ea5 istore  0x00000006 , 0x00000005 
+ 00029855  0x00005ea6 rtn 
+ 00029856  0x00005ea9 lshift8  0x00000002 , 0x00000002 
+ 00029857  0x00005eab lshift16  0x00000002 , 0x00000002 
+ 00029858  0x00005eac ior  0x00000002 , 0x00000002 
+ 00029859  0x00005ead rtn 
+ 00029860  0x00005eb1 branch  0x000074a4 
+ 00029861  0x00005eb6 call  0x00007540 
+ 00029862  0x00005eb7 arg  0x0000447b , 0x00000005 
+ 00029863  0x00005eb8 branch  0x000075a3 
+ 00029864  0x00005ebc arg  0x0000449c , 0x00000005 
+ 00029865  0x00005ebd branch  0x000074ab , 0x00000029 
+ 00029866  0x00005ebe arg  0x000003b0 , 0x00000005 
+ 00029867  0x00005ec0 copy  0x00000006 , 0x00000011 
+ 00029868  0x00005ec1 call  0x00007e35 
+ 00029869  0x00005ec2 call  0x00007551 
+ 00029870  0x00005ec3 arg  0x0000448c , 0x00000006 
+ 00029871  0x00005ec4 branch  0x000075bc 
+ 00029872  0x00005ec7 arg  0x000003b0 , 0x00000011 
+ 00029873  0x00005ec8 branch  0x000074b3 , 0x00000029 
+ 00029874  0x00005ec9 arg  0x0000449c , 0x00000011 
+ 00029875  0x00005ecb copy  0x00000011 , 0x00000005 
+ 00029876  0x00005ecc call  0x00006226 
+ 00029877  0x00005ecd branch  0x00007551 
+ 00029878  0x00005ed0 arg  0x00000380 , 0x00000006 
+ 00029879  0x00005ed1 call  0x00007592 
+ 00029880  0x00005ed2 arg  0x0000447b , 0x00000006 
+ 00029881  0x00005ed3 call  0x00007593 
+ 00029882  0x00005ed4 force  0x00000038 , 0x00000036 
+ 00029883  0x00005ed5 force  0x00000000 , 0x00000036 
+ 00029884  0x00005ed6 call  0x0000752f 
+ 00029885  0x00005ed7 arg  0x000003fd , 0x00000005 
+ 00029886  0x00005ed8 branch  0x000075a3 
+ 00029887  0x00005edc force  0x00000049 , 0x0000003f 
+ 00029888  0x00005edd branch  0x000074c2 
+ 00029889  0x00005edf force  0x00000001 , 0x0000003f 
+ 00029890  0x00005ee1 force  0x00000000 , 0x00000038 
+ 00029891  0x00005ee2 lshift8  0x00000002 , 0x0000002f 
+ 00029892  0x00005ee3 ior  0x0000002f , 0x0000002f 
+ 00029893  0x00005ee4 increase  0x00000001 , 0x00000038 
+ 00029894  0x00005ee5 rshift8  0x00000002 , 0x0000002f 
+ 00029895  0x00005ee6 rshift16  0x0000002f , 0x0000002f 
+ 00029896  0x00005ee7 fetch  0x00000002 , 0x00004473 
+ 00029897  0x00005ee8 lshift16 , 0x0000003f , 0x0000003f 
+ 00029898  0x00005ee9 ior  0x0000002f , 0x0000002f 
+ 00029899  0x00005eea increase  0x00000001 , 0x00000038 
+ 00029900  0x00005eeb ifetch  0x00000004 , 0x00000006 
+ 00029901  0x00005eec iforce  0x0000002f 
+ 00029902  0x00005eed increase  0x00000001 , 0x00000038 
+ 00029903  0x00005eee ifetch  0x00000002 , 0x00000006 
+ 00029904  0x00005eef byteswap  0x00000011 , 0x0000002f 
+ 00029905  0x00005ef0 lshift16  0x0000002f , 0x0000002f 
+ 00029906  0x00005ef1 ior  0x0000002f , 0x0000002f 
+ 00029907  0x00005ef2 increase  0x00000001 , 0x00000038 
+ 00029908  0x00005ef3 rtn 
+ 00029909  0x00005ef8 add  0x00000013 , 0x00000001 , 0x00000006 
+ 00029910  0x00005ef9 ifetch  0x00000001 , 0x00000006 
+ 00029911  0x00005efa iforce  0x00000011 
+ 00029912  0x00005efb call  0x000074bf 
+ 00029913  0x00005efc call  0x00007531 
+ 00029914  0x00005efe force  0x00000000 , 0x00000038 
+ 00029915  0x00005eff ifetch  0x00000001 , 0x00000013 
+ 00029916  0x00005f00 and_into  0x00000003 , 0x0000003f 
+ 00029917  0x00005f01 lshift16  0x0000003f , 0x0000002f 
+ 00029918  0x00005f02 set1  0x00000008 , 0x0000002f 
+ 00029919  0x00005f03 call  0x0000759b 
+ 00029920  0x00005f04 call  0x00007534 
+ 00029921  0x00005f06 copy  0x00000011 , 0x00000039 
+ 00029922  0x00005f07 add  0x00000013 , 0x00000002 , 0x00000006 
+ 00029923  0x00005f08 call  0x0000757a 
+ 00029924  0x00005f0a call  0x00007584 
+ 00029925  0x00005f0b call  0x00007534 
+ 00029926  0x00005f0c deposit  0x00000039 
+ 00029927  0x00005f0d branch  0x000074e9 , 0x00000034 
+ 00029928  0x00005f0e branch  0x000074e4 
+ 00029929  0x00005f10 force  0x0000000c , 0x00000038 
+ 00029930  0x00005f11 deposit  0x0000002f 
+ 00029931  0x00005f12 store  0x00000004 , 0x00000378 
+ 00029932  0x00005f13 rtn 
+ 00029933  0x00005f16 increase  0x00000001 , 0x00000011 
+ 00029934  0x00005f17 call  0x000074c1 
+ 00029935  0x00005f18 copy  0x00000013 , 0x00000006 
+ 00029936  0x00005f19 call  0x0000758e 
+ 00029937  0x00005f1a call  0x00007537 
+ 00029938  0x00005f1b call  0x000075aa 
+ 00029939  0x00005f1c increase  0x00000010 , 0x00000013 
+ 00029940  0x00005f1d increase  0xfffffff0 , 0x00000012 
+ 00029941  0x00005f1e branch  0x000074ed , 0x00000002 
+ 00029942  0x00005f1f rtn 
+ 00029943  0x00005f22 arg  0x0000443e , 0x00000013 
+ 00029944  0x00005f23 fetcht  0x00000005 , 0x00004465 
+ 00029945  0x00005f24 call  0x000074d5 
+ 00029946  0x00005f25 force  0x00000008 , 0x00000038 
+ 00029947  0x00005f26 iforce  0x0000002f 
+ 00029948  0x00005f27 force  0x00000000 , 0x00000011 
+ 00029949  0x00005f28 call  0x000074c1 
+ 00029950  0x00005f29 call  0x00007537 
+ 00029951  0x00005f2a arg  0x00004440 , 0x00000013 
+ 00029952  0x00005f2b fetch  0x00000001 , 0x0000443f 
+ 00029953  0x00005f2c add  0x0000003f , 0xffffffff , 0x00000012 
+ 00029954  0x00005f2d iadd  0x00000013 , 0x00000005 
+ 00029955  0x00005f2e force  0x0000000c , 0x00000038 
+ 00029956  0x00005f2f deposit  0x0000002f 
+ 00029957  0x00005f30 istore  0x00000004 , 0x00000005 
+ 00029958  0x00005f31 call  0x000074ed 
+ 00029959  0x00005f32 fetch  0x00000001 , 0x0000443f 
+ 00029960  0x00005f33 increase  0x00000004 , 0x0000003f 
+ 00029961  0x00005f34 store  0x00000001 , 0x0000443f 
+ 00029962  0x00005f35 fetcht  0x00000005 , 0x00004465 
+ 00029963  0x00005f36 increase  0x00000001 , 0x00000002 
+ 00029964  0x00005f37 storet  0x00000005 , 0x00004465 
+ 00029965  0x00005f38 rtn 
+ 00029966  0x00005f3b fetch  0x00000001 , 0x00000341 
+ 00029967  0x00005f3c sub  0x0000003f , 0x00000014 , 0x0000003e 
+ 00029968  0x00005f3d branch  0x00007511 , 0x00000002 
+ 00029969  0x00005f3f arg  0x00000342 , 0x00000013 
+ 00029970  0x00005f40 add  0x0000003f , 0xffffffff , 0x00000012 
+ 00029971  0x00005f41 increase  0xfffffffc , 0x0000003f 
+ 00029972  0x00005f42 store  0x00000001 , 0x00000341 
+ 00029973  0x00005f43 iadd  0x00000013 , 0x00000006 
+ 00029974  0x00005f44 ifetch  0x00000004 , 0x00000006 
+ 00029975  0x00005f45 force  0x00000008 , 0x00000038 
+ 00029976  0x00005f46 iforce  0x0000002f 
+ 00029977  0x00005f47 force  0x00000000 , 0x00000011 
+ 00029978  0x00005f48 fetcht  0x00000005 , 0x0000446a 
+ 00029979  0x00005f49 call  0x000074c1 
+ 00029980  0x00005f4a call  0x00007537 
+ 00029981  0x00005f4b force  0x0000000c , 0x00000038 
+ 00029982  0x00005f4c deposit  0x0000002f 
+ 00029983  0x00005f4d store  0x00000004 , 0x0000037c 
+ 00029984  0x00005f4e call  0x000074ed 
+ 00029985  0x00005f4f arg  0x00000340 , 0x00000013 
+ 00029986  0x00005f50 call  0x000074d5 
+ 00029987  0x00005f51 fetcht  0x00000004 , 0x0000037c 
+ 00029988  0x00005f52 isub  0x00000002 , 0x0000003f 
+ 00029989  0x00005f53 nrtn  0x00000034 
+ 00029990  0x00005f54 fetch  0x00000004 , 0x0000446f 
+ 00029991  0x00005f55 isub  0x00000002 , 0x0000003f 
+ 00029992  0x00005f56 rtn  0x00000034 
+ 00029993  0x00005f57 storet  0x00000004 , 0x0000446f 
+ 00029994  0x00005f58 fetch  0x00000005 , 0x0000446a 
+ 00029995  0x00005f59 increase  0x00000001 , 0x0000003f 
+ 00029996  0x00005f5a store  0x00000005 , 0x0000446a 
+ 00029997  0x00005f5b force  0x00000000 , 0x0000003f 
+ 00029998  0x00005f5c rtn 
+ 00029999  0x00005f5f nbranch  0x0000752f , 0x00000037 
+ 00030000  0x00005f60 rtn 
+ 00030001  0x00005f63 force  0x00000030 , 0x00000036 
+ 00030002  0x00005f64 force  0x00000000 , 0x00000036 
+ 00030003  0x00005f65 branch  0x0000752f 
+ 00030004  0x00005f68 force  0x00000032 , 0x00000036 
+ 00030005  0x00005f69 force  0x00000002 , 0x00000036 
+ 00030006  0x00005f6a branch  0x0000752f 
+ 00030007  0x00005f6d force  0x00000034 , 0x00000036 
+ 00030008  0x00005f6e force  0x00000004 , 0x00000036 
+ 00030009  0x00005f6f branch  0x0000752f 
+ 00030010  0x00005f72 force  0x00000036 , 0x00000036 
+ 00030011  0x00005f73 force  0x00000006 , 0x00000036 
+ 00030012  0x00005f74 branch  0x0000752f 
+ 00030013  0x00005f77 force  0x00000001 , 0x00000036 
+ 00030014  0x00005f78 force  0x00000000 , 0x00000036 
+ 00030015  0x00005f79 rtn 
+ 00030016  0x00005f7b force  0x00000000 , 0x00000038 
+ 00030017  0x00005f7c fetch  0x00000004 , 0x000003b0 
+ 00030018  0x00005f7d iforce  0x0000002f 
+ 00030019  0x00005f7e increase  0x00000001 , 0x00000038 
+ 00030020  0x00005f7f ifetch  0x00000004 , 0x00000006 
+ 00030021  0x00005f80 iforce  0x0000002f 
+ 00030022  0x00005f81 increase  0x00000001 , 0x00000038 
+ 00030023  0x00005f82 fetch  0x00000004 , 0x0000449c 
+ 00030024  0x00005f83 iforce  0x0000002f 
+ 00030025  0x00005f84 increase  0x00000001 , 0x00000038 
+ 00030026  0x00005f85 ifetch  0x00000004 , 0x00000006 
+ 00030027  0x00005f86 iforce  0x0000002f 
+ 00030028  0x00005f87 increase  0x00000001 , 0x00000038 
+ 00030029  0x00005f88 call  0x0000759e 
+ 00030030  0x00005f89 force  0x00000038 , 0x00000036 
+ 00030031  0x00005f8a force  0x00000008 , 0x00000036 
+ 00030032  0x00005f8b branch  0x0000752f 
+ 00030033  0x00005f8f fetch  0x00000006 , 0x000044f9 
+ 00030034  0x00005f90 fetcht  0x00000006 , 0x000003d0 
+ 00030035  0x00005f91 branch  0x00007556 , 0x00000029 
+ 00030036  0x00005f92 fetch  0x00000006 , 0x000003d0 
+ 00030037  0x00005f93 fetcht  0x00000006 , 0x000044f9 
+ 00030038  0x00005f95 force  0x00000008 , 0x00000038 
+ 00030039  0x00005f96 copy  0x00000002 , 0x0000002f 
+ 00030040  0x00005f97 increase  0x00000001 , 0x00000038 
+ 00030041  0x00005f98 rshift32  0x00000002 , 0x0000002f 
+ 00030042  0x00005f99 lshift16  0x0000003f , 0x0000003f 
+ 00030043  0x00005f9a ior  0x0000002f , 0x0000002f 
+ 00030044  0x00005f9b increase  0x00000001 , 0x00000038 
+ 00030045  0x00005f9c rshift32  0x0000003f , 0x0000002f 
+ 00030046  0x00005f9d increase  0x00000001 , 0x00000038 
+ 00030047  0x00005f9e force  0x00000000 , 0x0000002f 
+ 00030048  0x00005f9f force  0x00000000 , 0x0000003f 
+ 00030049  0x00005fa0 fetch  0x00000001 , 0x000044e6 
+ 00030050  0x00005fa1 fetcht  0x00000001 , 0x000044dc 
+ 00030051  0x00005fa2 nbranch  0x00007566 , 0x00000029 
+ 00030052  0x00005fa4 fetch  0x00000001 , 0x000044ed 
+ 00030053  0x00005fa5 fetcht  0x00000001 , 0x000044e6 
+ 00030054  0x00005fa7 store  0x00000001 , 0x000044ac 
+ 00030055  0x00005fa8 storet  0x00000001 , 0x000044ad 
+ 00030056  0x00005fa9 force  0x00000000 , 0x00000038 
+ 00030057  0x00005faa arg  0x000044ac , 0x00000012 
+ 00030058  0x00005fab force  0x00000004 , 0x00000039 
+ 00030059  0x00005fad ifetch  0x00000004 , 0x00000011 
+ 00030060  0x00005fae ifetcht  0x00000004 , 0x00000012 
+ 00030061  0x00005faf ixor  0x00000002 , 0x0000002f 
+ 00030062  0x00005fb0 increase  0x00000001 , 0x00000038 
+ 00030063  0x00005fb1 increase  0x00000004 , 0x00000011 
+ 00030064  0x00005fb2 increase  0x00000004 , 0x00000012 
+ 00030065  0x00005fb3 loop  0x0000756b 
+ 00030066  0x00005fb4 call  0x0000759e 
+ 00030067  0x00005fb5 force  0x00000038 , 0x00000036 
+ 00030068  0x00005fb6 force  0x0000000c , 0x00000036 
+ 00030069  0x00005fb7 call  0x0000752f 
+ 00030070  0x00005fb9 call  0x0000759d 
+ 00030071  0x00005fba force  0x0000003a , 0x00000036 
+ 00030072  0x00005fbb force  0x00000008 , 0x00000036 
+ 00030073  0x00005fbc branch  0x0000752f 
+ 00030074  0x00005fbf compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00030075  0x00005fc0 rtn  0x00000001 
+ 00030076  0x00005fc1 deposit  0x00000006 
+ 00030077  0x00005fc2 iadd  0x00000039 , 0x00000005 
+ 00030078  0x00005fc3 force  0x00000000 , 0x0000003f 
+ 00030079  0x00005fc5 istore  0x00000001 , 0x00000005 
+ 00030080  0x00005fc6 increase  0x00000001 , 0x00000039 
+ 00030081  0x00005fc7 compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00030082  0x00005fc8 rtn  0x00000001 
+ 00030083  0x00005fc9 branch  0x0000757f 
+ 00030084  0x00005fcc force  0x00000000 , 0x00000038 
+ 00030085  0x00005fce deposit  0x00000039 
+ 00030086  0x00005fcf branch  0x00007589 , 0x00000034 
+ 00030087  0x00005fd0 ifetch  0x00000004 , 0x00000006 
+ 00030088  0x00005fd1 increase  0xfffffffc , 0x00000039 
+ 00030089  0x00005fd3 iforce  0x0000002f 
+ 00030090  0x00005fd4 increase  0x00000001 , 0x00000038 
+ 00030091  0x00005fd5 compare  0x00000004 , 0x00000038 , 0x0000000f 
+ 00030092  0x00005fd6 rtn  0x00000001 
+ 00030093  0x00005fd7 branch  0x00007585 
+ 00030094  0x00005fda force  0x00000008 , 0x00000038 
+ 00030095  0x00005fdb branch  0x00007593 
+ 00030096  0x00005fdd force  0x00000004 , 0x00000038 
+ 00030097  0x00005fde branch  0x00007593 
+ 00030098  0x00005fe0 force  0x00000000 , 0x00000038 
+ 00030099  0x00005fe2 force  0x00000004 , 0x00000039 
+ 00030100  0x00005fe4 ifetch  0x00000004 , 0x00000006 
+ 00030101  0x00005fe5 iforce  0x0000002f 
+ 00030102  0x00005fe6 increase  0x00000001 , 0x00000038 
+ 00030103  0x00005fe7 loop  0x00007594 
+ 00030104  0x00005fe8 rtn 
+ 00030105  0x00005feb arg  0x000003fd , 0x00000006 
+ 00030106  0x00005fec branch  0x00007590 
+ 00030107  0x00005fef force  0x00000004 , 0x00000039 
+ 00030108  0x00005ff0 branch  0x000075a0 
+ 00030109  0x00005ff3 force  0x00000000 , 0x00000038 
+ 00030110  0x00005ff5 force  0x00000004 , 0x00000039 
+ 00030111  0x00005ff7 force  0x00000000 , 0x0000002f 
+ 00030112  0x00005ff9 increase  0x00000001 , 0x00000038 
+ 00030113  0x00005ffa loop  0x0000759f 
+ 00030114  0x00005ffb rtn 
+ 00030115  0x00005ffe force  0x0000000c , 0x00000038 
+ 00030116  0x00005fff force  0x00000004 , 0x00000039 
+ 00030117  0x00006001 deposit  0x0000002f 
+ 00030118  0x00006002 istore  0x00000004 , 0x00000005 
+ 00030119  0x00006003 increase  0x00000001 , 0x00000038 
+ 00030120  0x00006004 loop  0x000075a5 
+ 00030121  0x00006005 rtn 
+ 00030122  0x00006008 force  0x0000000c , 0x00000038 
+ 00030123  0x00006009 copy  0x00000013 , 0x00000005 
+ 00030124  0x0000600a add  0x00000012 , 0x00000001 , 0x00000039 
+ 00030125  0x0000600b sub  0x00000039 , 0x0000000f , 0x0000003e 
+ 00030126  0x0000600c branch  0x000075b0 , 0x00000002 
+ 00030127  0x0000600d force  0x00000010 , 0x00000039 
+ 00030128  0x0000600f deposit  0x0000002f 
+ 00030129  0x00006010 sub  0x00000039 , 0x00000003 , 0x0000003e 
+ 00030130  0x00006011 branch  0x000075b8 , 0x00000002 
+ 00030131  0x00006012 istore  0x00000004 , 0x00000005 
+ 00030132  0x00006013 increase  0xfffffffc , 0x00000039 
+ 00030133  0x00006014 rtn  0x00000005 
+ 00030134  0x00006015 increase  0x00000001 , 0x00000038 
+ 00030135  0x00006016 branch  0x000075b0 
+ 00030136  0x00006018 istore  0x00000001 , 0x00000005 
+ 00030137  0x00006019 rshift8  0x0000003f , 0x0000003f 
+ 00030138  0x0000601a loop  0x000075b8 
+ 00030139  0x0000601b rtn 
+ 00030140  0x0000601f force  0x0000000c , 0x00000038 
+ 00030141  0x00006020 force  0x00000004 , 0x00000039 
+ 00030142  0x00006022 ifetch  0x00000004 , 0x00000006 
+ 00030143  0x00006023 isub  0x0000002f , 0x0000003e 
+ 00030144  0x00006024 nrtn  0x00000005 
+ 00030145  0x00006025 increase  0x00000001 , 0x00000038 
+ 00030146  0x00006026 loop  0x000075be 
+ 00030147  0x00006027 force  0x00000000 , 0x0000003e 
+ 00030148  0x00006028 rtn 
+ 00030149  0x0000602b hfetch  0x00000001 , 0x00008050 
+ 00030150  0x0000602c set0  0x00000000 , 0x0000003f 
+ 00030151  0x0000602d hstore  0x00000001 , 0x00008050 
+ 00030152  0x0000602e rtn 
+ 00030153  0x00006031 hfetch  0x00000001 , 0x00008050 
+ 00030154  0x00006032 set1  0x00000000 , 0x0000003f 
+ 00030155  0x00006033 hstore  0x00000001 , 0x00008050 
+ 00030156  0x00006034 rtn 
+ 00030157  0x00006037 arg  0x00000742 , 0x00000005 
+ 00030158  0x00006038 setsect  0x00000000 , 0x0003ffff 
+ 00030159  0x00006039 setsect  0x00000001 , 0x0003ffff 
+ 00030160  0x0000603a setsect  0x00000002 , 0x0003ffff 
+ 00030161  0x0000603b setsect  0x00000003 , 0x0003fbff 
+ 00030162  0x0000603c istore  0x00000009 , 0x00000005 
+ 00030163  0x0000603d setsect  0x00000000 , 0x0003ffff 
+ 00030164  0x0000603e setsect  0x00000001 , 0x0003ffff 
+ 00030165  0x0000603f setsect  0x00000002 , 0x0003ffff 
+ 00030166  0x00006040 setsect  0x00000003 , 0x0003ffff 
+ 00030167  0x00006041 istore  0x00000009 , 0x00000005 
+ 00030168  0x00006042 setsect  0x00000000 , 0x0003ffff 
+ 00030169  0x00006043 setsect  0x00000001 , 0x0003ffff 
+ 00030170  0x00006044 setsect  0x00000002 , 0x0003cfff 
+ 00030171  0x00006045 setsect  0x00000003 , 0x0003ffff 
+ 00030172  0x00006046 istore  0x00000009 , 0x00000005 
+ 00030173  0x00006047 setsect  0x00000000 , 0x0003ffff 
+ 00030174  0x00006048 setsect  0x00000001 , 0x0003ffff 
+ 00030175  0x00006049 setsect  0x00000002 , 0x0003ffef 
+ 00030176  0x0000604a setsect  0x00000003 , 0x0003ffff 
+ 00030177  0x0000604b istore  0x00000009 , 0x00000005 
+ 00030178  0x0000604c setsect  0x00000000 , 0x0003ffff 
+ 00030179  0x0000604d setsect  0x00000001 , 0x0003ffff 
+ 00030180  0x0000604e setsect  0x00000002 , 0x0003ffff 
+ 00030181  0x0000604f setsect  0x00000003 , 0x0003ffff 
+ 00030182  0x00006050 istore  0x00000009 , 0x00000005 
+ 00030183  0x00006051 setsect  0x00000000 , 0x0003ffff 
+ 00030184  0x00006052 setsect  0x00000001 , 0x00026c7f 
+ 00030185  0x00006053 setsect  0x00000002 , 0x0000146b 
+ 00030186  0x00006054 setsect  0x00000003 , 0x00037bb3 
+ 00030187  0x00006055 istore  0x00000009 , 0x00000005 
+ 00030188  0x00006056 setsect  0x00000000 , 0x0001feb8 
+ 00030189  0x00006057 setsect  0x00000001 , 0x00010c12 
+ 00030190  0x00006058 setsect  0x00000002 , 0x0002b722 
+ 00030191  0x00006059 setsect  0x00000003 , 0x00029fa6 
+ 00030192  0x0000605a istore  0x00000009 , 0x00000005 
+ 00030193  0x0000605b setsect  0x00000000 , 0x0000e70f 
+ 00030194  0x0000605c setsect  0x00000001 , 0x00016720 
+ 00030195  0x0000605d setsect  0x00000002 , 0x0000519e 
+ 00030196  0x0000605e setsect  0x00000003 , 0x00019084 
+ 00030197  0x0000605f istore  0x00000009 , 0x00000005 
+ 00030198  0x00006060 setsect  0x00000000 , 0x00031012 
+ 00030199  0x00006061 setsect  0x00000001 , 0x000360bf 
+ 00030200  0x00006062 setsect  0x00000002 , 0x0003f0af 
+ 00030201  0x00006063 setsect  0x00000003 , 0x000003d3 
+ 00030202  0x00006064 istore  0x00000009 , 0x00000005 
+ 00030203  0x00006065 setsect  0x00000000 , 0x0003a188 
+ 00030204  0x00006066 setsect  0x00000001 , 0x00003ad0 
+ 00030205  0x00006067 setsect  0x00000002 , 0x0003cbf2 
+ 00030206  0x00006068 setsect  0x00000003 , 0x000243d9 
+ 00030207  0x00006069 istore  0x00000009 , 0x00000005 
+ 00030208  0x0000606a setsect  0x00000000 , 0x0002b030 
+ 00030209  0x0000606b setsect  0x00000001 , 0x00036a03 
+ 00030210  0x0000606c setsect  0x00000002 , 0x00011188 
+ 00030211  0x0000606d setsect  0x00000003 , 0x0001e520 
+ 00030212  0x0000606e istore  0x00000009 , 0x00000005 
+ 00030213  0x0000606f setsect  0x00000000 , 0x0003a11e 
+ 00030214  0x00006070 setsect  0x00000001 , 0x0000fe5d 
+ 00030215  0x00006071 setsect  0x00000002 , 0x0000dd57 
+ 00030216  0x00006072 setsect  0x00000003 , 0x0001ac93 
+ 00030217  0x00006073 istore  0x00000009 , 0x00000005 
+ 00030218  0x00006074 setsect  0x00000000 , 0x000011ed 
+ 00030219  0x00006075 setsect  0x00000001 , 0x000218c4 
+ 00030220  0x00006076 setsect  0x00000002 , 0x00008da7 
+ 00030221  0x00006077 setsect  0x00000003 , 0x000257ff 
+ 00030222  0x00006078 istore  0x00000009 , 0x00000005 
+ 00030223  0x00006079 setsect  0x00000000 , 0x0003192b 
+ 00030224  0x0000607a setsect  0x00000001 , 0x00034641 
+ 00030225  0x0000607b setsect  0x00000002 , 0x0001be0c 
+ 00030226  0x0000607c setsect  0x00000003 , 0x000366ad 
+ 00030227  0x0000607d istore  0x00000009 , 0x00000005 
+ 00030228  0x0000607e setsect  0x00000000 , 0x00001f83 
+ 00030229  0x0000607f setsect  0x00000001 , 0x00015a23 
+ 00030230  0x00006080 setsect  0x00000002 , 0x0003f9b0 
+ 00030231  0x00006081 setsect  0x00000003 , 0x00003949 
+ 00030232  0x00006082 istore  0x00000009 , 0x00000005 
+ 00030233  0x00006083 setsect  0x00000000 , 0x00013a51 
+ 00030234  0x00006084 setsect  0x00000001 , 0x000153fd 
+ 00030235  0x00006085 setsect  0x00000002 , 0x0003372a 
+ 00030236  0x00006086 setsect  0x00000003 , 0x0000f1bb 
+ 00030237  0x00006087 istore  0x00000009 , 0x00000005 
+ 00030238  0x00006088 setsect  0x00000000 , 0x0003ae85 
+ 00030239  0x00006089 setsect  0x00000001 , 0x0001eed9 
+ 00030240  0x0000608a setsect  0x00000002 , 0x00009e66 
+ 00030241  0x0000608b setsect  0x00000003 , 0x000001a8 
+ 00030242  0x0000608c istore  0x00000008 , 0x00000005 
+ 00030243  0x0000608d rtn 
+ 00030244  0x00006092 setarg  0x0000764c 
+ 00030245  0x00006093 store  0x00000002 , 0x0000428e 
+ 00030246  0x00006094 setarg  0x0000770f 
+ 00030247  0x00006095 store  0x00000002 , 0x00004290 
+ 00030248  0x00006096 setarg  0x000076ac 
+ 00030249  0x00006097 store  0x00000002 , 0x00004292 
+ 00030250  0x00006098 setarg  0x00007710 
+ 00030251  0x00006099 store  0x00000002 , 0x0000428a 
+ 00030252  0x0000609a setarg  0x00007718 
+ 00030253  0x0000609b store  0x00000002 , 0x00004294 
+ 00030254  0x0000609c set1  0x00000025 , 0x00000000 
+ 00030255  0x0000609d bpatch  0x000000f9 , 0x0000403f 
+ 00030256  0x0000609e rtn  0x0000002b 
+ 00030257  0x000060a0 hjam  0x00000000 , 0x00008081 
+ 00030258  0x000060a1 call  0x0000763f 
+ 00030259  0x000060a3 setarg  0x00007717 
+ 00030260  0x000060a4 store  0x00000002 , 0x00004288 
+ 00030261  0x000060a6 jam  0x00000000 , 0x0000480e 
+ 00030262  0x000060a7 jam  0x00000000 , 0x0000480a 
+ 00030263  0x000060a8 jam  0x00000000 , 0x0000480b 
+ 00030264  0x000060a9 setarg  0x00000000 
+ 00030265  0x000060aa store  0x00000004 , 0x00004800 
+ 00030266  0x000060ab call  0x00003f23 
+ 00030267  0x000060ac branch  0x00003f79 , 0x00000034 
+ 00030268  0x000060ad call  0x00003f96 
+ 00030269  0x000060ae call  0x00003f7e 
+ 00030270  0x000060af branch  0x00003f6e 
+ 00030271  0x000060b2 fetcht  0x00000001 , 0x0000480f 
+ 00030272  0x000060b3 call  0x000069d1 
+ 00030273  0x000060b4 fetcht  0x00000001 , 0x00004810 
+ 00030274  0x000060b5 branch  0x000069d1 
+ 00030275  0x000060b8 set1  0x00000025 , 0x00000000 
+ 00030276  0x000060b9 bpatch  0x000000fa , 0x0000403f 
+ 00030277  0x000060ba fetcht  0x00000004 , 0x00004806 
+ 00030278  0x000060bb deposit  0x00000022 
+ 00030279  0x000060bc store  0x00000004 , 0x00004806 
+ 00030280  0x000060bd isub  0x00000002 , 0x0000003f 
+ 00030281  0x000060be nrtn  0x00000002 
+ 00030282  0x000060bf sub  0x0000003f , 0x000000c8 , 0x0000003f 
+ 00030283  0x000060c0 rtn 
+ 00030284  0x000060c3 fetch  0x00000001 , 0x000042bc 
+ 00030285  0x000060c4 rtnne  0x0000003f 
+ 00030286  0x000060c6 set1  0x00000025 , 0x00000000 
+ 00030287  0x000060c7 bpatch  0x000000fb , 0x0000403f 
+ 00030288  0x000060c8 fetch  0x00000001 , 0x00004132 
+ 00030289  0x000060c9 rtnne  0x00000009 
+ 00030290  0x000060ca disable  0x00000028 
+ 00030291  0x000060cb call  0x0000769b 
+ 00030292  0x000060cc nrtn  0x00000028 
+ 00030293  0x000060cd disable  0x00000028 
+ 00030294  0x000060ce fetch  0x00000001 , 0x00004133 
+ 00030295  0x000060cf beq  0x00000003 , 0x00007706 
+ 00030296  0x000060d1 fetch  0x00000001 , 0x0000480b 
+ 00030297  0x000060d2 beq  0x00000001 , 0x00007663 
+ 00030298  0x000060d3 beq  0x00000002 , 0x0000767d 
+ 00030299  0x000060d4 call  0x00007643 
+ 00030300  0x000060d5 branch  0x00007660 , 0x00000002 
+ 00030301  0x000060d7 fetch  0x00000001 , 0x0000480a 
+ 00030302  0x000060d8 bbit1  0x00000000 , 0x00007674 
+ 00030303  0x000060d9 bbit1  0x00000001 , 0x00007682 
+ 00030304  0x000060dc jam  0x00000000 , 0x0000480a 
+ 00030305  0x000060dd jam  0x00000000 , 0x0000480b 
+ 00030306  0x000060de rtn 
+ 00030307  0x000060e2 jam  0x00000000 , 0x0000480b 
+ 00030308  0x000060e3 call  0x00007bde 
+ 00030309  0x000060e4 fetch  0x00000001 , 0x00004811 
+ 00030310  0x000060e5 beq  0x00000001 , 0x0000766a 
+ 00030311  0x000060e8 jam  0x00000005 , 0x00004805 
+ 00030312  0x000060e9 jam  0x00000003 , 0x00004800 
+ 00030313  0x000060ea branch  0x00007688 
+ 00030314  0x000060ec jam  0x00000000 , 0x0000480e 
+ 00030315  0x000060ed branch  0x0000766c 
+ 00030316  0x000060f0 jam  0x00000002 , 0x0000480e 
+ 00030317  0x000060f1 branch  0x00007684 
+ 00030318  0x000060f3 jam  0x00000003 , 0x0000480e 
+ 00030319  0x000060f4 branch  0x0000767f 
+ 00030320  0x000060f6 jam  0x00000004 , 0x0000480e 
+ 00030321  0x000060f7 branch  0x00007678 
+ 00030322  0x000060f9 jam  0x00000000 , 0x0000480e 
+ 00030323  0x000060fa branch  0x00007667 
+ 00030324  0x000060fd jam  0x00000001 , 0x0000480b 
+ 00030325  0x000060fe call  0x00007be7 
+ 00030326  0x000060ff fetch  0x00000001 , 0x00004811 
+ 00030327  0x00006100 beq  0x00000001 , 0x0000767c 
+ 00030328  0x00006103 jam  0x00000005 , 0x00004805 
+ 00030329  0x00006104 setarg  0x00020003 
+ 00030330  0x00006105 store  0x00000003 , 0x00004800 
+ 00030331  0x00006106 branch  0x00007688 
+ 00030332  0x00006108 rtn 
+ 00030333  0x0000610b jam  0x00000000 , 0x0000480b 
+ 00030334  0x0000610c call  0x00007bde 
+ 00030335  0x0000610e jam  0x0000000a , 0x00004805 
+ 00030336  0x0000610f jam  0x00000001 , 0x00004800 
+ 00030337  0x00006110 branch  0x00007688 
+ 00030338  0x00006112 jam  0x00000002 , 0x0000480b 
+ 00030339  0x00006113 call  0x00007be7 
+ 00030340  0x00006115 jam  0x0000000a , 0x00004805 
+ 00030341  0x00006116 jam  0x00000001 , 0x00004800 
+ 00030342  0x00006117 setarg  0x00280000 
+ 00030343  0x00006118 store  0x00000003 , 0x00004801 
+ 00030344  0x0000611b set1  0x00000025 , 0x00000000 
+ 00030345  0x0000611c bpatch  0x000000fc , 0x0000403f 
+ 00030346  0x0000611d fetch  0x00000001 , 0x00004805 
+ 00030347  0x0000611e copy  0x0000003f , 0x00000011 
+ 00030348  0x0000611f call  0x00004b2c 
+ 00030349  0x00006120 fetch  0x00000002 , 0x000042b7 
+ 00030350  0x00006121 istore  0x00000002 , 0x00000005 
+ 00030351  0x00006122 setarg  0x000000a1 
+ 00030352  0x00006123 istore  0x00000001 , 0x00000005 
+ 00030353  0x00006124 fetcht  0x00000004 , 0x00004800 
+ 00030354  0x00006125 istoret  0x00000008 , 0x00000005 
+ 00030355  0x00006126 setarg  0x00000000 
+ 00030356  0x00006127 istore  0x00000001 , 0x00000005 
+ 00030357  0x00006128 store  0x00000004 , 0x00004800 
+ 00030358  0x0000612a fetch  0x00000001 , 0x0000480e 
+ 00030359  0x0000612b beq  0x00000002 , 0x0000766e 
+ 00030360  0x0000612c beq  0x00000003 , 0x00007670 
+ 00030361  0x0000612d beq  0x00000004 , 0x00007672 
+ 00030362  0x0000612e rtn 
+ 00030363  0x00006131 fetcht  0x00000001 , 0x0000480f 
+ 00030364  0x00006132 call  0x000069e5 
+ 00030365  0x00006133 setarg  0x00000000 
+ 00030366  0x00006134 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00030367  0x00006135 store  0x00000001 , 0x00004804 
+ 00030368  0x00006136 fetcht  0x00000001 , 0x00004810 
+ 00030369  0x00006137 call  0x000069e5 
+ 00030370  0x00006138 setarg  0x00000000 
+ 00030371  0x00006139 setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00030372  0x0000613a fetcht  0x00000001 , 0x00004804 
+ 00030373  0x0000613b ior  0x00000002 , 0x0000003f 
+ 00030374  0x0000613c fetcht  0x00000001 , 0x0000480a 
+ 00030375  0x0000613d store  0x00000001 , 0x0000480a 
+ 00030376  0x0000613e ixor  0x00000002 , 0x0000003e 
+ 00030377  0x0000613f rtn  0x00000005 
+ 00030378  0x00006140 enable  0x00000028 
+ 00030379  0x00006141 rtn 
+ 00030380  0x00006144 copy  0x00000013 , 0x0000003f 
+ 00030381  0x00006145 beq  0x00000005 , 0x000076d8 
+ 00030382  0x00006146 beq  0x00000006 , 0x000076da 
+ 00030383  0x00006147 beq  0x00000007 , 0x000076dd 
+ 00030384  0x00006148 beq  0x00000027 , 0x000076e1 
+ 00030385  0x00006149 beq  0x00000002 , 0x000076c9 
+ 00030386  0x0000614a beq  0x00000004 , 0x000076d0 
+ 00030387  0x0000614b beq  0x00000013 , 0x000076d0 
+ 00030388  0x0000614c beq  0x00000001 , 0x000076c6 
+ 00030389  0x0000614d beq  0x00000012 , 0x000076c0 
+ 00030390  0x0000614e beq  0x0000002e , 0x00003f57 
+ 00030391  0x0000614f and  0x0000003f , 0x0000000f , 0x00000002 
+ 00030392  0x00006150 and_into  0x000000f0 , 0x0000003f 
+ 00030393  0x00006151 beq  0x00000050 , 0x000076e4 
+ 00030394  0x00006152 rtn 
+ 00030395  0x00006155 fetch  0x00000001 , 0x000047f2 
+ 00030396  0x00006156 rtn  0x00000034 
+ 00030397  0x00006157 increase  0xffffffff , 0x0000003f 
+ 00030398  0x00006158 store  0x00000001 , 0x000047f2 
+ 00030399  0x00006159 nrtn  0x00000034 
+ 00030400  0x0000615b jam  0x00000001 , 0x0000427f 
+ 00030401  0x0000615c call  0x00003fa4 
+ 00030402  0x0000615d call  0x00003fa2 
+ 00030403  0x0000615e call  0x00003f7e 
+ 00030404  0x0000615f call  0x00003f98 
+ 00030405  0x00006160 branch  0x00003f9e 
+ 00030406  0x00006164 jam  0x00000000 , 0x0000480d 
+ 00030407  0x00006165 jam  0x00000000 , 0x0000480c 
+ 00030408  0x00006166 rtn 
+ 00030409  0x00006169 set1  0x00000025 , 0x00000000 
+ 00030410  0x0000616a bpatch  0x000000fd , 0x0000403f 
+ 00030411  0x0000616b jam  0x00000000 , 0x0000429d 
+ 00030412  0x0000616c jam  0x00000000 , 0x0000480c 
+ 00030413  0x0000616d jam  0x00000000 , 0x0000480d 
+ 00030414  0x0000616e fetch  0x00000002 , 0x000042a0 
+ 00030415  0x0000616f bbit0  0x00000003 , 0x000076d4 
+ 00030416  0x00006172 fetch  0x00000002 , 0x000047fe 
+ 00030417  0x00006173 store  0x00000002 , 0x000047f0 
+ 00030418  0x00006175 call  0x00003f12 
+ 00030419  0x00006176 branch  0x00003f7b 
+ 00030420  0x00006179 bbit0  0x00000001 , 0x000076d6 
+ 00030421  0x0000617a branch  0x000076d0 
+ 00030422  0x0000617d bbit0  0x00000002 , 0x000076d2 
+ 00030423  0x0000617e branch  0x000076d0 
+ 00030424  0x00006182 call  0x00003f7e 
+ 00030425  0x00006183 branch  0x00003f98 
+ 00030426  0x00006186 setarg  0x00000002 
+ 00030427  0x00006187 store  0x00000001 , 0x000047f2 
+ 00030428  0x00006188 rtn 
+ 00030429  0x0000618b jam  0x00000000 , 0x0000480c 
+ 00030430  0x0000618c setarg  0x00000001 
+ 00030431  0x0000618d store  0x00000001 , 0x0000480d 
+ 00030432  0x0000618e rtn 
+ 00030433  0x00006191 setarg  0x00000005 
+ 00030434  0x00006192 store  0x00000001 , 0x0000480c 
+ 00030435  0x00006193 rtn 
+ 00030436  0x00006196 set1  0x00000025 , 0x00000000 
+ 00030437  0x00006197 bpatch  0x000000fe , 0x0000403f 
+ 00030438  0x00006198 storet  0x00000001 , 0x00000259 
+ 00030439  0x0000619a fetch  0x00000001 , 0x00000259 
+ 00030440  0x0000619b rtn  0x00000034 
+ 00030441  0x0000619c increase  0xffffffff , 0x0000003f 
+ 00030442  0x0000619d store  0x00000001 , 0x00000259 
+ 00030443  0x0000619e call  0x000076ef 
+ 00030444  0x0000619f call  0x000076bb 
+ 00030445  0x000061a0 call  0x000076fa 
+ 00030446  0x000061a1 branch  0x000076e7 
+ 00030447  0x000061a4 fetch  0x00000001 , 0x0000480c 
+ 00030448  0x000061a5 rtn  0x00000034 
+ 00030449  0x000061a6 fetch  0x00000001 , 0x0000480c 
+ 00030450  0x000061a7 increase  0xffffffff , 0x0000003f 
+ 00030451  0x000061a8 store  0x00000001 , 0x0000480c 
+ 00030452  0x000061a9 nrtn  0x00000034 
+ 00030453  0x000061aa fetch  0x00000001 , 0x000002e6 
+ 00030454  0x000061ab set1  0x00000000 , 0x0000003f 
+ 00030455  0x000061ac set1  0x00000007 , 0x0000003f 
+ 00030456  0x000061ad store  0x00000001 , 0x000002e6 
+ 00030457  0x000061ae rtn 
+ 00030458  0x000061b1 fetch  0x00000001 , 0x0000480d 
+ 00030459  0x000061b2 rtn  0x00000034 
+ 00030460  0x000061b3 fetch  0x00000001 , 0x0000480d 
+ 00030461  0x000061b4 increase  0xffffffff , 0x0000003f 
+ 00030462  0x000061b5 store  0x00000001 , 0x0000480d 
+ 00030463  0x000061b6 nrtn  0x00000034 
+ 00030464  0x000061b7 branch  0x00003f77 
+ 00030465  0x000061ba set1  0x00000025 , 0x00000000 
+ 00030466  0x000061bb bpatch  0x000000ff , 0x0000403f 
+ 00030467  0x000061bc fetch  0x00000001 , 0x00004133 
+ 00030468  0x000061bd rtnne  0x00000003 
+ 00030469  0x000061be branch  0x0000764e 
+ 00030470  0x000061c0 call  0x00007643 
+ 00030471  0x000061c1 rtn  0x00000002 
+ 00030472  0x000061c2 fetch  0x00000001 , 0x0000480a 
+ 00030473  0x000061c3 rtn  0x00000034 
+ 00030474  0x000061c4 call  0x00003f23 
+ 00030475  0x000061c5 branch  0x00003f79 , 0x00000034 
+ 00030476  0x000061c6 call  0x00003f96 
+ 00030477  0x000061c7 call  0x00003f7e 
+ 00030478  0x000061c8 branch  0x00003f6e 
+ 00030479  0x000061cc branch  0x00007701 
+ 00030480  0x000061d0 fetcht  0x00000001 , 0x0000480f 
+ 00030481  0x000061d1 call  0x000069b4 
+ 00030482  0x000061d2 fetch  0x00000001 , 0x00004811 
+ 00030483  0x000061d3 bne  0x00000001 , 0x00007715 
+ 00030484  0x000061d4 rtn 
+ 00030485  0x000061d6 fetcht  0x00000001 , 0x00004810 
+ 00030486  0x000061d7 branch  0x000069b4 
+ 00030487  0x000061da branch  0x0000763f 
+ 00030488  0x000061de branch  0x00003f9a 
+ 00030489  0x000061e3 set1  0x00000025 , 0x00000000 
+ 00030490  0x000061e4 bpatch  0x000000f2 , 0x0000403e 
+ 00030491  0x000061e5 fetch  0x00000001 , 0x000047dc 
+ 00030492  0x000061e6 branch  0x00006009 , 0x00000034 
+ 00030493  0x000061e7 call  0x00006003 
+ 00030494  0x000061e8 setarg  0x00000000 
+ 00030495  0x000061e9 store  0x00000008 , 0x000007da 
+ 00030496  0x000061ea store  0x00000004 , 0x000007e2 
+ 00030497  0x000061ec arg  0x000007e9 , 0x00000005 
+ 00030498  0x000061ed istore  0x00000007 , 0x00000005 
+ 00030499  0x000061ee jam  0x00000000 , 0x000007e0 
+ 00030500  0x000061ef branch  0x000077a4 
+ 00030501  0x000061f2 jam  0x00000001 , 0x000007dc 
+ 00030502  0x000061f3 branch  0x0000772a 
+ 00030503  0x000061f5 fetch  0x00000001 , 0x00004793 
+ 00030504  0x000061f6 beq  0x00000001 , 0x000077c2 
+ 00030505  0x000061f7 branch  0x00003bf1 
+ 00030506  0x000061f9 fetch  0x00000001 , 0x00004793 
+ 00030507  0x000061fa beq  0x00000001 , 0x0000772d 
+ 00030508  0x000061fb branch  0x000077a4 
+ 00030509  0x000061fe call  0x000077c2 
+ 00030510  0x000061ff fetch  0x00000001 , 0x000007db 
+ 00030511  0x00006200 nrtn  0x00000034 
+ 00030512  0x00006201 jam  0x00000003 , 0x000007da 
+ 00030513  0x00006202 rtn 
+ 00030514  0x00006205 fetch  0x00000001 , 0x000007de 
+ 00030515  0x00006206 bne  0x00000000 , 0x00007750 
+ 00030516  0x00006207 call  0x0000774d 
+ 00030517  0x00006208 arg  0x00000898 , 0x00000005 
+ 00030518  0x00006209 setarg  0x00000848 
+ 00030519  0x0000620a istore  0x00000002 , 0x00000005 
+ 00030520  0x0000620b setarg  0x000047c4 
+ 00030521  0x0000620c istore  0x00000002 , 0x00000005 
+ 00030522  0x0000620d setarg  0x00000808 
+ 00030523  0x0000620e istore  0x00000002 , 0x00000005 
+ 00030524  0x0000620f branch  0x00007744 
+ 00030525  0x00006211 arg  0x00000898 , 0x00000005 
+ 00030526  0x00006212 setarg  0x00000858 
+ 00030527  0x00006213 istore  0x00000002 , 0x00000005 
+ 00030528  0x00006214 setarg  0x00000808 
+ 00030529  0x00006215 istore  0x00000002 , 0x00000005 
+ 00030530  0x00006216 setarg  0x000047c4 
+ 00030531  0x00006217 istore  0x00000002 , 0x00000005 
+ 00030532  0x00006219 call  0x00007ad2 
+ 00030533  0x0000621a fetch  0x00000001 , 0x000007db 
+ 00030534  0x0000621b beq  0x00000004 , 0x0000774a 
+ 00030535  0x0000621c jam  0x00000001 , 0x000007dc 
+ 00030536  0x0000621d jam  0x00000005 , 0x000007da 
+ 00030537  0x0000621e rtn 
+ 00030538  0x00006220 jam  0x00000014 , 0x000007db 
+ 00030539  0x00006221 call  0x00007727 
+ 00030540  0x00006222 branch  0x0000780f 
+ 00030541  0x00006225 arg  0x00000838 , 0x00000005 
+ 00030542  0x00006226 force  0x00000008 , 0x00000007 
+ 00030543  0x00006227 branch  0x000077db 
+ 00030544  0x0000622a jam  0x00000001 , 0x000007dc 
+ 00030545  0x0000622b rtn 
+ 00030546  0x0000622f arg  0x000006c3 , 0x00000005 
+ 00030547  0x00006230 fetch  0x00000006 , 0x00004140 
+ 00030548  0x00006231 istore  0x00000006 , 0x00000005 
+ 00030549  0x00006232 fetch  0x00000006 , 0x00000040 
+ 00030550  0x00006233 istore  0x00000006 , 0x00000005 
+ 00030551  0x00006234 fetch  0x00000003 , 0x000007e9 
+ 00030552  0x00006235 istore  0x00000003 , 0x00000005 
+ 00030553  0x00006237 call  0x00007b3c 
+ 00030554  0x00006239 arg  0x00000868 , 0x00000011 
+ 00030555  0x0000623a arg  0x00000878 , 0x00000012 
+ 00030556  0x0000623b force  0x00000004 , 0x00000007 
+ 00030557  0x0000623c call  0x000077e0 
+ 00030558  0x0000623d nbranch  0x00007768 , 0x00000001 
+ 00030559  0x00006240 fetch  0x00000001 , 0x000007db 
+ 00030560  0x00006241 beq  0x00000009 , 0x00007765 
+ 00030561  0x00006242 jam  0x0000000a , 0x000007da 
+ 00030562  0x00006243 jam  0x00000001 , 0x000007dc 
+ 00030563  0x00006244 jam  0x00000003 , 0x0000007c 
+ 00030564  0x00006245 rtn 
+ 00030565  0x00006247 jam  0x00000003 , 0x0000007c 
+ 00030566  0x00006248 jam  0x00000015 , 0x000007db 
+ 00030567  0x00006249 branch  0x0000780f 
+ 00030568  0x0000624d fetch  0x00000001 , 0x000007db 
+ 00030569  0x0000624e beq  0x00000009 , 0x0000776e 
+ 00030570  0x0000624f jam  0x00000000 , 0x000007da 
+ 00030571  0x00006250 jam  0x00000004 , 0x0000007c 
+ 00030572  0x00006252 jam  0x00000005 , 0x0000007e 
+ 00030573  0x00006253 rtn 
+ 00030574  0x00006255 jam  0x00000004 , 0x0000007c 
+ 00030575  0x00006256 jam  0x00000000 , 0x000007db 
+ 00030576  0x00006257 rtn 
+ 00030577  0x0000625a fetch  0x00000001 , 0x000007df 
+ 00030578  0x0000625b beq  0x00000001 , 0x00007775 
+ 00030579  0x0000625c jam  0x0000000a , 0x000007db 
+ 00030580  0x0000625d branch  0x0000780f 
+ 00030581  0x0000625f arg  0x000006c3 , 0x00000005 
+ 00030582  0x00006260 fetch  0x00000006 , 0x00000040 
+ 00030583  0x00006261 istore  0x00000006 , 0x00000005 
+ 00030584  0x00006262 fetch  0x00000006 , 0x00004140 
+ 00030585  0x00006263 istore  0x00000006 , 0x00000005 
+ 00030586  0x00006264 fetch  0x00000003 , 0x000007e6 
+ 00030587  0x00006265 istore  0x00000003 , 0x00000005 
+ 00030588  0x00006267 call  0x00007b4a 
+ 00030589  0x00006268 fetch  0x00000001 , 0x000007db 
+ 00030590  0x00006269 beq  0x0000000a , 0x00007782 
+ 00030591  0x0000626a jam  0x0000000b , 0x000007da 
+ 00030592  0x0000626b jam  0x00000001 , 0x000007dc 
+ 00030593  0x0000626c rtn 
+ 00030594  0x0000626e jam  0x0000000b , 0x000007db 
+ 00030595  0x0000626f jam  0x00000001 , 0x000007dd 
+ 00030596  0x00006270 rtn 
+ 00030597  0x00006273 arg  0x00000898 , 0x00000005 
+ 00030598  0x00006274 fetch  0x00000006 , 0x00000040 
+ 00030599  0x00006275 istore  0x00000006 , 0x00000005 
+ 00030600  0x00006276 fetch  0x00000006 , 0x00004140 
+ 00030601  0x00006277 istore  0x00000006 , 0x00000005 
+ 00030602  0x00006278 setarg  0x00000848 
+ 00030603  0x00006279 istore  0x00000002 , 0x00000005 
+ 00030604  0x0000627a setarg  0x00000858 
+ 00030605  0x0000627b istore  0x00000002 , 0x00000005 
+ 00030606  0x0000627c branch  0x00007799 
+ 00030607  0x0000627e jam  0x0000000f , 0x000007da 
+ 00030608  0x0000627f arg  0x00000898 , 0x00000005 
+ 00030609  0x00006280 fetch  0x00000006 , 0x00004140 
+ 00030610  0x00006281 istore  0x00000006 , 0x00000005 
+ 00030611  0x00006282 fetch  0x00000006 , 0x00000040 
+ 00030612  0x00006283 istore  0x00000006 , 0x00000005 
+ 00030613  0x00006284 setarg  0x00000858 
+ 00030614  0x00006285 istore  0x00000002 , 0x00000005 
+ 00030615  0x00006286 setarg  0x00000848 
+ 00030616  0x00006287 istore  0x00000002 , 0x00000005 
+ 00030617  0x0000628a arg  0x000006c3 , 0x00000005 
+ 00030618  0x0000628b fetch  0x00000006 , 0x00000898 
+ 00030619  0x0000628c istore  0x00000006 , 0x00000005 
+ 00030620  0x0000628d fetch  0x00000006 , 0x0000089e 
+ 00030621  0x0000628e istore  0x00000006 , 0x00000005 
+ 00030622  0x00006290 call  0x00007b06 
+ 00030623  0x00006293 jam  0x00000001 , 0x0000425e 
+ 00030624  0x00006294 arg  0x00004262 , 0x00000005 
+ 00030625  0x00006295 arg  0x00000868 , 0x00000006 
+ 00030626  0x00006296 call  0x00007e35 
+ 00030627  0x00006297 branch  0x00003229 
+ 00030628  0x0000629b set1  0x00000025 , 0x00000000 
+ 00030629  0x0000629c bpatch  0x000000f3 , 0x0000403e 
+ 00030630  0x0000629d fetch  0x00000001 , 0x00004793 
+ 00030631  0x0000629e rtnne  0x00000000 
+ 00030632  0x0000629f fetch  0x00000001 , 0x000007de 
+ 00030633  0x000062a0 rtnne  0x00000000 
+ 00030634  0x000062a1 arg  0x00004794 , 0x00000005 
+ 00030635  0x000062a2 force  0x0000000b , 0x00000007 
+ 00030636  0x000062a3 call  0x000077db 
+ 00030637  0x000062a4 random  0x0000003f 
+ 00030638  0x000062a5 rshift  0x0000003f , 0x0000003f 
+ 00030639  0x000062a6 istore  0x00000002 , 0x00000005 
+ 00030640  0x000062a8 arg  0x0000065a , 0x00000005 
+ 00030641  0x000062a9 arg  0x00004794 , 0x00000006 
+ 00030642  0x000062aa call  0x00007e33 
+ 00030643  0x000062ac arg  0x00000582 , 0x00000005 
+ 00030644  0x000062ad arg  0x0000078a , 0x00000006 
+ 00030645  0x000062ae call  0x00007e2d 
+ 00030646  0x000062b0 arg  0x000005b2 , 0x00000005 
+ 00030647  0x000062b1 call  0x00007e3a 
+ 00030648  0x000062b2 jam  0x00000001 , 0x000005b2 
+ 00030649  0x000062b4 call  0x00007b7f 
+ 00030650  0x000062b5 jam  0x00000001 , 0x000007de 
+ 00030651  0x000062b6 rtn 
+ 00030652  0x000062b9 arg  0x000047ac , 0x00000005 
+ 00030653  0x000062ba arg  0x000005ca , 0x00000006 
+ 00030654  0x000062bb call  0x00007e2d 
+ 00030655  0x000062bc jam  0x00000001 , 0x00004793 
+ 00030656  0x000062bd jam  0x00000000 , 0x000007de 
+ 00030657  0x000062be rtn 
+ 00030658  0x000062c1 set1  0x00000025 , 0x00000000 
+ 00030659  0x000062c2 bpatch  0x000000f4 , 0x0000403e 
+ 00030660  0x000062c3 fetch  0x00000001 , 0x000007e5 
+ 00030661  0x000062c4 rtnne  0x00000000 
+ 00030662  0x000062c5 fetch  0x00000001 , 0x000007de 
+ 00030663  0x000062c6 rtnne  0x00000000 
+ 00030664  0x000062c8 arg  0x0000065a , 0x00000005 
+ 00030665  0x000062c9 arg  0x00004794 , 0x00000006 
+ 00030666  0x000062ca call  0x00007e33 
+ 00030667  0x000062cc arg  0x00000582 , 0x00000005 
+ 00030668  0x000062cd arg  0x000007f0 , 0x00000006 
+ 00030669  0x000062ce call  0x00007e2d 
+ 00030670  0x000062d0 arg  0x000005b2 , 0x00000005 
+ 00030671  0x000062d1 call  0x00007e3a 
+ 00030672  0x000062d2 jam  0x00000001 , 0x000005b2 
+ 00030673  0x000062d4 call  0x00007b7f 
+ 00030674  0x000062d5 jam  0x00000002 , 0x000007de 
+ 00030675  0x000062d6 rtn 
+ 00030676  0x000062d9 jam  0x00000001 , 0x000007df 
+ 00030677  0x000062da arg  0x00000820 , 0x00000005 
+ 00030678  0x000062db arg  0x000005ca , 0x00000006 
+ 00030679  0x000062dc call  0x00007e33 
+ 00030680  0x000062dd jam  0x00000001 , 0x000007e5 
+ 00030681  0x000062de jam  0x00000000 , 0x000007de 
+ 00030682  0x000062df rtn 
+ 00030683  0x000062e2 increase  0xffffffff , 0x00000007 
+ 00030684  0x000062e3 nrtn  0x00000002 
+ 00030685  0x000062e4 random  0x0000003f 
+ 00030686  0x000062e5 istore  0x00000002 , 0x00000005 
+ 00030687  0x000062e6 branch  0x000077db 
+ 00030688  0x000062e8 increase  0xffffffff , 0x00000007 
+ 00030689  0x000062e9 nbranch  0x000077ec , 0x00000002 
+ 00030690  0x000062ea ifetch  0x00000004 , 0x00000011 
+ 00030691  0x000062eb copy  0x0000003f , 0x00000002 
+ 00030692  0x000062ec ifetch  0x00000004 , 0x00000012 
+ 00030693  0x000062ed iflip  0x00000002 , 0x0000003f 
+ 00030694  0x000062ee nbranch  0x000077ea , 0x00000005 
+ 00030695  0x000062ef increase  0x00000004 , 0x00000011 
+ 00030696  0x000062f0 increase  0x00000004 , 0x00000012 
+ 00030697  0x000062f1 branch  0x000077e0 
+ 00030698  0x000062f3 disable  0x00000001 
+ 00030699  0x000062f4 rtn 
+ 00030700  0x000062f6 enable  0x00000001 
+ 00030701  0x000062f7 rtn 
+ 00030702  0x000062ff set1  0x00000025 , 0x00000000 
+ 00030703  0x00006300 bpatch  0x000000f5 , 0x0000403e 
+ 00030704  0x00006301 fetch  0x00000001 , 0x000007dc 
+ 00030705  0x00006302 rtn  0x00000034 
+ 00030706  0x00006303 jam  0x00000000 , 0x000007dc 
+ 00030707  0x00006304 fetch  0x00000001 , 0x000007da 
+ 00030708  0x00006305 beq  0x00000003 , 0x00006117 
+ 00030709  0x00006306 beq  0x00000005 , 0x00006134 
+ 00030710  0x00006307 beq  0x00000007 , 0x0000613f 
+ 00030711  0x00006308 beq  0x0000000b , 0x00006155 
+ 00030712  0x00006309 beq  0x00000002 , 0x00007725 
+ 00030713  0x0000630a beq  0x00000004 , 0x00007732 
+ 00030714  0x0000630b beq  0x00000009 , 0x00007752 
+ 00030715  0x0000630c beq  0x0000000a , 0x00007771 
+ 00030716  0x0000630d beq  0x0000000c , 0x0000778f 
+ 00030717  0x0000630f rtn 
+ 00030718  0x00006312 set1  0x00000025 , 0x00000000 
+ 00030719  0x00006313 bpatch  0x000000f6 , 0x0000403e 
+ 00030720  0x00006314 fetch  0x00000001 , 0x000007dd 
+ 00030721  0x00006315 rtn  0x00000034 
+ 00030722  0x00006316 jam  0x00000000 , 0x000007dd 
+ 00030723  0x00006317 fetch  0x00000001 , 0x000007db 
+ 00030724  0x00006318 beq  0x00000012 , 0x000060f7 
+ 00030725  0x00006319 beq  0x00000013 , 0x000060ff 
+ 00030726  0x0000631a beq  0x00000003 , 0x00006103 
+ 00030727  0x0000631b beq  0x00000004 , 0x0000773d 
+ 00030728  0x0000631c beq  0x00000014 , 0x00006107 
+ 00030729  0x0000631d beq  0x00000007 , 0x00006115 
+ 00030730  0x0000631e beq  0x0000000a , 0x00007771 
+ 00030731  0x0000631f beq  0x0000000b , 0x00006154 
+ 00030732  0x00006320 beq  0x00000009 , 0x00007752 
+ 00030733  0x00006321 beq  0x00000015 , 0x0000614e 
+ 00030734  0x00006322 rtn 
+ 00030735  0x00006325 jam  0x00000001 , 0x000007dd 
+ 00030736  0x00006326 rtn 
+ 00030737  0x00006329 jam  0x00000000 , 0x000007dd 
+ 00030738  0x0000632a rtn 
+ 00030739  0x0000632c set1  0x00000025 , 0x00000000 
+ 00030740  0x0000632d bpatch  0x000000f7 , 0x0000403e 
+ 00030741  0x0000632e fetch  0x00000001 , 0x000007de 
+ 00030742  0x0000632f rtn  0x00000034 
+ 00030743  0x00006330 increase  0x00000080 , 0x0000003f 
+ 00030744  0x00006331 store  0x00000001 , 0x000007de 
+ 00030745  0x00006332 rtnbit1  0x00000007 
+ 00030746  0x00006333 fetch  0x00000001 , 0x00000581 
+ 00030747  0x00006334 branch  0x0000781d , 0x00000034 
+ 00030748  0x00006335 branch  0x00007b8a 
+ 00030749  0x00006338 call  0x00007a0c 
+ 00030750  0x00006339 fetch  0x00000001 , 0x000007de 
+ 00030751  0x0000633a beq  0x00000001 , 0x000077bc 
+ 00030752  0x0000633b beq  0x00000002 , 0x000077d4 
+ 00030753  0x0000633c rtn 
+ 00030754  0x00006340 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00030755  0x00006341 rshift3  0x0000003f , 0x0000003f 
+ 00030756  0x00006342 iadd  0x00000006 , 0x00000006 
+ 00030757  0x00006343 ifetch  0x00000001 , 0x00000006 
+ 00030758  0x00006344 qisolate0  0x0000003f 
+ 00030759  0x00006345 rtn 
+ 00030760  0x00006349 call  0x00007e33 
+ 00030761  0x0000634a call  0x00007e33 
+ 00030762  0x0000634b branch  0x00007e33 
+ 00030763  0x0000634f ifetch  0x00000008 , 0x00000006 
+ 00030764  0x00006350 nrtn  0x00000034 
+ 00030765  0x00006351 ifetch  0x00000008 , 0x00000006 
+ 00030766  0x00006352 nrtn  0x00000034 
+ 00030767  0x00006353 ifetch  0x00000008 , 0x00000006 
+ 00030768  0x00006354 rtn 
+ 00030769  0x00006359 force  0x00000006 , 0x00000039 
+ 00030770  0x0000635b ifetch  0x00000004 , 0x00000011 
+ 00030771  0x0000635c iforce  0x00000002 
+ 00030772  0x0000635d ifetch  0x00000004 , 0x00000012 
+ 00030773  0x0000635e isub  0x00000002 , 0x0000003e 
+ 00030774  0x0000635f nrtn  0x00000005 
+ 00030775  0x00006360 increase  0x00000004 , 0x00000011 
+ 00030776  0x00006361 increase  0x00000004 , 0x00000012 
+ 00030777  0x00006362 loop  0x00007832 
+ 00030778  0x00006363 rtn 
+ 00030779  0x00006367 force  0x00000006 , 0x00000039 
+ 00030780  0x00006368 increase  0x00000014 , 0x00000011 
+ 00030781  0x00006369 increase  0x00000014 , 0x00000012 
+ 00030782  0x0000636b ifetch  0x00000004 , 0x00000012 
+ 00030783  0x0000636c iforce  0x00000002 
+ 00030784  0x0000636d ifetch  0x00000004 , 0x00000011 
+ 00030785  0x0000636e isub  0x00000002 , 0x0000003f 
+ 00030786  0x0000636f nrtn  0x00000002 
+ 00030787  0x00006370 nrtn  0x00000034 
+ 00030788  0x00006371 increase  0xfffffffc , 0x00000011 
+ 00030789  0x00006372 increase  0xfffffffc , 0x00000012 
+ 00030790  0x00006373 loop  0x0000783e 
+ 00030791  0x00006374 rtn 
+ 00030792  0x00006377 force  0x00000006 , 0x00000039 
+ 00030793  0x00006378 force  0x00000000 , 0x00000013 
+ 00030794  0x0000637a ifetch  0x00000004 , 0x00000011 
+ 00030795  0x0000637b iforce  0x00000002 
+ 00030796  0x0000637c ifetch  0x00000004 , 0x00000012 
+ 00030797  0x0000637d iadd  0x00000002 , 0x0000003f 
+ 00030798  0x0000637e iadd  0x00000013 , 0x0000003f 
+ 00030799  0x0000637f istore  0x00000004 , 0x00000005 
+ 00030800  0x00006380 isolate1  0x00000020 , 0x0000003f 
+ 00030801  0x00006381 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030802  0x00006382 increase  0x00000004 , 0x00000011 
+ 00030803  0x00006383 increase  0x00000004 , 0x00000012 
+ 00030804  0x00006384 loop  0x0000784a 
+ 00030805  0x00006385 rtn 
+ 00030806  0x00006388 force  0x00000006 , 0x00000039 
+ 00030807  0x00006389 force  0x00000000 , 0x00000013 
+ 00030808  0x0000638b ifetch  0x00000004 , 0x00000012 
+ 00030809  0x0000638c iforce  0x00000002 
+ 00030810  0x0000638d ifetch  0x00000004 , 0x00000011 
+ 00030811  0x0000638e isub  0x00000002 , 0x0000003f 
+ 00030812  0x0000638f isub  0x00000013 , 0x0000003f 
+ 00030813  0x00006390 istore  0x00000004 , 0x00000005 
+ 00030814  0x00006391 isolate1  0x00000020 , 0x0000003f 
+ 00030815  0x00006392 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030816  0x00006393 increase  0x00000004 , 0x00000011 
+ 00030817  0x00006394 increase  0x00000004 , 0x00000012 
+ 00030818  0x00006395 loop  0x00007858 
+ 00030819  0x00006396 rtn 
+ 00030820  0x00006399 force  0x00000006 , 0x00000039 
+ 00030821  0x0000639a increase  0x00000014 , 0x00000011 
+ 00030822  0x0000639c force  0x00000000 , 0x00000013 
+ 00030823  0x0000639e ifetch  0x00000004 , 0x00000011 
+ 00030824  0x0000639f isolate1  0x00000000 , 0x0000003f 
+ 00030825  0x000063a0 setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030826  0x000063a1 rshift  0x0000003f , 0x0000003f 
+ 00030827  0x000063a2 isolate1  0x00000000 , 0x00000013 
+ 00030828  0x000063a3 setflag  0x00000001 , 0x0000001f , 0x0000003f 
+ 00030829  0x000063a4 istore  0x00000004 , 0x00000011 
+ 00030830  0x000063a5 increase  0xfffffffc , 0x00000011 
+ 00030831  0x000063a6 rshift  0x00000013 , 0x00000013 
+ 00030832  0x000063a7 loop  0x00007867 
+ 00030833  0x000063a8 rtn 
+ 00030834  0x000063ab force  0x00000006 , 0x00000039 
+ 00030835  0x000063ac force  0x00000000 , 0x00000013 
+ 00030836  0x000063ae ifetch  0x00000004 , 0x00000011 
+ 00030837  0x000063af isolate1  0x0000001f , 0x0000003f 
+ 00030838  0x000063b0 setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030839  0x000063b1 lshift  0x0000003f , 0x0000003f 
+ 00030840  0x000063b2 isolate1  0x00000000 , 0x00000013 
+ 00030841  0x000063b3 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00030842  0x000063b4 istore  0x00000004 , 0x00000011 
+ 00030843  0x000063b5 increase  0x00000004 , 0x00000011 
+ 00030844  0x000063b6 rshift  0x00000013 , 0x00000013 
+ 00030845  0x000063b7 loop  0x00007874 
+ 00030846  0x000063b8 rtn 
+ 00030847  0x000063bb call  0x00007872 
+ 00030848  0x000063bd isolate1  0x00000000 , 0x00000013 
+ 00030849  0x000063be branch  0x00007888 , 0x00000001 
+ 00030850  0x000063bf arg  0x00000742 , 0x00000012 
+ 00030851  0x000063c0 copy  0x00000011 , 0x00000013 
+ 00030852  0x000063c1 increase  0xffffffe8 , 0x00000011 
+ 00030853  0x000063c2 call  0x0000783b 
+ 00030854  0x000063c3 nrtn  0x00000002 
+ 00030855  0x000063c4 copy  0x00000013 , 0x00000011 
+ 00030856  0x000063c6 increase  0xffffffe8 , 0x00000011 
+ 00030857  0x000063c7 arg  0x00000742 , 0x00000012 
+ 00030858  0x000063c8 copy  0x00000011 , 0x00000005 
+ 00030859  0x000063c9 branch  0x00007856 
+ 00030860  0x000063cd call  0x00007848 
+ 00030861  0x000063ce copy  0x00000005 , 0x00000011 
+ 00030862  0x000063cf branch  0x00007880 
+ 00030863  0x000063d2 call  0x00007856 
+ 00030864  0x000063d3 isolate0  0x00000000 , 0x00000013 
+ 00030865  0x000063d4 rtn  0x00000001 
+ 00030866  0x000063d5 arg  0x00000742 , 0x00000012 
+ 00030867  0x000063d6 add  0x00000005 , 0xffffffe8 , 0x00000011 
+ 00030868  0x000063d7 copy  0x00000011 , 0x00000005 
+ 00030869  0x000063d8 branch  0x00007848 
+ 00030870  0x000063dc copy  0x00000005 , 0x0000000b 
+ 00030871  0x000063dd copy  0x00000011 , 0x00000030 
+ 00030872  0x000063de arg  0x000006b2 , 0x00000012 
+ 00030873  0x000063df copy  0x00000012 , 0x00000005 
+ 00030874  0x000063e0 add  0x00000011 , 0x00000018 , 0x00000006 
+ 00030875  0x000063e1 ifetch  0x00000008 , 0x00000006 
+ 00030876  0x000063e2 istore  0x00000008 , 0x00000005 
+ 00030877  0x000063e3 istore  0x00000008 , 0x00000005 
+ 00030878  0x000063e4 force  0x00000000 , 0x0000003f 
+ 00030879  0x000063e5 istore  0x00000008 , 0x00000005 
+ 00030880  0x000063e6 copy  0x0000000b , 0x00000005 
+ 00030881  0x000063e7 call  0x0000788c 
+ 00030882  0x000063e8 arg  0x000006b2 , 0x00000012 
+ 00030883  0x000063e9 copy  0x00000012 , 0x00000005 
+ 00030884  0x000063ea force  0x00000000 , 0x0000003f 
+ 00030885  0x000063eb istore  0x00000008 , 0x00000005 
+ 00030886  0x000063ec add  0x00000030 , 0x00000020 , 0x00000006 
+ 00030887  0x000063ed ifetch  0x00000008 , 0x00000006 
+ 00030888  0x000063ee istore  0x00000008 , 0x00000005 
+ 00030889  0x000063ef istore  0x00000008 , 0x00000005 
+ 00030890  0x000063f0 copy  0x0000000b , 0x00000011 
+ 00030891  0x000063f1 copy  0x00000011 , 0x00000005 
+ 00030892  0x000063f2 call  0x0000788c 
+ 00030893  0x000063f3 arg  0x000006b2 , 0x00000012 
+ 00030894  0x000063f4 copy  0x00000012 , 0x00000005 
+ 00030895  0x000063f5 add  0x00000030 , 0x00000028 , 0x00000006 
+ 00030896  0x000063f6 ifetch  0x00000008 , 0x00000006 
+ 00030897  0x000063f7 istore  0x00000008 , 0x00000005 
+ 00030898  0x000063f8 istore  0x00000008 , 0x00000005 
+ 00030899  0x000063f9 istore  0x00000008 , 0x00000005 
+ 00030900  0x000063fa copy  0x0000000b , 0x00000011 
+ 00030901  0x000063fb copy  0x00000011 , 0x00000005 
+ 00030902  0x000063fc branch  0x0000788c 
+ 00030903  0x00006400 force  0x00000006 , 0x00000039 
+ 00030904  0x00006402 ifetch  0x00000004 , 0x00000006 
+ 00030905  0x00006403 iforce  0x0000002f 
+ 00030906  0x00006404 increase  0x00000001 , 0x00000038 
+ 00030907  0x00006405 loop  0x000078b8 
+ 00030908  0x00006406 rtn 
+ 00030909  0x0000640b copy  0x00000005 , 0x0000000b 
+ 00030910  0x0000640c arg  0x00000682 , 0x00000005 
+ 00030911  0x0000640d call  0x00007e3a 
+ 00030912  0x0000640e arg  0x00000682 , 0x00000005 
+ 00030913  0x0000640f copy  0x00000011 , 0x00000006 
+ 00030914  0x00006410 force  0x00000000 , 0x00000038 
+ 00030915  0x00006411 call  0x000078b7 
+ 00030916  0x00006412 copy  0x00000012 , 0x00000006 
+ 00030917  0x00006413 call  0x000078b7 
+ 00030918  0x00006414 force  0x00000000 , 0x00000012 
+ 00030919  0x00006416 force  0x00000000 , 0x00000002 
+ 00030920  0x00006417 force  0x00000006 , 0x00000013 
+ 00030921  0x00006419 ifetch  0x00000004 , 0x00000005 
+ 00030922  0x0000641a iforce  0x00000011 
+ 00030923  0x0000641b copy  0x00000012 , 0x00000038 
+ 00030924  0x0000641c deposit  0x0000002f 
+ 00030925  0x0000641d copy  0x00000013 , 0x00000038 
+ 00030926  0x0000641e imul32  0x0000002f , 0x0000003f 
+ 00030927  0x0000641f iadd  0x00000011 , 0x0000003f 
+ 00030928  0x00006420 iadd  0x00000002 , 0x0000003f 
+ 00030929  0x00006421 istore  0x00000004 , 0x00000005 
+ 00030930  0x00006422 rshift32  0x0000003f , 0x00000002 
+ 00030931  0x00006423 increase  0x00000001 , 0x00000013 
+ 00030932  0x00006424 compare  0x0000000c , 0x00000013 , 0x000000ff 
+ 00030933  0x00006425 nbranch  0x000078c9 , 0x00000001 
+ 00030934  0x00006426 deposit  0x00000002 
+ 00030935  0x00006427 istore  0x00000004 , 0x00000005 
+ 00030936  0x00006428 increase  0xffffffe8 , 0x00000005 
+ 00030937  0x00006429 increase  0x00000001 , 0x00000012 
+ 00030938  0x0000642a compare  0x00000006 , 0x00000012 , 0x000000ff 
+ 00030939  0x0000642b nbranch  0x000078c7 , 0x00000001 
+ 00030940  0x0000642c arg  0x00000682 , 0x00000011 
+ 00030941  0x0000642d copy  0x0000000b , 0x00000005 
+ 00030942  0x0000642e branch  0x00007896 
+ 00030943  0x00006432 copy  0x00000011 , 0x00000012 
+ 00030944  0x00006433 branch  0x000078bd 
+ 00030945  0x00006436 copy  0x00000011 , 0x00000030 
+ 00030946  0x00006438 copy  0x00000030 , 0x00000011 
+ 00030947  0x00006439 ifetch  0x00000001 , 0x00000011 
+ 00030948  0x0000643a isolate1  0x00000000 , 0x0000003f 
+ 00030949  0x0000643b rtn  0x00000001 
+ 00030950  0x0000643c call  0x00007864 
+ 00030951  0x0000643d ifetch  0x00000001 , 0x00000012 
+ 00030952  0x0000643e isolate0  0x00000000 , 0x0000003f 
+ 00030953  0x0000643f branch  0x000078f1 , 0x00000001 
+ 00030954  0x00006440 arg  0x00000742 , 0x00000011 
+ 00030955  0x00006441 copy  0x00000012 , 0x00000005 
+ 00030956  0x00006442 call  0x00007848 
+ 00030957  0x00006443 ifetch  0x00000001 , 0x00000012 
+ 00030958  0x00006444 iadd  0x00000013 , 0x0000003f 
+ 00030959  0x00006445 istore  0x00000001 , 0x00000012 
+ 00030960  0x00006446 increase  0xffffffe8 , 0x00000012 
+ 00030961  0x00006448 add  0x00000012 , 0x00000018 , 0x00000011 
+ 00030962  0x00006449 force  0x00000007 , 0x00000039 
+ 00030963  0x0000644a call  0x00007866 
+ 00030964  0x0000644b branch  0x000078e2 
+ 00030965  0x0000644f copy  0x00000005 , 0x0000000b 
+ 00030966  0x00006450 arg  0x000006e2 , 0x00000005 
+ 00030967  0x00006451 call  0x00007e3a 
+ 00030968  0x00006452 force  0x00000000 , 0x0000003f 
+ 00030969  0x00006453 store  0x00000004 , 0x0000069a 
+ 00030970  0x00006454 store  0x00000004 , 0x000006fa 
+ 00030971  0x00006455 jam  0x00000001 , 0x000006e2 
+ 00030972  0x00006456 arg  0x00000682 , 0x00000005 
+ 00030973  0x00006457 call  0x00007e3a 
+ 00030974  0x00006458 arg  0x00000742 , 0x00000006 
+ 00030975  0x00006459 arg  0x000006b2 , 0x00000005 
+ 00030976  0x0000645a call  0x00007e33 
+ 00030977  0x0000645b copy  0x00000011 , 0x00000006 
+ 00030978  0x0000645c arg  0x000006ca , 0x00000005 
+ 00030979  0x0000645d call  0x00007e33 
+ 00030980  0x0000645f arg  0x000006ca , 0x00000006 
+ 00030981  0x00006460 call  0x0000782b 
+ 00030982  0x00006461 branch  0x0000792d , 0x00000034 
+ 00030983  0x00006462 arg  0x000006ca , 0x00000011 
+ 00030984  0x00006463 arg  0x000006e2 , 0x00000012 
+ 00030985  0x00006464 call  0x000078e1 
+ 00030986  0x00006466 arg  0x000006b2 , 0x00000011 
+ 00030987  0x00006467 arg  0x00000682 , 0x00000012 
+ 00030988  0x00006468 call  0x000078e1 
+ 00030989  0x00006469 arg  0x000006ca , 0x00000011 
+ 00030990  0x0000646a arg  0x000006b2 , 0x00000012 
+ 00030991  0x0000646b call  0x0000783b 
+ 00030992  0x0000646c branch  0x0000791f , 0x00000002 
+ 00030993  0x0000646d arg  0x000006b2 , 0x00000011 
+ 00030994  0x0000646e arg  0x000006ca , 0x00000012 
+ 00030995  0x0000646f copy  0x00000011 , 0x00000005 
+ 00030996  0x00006470 call  0x00007856 
+ 00030997  0x00006471 arg  0x000006e2 , 0x00000011 
+ 00030998  0x00006472 arg  0x00000682 , 0x00000012 
+ 00030999  0x00006473 copy  0x00000012 , 0x00000005 
+ 00031000  0x00006474 call  0x00007848 
+ 00031001  0x00006475 ifetch  0x00000001 , 0x00000011 
+ 00031002  0x00006476 iadd  0x00000013 , 0x00000013 
+ 00031003  0x00006477 ifetch  0x00000001 , 0x00000012 
+ 00031004  0x00006478 iadd  0x00000013 , 0x0000003f 
+ 00031005  0x00006479 istore  0x00000001 , 0x00000012 
+ 00031006  0x0000647a branch  0x00007904 
+ 00031007  0x0000647c arg  0x000006ca , 0x00000011 
+ 00031008  0x0000647d arg  0x000006b2 , 0x00000012 
+ 00031009  0x0000647e copy  0x00000011 , 0x00000005 
+ 00031010  0x0000647f call  0x00007856 
+ 00031011  0x00006480 arg  0x00000682 , 0x00000011 
+ 00031012  0x00006481 arg  0x000006e2 , 0x00000012 
+ 00031013  0x00006482 copy  0x00000012 , 0x00000005 
+ 00031014  0x00006483 call  0x00007848 
+ 00031015  0x00006484 ifetch  0x00000001 , 0x00000011 
+ 00031016  0x00006485 iadd  0x00000013 , 0x00000013 
+ 00031017  0x00006486 ifetch  0x00000001 , 0x00000012 
+ 00031018  0x00006487 iadd  0x00000013 , 0x0000003f 
+ 00031019  0x00006488 istore  0x00000001 , 0x00000012 
+ 00031020  0x00006489 branch  0x00007904 
+ 00031021  0x0000648b arg  0x000006e2 , 0x00000005 
+ 00031022  0x0000648c call  0x00007e3a 
+ 00031023  0x0000648d fetch  0x00000001 , 0x0000069a 
+ 00031024  0x0000648e store  0x00000001 , 0x000006e2 
+ 00031025  0x0000648f store  0x00000001 , 0x000006ea 
+ 00031026  0x00006490 arg  0x000006e2 , 0x00000011 
+ 00031027  0x00006491 arg  0x00000682 , 0x00000012 
+ 00031028  0x00006492 copy  0x00000012 , 0x00000005 
+ 00031029  0x00006493 call  0x0000788c 
+ 00031030  0x00006494 arg  0x00000742 , 0x00000011 
+ 00031031  0x00006495 arg  0x00000682 , 0x00000012 
+ 00031032  0x00006496 copy  0x0000000b , 0x00000005 
+ 00031033  0x00006497 branch  0x0000788f 
+ 00031034  0x0000649d arg  0x00000642 , 0x00000011 
+ 00031035  0x0000649e arg  0x000006fa , 0x00000005 
+ 00031036  0x0000649f call  0x000078df 
+ 00031037  0x000064a0 arg  0x000006fa , 0x00000011 
+ 00031038  0x000064a1 arg  0x00000712 , 0x00000005 
+ 00031039  0x000064a2 call  0x000078df 
+ 00031040  0x000064a3 arg  0x0000075a , 0x00000011 
+ 00031041  0x000064a4 arg  0x00000712 , 0x00000012 
+ 00031042  0x000064a5 arg  0x00000712 , 0x00000005 
+ 00031043  0x000064a6 call  0x000078bd 
+ 00031044  0x000064a7 arg  0x00000612 , 0x00000011 
+ 00031045  0x000064a8 arg  0x000006fa , 0x00000005 
+ 00031046  0x000064a9 call  0x000078df 
+ 00031047  0x000064aa arg  0x000006fa , 0x00000006 
+ 00031048  0x000064ab arg  0x000006ca , 0x00000005 
+ 00031049  0x000064ac call  0x00007e33 
+ 00031050  0x000064ad arg  0x000006ca , 0x00000011 
+ 00031051  0x000064ae call  0x0000787f 
+ 00031052  0x000064af arg  0x000006fa , 0x00000011 
+ 00031053  0x000064b0 arg  0x000006ca , 0x00000012 
+ 00031054  0x000064b1 arg  0x000006fa , 0x00000005 
+ 00031055  0x000064b2 call  0x0000788c 
+ 00031056  0x000064b3 arg  0x000006fa , 0x00000011 
+ 00031057  0x000064b4 arg  0x00000712 , 0x00000012 
+ 00031058  0x000064b5 arg  0x000006fa , 0x00000005 
+ 00031059  0x000064b6 call  0x0000788c 
+ 00031060  0x000064b7 arg  0x00000612 , 0x00000006 
+ 00031061  0x000064b8 arg  0x000006ca , 0x00000005 
+ 00031062  0x000064b9 call  0x00007e33 
+ 00031063  0x000064ba arg  0x0000062a , 0x00000011 
+ 00031064  0x000064bb arg  0x00000712 , 0x00000005 
+ 00031065  0x000064bc call  0x000078df 
+ 00031066  0x000064bd arg  0x000006ca , 0x00000011 
+ 00031067  0x000064be call  0x0000787f 
+ 00031068  0x000064bf arg  0x000006ca , 0x00000011 
+ 00031069  0x000064c0 call  0x0000787f 
+ 00031070  0x000064c1 arg  0x000006ca , 0x00000011 
+ 00031071  0x000064c2 arg  0x00000712 , 0x00000012 
+ 00031072  0x000064c3 arg  0x000006ca , 0x00000005 
+ 00031073  0x000064c4 call  0x000078bd 
+ 00031074  0x000064c5 arg  0x00000712 , 0x00000011 
+ 00031075  0x000064c6 arg  0x000006e2 , 0x00000005 
+ 00031076  0x000064c7 call  0x000078df 
+ 00031077  0x000064c8 arg  0x000006e2 , 0x00000011 
+ 00031078  0x000064c9 call  0x0000787f 
+ 00031079  0x000064ca arg  0x000006e2 , 0x00000011 
+ 00031080  0x000064cb call  0x0000787f 
+ 00031081  0x000064cc arg  0x000006e2 , 0x00000011 
+ 00031082  0x000064cd call  0x0000787f 
+ 00031083  0x000064ce arg  0x0000062a , 0x00000006 
+ 00031084  0x000064cf arg  0x00000712 , 0x00000005 
+ 00031085  0x000064d0 call  0x00007e33 
+ 00031086  0x000064d1 arg  0x00000712 , 0x00000011 
+ 00031087  0x000064d2 call  0x0000787f 
+ 00031088  0x000064d3 arg  0x00000712 , 0x00000011 
+ 00031089  0x000064d4 arg  0x00000642 , 0x00000012 
+ 00031090  0x000064d5 arg  0x00000642 , 0x00000005 
+ 00031091  0x000064d6 call  0x000078bd 
+ 00031092  0x000064d7 arg  0x000006fa , 0x00000011 
+ 00031093  0x000064d8 arg  0x00000712 , 0x00000005 
+ 00031094  0x000064d9 call  0x000078df 
+ 00031095  0x000064da arg  0x00000712 , 0x00000011 
+ 00031096  0x000064db arg  0x000006ca , 0x00000012 
+ 00031097  0x000064dc arg  0x00000712 , 0x00000005 
+ 00031098  0x000064dd call  0x0000788f 
+ 00031099  0x000064de arg  0x00000712 , 0x00000011 
+ 00031100  0x000064df arg  0x000006ca , 0x00000012 
+ 00031101  0x000064e0 arg  0x00000612 , 0x00000005 
+ 00031102  0x000064e1 call  0x0000788f 
+ 00031103  0x000064e2 arg  0x000006ca , 0x00000011 
+ 00031104  0x000064e3 arg  0x00000612 , 0x00000012 
+ 00031105  0x000064e4 arg  0x00000712 , 0x00000005 
+ 00031106  0x000064e5 call  0x0000788f 
+ 00031107  0x000064e6 arg  0x00000712 , 0x00000011 
+ 00031108  0x000064e7 arg  0x000006fa , 0x00000012 
+ 00031109  0x000064e8 arg  0x00000712 , 0x00000005 
+ 00031110  0x000064e9 call  0x000078bd 
+ 00031111  0x000064ea arg  0x00000712 , 0x00000011 
+ 00031112  0x000064eb arg  0x000006e2 , 0x00000012 
+ 00031113  0x000064ec arg  0x0000062a , 0x00000005 
+ 00031114  0x000064ed branch  0x0000788f 
+ 00031115  0x000064f2 arg  0x000005b2 , 0x00000011 
+ 00031116  0x000064f3 arg  0x0000072a , 0x00000005 
+ 00031117  0x000064f4 call  0x000078df 
+ 00031118  0x000064f5 arg  0x00000612 , 0x00000011 
+ 00031119  0x000064f6 arg  0x0000072a , 0x00000012 
+ 00031120  0x000064f7 arg  0x000006e2 , 0x00000005 
+ 00031121  0x000064f8 call  0x000078bd 
+ 00031122  0x000064f9 arg  0x000005b2 , 0x00000011 
+ 00031123  0x000064fa arg  0x0000072a , 0x00000012 
+ 00031124  0x000064fb arg  0x0000072a , 0x00000005 
+ 00031125  0x000064fc call  0x000078bd 
+ 00031126  0x000064fd arg  0x0000062a , 0x00000011 
+ 00031127  0x000064fe arg  0x0000072a , 0x00000012 
+ 00031128  0x000064ff arg  0x000006ca , 0x00000005 
+ 00031129  0x00006500 call  0x000078bd 
+ 00031130  0x00006501 arg  0x00000642 , 0x00000011 
+ 00031131  0x00006502 arg  0x0000072a , 0x00000005 
+ 00031132  0x00006503 call  0x000078df 
+ 00031133  0x00006504 arg  0x00000582 , 0x00000011 
+ 00031134  0x00006505 arg  0x0000072a , 0x00000012 
+ 00031135  0x00006506 arg  0x000006fa , 0x00000005 
+ 00031136  0x00006507 call  0x000078bd 
+ 00031137  0x00006508 arg  0x00000642 , 0x00000011 
+ 00031138  0x00006509 arg  0x0000072a , 0x00000012 
+ 00031139  0x0000650a arg  0x0000072a , 0x00000005 
+ 00031140  0x0000650b call  0x000078bd 
+ 00031141  0x0000650c arg  0x0000059a , 0x00000011 
+ 00031142  0x0000650d arg  0x0000072a , 0x00000012 
+ 00031143  0x0000650e arg  0x00000712 , 0x00000005 
+ 00031144  0x0000650f call  0x000078bd 
+ 00031145  0x00006510 arg  0x000006e2 , 0x00000011 
+ 00031146  0x00006511 arg  0x000006fa , 0x00000012 
+ 00031147  0x00006512 arg  0x0000072a , 0x00000005 
+ 00031148  0x00006513 call  0x0000788f 
+ 00031149  0x00006514 arg  0x000006e2 , 0x00000011 
+ 00031150  0x00006515 arg  0x000006fa , 0x00000012 
+ 00031151  0x00006516 arg  0x000006e2 , 0x00000005 
+ 00031152  0x00006517 call  0x0000788c 
+ 00031153  0x00006518 arg  0x000006ca , 0x00000011 
+ 00031154  0x00006519 arg  0x00000712 , 0x00000012 
+ 00031155  0x0000651a arg  0x000006fa , 0x00000005 
+ 00031156  0x0000651b call  0x0000788f 
+ 00031157  0x0000651c arg  0x000006ca , 0x00000011 
+ 00031158  0x0000651d arg  0x00000712 , 0x00000012 
+ 00031159  0x0000651e arg  0x000006ca , 0x00000005 
+ 00031160  0x0000651f call  0x0000788c 
+ 00031161  0x00006520 arg  0x000006ca , 0x00000011 
+ 00031162  0x00006521 arg  0x0000072a , 0x00000012 
+ 00031163  0x00006522 arg  0x000006ca , 0x00000005 
+ 00031164  0x00006523 call  0x000078bd 
+ 00031165  0x00006524 arg  0x00000642 , 0x00000011 
+ 00031166  0x00006525 arg  0x000005b2 , 0x00000012 
+ 00031167  0x00006526 arg  0x00000712 , 0x00000005 
+ 00031168  0x00006527 call  0x000078bd 
+ 00031169  0x00006528 arg  0x00000712 , 0x00000011 
+ 00031170  0x00006529 arg  0x0000072a , 0x00000012 
+ 00031171  0x0000652a arg  0x00000642 , 0x00000005 
+ 00031172  0x0000652b call  0x000078bd 
+ 00031173  0x0000652c arg  0x0000072a , 0x00000011 
+ 00031174  0x0000652d arg  0x0000072a , 0x00000005 
+ 00031175  0x0000652e call  0x000078df 
+ 00031176  0x0000652f arg  0x0000072a , 0x00000011 
+ 00031177  0x00006530 arg  0x000006e2 , 0x00000012 
+ 00031178  0x00006531 arg  0x00000712 , 0x00000005 
+ 00031179  0x00006532 call  0x000078bd 
+ 00031180  0x00006533 arg  0x0000072a , 0x00000011 
+ 00031181  0x00006534 arg  0x000006ca , 0x00000012 
+ 00031182  0x00006535 arg  0x000006ca , 0x00000005 
+ 00031183  0x00006536 call  0x000078bd 
+ 00031184  0x00006537 arg  0x000006fa , 0x00000011 
+ 00031185  0x00006538 arg  0x00000612 , 0x00000005 
+ 00031186  0x00006539 call  0x000078df 
+ 00031187  0x0000653a arg  0x00000612 , 0x00000011 
+ 00031188  0x0000653b arg  0x00000712 , 0x00000012 
+ 00031189  0x0000653c arg  0x00000612 , 0x00000005 
+ 00031190  0x0000653d call  0x0000788f 
+ 00031191  0x0000653e arg  0x00000612 , 0x00000006 
+ 00031192  0x0000653f arg  0x0000072a , 0x00000005 
+ 00031193  0x00006540 call  0x00007e33 
+ 00031194  0x00006541 arg  0x0000072a , 0x00000011 
+ 00031195  0x00006542 call  0x0000787f 
+ 00031196  0x00006543 arg  0x00000712 , 0x00000011 
+ 00031197  0x00006544 arg  0x0000072a , 0x00000012 
+ 00031198  0x00006545 arg  0x00000712 , 0x00000005 
+ 00031199  0x00006546 call  0x0000788f 
+ 00031200  0x00006547 arg  0x00000712 , 0x00000011 
+ 00031201  0x00006548 arg  0x000006fa , 0x00000012 
+ 00031202  0x00006549 arg  0x000006fa , 0x00000005 
+ 00031203  0x0000654a call  0x000078bd 
+ 00031204  0x0000654b arg  0x000006fa , 0x00000011 
+ 00031205  0x0000654c arg  0x000006ca , 0x00000012 
+ 00031206  0x0000654d arg  0x0000062a , 0x00000005 
+ 00031207  0x0000654e call  0x0000788f 
+ 00031208  0x0000654f arg  0x0000062a , 0x00000011 
+ 00031209  0x00006550 arg  0x00000742 , 0x00000012 
+ 00031210  0x00006551 arg  0x0000062a , 0x00000005 
+ 00031211  0x00006552 force  0x00000000 , 0x00000013 
+ 00031212  0x00006553 fetch  0x00000001 , 0x0000062a 
+ 00031213  0x00006554 isolate1  0x00000000 , 0x0000003f 
+ 00031214  0x00006555 call  0x00007848 , 0x00000001 
+ 00031215  0x00006556 copy  0x00000013 , 0x00000030 
+ 00031216  0x00006557 arg  0x0000062a , 0x00000011 
+ 00031217  0x00006558 call  0x00007864 
+ 00031218  0x00006559 fetch  0x00000001 , 0x00000641 
+ 00031219  0x0000655a isolate1  0x00000000 , 0x00000030 
+ 00031220  0x0000655b setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00031221  0x0000655c store  0x00000001 , 0x00000641 
+ 00031222  0x0000655d rtn 
+ 00031223  0x00006561 jam  0x000000c0 , 0x00000581 
+ 00031224  0x00006562 jam  0x00000001 , 0x00000580 
+ 00031225  0x00006564 fetch  0x00000001 , 0x00000581 
+ 00031226  0x00006565 increase  0xffffffff , 0x0000003f 
+ 00031227  0x00006566 nrtn  0x00000002 
+ 00031228  0x00006567 store  0x00000001 , 0x00000581 
+ 00031229  0x00006568 fetch  0x00000001 , 0x00000580 
+ 00031230  0x00006569 call  0x0000793a , 0x00000034 
+ 00031231  0x0000656a fetch  0x00000001 , 0x00000581 
+ 00031232  0x0000656b arg  0x0000065a , 0x00000006 
+ 00031233  0x0000656c call  0x00007822 
+ 00031234  0x0000656d branch  0x000079f9 , 0x00000001 
+ 00031235  0x0000656e fetch  0x00000001 , 0x00000580 
+ 00031236  0x0000656f nbranch  0x00007a07 , 0x00000034 
+ 00031237  0x00006570 call  0x0000798b 
+ 00031238  0x00006571 branch  0x000079f9 
+ 00031239  0x00006573 jam  0x00000000 , 0x00000580 
+ 00031240  0x00006574 arg  0x00000582 , 0x00000006 
+ 00031241  0x00006575 arg  0x00000612 , 0x00000005 
+ 00031242  0x00006576 call  0x00007828 
+ 00031243  0x00006577 branch  0x000079f9 
+ 00031244  0x0000657b arg  0x00000642 , 0x00000011 
+ 00031245  0x0000657c arg  0x00000712 , 0x00000005 
+ 00031246  0x0000657d call  0x000078f5 
+ 00031247  0x0000657e arg  0x00000712 , 0x00000011 
+ 00031248  0x0000657f arg  0x000006ca , 0x00000005 
+ 00031249  0x00006580 call  0x000078df 
+ 00031250  0x00006581 arg  0x00000612 , 0x00000011 
+ 00031251  0x00006582 arg  0x000006ca , 0x00000012 
+ 00031252  0x00006583 arg  0x000005ca , 0x00000005 
+ 00031253  0x00006584 call  0x000078bd 
+ 00031254  0x00006585 arg  0x00000712 , 0x00000011 
+ 00031255  0x00006586 arg  0x000006ca , 0x00000012 
+ 00031256  0x00006587 arg  0x000006fa , 0x00000005 
+ 00031257  0x00006588 call  0x000078bd 
+ 00031258  0x00006589 arg  0x0000062a , 0x00000011 
+ 00031259  0x0000658a arg  0x000006fa , 0x00000012 
+ 00031260  0x0000658b arg  0x000005e2 , 0x00000005 
+ 00031261  0x0000658c branch  0x000078bd 
+ 00031262  0x00006590 force  0x00000010 , 0x00000039 
+ 00031263  0x00006592 ifetch  0x00000004 , 0x00000006 
+ 00031264  0x00006593 force  0x00000004 , 0x00000011 
+ 00031265  0x00006594 increase  0x00000003 , 0x00000005 
+ 00031266  0x00006596 istore  0x00000001 , 0x00000005 
+ 00031267  0x00006597 rshift8  0x0000003f , 0x0000003f 
+ 00031268  0x00006598 increase  0xfffffffe , 0x00000005 
+ 00031269  0x00006599 increase  0xffffffff , 0x00000011 
+ 00031270  0x0000659a nbranch  0x00007a22 , 0x00000005 
+ 00031271  0x0000659b increase  0x00000005 , 0x00000005 
+ 00031272  0x0000659c loop  0x00007a1f 
+ 00031273  0x0000659d rtn 
+ 00031274  0x000065a1 lshift2  0x00000007 , 0x0000003f 
+ 00031275  0x000065a2 iadd  0x0000000b , 0x00000006 
+ 00031276  0x000065a3 ifetch  0x00000004 , 0x00000006 
+ 00031277  0x000065a4 rtn 
+ 00031278  0x000065a7 force  0x00000010 , 0x00000030 
+ 00031279  0x000065a8 arg  0x00000582 , 0x0000000b 
+ 00031280  0x000065aa add  0x00000030 , 0xfffffff9 , 0x00000007 
+ 00031281  0x000065ab call  0x00007a2a 
+ 00031282  0x000065ac iforce  0x00000002 
+ 00031283  0x000065ad add  0x00000030 , 0xfffffff0 , 0x00000007 
+ 00031284  0x000065ae call  0x00007a2a 
+ 00031285  0x000065af iadd  0x00000002 , 0x00000002 
+ 00031286  0x000065b0 add  0x00000030 , 0xfffffffe , 0x00000007 
+ 00031287  0x000065b1 call  0x00007a2a 
+ 00031288  0x000065b2 shasx  0x0000003f , 0x00000001 , 0x0000003f 
+ 00031289  0x000065b3 iadd  0x00000002 , 0x00000002 
+ 00031290  0x000065b4 add  0x00000030 , 0xfffffff1 , 0x00000007 
+ 00031291  0x000065b5 call  0x00007a2a 
+ 00031292  0x000065b6 shasx  0x0000003f , 0x00000000 , 0x0000003f 
+ 00031293  0x000065b7 iadd  0x00000002 , 0x00000002 
+ 00031294  0x000065b8 lshift2  0x00000030 , 0x0000003f 
+ 00031295  0x000065b9 iadd  0x0000000b , 0x00000005 
+ 00031296  0x000065ba istoret  0x00000004 , 0x00000005 
+ 00031297  0x000065bb increase  0x00000001 , 0x00000030 
+ 00031298  0x000065bc compare  0x00000040 , 0x00000030 , 0x000000ff 
+ 00031299  0x000065bd nbranch  0x00007a30 , 0x00000001 
+ 00031300  0x000065be rtn 
+ 00031301  0x000065c2 arg  0x000007ba , 0x00000006 
+ 00031302  0x000065c3 force  0x00000007 , 0x00000038 
+ 00031303  0x000065c5 ifetch  0x00000004 , 0x00000006 
+ 00031304  0x000065c6 iforce  0x0000002f 
+ 00031305  0x000065c7 increase  0xffffffff , 0x00000038 
+ 00031306  0x000065c8 branch  0x00007a47 , 0x00000002 
+ 00031307  0x000065c9 rtn 
+ 00031308  0x000065cc set1  0x00000025 , 0x00000000 
+ 00031309  0x000065cd bpatch  0x000000f8 , 0x0000403f 
+ 00031310  0x000065ce call  0x00007a2e 
+ 00031311  0x000065cf arg  0x00000682 , 0x00000005 
+ 00031312  0x000065d0 force  0x00000000 , 0x00000038 
+ 00031313  0x000065d2 deposit  0x0000002f 
+ 00031314  0x000065d3 istore  0x00000004 , 0x00000005 
+ 00031315  0x000065d4 increase  0x00000001 , 0x00000038 
+ 00031316  0x000065d5 compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031317  0x000065d6 nbranch  0x00007a51 , 0x00000001 
+ 00031318  0x000065d7 call  0x000075c5 
+ 00031319  0x000065d8 arg  0x00008700 , 0x0000000b 
+ 00031320  0x000065d9 arg  0x00000582 , 0x00000030 
+ 00031321  0x000065da force  0x00000040 , 0x00000039 
+ 00031322  0x000065dc ifetcht  0x00000004 , 0x00000030 
+ 00031323  0x000065dd ifetch  0x00000004 , 0x0000000b 
+ 00031324  0x000065de increase  0x00000004 , 0x0000000b 
+ 00031325  0x000065df increase  0x00000004 , 0x00000030 
+ 00031326  0x000065e0 iadd  0x00000002 , 0x0000003f 
+ 00031327  0x000065e1 force  0x00000007 , 0x00000038 
+ 00031328  0x000065e2 iadd  0x0000002f , 0x00000002 
+ 00031329  0x000065e3 force  0x00000004 , 0x00000038 
+ 00031330  0x000065e4 shasx  0x0000002f , 0x00000003 , 0x0000003f 
+ 00031331  0x000065e5 iadd  0x00000002 , 0x00000002 
+ 00031332  0x000065e6 force  0x00000005 , 0x00000038 
+ 00031333  0x000065e7 deposit  0x0000002f 
+ 00031334  0x000065e8 force  0x00000006 , 0x00000038 
+ 00031335  0x000065e9 ixor  0x0000002f , 0x0000003f 
+ 00031336  0x000065ea force  0x00000004 , 0x00000038 
+ 00031337  0x000065eb iand  0x0000002f , 0x0000003f 
+ 00031338  0x000065ec force  0x00000006 , 0x00000038 
+ 00031339  0x000065ed ixor  0x0000002f , 0x0000003f 
+ 00031340  0x000065ee iadd  0x00000002 , 0x00000002 
+ 00031341  0x000065ef force  0x00000007 , 0x00000038 
+ 00031342  0x000065f0 copy  0x00000002 , 0x0000002f 
+ 00031343  0x000065f1 force  0x00000003 , 0x00000038 
+ 00031344  0x000065f2 deposit  0x0000002f 
+ 00031345  0x000065f3 iadd  0x00000002 , 0x0000002f 
+ 00031346  0x000065f4 force  0x00000000 , 0x00000038 
+ 00031347  0x000065f5 deposit  0x0000002f 
+ 00031348  0x000065f6 force  0x00000001 , 0x00000038 
+ 00031349  0x000065f7 iand  0x0000002f , 0x00000002 
+ 00031350  0x000065f8 ior  0x0000002f , 0x0000003f 
+ 00031351  0x000065f9 force  0x00000002 , 0x00000038 
+ 00031352  0x000065fa iand  0x0000002f , 0x0000003f 
+ 00031353  0x000065fb ior  0x00000002 , 0x00000002 
+ 00031354  0x000065fc force  0x00000000 , 0x00000038 
+ 00031355  0x000065fd shasx  0x0000002f , 0x00000002 , 0x0000003f 
+ 00031356  0x000065fe iadd  0x00000002 , 0x0000003f 
+ 00031357  0x000065ff force  0x00000007 , 0x00000038 
+ 00031358  0x00006600 iadd  0x0000002f , 0x0000002f 
+ 00031359  0x00006601 regexrot 
+ 00031360  0x00006602 loop  0x00007a5a 
+ 00031361  0x00006603 arg  0x00000682 , 0x00000006 
+ 00031362  0x00006604 force  0x00000000 , 0x00000038 
+ 00031363  0x00006606 ifetch  0x00000004 , 0x00000006 
+ 00031364  0x00006607 iadd  0x0000002f , 0x0000002f 
+ 00031365  0x00006608 increase  0x00000001 , 0x00000038 
+ 00031366  0x00006609 compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031367  0x0000660a nbranch  0x00007a83 , 0x00000001 
+ 00031368  0x0000660b branch  0x000075c9 
+ 00031369  0x0000660f arg  0x00000858 , 0x00000005 
+ 00031370  0x00006610 force  0x00000007 , 0x00000038 
+ 00031371  0x00006612 deposit  0x0000002f 
+ 00031372  0x00006613 istore  0x00000004 , 0x00000005 
+ 00031373  0x00006614 increase  0xffffffff , 0x00000038 
+ 00031374  0x00006615 branch  0x00007a8b , 0x00000002 
+ 00031375  0x00006616 rtn 
+ 00031376  0x0000661a arg  0x00000582 , 0x00000005 
+ 00031377  0x0000661b increase  0xfffffffc , 0x00000006 
+ 00031378  0x0000661c sub  0x00000039 , 0x00000010 , 0x00000011 
+ 00031379  0x0000661e ifetch  0x00000004 , 0x00000006 
+ 00031380  0x0000661f ixor  0x00000002 , 0x0000003f 
+ 00031381  0x00006620 istore  0x00000004 , 0x00000005 
+ 00031382  0x00006621 increase  0xfffffff8 , 0x00000006 
+ 00031383  0x00006622 loop  0x00007a93 
+ 00031384  0x00006623 copy  0x00000011 , 0x00000039 
+ 00031385  0x00006624 deposit  0x00000002 
+ 00031386  0x00006626 istore  0x00000004 , 0x00000005 
+ 00031387  0x00006627 loop  0x00007a9a 
+ 00031388  0x00006628 rtn 
+ 00031389  0x0000662b arg  0x00000808 , 0x00000006 
+ 00031390  0x0000662c arg  0x00000582 , 0x00000005 
+ 00031391  0x0000662d force  0x00000006 , 0x00000039 
+ 00031392  0x0000662e call  0x00007b97 
+ 00031393  0x0000662f arg  0x000047c4 , 0x00000006 
+ 00031394  0x00006630 force  0x00000006 , 0x00000039 
+ 00031395  0x00006631 call  0x00007b97 
+ 00031396  0x00006632 arg  0x00000858 , 0x00000006 
+ 00031397  0x00006633 call  0x00007b96 
+ 00031398  0x00006634 call  0x00007a45 
+ 00031399  0x00006635 call  0x00007a4c 
+ 00031400  0x00006636 arg  0x00000848 , 0x00000006 
+ 00031401  0x00006637 arg  0x00000582 , 0x00000005 
+ 00031402  0x00006638 branch  0x00007ab8 
+ 00031403  0x0000663b arg  0x000047c4 , 0x00000006 
+ 00031404  0x0000663c arg  0x00000582 , 0x00000005 
+ 00031405  0x0000663d force  0x00000006 , 0x00000039 
+ 00031406  0x0000663e call  0x00007b97 
+ 00031407  0x0000663f arg  0x00000808 , 0x00000006 
+ 00031408  0x00006640 force  0x00000006 , 0x00000039 
+ 00031409  0x00006641 call  0x00007b97 
+ 00031410  0x00006642 arg  0x00000848 , 0x00000006 
+ 00031411  0x00006643 call  0x00007b96 
+ 00031412  0x00006644 call  0x00007a45 
+ 00031413  0x00006645 call  0x00007a4c 
+ 00031414  0x00006646 arg  0x00000858 , 0x00000006 
+ 00031415  0x00006647 arg  0x00000582 , 0x00000005 
+ 00031416  0x00006649 call  0x00007b96 
+ 00031417  0x0000664a setarg  0x00800000 
+ 00031418  0x0000664b lshift8  0x0000003f , 0x0000003f 
+ 00031419  0x0000664c istore  0x00000004 , 0x00000005 
+ 00031420  0x0000664d force  0x00000005 , 0x00000039 
+ 00031421  0x0000664e call  0x00007e3b 
+ 00031422  0x0000664f setarg  0x00000280 
+ 00031423  0x00006650 istore  0x00000004 , 0x00000005 
+ 00031424  0x00006651 call  0x00007a4c 
+ 00031425  0x00006653 fetch  0x00000004 , 0x00000858 
+ 00031426  0x00006655 arg  0x000003e8 , 0x00000011 
+ 00031427  0x00006656 idiv  0x00000011 
+ 00031428  0x00006657 call  0x00007efd 
+ 00031429  0x00006658 remainder  0x0000003f 
+ 00031430  0x00006659 store  0x00000004 , 0x000007ec 
+ 00031431  0x0000665a quotient  0x0000003f 
+ 00031432  0x0000665b arg  0x000003e8 , 0x00000011 
+ 00031433  0x0000665c idiv  0x00000011 
+ 00031434  0x0000665d call  0x00007efd 
+ 00031435  0x0000665e remainder  0x0000003f 
+ 00031436  0x0000665f arg  0x000003e8 , 0x00000011 
+ 00031437  0x00006660 imul32  0x00000011 , 0x0000003f 
+ 00031438  0x00006661 fetcht  0x00000004 , 0x000007ec 
+ 00031439  0x00006662 iadd  0x00000002 , 0x0000003f 
+ 00031440  0x00006663 store  0x00000004 , 0x000007ec 
+ 00031441  0x00006664 rtn 
+ 00031442  0x00006667 setarg  0x00363636 
+ 00031443  0x00006668 lshift8  0x0000003f , 0x00000002 
+ 00031444  0x00006669 or_into  0x00000036 , 0x00000002 
+ 00031445  0x0000666a fetch  0x00000002 , 0x00000898 
+ 00031446  0x0000666b copy  0x0000003f , 0x00000006 
+ 00031447  0x0000666c force  0x00000004 , 0x00000039 
+ 00031448  0x0000666d call  0x00007a90 
+ 00031449  0x0000666e call  0x00007a45 
+ 00031450  0x0000666f call  0x00007a4c 
+ 00031451  0x00006670 fetch  0x00000002 , 0x0000089a 
+ 00031452  0x00006671 copy  0x0000003f , 0x00000006 
+ 00031453  0x00006672 arg  0x00000582 , 0x00000005 
+ 00031454  0x00006673 force  0x00000006 , 0x00000039 
+ 00031455  0x00006674 call  0x00007b97 
+ 00031456  0x00006675 fetch  0x00000002 , 0x0000089c 
+ 00031457  0x00006676 copy  0x0000003f , 0x00000006 
+ 00031458  0x00006677 force  0x00000006 , 0x00000039 
+ 00031459  0x00006678 call  0x00007b97 
+ 00031460  0x00006679 setarg  0x00800000 
+ 00031461  0x0000667a istore  0x00000003 , 0x00000005 
+ 00031462  0x0000667b force  0x00000000 , 0x0000003f 
+ 00031463  0x0000667c istore  0x00000001 , 0x00000005 
+ 00031464  0x0000667d force  0x00000000 , 0x0000003f 
+ 00031465  0x0000667e istore  0x00000008 , 0x00000005 
+ 00031466  0x0000667f setarg  0x00000388 
+ 00031467  0x00006680 istore  0x00000004 , 0x00000005 
+ 00031468  0x00006681 call  0x00007a4c 
+ 00031469  0x00006682 call  0x00007a89 
+ 00031470  0x00006683 arg  0x00000858 , 0x00000006 
+ 00031471  0x00006684 arg  0x000006a2 , 0x00000005 
+ 00031472  0x00006685 call  0x00007e31 
+ 00031473  0x00006687 setarg  0x005c5c5c 
+ 00031474  0x00006688 lshift8  0x0000003f , 0x00000002 
+ 00031475  0x00006689 or_into  0x0000005c , 0x00000002 
+ 00031476  0x0000668a fetch  0x00000002 , 0x00000898 
+ 00031477  0x0000668b copy  0x0000003f , 0x00000006 
+ 00031478  0x0000668c force  0x00000004 , 0x00000039 
+ 00031479  0x0000668d call  0x00007a90 
+ 00031480  0x0000668e call  0x00007a45 
+ 00031481  0x0000668f call  0x00007a4c 
+ 00031482  0x00006690 arg  0x000006c2 , 0x00000006 
+ 00031483  0x00006691 arg  0x00000582 , 0x00000005 
+ 00031484  0x00006692 force  0x00000008 , 0x00000039 
+ 00031485  0x00006693 call  0x00007b97 
+ 00031486  0x00006694 setarg  0x00800000 
+ 00031487  0x00006695 lshift8  0x0000003f , 0x0000003f 
+ 00031488  0x00006696 istore  0x00000004 , 0x00000005 
+ 00031489  0x00006697 call  0x00007e3a 
+ 00031490  0x00006698 setarg  0x00000300 
+ 00031491  0x00006699 istore  0x00000004 , 0x00000005 
+ 00031492  0x0000669a call  0x00007a4c 
+ 00031493  0x0000669b branch  0x00007a89 
+ 00031494  0x0000669f setarg  0x00363636 
+ 00031495  0x000066a0 lshift8  0x0000003f , 0x00000002 
+ 00031496  0x000066a1 or_into  0x00000036 , 0x00000002 
+ 00031497  0x000066a2 arg  0x00000838 , 0x00000006 
+ 00031498  0x000066a3 force  0x00000006 , 0x00000039 
+ 00031499  0x000066a4 call  0x00007a90 
+ 00031500  0x000066a5 call  0x00007a45 
+ 00031501  0x000066a6 call  0x00007a4c 
+ 00031502  0x000066a7 fetch  0x00000002 , 0x000008a4 
+ 00031503  0x000066a8 copy  0x0000003f , 0x00000006 
+ 00031504  0x000066a9 arg  0x00000582 , 0x00000005 
+ 00031505  0x000066aa call  0x00007b96 
+ 00031506  0x000066ab fetch  0x00000002 , 0x000008a6 
+ 00031507  0x000066ac copy  0x0000003f , 0x00000006 
+ 00031508  0x000066ad call  0x00007b96 
+ 00031509  0x000066af setarg  0x0062746c 
+ 00031510  0x000066b0 lshift8  0x0000003f , 0x0000003f 
+ 00031511  0x000066b1 or_into  0x0000006b , 0x0000003f 
+ 00031512  0x000066b2 istore  0x00000004 , 0x00000005 
+ 00031513  0x000066b3 arg  0x000006cf , 0x00000006 
+ 00031514  0x000066b4 force  0x00000003 , 0x00000039 
+ 00031515  0x000066b5 call  0x00007b97 
+ 00031516  0x000066b7 setarg  0x00800000 
+ 00031517  0x000066b8 lshift8  0x0000003f , 0x0000003f 
+ 00031518  0x000066b9 istore  0x00000004 , 0x00000005 
+ 00031519  0x000066ba force  0x00000000 , 0x0000003f 
+ 00031520  0x000066bb istore  0x00000008 , 0x00000005 
+ 00031521  0x000066bc setarg  0x00000380 
+ 00031522  0x000066bd istore  0x00000004 , 0x00000005 
+ 00031523  0x000066be call  0x00007a4c 
+ 00031524  0x000066c0 call  0x00007a89 
+ 00031525  0x000066c1 arg  0x00000858 , 0x00000006 
+ 00031526  0x000066c2 arg  0x000006a2 , 0x00000005 
+ 00031527  0x000066c3 call  0x00007e31 
+ 00031528  0x000066c5 setarg  0x005c5c5c 
+ 00031529  0x000066c6 lshift8  0x0000003f , 0x00000002 
+ 00031530  0x000066c7 or_into  0x0000005c , 0x00000002 
+ 00031531  0x000066c8 arg  0x00000838 , 0x00000006 
+ 00031532  0x000066c9 force  0x00000006 , 0x00000039 
+ 00031533  0x000066ca call  0x00007a90 
+ 00031534  0x000066cb call  0x00007a45 
+ 00031535  0x000066cc call  0x00007a4c 
+ 00031536  0x000066cd arg  0x000006c2 , 0x00000006 
+ 00031537  0x000066ce arg  0x00000582 , 0x00000005 
+ 00031538  0x000066cf force  0x00000008 , 0x00000039 
+ 00031539  0x000066d0 call  0x00007b97 
+ 00031540  0x000066d1 setarg  0x00800000 
+ 00031541  0x000066d2 lshift8  0x0000003f , 0x0000003f 
+ 00031542  0x000066d3 istore  0x00000004 , 0x00000005 
+ 00031543  0x000066d4 call  0x00007e3a 
+ 00031544  0x000066d5 setarg  0x00000300 
+ 00031545  0x000066d6 istore  0x00000004 , 0x00000005 
+ 00031546  0x000066d7 call  0x00007a4c 
+ 00031547  0x000066d8 branch  0x00007a89 
+ 00031548  0x000066dc setarg  0x00363636 
+ 00031549  0x000066dd lshift8  0x0000003f , 0x00000002 
+ 00031550  0x000066de or_into  0x00000036 , 0x00000002 
+ 00031551  0x000066df arg  0x00000838 , 0x00000006 
+ 00031552  0x000066e0 force  0x00000006 , 0x00000039 
+ 00031553  0x000066e1 call  0x00007a90 
+ 00031554  0x000066e2 call  0x00007a45 
+ 00031555  0x000066e3 call  0x00007a4c 
+ 00031556  0x000066e4 arg  0x00000858 , 0x00000006 
+ 00031557  0x000066e5 arg  0x00000582 , 0x00000005 
+ 00031558  0x000066e6 call  0x00007b96 
+ 00031559  0x000066e7 arg  0x00000848 , 0x00000006 
+ 00031560  0x000066e8 call  0x00007b96 
+ 00031561  0x000066e9 branch  0x00007b57 
+ 00031562  0x000066ec setarg  0x00363636 
+ 00031563  0x000066ed lshift8  0x0000003f , 0x00000002 
+ 00031564  0x000066ee or_into  0x00000036 , 0x00000002 
+ 00031565  0x000066ef arg  0x00000838 , 0x00000006 
+ 00031566  0x000066f0 force  0x00000006 , 0x00000039 
+ 00031567  0x000066f1 call  0x00007a90 
+ 00031568  0x000066f2 call  0x00007a45 
+ 00031569  0x000066f3 call  0x00007a4c 
+ 00031570  0x000066f5 arg  0x00000848 , 0x00000006 
+ 00031571  0x000066f6 arg  0x00000582 , 0x00000005 
+ 00031572  0x000066f7 call  0x00007b96 
+ 00031573  0x000066f8 arg  0x00000858 , 0x00000006 
+ 00031574  0x000066f9 call  0x00007b96 
+ 00031575  0x000066fb setarg  0x00000000 
+ 00031576  0x000066fc istore  0x00000008 , 0x00000005 
+ 00031577  0x000066fd istore  0x00000008 , 0x00000005 
+ 00031578  0x000066ff copy  0x00000005 , 0x00000002 
+ 00031579  0x00006700 jam  0x00000080 , 0x000006c2 
+ 00031580  0x00006701 copy  0x00000002 , 0x00000005 
+ 00031581  0x00006702 arg  0x000006d2 , 0x00000006 
+ 00031582  0x00006703 call  0x00007b96 
+ 00031583  0x00006705 call  0x00007a4c 
+ 00031584  0x00006707 arg  0x00000582 , 0x00000005 
+ 00031585  0x00006708 force  0x00000007 , 0x00000039 
+ 00031586  0x00006709 call  0x00007e3b 
+ 00031587  0x0000670a istore  0x00000004 , 0x00000005 
+ 00031588  0x0000670b setarg  0x000003f8 
+ 00031589  0x0000670c istore  0x00000004 , 0x00000005 
+ 00031590  0x0000670d call  0x00007a4c 
+ 00031591  0x0000670e call  0x00007a89 
+ 00031592  0x00006710 arg  0x00000858 , 0x00000006 
+ 00031593  0x00006711 arg  0x000006a2 , 0x00000005 
+ 00031594  0x00006712 call  0x00007e31 
+ 00031595  0x00006714 setarg  0x005c5c5c 
+ 00031596  0x00006715 lshift8  0x0000003f , 0x00000002 
+ 00031597  0x00006716 or_into  0x0000005c , 0x00000002 
+ 00031598  0x00006717 arg  0x00000838 , 0x00000006 
+ 00031599  0x00006718 force  0x00000006 , 0x00000039 
+ 00031600  0x00006719 call  0x00007a90 
+ 00031601  0x0000671a call  0x00007a45 
+ 00031602  0x0000671b call  0x00007a4c 
+ 00031603  0x0000671c arg  0x000006c2 , 0x00000006 
+ 00031604  0x0000671d arg  0x00000582 , 0x00000005 
+ 00031605  0x0000671e force  0x00000008 , 0x00000039 
+ 00031606  0x0000671f call  0x00007b97 
+ 00031607  0x00006720 setarg  0x00800000 
+ 00031608  0x00006721 lshift8  0x0000003f , 0x0000003f 
+ 00031609  0x00006722 istore  0x00000004 , 0x00000005 
+ 00031610  0x00006723 call  0x00007e3a 
+ 00031611  0x00006724 setarg  0x00000300 
+ 00031612  0x00006725 istore  0x00000004 , 0x00000005 
+ 00031613  0x00006726 call  0x00007a4c 
+ 00031614  0x00006727 branch  0x00007a89 
+ 00031615  0x0000672f jam  0x000000c0 , 0x00000581 
+ 00031616  0x00006731 fetch  0x00000001 , 0x00000581 
+ 00031617  0x00006732 rtn  0x00000034 
+ 00031618  0x00006733 increase  0xffffffff , 0x0000003f 
+ 00031619  0x00006734 store  0x00000001 , 0x00000581 
+ 00031620  0x00006735 arg  0x0000065a , 0x00000006 
+ 00031621  0x00006736 call  0x00007822 
+ 00031622  0x00006737 branch  0x00007b80 , 0x00000001 
+ 00031623  0x00006738 arg  0x00000582 , 0x00000006 
+ 00031624  0x00006739 arg  0x00000612 , 0x00000005 
+ 00031625  0x0000673a branch  0x00007828 
+ 00031626  0x0000673d call  0x0000793a 
+ 00031627  0x0000673e fetch  0x00000001 , 0x00000581 
+ 00031628  0x0000673f increase  0xffffffff , 0x0000003f 
+ 00031629  0x00006740 store  0x00000001 , 0x00000581 
+ 00031630  0x00006741 arg  0x0000065a , 0x00000006 
+ 00031631  0x00006742 call  0x00007822 
+ 00031632  0x00006743 rtn  0x00000001 
+ 00031633  0x00006744 branch  0x0000798b 
+ 00031634  0x00006747 jam  0x00000000 , 0x00000580 
+ 00031635  0x00006748 arg  0x00000582 , 0x00000006 
+ 00031636  0x00006749 arg  0x00000612 , 0x00000005 
+ 00031637  0x0000674a branch  0x00007828 
+ 00031638  0x0000674d force  0x00000004 , 0x00000039 
+ 00031639  0x0000674f increase  0xfffffffc , 0x00000006 
+ 00031640  0x00006751 ifetch  0x00000004 , 0x00000006 
+ 00031641  0x00006752 istore  0x00000004 , 0x00000005 
+ 00031642  0x00006753 increase  0xfffffff8 , 0x00000006 
+ 00031643  0x00006754 loop  0x00007b98 
+ 00031644  0x00006755 rtn 
+ 00031645  0x00006759 rtn  0x0000002b 
+ 00031646  0x0000675a call  0x00007ba5 
+ 00031647  0x0000675b call  0x00007c13 
+ 00031648  0x0000675c branch  0x00007bd9 
+ 00031649  0x0000675f fetch  0x00000001 , 0x00004132 
+ 00031650  0x00006760 rtneq  0x00000001 
+ 00031651  0x00006761 call  0x00007bf2 
+ 00031652  0x00006763 branch  0x00007c04 
+ 00031653  0x00006766 fetch  0x00000001 , 0x000047fd 
+ 00031654  0x00006767 rtneq  0x000000ff 
+ 00031655  0x00006768 iforce  0x00000002 
+ 00031656  0x00006769 call  0x000069da 
+ 00031657  0x0000676a fetcht  0x00000001 , 0x000047fd 
+ 00031658  0x0000676b call  0x000069ed 
+ 00031659  0x0000676c nop  0x00000064 
+ 00031660  0x0000676d fetcht  0x00000001 , 0x000047fd 
+ 00031661  0x0000676e call  0x000069d1 
+ 00031662  0x0000676f branch  0x00007bb1 
+ 00031663  0x00006772 jam  0x000000ff , 0x000047fd 
+ 00031664  0x00006773 rtn 
+ 00031665  0x00006776 set1  0x00000025 , 0x00000000 
+ 00031666  0x00006777 bpatch  0x00000085 , 0x00004030 
+ 00031667  0x00006778 fetch  0x00000001 , 0x000047fd 
+ 00031668  0x00006779 rtneq  0x000000ff 
+ 00031669  0x0000677a copy  0x0000003f , 0x00000002 
+ 00031670  0x0000677b call  0x000069e5 
+ 00031671  0x0000677c nbranch  0x00007bc4 , 0x00000001 
+ 00031672  0x0000677f call  0x00007bce 
+ 00031673  0x00006780 fetch  0x00000002 , 0x000047f4 
+ 00031674  0x00006781 set1  0x0000000c 
+ 00031675  0x00006782 store  0x00000002 , 0x000047f4 
+ 00031676  0x00006783 fetch  0x00000001 , 0x000047eb 
+ 00031677  0x00006784 rtneq  0x00000000 
+ 00031678  0x00006785 jam  0x00000000 , 0x000047eb 
+ 00031679  0x00006787 fetch  0x00000001 , 0x000047fc 
+ 00031680  0x00006788 store  0x00000001 , 0x000047ea 
+ 00031681  0x00006789 call  0x00007bd5 
+ 00031682  0x0000678a jam  0x0000002c , 0x00000b7d 
+ 00031683  0x0000678b branch  0x00007c27 
+ 00031684  0x0000678d fetch  0x00000002 , 0x000047f4 
+ 00031685  0x0000678e set0  0x0000000c 
+ 00031686  0x0000678f store  0x00000002 , 0x000047f4 
+ 00031687  0x00006790 fetch  0x00000001 , 0x000047eb 
+ 00031688  0x00006791 rtneq  0x00000001 
+ 00031689  0x00006792 jam  0x00000001 , 0x000047eb 
+ 00031690  0x00006794 jam  0x00000000 , 0x000047ea 
+ 00031691  0x00006795 call  0x00007bd7 
+ 00031692  0x00006796 jam  0x0000002d , 0x00000b7d 
+ 00031693  0x00006797 branch  0x00007c27 
+ 00031694  0x0000679a fetch  0x00000001 , 0x000047ea 
+ 00031695  0x0000679b rtn  0x00000034 
+ 00031696  0x0000679c increase  0xffffffff , 0x0000003f 
+ 00031697  0x0000679d store  0x00000001 , 0x000047ea 
+ 00031698  0x0000679e nrtn  0x00000034 
+ 00031699  0x000067a0 jam  0x00000010 , 0x00000b7d 
+ 00031700  0x000067a1 branch  0x00007c27 
+ 00031701  0x000067a4 arg  0x00000007 , 0x00000007 
+ 00031702  0x000067a5 branch  0x00003dc2 
+ 00031703  0x000067a8 arg  0x00000007 , 0x00000007 
+ 00031704  0x000067a9 branch  0x00003dc6 
+ 00031705  0x000067ac fetch  0x00000001 , 0x000047f7 
+ 00031706  0x000067ad rtneq  0x000000ff 
+ 00031707  0x000067ae iforce  0x00000002 
+ 00031708  0x000067af call  0x000069da 
+ 00031709  0x000067b0 branch  0x00007be2 
+ 00031710  0x000067b3 fetch  0x00000002 , 0x000047f4 
+ 00031711  0x000067b4 set0  0x0000000d 
+ 00031712  0x000067b5 store  0x00000002 , 0x000047f4 
+ 00031713  0x000067b6 jam  0x00000000 , 0x000047e9 
+ 00031714  0x000067b8 fetch  0x00000002 , 0x000047f4 
+ 00031715  0x000067b9 set0  0x0000000e 
+ 00031716  0x000067ba store  0x00000002 , 0x000047f4 
+ 00031717  0x000067bb fetcht  0x00000001 , 0x000047f7 
+ 00031718  0x000067bc branch  0x000069ed 
+ 00031719  0x000067bf fetch  0x00000002 , 0x000047f4 
+ 00031720  0x000067c0 set1  0x0000000e 
+ 00031721  0x000067c1 store  0x00000002 , 0x000047f4 
+ 00031722  0x000067c2 jam  0x00000000 , 0x000047e9 
+ 00031723  0x000067c3 fetcht  0x00000001 , 0x000047f7 
+ 00031724  0x000067c4 branch  0x000069ef 
+ 00031725  0x000067c7 fetch  0x00000002 , 0x000047f4 
+ 00031726  0x000067c8 set1  0x0000000d 
+ 00031727  0x000067c9 store  0x00000002 , 0x000047f4 
+ 00031728  0x000067ca jam  0x00000001 , 0x000047e9 
+ 00031729  0x000067cb rtn 
+ 00031730  0x000067ce set1  0x00000025 , 0x00000000 
+ 00031731  0x000067cf bpatch  0x00000086 , 0x00004030 
+ 00031732  0x000067d0 fetch  0x00000001 , 0x000047e9 
+ 00031733  0x000067d1 rtneq  0x00000000 
+ 00031734  0x000067d2 arg  0x00000009 , 0x00000007 
+ 00031735  0x000067d3 call  0x00007e53 
+ 00031736  0x000067d4 nrtn  0x00000034 
+ 00031737  0x000067d5 fetch  0x00000001 , 0x000047e9 
+ 00031738  0x000067d6 beq  0x00000002 , 0x00007bff 
+ 00031739  0x000067d7 call  0x00007be7 
+ 00031740  0x000067d8 jam  0x00000002 , 0x000047e9 
+ 00031741  0x000067d9 fetch  0x00000002 , 0x000047fa 
+ 00031742  0x000067da branch  0x00007c02 
+ 00031743  0x000067dc call  0x00007be2 
+ 00031744  0x000067dd jam  0x00000003 , 0x000047e9 
+ 00031745  0x000067de fetch  0x00000002 , 0x000047f8 
+ 00031746  0x000067e0 arg  0x00000009 , 0x00000007 
+ 00031747  0x000067e1 branch  0x00007e4c 
+ 00031748  0x000067e5 set1  0x00000025 , 0x00000000 
+ 00031749  0x000067e6 bpatch  0x00000087 , 0x00004030 
+ 00031750  0x000067e7 arg  0x00000000 , 0x00000011 
+ 00031751  0x000067e8 fetcht  0x00000004 , 0x000047ec 
+ 00031752  0x000067e9 copy  0x00000022 , 0x00000012 
+ 00031753  0x000067ec copy  0x00000012 , 0x0000003f 
+ 00031754  0x000067ed increase  0x000000a0 , 0x00000002 
+ 00031755  0x000067ee increase  0x000000a0 , 0x00000002 
+ 00031756  0x000067ef isub  0x00000002 , 0x0000003e 
+ 00031757  0x000067f0 nbranch  0x00007c16 , 0x00000002 
+ 00031758  0x000067f1 increase  0x00000001 , 0x00000011 
+ 00031759  0x000067f2 and  0x00000011 , 0x0000000f , 0x0000003f 
+ 00031760  0x000067f3 nbranch  0x00007c09 , 0x00000034 
+ 00031761  0x000067f4 arg  0x00000000 , 0x00000011 
+ 00031762  0x000067f5 call  0x00007c1d 
+ 00031763  0x000067f7 copy  0x00000022 , 0x0000003f 
+ 00031764  0x000067f8 store  0x00000004 , 0x000047ec 
+ 00031765  0x000067f9 rtn 
+ 00031766  0x000067fb set1  0x00000025 , 0x00000000 
+ 00031767  0x000067fc bpatch  0x00000088 , 0x00004031 
+ 00031768  0x000067fd copy  0x00000011 , 0x0000003f 
+ 00031769  0x000067fe rtn  0x00000034 
+ 00031770  0x000067ff increase  0xffffff60 , 0x00000002 
+ 00031771  0x00006800 increase  0xffffff60 , 0x00000002 
+ 00031772  0x00006801 storet  0x00000004 , 0x000047ec 
+ 00031773  0x00006803 increase  0x00000050 , 0x0000003f 
+ 00031774  0x00006804 store  0x00000001 , 0x00000b7d 
+ 00031775  0x00006805 branch  0x00007c27 
+ 00031776  0x0000680c jam  0x00000001 , 0x000047dd 
+ 00031777  0x0000680e fetch  0x00000001 , 0x000047de 
+ 00031778  0x0000680f nbranch  0x00007c21 , 0x00000034 
+ 00031779  0x00006810 rtn 
+ 00031780  0x00006813 jam  0x00000000 , 0x000047dd 
+ 00031781  0x00006814 rtn 
+ 00031782  0x00006817 branch  0x00007f9f 
+ 00031783  0x0000681c set1  0x00000025 , 0x00000000 
+ 00031784  0x0000681d bpatch  0x00000089 , 0x00004031 
+ 00031785  0x0000681e fetch  0x00000001 , 0x00004132 
+ 00031786  0x0000681f rtneq  0x00000001 
+ 00031787  0x00006820 call  0x00007c20 
+ 00031788  0x00006821 copy  0x00000011 , 0x0000003f 
+ 00031789  0x00006822 store  0x00000004 , 0x000008ab 
+ 00031790  0x00006823 arg  0x000047df , 0x00000011 
+ 00031791  0x00006824 call  0x00007f92 
+ 00031792  0x00006825 fetch  0x00000004 , 0x000008ab 
+ 00031793  0x00006826 copy  0x0000003f , 0x00000011 
+ 00031794  0x00006827 branch  0x00007c24 
+ 00031795  0x0000682a set1  0x00000025 , 0x00000000 
+ 00031796  0x0000682b bpatch  0x0000008a , 0x00004031 
+ 00031797  0x0000682c fetch  0x00000001 , 0x00004132 
+ 00031798  0x0000682d rtneq  0x00000001 
+ 00031799  0x0000682e call  0x00007c20 
+ 00031800  0x0000682f copy  0x00000011 , 0x0000003f 
+ 00031801  0x00006830 store  0x00000004 , 0x000008ab 
+ 00031802  0x00006831 arg  0x000047e4 , 0x00000011 
+ 00031803  0x00006832 call  0x00007f92 
+ 00031804  0x00006833 fetch  0x00000004 , 0x000008ab 
+ 00031805  0x00006834 copy  0x0000003f , 0x00000011 
+ 00031806  0x00006835 branch  0x00007c24 
+ 00031807  0x00006838 set1  0x00000025 , 0x00000000 
+ 00031808  0x00006839 bpatch  0x0000008b , 0x00004031 
+ 00031809  0x0000683a setarg  0x00000000 
+ 00031810  0x0000683b store  0x00000005 , 0x000047e4 
+ 00031811  0x0000683c store  0x00000005 , 0x000047df 
+ 00031812  0x0000683d rtn 
+ 00031813  0x00006840 set1  0x00000025 , 0x00000000 
+ 00031814  0x00006841 bpatch  0x0000008c , 0x00004031 
+ 00031815  0x00006842 fetch  0x00000001 , 0x00004272 
+ 00031816  0x00006843 nrtn  0x00000034 
+ 00031817  0x00006844 arg  0x000047e4 , 0x00000011 
+ 00031818  0x00006845 call  0x00007fac 
+ 00031819  0x00006846 rtn  0x00000034 
+ 00031820  0x00006847 jam  0x00000000 , 0x000008aa 
+ 00031821  0x00006848 call  0x00007c51 
+ 00031822  0x00006849 fetch  0x00000001 , 0x000008aa 
+ 00031823  0x0000684a branch  0x00007c45 , 0x00000034 
+ 00031824  0x0000684b rtn 
+ 00031825  0x0000684e set1  0x00000025 , 0x00000000 
+ 00031826  0x0000684f bpatch  0x0000008d , 0x00004031 
+ 00031827  0x00006850 call  0x00007c20 
+ 00031828  0x00006851 arg  0x000047e4 , 0x00000011 
+ 00031829  0x00006852 call  0x00007f9f 
+ 00031830  0x00006853 copy  0x0000003f , 0x00000002 
+ 00031831  0x00006854 call  0x00007c24 
+ 00031832  0x00006855 copy  0x00000002 , 0x0000003f 
+ 00031833  0x00006856 rtn  0x00000034 
+ 00031834  0x00006857 beq  0x00000001 , 0x00007c97 
+ 00031835  0x00006858 beq  0x00000002 , 0x00007c9c 
+ 00031836  0x00006859 beq  0x00000003 , 0x00007ca2 
+ 00031837  0x0000685a beq  0x00000007 , 0x00007ca7 
+ 00031838  0x0000685b beq  0x00000008 , 0x00007ca8 
+ 00031839  0x0000685c beq  0x00000009 , 0x00007ca9 
+ 00031840  0x0000685d beq  0x0000000b , 0x00007cac 
+ 00031841  0x0000685e beq  0x0000000c , 0x00007cad 
+ 00031842  0x0000685f beq  0x0000000d , 0x00007cae 
+ 00031843  0x00006860 beq  0x0000000e , 0x00007cb1 
+ 00031844  0x00006861 beq  0x0000000f , 0x00007cb3 
+ 00031845  0x00006862 beq  0x00000010 , 0x00007cb6 
+ 00031846  0x00006863 beq  0x00000012 , 0x00007cbb 
+ 00031847  0x00006864 beq  0x00000015 , 0x00007bed 
+ 00031848  0x00006865 beq  0x00000014 , 0x00007be7 
+ 00031849  0x00006866 beq  0x00000013 , 0x00007bde 
+ 00031850  0x00006867 beq  0x00000016 , 0x00007cbc 
+ 00031851  0x00006868 beq  0x00000017 , 0x00007cc1 
+ 00031852  0x00006869 beq  0x00000018 , 0x00007cc3 
+ 00031853  0x0000686a beq  0x00000019 , 0x00007cc8 
+ 00031854  0x0000686b beq  0x0000001b , 0x00007cc6 
+ 00031855  0x0000686c beq  0x0000001c , 0x00007cd3 
+ 00031856  0x0000686d beq  0x0000001e , 0x00007cd5 
+ 00031857  0x0000686f store  0x00000001 , 0x00000b7d 
+ 00031858  0x00006870 set1  0x00000025 , 0x00000000 
+ 00031859  0x00006871 bpatch  0x0000008e , 0x00004031 
+ 00031860  0x00006872 fetch  0x00000001 , 0x0000007c 
+ 00031861  0x00006873 branch  0x00007c79 , 0x00000034 
+ 00031862  0x00006874 call  0x000061d9 
+ 00031863  0x00006875 fetch  0x00000001 , 0x0000007c 
+ 00031864  0x00006876 nbranch  0x00007c8c , 0x00000034 
+ 00031865  0x00006878 fetch  0x00000001 , 0x00000b7d 
+ 00031866  0x00006879 bmark0  0x00000009 , 0x00007c87 
+ 00031867  0x0000687b beq  0x00000005 , 0x00004a19 
+ 00031868  0x0000687c beq  0x00000006 , 0x00004a28 
+ 00031869  0x0000687d beq  0x0000000a , 0x00007caa 
+ 00031870  0x0000687e beq  0x00000004 , 0x00007ca4 
+ 00031871  0x0000687f beq  0x00000011 , 0x00007cb8 
+ 00031872  0x00006880 beq  0x0000001d , 0x00007c8e 
+ 00031873  0x00006881 beq  0x0000001f , 0x0000690c 
+ 00031874  0x00006882 beq  0x00000020 , 0x00006910 
+ 00031875  0x00006883 beq  0x00000012 , 0x00007c85 
+ 00031876  0x00006884 rtn 
+ 00031877  0x00006888 jam  0x0000002f , 0x00000b7d 
+ 00031878  0x00006889 branch  0x00005620 
+ 00031879  0x0000688b store  0x00000001 , 0x00000b7d 
+ 00031880  0x0000688c call  0x000032ee 
+ 00031881  0x0000688d branch  0x00007c8c , 0x00000005 
+ 00031882  0x0000688e call  0x000032f9 
+ 00031883  0x0000688f nrtn  0x00000005 
+ 00031884  0x00006891 jam  0x00000001 , 0x000008aa 
+ 00031885  0x00006892 branch  0x00007c33 
+ 00031886  0x00006896 jam  0x00000034 , 0x0000007c 
+ 00031887  0x00006897 set1  0x00000003 , 0x00000000 
+ 00031888  0x00006898 nrtn  0x00000029 
+ 00031889  0x00006899 jam  0x00000000 , 0x00004748 
+ 00031890  0x0000689a jam  0x00000013 , 0x0000007c 
+ 00031891  0x0000689b fetch  0x00000001 , 0x00000177 
+ 00031892  0x0000689c set0  0x00000002 , 0x0000003f 
+ 00031893  0x0000689d store  0x00000001 , 0x00000177 
+ 00031894  0x0000689e rtn 
+ 00031895  0x000068a1 fetch  0x00000002 , 0x000047f4 
+ 00031896  0x000068a2 set1  0x00000006 
+ 00031897  0x000068a3 store  0x00000002 , 0x000047f4 
+ 00031898  0x000068a4 jam  0x00000003 , 0x00004133 
+ 00031899  0x000068a5 rtn 
+ 00031900  0x000068a8 jam  0x00000000 , 0x000047f2 
+ 00031901  0x000068a9 jam  0x00000000 , 0x00004133 
+ 00031902  0x000068aa fetch  0x00000002 , 0x000047f4 
+ 00031903  0x000068ab set0  0x00000006 
+ 00031904  0x000068ac store  0x00000002 , 0x000047f4 
+ 00031905  0x000068ad rtn 
+ 00031906  0x000068b0 jam  0x00000005 , 0x00004272 
+ 00031907  0x000068b1 rtn 
+ 00031908  0x000068b4 jam  0x00000007 , 0x0000007c 
+ 00031909  0x000068b5 jam  0x00000013 , 0x00000446 
+ 00031910  0x000068b6 rtn 
+ 00031911  0x000068ba rtn 
+ 00031912  0x000068bd rtn 
+ 00031913  0x000068c0 rtn 
+ 00031914  0x000068c3 jam  0x00000002 , 0x00000450 
+ 00031915  0x000068c4 branch  0x000049da 
+ 00031916  0x000068c7 rtn 
+ 00031917  0x000068c9 rtn 
+ 00031918  0x000068cb jam  0x00000001 , 0x000043d8 
+ 00031919  0x000068cc jam  0x00000000 , 0x000044db 
+ 00031920  0x000068cd rtn 
+ 00031921  0x000068cf jam  0x00000000 , 0x000043d8 
+ 00031922  0x000068d0 rtn 
+ 00031923  0x000068d2 jam  0x00000001 , 0x000043d8 
+ 00031924  0x000068d3 jam  0x00000001 , 0x000044db 
+ 00031925  0x000068d4 rtn 
+ 00031926  0x000068d6 jam  0x00000000 , 0x000043d8 
+ 00031927  0x000068d7 rtn 
+ 00031928  0x000068d9 setarg  0x00000001 
+ 00031929  0x000068da store  0x00000002 , 0x000003ef 
+ 00031930  0x000068db rtn 
+ 00031931  0x000068dd rtn 
+ 00031932  0x000068df jam  0x00000001 , 0x000043d2 
+ 00031933  0x000068e0 jam  0x0000001b , 0x00004272 
+ 00031934  0x000068e1 fetch  0x00000006 , 0x00000268 
+ 00031935  0x000068e2 store  0x00000006 , 0x000044e7 
+ 00031936  0x000068e3 rtn 
+ 00031937  0x000068e5 jam  0x00000001 , 0x000043d2 
+ 00031938  0x000068e6 rtn 
+ 00031939  0x000068e8 jam  0x00000000 , 0x000043d2 
+ 00031940  0x000068e9 jam  0x00000000 , 0x00004272 
+ 00031941  0x000068ea rtn 
+ 00031942  0x000068ec jam  0x0000004b , 0x00000b7d 
+ 00031943  0x000068ed branch  0x00005620 
+ 00031944  0x000068ef set1  0x00000025 , 0x00000000 
+ 00031945  0x000068f0 bpatch  0x0000008f , 0x00004031 
+ 00031946  0x000068f1 fetch  0x00000002 , 0x00004288 
+ 00031947  0x000068f2 call  0x00007f66 
+ 00031948  0x000068f3 fetch  0x00000001 , 0x000047fd 
+ 00031949  0x000068f4 beq  0x000000ff , 0x00007cd0 
+ 00031950  0x000068f5 copy  0x0000003f , 0x00000002 
+ 00031951  0x000068f6 call  0x000069d1 
+ 00031952  0x000068f8 call  0x00007be2 
+ 00031953  0x000068f9 call  0x00007c3f 
+ 00031954  0x000068fa branch  0x00003ccd 
+ 00031955  0x000068fd jam  0x00000001 , 0x000046f8 
+ 00031956  0x000068fe rtn 
+ 00031957  0x00006901 force  0x00000004 , 0x00000007 
+ 00031958  0x00006902 branch  0x00007e4b 
+ 00031959  0x00006905 fetch  0x00000001 , 0x000047f4 
+ 00031960  0x00006906 rtnbit0  0x0000000c 
+ 00031961  0x00006907 rtnbit0  0x00000007 
+ 00031962  0x00006908 branch  0x00007cd5 
+ 00031963  0x0000690d set1  0x00000025 , 0x00000000 
+ 00031964  0x0000690e bpatch  0x000000d5 , 0x0000403a 
+ 00031965  0x0000690f call  0x00007df3 
+ 00031966  0x00006910 hfetch  0x00000001 , 0x00008c26 
+ 00031967  0x00006911 store  0x00000001 , 0x000008af 
+ 00031968  0x00006912 hfetch  0x00000001 , 0x00008c27 
+ 00031969  0x00006913 store  0x00000001 , 0x000008b0 
+ 00031970  0x00006914 hjam  0x000000e0 , 0x00008c26 
+ 00031971  0x00006915 fetch  0x00000001 , 0x000008b0 
+ 00031972  0x00006916 compare  0x00000001 , 0x0000003f , 0x00000001 
+ 00031973  0x00006917 call  0x00007d3a , 0x00000001 
+ 00031974  0x00006918 set1  0x00000025 , 0x00000000 
+ 00031975  0x00006919 bpatch  0x000000d6 , 0x0000403a 
+ 00031976  0x0000691a fetch  0x00000001 , 0x000008af 
+ 00031977  0x0000691b compare  0x00000001 , 0x0000003f , 0x00000001 
+ 00031978  0x0000691c call  0x00007cf8 , 0x00000001 
+ 00031979  0x0000691d fetch  0x00000001 , 0x000008f8 
+ 00031980  0x0000691e bne  0x00000002 , 0x00007dc2 
+ 00031981  0x0000691f fetch  0x00000002 , 0x000008f9 
+ 00031982  0x00006920 increase  0x00000001 , 0x0000003f 
+ 00031983  0x00006921 store  0x00000002 , 0x000008f9 
+ 00031984  0x00006922 fetcht  0x00000002 , 0x000008fb 
+ 00031985  0x00006923 isub  0x00000002 , 0x0000003e 
+ 00031986  0x00006924 branch  0x00007db2 , 0x00000002 
+ 00031987  0x00006925 fetch  0x00000001 , 0x000008af 
+ 00031988  0x00006926 bbit0  0x00000006 , 0x00007dc2 
+ 00031989  0x00006927 setarg  0x00000000 
+ 00031990  0x00006928 store  0x00000002 , 0x000008f9 
+ 00031991  0x00006929 branch  0x00007dc2 
+ 00031992  0x0000692d set1  0x00000025 , 0x00000000 
+ 00031993  0x0000692e bpatch  0x000000d7 , 0x0000403a 
+ 00031994  0x0000692f hjam  0x00000011 , 0x00008c26 
+ 00031995  0x00006930 hfetch  0x00000001 , 0x00008c20 
+ 00031996  0x00006931 store  0x00000001 , 0x000008b1 
+ 00031997  0x00006932 copy  0x0000003f , 0x00000039 
+ 00031998  0x00006933 branch  0x00007d18 , 0x00000034 
+ 00031999  0x00006934 arg  0x000008ff , 0x00000005 
+ 00032000  0x00006935 call  0x00007d36 
+ 00032001  0x00006936 fetch  0x00000001 , 0x000008b1 
+ 00032002  0x00006937 sub  0x0000003f , 0x00000007 , 0x0000003e 
+ 00032003  0x00006938 rtn  0x00000002 
+ 00032004  0x0000693a set1  0x00000025 , 0x00000000 
+ 00032005  0x0000693b bpatch  0x000000d8 , 0x0000403b 
+ 00032006  0x0000693c fetch  0x00000001 , 0x000008ff 
+ 00032007  0x0000693d beq  0x00000020 , 0x00007d16 
+ 00032008  0x0000693e beq  0x00000021 , 0x00007d22 
+ 00032009  0x0000693f beq  0x00000000 , 0x00007d10 
+ 00032010  0x00006940 fetch  0x00000001 , 0x00000900 
+ 00032011  0x00006941 beq  0x00000005 , 0x00007d9b 
+ 00032012  0x00006942 beq  0x00000006 , 0x00007d3d 
+ 00032013  0x00006943 beq  0x00000009 , 0x00007d98 
+ 00032014  0x00006944 beq  0x0000000b , 0x00007da2 
+ 00032015  0x00006945 branch  0x00007d32 
+ 00032016  0x00006948 fetch  0x00000001 , 0x00000900 
+ 00032017  0x00006949 beq  0x00000001 , 0x00007daf 
+ 00032018  0x0000694a beq  0x00000003 , 0x00007dab 
+ 00032019  0x0000694b beq  0x00000009 , 0x00007d34 
+ 00032020  0x0000694c beq  0x00000005 , 0x00007d9b 
+ 00032021  0x0000694d branch  0x00007d32 
+ 00032022  0x0000694f call  0x00007d34 
+ 00032023  0x00006950 rtn 
+ 00032024  0x00006953 fetch  0x00000001 , 0x000008af 
+ 00032025  0x00006954 bbit1  0x00000004 , 0x00007d04 
+ 00032026  0x00006955 rtn 
+ 00032027  0x00006957 fetch  0x00000001 , 0x000008f6 
+ 00032028  0x00006958 increase  0x00000001 , 0x0000003f 
+ 00032029  0x00006959 store  0x00000001 , 0x000008f6 
+ 00032030  0x0000695a compare  0x00000002 , 0x0000003f , 0x000000ff 
+ 00032031  0x0000695b nbranch  0x00007d34 , 0x00000001 
+ 00032032  0x0000695c jam  0x00000001 , 0x000008f7 
+ 00032033  0x0000695d branch  0x00007d34 
+ 00032034  0x0000695f fetch  0x00000001 , 0x00000900 
+ 00032035  0x00006960 beq  0x0000000a , 0x00007d27 
+ 00032036  0x00006961 beq  0x00000009 , 0x00007d2e 
+ 00032037  0x00006962 beq  0x0000000b , 0x00007d1b 
+ 00032038  0x00006963 branch  0x00007d32 
+ 00032039  0x00006965 fetch  0x00000001 , 0x000008f8 
+ 00032040  0x00006966 beq  0x00000005 , 0x00007d2c 
+ 00032041  0x00006967 bne  0x00000004 , 0x00007d34 
+ 00032042  0x00006968 jam  0x00000005 , 0x000008f8 
+ 00032043  0x00006969 branch  0x00007d34 
+ 00032044  0x0000696b jam  0x00000002 , 0x000008f8 
+ 00032045  0x0000696c branch  0x00007d34 
+ 00032046  0x0000696f jam  0x00000001 , 0x000008f7 
+ 00032047  0x00006970 arg  0x000008f7 , 0x00000011 
+ 00032048  0x00006971 arg  0x00000001 , 0x00000012 
+ 00032049  0x00006972 branch  0x00007d65 
+ 00032050  0x00006974 hjam  0x00000001 , 0x00008c11 
+ 00032051  0x00006975 rtn 
+ 00032052  0x00006977 hjam  0x00000040 , 0x00008c12 
+ 00032053  0x00006978 rtn 
+ 00032054  0x0000697b hfetch  0x00000001 , 0x00008c18 
+ 00032055  0x0000697c istore  0x00000001 , 0x00000005 
+ 00032056  0x0000697d loop  0x00007d36 
+ 00032057  0x0000697e rtn 
+ 00032058  0x00006981 hjam  0x00000001 , 0x00008c27 
+ 00032059  0x00006982 call  0x00007d7c 
+ 00032060  0x00006983 rtn 
+ 00032061  0x00006986 set1  0x00000025 , 0x00000000 
+ 00032062  0x00006987 bpatch  0x000000d9 , 0x0000403b 
+ 00032063  0x00006988 set0  0x00000023 , 0x00000000 
+ 00032064  0x00006989 fetch  0x00000001 , 0x00000902 
+ 00032065  0x0000698a beq  0x00000001 , 0x00007d47 
+ 00032066  0x0000698b beq  0x00000002 , 0x00007d49 
+ 00032067  0x0000698c beq  0x00000003 , 0x00007d4b 
+ 00032068  0x0000698d beq  0x00000021 , 0x00007d57 
+ 00032069  0x0000698e beq  0x00000022 , 0x00007d5b 
+ 00032070  0x0000698f rtn 
+ 00032071  0x00006992 arg  0x00000912 , 0x00000011 
+ 00032072  0x00006993 branch  0x00007d62 
+ 00032073  0x00006995 arg  0x00000ab6 , 0x00000011 
+ 00032074  0x00006996 branch  0x00007d62 
+ 00032075  0x00006998 fetch  0x00000001 , 0x00000901 
+ 00032076  0x00006999 and_into  0x00000003 , 0x0000003f 
+ 00032077  0x0000699a arg  0x00000b1a , 0x00000011 
+ 00032078  0x0000699b beq  0x00000000 , 0x00007d62 
+ 00032079  0x0000699c set1  0x00000023 , 0x00000000 
+ 00032080  0x0000699d arg  0x00000b1f , 0x00000011 
+ 00032081  0x0000699e beq  0x00000001 , 0x00007d62 
+ 00032082  0x0000699f arg  0x00000b3d , 0x00000011 
+ 00032083  0x000069a0 beq  0x00000002 , 0x00007d62 
+ 00032084  0x000069a1 arg  0x00000b5b , 0x00000011 
+ 00032085  0x000069a2 beq  0x00000003 , 0x00007d62 
+ 00032086  0x000069a3 branch  0x00003bf1 
+ 00032087  0x000069a5 arg  0x00000ac8 , 0x00000011 
+ 00032088  0x000069a6 fetch  0x00000001 , 0x00000ac8 
+ 00032089  0x000069a7 copy  0x0000003f , 0x00000012 
+ 00032090  0x000069a8 branch  0x00007d65 
+ 00032091  0x000069aa fetch  0x00000002 , 0x00000903 
+ 00032092  0x000069ab beq  0x00000001 , 0x00007d5f 
+ 00032093  0x000069ac arg  0x00000926 , 0x00000011 
+ 00032094  0x000069ad branch  0x00007d62 
+ 00032095  0x000069af jam  0x00000001 , 0x000008f8 
+ 00032096  0x000069b0 arg  0x000009ee , 0x00000011 
+ 00032097  0x000069b1 branch  0x00007d62 
+ 00032098  0x000069b4 ifetch  0x00000001 , 0x00000011 
+ 00032099  0x000069b5 iforce  0x00000012 
+ 00032100  0x000069b6 increase  0x00000001 , 0x00000011 
+ 00032101  0x000069ba set1  0x00000025 , 0x00000000 
+ 00032102  0x000069bb bpatch  0x000000da , 0x0000403b 
+ 00032103  0x000069bc bmark0  0x00000023 , 0x00007d71 
+ 00032104  0x000069bd add  0x00000012 , 0x00000001 , 0x0000003f 
+ 00032105  0x000069be lshift  0x0000003f , 0x0000003f 
+ 00032106  0x000069bf hstore  0x00000001 , 0x00008c18 
+ 00032107  0x000069c0 hjam  0x00000003 , 0x00008c18 
+ 00032108  0x000069c1 fetch  0x00000001 , 0x00000905 
+ 00032109  0x000069c2 increase  0xfffffffe , 0x0000003f 
+ 00032110  0x000069c3 rshift  0x0000003f , 0x0000003f 
+ 00032111  0x000069c4 store  0x00000001 , 0x00000905 
+ 00032112  0x000069c5 beq  0x00000000 , 0x00007d7a 
+ 00032113  0x000069c7 fetch  0x00000001 , 0x00000905 
+ 00032114  0x000069c8 isub  0x00000012 , 0x0000003e 
+ 00032115  0x000069c9 branch  0x00007d75 , 0x00000002 
+ 00032116  0x000069ca copy  0x0000003f , 0x00000012 
+ 00032117  0x000069cc copy  0x00000011 , 0x0000003f 
+ 00032118  0x000069cd store  0x00000002 , 0x0000090f 
+ 00032119  0x000069ce copy  0x00000012 , 0x0000003f 
+ 00032120  0x000069cf store  0x00000001 , 0x00000911 
+ 00032121  0x000069d0 branch  0x00007d7c 
+ 00032122  0x000069d3 arg  0x00000000 , 0x00000007 
+ 00032123  0x000069d4 branch  0x00007dd5 
+ 00032124  0x000069d9 set1  0x00000025 , 0x00000000 
+ 00032125  0x000069da bpatch  0x000000db , 0x0000403b 
+ 00032126  0x000069db fetch  0x00000001 , 0x00000911 
+ 00032127  0x000069dc rtn  0x00000034 
+ 00032128  0x000069dd copy  0x0000003f , 0x00000039 
+ 00032129  0x000069de sub  0x0000003f , 0x00000040 , 0x0000003e 
+ 00032130  0x000069df branch  0x00007d84 , 0x00000002 
+ 00032131  0x000069e0 arg  0x00000040 , 0x00000039 
+ 00032132  0x000069e2 fetch  0x00000001 , 0x00000911 
+ 00032133  0x000069e3 isub  0x00000039 , 0x0000003f 
+ 00032134  0x000069e4 store  0x00000001 , 0x00000911 
+ 00032135  0x000069e5 fetch  0x00000002 , 0x0000090f 
+ 00032136  0x000069e6 copy  0x0000003f , 0x00000006 
+ 00032137  0x000069e8 ifetch  0x00000001 , 0x00000006 
+ 00032138  0x000069e9 hstore  0x00000001 , 0x00008c18 
+ 00032139  0x000069ea bmark0  0x00000023 , 0x00007d8d 
+ 00032140  0x000069eb hjam  0x00000000 , 0x00008c18 
+ 00032141  0x000069ed loop  0x00007d89 
+ 00032142  0x000069ee copy  0x00000006 , 0x0000003f 
+ 00032143  0x000069ef store  0x00000002 , 0x0000090f 
+ 00032144  0x000069f0 arg  0x00000000 , 0x00000007 
+ 00032145  0x000069f1 call  0x00007dd5 
+ 00032146  0x000069f2 fetch  0x00000001 , 0x00000911 
+ 00032147  0x000069f3 nrtn  0x00000034 
+ 00032148  0x000069f4 fetch  0x00000001 , 0x000008f8 
+ 00032149  0x000069f5 rtnne  0x00000001 
+ 00032150  0x000069f6 jam  0x00000002 , 0x000008f8 
+ 00032151  0x000069f7 rtn 
+ 00032152  0x000069fb fetch  0x00000001 , 0x00000901 
+ 00032153  0x000069fc sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00032154  0x000069fd nbranch  0x00007d32 , 0x00000002 
+ 00032155  0x000069ff fetch  0x00000001 , 0x000008ff 
+ 00032156  0x00006a00 bne  0x00000000 , 0x00007d32 
+ 00032157  0x00006a01 fetch  0x00000002 , 0x00000903 
+ 00032158  0x00006a02 bne  0x00000000 , 0x00007d32 
+ 00032159  0x00006a03 fetch  0x00000001 , 0x00000905 
+ 00032160  0x00006a04 bne  0x00000000 , 0x00007d32 
+ 00032161  0x00006a05 branch  0x00007d34 
+ 00032162  0x00006a08 fetch  0x00000001 , 0x000008ff 
+ 00032163  0x00006a09 bne  0x00000001 , 0x00007d32 
+ 00032164  0x00006a0a fetch  0x00000001 , 0x00000901 
+ 00032165  0x00006a0b bne  0x00000000 , 0x00007d32 
+ 00032166  0x00006a0c fetch  0x00000001 , 0x00000902 
+ 00032167  0x00006a0d bne  0x00000000 , 0x00007d32 
+ 00032168  0x00006a0e fetch  0x00000001 , 0x00000905 
+ 00032169  0x00006a0f bne  0x00000000 , 0x00007d32 
+ 00032170  0x00006a10 branch  0x00007d34 
+ 00032171  0x00006a13 fetch  0x00000001 , 0x00000901 
+ 00032172  0x00006a14 bne  0x00000001 , 0x00007d32 
+ 00032173  0x00006a15 jam  0x00000003 , 0x000008f8 
+ 00032174  0x00006a16 branch  0x00007d34 
+ 00032175  0x00006a19 fetch  0x00000001 , 0x00000901 
+ 00032176  0x00006a1a bne  0x00000001 , 0x00007d32 
+ 00032177  0x00006a1b branch  0x00007d34 
+ 00032178  0x00006a1e set1  0x00000025 , 0x00000000 
+ 00032179  0x00006a1f bpatch  0x000000dc , 0x0000403b 
+ 00032180  0x00006a20 hjam  0x00000000 , 0x00008c00 
+ 00032181  0x00006a21 nop  0x00002710 
+ 00032182  0x00006a22 hjam  0x000000c0 , 0x00008c10 
+ 00032183  0x00006a23 hfetch  0x00000002 , 0x00008050 
+ 00032184  0x00006a24 set0  0x0000000a , 0x0000003f 
+ 00032185  0x00006a25 hstore  0x00000002 , 0x00008050 
+ 00032186  0x00006a26 hjam  0x0000003c , 0x00008c00 
+ 00032187  0x00006a27 hjam  0x000000ff , 0x00008c26 
+ 00032188  0x00006a28 hjam  0x000000ff , 0x00008c27 
+ 00032189  0x00006a29 jam  0x00000000 , 0x00000ff0 
+ 00032190  0x00006a2a jam  0x00000000 , 0x000008f8 
+ 00032191  0x00006a2b setarg  0x00000000 
+ 00032192  0x00006a2c store  0x00000002 , 0x000008f9 
+ 00032193  0x00006a2d rtn 
+ 00032194  0x00006a31 set1  0x00000025 , 0x00000000 
+ 00032195  0x00006a32 bpatch  0x000000dd , 0x0000403b 
+ 00032196  0x00006a33 fetch  0x00000001 , 0x00000ff0 
+ 00032197  0x00006a34 rtn  0x00000034 
+ 00032198  0x00006a35 fetch  0x00000001 , 0x000008f8 
+ 00032199  0x00006a36 beq  0x00000003 , 0x00007dec 
+ 00032200  0x00006a37 rtnne  0x00000002 
+ 00032201  0x00006a38 fetch  0x00000001 , 0x00000ff0 
+ 00032202  0x00006a39 jam  0x00000000 , 0x00000ff0 
+ 00032203  0x00006a3a arg  0x00000006 , 0x00000039 
+ 00032204  0x00006a3b arg  0x00000ff1 , 0x00000006 
+ 00032205  0x00006a3c beq  0x00000002 , 0x00007dd0 
+ 00032206  0x00006a3d beq  0x00000001 , 0x00007de9 
+ 00032207  0x00006a3e branch  0x00003bf1 
+ 00032208  0x00006a41 arg  0x00008c19 , 0x00000011 
+ 00032209  0x00006a42 arg  0x00000001 , 0x00000007 
+ 00032210  0x00006a44 ifetch  0x00000001 , 0x00000006 
+ 00032211  0x00006a45 istore  0x00000001 , 0x00000011 
+ 00032212  0x00006a46 loop  0x00007dd2 
+ 00032213  0x00006a48 set1  0x00000025 , 0x00000000 
+ 00032214  0x00006a49 bpatch  0x000000de , 0x0000403b 
+ 00032215  0x00006a4a disable  0x00000010 
+ 00032216  0x00006a4b fetch  0x00000002 , 0x000008fd 
+ 00032217  0x00006a4c iforce  0x0000001b 
+ 00032218  0x00006a4d hjam  0x00000040 , 0x00008c26 
+ 00032219  0x00006a4f hfetch  0x00000001 , 0x00008c26 
+ 00032220  0x00006a50 branch  0x00007db2 , 0x00000003 
+ 00032221  0x00006a51 bbit0  0x00000006 , 0x00007ddb 
+ 00032222  0x00006a52 fetch  0x00000002 , 0x000008fd 
+ 00032223  0x00006a53 iforce  0x0000001b 
+ 00032224  0x00006a54 arg  0x00000000 , 0x00000002 
+ 00032225  0x00006a55 qset1  0x00000002 
+ 00032226  0x00006a56 hstoret  0x00000001 , 0x00008c27 
+ 00032227  0x00006a58 branch  0x00007db2 , 0x00000003 
+ 00032228  0x00006a59 hstoret  0x00000001 , 0x00008c10 
+ 00032229  0x00006a5a hfetch  0x00000001 , 0x00008c27 
+ 00032230  0x00006a5b qisolate0  0x0000003f 
+ 00032231  0x00006a5c branch  0x00007de3 , 0x00000001 
+ 00032232  0x00006a5d rtn 
+ 00032233  0x00006a61 arg  0x00000002 , 0x00000007 
+ 00032234  0x00006a62 arg  0x00008c1a , 0x00000011 
+ 00032235  0x00006a63 branch  0x00007dd2 
+ 00032236  0x00006a67 set1  0x00000025 , 0x00000000 
+ 00032237  0x00006a68 bpatch  0x000000df , 0x0000403b 
+ 00032238  0x00006a69 hjam  0x000000fc , 0x00008c00 
+ 00032239  0x00006a6a nop  0x00002710 
+ 00032240  0x00006a6b hjam  0x0000003c , 0x00008c00 
+ 00032241  0x00006a6c jam  0x00000004 , 0x000008f8 
+ 00032242  0x00006a6d rtn 
+ 00032243  0x00006a70 fetch  0x00000001 , 0x00000ff0 
+ 00032244  0x00006a71 nrtn  0x00000034 
+ 00032245  0x00006a72 fetch  0x00000002 , 0x000008f2 
+ 00032246  0x00006a73 rtn  0x00000034 
+ 00032247  0x00006a74 increase  0xffffffff , 0x0000003f 
+ 00032248  0x00006a75 store  0x00000002 , 0x000008f2 
+ 00032249  0x00006a76 jam  0x00000001 , 0x00000ff0 
+ 00032250  0x00006a77 rtn 
+ 00032251  0x00006a7b sub  0x00000039 , 0x00000000 , 0x0000003e 
+ 00032252  0x00006a7c rtn  0x00000005 
+ 00032253  0x00006a7e rshift  0x0000003f , 0x0000003f 
+ 00032254  0x00006a7f loop  0x00007dfd 
+ 00032255  0x00006a80 rtn 
+ 00032256  0x00006a83 deposit  0x00000005 
+ 00032257  0x00006a84 store  0x00000002 , 0x000002b9 
+ 00032258  0x00006a85 storet  0x00000008 , 0x000002a0 
+ 00032259  0x00006a86 deposit  0x0000000b 
+ 00032260  0x00006a87 store  0x00000004 , 0x000002a8 
+ 00032261  0x00006a88 deposit  0x00000011 
+ 00032262  0x00006a89 store  0x00000004 , 0x000002ac 
+ 00032263  0x00006a8a deposit  0x00000012 
+ 00032264  0x00006a8b store  0x00000004 , 0x000002b0 
+ 00032265  0x00006a8c deposit  0x00000013 
+ 00032266  0x00006a8d store  0x00000003 , 0x000002b4 
+ 00032267  0x00006a8e deposit  0x00000006 
+ 00032268  0x00006a8f store  0x00000002 , 0x000002b7 
+ 00032269  0x00006a90 rtn 
+ 00032270  0x00006a92 fetcht  0x00000008 , 0x000002a0 
+ 00032271  0x00006a93 fetch  0x00000004 , 0x000002a8 
+ 00032272  0x00006a94 iforce  0x0000000b 
+ 00032273  0x00006a95 fetch  0x00000004 , 0x000002ac 
+ 00032274  0x00006a96 iforce  0x00000011 
+ 00032275  0x00006a97 fetch  0x00000004 , 0x000002b0 
+ 00032276  0x00006a98 iforce  0x00000012 
+ 00032277  0x00006a99 fetch  0x00000003 , 0x000002b4 
+ 00032278  0x00006a9a iforce  0x00000013 
+ 00032279  0x00006a9b fetch  0x00000002 , 0x000002b9 
+ 00032280  0x00006a9c iforce  0x00000005 
+ 00032281  0x00006a9d fetch  0x00000002 , 0x000002b7 
+ 00032282  0x00006a9e iforce  0x00000006 
+ 00032283  0x00006a9f rtn 
+ 00032284  0x00006aa6 copy  0x00000005 , 0x0000003f 
+ 00032285  0x00006aa7 store  0x00000002 , 0x00000b7b 
+ 00032286  0x00006aa8 copy  0x00000006 , 0x0000003f 
+ 00032287  0x00006aa9 store  0x00000002 , 0x00000b79 
+ 00032288  0x00006aaa rtn 
+ 00032289  0x00006aac fetch  0x00000002 , 0x00000b7b 
+ 00032290  0x00006aad copy  0x0000003f , 0x00000005 
+ 00032291  0x00006aae fetch  0x00000002 , 0x00000b79 
+ 00032292  0x00006aaf copy  0x0000003f , 0x00000006 
+ 00032293  0x00006ab0 rtn 
+ 00032294  0x00006ab5 copy  0x00000022 , 0x0000003f 
+ 00032295  0x00006ab6 increase  0x00000010 , 0x0000003f 
+ 00032296  0x00006ab7 increase  0x00000010 , 0x0000003f 
+ 00032297  0x00006ab9 copy  0x00000022 , 0x00000002 
+ 00032298  0x00006aba isub  0x00000002 , 0x0000003e 
+ 00032299  0x00006abb branch  0x00007e29 , 0x00000002 
+ 00032300  0x00006abc rtn 
+ 00032301  0x00006abf ifetch  0x00000008 , 0x00000006 
+ 00032302  0x00006ac0 istore  0x00000008 , 0x00000005 
+ 00032303  0x00006ac1 ifetch  0x00000008 , 0x00000006 
+ 00032304  0x00006ac2 istore  0x00000008 , 0x00000005 
+ 00032305  0x00006ac4 ifetch  0x00000008 , 0x00000006 
+ 00032306  0x00006ac5 istore  0x00000008 , 0x00000005 
+ 00032307  0x00006ac7 ifetch  0x00000008 , 0x00000006 
+ 00032308  0x00006ac8 istore  0x00000008 , 0x00000005 
+ 00032309  0x00006aca ifetch  0x00000008 , 0x00000006 
+ 00032310  0x00006acb istore  0x00000008 , 0x00000005 
+ 00032311  0x00006acc ifetch  0x00000008 , 0x00000006 
+ 00032312  0x00006acd istore  0x00000008 , 0x00000005 
+ 00032313  0x00006ace rtn 
+ 00032314  0x00006ad1 force  0x00000003 , 0x00000039 
+ 00032315  0x00006ad3 force  0x00000000 , 0x0000003f 
+ 00032316  0x00006ad5 istore  0x00000008 , 0x00000005 
+ 00032317  0x00006ad6 loop  0x00007e3c 
+ 00032318  0x00006ad7 rtn 
+ 00032319  0x00006adb deposit  0x00000039 
+ 00032320  0x00006adc rtn  0x00000034 
+ 00032321  0x00006add setarg  0x00000000 
+ 00032322  0x00006adf istore  0x00000001 , 0x00000005 
+ 00032323  0x00006ae0 loop  0x00007e42 
+ 00032324  0x00006ae1 rtn 
+ 00032325  0x00006ae6 deposit  0x00000039 
+ 00032326  0x00006ae7 rtn  0x00000034 
+ 00032327  0x00006ae9 ifetch  0x00000001 , 0x00000006 
+ 00032328  0x00006aea istore  0x00000001 , 0x00000005 
+ 00032329  0x00006aeb loop  0x00007e47 
+ 00032330  0x00006aec rtn 
+ 00032331  0x00006aef setarg  0x00000000 
+ 00032332  0x00006af1 arg  0x0000423e , 0x00000005 
+ 00032333  0x00006af2 iforce  0x00000002 
+ 00032334  0x00006af3 lshift  0x00000007 , 0x0000003f 
+ 00032335  0x00006af4 iadd  0x00000005 , 0x00000005 
+ 00032336  0x00006af5 istoret  0x00000002 , 0x00000005 
+ 00032337  0x00006af6 rtn 
+ 00032338  0x00006af9 arg  0x00000000 , 0x00000007 
+ 00032339  0x00006afb set1  0x00000025 , 0x00000000 
+ 00032340  0x00006afc bpatch  0x000000bc , 0x00004037 
+ 00032341  0x00006afd fetcht  0x00000004 , 0x00004134 
+ 00032342  0x00006afe rshift  0x00000022 , 0x0000003f 
+ 00032343  0x00006aff store  0x00000004 , 0x00004134 
+ 00032344  0x00006b00 isub  0x00000002 , 0x0000000b 
+ 00032345  0x00006b01 copy  0x0000000b , 0x00000002 
+ 00032346  0x00006b02 arg  0x0000423e , 0x00000006 
+ 00032347  0x00006b03 copy  0x00000006 , 0x00000005 
+ 00032348  0x00006b04 arg  0x00000010 , 0x00000039 
+ 00032349  0x00006b06 ifetch  0x00000002 , 0x00000006 
+ 00032350  0x00006b07 isub  0x00000002 , 0x0000003f 
+ 00032351  0x00006b08 branch  0x00007e61 , 0x00000002 
+ 00032352  0x00006b09 force  0x00000000 , 0x0000003f 
+ 00032353  0x00006b0b istore  0x00000002 , 0x00000005 
+ 00032354  0x00006b0c loop  0x00007e5d 
+ 00032355  0x00006b0d arg  0x0000423e , 0x00000006 
+ 00032356  0x00006b0e lshift  0x00000007 , 0x0000003f 
+ 00032357  0x00006b0f iadd  0x00000006 , 0x00000006 
+ 00032358  0x00006b10 ifetch  0x00000002 , 0x00000006 
+ 00032359  0x00006b11 rtn 
+ 00032360  0x00006b15 increase  0x00000001 , 0x00000007 
+ 00032361  0x00006b17 increase  0xffffffff , 0x00000007 
+ 00032362  0x00006b18 rtn  0x00000005 
+ 00032363  0x00006b19 lshift8  0x0000003f , 0x0000003f 
+ 00032364  0x00006b1a branch  0x00007e69 
+ 00032365  0x00006b1f iadd  0x00000002 , 0x00000002 
+ 00032366  0x00006b20 copy  0x00000002 , 0x00000039 
+ 00032367  0x00006b21 setarg  0x00000ea6 
+ 00032368  0x00006b22 isub  0x00000039 , 0x0000003f 
+ 00032369  0x00006b23 rtn  0x00000002 
+ 00032370  0x00006b24 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032371  0x00006b25 rshift16  0x00000002 , 0x00000002 
+ 00032372  0x00006b26 increase  0x00000001 , 0x00000002 
+ 00032373  0x00006b27 lshift16  0x00000002 , 0x00000002 
+ 00032374  0x00006b28 ior  0x00000002 , 0x00000002 
+ 00032375  0x00006b29 rtn 
+ 00032376  0x00006b2c call  0x00007e7a 
+ 00032377  0x00006b2d branch  0x00007e84 
+ 00032378  0x00006b31 disable  0x00000028 
+ 00032379  0x00006b32 isub  0x00000002 , 0x0000003f 
+ 00032380  0x00006b33 branch  0x00007e7f , 0x00000002 
+ 00032381  0x00006b34 enable  0x00000028 
+ 00032382  0x00006b35 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032383  0x00006b37 rtnbit0  0x0000000f 
+ 00032384  0x00006b38 arg  0xffff0ea6 , 0x00000002 
+ 00032385  0x00006b39 iadd  0x00000002 , 0x0000003f 
+ 00032386  0x00006b3a set0  0x00000040 , 0x0000003f 
+ 00032387  0x00006b3b rtn 
+ 00032388  0x00006b3e iforce  0x00000006 
+ 00032389  0x00006b3f rshift16  0x0000003f , 0x0000003f 
+ 00032390  0x00006b40 arg  0x00000ea6 , 0x00000002 
+ 00032391  0x00006b41 imul32  0x00000002 , 0x0000003f 
+ 00032392  0x00006b42 iadd  0x00000006 , 0x0000003f 
+ 00032393  0x00006b43 rtn 
+ 00032394  0x00006b47 lshift8  0x0000003f , 0x0000003f 
+ 00032395  0x00006b48 lshift4  0x0000003f , 0x0000003f 
+ 00032396  0x00006b49 fetcht  0x00000003 , 0x00004210 
+ 00032397  0x00006b4a idiv  0x00000002 
+ 00032398  0x00006b4b call  0x00007efd 
+ 00032399  0x00006b4c quotient  0x00000002 
+ 00032400  0x00006b4d rtn 
+ 00032401  0x00006b51 arg  0x00000ea6 , 0x00000002 
+ 00032402  0x00006b52 idiv  0x00000002 
+ 00032403  0x00006b53 call  0x00007efd 
+ 00032404  0x00006b54 quotient  0x0000003f 
+ 00032405  0x00006b55 lshift16  0x0000003f , 0x0000003f 
+ 00032406  0x00006b56 remainder  0x00000002 
+ 00032407  0x00006b57 ior  0x00000002 , 0x00000002 
+ 00032408  0x00006b58 rtn 
+ 00032409  0x00006b5c arg  0x00000003 , 0x00000039 
+ 00032410  0x00006b5d branch  0x00007e9e 
+ 00032411  0x00006b5f arg  0x00000002 , 0x00000039 
+ 00032412  0x00006b60 branch  0x00007e9e 
+ 00032413  0x00006b65 arg  0x00000006 , 0x00000039 
+ 00032414  0x00006b67 ifetch  0x00000001 , 0x00000011 
+ 00032415  0x00006b68 copy  0x0000003f , 0x00000002 
+ 00032416  0x00006b69 rshift4  0x0000003f , 0x0000003f 
+ 00032417  0x00006b6a call  0x00007eaa 
+ 00032418  0x00006b6b istore  0x00000001 , 0x0000000a 
+ 00032419  0x00006b6c copy  0x00000002 , 0x0000003f 
+ 00032420  0x00006b6d and  0x0000003f , 0x0000000f , 0x0000003f 
+ 00032421  0x00006b6e call  0x00007eaa 
+ 00032422  0x00006b6f istore  0x00000001 , 0x0000000a 
+ 00032423  0x00006b70 increase  0x00000001 , 0x00000011 
+ 00032424  0x00006b71 loop  0x00007e9e 
+ 00032425  0x00006b72 rtn 
+ 00032426  0x00006b74 sub  0x0000003f , 0x00000009 , 0x0000003e 
+ 00032427  0x00006b75 branch  0x00007eae , 0x00000002 
+ 00032428  0x00006b76 increase  0x00000057 , 0x0000003f 
+ 00032429  0x00006b77 rtn 
+ 00032430  0x00006b79 add  0x0000003f , 0x00000030 , 0x0000003f 
+ 00032431  0x00006b7a rtn 
+ 00032432  0x00006b81 arg  0x00000000 , 0x00000002 
+ 00032433  0x00006b83 copy  0x00000002 , 0x00000013 
+ 00032434  0x00006b84 ifetch  0x00000001 , 0x00000003 
+ 00032435  0x00006b85 sub  0x0000003f , 0x0000002c , 0x0000003e 
+ 00032436  0x00006b86 rtn  0x00000005 
+ 00032437  0x00006b87 call  0x00007ec9 
+ 00032438  0x00006b88 copy  0x00000013 , 0x00000002 
+ 00032439  0x00006b89 call  0x00007f32 
+ 00032440  0x00006b8a arg  0x0000000a , 0x00000012 
+ 00032441  0x00006b8b imul32  0x00000012 , 0x0000003f 
+ 00032442  0x00006b8c iadd  0x00000002 , 0x0000003f 
+ 00032443  0x00006b8d copy  0x0000003f , 0x00000002 
+ 00032444  0x00006b8e branch  0x00007eb1 
+ 00032445  0x00006b92 arg  0x00000002 , 0x00000039 
+ 00032446  0x00006b93 branch  0x00007ec0 
+ 00032447  0x00006b95 arg  0x00000006 , 0x00000039 
+ 00032448  0x00006b9a ifetch  0x00000001 , 0x00000003 
+ 00032449  0x00006b9b call  0x00007ec9 
+ 00032450  0x00006b9c lshift4  0x0000003f , 0x00000013 
+ 00032451  0x00006b9d ifetch  0x00000001 , 0x00000003 
+ 00032452  0x00006b9e call  0x00007ec9 
+ 00032453  0x00006b9f iadd  0x00000013 , 0x0000003f 
+ 00032454  0x00006ba0 istore  0x00000001 , 0x00000005 
+ 00032455  0x00006ba1 loop  0x00007ec0 
+ 00032456  0x00006ba2 rtn 
+ 00032457  0x00006ba5 arg  0x0000003a , 0x00000002 
+ 00032458  0x00006ba6 isub  0x00000002 , 0x0000003e 
+ 00032459  0x00006ba7 nbranch  0x00007ed2 , 0x00000002 
+ 00032460  0x00006ba8 arg  0x00000061 , 0x00000002 
+ 00032461  0x00006ba9 isub  0x00000002 , 0x0000003e 
+ 00032462  0x00006baa branch  0x00007ed5 , 0x00000002 
+ 00032463  0x00006bab arg  0x00000037 , 0x00000002 
+ 00032464  0x00006bac isub  0x00000002 , 0x0000003f 
+ 00032465  0x00006bad rtn 
+ 00032466  0x00006baf arg  0x00000030 , 0x00000002 
+ 00032467  0x00006bb0 isub  0x00000002 , 0x0000003f 
+ 00032468  0x00006bb1 rtn 
+ 00032469  0x00006bb3 arg  0x00000057 , 0x00000002 
+ 00032470  0x00006bb4 isub  0x00000002 , 0x0000003f 
+ 00032471  0x00006bb5 rtn 
+ 00032472  0x00006bb8 copy  0x00000002 , 0x00000030 
+ 00032473  0x00006bb9 setarg  0x000001ff 
+ 00032474  0x00006bba force  0x00000000 , 0x00000012 
+ 00032475  0x00006bbc rshift3  0x0000003f , 0x00000011 
+ 00032476  0x00006bbd rshift  0x00000011 , 0x00000011 
+ 00032477  0x00006bbe ixor  0x00000011 , 0x00000011 
+ 00032478  0x00006bbf isolate1  0x00000000 , 0x00000011 
+ 00032479  0x00006bc0 setflag  0x00000001 , 0x00000009 , 0x0000003f 
+ 00032480  0x00006bc1 rshift  0x00000002 , 0x00000002 
+ 00032481  0x00006bc2 isolate1  0x00000000 , 0x0000003f 
+ 00032482  0x00006bc3 setflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00032483  0x00006bc4 rshift  0x0000003f , 0x0000003f 
+ 00032484  0x00006bc5 increase  0x00000001 , 0x00000012 
+ 00032485  0x00006bc6 compare  0x00000000 , 0x00000012 , 0x00000007 
+ 00032486  0x00006bc7 nbranch  0x00007edb , 0x00000001 
+ 00032487  0x00006bc8 istoret  0x00000001 , 0x00000005 
+ 00032488  0x00006bc9 loop  0x00007edb 
+ 00032489  0x00006bca copy  0x00000030 , 0x00000002 
+ 00032490  0x00006bcb rtn 
+ 00032491  0x00006bce div  0x0000003f , 0x0000000a 
+ 00032492  0x00006bcf call  0x00007efd 
+ 00032493  0x00006bd0 quotient  0x0000003f 
+ 00032494  0x00006bd1 lshift2  0x0000003f , 0x00000011 
+ 00032495  0x00006bd2 lshift2  0x00000011 , 0x00000011 
+ 00032496  0x00006bd3 remainder  0x0000003f 
+ 00032497  0x00006bd4 ior  0x00000011 , 0x0000003f 
+ 00032498  0x00006bd5 rtn 
+ 00032499  0x00006bd8 isolate1  0x00000000 , 0x00000011 
+ 00032500  0x00006bd9 branch  0x00007ef7 , 0x00000001 
+ 00032501  0x00006bda iforce  0x00000012 
+ 00032502  0x00006bdb rtn 
+ 00032503  0x00006bdd lshift2  0x0000003f , 0x0000003f 
+ 00032504  0x00006bde lshift2  0x0000003f , 0x0000003f 
+ 00032505  0x00006bdf ior  0x00000012 , 0x0000003f 
+ 00032506  0x00006be0 istore  0x00000001 , 0x00000005 
+ 00032507  0x00006be1 increase  0xfffffffe , 0x00000005 
+ 00032508  0x00006be2 rtn 
+ 00032509  0x00006be5 rtn  0x00000035 
+ 00032510  0x00006be6 branch  0x00007efd 
+ 00032511  0x00006bea store  0x00000008 , 0x00000161 
+ 00032512  0x00006beb force  0x00000020 , 0x0000003f 
+ 00032513  0x00006bec force  0x00000008 , 0x00000039 
+ 00032514  0x00006bed arg  0x00000028 , 0x00000005 
+ 00032515  0x00006bef istore  0x00000001 , 0x00000005 
+ 00032516  0x00006bf0 loop  0x00007f03 
+ 00032517  0x00006bf1 arg  0x00000028 , 0x00000005 
+ 00032518  0x00006bf2 increase  0x00000007 , 0x00000005 
+ 00032519  0x00006bf3 fetch  0x00000008 , 0x00000161 
+ 00032520  0x00006bf5 div  0x0000003f , 0x0000000a 
+ 00032521  0x00006bf6 call  0x00007efd 
+ 00032522  0x00006bf7 remainder  0x0000003f 
+ 00032523  0x00006bf8 or_into  0x00000030 , 0x0000003f 
+ 00032524  0x00006bf9 istore  0x00000001 , 0x00000005 
+ 00032525  0x00006bfa increase  0xfffffffe , 0x00000005 
+ 00032526  0x00006bfb quotient  0x0000003f 
+ 00032527  0x00006bfc rtn  0x00000034 
+ 00032528  0x00006bfd branch  0x00007f08 
+ 00032529  0x00006c03 store  0x00000008 , 0x00000161 
+ 00032530  0x00006c04 force  0x00000000 , 0x0000003f 
+ 00032531  0x00006c05 store  0x00000008 , 0x00000028 
+ 00032532  0x00006c06 arg  0x00000028 , 0x00000005 
+ 00032533  0x00006c07 increase  0x00000007 , 0x00000005 
+ 00032534  0x00006c08 fetch  0x00000008 , 0x00000161 
+ 00032535  0x00006c09 force  0x00000000 , 0x00000011 
+ 00032536  0x00006c0b div  0x0000003f , 0x0000000a 
+ 00032537  0x00006c0c call  0x00007efd 
+ 00032538  0x00006c0d remainder  0x0000003f 
+ 00032539  0x00006c0e call  0x00007ef3 
+ 00032540  0x00006c0f increase  0x00000001 , 0x00000011 
+ 00032541  0x00006c10 quotient  0x0000003f 
+ 00032542  0x00006c11 sub  0x0000003f , 0x00000009 , 0x0000003e 
+ 00032543  0x00006c12 nbranch  0x00007f18 , 0x00000002 
+ 00032544  0x00006c13 call  0x00007ef3 
+ 00032545  0x00006c14 isolate1  0x00000000 , 0x00000011 
+ 00032546  0x00006c15 rtn  0x00000001 
+ 00032547  0x00006c16 istore  0x00000001 , 0x00000005 
+ 00032548  0x00006c17 rtn 
+ 00032549  0x00006c20 ifetch  0x00000001 , 0x00000011 
+ 00032550  0x00006c21 ifetcht  0x00000001 , 0x00000012 
+ 00032551  0x00006c22 isub  0x00000002 , 0x0000003e 
+ 00032552  0x00006c23 nrtn  0x00000005 
+ 00032553  0x00006c24 increase  0x00000001 , 0x00000011 
+ 00032554  0x00006c25 increase  0x00000001 , 0x00000012 
+ 00032555  0x00006c26 loop  0x00007f25 
+ 00032556  0x00006c27 force  0x00000000 , 0x0000003e 
+ 00032557  0x00006c28 rtn 
+ 00032558  0x00006c2c isub  0x00000002 , 0x0000003e 
+ 00032559  0x00006c2d nrtn  0x00000002 
+ 00032560  0x00006c2e deposit  0x00000002 
+ 00032561  0x00006c2f rtn 
+ 00032562  0x00006c32 iadd  0x00000002 , 0x0000003f 
+ 00032563  0x00006c33 isub  0x00000002 , 0x00000002 
+ 00032564  0x00006c34 isub  0x00000002 , 0x0000003f 
+ 00032565  0x00006c35 rtn 
+ 00032566  0x00006c38 arg  0x00000200 , 0x00000039 
+ 00032567  0x00006c39 arg  0x00004000 , 0x00000005 
+ 00032568  0x00006c3a branch  0x00007e3b 
+ 00032569  0x00006c3d fetch  0x00000005 , 0x0000009c 
+ 00032570  0x00006c3e store  0x00000005 , 0x00000161 
+ 00032571  0x00006c3f fetch  0x00000002 , 0x00004210 
+ 00032572  0x00006c40 istore  0x00000002 , 0x00000005 
+ 00032573  0x00006c41 setarg  0x00000000 
+ 00032574  0x00006c42 setflag  0x0000002d , 0x00000007 , 0x0000003f 
+ 00032575  0x00006c43 setflag  0x0000002b , 0x00000006 , 0x0000003f 
+ 00032576  0x00006c44 setflag  0x00000018 , 0x00000005 , 0x0000003f 
+ 00032577  0x00006c45 setflag  0x0000002e , 0x00000004 , 0x0000003f 
+ 00032578  0x00006c46 istore  0x00000001 , 0x00000005 
+ 00032579  0x00006c47 branch  0x00007f52 
+ 00032580  0x00006c4b fetch  0x00000005 , 0x0000009c 
+ 00032581  0x00006c4c store  0x00000005 , 0x00000161 
+ 00032582  0x00006c4d fetch  0x00000001 , 0x00000016 
+ 00032583  0x00006c4e istore  0x00000001 , 0x00000005 
+ 00032584  0x00006c4f fetch  0x00000002 , 0x000003da 
+ 00032585  0x00006c50 arg  0x00000fff , 0x00000006 
+ 00032586  0x00006c51 iand  0x00000006 , 0x0000003f 
+ 00032587  0x00006c52 setflag  0x0000002d , 0x0000000f , 0x0000003f 
+ 00032588  0x00006c53 setflag  0x0000002b , 0x0000000e , 0x0000003f 
+ 00032589  0x00006c54 setflag  0x00000018 , 0x0000000d , 0x0000003f 
+ 00032590  0x00006c55 setflag  0x0000002e , 0x0000000c , 0x0000003f 
+ 00032591  0x00006c56 istore  0x00000002 , 0x00000005 
+ 00032592  0x00006c57 branch  0x00007f52 
+ 00032593  0x00006c59 store  0x00000008 , 0x00000161 
+ 00032594  0x00006c5b fetch  0x00000001 , 0x0000416e 
+ 00032595  0x00006c5c rtneq  0x0000007f 
+ 00032596  0x00006c5d and_into  0x0000007f , 0x0000003f 
+ 00032597  0x00006c5e lshift3  0x0000003f , 0x0000003f 
+ 00032598  0x00006c5f arg  0x00004c00 , 0x00000005 
+ 00032599  0x00006c60 iadd  0x00000005 , 0x00000005 
+ 00032600  0x00006c61 fetch  0x00000008 , 0x00000161 
+ 00032601  0x00006c62 istore  0x00000008 , 0x00000005 
+ 00032602  0x00006c63 fetch  0x00000001 , 0x0000416e 
+ 00032603  0x00006c64 isolate1  0x00000007 , 0x0000003f 
+ 00032604  0x00006c65 increase  0x00000001 , 0x0000003f 
+ 00032605  0x00006c66 and_into  0x0000007f , 0x0000003f 
+ 00032606  0x00006c67 setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00032607  0x00006c68 store  0x00000001 , 0x0000416e 
+ 00032608  0x00006c69 fetch  0x00000008 , 0x00000161 
+ 00032609  0x00006c6a rtn 
+ 00032610  0x00006c6d arg  0x00000800 , 0x00000039 
+ 00032611  0x00006c6e arg  0x00000000 , 0x00000005 
+ 00032612  0x00006c6f setarg  0x01010101 
+ 00032613  0x00006c70 branch  0x00007e3c 
+ 00032614  0x00006c74 rtn  0x00000034 
+ 00032615  0x00006c75 copy  0x0000003f , 0x0000003d 
+ 00032616  0x00006c79 hfetch  0x00000002 , 0x0000810e 
+ 00032617  0x00006c7a nbranch  0x00007f68 , 0x00000034 
+ 00032618  0x00006c7b rtn 
+ 00032619  0x00006c7e hfetch  0x00000002 , 0x00008058 
+ 00032620  0x00006c7f copy  0x0000003f , 0x00000003 
+ 00032621  0x00006c80 rtn 
+ 00032622  0x00006c83 hfetch  0x00000002 , 0x0000805e 
+ 00032623  0x00006c84 copy  0x0000003f , 0x0000000a 
+ 00032624  0x00006c85 rtn 
+ 00032625  0x00006c88 copy  0x00000006 , 0x00000011 
+ 00032626  0x00006c89 call  0x00007f6e 
+ 00032627  0x00006c8a copy  0x00000011 , 0x00000006 
+ 00032628  0x00006c8c call  0x00004976 
+ 00032629  0x00006c8d call  0x000068fa 
+ 00032630  0x00006c8e branch  0x00007f68 
+ 00032631  0x00006c91 hjam  0x00000001 , 0x00008203 
+ 00032632  0x00006c92 rtn 
+ 00032633  0x00006c95 hstore  0x00000002 , 0x00008205 
+ 00032634  0x00006c96 hfetch  0x00000001 , 0x00008203 
+ 00032635  0x00006c97 set1  0x00000004 , 0x0000003f 
+ 00032636  0x00006c98 hstore  0x00000001 , 0x00008203 
+ 00032637  0x00006c99 rtn 
+ 00032638  0x00006c9b hstore  0x00000002 , 0x00008207 
+ 00032639  0x00006c9c hfetch  0x00000001 , 0x00008203 
+ 00032640  0x00006c9d set1  0x00000006 , 0x0000003f 
+ 00032641  0x00006c9e hstore  0x00000001 , 0x00008203 
+ 00032642  0x00006c9f rtn 
+ 00032643  0x00006ca2 hstore  0x00000002 , 0x00008205 
+ 00032644  0x00006ca3 hjam  0x00000030 , 0x00008203 
+ 00032645  0x00006ca4 rtn 
+ 00032646  0x00006ca7 hfetch  0x00000001 , 0x00008043 
+ 00032647  0x00006ca8 set1  0x00000004 , 0x0000003f 
+ 00032648  0x00006ca9 hstore  0x00000001 , 0x00008043 
+ 00032649  0x00006caa rtn 
+ 00032650  0x00006cad hfetch  0x00000001 , 0x00008043 
+ 00032651  0x00006cae set0  0x00000004 , 0x0000003f 
+ 00032652  0x00006caf hstore  0x00000001 , 0x00008043 
+ 00032653  0x00006cb0 rtn 
+ 00032654  0x00006cb3 hfetch  0x00000002 , 0x0000810e 
+ 00032655  0x00006cb4 arg  0x00000200 , 0x00000002 
+ 00032656  0x00006cb6 isub  0x00000002 , 0x0000003e 
+ 00032657  0x00006cb7 rtn 
+ 00032658  0x00006cbe set1  0x00000025 , 0x00000000 
+ 00032659  0x00006cbf bpatch  0x000000bd , 0x00004037 
+ 00032660  0x00006cc0 ifetcht  0x00000005 , 0x00000011 
+ 00032661  0x00006cc1 and  0x00000002 , 0x000000ff , 0x0000003f 
+ 00032662  0x00006cc2 nbranch  0x00007f99 , 0x00000034 
+ 00032663  0x00006cc3 rshift8  0x00000002 , 0x0000003f 
+ 00032664  0x00006cc4 istore  0x00000005 , 0x00000011 
+ 00032665  0x00006cc6 increase  0x00000004 , 0x00000011 
+ 00032666  0x00006cc7 ifetch  0x00000001 , 0x00000011 
+ 00032667  0x00006cc8 nbranch  0x00003bf1 , 0x00000034 
+ 00032668  0x00006cc9 fetch  0x00000001 , 0x00000b7d 
+ 00032669  0x00006cca istore  0x00000001 , 0x00000011 
+ 00032670  0x00006ccb rtn 
+ 00032671  0x00006cd1 set1  0x00000025 , 0x00000000 
+ 00032672  0x00006cd2 bpatch  0x000000be , 0x00004037 
+ 00032673  0x00006cd3 arg  0x00000005 , 0x00000039 
+ 00032674  0x00006cd4 ifetch  0x00000005 , 0x00000011 
+ 00032675  0x00006cd5 rtn  0x00000034 
+ 00032676  0x00006cd7 ifetch  0x00000001 , 0x00000011 
+ 00032677  0x00006cd8 nbranch  0x00007fa9 , 0x00000034 
+ 00032678  0x00006cd9 increase  0x00000001 , 0x00000011 
+ 00032679  0x00006cda loop  0x00007fa4 
+ 00032680  0x00006cdb branch  0x00003bf1 
+ 00032681  0x00006cdd arg  0x00000000 , 0x00000002 
+ 00032682  0x00006cde istoret  0x00000001 , 0x00000011 
+ 00032683  0x00006cdf rtn 
+ 00032684  0x00006ce5 ifetch  0x00000005 , 0x00000011 
+ 00032685  0x00006ce6 rtn 
+ 00032686  0x00006cec ifetch  0x00000001 , 0x00000011 
+ 00032687  0x00006ced rtn 
+ 00032688  0x00006cf1 ifetch  0x00000002 , 0x00000011 
+ 00032689  0x00006cf2 rtn 
+ 00032690  0x00006cf7 arg  0x00000000 , 0x00000002 
+ 00032691  0x00006cf9 fetch  0x00000001 , 0x00000006 
+ 00032692  0x00006cfa loop  0x00007fb3 , 0x00000034 
+ 00032693  0x00006cfb increase  0x00000001 , 0x00000002 
+ 00032694  0x00006cfc loop  0x00007fb3 
+ 00032695  0x00006cfd copy  0x00000002 , 0x0000003f 
+ 00032696  0x00006cfe rtn 
+ 00032697  0x00006d01 isub  0x00000002 , 0x0000003e 
+ 00032698  0x00006d02 nrtn  0x00000002 
+ 00032699  0x00006d03 copy  0x00000002 , 0x0000003f 
+ 00032700  0x00006d04 rtn 
Index: btkb/output/bt_program23.list
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/output/bt_program23.list	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/output/bt_program23.list	(working copy)
@@ -1,24552 +1,24550 @@
               include "bt_format "
               org 0x0000
-0x0000 000034 bmark1 mark_ext_patch ,patch_ext 
-0x0001 000035 beq patch00_0 ,p_soft_reset 
-0x0002 000036 beq patch00_3 ,p_main_loop 
-0x0003 000037 beq patch00_5 ,p_main_loop_end 
-0x0004 000038 beq patch12_0 ,p_shutdown_radio 
-0x0005 000039 beq patch12_2 ,p_set_freq_rx 
-0x0006 000040 beq patch12_4 ,p_set_freq_tx 
-0x0007 000041 beq patch12_5 ,p_initialize_radio_cont 
-0x0008 000042 beq patch16_0 ,p_lpm_sleep 
-0x0009 000043 beq patch16_1 ,p_lpm_recover_clk 
-0x000a 000044 beq patch16_2 ,p_lpm_dispatch 
-0x000b 000045 beq patch16_3 ,p_lpm_dispatch_next 
-0x000c 000046 beq patch16_6 ,p_lpm_dispatch_unconn 
-0x000d 000047 beq patch17_1 ,p_lpm_cal_xtal_startup 
-0x000e 000048 branch assert 
-:      000050 patch_ext:
-0x000f 000051 beq patch27_6 ,p_le_enable 
-0x0010 000052 beq patch27_7 ,p_le_disable 
-0x0011 000053 beq patch30_7 ,p_ui_timer_check 
-0x0012 000054 beq patch31_5 ,p_check_51cmd_once 
-0x0013 000055 beq patch31_7 ,p_check_enter_hibernate 
-0x0014 000056 beq patch39_5 ,p_kb_init 
-0x0015 000057 beq patch3a_0 ,p_kb_bb_event_timer 
-0x0016 000059 branch assert 
-:      000062 p_soft_reset:
-0x0017 000063 hfetch 1 ,0x813b 
-0x0018 000064 store 1 ,mem_wakup_from_power_flag 
-0x0019 000065 setarg 0x280520 
-0x001a 000066 store 3 ,mem_version_yy_mm_dd 
-0x001b 000067 hjam lock_otp ,core_misc_ctrl 
-0x001c 000068 branch soft_reset + 2 
-:      000070 p_main_loop:
-0x001d 000071 call p_ipc_timer_check 
-0x001e 000072 call p_ipc_rx 
-0x001f 000073 branch main_loop + 2 
-:      000076 p_main_loop_end:
-0x0020 000077 call inquiry_scan_dispatch 
-0x0021 000078 call page_scan_dispatch 
-0x0022 000079 call connection_dispatch 
-0x0023 000080 call p_g24_dispatch 
-0x0024 000081 branch main_loop + 15 
-:      000084 p_ipc_rx:
-:      000085 p_ipc_rx0:
-0x0025 000086 call p_check_ipc_2bt 
-0x0026 000087 rtn user 
-0x0027 000088 byteswap pdata ,pdata 
-0x0028 000089 copy pdata ,contr 
-0x0029 000090 call p_ipc_rx_byte 
-0x002a 000091 store 1 ,mem_ipc_rx_type 
-0x002b 000092 beq ipc_type_cmd ,p_ipc_rx_cmd 
-0x002c 000093 beq ipc_type_24g ,p_ipc_rx_24g 
-0x002d 000094 copy pdata ,temp 
-0x002e 000095 copy contr ,rega 
-0x002f 000096 fetch 1 ,mem_context 
-0x0030 000097 bbit0 state_inconn ,p_ipc_abondon_rx_data 
-0x0031 000098 copy rega ,contr 
-0x0032 000099 rtnmark0 mark_context 
-0x0033 000100 copy temp ,pdata 
-0x0034 000101 rtn 
-:      000103 p_ipc_abondon_rx_data:
-0x0035 000104 copy rega ,contr 
-0x0036 000105 arg mem_tst_pktcnt_sync ,contw 
-0x0037 000106 branch p_ipc_rx_cpy 
-:      000108 p_ipc_rx_cmd:
-0x0038 000109 call p_ipc_rx_byte 
-0x0039 000110 call p_ipc_rx_byte 
-0x003a 000111 store 1 ,mem_fifo_temp 
-0x003b 000112 call p_ipc_next_rx 
-0x003c 000113 branch ui_ipc_send_cmd 
-:      000114 p_ipc_next_rx:
-0x003d 000115 call p_ipc_rx_updata_contr 
-0x003e 000116 copy contr ,temp 
-0x003f 000117 byteswap temp ,temp 
-0x0040 000118 storet 2 ,mem_ipc_2bt_read_index 
-0x0041 000119 rtn 
-:      000121 p_ipc_rx_24g:
-0x0042 000122 arg mem_24g_txbuf ,contw 
-0x0043 000123 branch p_ipc_rx_cpy 
-:      000127 p_ipc_timer_check:
-0x0044 000128 fetcht 4 ,mem_ipc_last_check_timer 
-0x0045 000129 copy clkn_bt ,pdata 
-0x0046 000130 isub temp ,pdata 
-0x0047 000132 arg 1600 ,temp 
-0x0048 000133 idiv temp 
-0x0049 000134 call wait_div_end 
-0x004a 000135 quotient pdata 
-0x004b 000136 rtn blank 
-0x004c 000137 copy clkn_bt ,temp 
-0x004d 000138 storet 4 ,mem_ipc_last_check_timer 
-0x004e 000139 fetcht 2 ,mem_ipc_bt_timer 
-0x004f 000140 byteswap temp ,temp 
-0x0050 000141 iadd temp ,pdata 
-0x0051 000142 byteswap pdata ,pdata 
-0x0052 000143 store 2 ,mem_ipc_bt_timer 
-0x0053 000144 byteswap pdata ,pdata 
-0x0054 000145 and pdata ,0x3 ,pdata 
-0x0055 000146 rtnne 0 
-0x0056 000147 fetch 1 ,mem_adc_config_flag 
-0x0057 000148 bbit1 adc_config_vinlpm ,p_adc_check_vinlpm 
-0x0058 000149 bbit1 adc_config_hvin ,p_adc_check_hvin 
-:      000150 p_adc_check_gpio:
-0x0059 000151 arg 0 ,rega 
-0x005a 000152 call p_setup_adc_gpio_pu_setup 
-0x005b 000153 hjam 0x8f ,rf_adc_mode 
-0x005c 000154 fetch 1 ,mem_adc_channel 
-0x005d 000155 hstore 1 ,rf_adc_ch 
-0x005e 000156 call p_read_adc 
-0x005f 000157 arg 1 ,rega 
-0x0060 000158 branch p_setup_adc_gpio_pu_setup 
-:      000161 p_adc_check_vinlpm:
-0x0061 000162 hjam 0xbf ,rf_adc_mode 
-0x0062 000163 branch p_read_adc 
-:      000165 p_adc_check_hvin:
-0x0063 000166 hjam 0xaf ,rf_adc_mode 
-:      000167 p_read_adc:
-0x0064 000168 hfetch 1 ,core_uart_baud + 1 
-0x0065 000169 set1 7 ,pdata 
-0x0066 000170 hstore 1 ,core_uart_baud + 1 
-0x0067 000171 hfetch 1 ,rf_adc_ch 
-0x0068 000172 or_into 0x30 ,pdata 
-0x0069 000173 hstore 1 ,rf_adc_ch 
-0x006a 000174 hjam 0x7c ,rfen_adc 
-0x006b 000175 hjam 0xaa ,rf_adc_gc 
-0x006c 000176 nop 5000 
-0x006d 000177 hfetcht 2 ,core_adc_sum 
-0x006e 000178 hfetch 1 ,core_uart_baud + 1 
-0x006f 000179 set0 7 ,pdata 
-0x0070 000180 hstore 1 ,core_uart_baud + 1 
-0x0071 000181 byteswap temp ,temp 
-0x0072 000182 storet 2 ,mem_adc_current_value 
-0x0073 000183 rtn 
-:      000186 p_setup_adc_gpio_pu_setup:
-0x0074 000187 arg 0x21 ,temp 
-0x0075 000188 fetch 1 ,mem_adc_channel 
-0x0076 000189 isub temp ,temp 
-0x0077 000190 copy rega ,pdata 
-0x0078 000191 set1 gpio_active_bit ,temp 
-0x0079 000192 nbranch p_setup_adc_gpio_pu_setup_exit ,blank 
-0x007a 000193 set0 gpio_active_bit ,temp 
-:      000194 p_setup_adc_gpio_pu_setup_exit:
-0x007b 000195 arg core_gpio_pu0 ,contw 
-0x007c 000196 branch gpio_set_bit 
-:      000200 p_ipc_rx_cpy:
-0x007d 000201 call p_ipc_rx_byte 
-0x007e 000202 copy pdata ,loopcnt 
-:      000203 p_ipc_copy:
-0x007f 000204 call p_ipc_cpy_loop 
-0x0080 000205 branch p_ipc_next_rx 
-:      000207 p_ipc_cpy_loop:
-0x0081 000208 call p_ipc_rx_byte 
-0x0082 000209 istore 1 ,contw 
-0x0083 000210 loop p_ipc_cpy_loop 
-0x0084 000211 rtn 
-:      000213 p_ipc_rx_byte:
-0x0085 000214 call p_ipc_rx_updata_contr 
-0x0086 000215 ifetch 1 ,contr 
-0x0087 000216 rtn 
-:      000218 p_ipc_rx_updata_contr:
-0x0088 000219 setarg mem_ipc_2bt_fifo_end 
-0x0089 000220 isub contr ,null 
-0x008a 000221 nrtn zero 
-0x008b 000222 arg mem_ipc_2bt_fifo_head ,contr 
-0x008c 000223 rtn 
-:      000225 p_ipc_tx_evt:
-0x008d 000226 arg 3 ,loopcnt 
-0x008e 000227 arg mem_ipc_tx_evt_buff ,contr 
-:      000228 p_ipc_tx_cpy:
-0x008f 000229 copy contr ,rega 
-0x0090 000230 fetch 2 ,mem_ipc_2c51_write_index 
-0x0091 000231 byteswap pdata ,pdata 
-0x0092 000232 copy pdata ,contw 
-0x0093 000233 copy rega ,contr 
-:      000234 p_ipc_tx_loop:
-0x0094 000235 ifetch 1 ,contr 
-0x0095 000236 istore 1 ,contw 
-0x0096 000237 call p_ipc_tx_updata_contw 
-0x0097 000238 loop p_ipc_tx_loop 
-0x0098 000239 copy contw ,pdata 
-0x0099 000240 byteswap pdata ,pdata 
-0x009a 000241 store 2 ,mem_ipc_2c51_write_index 
-0x009b 000242 rtn 
-:      000243 p_ipc_tx_updata_contw:
-0x009c 000244 setarg mem_ipc_2c51_fifo_end 
-0x009d 000245 isub contw ,null 
-0x009e 000246 nrtn zero 
-0x009f 000247 arg mem_ipc_2c51_fifo_head ,contw 
-0x00a0 000248 rtn 
-:      000251 p_check_ipc_2c51:
-0x00a1 000252 fetch 2 ,mem_ipc_2c51_read_index 
-0x00a2 000253 fetcht 2 ,mem_ipc_2c51_write_index 
-0x00a3 000254 branch p_check_ipc_common 
-:      000255 p_check_ipc_2bt:
-0x00a4 000256 fetch 2 ,mem_ipc_2bt_read_index 
-0x00a5 000257 fetcht 2 ,mem_ipc_2bt_write_index 
-:      000258 p_check_ipc_common:
-0x00a6 000259 isub temp ,null 
-0x00a7 000260 branch enable_usr ,zero 
-0x00a8 000261 branch disable_usr 
-:      000264 p_ui_timer_check:
-0x00a9 000265 copy clkn_bt ,pdata 
-0x00aa 000266 store 4 ,mem_ui_timer_last_btclk_temp 
-0x00ab 000267 fetcht 1 ,mem_ui_timer_last_btclk + 3 
-0x00ac 000268 fetch 1 ,mem_ui_timer_last_btclk_temp + 3 
-0x00ad 000269 isub temp ,null 
-0x00ae 000270 ncall p_ui_timer_reinit ,positive 
-0x00af 000271 branch ui_timer_check + 2 
-:      000273 p_ui_timer_reinit:
-0x00b0 000274 fetcht 4 ,mem_ui_timer_last_btclk_temp 
-0x00b1 000275 storet 4 ,mem_ui_timer_last_btclk 
-0x00b2 000276 storet 4 ,mem_ipc_last_check_timer 
-0x00b3 000277 rtn 
-:      000281 p_kb_bb_event_timer:
-0x00b4 000282 storet 1 ,mem_app_evt_timer_count 
-0x00b5 000283 fetch 1 ,mem_ipc_bt_100ms_timer 
-0x00b6 000284 increase 1 ,pdata 
-0x00b7 000285 store 1 ,mem_ipc_bt_100ms_timer 
-:      000286 p_kb_bb_event_100ms_loop:
-0x00b8 000287 fetch 1 ,mem_app_evt_timer_count 
-0x00b9 000288 rtn blank 
-0x00ba 000289 increase -1 ,pdata 
-0x00bb 000290 store 1 ,mem_app_evt_timer_count 
-0x00bc 000292 call p_kb_long_sleep_timer 
-0x00bd 000293 branch p_kb_bb_event_100ms_loop 
-:      000295 p_kb_long_sleep_timer:
-0x00be 000296 fetch 1 ,mem_24g_enter_lpm_timer 
-0x00bf 000297 rtn blank 
-0x00c0 000298 increase -1 ,pdata 
-0x00c1 000299 store 1 ,mem_24g_enter_lpm_timer 
-0x00c2 000300 rtn 
-:      000303 p_c51_user_event:
-0x00c3 000304 copy regc ,pdata 
-0x00c4 000305 and_into bt_evt_timer_mask ,pdata 
-0x00c5 000306 rtneq bt_evt_timer_init 
-0x00c6 000307 copy regc ,pdata 
-0x00c7 000308 rtn blank 
-0x00c8 000309 store 1 ,mem_ipc_tx_evt 
-0x00c9 000310 branch p_ipc_tx_evt 
-:      000318 p_lpm_sleep:
-0x00ca 000319 call xtal_fast_wake 
-0x00cb 000320 branch lpm_sleep + 2 
-:      000322 p_lpm_recover_clk:
-0x00cc 000323 jam 0x7f ,mem_seqi 
-0x00cd 000324 call lpm_recover_clk + 2 
-0x00ce 000325 fetch 1 ,mem_hibernate_flag 
-0x00cf 000326 rtn blank 
-0x00d0 000327 jam 0 ,mem_hibernate_flag 
-0x00d1 000328 copy clkn_bt ,pdata 
-0x00d2 000329 store 4 ,mem_ipc_last_check_timer 
-0x00d3 000330 rtn 
-:      000334 p_lpm_cal_xtal_startup:
-0x00d4 000335 fetch 1 ,mem_lpm_xtalcnt 
-0x00d5 000336 nrtn blank 
-0x00d6 000337 hjam clksel_rc ,core_clksel 
-0x00d7 000338 setarg 0xf0c 
-0x00d8 000339 call lpm_write_config 
-0x00d9 000340 setarg 200000 
-0x00da 000341 call sleep 
-0x00db 000342 until null ,lpo_edge 
-0x00dc 000343 copy lpo_time ,alarm 
-0x00dd 000344 call xtal_fast_wake 
-0x00de 000345 nop 5000 
-0x00df 000346 branch lpm_cal_xtal_startup + 12 
-:      000349 p_lpm_dispatch:
-0x00e0 000350 rtnmark1 mark_24g 
-0x00e1 000351 fetch 2 ,mem_ui_state_map 
-0x00e2 000352 bbit1 ui_state_ble_connected ,lpm_dispatch + 2 
-0x00e3 000353 call lpo_calibration 
-0x00e4 000354 fetch 3 ,mem_clks_per_lpo 
-0x00e5 000355 rtn blank 
-0x00e6 000358 fetch 1 ,mem_lpm_mode 
-0x00e7 000359 rtn blank 
-0x00e8 000361 call l2cap_malloc_is_fifo_empty 
-0x00e9 000362 nrtn blank 
-0x00ea 000363 call lpm_check_wake_lock 
-0x00eb 000364 nrtn blank 
-0x00ec 000365 call xtal_fast_wake 
-0x00ed 000366 fetch 1 ,mem_ssp_enable 
-0x00ee 000367 branch lpm_dispatch0 ,blank 
-0x00ef 000368 fetch 1 ,mem_sp_local_key_invalid 
-0x00f0 000369 rtn blank 
-0x00f1 000370 branch lpm_dispatch0 
-:      000372 p_check_ipc_for_lpm:
-0x00f2 000373 call p_check_ipc_2bt 
-0x00f3 000374 nrtn user 
-0x00f4 000375 call p_check_ipc_2c51 
-0x00f5 000376 nrtn user 
-0x00f6 000377 jam 1 ,mem_c51_lpm_lock 
-0x00f7 000378 jam syc_task_lpm ,mem_c51_flag 
-0x00f8 000379 call p_c51_wait 
-0x00f9 000380 branch p_check_ipc_2bt 
-:      000382 p_lpm_dispatch_next:
-0x00fa 000383 call p_check_ipc_for_lpm 
-0x00fb 000384 nrtn user 
-0x00fc 000385 fetch 1 ,mem_c51_lpm_lock 
-0x00fd 000386 nrtn blank 
-0x00fe 000387 branch lpm_dispatch1 
-:      000389 p_c51_wait:
-0x00ff 000390 fetch 1 ,mem_c51_flag 
-0x0100 000391 nop 10 
-0x0101 000392 bne 0 ,p_c51_wait 
-0x0102 000393 rtn 
-:      000396 p_lpm_dispatch_unconn:
-0x0103 000397 call p_check_ipc_for_lpm 
-0x0104 000398 nrtn user 
-0x0105 000399 fetch 1 ,mem_c51_lpm_lock 
-0x0106 000400 nrtn blank 
-0x0107 000401 branch lpm_dispatch_unconn + 2 
-:      000405 p_initialize_radio_cont:
-0x0108 000406 call p_switchto_dpllclk 
-0x0109 000407 branch initialize_radio_cont + 4 
-:      000408 p_switchto_dpllclk:
-0x010a 000409 fetch 1 ,mem_lpm_xtalcnt 
-0x010b 000410 nbranch p_switchdpll_nocal ,blank 
-0x010c 000411 call lpm_cal_xtal_startup 
-0x010d 000412 nop 30000 
-0x010e 000413 nop 30000 
-0x010f 000414 nop 30000 
-:      000415 p_switchdpll_nocal:
-0x0110 000416 call switchto_dpllclk 
-0x0111 000417 hjam clksel_xtal ,core_clksel 
-0x0112 000418 hfetch 1 ,rf_clkpll_frac + 2 
-0x0113 000419 and_into 0xcf ,pdata 
-0x0114 000420 hstore 1 ,rf_clkpll_frac + 2 
-0x0115 000421 or_into 0x30 ,pdata 
-0x0116 000422 hstore 1 ,rf_clkpll_frac + 2 
-0x0117 000423 rtn 
-:      000427 p_set_freq_rx:
-0x0118 000428 storet 1 ,mem_last_freq 
-0x0119 000429 add temp ,rx_freq_offset ,rega 
-0x011a 000430 branch set_freq_rx + 4 
-:      000432 p_set_freq_tx_common:
-0x011b 000433 storet 1 ,mem_last_freq 
-0x011c 000434 add temp ,0 ,rega 
-0x011d 000435 branch rf_write_freq 
-:      000437 p_set_freq_tx:
-0x011e 000438 call p_set_freq_tx_common 
-0x011f 000439 setarg param_pll_setup 
-0x0120 000440 call sleep 
-:      000441 p_txon:
-0x0121 000442 hjam 0x1 ,rfen_adc 
-0x0122 000443 hjam 0x3c ,rfen_rx 
-0x0123 000444 hjam 0xe0 ,rfen_tx 
-0x0124 000445 hjam 0x12 ,0x96d 
-0x0125 000446 nop 10 
-0x0126 000447 hjam 0x01 ,rfen_mdm 
-0x0127 000448 hjam 0x3d ,rfen_mdm 
-0x0128 000449 nop 10 
-0x0129 000450 hjam 0xb7 ,rfen_sn 
-0x012a 000451 nop 10 
-0x012b 000452 hjam 0x7d ,rfen_mdm 
-0x012c 000453 fetch 1 ,mem_24g_pairing_sm 
-0x012d 000454 bne state_24g_pairing_success ,p_txpower_0dbm 
-0x012e 000455 fetch 5 ,mem_5db_tx_power_param 
-0x012f 000456 istore 5 ,contw 
-0x0130 000457 ifetch 5 ,contr 
-0x0131 000458 istore 5 ,contw 
-0x0132 000459 hjam 0xdf ,0x956 
-0x0133 000460 call p_set_tx_step_power 
-0x0134 000461 hjam 0xdf ,0x955 
-0x0135 000462 rtn 
-:      000464 p_txpower_0dbm:
-0x0136 000465 fetch 5 ,mem_24g_paring_tx_power_param 
-0x0137 000466 istore 5 ,contw 
-0x0138 000467 ifetch 5 ,contr 
-0x0139 000468 istore 5 ,contw 
-0x013a 000469 hjam 0xc2 ,0x956 
-0x013b 000470 hjam 0xd0 ,0x955 
-0x013c 000471 rtn 
-:      000476 p_set_tx_step_power:
-0x013d 000478 nop 4 
-0x013e 000479 hjam 0xd1 ,0x955 
-0x013f 000480 nop 4 
-0x0140 000481 hjam 0xd2 ,0x955 
-0x0141 000482 nop 4 
-0x0142 000483 hjam 0xd4 ,0x955 
-0x0143 000484 nop 4 
-0x0144 000487 rtn 
-:      000489 p_tx_ramp_down_common:
-0x0145 000490 hjam 0xd4 ,0x955 
-0x0146 000491 nop 4 
-0x0147 000492 hjam 0xd2 ,0x955 
-0x0148 000493 nop 4 
-0x0149 000494 hjam 0xd1 ,0x955 
-0x014a 000495 nop 4 
-0x014b 000496 hjam 0xd0 ,0x955 
-0x014c 000497 hjam 0xc0 ,0x956 
-0x014d 000498 rtn 
-:      000500 p_shutdown_radio:
-0x014e 000501 branch shutdown_radio + 2 ,is_rx 
-0x014f 000502 call p_tx_ramp_down_common 
-0x0150 000503 branch shutdown_radio + 2 
-:      000506 p_kb_before_hibernate:
-0x0151 000507 enable user 
-0x0152 000508 hfetch 4 ,0x8138 
-0x0153 000509 setflag user ,26 ,pdata 
-0x0154 000510 hstore 4 ,core_lpm_reg 
-0x0155 000511 call lpm_write_ctrl 
-0x0156 000512 jam 1 ,mem_lpm_current_mult 
-:      000513 p_kb_bt_lpm_before:
-0x0157 000514 rtn 
-:      000516 p_kb_init:
-0x0158 000518 jam 0 ,mem_c51_flag 
-0x0159 000519 jam 6 ,mem_connection_options 
-0x015a 000520 call app_lpm_mult_enable 
-0x015b 000521 setarg p_kb_bt_lpm_before 
-0x015c 000522 store 2 ,mem_cb_before_lpm 
-0x015d 000523 setarg p_c51_user_event 
-0x015e 000524 store 2 ,mem_cb_bb_event_process 
-0x015f 000525 setarg p_mouse_idle 
-0x0160 000526 store 2 ,mem_cb_idle_process 
-0x0161 000527 setarg p_ipc_rx 
-0x0162 000528 store 2 ,mem_cb_le_process 
-0x0163 000529 setarg p_kb_before_hibernate 
-0x0164 000530 store 2 ,mem_cb_before_hibernate 
-0x0165 000531 setarg mem_ipc_2bt_fifo_head 
-0x0166 000532 byteswap pdata ,pdata 
-0x0167 000533 store 2 ,mem_ipc_2bt_read_index 
-0x0168 000534 store 2 ,mem_ipc_2bt_write_index 
-0x0169 000535 call lpm_disable_exen_output 
-0x016a 000536 setarg mem_ipc_2c51_fifo_head 
-0x016b 000537 byteswap pdata ,pdata 
-0x016c 000538 store 2 ,mem_ipc_2c51_read_index 
-0x016d 000539 store 2 ,mem_ipc_2c51_write_index 
-0x016e 000540 fetch 1 ,mem_hibernate_flag 
-0x016f 000541 beq 0x5a ,p_device_init_init_hibwake 
-0x0170 000542 branch p_deveice_init_wake ,wake 
-0x0171 000543 fetch 2 ,mem_adc_0v 
-0x0172 000544 byteswap pdata ,pdata 
-0x0173 000545 store 2 ,mem_adc_0v 
-0x0174 000546 fetch 2 ,mem_adc_3v 
-0x0175 000547 byteswap pdata ,pdata 
-0x0176 000548 store 2 ,mem_adc_3v 
-0x0177 000549 call p_init_adc_from_otp 
-0x0178 000550 fetch 8 ,mem_temp 
-0x0179 000551 nbranch p_deveice_init_reset ,blank 
-0x017a 000552 fetch 2 ,0x4ad4 
-0x017b 000553 byteswap pdata ,pdata 
-0x017c 000554 branch p_deveice_init_reset ,blank 
-0x017d 000555 store 2 ,mem_adc_3v 
-:      000556 p_deveice_init_reset:
-0x017e 000557 call p_le_queue_init 
-0x017f 000558 jam bt_evt_reset ,mem_ipc_tx_evt 
-:      000559 p_device_init_common:
-0x0180 000560 call p_ipc_tx_evt 
-0x0181 000561 jam 0 ,mem_hibernate_flag 
-0x0182 000562 hjam start_c51_core ,core_docd_ctrl 
-0x0183 000563 rtn 
-:      000564 p_deveice_init_wake:
-0x0184 000565 jam bt_evt_wakeup ,mem_ipc_tx_evt 
-0x0185 000566 branch p_device_init_common 
-:      000567 p_device_init_init_hibwake:
-0x0186 000568 copy auxcnt ,pdata 
-0x0187 000569 branch p_enter_hibernate_continue ,blank 
-0x0188 000570 call init_lmp_work 
-0x0189 000571 call l2cap_init_work 
-0x018a 000572 setarg 0 
-0x018b 000573 store 8 ,mem_context 
-0x018c 000574 store 2 ,mem_ui_state_map 
-0x018d 000575 copy clkn_bt ,pdata 
-0x018e 000576 store 4 ,mem_ipc_last_check_timer 
-0x018f 000577 jam bt_evt_hibernate_wake ,mem_ipc_tx_evt 
-0x0190 000578 branch p_device_init_common 
-:      000580 p_init_adc_from_otp:
-0x0191 000581 call otp_enable_chgpump 
-0x0192 000582 setarg 0x7e2 
-0x0193 000583 arg mem_temp ,rega 
-0x0194 000584 arg 12 ,temp 
-0x0195 000585 call otpd_read_data 
-0x0196 000586 call otp_disable_chgpump 
-0x0197 000587 fetch 8 ,mem_temp 
-0x0198 000588 rtn blank 
-0x0199 000589 fetch 1 ,mem_adc_config_flag 
-0x019a 000590 bbit1 adc_config_vinlpm ,p_calc_adc_base_vinlpm 
-0x019b 000591 bbit1 adc_config_hvin ,p_calc_adc_base_hvin 
-:      000592 p_calc_adc_check_gpio:
-0x019c 000593 fetch 2 ,mem_temp 
-0x019d 000594 byteswap pdata ,pdata 
-0x019e 000595 store 2 ,mem_adc_0v 
-0x019f 000596 fetch 2 ,mem_temp + 6 
-0x01a0 000597 byteswap pdata ,pdata 
-0x01a1 000598 store 2 ,mem_adc_3v 
-0x01a2 000599 rtn 
-:      000600 p_calc_adc_base_vinlpm:
-0x01a3 000601 fetcht 2 ,mem_temp + 4 
-0x01a4 000602 fetch 2 ,mem_temp + 10 
-0x01a5 000603 copy temp ,regb 
-0x01a6 000604 copy pdata ,rega 
-0x01a7 000605 byteswap pdata ,pdata 
-0x01a8 000606 store 2 ,mem_adc_3v 
-0x01a9 000607 copy rega ,pdata 
-0x01aa 000608 isub temp ,regc 
-0x01ab 000609 lshift regc ,regc 
-0x01ac 000610 copy regb ,pdata 
-0x01ad 000611 isub regc ,pdata 
-0x01ae 000612 byteswap pdata ,pdata 
-0x01af 000613 store 2 ,mem_adc_0v 
-0x01b0 000614 rtn 
-:      000616 p_calc_adc_base_hvin:
-0x01b1 000617 fetcht 2 ,mem_temp + 2 
-0x01b2 000618 fetch 2 ,mem_temp + 8 
-0x01b3 000619 copy temp ,regb 
-0x01b4 000620 copy pdata ,rega 
-0x01b5 000621 isub temp ,regc 
-0x01b6 000622 rshift2 regc ,regc 
-0x01b7 000623 copy regb ,pdata 
-0x01b8 000624 isub regc ,pdata 
-0x01b9 000625 byteswap pdata ,pdata 
-0x01ba 000626 store 2 ,mem_adc_0v 
-0x01bb 000627 lshift regc ,regc 
-0x01bc 000628 copy rega ,pdata 
-0x01bd 000629 isub regc ,pdata 
-0x01be 000630 byteswap pdata ,pdata 
-0x01bf 000631 store 2 ,mem_adc_3v 
-0x01c0 000632 rtn 
-:      000635 p_le_enable:
-0x01c1 000636 jam 39 ,mem_le_ch_mapped 
-0x01c2 000637 hjam 0x36 ,0x90f 
-0x01c3 000638 hjam 0x5f ,0x90b 
-0x01c4 000639 branch le_enable + 2 
-:      000640 p_le_disable:
-0x01c5 000641 hjam 0x2e ,0x90f 
-0x01c6 000642 hjam 0xff ,0x90b 
-0x01c7 000643 branch le_disable + 2 
-:      000646 p_mouse_idle:
-0x01c8 000647 rtn 
-:      000648 p_check_enter_hibernate:
-0x01c9 000649 jam syc_task_hibernate ,mem_c51_flag 
-0x01ca 000650 call p_c51_wait 
-:      000651 p_enter_hibernate_continue:
-0x01cb 000653 jam 0x5a ,mem_hibernate_flag 
-0x01cc 000654 call lpm_write_gpio_wakeup 
-0x01cd 000655 hfetch 4 ,core_lpm_ctrl 
-0x01ce 000656 set0 15 ,pdata 
-0x01cf 000657 hstore 4 ,core_lpm_reg 
-0x01d0 000658 call lpm_write_ctrl 
-0x01d1 000659 arg param_hibernate_clks ,temp 
-0x01d2 000660 branch lpm_sleep 
-:      000663 p_check_51cmd_once:
-0x01d3 000664 call ui_ipc_get_lock 
-0x01d4 000665 arg mem_ipc_fifo_c512bt ,rega 
-0x01d5 000666 call fifo_out 
-0x01d6 000667 copy pdata ,temp 
-0x01d7 000668 call ui_ipc_put_lock 
-0x01d8 000669 copy temp ,pdata 
-0x01d9 000670 rtn blank 
-0x01da 000671 beq bt_cmd_start_24g ,p_check_51cmd_start24g 
-0x01db 000672 beq bt_cmd_stop_24g ,p_check_51cmd_stop24g 
-0x01dc 000673 beq bt_cmd_pair_24g ,p_check_51_cmd_pairing_24g 
-0x01dd 000674 branch check_51cmd_once + 9 
-:      000675 p_check_51cmd_start24g:
-0x01de 000676 jam state_24g_pairing_success ,mem_24g_pairing_sm 
-0x01df 000677 branch p_g24_start_24g_mode 
-:      000678 p_check_51cmd_stop24g:
-0x01e0 000679 set0 mark_24g ,mark 
-0x01e1 000680 jam state_24g_pairing_success ,mem_24g_pairing_sm 
-0x01e2 000681 branch p_g24_stop_g24_mode 
-:      000683 p_check_51_cmd_pairing_24g:
-0x01e3 000684 setarg -1 
-0x01e4 000685 store 4 ,mem_24g_addr 
-0x01e5 000686 branch p_g24_start_pairing_sm1 
-:      000689 p_le_queue_init:
-0x01e6 000690 setarg 0 
-0x01e7 000691 store 4 ,mem_queue_write 
-0x01e8 000692 rtn 
-:      000695 p_g24_dispatch:
-0x01e9 000696 rtnmark0 mark_24g 
-0x01ea 000697 call p_g24_txdata_prep 
-0x01eb 000698 nbranch p_g24_long_sleep ,user 
-0x01ec 000699 jam 10 ,mem_24g_enter_lpm_timer 
-0x01ed 000700 call p_g24_transmit_packet 
-0x01ee 000701 fetch 1 ,mem_24g_pairing_sm 
-0x01ef 000702 rtnne state_24g_pairing_success 
-0x01f0 000703 call power_ctrl_start 
-:      000704 p_g24_short_sleep:
-0x01f1 000705 fetch 1 ,mem_mouse_retry_flag 
-0x01f2 000706 nrtn blank 
-0x01f3 000707 call p_check_ipc_for_lpm 
-0x01f4 000708 nrtn user 
-0x01f5 000709 fetch 1 ,mem_c51_lpm_lock 
-0x01f6 000710 nrtn blank 
-0x01f7 000711 call lpo_calibration 
-0x01f8 000712 fetch 3 ,mem_clks_per_lpo 
-0x01f9 000713 rtn blank 
-0x01fa 000714 fetch 1 ,mem_lpm_mode 
-0x01fb 000715 rtn blank 
-:      000716 p_g24_short_sleep_1:
-0x01fc 000717 setarg 58000 
-0x01fd 000718 call clk2lpo 
-0x01fe 000719 storet 4 ,mem_sleep_counter 
-0x01ff 000720 branch lpm_sleep 
-:      000722 p_g24_long_sleep:
-0x0200 000723 call p_check_ipc_for_lpm 
-0x0201 000724 nrtn user 
-0x0202 000725 fetch 1 ,mem_c51_lpm_lock 
-0x0203 000726 nrtn blank 
-0x0204 000727 call lpo_calibration 
-0x0205 000728 fetch 3 ,mem_clks_per_lpo 
-0x0206 000729 rtn blank 
-0x0207 000730 fetch 1 ,mem_lpm_mode 
-0x0208 000731 rtn blank 
-0x0209 000732 fetch 1 ,mem_24g_enter_lpm_timer 
-0x020a 000733 nbranch p_g24_short_sleep_1 ,blank 
-0x020b 000734 fetch 8 ,mem_24g_enter_hibernate 
-0x020c 000735 call clk2lpo 
-0x020d 000736 storet 4 ,mem_sleep_counter 
-0x020e 000737 branch lpm_sleep 
-:      000741 p_g24_txdata_prep:
-0x020f 000742 fetch 1 ,mem_24g_pairing_sm 
-0x0210 000743 bne state_24g_pairing_success ,p_g24_pairing_sm 
-0x0211 000744 call p_g24_package_data 
-0x0212 000745 call p_g24_transmit_prep 
-:      000746 p_g24_txdata_enable_tx:
-0x0213 000747 jam ensure_on_24g ,mem_24g_ensure 
-0x0214 000748 rtn 
-:      000750 p_g24_package_data:
-0x0215 000751 disable user 
-0x0216 000752 jam 2 ,mem_24g_data_type 
-0x0217 000753 fetch 1 ,mem_24g_txbuf 
-0x0218 000754 beq 0x01 ,p_g24_dataready 
-0x0219 000755 beq 0x02 ,p_g24_dataready_mk 
-0x021a 000756 beq 0x03 ,p_g24_dataready_ms 
-0x021b 000757 fetch 1 ,mem_mouse_retry_flag 
-0x021c 000758 ncall enable_user ,blank 
-0x021d 000759 rtn 
-:      000760 p_g24_dataready:
-0x021e 000761 setarg 0 
-0x021f 000762 store 1 ,mem_24g_txbuf 
-0x0220 000763 jam 10 ,mem_24g_datalen 
-0x0221 000764 branch p_g24_package_data_rtn 
-:      000765 p_g24_dataready_mk:
-0x0222 000766 setarg 0x03 
-0x0223 000767 store 1 ,mem_24g_txbuf 
-0x0224 000768 jam 4 ,mem_24g_datalen 
-0x0225 000769 branch p_g24_package_data_rtn 
-:      000770 p_g24_dataready_ms:
-0x0226 000771 jam 1 ,mem_24g_data_type 
-0x0227 000772 jam 8 ,mem_24g_datalen 
-:      000773 p_g24_package_data_rtn:
-0x0228 000774 jam 0 ,mem_24g_get_ack_fail 
-0x0229 000775 branch enable_user 
-:      000779 p_g24_transmit_packet:
-0x022a 000780 jam 0 ,mem_24g_retry 
-:      000781 p_g24_transmit_loop:
-0x022b 000782 arg param_rx_setup ,timeup 
-0x022c 000783 until clkn_rt ,meet 
-0x022d 000784 call p_g24_transmit_receive_ack 
-0x022e 000785 nbranch p_g24_retransmit ,user3 
-0x022f 000786 call p_g24_ackpayload_parse 
-0x0230 000787 call power_ctrl_pac_succ_incrs 
-0x0231 000788 fetch 1 ,mem_24g_pid 
-0x0232 000789 increase 1 ,pdata 
-0x0233 000790 store 1 ,mem_24g_pid 
-0x0234 000791 jam 0 ,mem_mouse_retry_flag 
-0x0235 000792 fetch 1 ,mem_24g_pairing_sm 
-0x0236 000793 bne state_24g_pairing_success ,p_g24_paring_mode_start 
-:      000794 p_g24_transmit_abandon:
-0x0237 000795 call p_g24_clear_txbuf 
-0x0238 000796 jam 0 ,mem_24g_get_ack_fail 
-0x0239 000797 jam ensure_off_24g ,mem_24g_ensure 
-0x023a 000798 rtn 
-:      000801 p_g24_retransmit:
-0x023b 000802 jam 1 ,mem_mouse_retry_flag 
-0x023c 000803 fetch 1 ,mem_24g_get_ack_fail 
-0x023d 000804 increase 1 ,pdata 
-0x023e 000805 store 1 ,mem_24g_get_ack_fail 
-0x023f 000806 fetch 1 ,mem_24g_pairing_sm 
-0x0240 000807 bne state_24g_pairing_success ,p_g24_tx_paring_retry 
-0x0241 000808 fetch 1 ,mem_24g_get_ack_fail 
-0x0242 000809 beq 0xff ,p_g24_stop_g24_mode 
-0x0243 000810 fetch 1 ,mem_24g_get_ack_fail 
-0x0244 000811 arg 16 ,temp 
-0x0245 000812 isub temp ,null 
-0x0246 000813 branch p_g24_ch ,positive 
-0x0247 000814 fetch 1 ,mem_24g_retry 
-0x0248 000815 increase 1 ,pdata 
-0x0249 000816 store 1 ,mem_24g_retry 
-0x024a 000817 nop 10 
-0x024b 000818 bne retry_24g ,p_g24_transmit_loop 
-0x024c 000819 branch p_g24_ch 
-:      000822 p_g24_clear_txbuf:
-0x024d 000823 setarg 0 
-0x024e 000824 store 9 ,mem_24g_txbuf 
-0x024f 000825 rtn 
-:      000827 p_g24_check_txbuf:
-0x0250 000828 bmark0 mark_24g ,set_blank 
-0x0251 000829 fetch 8 ,mem_24g_txbuf 
-0x0252 000830 rtn 
-:      000833 p_g24_paring_mode_start:
-0x0253 000834 call power_ctrl_pac_succ_cnt_init 
-0x0254 000835 branch p_g24_paring_mode 
-:      000837 p_g24_transmit_receive_ack:
-0x0255 000838 disable user3 
-0x0256 000839 call p_g24_transmit 
-0x0257 000840 fetch 1 ,mem_24g_no_ack 
-0x0258 000841 beq no_ack_24g ,p_g24_transmit_no_ack 
-0x0259 000842 force 0 ,radio_ctrl 
-0x025a 000843 fetch 4 ,mem_24g_addr 
-0x025b 000844 iforce access 
-0x025c 000845 fetcht 1 ,mem_last_freq 
-0x025d 000846 call set_freq_rx 
-0x025e 000847 call rf_rx_enable 
-0x025f 000848 call p_g24_receive_rxon 
-0x0260 000849 call p_g24_end_of_packet ,user3 
-0x0261 000850 rtn 
-:      000851 p_g24_transmit_no_ack:
-0x0262 000852 jam 0 ,mem_24g_rxbuf + 1 
-0x0263 000853 enable user3 
-0x0264 000854 branch p_g24_end_of_packet 
-:      000857 p_g24_tx_paring_retry:
-0x0265 000858 rtn 
-:      000862 p_g24_stop_g24_mode:
-0x0266 000863 jam 0 ,mem_mouse_retry_flag 
-0x0267 000864 jam bt_evt_24g_attempt_fail ,mem_fifo_temp 
-0x0268 000865 branch ui_ipc_send_event 
-:      000868 p_g24_ackpayload_parse:
-0x0269 000869 call p_g24_read_len_pid_crc 
-0x026a 000870 fetch 1 ,mem_24g_rxdata_length 
-0x026b 000871 rtn blank 
-0x026c 000872 iforce loopcnt 
-0x026d 000873 call p_24g_kb_led 
-0x026e 000874 arg mem_24g_rxbuf + 2 ,contr 
-0x026f 000875 arg mem_24g_rxpayload ,contw 
-0x0270 000876 branch memcpy 
-:      000878 p_24g_kb_led:
-0x0271 000879 fetch 1 ,mem_24g_rxbuf + 1 
-0x0272 000880 compare 0x08 ,pdata ,0xf8 
-0x0273 000881 nrtn true 
-0x0274 000882 fetcht 1 ,mem_24g_rxbuf + 2 
-0x0275 000883 storet 1 ,mem_caps_num_lock 
-0x0276 000884 rtn 
-:      000886 power_ctrl_pac_succ_cnt_init:
-0x0277 000887 jam 1 ,mem_power_ctrl_level 
-0x0278 000888 jam 0 ,mem_power_ctrl_pac_succ_cnt 
-0x0279 000889 rtn 
-:      000890 power_ctrl_pac_succ_incrs:
-0x027a 000891 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0x027b 000892 increase 1 ,pdata 
-0x027c 000893 store 1 ,mem_power_ctrl_pac_succ_cnt 
-0x027d 000894 rtn 
-:      000895 power_ctrl_pac_succ_decrs:
-0x027e 000896 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0x027f 000897 sub pdata ,1 ,null 
-0x0280 000898 ncall power_ctrl_pac_succ_cnt_reinit ,positive 
-0x0281 000899 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0x0282 000900 rtneq 0 
-0x0283 000901 increase -1 ,pdata 
-0x0284 000902 store 1 ,mem_power_ctrl_pac_succ_cnt 
-0x0285 000903 rtn 
-:      000904 power_ctrl_pac_succ_cnt_reinit:
-0x0286 000905 jam 2 ,mem_power_ctrl_pac_succ_cnt 
-0x0287 000906 rtn 
-:      000908 power_ctrl_start:
-0x0288 000909 arg mem_rssi_signal_buf ,rega 
-0x0289 000910 call p_rssi_average 
-0x028a 000911 storet 1 ,mem_rssi_avg_received 
-0x028b 000912 isolate1 mark_24g ,mark 
-0x028c 000913 call power_ctrl_24g_dis_max ,true 
-0x028d 000914 ncall power_ctrl_le_dis_max ,true 
-0x028e 000915 isub temp ,null 
-0x028f 000916 nbranch power_ctrl_txpower_incrs ,positive 
-0x0290 000918 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0x0291 000919 sub pdata ,1 ,null 
-0x0292 000920 nbranch power_ctrl_txpower_decrs_check ,positive 
-0x0293 000921 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0x0294 000922 beq 0 ,power_ctrl_txpower_incrs 
-0x0295 000923 rtn 
-:      000925 power_ctrl_24g_dis_max:
-0x0296 000926 setarg rssi_dis_max_24g 
-0x0297 000927 rtn 
-:      000928 power_ctrl_24g_dis_min:
-0x0298 000929 setarg rssi_dis_min_24g 
-0x0299 000930 rtn 
-:      000931 power_ctrl_le_dis_max:
-0x029a 000932 setarg rssi_dis_max_ble 
-0x029b 000933 rtn 
-:      000934 power_ctrl_le_dis_min:
-0x029c 000935 setarg rssi_dis_min_ble 
-0x029d 000936 rtn 
-:      000938 power_ctrl_txpower_decrs_check:
-0x029e 000939 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0x029f 000940 rtnne 70 
-0x02a0 000941 jam 0 ,mem_power_ctrl_pac_succ_cnt 
-:      000942 power_ctrl_txpower_decrs:
-0x02a1 000943 fetcht 1 ,mem_rssi_avg_received 
-0x02a2 000944 isolate1 mark_24g ,mark 
-0x02a3 000945 call power_ctrl_24g_dis_min ,true 
-0x02a4 000946 ncall power_ctrl_le_dis_min ,true 
-0x02a5 000947 isub temp ,null 
-0x02a6 000948 nrtn positive 
-0x02a7 000949 fetch 1 ,mem_power_ctrl_level 
-0x02a8 000950 beq 0 ,power_ctrl_decrs_level0 
-0x02a9 000951 increase -1 ,pdata 
-0x02aa 000952 store 1 ,mem_power_ctrl_level 
-0x02ab 000953 beq 0 ,power_ctrl_decrs_level0 
-:      000954 power_ctrl_decrs_level1:
-:      000955 power_ctrl_incrs_level1:
-0x02ac 000956 jam tx_power_0db ,mem_tx_power 
-0x02ad 000957 rtn 
-:      000959 power_ctrl_txpower_incrs:
-0x02ae 000960 fetch 1 ,mem_power_ctrl_level 
-0x02af 000961 beq 2 ,power_ctrl_incrs_level2 
-0x02b0 000962 increase 1 ,pdata 
-0x02b1 000963 store 1 ,mem_power_ctrl_level 
-0x02b2 000964 beq 1 ,power_ctrl_incrs_level1 
-:      000965 power_ctrl_incrs_level2:
-0x02b3 000966 jam tx_power_5db ,mem_tx_power 
-0x02b4 000967 rtn 
-:      000969 power_ctrl_decrs_level0:
-0x02b5 000970 jam tx_power_f5db ,mem_tx_power 
-0x02b6 000971 rtn 
-:      000973 p_g24_start_pairing_sm1:
-0x02b7 000974 set1 mark_24g ,mark 
-0x02b8 000975 call p_g24_pair_init 
-0x02b9 000976 call p_g24_transmit_abandon 
-0x02ba 000977 jam state_24g_pairing_1 ,mem_24g_pairing_sm 
-0x02bb 000978 rtn 
-:      000980 p_g24_pair_init:
-0x02bc 000981 jam 0 ,mem_24g_pid 
-0x02bd 000982 jam g24_pair_ch ,mem_24g_ch 
-0x02be 000983 fetch 4 ,mem_24g_paring_addr 
-0x02bf 000984 branch p_g24_update_addr_and_synccrc8 
-:      000986 p_g24_pairing_sm:
-0x02c0 000987 call p_g24_pair_init 
-0x02c1 000988 fetch 1 ,mem_24g_ensure 
-0x02c2 000989 beq ensure_on_24g ,enable_user 
-0x02c3 000990 fetch 1 ,mem_24g_pairing_sm 
-0x02c4 000991 beq state_24g_pairing_1 ,p_g24_pairing_sm_1 
-0x02c5 000992 beq state_24g_pairing_2 ,p_g24_pairing_sm_2 
-0x02c6 000993 beq state_24g_pairing_3 ,p_g24_pairing_sm_3 
-0x02c7 000994 branch assert 
-:      000996 p_g24_pairing_sm_1:
-0x02c8 000997 jam state_24g_pairing_1_waiting_ack ,mem_24g_pairing_sm 
-0x02c9 000998 jam 0xaa ,mem_24g_common_temp 
-0x02ca 000999 branch p_g24_pairing_sm_common 
-:      001000 p_g24_pairing_sm_2:
-0x02cb 001001 jam state_24g_pairing_2_waiting_ack ,mem_24g_pairing_sm 
-0x02cc 001002 jam 0x55 ,mem_24g_common_temp 
-0x02cd 001003 branch p_g24_pairing_sm_common 
-:      001004 p_g24_pairing_sm_3:
-0x02ce 001005 jam state_24g_pairing_3_waiting_ack ,mem_24g_pairing_sm 
-0x02cf 001006 jam 0x22 ,mem_24g_common_temp 
-:      001007 p_g24_pairing_sm_common:
-0x02d0 001008 fetch 1 ,mem_24g_data_type 
-0x02d1 001009 and_into bits_data ,pdata 
-0x02d2 001010 store 1 ,mem_24g_common_temp + 1 
-0x02d3 001011 fetch 4 ,mem_24g_device_addr 
-0x02d4 001012 store 4 ,mem_24g_common_temp + 2 
-0x02d5 001013 jam 0 ,mem_24g_common_temp + 6 
-0x02d6 001014 arg mem_24g_common_temp ,rega 
-0x02d7 001015 arg 7 ,temp 
-0x02d8 001016 call p_g24_put_data_in_buff 
-0x02d9 001017 call p_g24_transmit_prep 
-0x02da 001018 call p_g24_txdata_enable_tx 
-0x02db 001019 branch enable_user 
-:      001021 p_g24_paring_mode:
-0x02dc 001022 fetch 1 ,mem_24g_pairing_sm 
-0x02dd 001023 rtneq state_24g_pairing_success 
-0x02de 001024 beq state_24g_pairing_1_waiting_ack ,p_g24_pairing_sm_1_waiting_ack 
-0x02df 001025 beq state_24g_pairing_2_waiting_ack ,p_g24_pairing_sm_2_waiting_ack 
-0x02e0 001026 beq state_24g_pairing_3_waiting_ack ,p_g24_pairing_sm_3_waiting_ack 
-0x02e1 001027 rtn 
-:      001030 p_g24_pairing_sm_1_waiting_ack:
-0x02e2 001031 jam state_24g_pairing_2 ,mem_24g_pairing_sm 
-0x02e3 001032 branch p_g24_transmit_abandon 
-:      001033 p_g24_pairing_sm_2_waiting_ack:
-0x02e4 001034 jam state_24g_pairing_3 ,mem_24g_pairing_sm 
-0x02e5 001035 branch p_g24_transmit_abandon 
-:      001036 p_g24_pairing_sm_3_waiting_ack:
-0x02e6 001037 jam state_24g_pairing_success ,mem_24g_pairing_sm 
-0x02e7 001038 jam bt_evt_24g_pairing_complete ,mem_fifo_temp 
-0x02e8 001039 call ui_ipc_send_event 
-0x02e9 001040 fetch 4 ,mem_24g_rxpayload + 2 
-0x02ea 001041 call p_g24_update_addr_and_synccrc8 
-0x02eb 001042 branch p_g24_transmit_abandon 
-:      001044 p_g24_start_24g_mode:
-0x02ec 001045 rtnmark1 mark_24g 
-0x02ed 001046 call p_g24_syncword_crc8 
-0x02ee 001047 call p_g24_ch 
-0x02ef 001048 fetch 1 ,mem_24g_pairing_sm 
-0x02f0 001049 rtnne state_24g_pairing_success 
-0x02f1 001050 call p_g24_tx_attemp_data_prep 
-0x02f2 001051 setarg 0 
-0x02f3 001052 store 2 ,mem_24g_check_dongle_times 
-:      001053 p_g24_tx_attemp_dongle_loop:
-0x02f4 001054 call lpo_calibration 
-0x02f5 001055 nop 2000 
-0x02f6 001056 fetch 1 ,mem_24g_check_dongle_times 
-0x02f7 001057 beq 0xff ,p_g24_stop_g24_mode 
-0x02f8 001058 call p_g24_transmit_receive_ack 
-0x02f9 001059 nbranch p_g24_attemp_txdata_retry ,user3 
-:      001060 p_g24_tx_attemp_dongle_succ:
-0x02fa 001061 call p_g24_clear_txbuf 
-0x02fb 001062 jam 3 ,mem_24g_idle_cnt 
-0x02fc 001063 set1 mark_24g ,mark 
-0x02fd 001064 jam bt_evt_24g_attempt_success ,mem_fifo_temp 
-0x02fe 001065 branch ui_ipc_send_event 
-:      001068 p_g24_tx_attemp_data_prep:
-0x02ff 001069 jam 0xff ,mem_24g_common_temp 
-0x0300 001070 fetch 1 ,mem_24g_data_type 
-0x0301 001071 store 1 ,mem_24g_common_temp + 1 
-0x0302 001072 fetch 4 ,mem_24g_device_addr 
-0x0303 001073 store 4 ,mem_24g_common_temp + 2 
-0x0304 001074 arg 6 ,temp 
-0x0305 001075 arg mem_24g_common_temp ,rega 
-0x0306 001076 call p_g24_put_data_in_buff 
-0x0307 001077 branch p_g24_transmit_prep 
-:      001079 p_g24_attemp_txdata_retry:
-0x0308 001080 fetch 2 ,mem_24g_check_dongle_times 
-0x0309 001081 increase 1 ,pdata 
-0x030a 001082 store 2 ,mem_24g_check_dongle_times 
-0x030b 001083 call p_g24_ch 
-0x030c 001084 branch p_g24_tx_attemp_dongle_loop 
-:      001087 p_g24_put_data_in_buff:
-0x030d 001088 storet 1 ,mem_24g_datalen 
-0x030e 001089 copy temp ,loopcnt 
-0x030f 001090 arg mem_24g_txbuf ,contw 
-0x0310 001091 copy rega ,contr 
-0x0311 001092 branch memcpy 
-:      001094 p_g24_read_len_pid_crc:
-0x0312 001096 fetch 1 ,mem_24g_rxbuf + 1 
-0x0313 001097 rshift3 pdata ,pdata 
-0x0314 001098 store 1 ,mem_24g_rxdata_length 
-0x0315 001100 increase 1 ,pdata 
-0x0316 001101 arg mem_24g_rxbuf + 1 ,contr 
-0x0317 001102 iadd contr ,contr 
-0x0318 001103 ifetch 3 ,contr 
-0x0319 001104 store 3 ,mem_24g_sta_crc 
-0x031a 001105 rtn 
-:      001107 p_rssi_signal:
-0x031b 001108 fetcht 1 ,mem_rssi_signal_index 
-0x031c 001109 setarg mem_rssi_signal_buf 
-0x031d 001110 iadd temp ,contw 
-0x031e 001111 copy rega ,pdata 
-0x031f 001112 istore 1 ,contw 
-0x0320 001113 increase 1 ,temp 
-0x0321 001114 and_into rssi_buf_len_signal ,temp 
-0x0322 001115 storet 1 ,mem_rssi_signal_index 
-0x0323 001116 rtn 
-:      001118 p_rssi_noise:
-0x0324 001119 call save_rssi 
-0x0325 001120 rtn blank 
-0x0326 001121 fetcht 1 ,mem_rssi_noise_index 
-0x0327 001122 arg mem_rssi_noise_buf ,rega 
-0x0328 001123 call p_rssi_store 
-0x0329 001124 storet 1 ,mem_rssi_noise_index 
-0x032a 001125 rtn 
-:      001127 p_rssi_store:
-0x032b 001128 copy rega ,pdata 
-0x032c 001129 iadd temp ,contw 
-0x032d 001130 fetch 1 ,mem_rssi 
-0x032e 001131 istore 1 ,contw 
-0x032f 001132 increase 1 ,temp 
-0x0330 001133 and_into rssi_buf_len_signal ,temp 
-0x0331 001134 rtn 
-:      001135 p_rssi_average:
-0x0332 001136 arg 0 ,temp 
-0x0333 001137 arg rssi_buf_len_signal + 1 ,loopcnt 
-0x0334 001138 copy rega ,contr 
-:      001139 p_rssi_average_loop:
-0x0335 001140 ifetch 1 ,contr 
-0x0336 001141 iadd temp ,temp 
-0x0337 001142 loop p_rssi_average_loop 
-0x0338 001143 rshift3 temp ,temp 
-0x0339 001144 copy pdata ,temp 
-0x033a 001145 rtnmark0 mark_24g 
-0x033b 001147 div pdata ,10 
-0x033c 001148 call wait_div_end 
-0x033d 001149 quotient pdata 
-0x033e 001150 lshift4 pdata ,pdata 
-0x033f 001151 remainder temp 
-0x0340 001152 ior temp ,temp 
-0x0341 001153 rtn 
-:      001155 p_g24_update_addr_and_synccrc8:
-0x0342 001156 store 4 ,mem_24g_addr 
-:      001159 p_g24_syncword_crc8:
-0x0343 001160 arg 0 ,rega 
-0x0344 001161 arg 4 ,loopcnt 
-0x0345 001162 arg mem_24g_addr ,contr 
-:      001163 p_g24_syncword_crc8_loop:
-0x0346 001164 ifetch 1 ,contr 
-0x0347 001165 iadd rega ,rega 
-0x0348 001166 loop p_g24_syncword_crc8_loop 
-0x0349 001167 copy rega ,pdata 
-0x034a 001168 store 2 ,mem_24g_syncword 
-0x034b 001169 fetch 1 ,mem_24g_syncword 
-0x034c 001170 fetcht 1 ,mem_24g_syncword + 1 
-0x034d 001171 iadd temp ,pdata 
-0x034e 001172 store 1 ,mem_24g_syncword_crc8 
-0x034f 001173 rtn 
-:      001176 p_g24_transmit_prep:
-0x0350 001178 fetch 1 ,mem_24g_datalen 
-0x0351 001179 increase 2 ,pdata 
-0x0352 001180 store 1 ,mem_24g_txlen 
-0x0353 001182 fetch 1 ,mem_24g_data_type 
-0x0354 001183 store 1 ,mem_24g_txpayload 
-0x0355 001185 fetch 1 ,mem_24g_datalen 
-0x0356 001186 lshift3 pdata ,pdata 
-0x0357 001187 fetcht 1 ,mem_24g_pid 
-0x0358 001188 and temp ,0x03 ,temp 
-0x0359 001189 lshift temp ,temp 
-0x035a 001190 ior temp ,pdata 
-0x035b 001191 fetcht 1 ,mem_24g_no_ack 
-0x035c 001192 iadd temp ,pdata 
-0x035d 001193 istore 1 ,contw 
-0x035e 001195 fetch 1 ,mem_24g_pairing_sm 
-0x035f 001196 bne state_24g_pairing_success ,p_g24_transmit_prep_pair 
-0x0360 001197 fetch 1 ,mem_24g_data_type 
-0x0361 001198 istore 1 ,contw 
-:      001199 p_g24_transmit_prep_pair:
-0x0362 001200 fetch 1 ,mem_24g_datalen 
-0x0363 001201 iforce loopcnt 
-0x0364 001202 fetch 1 ,mem_24g_data_type 
-0x0365 001203 beq 1 ,p_g24_transmit_prep_mouse 
-0x0366 001204 arg mem_24g_txbuf ,contr 
-0x0367 001205 branch memcpy 
-:      001207 p_g24_transmit_prep_mouse:
-0x0368 001208 arg mem_24g_txbuf + 1 ,contr 
-0x0369 001209 branch memcpy 
-:      001211 p_g24_ch:
-0x036a 001212 fetcht 1 ,mem_24g_current_ch_number 
-0x036b 001213 call p_g24_ch_calc 
-0x036c 001214 increase 1 ,temp 
-0x036d 001215 and_into 3 ,temp 
-0x036e 001216 storet 1 ,mem_24g_current_ch_number 
-0x036f 001217 rtn 
-:      001219 p_g24_ch_calc:
-0x0370 001220 fetch 1 ,mem_24g_addr 
-0x0371 001221 and_into 0x03 ,pdata 
-0x0372 001222 mul32 pdata ,4 ,rega 
-0x0373 001223 setarg mem_24g_ch_map1 
-0x0374 001224 iadd rega ,pdata 
-0x0375 001225 iadd temp ,contr 
-0x0376 001226 ifetch 1 ,contr 
-0x0377 001227 store 1 ,mem_24g_ch 
-0x0378 001228 rtn 
-:      001230 p_g24_prep:
-0x0379 001231 disable enable_crc 
-0x037a 001232 disable enable_white 
-0x037b 001233 setarg 0x555555 
-0x037c 001234 iforce crc24_init 
-0x037d 001235 fetch 1 ,mem_24g_ch 
-0x037e 001236 reverse pdata ,temp 
-0x037f 001237 set1 1 ,temp 
-0x0380 001238 rshift temp ,white_init 
-0x0381 001239 rtn 
-:      001241 p_g24_receive_rxon:
-0x0382 001242 call p_g24_prep 
-0x0383 001243 enable decode_fec0 
-0x0384 001244 enable is_rx 
-0x0385 001245 disable is_tx 
-0x0386 001246 enable swfine 
-0x0387 001247 fetch 2 ,mem_24g_rx_window 
-0x0388 001248 iforce stop_watch 
-0x0389 001249 correlate null ,timeout 
-0x038a 001250 nbranch p_g24_sync_timeout ,sync 
-0x038b 001251 disable decode_fec0 
-0x038c 001252 enable decode_fec1 
-0x038d 001253 enable enable_white 
-0x038e 001254 enable enable_crc 
-0x038f 001255 parse demod ,bucket ,8 
-0x0390 001256 rshift3 pwindow ,pdata 
-0x0391 001257 store 1 ,mem_24g_get_syncword_crc8 
-0x0392 001258 fetcht 1 ,mem_24g_syncword_crc8 
-0x0393 001259 isub temp ,null 
-0x0394 001260 nbranch p_g24_end_of_packet ,zero 
-0x0395 001261 parse demod ,bucket ,8 
-0x0396 001262 rshift3 pwindow ,pdata 
-0x0397 001263 store 1 ,mem_24g_rxbuf 
-0x0398 001264 fetch 1 ,mem_24g_mode 
-0x0399 001265 sub pdata ,rx_24g ,null 
-0x039a 001266 branch p_g24_receive_skip ,zero 
-0x039b 001267 fetch 1 ,mem_24g_rxbuf 
-0x039c 001268 fetcht 1 ,mem_24g_data_type 
-0x039d 001269 icompare bits_data ,temp 
-0x039e 001270 nbranch p_g24_end_of_packet ,true 
-:      001271 p_g24_receive_skip:
-0x039f 001272 parse demod ,bucket ,8 
-0x03a0 001273 rshift3 pwindow ,pdata 
-0x03a1 001274 istore 1 ,contw 
-0x03a2 001275 rshift3 pdata ,pdata 
-0x03a3 001276 and pdata ,0x1f ,loopcnt 
-0x03a4 001277 branch p_g24rx_nopayload ,zero 
-:      001278 p_g24rx_loop:
-0x03a5 001279 parse demod ,bucket ,8 
-0x03a6 001280 rshift3 pwindow ,pdata 
-0x03a7 001281 istore 1 ,contw 
-0x03a8 001282 loop p_g24rx_loop 
-:      001283 p_g24rx_nopayload:
-0x03a9 001285 copy contw ,rega 
-0x03aa 001286 parse demod ,bucket ,8 
-0x03ab 001287 rshift3 pwindow ,pdata 
-0x03ac 001288 store 1 ,mem_rssi_hex_received 
-0x03ad 001289 copy rega ,contw 
-0x03ae 001290 parse demod ,bucket ,24 
-0x03af 001291 enable swfine 
-0x03b0 001292 arg param_sifs ,stop_watch 
-0x03b1 001293 rshift32 pdata ,pdata 
-0x03b2 001294 rshift16 pdata ,pdata 
-0x03b3 001295 istore 3 ,contw 
-0x03b4 001296 disable decode_fec1 
-0x03b5 001297 branch p_g24_end_of_packet ,crc_failed 
-0x03b6 001298 enable user3 
-0x03b7 001299 fetch 1 ,mem_last_freq 
-0x03b8 001300 add pdata ,0 ,rega 
-0x03b9 001301 call rf_write_freq 
-0x03ba 001302 disable decode_fec0 
-0x03bb 001303 call set_sync_on 
-0x03bc 001304 fetch 1 ,mem_rssi_hex_received 
-0x03bd 001305 copy pdata ,rega 
-0x03be 001306 call p_rssi_signal 
-0x03bf 001307 rtn 
-:      001309 p_g24_end_of_packet:
-0x03c0 001310 disable encode_fec1 
-0x03c1 001311 disable decode_fec1 
-0x03c2 001312 branch end_of_packet 
-:      001314 p_g24_sync_timeout:
-0x03c3 001315 call p_rssi_noise 
-0x03c4 001316 branch p_g24_end_of_packet 
-:      001318 p_g24_set_freq_tx:
-0x03c5 001319 call set_sync_on 
-0x03c6 001320 fetcht 1 ,mem_24g_ch 
-0x03c7 001321 branch set_freq_tx 
-:      001323 p_g24_transmit:
-0x03c8 001324 call le_enable 
-0x03c9 001325 fetch 4 ,mem_24g_addr 
-0x03ca 001326 iforce access 
-0x03cb 001327 call p_g24_prep 
-0x03cc 001328 call p_g24_set_freq_tx 
-0x03cd 001329 set1 txgfsk ,radio_ctrl 
-0x03ce 001330 enable encode_fec0 
-0x03cf 001331 enable is_tx 
-0x03d0 001332 disable is_rx 
-0x03d1 001333 rshift16 access ,pdata 
-0x03d2 001334 rshift8 pdata ,pdata 
-0x03d3 001335 rshift4 pdata ,pdata 
-0x03d4 001336 inject mod ,40 
-0x03d5 001337 disable encode_fec0 
-0x03d6 001338 enable encode_fec1 
-0x03d7 001339 enable enable_white 
-0x03d8 001340 enable enable_crc 
-0x03d9 001341 fetch 1 ,mem_24g_syncword_crc8 
-0x03da 001342 inject mod ,8 
-0x03db 001343 fetch 1 ,mem_24g_txlen 
-0x03dc 001344 iforce loopcnt 
-0x03dd 001345 arg mem_24g_txpayload ,contr 
-:      001346 p_g24tr_loop:
-0x03de 001347 ifetch 1 ,contr 
-0x03df 001348 inject mod ,8 
-0x03e0 001349 loop p_g24tr_loop 
-0x03e1 001350 enable enable_parity 
-0x03e2 001351 inject mod ,24 
-0x03e3 001352 disable enable_parity 
-0x03e4 001353 until null ,tx_clear 
-0x03e5 001354 nop 100 
-0x03e6 001355 disable encode_fec0 
-0x03e7 001356 disable encode_fec1 
-0x03e8 001357 rtn 
+0x0000 000035 bmark1 mark_ext_patch ,patch_ext 
+0x0001 000036 beq patch00_0 ,p_soft_reset 
+0x0002 000037 beq patch00_3 ,p_main_loop 
+0x0003 000038 beq patch00_5 ,p_main_loop_end 
+0x0004 000039 beq patch12_0 ,p_shutdown_radio 
+0x0005 000040 beq patch12_2 ,p_set_freq_rx 
+0x0006 000041 beq patch12_4 ,p_set_freq_tx 
+0x0007 000042 beq patch12_5 ,p_initialize_radio_cont 
+0x0008 000043 beq patch16_0 ,p_lpm_sleep 
+0x0009 000044 beq patch16_1 ,p_lpm_recover_clk 
+0x000a 000045 beq patch16_2 ,p_lpm_dispatch 
+0x000b 000046 beq patch16_3 ,p_lpm_dispatch_next 
+0x000c 000047 beq patch16_6 ,p_lpm_dispatch_unconn 
+0x000d 000048 beq patch17_1 ,p_lpm_cal_xtal_startup 
+0x000e 000049 branch assert 
+:      000051 patch_ext:
+0x000f 000052 beq patch27_6 ,p_le_enable 
+0x0010 000053 beq patch27_7 ,p_le_disable 
+0x0011 000054 beq patch30_7 ,p_ui_timer_check 
+0x0012 000055 beq patch31_5 ,p_check_51cmd_once 
+0x0013 000056 beq patch31_7 ,p_check_enter_hibernate 
+0x0014 000057 beq patch39_5 ,p_kb_init 
+0x0015 000058 beq patch3a_0 ,p_kb_bb_event_timer 
+0x0016 000060 branch assert 
+:      000063 p_soft_reset:
+0x0017 000064 hfetch 1 ,0x813b 
+0x0018 000065 store 1 ,mem_wakup_from_power_flag 
+0x0019 000066 hjam lock_otp ,core_misc_ctrl 
+0x001a 000067 branch soft_reset + 2 
+:      000069 p_main_loop:
+0x001b 000070 call p_ipc_timer_check 
+0x001c 000071 call p_ipc_rx 
+0x001d 000072 branch main_loop + 2 
+:      000075 p_main_loop_end:
+0x001e 000076 call inquiry_scan_dispatch 
+0x001f 000077 call page_scan_dispatch 
+0x0020 000078 call connection_dispatch 
+0x0021 000079 call p_g24_dispatch 
+0x0022 000080 branch main_loop + 15 
+:      000083 p_ipc_rx:
+:      000084 p_ipc_rx0:
+0x0023 000085 call p_check_ipc_2bt 
+0x0024 000086 rtn user 
+0x0025 000087 byteswap pdata ,pdata 
+0x0026 000088 copy pdata ,contr 
+0x0027 000089 call p_ipc_rx_byte 
+0x0028 000090 store 1 ,mem_ipc_rx_type 
+0x0029 000091 beq ipc_type_cmd ,p_ipc_rx_cmd 
+0x002a 000092 beq ipc_type_24g ,p_ipc_rx_24g 
+0x002b 000093 copy pdata ,temp 
+0x002c 000094 copy contr ,rega 
+0x002d 000095 fetch 1 ,mem_context 
+0x002e 000096 bbit0 state_inconn ,p_ipc_abondon_rx_data 
+0x002f 000097 copy rega ,contr 
+0x0030 000098 rtnmark0 mark_context 
+0x0031 000099 copy temp ,pdata 
+0x0032 000100 rtn 
+:      000102 p_ipc_abondon_rx_data:
+0x0033 000103 copy rega ,contr 
+0x0034 000104 arg mem_tst_pktcnt_sync ,contw 
+0x0035 000105 branch p_ipc_rx_cpy 
+:      000107 p_ipc_rx_cmd:
+0x0036 000108 call p_ipc_rx_byte 
+0x0037 000109 call p_ipc_rx_byte 
+0x0038 000110 store 1 ,mem_fifo_temp 
+0x0039 000111 call p_ipc_next_rx 
+0x003a 000112 branch ui_ipc_send_cmd 
+:      000113 p_ipc_next_rx:
+0x003b 000114 call p_ipc_rx_updata_contr 
+0x003c 000115 copy contr ,temp 
+0x003d 000116 byteswap temp ,temp 
+0x003e 000117 storet 2 ,mem_ipc_2bt_read_index 
+0x003f 000118 rtn 
+:      000120 p_ipc_rx_24g:
+0x0040 000121 arg mem_24g_txbuf ,contw 
+0x0041 000122 branch p_ipc_rx_cpy 
+:      000126 p_ipc_timer_check:
+0x0042 000127 fetcht 4 ,mem_ipc_last_check_timer 
+0x0043 000128 copy clkn_bt ,pdata 
+0x0044 000129 isub temp ,pdata 
+0x0045 000131 arg 1600 ,temp 
+0x0046 000132 idiv temp 
+0x0047 000133 call wait_div_end 
+0x0048 000134 quotient pdata 
+0x0049 000135 rtn blank 
+0x004a 000136 copy clkn_bt ,temp 
+0x004b 000137 storet 4 ,mem_ipc_last_check_timer 
+0x004c 000138 fetcht 2 ,mem_ipc_bt_timer 
+0x004d 000139 byteswap temp ,temp 
+0x004e 000140 iadd temp ,pdata 
+0x004f 000141 byteswap pdata ,pdata 
+0x0050 000142 store 2 ,mem_ipc_bt_timer 
+0x0051 000143 byteswap pdata ,pdata 
+0x0052 000144 and pdata ,0x3 ,pdata 
+0x0053 000145 rtnne 0 
+0x0054 000146 fetch 1 ,mem_adc_config_flag 
+0x0055 000147 bbit1 adc_config_vinlpm ,p_adc_check_vinlpm 
+0x0056 000148 bbit1 adc_config_hvin ,p_adc_check_hvin 
+:      000149 p_adc_check_gpio:
+0x0057 000150 arg 0 ,rega 
+0x0058 000151 call p_setup_adc_gpio_pu_setup 
+0x0059 000152 hjam 0x8f ,rf_adc_mode 
+0x005a 000153 fetch 1 ,mem_adc_channel 
+0x005b 000154 hstore 1 ,rf_adc_ch 
+0x005c 000155 call p_read_adc 
+0x005d 000156 arg 1 ,rega 
+0x005e 000157 branch p_setup_adc_gpio_pu_setup 
+:      000160 p_adc_check_vinlpm:
+0x005f 000161 hjam 0xbf ,rf_adc_mode 
+0x0060 000162 branch p_read_adc 
+:      000164 p_adc_check_hvin:
+0x0061 000165 hjam 0xaf ,rf_adc_mode 
+:      000166 p_read_adc:
+0x0062 000167 hfetch 1 ,core_uart_baud + 1 
+0x0063 000168 set1 7 ,pdata 
+0x0064 000169 hstore 1 ,core_uart_baud + 1 
+0x0065 000170 hfetch 1 ,rf_adc_ch 
+0x0066 000171 or_into 0x30 ,pdata 
+0x0067 000172 hstore 1 ,rf_adc_ch 
+0x0068 000173 hjam 0x7c ,rfen_adc 
+0x0069 000174 hjam 0xaa ,rf_adc_gc 
+0x006a 000175 nop 5000 
+0x006b 000176 hfetcht 2 ,core_adc_sum 
+0x006c 000177 hfetch 1 ,core_uart_baud + 1 
+0x006d 000178 set0 7 ,pdata 
+0x006e 000179 hstore 1 ,core_uart_baud + 1 
+0x006f 000180 byteswap temp ,temp 
+0x0070 000181 storet 2 ,mem_adc_current_value 
+0x0071 000182 rtn 
+:      000185 p_setup_adc_gpio_pu_setup:
+0x0072 000186 arg 0x21 ,temp 
+0x0073 000187 fetch 1 ,mem_adc_channel 
+0x0074 000188 isub temp ,temp 
+0x0075 000189 copy rega ,pdata 
+0x0076 000190 set1 gpio_active_bit ,temp 
+0x0077 000191 nbranch p_setup_adc_gpio_pu_setup_exit ,blank 
+0x0078 000192 set0 gpio_active_bit ,temp 
+:      000193 p_setup_adc_gpio_pu_setup_exit:
+0x0079 000194 arg core_gpio_pu0 ,contw 
+0x007a 000195 branch gpio_set_bit 
+:      000199 p_ipc_rx_cpy:
+0x007b 000200 call p_ipc_rx_byte 
+0x007c 000201 copy pdata ,loopcnt 
+:      000202 p_ipc_copy:
+0x007d 000203 call p_ipc_cpy_loop 
+0x007e 000204 branch p_ipc_next_rx 
+:      000206 p_ipc_cpy_loop:
+0x007f 000207 call p_ipc_rx_byte 
+0x0080 000208 istore 1 ,contw 
+0x0081 000209 loop p_ipc_cpy_loop 
+0x0082 000210 rtn 
+:      000212 p_ipc_rx_byte:
+0x0083 000213 call p_ipc_rx_updata_contr 
+0x0084 000214 ifetch 1 ,contr 
+0x0085 000215 rtn 
+:      000217 p_ipc_rx_updata_contr:
+0x0086 000218 setarg mem_ipc_2bt_fifo_end 
+0x0087 000219 isub contr ,null 
+0x0088 000220 nrtn zero 
+0x0089 000221 arg mem_ipc_2bt_fifo_head ,contr 
+0x008a 000222 rtn 
+:      000224 p_ipc_tx_evt:
+0x008b 000225 arg 3 ,loopcnt 
+0x008c 000226 arg mem_ipc_tx_evt_buff ,contr 
+:      000227 p_ipc_tx_cpy:
+0x008d 000228 copy contr ,rega 
+0x008e 000229 fetch 2 ,mem_ipc_2c51_write_index 
+0x008f 000230 byteswap pdata ,pdata 
+0x0090 000231 copy pdata ,contw 
+0x0091 000232 copy rega ,contr 
+:      000233 p_ipc_tx_loop:
+0x0092 000234 ifetch 1 ,contr 
+0x0093 000235 istore 1 ,contw 
+0x0094 000236 call p_ipc_tx_updata_contw 
+0x0095 000237 loop p_ipc_tx_loop 
+0x0096 000238 copy contw ,pdata 
+0x0097 000239 byteswap pdata ,pdata 
+0x0098 000240 store 2 ,mem_ipc_2c51_write_index 
+0x0099 000241 rtn 
+:      000242 p_ipc_tx_updata_contw:
+0x009a 000243 setarg mem_ipc_2c51_fifo_end 
+0x009b 000244 isub contw ,null 
+0x009c 000245 nrtn zero 
+0x009d 000246 arg mem_ipc_2c51_fifo_head ,contw 
+0x009e 000247 rtn 
+:      000250 p_check_ipc_2c51:
+0x009f 000251 fetch 2 ,mem_ipc_2c51_read_index 
+0x00a0 000252 fetcht 2 ,mem_ipc_2c51_write_index 
+0x00a1 000253 branch p_check_ipc_common 
+:      000254 p_check_ipc_2bt:
+0x00a2 000255 fetch 2 ,mem_ipc_2bt_read_index 
+0x00a3 000256 fetcht 2 ,mem_ipc_2bt_write_index 
+:      000257 p_check_ipc_common:
+0x00a4 000258 isub temp ,null 
+0x00a5 000259 branch enable_usr ,zero 
+0x00a6 000260 branch disable_usr 
+:      000263 p_ui_timer_check:
+0x00a7 000264 copy clkn_bt ,pdata 
+0x00a8 000265 store 4 ,mem_ui_timer_last_btclk_temp 
+0x00a9 000266 fetcht 1 ,mem_ui_timer_last_btclk + 3 
+0x00aa 000267 fetch 1 ,mem_ui_timer_last_btclk_temp + 3 
+0x00ab 000268 isub temp ,null 
+0x00ac 000269 ncall p_ui_timer_reinit ,positive 
+0x00ad 000270 branch ui_timer_check + 2 
+:      000272 p_ui_timer_reinit:
+0x00ae 000273 fetcht 4 ,mem_ui_timer_last_btclk_temp 
+0x00af 000274 storet 4 ,mem_ui_timer_last_btclk 
+0x00b0 000275 storet 4 ,mem_ipc_last_check_timer 
+0x00b1 000276 rtn 
+:      000280 p_kb_bb_event_timer:
+0x00b2 000281 storet 1 ,mem_app_evt_timer_count 
+0x00b3 000282 fetch 1 ,mem_ipc_bt_100ms_timer 
+0x00b4 000283 increase 1 ,pdata 
+0x00b5 000284 store 1 ,mem_ipc_bt_100ms_timer 
+:      000285 p_kb_bb_event_100ms_loop:
+0x00b6 000286 fetch 1 ,mem_app_evt_timer_count 
+0x00b7 000287 rtn blank 
+0x00b8 000288 increase -1 ,pdata 
+0x00b9 000289 store 1 ,mem_app_evt_timer_count 
+0x00ba 000291 call p_kb_long_sleep_timer 
+0x00bb 000292 branch p_kb_bb_event_100ms_loop 
+:      000294 p_kb_long_sleep_timer:
+0x00bc 000295 fetch 1 ,mem_24g_enter_lpm_timer 
+0x00bd 000296 rtn blank 
+0x00be 000297 increase -1 ,pdata 
+0x00bf 000298 store 1 ,mem_24g_enter_lpm_timer 
+0x00c0 000299 rtn 
+:      000302 p_c51_user_event:
+0x00c1 000303 copy regc ,pdata 
+0x00c2 000304 and_into bt_evt_timer_mask ,pdata 
+0x00c3 000305 rtneq bt_evt_timer_init 
+0x00c4 000306 copy regc ,pdata 
+0x00c5 000307 rtn blank 
+0x00c6 000308 store 1 ,mem_ipc_tx_evt 
+0x00c7 000309 branch p_ipc_tx_evt 
+:      000317 p_lpm_sleep:
+0x00c8 000318 call xtal_fast_wake 
+0x00c9 000319 branch lpm_sleep + 2 
+:      000321 p_lpm_recover_clk:
+0x00ca 000322 jam 0x7f ,mem_seqi 
+0x00cb 000323 call lpm_recover_clk + 2 
+0x00cc 000324 fetch 1 ,mem_hibernate_flag 
+0x00cd 000325 rtn blank 
+0x00ce 000326 jam 0 ,mem_hibernate_flag 
+0x00cf 000327 copy clkn_bt ,pdata 
+0x00d0 000328 store 4 ,mem_ipc_last_check_timer 
+0x00d1 000329 rtn 
+:      000333 p_lpm_cal_xtal_startup:
+0x00d2 000334 fetch 1 ,mem_lpm_xtalcnt 
+0x00d3 000335 nrtn blank 
+0x00d4 000336 hjam clksel_rc ,core_clksel 
+0x00d5 000337 setarg 0xf0c 
+0x00d6 000338 call lpm_write_config 
+0x00d7 000339 setarg 200000 
+0x00d8 000340 call sleep 
+0x00d9 000341 until null ,lpo_edge 
+0x00da 000342 copy lpo_time ,alarm 
+0x00db 000343 call xtal_fast_wake 
+0x00dc 000344 nop 5000 
+0x00dd 000345 branch lpm_cal_xtal_startup + 12 
+:      000348 p_lpm_dispatch:
+0x00de 000349 rtnmark1 mark_24g 
+0x00df 000350 fetch 2 ,mem_ui_state_map 
+0x00e0 000351 bbit1 ui_state_ble_connected ,lpm_dispatch + 2 
+0x00e1 000352 call lpo_calibration 
+0x00e2 000353 fetch 3 ,mem_clks_per_lpo 
+0x00e3 000354 rtn blank 
+0x00e4 000357 fetch 1 ,mem_lpm_mode 
+0x00e5 000358 rtn blank 
+0x00e6 000360 call l2cap_malloc_is_fifo_empty 
+0x00e7 000361 nrtn blank 
+0x00e8 000362 call lpm_check_wake_lock 
+0x00e9 000363 nrtn blank 
+0x00ea 000364 call xtal_fast_wake 
+0x00eb 000365 fetch 1 ,mem_ssp_enable 
+0x00ec 000366 branch lpm_dispatch0 ,blank 
+0x00ed 000367 fetch 1 ,mem_sp_local_key_invalid 
+0x00ee 000368 rtn blank 
+0x00ef 000369 branch lpm_dispatch0 
+:      000371 p_check_ipc_for_lpm:
+0x00f0 000372 call p_check_ipc_2bt 
+0x00f1 000373 nrtn user 
+0x00f2 000374 call p_check_ipc_2c51 
+0x00f3 000375 nrtn user 
+0x00f4 000376 jam 1 ,mem_c51_lpm_lock 
+0x00f5 000377 jam syc_task_lpm ,mem_c51_flag 
+0x00f6 000378 call p_c51_wait 
+0x00f7 000379 branch p_check_ipc_2bt 
+:      000381 p_lpm_dispatch_next:
+0x00f8 000382 call p_check_ipc_for_lpm 
+0x00f9 000383 nrtn user 
+0x00fa 000384 fetch 1 ,mem_c51_lpm_lock 
+0x00fb 000385 nrtn blank 
+0x00fc 000386 branch lpm_dispatch1 
+:      000388 p_c51_wait:
+0x00fd 000389 fetch 1 ,mem_c51_flag 
+0x00fe 000390 nop 10 
+0x00ff 000391 bne 0 ,p_c51_wait 
+0x0100 000392 rtn 
+:      000395 p_lpm_dispatch_unconn:
+0x0101 000396 call p_check_ipc_for_lpm 
+0x0102 000397 nrtn user 
+0x0103 000398 fetch 1 ,mem_c51_lpm_lock 
+0x0104 000399 nrtn blank 
+0x0105 000400 branch lpm_dispatch_unconn + 2 
+:      000404 p_initialize_radio_cont:
+0x0106 000405 call p_switchto_dpllclk 
+0x0107 000406 branch initialize_radio_cont + 4 
+:      000407 p_switchto_dpllclk:
+0x0108 000408 fetch 1 ,mem_lpm_xtalcnt 
+0x0109 000409 nbranch p_switchdpll_nocal ,blank 
+0x010a 000410 call lpm_cal_xtal_startup 
+0x010b 000411 nop 30000 
+0x010c 000412 nop 30000 
+0x010d 000413 nop 30000 
+:      000414 p_switchdpll_nocal:
+0x010e 000415 call switchto_dpllclk 
+0x010f 000416 hjam clksel_xtal ,core_clksel 
+0x0110 000417 hfetch 1 ,rf_clkpll_frac + 2 
+0x0111 000418 and_into 0xcf ,pdata 
+0x0112 000419 hstore 1 ,rf_clkpll_frac + 2 
+0x0113 000420 or_into 0x30 ,pdata 
+0x0114 000421 hstore 1 ,rf_clkpll_frac + 2 
+0x0115 000422 rtn 
+:      000426 p_set_freq_rx:
+0x0116 000427 storet 1 ,mem_last_freq 
+0x0117 000428 add temp ,rx_freq_offset ,rega 
+0x0118 000429 branch set_freq_rx + 4 
+:      000431 p_set_freq_tx_common:
+0x0119 000432 storet 1 ,mem_last_freq 
+0x011a 000433 add temp ,0 ,rega 
+0x011b 000434 branch rf_write_freq 
+:      000436 p_set_freq_tx:
+0x011c 000437 call p_set_freq_tx_common 
+0x011d 000438 setarg param_pll_setup 
+0x011e 000439 call sleep 
+:      000440 p_txon:
+0x011f 000441 hjam 0x1 ,rfen_adc 
+0x0120 000442 hjam 0x3c ,rfen_rx 
+0x0121 000443 hjam 0xe0 ,rfen_tx 
+0x0122 000444 hjam 0x12 ,0x96d 
+0x0123 000445 nop 10 
+0x0124 000446 hjam 0x01 ,rfen_mdm 
+0x0125 000447 hjam 0x3d ,rfen_mdm 
+0x0126 000448 nop 10 
+0x0127 000449 hjam 0xb7 ,rfen_sn 
+0x0128 000450 nop 10 
+0x0129 000451 hjam 0x7d ,rfen_mdm 
+0x012a 000452 fetch 1 ,mem_24g_pairing_sm 
+0x012b 000453 bne state_24g_pairing_success ,p_txpower_0dbm 
+0x012c 000454 fetch 5 ,mem_5db_tx_power_param 
+0x012d 000455 istore 5 ,contw 
+0x012e 000456 ifetch 5 ,contr 
+0x012f 000457 istore 5 ,contw 
+0x0130 000458 hjam 0xdf ,0x956 
+0x0131 000459 call p_set_tx_step_power 
+0x0132 000460 hjam 0xdf ,0x955 
+0x0133 000461 rtn 
+:      000463 p_txpower_0dbm:
+0x0134 000464 fetch 5 ,mem_24g_paring_tx_power_param 
+0x0135 000465 istore 5 ,contw 
+0x0136 000466 ifetch 5 ,contr 
+0x0137 000467 istore 5 ,contw 
+0x0138 000468 hjam 0xc2 ,0x956 
+0x0139 000469 hjam 0xd0 ,0x955 
+0x013a 000470 rtn 
+:      000475 p_set_tx_step_power:
+0x013b 000477 nop 4 
+0x013c 000478 hjam 0xd1 ,0x955 
+0x013d 000479 nop 4 
+0x013e 000480 hjam 0xd2 ,0x955 
+0x013f 000481 nop 4 
+0x0140 000482 hjam 0xd4 ,0x955 
+0x0141 000483 nop 4 
+0x0142 000486 rtn 
+:      000488 p_tx_ramp_down_common:
+0x0143 000489 hjam 0xd4 ,0x955 
+0x0144 000490 nop 4 
+0x0145 000491 hjam 0xd2 ,0x955 
+0x0146 000492 nop 4 
+0x0147 000493 hjam 0xd1 ,0x955 
+0x0148 000494 nop 4 
+0x0149 000495 hjam 0xd0 ,0x955 
+0x014a 000496 hjam 0xc0 ,0x956 
+0x014b 000497 rtn 
+:      000499 p_shutdown_radio:
+0x014c 000500 branch shutdown_radio + 2 ,is_rx 
+0x014d 000501 call p_tx_ramp_down_common 
+0x014e 000502 branch shutdown_radio + 2 
+:      000505 p_kb_before_hibernate:
+0x014f 000506 enable user 
+0x0150 000507 hfetch 4 ,0x8138 
+0x0151 000508 setflag user ,26 ,pdata 
+0x0152 000509 hstore 4 ,core_lpm_reg 
+0x0153 000510 call lpm_write_ctrl 
+0x0154 000511 jam 1 ,mem_lpm_current_mult 
+:      000512 p_kb_bt_lpm_before:
+0x0155 000513 rtn 
+:      000515 p_kb_init:
+0x0156 000517 jam 0 ,mem_c51_flag 
+0x0157 000518 jam 6 ,mem_connection_options 
+0x0158 000519 call app_lpm_mult_enable 
+0x0159 000520 setarg p_kb_bt_lpm_before 
+0x015a 000521 store 2 ,mem_cb_before_lpm 
+0x015b 000522 setarg p_c51_user_event 
+0x015c 000523 store 2 ,mem_cb_bb_event_process 
+0x015d 000524 setarg p_mouse_idle 
+0x015e 000525 store 2 ,mem_cb_idle_process 
+0x015f 000526 setarg p_ipc_rx 
+0x0160 000527 store 2 ,mem_cb_le_process 
+0x0161 000528 setarg p_kb_before_hibernate 
+0x0162 000529 store 2 ,mem_cb_before_hibernate 
+0x0163 000530 setarg mem_ipc_2bt_fifo_head 
+0x0164 000531 byteswap pdata ,pdata 
+0x0165 000532 store 2 ,mem_ipc_2bt_read_index 
+0x0166 000533 store 2 ,mem_ipc_2bt_write_index 
+0x0167 000534 call lpm_disable_exen_output 
+0x0168 000535 setarg mem_ipc_2c51_fifo_head 
+0x0169 000536 byteswap pdata ,pdata 
+0x016a 000537 store 2 ,mem_ipc_2c51_read_index 
+0x016b 000538 store 2 ,mem_ipc_2c51_write_index 
+0x016c 000539 fetch 1 ,mem_hibernate_flag 
+0x016d 000540 beq 0x5a ,p_device_init_init_hibwake 
+0x016e 000541 branch p_deveice_init_wake ,wake 
+0x016f 000542 fetch 2 ,mem_adc_0v 
+0x0170 000543 byteswap pdata ,pdata 
+0x0171 000544 store 2 ,mem_adc_0v 
+0x0172 000545 fetch 2 ,mem_adc_3v 
+0x0173 000546 byteswap pdata ,pdata 
+0x0174 000547 store 2 ,mem_adc_3v 
+0x0175 000548 call p_init_adc_from_otp 
+0x0176 000549 fetch 8 ,mem_temp 
+0x0177 000550 nbranch p_deveice_init_reset ,blank 
+0x0178 000551 fetch 2 ,0x4ad4 
+0x0179 000552 byteswap pdata ,pdata 
+0x017a 000553 branch p_deveice_init_reset ,blank 
+0x017b 000554 store 2 ,mem_adc_3v 
+:      000555 p_deveice_init_reset:
+0x017c 000556 call p_le_queue_init 
+0x017d 000557 jam bt_evt_reset ,mem_ipc_tx_evt 
+:      000558 p_device_init_common:
+0x017e 000559 call p_ipc_tx_evt 
+0x017f 000560 jam 0 ,mem_hibernate_flag 
+0x0180 000561 hjam start_c51_core ,core_docd_ctrl 
+0x0181 000562 rtn 
+:      000563 p_deveice_init_wake:
+0x0182 000564 jam bt_evt_wakeup ,mem_ipc_tx_evt 
+0x0183 000565 branch p_device_init_common 
+:      000566 p_device_init_init_hibwake:
+0x0184 000567 copy auxcnt ,pdata 
+0x0185 000568 branch p_enter_hibernate_continue ,blank 
+0x0186 000569 call init_lmp_work 
+0x0187 000570 call l2cap_init_work 
+0x0188 000571 setarg 0 
+0x0189 000572 store 8 ,mem_context 
+0x018a 000573 store 2 ,mem_ui_state_map 
+0x018b 000574 copy clkn_bt ,pdata 
+0x018c 000575 store 4 ,mem_ipc_last_check_timer 
+0x018d 000576 jam bt_evt_hibernate_wake ,mem_ipc_tx_evt 
+0x018e 000577 branch p_device_init_common 
+:      000579 p_init_adc_from_otp:
+0x018f 000580 call otp_enable_chgpump 
+0x0190 000581 setarg 0x7e2 
+0x0191 000582 arg mem_temp ,rega 
+0x0192 000583 arg 12 ,temp 
+0x0193 000584 call otpd_read_data 
+0x0194 000585 call otp_disable_chgpump 
+0x0195 000586 fetch 8 ,mem_temp 
+0x0196 000587 rtn blank 
+0x0197 000588 fetch 1 ,mem_adc_config_flag 
+0x0198 000589 bbit1 adc_config_vinlpm ,p_calc_adc_base_vinlpm 
+0x0199 000590 bbit1 adc_config_hvin ,p_calc_adc_base_hvin 
+:      000591 p_calc_adc_check_gpio:
+0x019a 000592 fetch 2 ,mem_temp 
+0x019b 000593 byteswap pdata ,pdata 
+0x019c 000594 store 2 ,mem_adc_0v 
+0x019d 000595 fetch 2 ,mem_temp + 6 
+0x019e 000596 byteswap pdata ,pdata 
+0x019f 000597 store 2 ,mem_adc_3v 
+0x01a0 000598 rtn 
+:      000599 p_calc_adc_base_vinlpm:
+0x01a1 000600 fetcht 2 ,mem_temp + 4 
+0x01a2 000601 fetch 2 ,mem_temp + 10 
+0x01a3 000602 copy temp ,regb 
+0x01a4 000603 copy pdata ,rega 
+0x01a5 000604 byteswap pdata ,pdata 
+0x01a6 000605 store 2 ,mem_adc_3v 
+0x01a7 000606 copy rega ,pdata 
+0x01a8 000607 isub temp ,regc 
+0x01a9 000608 lshift regc ,regc 
+0x01aa 000609 copy regb ,pdata 
+0x01ab 000610 isub regc ,pdata 
+0x01ac 000611 byteswap pdata ,pdata 
+0x01ad 000612 store 2 ,mem_adc_0v 
+0x01ae 000613 rtn 
+:      000615 p_calc_adc_base_hvin:
+0x01af 000616 fetcht 2 ,mem_temp + 2 
+0x01b0 000617 fetch 2 ,mem_temp + 8 
+0x01b1 000618 copy temp ,regb 
+0x01b2 000619 copy pdata ,rega 
+0x01b3 000620 isub temp ,regc 
+0x01b4 000621 rshift2 regc ,regc 
+0x01b5 000622 copy regb ,pdata 
+0x01b6 000623 isub regc ,pdata 
+0x01b7 000624 byteswap pdata ,pdata 
+0x01b8 000625 store 2 ,mem_adc_0v 
+0x01b9 000626 lshift regc ,regc 
+0x01ba 000627 copy rega ,pdata 
+0x01bb 000628 isub regc ,pdata 
+0x01bc 000629 byteswap pdata ,pdata 
+0x01bd 000630 store 2 ,mem_adc_3v 
+0x01be 000631 rtn 
+:      000634 p_le_enable:
+0x01bf 000635 jam 39 ,mem_le_ch_mapped 
+0x01c0 000636 hjam 0x36 ,0x90f 
+0x01c1 000637 hjam 0x5f ,0x90b 
+0x01c2 000638 branch le_enable + 2 
+:      000639 p_le_disable:
+0x01c3 000640 hjam 0x2e ,0x90f 
+0x01c4 000641 hjam 0xff ,0x90b 
+0x01c5 000642 branch le_disable + 2 
+:      000645 p_mouse_idle:
+0x01c6 000646 rtn 
+:      000647 p_check_enter_hibernate:
+0x01c7 000648 jam syc_task_hibernate ,mem_c51_flag 
+0x01c8 000649 call p_c51_wait 
+:      000650 p_enter_hibernate_continue:
+0x01c9 000652 jam 0x5a ,mem_hibernate_flag 
+0x01ca 000653 call lpm_write_gpio_wakeup 
+0x01cb 000654 hfetch 4 ,core_lpm_ctrl 
+0x01cc 000655 set0 15 ,pdata 
+0x01cd 000656 hstore 4 ,core_lpm_reg 
+0x01ce 000657 call lpm_write_ctrl 
+0x01cf 000658 arg param_hibernate_clks ,temp 
+0x01d0 000659 branch lpm_sleep 
+:      000662 p_check_51cmd_once:
+0x01d1 000663 call ui_ipc_get_lock 
+0x01d2 000664 arg mem_ipc_fifo_c512bt ,rega 
+0x01d3 000665 call fifo_out 
+0x01d4 000666 copy pdata ,temp 
+0x01d5 000667 call ui_ipc_put_lock 
+0x01d6 000668 copy temp ,pdata 
+0x01d7 000669 rtn blank 
+0x01d8 000670 beq bt_cmd_start_24g ,p_check_51cmd_start24g 
+0x01d9 000671 beq bt_cmd_stop_24g ,p_check_51cmd_stop24g 
+0x01da 000672 beq bt_cmd_pair_24g ,p_check_51_cmd_pairing_24g 
+0x01db 000673 branch check_51cmd_once + 9 
+:      000674 p_check_51cmd_start24g:
+0x01dc 000675 jam state_24g_pairing_success ,mem_24g_pairing_sm 
+0x01dd 000676 branch p_g24_start_24g_mode 
+:      000677 p_check_51cmd_stop24g:
+0x01de 000678 set0 mark_24g ,mark 
+0x01df 000679 jam state_24g_pairing_success ,mem_24g_pairing_sm 
+0x01e0 000680 branch p_g24_stop_g24_mode 
+:      000682 p_check_51_cmd_pairing_24g:
+0x01e1 000683 setarg -1 
+0x01e2 000684 store 4 ,mem_24g_addr 
+0x01e3 000685 branch p_g24_start_pairing_sm1 
+:      000688 p_le_queue_init:
+0x01e4 000689 setarg 0 
+0x01e5 000690 store 4 ,mem_queue_write 
+0x01e6 000691 rtn 
+:      000694 p_g24_dispatch:
+0x01e7 000695 rtnmark0 mark_24g 
+0x01e8 000696 call p_g24_txdata_prep 
+0x01e9 000697 nbranch p_g24_long_sleep ,user 
+0x01ea 000698 jam 10 ,mem_24g_enter_lpm_timer 
+0x01eb 000699 call p_g24_transmit_packet 
+0x01ec 000700 fetch 1 ,mem_24g_pairing_sm 
+0x01ed 000701 rtnne state_24g_pairing_success 
+0x01ee 000702 call power_ctrl_start 
+:      000703 p_g24_short_sleep:
+0x01ef 000704 fetch 1 ,mem_mouse_retry_flag 
+0x01f0 000705 nrtn blank 
+0x01f1 000706 call p_check_ipc_for_lpm 
+0x01f2 000707 nrtn user 
+0x01f3 000708 fetch 1 ,mem_c51_lpm_lock 
+0x01f4 000709 nrtn blank 
+0x01f5 000710 call lpo_calibration 
+0x01f6 000711 fetch 3 ,mem_clks_per_lpo 
+0x01f7 000712 rtn blank 
+0x01f8 000713 fetch 1 ,mem_lpm_mode 
+0x01f9 000714 rtn blank 
+:      000715 p_g24_short_sleep_1:
+0x01fa 000716 setarg 58000 
+0x01fb 000717 call clk2lpo 
+0x01fc 000718 storet 4 ,mem_sleep_counter 
+0x01fd 000719 branch lpm_sleep 
+:      000721 p_g24_long_sleep:
+0x01fe 000722 call p_check_ipc_for_lpm 
+0x01ff 000723 nrtn user 
+0x0200 000724 fetch 1 ,mem_c51_lpm_lock 
+0x0201 000725 nrtn blank 
+0x0202 000726 call lpo_calibration 
+0x0203 000727 fetch 3 ,mem_clks_per_lpo 
+0x0204 000728 rtn blank 
+0x0205 000729 fetch 1 ,mem_lpm_mode 
+0x0206 000730 rtn blank 
+0x0207 000731 fetch 1 ,mem_24g_enter_lpm_timer 
+0x0208 000732 nbranch p_g24_short_sleep_1 ,blank 
+0x0209 000733 fetch 8 ,mem_24g_enter_hibernate 
+0x020a 000734 call clk2lpo 
+0x020b 000735 storet 4 ,mem_sleep_counter 
+0x020c 000736 branch lpm_sleep 
+:      000740 p_g24_txdata_prep:
+0x020d 000741 fetch 1 ,mem_24g_pairing_sm 
+0x020e 000742 bne state_24g_pairing_success ,p_g24_pairing_sm 
+0x020f 000743 call p_g24_package_data 
+0x0210 000744 call p_g24_transmit_prep 
+:      000745 p_g24_txdata_enable_tx:
+0x0211 000746 jam ensure_on_24g ,mem_24g_ensure 
+0x0212 000747 rtn 
+:      000749 p_g24_package_data:
+0x0213 000750 disable user 
+0x0214 000751 jam 2 ,mem_24g_data_type 
+0x0215 000752 fetch 1 ,mem_24g_txbuf 
+0x0216 000753 beq 0x01 ,p_g24_dataready 
+0x0217 000754 beq 0x02 ,p_g24_dataready_mk 
+0x0218 000755 beq 0x03 ,p_g24_dataready_ms 
+0x0219 000756 fetch 1 ,mem_mouse_retry_flag 
+0x021a 000757 ncall enable_user ,blank 
+0x021b 000758 rtn 
+:      000759 p_g24_dataready:
+0x021c 000760 setarg 0 
+0x021d 000761 store 1 ,mem_24g_txbuf 
+0x021e 000762 jam 10 ,mem_24g_datalen 
+0x021f 000763 branch p_g24_package_data_rtn 
+:      000764 p_g24_dataready_mk:
+0x0220 000765 setarg 0x03 
+0x0221 000766 store 1 ,mem_24g_txbuf 
+0x0222 000767 jam 4 ,mem_24g_datalen 
+0x0223 000768 branch p_g24_package_data_rtn 
+:      000769 p_g24_dataready_ms:
+0x0224 000770 jam 1 ,mem_24g_data_type 
+0x0225 000771 jam 8 ,mem_24g_datalen 
+:      000772 p_g24_package_data_rtn:
+0x0226 000773 jam 0 ,mem_24g_get_ack_fail 
+0x0227 000774 branch enable_user 
+:      000778 p_g24_transmit_packet:
+0x0228 000779 jam 0 ,mem_24g_retry 
+:      000780 p_g24_transmit_loop:
+0x0229 000781 arg param_rx_setup ,timeup 
+0x022a 000782 until clkn_rt ,meet 
+0x022b 000783 call p_g24_transmit_receive_ack 
+0x022c 000784 nbranch p_g24_retransmit ,user3 
+0x022d 000785 call p_g24_ackpayload_parse 
+0x022e 000786 call power_ctrl_pac_succ_incrs 
+0x022f 000787 fetch 1 ,mem_24g_pid 
+0x0230 000788 increase 1 ,pdata 
+0x0231 000789 store 1 ,mem_24g_pid 
+0x0232 000790 jam 0 ,mem_mouse_retry_flag 
+0x0233 000791 fetch 1 ,mem_24g_pairing_sm 
+0x0234 000792 bne state_24g_pairing_success ,p_g24_paring_mode_start 
+:      000793 p_g24_transmit_abandon:
+0x0235 000794 call p_g24_clear_txbuf 
+0x0236 000795 jam 0 ,mem_24g_get_ack_fail 
+0x0237 000796 jam ensure_off_24g ,mem_24g_ensure 
+0x0238 000797 rtn 
+:      000800 p_g24_retransmit:
+0x0239 000801 jam 1 ,mem_mouse_retry_flag 
+0x023a 000802 fetch 1 ,mem_24g_get_ack_fail 
+0x023b 000803 increase 1 ,pdata 
+0x023c 000804 store 1 ,mem_24g_get_ack_fail 
+0x023d 000805 fetch 1 ,mem_24g_pairing_sm 
+0x023e 000806 bne state_24g_pairing_success ,p_g24_tx_paring_retry 
+0x023f 000807 fetch 1 ,mem_24g_get_ack_fail 
+0x0240 000808 beq 0xff ,p_g24_stop_g24_mode 
+0x0241 000809 fetch 1 ,mem_24g_get_ack_fail 
+0x0242 000810 arg 16 ,temp 
+0x0243 000811 isub temp ,null 
+0x0244 000812 branch p_g24_ch ,positive 
+0x0245 000813 fetch 1 ,mem_24g_retry 
+0x0246 000814 increase 1 ,pdata 
+0x0247 000815 store 1 ,mem_24g_retry 
+0x0248 000816 nop 10 
+0x0249 000817 bne retry_24g ,p_g24_transmit_loop 
+0x024a 000818 branch p_g24_ch 
+:      000821 p_g24_clear_txbuf:
+0x024b 000822 setarg 0 
+0x024c 000823 store 9 ,mem_24g_txbuf 
+0x024d 000824 rtn 
+:      000826 p_g24_check_txbuf:
+0x024e 000827 bmark0 mark_24g ,set_blank 
+0x024f 000828 fetch 8 ,mem_24g_txbuf 
+0x0250 000829 rtn 
+:      000832 p_g24_paring_mode_start:
+0x0251 000833 call power_ctrl_pac_succ_cnt_init 
+0x0252 000834 branch p_g24_paring_mode 
+:      000836 p_g24_transmit_receive_ack:
+0x0253 000837 disable user3 
+0x0254 000838 call p_g24_transmit 
+0x0255 000839 fetch 1 ,mem_24g_no_ack 
+0x0256 000840 beq no_ack_24g ,p_g24_transmit_no_ack 
+0x0257 000841 force 0 ,radio_ctrl 
+0x0258 000842 fetch 4 ,mem_24g_addr 
+0x0259 000843 iforce access 
+0x025a 000844 fetcht 1 ,mem_last_freq 
+0x025b 000845 call set_freq_rx 
+0x025c 000846 call rf_rx_enable 
+0x025d 000847 call p_g24_receive_rxon 
+0x025e 000848 call p_g24_end_of_packet ,user3 
+0x025f 000849 rtn 
+:      000850 p_g24_transmit_no_ack:
+0x0260 000851 jam 0 ,mem_24g_rxbuf + 1 
+0x0261 000852 enable user3 
+0x0262 000853 branch p_g24_end_of_packet 
+:      000856 p_g24_tx_paring_retry:
+0x0263 000857 rtn 
+:      000861 p_g24_stop_g24_mode:
+0x0264 000862 jam 0 ,mem_mouse_retry_flag 
+0x0265 000863 jam bt_evt_24g_attempt_fail ,mem_fifo_temp 
+0x0266 000864 branch ui_ipc_send_event 
+:      000867 p_g24_ackpayload_parse:
+0x0267 000868 call p_g24_read_len_pid_crc 
+0x0268 000869 fetch 1 ,mem_24g_rxdata_length 
+0x0269 000870 rtn blank 
+0x026a 000871 iforce loopcnt 
+0x026b 000872 call p_24g_kb_led 
+0x026c 000873 arg mem_24g_rxbuf + 2 ,contr 
+0x026d 000874 arg mem_24g_rxpayload ,contw 
+0x026e 000875 branch memcpy 
+:      000877 p_24g_kb_led:
+0x026f 000878 fetch 1 ,mem_24g_rxbuf + 1 
+0x0270 000879 compare 0x08 ,pdata ,0xf8 
+0x0271 000880 nrtn true 
+0x0272 000881 fetcht 1 ,mem_24g_rxbuf + 2 
+0x0273 000882 storet 1 ,mem_caps_num_lock 
+0x0274 000883 rtn 
+:      000885 power_ctrl_pac_succ_cnt_init:
+0x0275 000886 jam 1 ,mem_power_ctrl_level 
+0x0276 000887 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+0x0277 000888 rtn 
+:      000889 power_ctrl_pac_succ_incrs:
+0x0278 000890 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x0279 000891 increase 1 ,pdata 
+0x027a 000892 store 1 ,mem_power_ctrl_pac_succ_cnt 
+0x027b 000893 rtn 
+:      000894 power_ctrl_pac_succ_decrs:
+0x027c 000895 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x027d 000896 sub pdata ,1 ,null 
+0x027e 000897 ncall power_ctrl_pac_succ_cnt_reinit ,positive 
+0x027f 000898 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x0280 000899 rtneq 0 
+0x0281 000900 increase -1 ,pdata 
+0x0282 000901 store 1 ,mem_power_ctrl_pac_succ_cnt 
+0x0283 000902 rtn 
+:      000903 power_ctrl_pac_succ_cnt_reinit:
+0x0284 000904 jam 2 ,mem_power_ctrl_pac_succ_cnt 
+0x0285 000905 rtn 
+:      000907 power_ctrl_start:
+0x0286 000908 arg mem_rssi_signal_buf ,rega 
+0x0287 000909 call p_rssi_average 
+0x0288 000910 storet 1 ,mem_rssi_avg_received 
+0x0289 000911 isolate1 mark_24g ,mark 
+0x028a 000912 call power_ctrl_24g_dis_max ,true 
+0x028b 000913 ncall power_ctrl_le_dis_max ,true 
+0x028c 000914 isub temp ,null 
+0x028d 000915 nbranch power_ctrl_txpower_incrs ,positive 
+0x028e 000917 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x028f 000918 sub pdata ,1 ,null 
+0x0290 000919 nbranch power_ctrl_txpower_decrs_check ,positive 
+0x0291 000920 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x0292 000921 beq 0 ,power_ctrl_txpower_incrs 
+0x0293 000922 rtn 
+:      000924 power_ctrl_24g_dis_max:
+0x0294 000925 setarg rssi_dis_max_24g 
+0x0295 000926 rtn 
+:      000927 power_ctrl_24g_dis_min:
+0x0296 000928 setarg rssi_dis_min_24g 
+0x0297 000929 rtn 
+:      000930 power_ctrl_le_dis_max:
+0x0298 000931 setarg rssi_dis_max_ble 
+0x0299 000932 rtn 
+:      000933 power_ctrl_le_dis_min:
+0x029a 000934 setarg rssi_dis_min_ble 
+0x029b 000935 rtn 
+:      000937 power_ctrl_txpower_decrs_check:
+0x029c 000938 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0x029d 000939 rtnne 70 
+0x029e 000940 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+:      000941 power_ctrl_txpower_decrs:
+0x029f 000942 fetcht 1 ,mem_rssi_avg_received 
+0x02a0 000943 isolate1 mark_24g ,mark 
+0x02a1 000944 call power_ctrl_24g_dis_min ,true 
+0x02a2 000945 ncall power_ctrl_le_dis_min ,true 
+0x02a3 000946 isub temp ,null 
+0x02a4 000947 nrtn positive 
+0x02a5 000948 fetch 1 ,mem_power_ctrl_level 
+0x02a6 000949 beq 0 ,power_ctrl_decrs_level0 
+0x02a7 000950 increase -1 ,pdata 
+0x02a8 000951 store 1 ,mem_power_ctrl_level 
+0x02a9 000952 beq 0 ,power_ctrl_decrs_level0 
+:      000953 power_ctrl_decrs_level1:
+:      000954 power_ctrl_incrs_level1:
+0x02aa 000955 jam tx_power_0db ,mem_tx_power 
+0x02ab 000956 rtn 
+:      000958 power_ctrl_txpower_incrs:
+0x02ac 000959 fetch 1 ,mem_power_ctrl_level 
+0x02ad 000960 beq 2 ,power_ctrl_incrs_level2 
+0x02ae 000961 increase 1 ,pdata 
+0x02af 000962 store 1 ,mem_power_ctrl_level 
+0x02b0 000963 beq 1 ,power_ctrl_incrs_level1 
+:      000964 power_ctrl_incrs_level2:
+0x02b1 000965 jam tx_power_5db ,mem_tx_power 
+0x02b2 000966 rtn 
+:      000968 power_ctrl_decrs_level0:
+0x02b3 000969 jam tx_power_f5db ,mem_tx_power 
+0x02b4 000970 rtn 
+:      000972 p_g24_start_pairing_sm1:
+0x02b5 000973 set1 mark_24g ,mark 
+0x02b6 000974 call p_g24_pair_init 
+0x02b7 000975 call p_g24_transmit_abandon 
+0x02b8 000976 jam state_24g_pairing_1 ,mem_24g_pairing_sm 
+0x02b9 000977 rtn 
+:      000979 p_g24_pair_init:
+0x02ba 000980 jam 0 ,mem_24g_pid 
+0x02bb 000981 jam g24_pair_ch ,mem_24g_ch 
+0x02bc 000982 fetch 4 ,mem_24g_paring_addr 
+0x02bd 000983 branch p_g24_update_addr_and_synccrc8 
+:      000985 p_g24_pairing_sm:
+0x02be 000986 call p_g24_pair_init 
+0x02bf 000987 fetch 1 ,mem_24g_ensure 
+0x02c0 000988 beq ensure_on_24g ,enable_user 
+0x02c1 000989 fetch 1 ,mem_24g_pairing_sm 
+0x02c2 000990 beq state_24g_pairing_1 ,p_g24_pairing_sm_1 
+0x02c3 000991 beq state_24g_pairing_2 ,p_g24_pairing_sm_2 
+0x02c4 000992 beq state_24g_pairing_3 ,p_g24_pairing_sm_3 
+0x02c5 000993 branch assert 
+:      000995 p_g24_pairing_sm_1:
+0x02c6 000996 jam state_24g_pairing_1_waiting_ack ,mem_24g_pairing_sm 
+0x02c7 000997 jam 0xaa ,mem_24g_common_temp 
+0x02c8 000998 branch p_g24_pairing_sm_common 
+:      000999 p_g24_pairing_sm_2:
+0x02c9 001000 jam state_24g_pairing_2_waiting_ack ,mem_24g_pairing_sm 
+0x02ca 001001 jam 0x55 ,mem_24g_common_temp 
+0x02cb 001002 branch p_g24_pairing_sm_common 
+:      001003 p_g24_pairing_sm_3:
+0x02cc 001004 jam state_24g_pairing_3_waiting_ack ,mem_24g_pairing_sm 
+0x02cd 001005 jam 0x22 ,mem_24g_common_temp 
+:      001006 p_g24_pairing_sm_common:
+0x02ce 001007 fetch 1 ,mem_24g_data_type 
+0x02cf 001008 and_into bits_data ,pdata 
+0x02d0 001009 store 1 ,mem_24g_common_temp + 1 
+0x02d1 001010 fetch 4 ,mem_24g_device_addr 
+0x02d2 001011 store 4 ,mem_24g_common_temp + 2 
+0x02d3 001012 jam 0 ,mem_24g_common_temp + 6 
+0x02d4 001013 arg mem_24g_common_temp ,rega 
+0x02d5 001014 arg 7 ,temp 
+0x02d6 001015 call p_g24_put_data_in_buff 
+0x02d7 001016 call p_g24_transmit_prep 
+0x02d8 001017 call p_g24_txdata_enable_tx 
+0x02d9 001018 branch enable_user 
+:      001020 p_g24_paring_mode:
+0x02da 001021 fetch 1 ,mem_24g_pairing_sm 
+0x02db 001022 rtneq state_24g_pairing_success 
+0x02dc 001023 beq state_24g_pairing_1_waiting_ack ,p_g24_pairing_sm_1_waiting_ack 
+0x02dd 001024 beq state_24g_pairing_2_waiting_ack ,p_g24_pairing_sm_2_waiting_ack 
+0x02de 001025 beq state_24g_pairing_3_waiting_ack ,p_g24_pairing_sm_3_waiting_ack 
+0x02df 001026 rtn 
+:      001029 p_g24_pairing_sm_1_waiting_ack:
+0x02e0 001030 jam state_24g_pairing_2 ,mem_24g_pairing_sm 
+0x02e1 001031 branch p_g24_transmit_abandon 
+:      001032 p_g24_pairing_sm_2_waiting_ack:
+0x02e2 001033 jam state_24g_pairing_3 ,mem_24g_pairing_sm 
+0x02e3 001034 branch p_g24_transmit_abandon 
+:      001035 p_g24_pairing_sm_3_waiting_ack:
+0x02e4 001036 jam state_24g_pairing_success ,mem_24g_pairing_sm 
+0x02e5 001037 jam bt_evt_24g_pairing_complete ,mem_fifo_temp 
+0x02e6 001038 call ui_ipc_send_event 
+0x02e7 001039 fetch 4 ,mem_24g_rxpayload + 2 
+0x02e8 001040 call p_g24_update_addr_and_synccrc8 
+0x02e9 001041 branch p_g24_transmit_abandon 
+:      001043 p_g24_start_24g_mode:
+0x02ea 001044 rtnmark1 mark_24g 
+0x02eb 001045 call p_g24_syncword_crc8 
+0x02ec 001046 call p_g24_ch 
+0x02ed 001047 fetch 1 ,mem_24g_pairing_sm 
+0x02ee 001048 rtnne state_24g_pairing_success 
+0x02ef 001049 call p_g24_tx_attemp_data_prep 
+0x02f0 001050 setarg 0 
+0x02f1 001051 store 2 ,mem_24g_check_dongle_times 
+:      001052 p_g24_tx_attemp_dongle_loop:
+0x02f2 001053 call lpo_calibration 
+0x02f3 001054 nop 2000 
+0x02f4 001055 fetch 1 ,mem_24g_check_dongle_times 
+0x02f5 001056 beq 0xff ,p_g24_stop_g24_mode 
+0x02f6 001057 call p_g24_transmit_receive_ack 
+0x02f7 001058 nbranch p_g24_attemp_txdata_retry ,user3 
+:      001059 p_g24_tx_attemp_dongle_succ:
+0x02f8 001060 call p_g24_clear_txbuf 
+0x02f9 001061 jam 3 ,mem_24g_idle_cnt 
+0x02fa 001062 set1 mark_24g ,mark 
+0x02fb 001063 jam bt_evt_24g_attempt_success ,mem_fifo_temp 
+0x02fc 001064 branch ui_ipc_send_event 
+:      001067 p_g24_tx_attemp_data_prep:
+0x02fd 001068 jam 0xff ,mem_24g_common_temp 
+0x02fe 001069 fetch 1 ,mem_24g_data_type 
+0x02ff 001070 store 1 ,mem_24g_common_temp + 1 
+0x0300 001071 fetch 4 ,mem_24g_device_addr 
+0x0301 001072 store 4 ,mem_24g_common_temp + 2 
+0x0302 001073 arg 6 ,temp 
+0x0303 001074 arg mem_24g_common_temp ,rega 
+0x0304 001075 call p_g24_put_data_in_buff 
+0x0305 001076 branch p_g24_transmit_prep 
+:      001078 p_g24_attemp_txdata_retry:
+0x0306 001079 fetch 2 ,mem_24g_check_dongle_times 
+0x0307 001080 increase 1 ,pdata 
+0x0308 001081 store 2 ,mem_24g_check_dongle_times 
+0x0309 001082 call p_g24_ch 
+0x030a 001083 branch p_g24_tx_attemp_dongle_loop 
+:      001086 p_g24_put_data_in_buff:
+0x030b 001087 storet 1 ,mem_24g_datalen 
+0x030c 001088 copy temp ,loopcnt 
+0x030d 001089 arg mem_24g_txbuf ,contw 
+0x030e 001090 copy rega ,contr 
+0x030f 001091 branch memcpy 
+:      001093 p_g24_read_len_pid_crc:
+0x0310 001095 fetch 1 ,mem_24g_rxbuf + 1 
+0x0311 001096 rshift3 pdata ,pdata 
+0x0312 001097 store 1 ,mem_24g_rxdata_length 
+0x0313 001099 increase 1 ,pdata 
+0x0314 001100 arg mem_24g_rxbuf + 1 ,contr 
+0x0315 001101 iadd contr ,contr 
+0x0316 001102 ifetch 3 ,contr 
+0x0317 001103 store 3 ,mem_24g_sta_crc 
+0x0318 001104 rtn 
+:      001106 p_rssi_signal:
+0x0319 001107 fetcht 1 ,mem_rssi_signal_index 
+0x031a 001108 setarg mem_rssi_signal_buf 
+0x031b 001109 iadd temp ,contw 
+0x031c 001110 copy rega ,pdata 
+0x031d 001111 istore 1 ,contw 
+0x031e 001112 increase 1 ,temp 
+0x031f 001113 and_into rssi_buf_len_signal ,temp 
+0x0320 001114 storet 1 ,mem_rssi_signal_index 
+0x0321 001115 rtn 
+:      001117 p_rssi_noise:
+0x0322 001118 call save_rssi 
+0x0323 001119 rtn blank 
+0x0324 001120 fetcht 1 ,mem_rssi_noise_index 
+0x0325 001121 arg mem_rssi_noise_buf ,rega 
+0x0326 001122 call p_rssi_store 
+0x0327 001123 storet 1 ,mem_rssi_noise_index 
+0x0328 001124 rtn 
+:      001126 p_rssi_store:
+0x0329 001127 copy rega ,pdata 
+0x032a 001128 iadd temp ,contw 
+0x032b 001129 fetch 1 ,mem_rssi 
+0x032c 001130 istore 1 ,contw 
+0x032d 001131 increase 1 ,temp 
+0x032e 001132 and_into rssi_buf_len_signal ,temp 
+0x032f 001133 rtn 
+:      001134 p_rssi_average:
+0x0330 001135 arg 0 ,temp 
+0x0331 001136 arg rssi_buf_len_signal + 1 ,loopcnt 
+0x0332 001137 copy rega ,contr 
+:      001138 p_rssi_average_loop:
+0x0333 001139 ifetch 1 ,contr 
+0x0334 001140 iadd temp ,temp 
+0x0335 001141 loop p_rssi_average_loop 
+0x0336 001142 rshift3 temp ,temp 
+0x0337 001143 copy pdata ,temp 
+0x0338 001144 rtnmark0 mark_24g 
+0x0339 001146 div pdata ,10 
+0x033a 001147 call wait_div_end 
+0x033b 001148 quotient pdata 
+0x033c 001149 lshift4 pdata ,pdata 
+0x033d 001150 remainder temp 
+0x033e 001151 ior temp ,temp 
+0x033f 001152 rtn 
+:      001154 p_g24_update_addr_and_synccrc8:
+0x0340 001155 store 4 ,mem_24g_addr 
+:      001158 p_g24_syncword_crc8:
+0x0341 001159 arg 0 ,rega 
+0x0342 001160 arg 4 ,loopcnt 
+0x0343 001161 arg mem_24g_addr ,contr 
+:      001162 p_g24_syncword_crc8_loop:
+0x0344 001163 ifetch 1 ,contr 
+0x0345 001164 iadd rega ,rega 
+0x0346 001165 loop p_g24_syncword_crc8_loop 
+0x0347 001166 copy rega ,pdata 
+0x0348 001167 store 2 ,mem_24g_syncword 
+0x0349 001168 fetch 1 ,mem_24g_syncword 
+0x034a 001169 fetcht 1 ,mem_24g_syncword + 1 
+0x034b 001170 iadd temp ,pdata 
+0x034c 001171 store 1 ,mem_24g_syncword_crc8 
+0x034d 001172 rtn 
+:      001175 p_g24_transmit_prep:
+0x034e 001177 fetch 1 ,mem_24g_datalen 
+0x034f 001178 increase 2 ,pdata 
+0x0350 001179 store 1 ,mem_24g_txlen 
+0x0351 001181 fetch 1 ,mem_24g_data_type 
+0x0352 001182 store 1 ,mem_24g_txpayload 
+0x0353 001184 fetch 1 ,mem_24g_datalen 
+0x0354 001185 lshift3 pdata ,pdata 
+0x0355 001186 fetcht 1 ,mem_24g_pid 
+0x0356 001187 and temp ,0x03 ,temp 
+0x0357 001188 lshift temp ,temp 
+0x0358 001189 ior temp ,pdata 
+0x0359 001190 fetcht 1 ,mem_24g_no_ack 
+0x035a 001191 iadd temp ,pdata 
+0x035b 001192 istore 1 ,contw 
+0x035c 001194 fetch 1 ,mem_24g_pairing_sm 
+0x035d 001195 bne state_24g_pairing_success ,p_g24_transmit_prep_pair 
+0x035e 001196 fetch 1 ,mem_24g_data_type 
+0x035f 001197 istore 1 ,contw 
+:      001198 p_g24_transmit_prep_pair:
+0x0360 001199 fetch 1 ,mem_24g_datalen 
+0x0361 001200 iforce loopcnt 
+0x0362 001201 fetch 1 ,mem_24g_data_type 
+0x0363 001202 beq 1 ,p_g24_transmit_prep_mouse 
+0x0364 001203 arg mem_24g_txbuf ,contr 
+0x0365 001204 branch memcpy 
+:      001206 p_g24_transmit_prep_mouse:
+0x0366 001207 arg mem_24g_txbuf + 1 ,contr 
+0x0367 001208 branch memcpy 
+:      001210 p_g24_ch:
+0x0368 001211 fetcht 1 ,mem_24g_current_ch_number 
+0x0369 001212 call p_g24_ch_calc 
+0x036a 001213 increase 1 ,temp 
+0x036b 001214 and_into 3 ,temp 
+0x036c 001215 storet 1 ,mem_24g_current_ch_number 
+0x036d 001216 rtn 
+:      001218 p_g24_ch_calc:
+0x036e 001219 fetch 1 ,mem_24g_addr 
+0x036f 001220 and_into 0x03 ,pdata 
+0x0370 001221 mul32 pdata ,4 ,rega 
+0x0371 001222 setarg mem_24g_ch_map1 
+0x0372 001223 iadd rega ,pdata 
+0x0373 001224 iadd temp ,contr 
+0x0374 001225 ifetch 1 ,contr 
+0x0375 001226 store 1 ,mem_24g_ch 
+0x0376 001227 rtn 
+:      001229 p_g24_prep:
+0x0377 001230 disable enable_crc 
+0x0378 001231 disable enable_white 
+0x0379 001232 setarg 0x555555 
+0x037a 001233 iforce crc24_init 
+0x037b 001234 fetch 1 ,mem_24g_ch 
+0x037c 001235 reverse pdata ,temp 
+0x037d 001236 set1 1 ,temp 
+0x037e 001237 rshift temp ,white_init 
+0x037f 001238 rtn 
+:      001240 p_g24_receive_rxon:
+0x0380 001241 call p_g24_prep 
+0x0381 001242 enable decode_fec0 
+0x0382 001243 enable is_rx 
+0x0383 001244 disable is_tx 
+0x0384 001245 enable swfine 
+0x0385 001246 fetch 2 ,mem_24g_rx_window 
+0x0386 001247 iforce stop_watch 
+0x0387 001248 correlate null ,timeout 
+0x0388 001249 nbranch p_g24_sync_timeout ,sync 
+0x0389 001250 disable decode_fec0 
+0x038a 001251 enable decode_fec1 
+0x038b 001252 enable enable_white 
+0x038c 001253 enable enable_crc 
+0x038d 001254 parse demod ,bucket ,8 
+0x038e 001255 rshift3 pwindow ,pdata 
+0x038f 001256 store 1 ,mem_24g_get_syncword_crc8 
+0x0390 001257 fetcht 1 ,mem_24g_syncword_crc8 
+0x0391 001258 isub temp ,null 
+0x0392 001259 nbranch p_g24_end_of_packet ,zero 
+0x0393 001260 parse demod ,bucket ,8 
+0x0394 001261 rshift3 pwindow ,pdata 
+0x0395 001262 store 1 ,mem_24g_rxbuf 
+0x0396 001263 fetch 1 ,mem_24g_mode 
+0x0397 001264 sub pdata ,rx_24g ,null 
+0x0398 001265 branch p_g24_receive_skip ,zero 
+0x0399 001266 fetch 1 ,mem_24g_rxbuf 
+0x039a 001267 fetcht 1 ,mem_24g_data_type 
+0x039b 001268 icompare bits_data ,temp 
+0x039c 001269 nbranch p_g24_end_of_packet ,true 
+:      001270 p_g24_receive_skip:
+0x039d 001271 parse demod ,bucket ,8 
+0x039e 001272 rshift3 pwindow ,pdata 
+0x039f 001273 istore 1 ,contw 
+0x03a0 001274 rshift3 pdata ,pdata 
+0x03a1 001275 and pdata ,0x1f ,loopcnt 
+0x03a2 001276 branch p_g24rx_nopayload ,zero 
+:      001277 p_g24rx_loop:
+0x03a3 001278 parse demod ,bucket ,8 
+0x03a4 001279 rshift3 pwindow ,pdata 
+0x03a5 001280 istore 1 ,contw 
+0x03a6 001281 loop p_g24rx_loop 
+:      001282 p_g24rx_nopayload:
+0x03a7 001284 copy contw ,rega 
+0x03a8 001285 parse demod ,bucket ,8 
+0x03a9 001286 rshift3 pwindow ,pdata 
+0x03aa 001287 store 1 ,mem_rssi_hex_received 
+0x03ab 001288 copy rega ,contw 
+0x03ac 001289 parse demod ,bucket ,24 
+0x03ad 001290 enable swfine 
+0x03ae 001291 arg param_sifs ,stop_watch 
+0x03af 001292 rshift32 pdata ,pdata 
+0x03b0 001293 rshift16 pdata ,pdata 
+0x03b1 001294 istore 3 ,contw 
+0x03b2 001295 disable decode_fec1 
+0x03b3 001296 branch p_g24_end_of_packet ,crc_failed 
+0x03b4 001297 enable user3 
+0x03b5 001298 fetch 1 ,mem_last_freq 
+0x03b6 001299 add pdata ,0 ,rega 
+0x03b7 001300 call rf_write_freq 
+0x03b8 001301 disable decode_fec0 
+0x03b9 001302 call set_sync_on 
+0x03ba 001303 fetch 1 ,mem_rssi_hex_received 
+0x03bb 001304 copy pdata ,rega 
+0x03bc 001305 call p_rssi_signal 
+0x03bd 001306 rtn 
+:      001308 p_g24_end_of_packet:
+0x03be 001309 disable encode_fec1 
+0x03bf 001310 disable decode_fec1 
+0x03c0 001311 branch end_of_packet 
+:      001313 p_g24_sync_timeout:
+0x03c1 001314 call p_rssi_noise 
+0x03c2 001315 branch p_g24_end_of_packet 
+:      001317 p_g24_set_freq_tx:
+0x03c3 001318 call set_sync_on 
+0x03c4 001319 fetcht 1 ,mem_24g_ch 
+0x03c5 001320 branch set_freq_tx 
+:      001322 p_g24_transmit:
+0x03c6 001323 call le_enable 
+0x03c7 001324 fetch 4 ,mem_24g_addr 
+0x03c8 001325 iforce access 
+0x03c9 001326 call p_g24_prep 
+0x03ca 001327 call p_g24_set_freq_tx 
+0x03cb 001328 set1 txgfsk ,radio_ctrl 
+0x03cc 001329 enable encode_fec0 
+0x03cd 001330 enable is_tx 
+0x03ce 001331 disable is_rx 
+0x03cf 001332 rshift16 access ,pdata 
+0x03d0 001333 rshift8 pdata ,pdata 
+0x03d1 001334 rshift4 pdata ,pdata 
+0x03d2 001335 inject mod ,40 
+0x03d3 001336 disable encode_fec0 
+0x03d4 001337 enable encode_fec1 
+0x03d5 001338 enable enable_white 
+0x03d6 001339 enable enable_crc 
+0x03d7 001340 fetch 1 ,mem_24g_syncword_crc8 
+0x03d8 001341 inject mod ,8 
+0x03d9 001342 fetch 1 ,mem_24g_txlen 
+0x03da 001343 iforce loopcnt 
+0x03db 001344 arg mem_24g_txpayload ,contr 
+:      001345 p_g24tr_loop:
+0x03dc 001346 ifetch 1 ,contr 
+0x03dd 001347 inject mod ,8 
+0x03de 001348 loop p_g24tr_loop 
+0x03df 001349 enable enable_parity 
+0x03e0 001350 inject mod ,24 
+0x03e1 001351 disable enable_parity 
+0x03e2 001352 until null ,tx_clear 
+0x03e3 001353 nop 100 
+0x03e4 001354 disable encode_fec0 
+0x03e5 001355 disable encode_fec1 
+0x03e6 001356 rtn 
               org 0x3000
-:      001368 start:
-0x3000 001369 call lpmstate 
-:      001372 soft_reset:
-0x3001 001373 set0 mark_ext_patch ,mark 
-0x3002 001374 bpatch patch00_0 ,mem_patch00 
-0x3003 001375 clear_stack 
-0x3004 001376 call initialize_radio 
-0x3005 001377 call iicd_init_12m 
-0x3006 001378 call init_param 
-0x3007 001379 call l2cap_init 
-0x3008 001380 set0 mark_ext_patch ,mark 
-0x3009 001381 bpatch patch00_1 ,mem_patch00 
-0x300a 001382 call rfcomm_init 
-0x300b 001383 call init_lmp 
-0x300c 001384 call ui_init 
-0x300d 001385 call app_init 
-0x300e 001386 set0 mark_ext_patch ,mark 
-0x300f 001387 bpatch patch00_2 ,mem_patch00 
-0x3010 001388 call app_lpm_init ,wake 
-0x3011 001389 call sp_initialize 
-0x3012 001390 call lpm_recover_clk ,wake 
-:      001391 main_loop:
-0x3013 001392 set0 mark_ext_patch ,mark 
-0x3014 001393 bpatch patch00_3 ,mem_patch00 
-0x3015 001394 call sp_calc_sequence 
-0x3016 001395 call le_dispatch 
-0x3017 001396 call hci_dispatch 
-0x3018 001397 set0 mark_ext_patch ,mark 
-0x3019 001398 bpatch patch00_4 ,mem_patch00 
-0x301a 001399 call idle_dispatch 
-0x301b 001400 call app_process_idle 
-0x301c 001401 call inquiry_dispatch 
-0x301d 001402 set0 mark_ext_patch ,mark 
-0x301e 001403 bpatch patch00_5 ,mem_patch00 
-0x301f 001404 call inquiry_scan_dispatch 
-0x3020 001405 call page_scan_dispatch 
-0x3021 001406 call connection_dispatch 
-0x3022 001407 call lpm_dispatch 
-0x3023 001408 branch main_loop 
-:      001410 connection_dispatch:
-0x3024 001411 call connection_incontext 
-0x3025 001412 rtnmark0 mark_context 
-0x3026 001413 set0 mark_context ,mark 
-0x3027 001414 call context_save 
-0x3028 001415 branch le_disable 
-:      001417 connection_incontext:
-0x3029 001418 set0 mark_ext_patch ,mark 
-0x302a 001419 bpatch patch00_6 ,mem_patch00 
-0x302b 001420 call context_search_insniff 
-0x302c 001421 nbranch connection_nosniff ,zero 
-0x302d 001422 call context_load 
-0x302e 001423 add rega ,coffset_mode ,contr 
-0x302f 001424 ifetch 1 ,contr 
-0x3030 001425 bbit1 mode_le ,le_conn_dispatch 
-0x3031 001426 bbit1 mode_master ,master_dispatch 
-0x3032 001427 branch slave_dispatch 
-:      001428 connection_nosniff:
-0x3033 001429 set0 mark_ext_patch ,mark 
-0x3034 001430 bpatch patch00_7 ,mem_patch00 
-0x3035 001431 call context_get_next 
-0x3036 001432 copy loopcnt ,null 
-0x3037 001433 rtn zero 
-0x3038 001434 call context_load 
-0x3039 001435 fetch 1 ,mem_state 
-0x303a 001436 bbit1 state_inpage ,master_page 
-0x303b 001437 fetch 1 ,mem_mode 
-0x303c 001438 bbit1 mode_master ,master_dispatch 
-0x303d 001439 branch slave_dispatch 
-:      001447 idle_dispatch:
-0x303e 001448 fetch 1 ,mem_hci_cmd 
-0x303f 001449 rtn blank 
-0x3040 001450 beq hci_cmd_inquiry ,idle_inquiry 
-0x3041 001451 beq hci_cmd_inquiry_cancel ,idle_inquiry_cancel 
-0x3042 001452 beq hci_cmd_remote_name_req ,idle_remote_name_req 
-0x3043 001453 beq hci_cmd_create_conn ,idle_create_conn 
-0x3044 001454 beq hci_cmd_le_create_conn ,idle_le_create_conn 
-0x3045 001455 call context_search_conn_handle 
-0x3046 001456 rtn zero 
-0x3047 001457 call context_search_plap 
-0x3048 001458 rtn zero 
-:      001459 idle_exit:
-0x3049 001460 jam 0 ,mem_hci_cmd 
-0x304a 001461 rtn 
-:      001463 idle_le_create_conn:
-0x304b 001464 jam hci_cmd_le_create_conn ,mem_cmd_le_create_conn 
-0x304c 001465 jam 0 ,mem_hci_cmd 
-0x304d 001466 rtn 
-:      001468 idle_inquiry:
-0x304e 001469 set1 mark_inquiry_on ,mark 
-0x304f 001470 set0 mark_inquiry_trainb ,mark 
-0x3050 001471 jam param_ninquiry ,mem_ninqy_index 
-0x3051 001472 jam 31 ,mem_nfreq_index_inq 
-0x3052 001473 branch idle_exit 
-:      001475 idle_inquiry_cancel:
-0x3053 001476 set0 mark_inquiry_on ,mark 
-0x3054 001477 force 0 ,stop_watch 
-0x3055 001478 branch idle_exit 
-:      001480 idle_remote_name_req:
-0x3056 001481 call context_search_plap 
-0x3057 001482 rtn zero 
-0x3058 001483 force lmp_name_req ,temp 
-0x3059 001484 jam 5 ,mem_nameres_cnt 
-0x305a 001485 branch idle_start_page 
-:      001487 idle_create_conn:
-0x305b 001488 set0 mark_ext_patch ,mark 
-0x305c 001489 bpatch patch01_0 ,mem_patch01 
-0x305d 001490 fetch 1 ,mem_device_option 
-0x305e 001491 beq dvc_op_hci ,idle_create_conn_hci 
-:      001492 idle_create_conn_device:
-0x305f 001493 fetch 6 ,mem_hci_plap 
-0x3060 001494 branch idle_exit ,blank 
-0x3061 001495 jam reconnect_hid ,memui_reconnect_mode 
-0x3062 001497 jam conn_sm_wait_features_res ,mem_conn_sm 
-0x3063 001498 branch idle_create_conn_cont 
-:      001500 idle_create_conn_hci:
-0x3064 001501 fetch 6 ,mem_hci_plap 
-0x3065 001502 branch idle_exit ,blank 
-0x3066 001503 store 6 ,mem_plap 
-:      001504 idle_create_conn_cont:
-0x3067 001505 force lmp_version_req ,temp 
-:      001506 idle_start_page:
-0x3068 001507 set0 mark_ext_patch ,mark 
-0x3069 001508 bpatch patch01_1 ,mem_patch01 
-0x306a 001509 fetch 1 ,mem_page_mode 
-0x306b 001510 branch idle_page_mode_r0 ,blank 
-0x306c 001511 lshift3 pdata ,pdata 
-0x306d 001512 lshift4 pdata ,pdata 
-0x306e 001513 increase -1 ,pdata 
-:      001514 idle_page_mode_r0:
-0x306f 001515 store 1 ,mem_npage 
-0x3070 001516 store 1 ,mem_npage_index 
-0x3071 001517 jam 31 ,mem_nfreq_index_page 
-0x3072 001518 set0 mark_page_trainb ,mark 
-0x3073 001519 call context_new 
-0x3074 001520 nbranch idle_page_fail ,zero 
-0x3075 001521 call get_free_amaddr 
-0x3076 001522 store 1 ,mem_amaddr 
-0x3077 001523 storet 1 ,mem_lmo_opcode2 
-0x3078 001524 fetch 6 ,mem_hci_plap 
-0x3079 001525 store 6 ,mem_plap 
-0x307a 001526 set0 mark_ext_patch ,mark 
-0x307b 001527 bpatch patch01_2 ,mem_patch01 
-0x307c 001528 force 0 ,pdata 
-0x307d 001529 compare lmp_name_req ,temp ,0xff 
-0x307e 001530 nsetflag true ,state_init_seq ,pdata 
-0x307f 001531 set1 state_inpage ,pdata 
-0x3080 001532 store 1 ,mem_state 
-0x3081 001533 jam bt_evt_reconn_started ,mem_fifo_temp 
-0x3082 001534 call ui_ipc_send_event 
-0x3083 001535 force 0 ,pdata 
-0x3084 001536 setflag true ,smap_name_req ,pdata 
-0x3085 001537 store 1 ,mem_state_map 
-0x3086 001538 setarg 0 
-0x3087 001539 set1 mode_master ,pdata 
-0x3088 001540 store 1 ,mem_mode 
-0x3089 001541 enable master 
-0x308a 001542 call context_save 
-0x308b 001543 disable master 
-0x308c 001544 force page_length_timer ,queue 
-0x308d 001545 fetch 2 ,mem_page_to 
-0x308e 001546 call timer_init 
-0x308f 001547 branch idle_exit 
-:      001548 idle_page_fail:
-0x3090 001549 set0 mark_ext_patch ,mark 
-0x3091 001550 bpatch patch01_3 ,mem_patch01 
-0x3092 001551 fetch 6 ,mem_hci_plap 
-0x3093 001552 store 6 ,mem_plap 
-0x3094 001553 compare lmp_name_req ,temp ,0xff 
-0x3095 001554 branch idle_name_fail ,true 
-0x3096 001555 force hci_error_memory_full ,temp 
-0x3097 001556 call hci_send_connection_error 
-0x3098 001557 branch idle_exit 
-:      001558 idle_name_fail:
-0x3099 001559 arg mem_tmp_buffer ,contw 
-0x309a 001560 arg 8 ,loopcnt 
-0x309b 001561 call memset0 
-0x309c 001562 force hci_error_memory_full ,queue 
-0x309d 001563 call hci_send_name 
-0x309e 001564 jam bt_evt_reconn_failed ,mem_fifo_temp 
-0x309f 001565 call ui_ipc_send_event 
-0x30a0 001566 branch idle_exit 
-:      001573 inquiry_dispatch:
-0x30a1 001574 rtnmark0 mark_inquiry_on 
-0x30a2 001575 force inquiry_length_timer ,queue 
-0x30a3 001576 call timer_check 
-0x30a4 001577 nsetflag blank ,mark_inquiry_on ,mark 
-0x30a5 001578 nbranch inquiry_start ,blank 
-0x30a6 001579 rtn 
-:      001583 inquiry_start:
-0x30a7 001584 set0 mark_ext_patch ,mark 
-0x30a8 001585 bpatch patch01_4 ,mem_patch01 
-0x30a9 001586 fetcht 2 ,mem_inq_window 
-0x30aa 001587 force 4 ,queue 
-0x30ab 001588 call sniff_check_window 
-0x30ac 001589 rtn user 
-0x30ad 001590 call afh_clear 
-0x30ae 001591 force 0 ,freq_mode 
-:      001592 inquiry_restart:
-0x30af 001593 rtn timeout 
-0x30b0 001594 set0 mark_fhs_already_good ,mark 
-0x30b1 001595 set0 mark_fhs_eir ,mark 
-:      001596 inquiry_rx_restart:
-0x30b2 001597 add clkn_bt ,1 ,bt_clk 
-0x30b3 001598 isolate1 mark_inquiry_trainb ,mark 
-0x30b4 001599 setflag true ,2 ,freq_mode 
-0x30b5 001600 compare 0x00 ,bt_clk ,0x02 
-0x30b6 001601 nbranch inquiry_receive ,true 
-:      001603 inquiry_transmit:
-0x30b7 001604 set0 mark_ext_patch ,mark 
-0x30b8 001605 bpatch patch01_5 ,mem_patch01 
-0x30b9 001606 fetch 1 ,mem_inquiry_transmit 
-0x30ba 001607 increase 1 ,pdata 
-0x30bb 001608 store 1 ,mem_inquiry_transmit 
-0x30bc 001609 call fetch_giac 
-0x30bd 001610 call tx_radio_freq 
-0x30be 001611 call fetch_diac 
-0x30bf 001612 call start_transmitter 
-0x30c0 001613 call start_tx_native 
-0x30c1 001614 call send_access_word 
-0x30c2 001615 call end_of_packet 
-0x30c3 001616 call inquiry_check_train 
-0x30c4 001617 branch inquiry_restart 
-:      001619 inquiry_check_train:
-0x30c5 001620 set0 mark_ext_patch ,mark 
-0x30c6 001621 bpatch patch01_6 ,mem_patch01 
-0x30c7 001622 fetch 1 ,mem_nfreq_index_inq 
-0x30c8 001623 increase -1 ,pdata 
-0x30c9 001624 store 1 ,mem_nfreq_index_inq 
-0x30ca 001625 rtn positive 
-0x30cb 001626 jam 31 ,mem_nfreq_index_inq 
-0x30cc 001627 fetch 1 ,mem_ninqy_index 
-0x30cd 001628 increase -1 ,pdata 
-0x30ce 001629 store 1 ,mem_ninqy_index 
-0x30cf 001630 rtn positive 
-0x30d0 001631 setflip mark_inquiry_trainb ,mark 
-0x30d1 001632 jam param_ninquiry ,mem_ninqy_index 
-0x30d2 001633 rtn 
-:      001635 inquiry_receive:
-0x30d3 001636 set0 mark_ext_patch ,mark 
-0x30d4 001637 bpatch patch01_7 ,mem_patch01 
-0x30d5 001638 call fetch_giac 
-0x30d6 001639 call rx_radio_freq 
-0x30d7 001640 call fetch_diac 
-0x30d8 001641 call start_rx_native 
-0x30d9 001642 call start_receiver 
-0x30da 001643 call wait_access_clkn_rt 
-0x30db 001644 branch inquiry_sync ,sync 
-0x30dc 001645 call inquiry_check_train 
-0x30dd 001646 branch inquiry_rx_restart 
-:      001647 inquiry_sync:
-0x30de 001648 set0 mark_ext_patch ,mark 
-0x30df 001649 bpatch patch02_0 ,mem_patch02 
-0x30e0 001650 call save_rssi 
-0x30e1 001651 call scan_mode_whiten 
-0x30e2 001652 call receive_packet_whitened 
-0x30e3 001653 set0 mark_rxbuf_inuse ,mark 
-0x30e4 001654 rtnmark0 mark_fhs_already_good 
-:      001655 inquiry_receive_rtn:
-0x30e5 001656 set0 mark_ext_patch ,mark 
-0x30e6 001657 bpatch patch02_1 ,mem_patch02 
-0x30e7 001658 fetch 1 ,mem_at_using_flag 
-0x30e8 001659 bbit1 at_flag_inq ,at_inquiry_reply 
-0x30e9 001660 call hci_inquiry_reply 
-:      001661 inquiry_receive_eir_rtn:
-0x30ea 001662 fetch 1 ,mem_inquiry_rcv 
-0x30eb 001663 increase 1 ,pdata 
-0x30ec 001664 store 1 ,mem_inquiry_rcv 
-0x30ed 001665 rtn 
-:      001666 inquiry_receive_eir:
-0x30ee 001667 set0 mark_fhs_already_good ,mark 
-0x30ef 001668 call rf_setup_time_slave_slot_eir 
-0x30f0 001669 call fetch_giac 
-0x30f1 001670 call rx_radio_freq 
-0x30f2 001671 call init_rx_packet_flags 
-0x30f3 001672 call start_rx_native 
-0x30f4 001673 call start_receiver 
-0x30f5 001674 call wait_access_clkn_rt 
-0x30f6 001675 branch inquiry_receive_eir_packet ,sync 
-0x30f7 001676 rtn 
-:      001677 inquiry_receive_eir_packet:
-0x30f8 001678 call scan_mode_whiten 
-0x30f9 001679 call receive_packet_whitened 
-0x30fa 001680 set0 mark_rxbuf_inuse ,mark 
-0x30fb 001681 branch inquiry_receive_rtn ,crc_failed 
-0x30fc 001682 call hci_inquiry_reply_eir 
-0x30fd 001683 branch inquiry_receive_eir_rtn 
-:      001685 rf_setup_time_slave_slot_eir:
-0x30fe 001686 arg param_rf_setup ,timeup 
-:      001687 rf_setup_time_eir:
-0x30ff 001688 until clkn_rt ,meet 
-0x3100 001689 and clkn_bt ,3 ,pdata 
-0x3101 001690 bne 1 ,rf_setup_time_eir 
-0x3102 001691 rtn 
-:      001700 master_page:
-0x3103 001701 set0 mark_ext_patch ,mark 
-0x3104 001702 bpatch patch02_2 ,mem_patch02 
-0x3105 001703 enable master 
-0x3106 001704 enable clknt 
-0x3107 001705 fetch 2 ,mem_page_interval 
-0x3108 001706 branch master_page_no_interval ,blank 
-0x3109 001707 force page_interval_timer ,queue 
-0x310a 001708 call timer_check 
-0x310b 001709 nrtn blank 
-:      001710 master_page_no_interval:
-0x310c 001711 set0 mark_ext_patch ,mark 
-0x310d 001712 bpatch patch02_3 ,mem_patch02 
-0x310e 001713 fetcht 2 ,mem_page_window 
-0x310f 001714 force 40 ,queue 
-0x3110 001715 call sniff_check_window 
-0x3111 001716 branch page_exit ,user 
-0x3112 001717 force page_length_timer ,queue 
-0x3113 001718 call timer_check 
-0x3114 001719 nbranch page_start ,blank 
-0x3115 001720 fetch 1 ,mem_state_map 
-0x3116 001721 bbit1 smap_name_req ,master_npage_timeout 
-0x3117 001722 force hci_error_page_timeout ,temp 
-0x3118 001723 call hci_send_connection_error 
-0x3119 001724 branch master_page_timeout 
-:      001725 master_npage_timeout:
-0x311a 001726 arg mem_tmp_buffer ,contw 
-0x311b 001727 arg 8 ,loopcnt 
-0x311c 001728 call memset0 
-0x311d 001729 force hci_error_page_timeout ,queue 
-0x311e 001730 call hci_send_name 
-:      001731 master_page_timeout:
-0x311f 001732 set0 mark_ext_patch ,mark 
-0x3120 001733 bpatch patch02_4 ,mem_patch02 
-0x3121 001734 jam 0 ,mem_state 
-0x3122 001735 call init_lmp_work 
-0x3123 001736 jam 0 ,memui_reconnect_mode 
-0x3124 001737 jam bt_evt_reconn_page_timeout ,mem_fifo_temp 
-0x3125 001738 call ui_ipc_send_event 
-0x3126 001739 branch page_exit 
-:      001741 page_start:
-0x3127 001742 set0 mark_ext_patch ,mark 
-0x3128 001743 bpatch patch02_5 ,mem_patch02 
-0x3129 001744 force 0 ,timeup 
-0x312a 001745 until clkn_rt ,meet 
-0x312b 001746 fetch 1 ,mem_page_clk 
-0x312c 001747 increase -1 ,pdata 
-0x312d 001748 ixor clkn_bt ,pdata 
-0x312e 001749 compare 0 ,pdata ,3 
-0x312f 001750 nbranch page_start ,true 
-0x3130 001751 deposit am_addr 
-0x3131 001752 store 1 ,mem_fhs_am_addr 
-0x3132 001753 force 0 ,n_tx_slot 
-0x3133 001754 force 0 ,freq_mode 
-:      001756 page_restart:
-0x3134 001757 set0 mark_ext_patch ,mark 
-0x3135 001758 bpatch patch02_6 ,mem_patch02 
-0x3136 001759 branch page_exit ,timeout 
-0x3137 001760 call fetch_page_bt_adr 
-0x3138 001761 arg param_rf_setup ,timeup 
-0x3139 001762 until clkn_rt ,meet 
-:      001763 page_rx_restart:
-0x313a 001764 set0 mark_ext_patch ,mark 
-0x313b 001765 bpatch patch02_7 ,mem_patch02 
-0x313c 001766 fetch 4 ,mem_page_clk 
-0x313d 001767 iforce bt_clk 
-0x313e 001768 increase 1 ,pdata 
-0x313f 001769 store 4 ,mem_page_clk 
-0x3140 001770 isolate1 mark_page_trainb ,mark 
-0x3141 001771 setflag true ,2 ,freq_mode 
-0x3142 001772 compare 0x00 ,bt_clk ,0x02 
-0x3143 001773 nbranch page_receive ,true 
-0x3144 001774 fetch 1 ,mem_page_transmit 
-0x3145 001775 increase 1 ,pdata 
-0x3146 001776 store 1 ,mem_page_transmit 
-0x3147 001777 call tx_radio_freq 
-0x3148 001778 call start_transmitter 
-0x3149 001779 call start_tx_native 
-0x314a 001780 call send_access_word 
-0x314b 001781 call end_of_packet 
-0x314c 001782 call page_check_train 
-0x314d 001783 branch page_restart 
-:      001784 master_dispatch_exit:
-:      001785 page_exit:
-0x314e 001786 set0 mark_ext_patch ,mark 
-0x314f 001787 bpatch patch03_0 ,mem_patch03 
-0x3150 001788 disable master 
-0x3151 001789 fetch 2 ,mem_page_interval 
-0x3152 001790 rtn blank 
-0x3153 001791 force page_interval_timer ,queue 
-0x3154 001792 branch timer_init 
-:      001794 page_check_train:
-0x3155 001795 set0 mark_ext_patch ,mark 
-0x3156 001796 bpatch patch03_1 ,mem_patch03 
-0x3157 001797 fetch 1 ,mem_nfreq_index_page 
-0x3158 001798 increase -1 ,pdata 
-0x3159 001799 store 1 ,mem_nfreq_index_page 
-0x315a 001800 rtn positive 
-0x315b 001801 jam 31 ,mem_nfreq_index_page 
-0x315c 001802 fetch 1 ,mem_npage_index 
-0x315d 001803 increase -1 ,pdata 
-0x315e 001804 store 1 ,mem_npage_index 
-0x315f 001805 rtn positive 
-0x3160 001806 setflip mark_page_trainb ,mark 
-0x3161 001807 fetch 1 ,mem_npage 
-0x3162 001808 store 1 ,mem_npage_index 
-0x3163 001809 rtn 
-:      001811 page_receive:
-0x3164 001812 set0 mark_ext_patch ,mark 
-0x3165 001813 bpatch patch03_2 ,mem_patch03 
-0x3166 001814 call rx_radio_freq 
-0x3167 001815 call start_rx_native 
-0x3168 001816 call start_receiver 
-0x3169 001817 call wait_access_clkn_rt 
-0x316a 001818 branch page_sync ,sync 
-0x316b 001819 call page_check_train 
-0x316c 001820 branch page_rx_restart 
-:      001821 page_sync:
-0x316d 001822 call end_of_packet 
-0x316e 001823 fetch 1 ,mem_page_rcv 
-0x316f 001824 increase 1 ,pdata 
-0x3170 001825 store 1 ,mem_page_rcv 
-0x3171 001826 force 0 ,stop_watch 
-0x3172 001827 fetch 4 ,mem_page_clk 
-:      001828 page_send_fhs:
-0x3173 001829 set0 mark_ext_patch ,mark 
-0x3174 001830 bpatch patch03_3 ,mem_patch03 
-0x3175 001831 call rf_setup_time_master_slot 
-0x3176 001832 call fetch_page_bt_adr 
-0x3177 001833 increase 1 ,n_tx_slot 
-:      001834 page_send_fhs_continue:
-0x3178 001835 and_into 0x1fd ,bt_clk 
-0x3179 001836 and_into 0x1fc ,freq_mode 
-0x317a 001837 call tx_radio_freq 
-0x317b 001838 call start_transmitter 
-0x317c 001839 call start_tx_native 
-0x317d 001840 call send_access_word 
-0x317e 001841 deposit clkn_bt 
-0x317f 001842 store 4 ,mem_clkn_bt 
-0x3180 001843 force 0 ,am_addr 
-0x3181 001844 force type_fhs ,type 
-0x3182 001845 call scan_mode_whiten 
-0x3183 001846 call transmit_packet_whitened 
-:      001847 page_wait_fhs_reply:
-0x3184 001848 set0 mark_ext_patch ,mark 
-0x3185 001849 bpatch patch03_4 ,mem_patch03 
-0x3186 001850 call rf_setup_time_slave_slot 
-0x3187 001851 or_into 0x02 ,bt_clk 
-0x3188 001852 and_into 0x1fc ,freq_mode 
-0x3189 001853 call rx_radio_freq 
-0x318a 001854 call start_rx_native 
-0x318b 001855 call start_receiver 
-0x318c 001856 call wait_access_clkn_rt 
-0x318d 001857 call end_of_packet ,sync 
-0x318e 001858 branch page_wait_fhs_reply_ok ,sync 
-0x318f 001859 fetch 1 ,mem_fhs_wait_counter 
-0x3190 001860 branch page_restart ,blank 
-0x3191 001861 increase -1 ,pdata 
-0x3192 001862 store 1 ,mem_fhs_wait_counter 
-0x3193 001863 branch page_send_fhs 
-:      001865 page_wait_fhs_reply_ok:
-0x3194 001866 set0 mark_ext_patch ,mark 
-0x3195 001867 bpatch patch03_5 ,mem_patch03 
-0x3196 001868 fetch 1 ,mem_page_rcv_fhs 
-0x3197 001869 increase 1 ,pdata 
-0x3198 001870 store 1 ,mem_page_rcv_fhs 
-0x3199 001871 call prepare_newconn 
-:      001872 master_newconn_loop:
-0x319a 001873 call master_newconn_once 
-0x319b 001874 branch newconn_poll_responded ,sync 
-0x319c 001875 call new_conn_timeout 
-0x319d 001876 nbranch master_newconn_loop ,blank 
-0x319e 001877 branch page_restart 
-:      001879 newconn_poll_responded:
-0x319f 001880 set0 mark_ext_patch ,mark 
-0x31a0 001881 bpatch patch03_6 ,mem_patch03 
-0x31a1 001882 fetch 1 ,mem_state 
-0x31a2 001883 set0 state_inpage ,pdata 
-0x31a3 001884 store 1 ,mem_state 
-0x31a4 001885 call newconn_init 
-0x31a5 001886 disable master 
-0x31a6 001887 rtn 
-:      001890 master_dispatch:
-0x31a7 001891 set0 mark_ext_patch ,mark 
-0x31a8 001892 bpatch patch03_7 ,mem_patch03 
-0x31a9 001893 enable master 
-0x31aa 001894 enable clknt 
-0x31ab 001895 call role_switch_master 
-0x31ac 001896 rtn user 
-0x31ad 001897 call check_bt_disabled 
-0x31ae 001898 call rf_setup_time_master_slot 
-0x31af 001899 add clkn_bt ,1 ,bt_clk 
-0x31b0 001900 call fetch_self_bt_adr 
-0x31b1 001901 force 0x03 ,freq_mode 
-0x31b2 001902 call load_esco 
-0x31b3 001903 call get_sco_data 
-0x31b4 001904 call scheduler_tx_l2cap_pkt 
-0x31b5 001905 call prepare_tx 
-0x31b6 001906 call tx_radio_freq 
-0x31b7 001907 call start_transmitter 
-0x31b8 001908 call start_tx_native 
-0x31b9 001909 call send_access_word 
-0x31ba 001910 call transmit_packet 
-:      001911 master_loop:
-0x31bb 001912 set0 mark_ext_patch ,mark 
-0x31bc 001913 bpatch patch04_0 ,mem_patch04 
-0x31bd 001914 call parse_lmp 
-0x31be 001915 call process_cmd 
-0x31bf 001916 call hci_send_num_complete_packets 
-0x31c0 001917 call master_conn_recv_packet 
-0x31c1 001918 nbranch master_notmatch ,match 
-0x31c2 001919 call supervision_flush 
-0x31c3 001920 call parse_l2cap 
-0x31c4 001921 fetch 1 ,mem_master_rcvcnt 
-0x31c5 001922 increase 1 ,pdata 
-0x31c6 001923 store 1 ,mem_master_rcvcnt 
-:      001924 master_notmatch:
-0x31c7 001925 set0 mark_ext_patch ,mark 
-0x31c8 001926 bpatch patch04_1 ,mem_patch04 
-0x31c9 001927 call scheduler_process 
-0x31ca 001928 call check_master_disconnect 
-0x31cb 001929 nrtn master 
-0x31cc 001930 call check_attempt 
-0x31cd 001931 nbranch master_attempt ,blank 
-:      001932 master_exit:
-0x31ce 001933 call process_sco_data 
-0x31cf 001934 call restore_esco 
-0x31d0 001935 disable master 
-0x31d1 001936 rtn 
-:      001938 master_attempt:
-0x31d2 001939 call prepare_tx 
-0x31d3 001940 call master_conn_send_packet 
-0x31d4 001941 branch master_loop 
-:      001944 check_master_disconnect:
-0x31d5 001945 branch check_master_match ,match 
-0x31d6 001946 call supervision_update 
-0x31d7 001947 branch master_disconnect ,positive 
-:      001948 check_master_match:
-0x31d8 001949 call check_disconnect_timeout 
-0x31d9 001950 nbranch master_disconnect ,user 
-0x31da 001951 fetch 1 ,mem_state_map 
-0x31db 001952 rtnbit0 smap_name_req 
-0x31dc 001953 rtnbit1 smap_name_res 
-0x31dd 001954 fetch 1 ,mem_op 
-0x31de 001955 rtnbit1 op_disconn 
-0x31df 001956 call conn_timer_expired 
-0x31e0 001957 nrtn blank 
-0x31e1 001958 fetch 1 ,mem_nameres_cnt 
-0x31e2 001959 increase -1 ,pdata 
-0x31e3 001960 store 1 ,mem_nameres_cnt 
-0x31e4 001961 nrtn blank 
-0x31e5 001962 branch lmp_disconnect 
-:      001964 master_disconnect:
-0x31e6 001965 set0 mark_ext_patch ,mark 
-0x31e7 001966 bpatch patch04_2 ,mem_patch04 
-0x31e8 001967 call quit_connection 
-0x31e9 001968 disable master 
-0x31ea 001969 fetch 1 ,mem_state_map 
-0x31eb 001970 bbit1 smap_name_req ,master_name_disconnect 
-0x31ec 001971 fetch 1 ,mem_state 
-0x31ed 001972 bbit0 state_conn_comp ,master_disconnect_quiet 
-0x31ee 001973 fetcht 1 ,mem_conn_handle 
-0x31ef 001974 branch hci_send_disconn_complete 
-:      001975 master_disconnect_quiet:
-0x31f0 001976 force hci_error_connection_timeout ,temp 
-0x31f1 001977 branch hci_send_connection_error 
-:      001978 master_name_disconnect:
-0x31f2 001979 force hci_success ,queue 
-0x31f3 001980 fetch 1 ,mem_state_map 
-0x31f4 001981 bbit1 smap_name_res ,hci_send_name 
-:      001982 master_name_error:
-0x31f5 001983 force hci_error_page_timeout ,queue 
-0x31f6 001984 arg mem_tmp_buffer ,contw 
-0x31f7 001985 arg 8 ,loopcnt 
-0x31f8 001986 call memset0 
-0x31f9 001987 branch hci_send_name 
-:      001989 disconnect_stop_sco:
-0x31fa 001990 set0 mark_ext_patch ,mark 
-0x31fb 001991 bpatch patch04_3 ,mem_patch04 
-0x31fc 001992 fetch 1 ,mem_state 
-0x31fd 001993 rtnbit0 state_insco 
-0x31fe 001994 fetcht 1 ,mem_conn_handle 
-0x31ff 001995 fetch 1 ,mem_sco_asso_handle 
-0x3200 001996 isub temp ,null 
-0x3201 001997 nrtn zero 
-0x3202 001998 call stop_esco 
-0x3203 001999 branch restore_esco_check_no_mark 
-:      002001 check_disconnect_timeout:
-0x3204 002002 set0 mark_ext_patch ,mark 
-0x3205 002003 bpatch patch04_4 ,mem_patch04 
-0x3206 002004 enable user 
-0x3207 002005 fetch 1 ,mem_op 
-0x3208 002006 rtnbit0 op_disconn 
-0x3209 002007 call conn_timer_expired 
-0x320a 002008 nrtn blank 
-:      002009 disable_usr:
-0x320b 002010 disable user 
-0x320c 002011 rtn 
-:      002013 conn_timer_expired:
-0x320d 002014 fetch 1 ,mem_conn_timer 
-0x320e 002015 increase -1 ,pdata 
-0x320f 002016 store 1 ,mem_conn_timer 
-0x3210 002017 rtn 
-:      002019 linkkey_ready:
-0x3211 002020 set0 mark_ext_patch ,mark 
-0x3212 002021 bpatch patch04_5 ,mem_patch04 
-0x3213 002022 fetch 1 ,mem_state 
-0x3214 002023 bbit1 state_linkkey ,linkkey_set 
-0x3215 002024 fetch 1 ,mem_device_option 
-0x3216 002025 beq dvc_op_hci ,linkkey_send_hci 
-0x3217 002026 fetch 1 ,mem_pairing_auth 
-0x3218 002027 branch linkkey_set ,blank 
-0x3219 002028 jam defalt_pairing_auth ,mem_pairing_auth 
-0x321a 002029 jam bt_evt_linkkey_generate ,mem_fifo_temp 
-0x321b 002030 call ui_ipc_send_event 
-0x321c 002031 branch linkkey_set 
-:      002032 linkkey_send_hci:
-0x321d 002033 call check_localsm 
-0x321e 002034 ncall hci_send_linkkey_notification ,true 
-:      002035 linkkey_set:
-0x321f 002036 set0 mark_ext_patch ,mark 
-0x3220 002037 bpatch patch04_6 ,mem_patch04 
-0x3221 002038 call context_traverse_linkkey 
-0x3222 002039 fetch 1 ,mem_state 
-0x3223 002040 set1 state_linkkey ,pdata 
-0x3224 002041 store 1 ,mem_state 
-0x3225 002042 jam 1 ,mem_link_key_exists 
-0x3226 002043 fetch 1 ,mem_conn_sm 
-0x3227 002044 bne conn_sm_pairing ,linkkey_set_continue 
-:      002045 linkkey_set_continue:
-0x3228 002046 rtn 
-:      002048 generate_linkkey_continue:
-0x3229 002049 jam pairing_auth ,mem_pairing_auth 
-:      002050 clear_linkstate:
-0x322a 002051 fetch 1 ,mem_state 
-0x322b 002052 set0 state_linkkey ,pdata 
-0x322c 002053 store 1 ,mem_state 
-0x322d 002054 rtn 
-:      002058 role_switch_check:
-0x322e 002059 set0 mark_ext_patch ,mark 
-0x322f 002060 bpatch patch04_7 ,mem_patch04 
-0x3230 002061 disable user 
-0x3231 002062 fetch 1 ,mem_state 
-0x3232 002063 rtnbit0 state_insniff 
-0x3233 002064 fetch 2 ,mem_tsniff 
-0x3234 002065 nrtn blank 
-0x3235 002066 fetch 4 ,mem_sniff_anchor 
-0x3236 002067 branch role_switch_clkn ,clknt 
-0x3237 002068 isub clke_bt ,pdata 
-0x3238 002069 branch role_switch_clke 
-:      002070 role_switch_clkn:
-0x3239 002071 isub clkn_bt ,pdata 
-:      002072 role_switch_clke:
-0x323a 002073 sub pdata ,4 ,null 
-0x323b 002074 nrtn positive 
-0x323c 002075 fetch 1 ,mem_state 
-0x323d 002076 set0 state_insniff ,pdata 
-0x323e 002077 store 1 ,mem_state 
-0x323f 002078 enable user 
-0x3240 002079 rtn 
-:      002082 role_switch_prepare:
-0x3241 002083 copy pdata ,temp 
-0x3242 002084 set0 mark_ext_patch ,mark 
-0x3243 002085 bpatch patch05_0 ,mem_patch05 
-0x3244 002086 store 4 ,mem_sniff_anchor 
-:      002087 role_switch_prepare0:
-0x3245 002088 jam switch_flag_accept ,mem_switch_flag 
-0x3246 002089 fetch 1 ,mem_state 
-0x3247 002090 set1 state_insniff ,pdata 
-0x3248 002091 store 1 ,mem_state 
-0x3249 002092 force 0 ,pdata 
-0x324a 002093 store 2 ,mem_tsniff 
-0x324b 002094 jam 10 ,mem_current_sniff_attempt 
-0x324c 002095 jam 1 ,mem_sniff_attempt 
-0x324d 002096 rtn 
-:      002099 role_switch_master:
-0x324e 002100 set0 mark_ext_patch ,mark 
-0x324f 002101 bpatch patch05_1 ,mem_patch05 
-0x3250 002102 call role_switch_check 
-0x3251 002103 nrtn user 
-0x3252 002104 disable user 
-0x3253 002105 jam param_newconnto ,mem_newconnto_counter 
-0x3254 002106 set0 mark_fhs_already_good ,mark 
-:      002107 roles_waitfhs_loop:
-0x3255 002108 call rf_setup_time_master_slot 
-0x3256 002109 call master_recv_packet 
-0x3257 002110 bmark1 mark_fhs_already_good ,roles_replyto_fhs 
-0x3258 002111 call new_conn_timeout 
-0x3259 002112 nbranch roles_waitfhs_loop ,blank 
-:      002113 role_switch_fail_master:
-0x325a 002114 set0 mark_ext_patch ,mark 
-0x325b 002115 bpatch patch05_2 ,mem_patch05 
-0x325c 002116 disable user 
-0x325d 002117 deposit clkn_bt 
-0x325e 002118 store 4 ,mem_next_btclk 
-0x325f 002119 enable clknt 
-0x3260 002120 enable master 
-0x3261 002121 jam bt_evt_switch_fail_master ,mem_fifo_temp 
-0x3262 002122 branch ui_ipc_send_event 
-:      002124 roles_replyto_fhs:
-0x3263 002125 set0 mark_ext_patch ,mark 
-0x3264 002126 bpatch patch05_3 ,mem_patch05 
-0x3265 002127 call rf_setup_time_slave_slot 
-0x3266 002128 call master_send_packet 
-0x3267 002129 disable clknt 
-0x3268 002130 disable master 
-0x3269 002131 call apply_switch_clke 
-0x326a 002132 call prepare_newconn 
-:      002133 roles_newconns_loop:
-0x326b 002134 set0 mark_ext_patch ,mark 
-0x326c 002135 bpatch patch05_4 ,mem_patch05 
-0x326d 002136 call slave_newconn_once 
-0x326e 002137 branch roles_newconns_responded ,match 
-0x326f 002138 call new_conn_timeout 
-0x3270 002139 nbranch roles_newconns_loop ,blank 
-0x3271 002140 branch role_switch_fail_master 
-:      002141 roles_newconns_responded:
-0x3272 002142 force 1 ,temp 
-0x3273 002143 call hci_send_role_change 
-0x3274 002144 fetch 1 ,mem_mode 
-0x3275 002145 set0 mode_master ,pdata 
-0x3276 002146 store 1 ,mem_mode 
-0x3277 002147 call supervision_flush 
-0x3278 002148 call calc_clke_offset 
-0x3279 002149 enable user 
-0x327a 002150 jam bt_evt_switch_success_master ,mem_fifo_temp 
-0x327b 002151 branch ui_ipc_send_event 
-:      002154 load_esco:
-0x327c 002155 set0 mark_ext_patch ,mark 
-0x327d 002156 bpatch patch05_5 ,mem_patch05 
-0x327e 002157 rtnmark0 mark_esco 
-0x327f 002158 fetch 1 ,mem_state 
-0x3280 002159 rtnbit0 state_insco 
-:      002160 load_esco_do:
-0x3281 002161 call init_esco_ibuff 
-0x3282 002162 fetch 1 ,mem_esco_arq 
-0x3283 002163 fetcht 1 ,mem_arq 
-0x3284 002164 storet 1 ,mem_esco_saved_arq 
-0x3285 002165 store 1 ,mem_arq 
-0x3286 002166 deposit am_addr 
-0x3287 002167 store 1 ,mem_saved_amaddr 
-0x3288 002168 fetch 1 ,mem_esco_addr 
-0x3289 002169 iforce am_addr 
-0x328a 002170 set0 mark_esco_rxok ,mark 
-0x328b 002171 fetch 1 ,mem_last_type 
-0x328c 002172 store 1 ,mem_last_type_saved 
-0x328d 002173 fetch 1 ,mem_last_type_esco 
-0x328e 002174 store 1 ,mem_last_type 
-0x328f 002175 rtn 
-:      002177 restore_esco:
-0x3290 002178 set0 mark_ext_patch ,mark 
-0x3291 002179 bpatch patch05_6 ,mem_patch05 
-0x3292 002180 rtnmark0 mark_esco 
-:      002181 restore_esco_check_no_mark:
-0x3293 002182 call check_esco_amaddr 
-0x3294 002183 nrtn true 
-:      002184 restore_esco_do:
-0x3295 002185 call clear_got_tx 
-0x3296 002186 fetch 1 ,mem_esco_saved_arq 
-0x3297 002187 fetcht 1 ,mem_arq 
-0x3298 002188 store 1 ,mem_arq 
-0x3299 002189 storet 1 ,mem_esco_arq 
-0x329a 002190 fetch 1 ,mem_saved_amaddr 
-0x329b 002191 iforce am_addr 
-0x329c 002192 fetch 1 ,mem_last_type 
-0x329d 002193 store 1 ,mem_last_type_esco 
-0x329e 002194 fetch 1 ,mem_last_type_saved 
-0x329f 002195 store 1 ,mem_last_type 
-0x32a0 002196 setarg 0xffff 
-0x32a1 002197 store 2 ,mem_retransmission_cnt 
-0x32a2 002198 rtn 
-:      002203 context_load:
-0x32a3 002204 set0 mark_ext_patch ,mark 
-0x32a4 002205 bpatch patch05_7 ,mem_patch05 
-0x32a5 002206 set1 mark_context ,mark 
-0x32a6 002207 deposit rega 
-0x32a7 002208 store 2 ,mem_context_ptr 
-0x32a8 002209 force context_size ,loopcnt 
-0x32a9 002210 arg mem_le_state ,contw 
-0x32aa 002211 add rega ,coffset_mode ,contr 
-0x32ab 002212 ifetch 1 ,contr 
-0x32ac 002213 copy rega ,contr 
-0x32ad 002214 bbit1 mode_le ,memcpy 
-0x32ae 002215 arg mem_state ,contw 
-0x32af 002216 call memcpy 
-0x32b0 002217 disable attempt 
-0x32b1 002218 fetch 1 ,mem_amaddr 
-0x32b2 002219 iforce am_addr 
-0x32b3 002220 jam 1 ,mem_current_sniff_attempt 
-0x32b4 002221 branch context_load_master ,master 
-0x32b5 002222 jam 1 ,mem_current_sniff_attempt 
-:      002223 context_load_master:
-0x32b6 002224 fetch 1 ,mem_state 
-0x32b7 002225 rtnbit0 state_insniff 
-0x32b8 002226 fetch 1 ,mem_sniff_attempt 
-0x32b9 002227 store 1 ,mem_current_sniff_attempt 
-0x32ba 002228 fetch 1 ,mem_sniff_timeout 
-0x32bb 002229 store 1 ,mem_current_sniff_timeout 
-0x32bc 002230 rtn 
-:      002232 context_save:
-0x32bd 002233 set0 mark_ext_patch ,mark 
-0x32be 002234 bpatch patch06_0 ,mem_patch06 
-0x32bf 002235 fetch 2 ,mem_context_ptr 
-0x32c0 002236 iforce contw 
-0x32c1 002237 force context_size ,loopcnt 
-0x32c2 002238 arg mem_le_state ,contr 
-0x32c3 002239 branch memcpy ,le 
-0x32c4 002240 arg mem_state ,contr 
-0x32c5 002241 branch memcpy 
-:      002245 context_get_next:
-0x32c6 002246 fetcht 1 ,mem_current_context 
-0x32c7 002247 arg context_num ,loopcnt 
-:      002248 context_get_next_loop:
-0x32c8 002249 increase 1 ,temp 
-0x32c9 002250 compare context_num ,temp ,0xff 
-0x32ca 002251 nbranch context_get_next_cont ,true 
-0x32cb 002252 arg 0 ,temp 
-:      002253 context_get_next_cont:
-0x32cc 002254 storet 1 ,mem_current_context 
-0x32cd 002255 mul32 temp ,context_size ,pdata 
-0x32ce 002256 arg mem_context ,rega 
-0x32cf 002257 iadd rega ,rega 
-0x32d0 002258 ifetch 1 ,rega 
-0x32d1 002259 bbit1 state_insniff ,context_get_next_sniff 
-0x32d2 002260 rtnbit1 state_inconn 
-0x32d3 002261 rtnbit1 state_inpage 
-:      002262 context_get_next_sniff:
-0x32d4 002263 loop context_get_next_loop 
-0x32d5 002264 rtn 
-:      002266 context_new:
-0x32d6 002267 set0 mark_ext_patch ,mark 
-0x32d7 002268 bpatch patch06_1 ,mem_patch06 
-0x32d8 002269 arg context_search_empty ,regc 
-0x32d9 002270 call context_search 
-0x32da 002271 nrtn zero 
-0x32db 002272 deposit rega 
-0x32dc 002273 store 2 ,mem_context_ptr 
-0x32dd 002274 force 0 ,null 
-0x32de 002275 rtn 
-:      002279 context_check_all_wack:
-0x32df 002280 call check_esco_amaddr 
-0x32e0 002281 branch context_check_esco_wack ,true 
-0x32e1 002282 fetch 2 ,mem_context_ptr 
-0x32e2 002283 add pdata ,coffset_arq ,contw 
-0x32e3 002284 fetch 1 ,mem_arq 
-0x32e4 002285 istore 1 ,contw 
-0x32e5 002286 arg context_check_a_wack ,regc 
-0x32e6 002287 branch context_search 
-:      002289 context_check_esco_wack:
-0x32e7 002290 fetch 1 ,mem_arq 
-0x32e8 002291 isolate1 wack ,pdata 
-0x32e9 002292 branch context_esco_wack ,true 
-0x32ea 002293 force 1 ,null 
-0x32eb 002294 rtn 
-:      002295 context_esco_wack:
-0x32ec 002296 force 0 ,null 
-0x32ed 002297 rtn 
-:      002300 context_check_idle:
-0x32ee 002301 arg context_check_inconn ,regc 
-0x32ef 002302 branch context_search 
-:      002304 context_traverse_linkkey:
-0x32f0 002305 fetcht 2 ,mem_context_ptr 
-0x32f1 002306 arg context_traverse_clearkey ,regc 
-0x32f2 002307 branch context_search 
-:      002309 context_traverse_max_slot:
-0x32f3 002310 fetcht 2 ,mem_context_ptr 
-0x32f4 002311 arg context_traverse_mslot ,regc 
-0x32f5 002312 branch context_search 
-:      002315 context_search_conn_handle:
-0x32f6 002316 fetcht 1 ,mem_hci_conn_handle 
-:      002317 context_search_conn_handle2:
-0x32f7 002318 arg context_search_handle ,regc 
-0x32f8 002319 branch context_search 
-:      002321 context_search_plap:
-0x32f9 002322 set0 mark_ext_patch ,mark 
-0x32fa 002323 bpatch patch06_2 ,mem_patch06 
-0x32fb 002324 fetcht 6 ,mem_hci_plap 
-:      002325 context_search_plap2:
-0x32fc 002326 arg context_search_lap ,regc 
-0x32fd 002327 branch context_search 
-:      002329 context_search_insniff:
-0x32fe 002330 arg context_search_sniff ,regc 
-0x32ff 002331 branch context_search 
-:      002333 context_search_sniff_window:
-0x3300 002334 arg context_search_window ,regc 
-:      002335 context_search:
-0x3301 002336 set0 mark_ext_patch ,mark 
-0x3302 002337 bpatch patch06_3 ,mem_patch06 
-0x3303 002338 arg mem_context ,rega 
-0x3304 002339 force context_num ,loopcnt 
-:      002340 context_search_loop:
-0x3305 002341 ifetch 1 ,rega 
-0x3306 002342 copy regc ,pc 
-:      002343 context_search_next:
-0x3307 002344 increase context_size ,rega 
-0x3308 002345 loop context_search_loop 
-0x3309 002346 force 1 ,null 
-0x330a 002347 rtn 
-:      002349 context_search_empty:
-0x330b 002350 bbit1 state_inconn ,context_search_next 
-0x330c 002351 bbit1 state_inpage ,context_search_next 
-0x330d 002352 force 0 ,null 
-0x330e 002353 rtn 
-:      002355 context_search_lap:
-0x330f 002356 bbit1 state_inpage ,context_search_lap_cont 
-0x3310 002357 bbit0 state_inconn ,context_search_next 
-:      002358 context_search_lap_cont:
-0x3311 002359 add rega ,coffset_plap ,contr 
-0x3312 002360 ifetch 6 ,contr 
-0x3313 002361 isub temp ,null 
-0x3314 002362 rtn zero 
-0x3315 002363 branch context_search_next 
-:      002365 context_search_handle:
-0x3316 002366 bbit0 state_inconn ,context_search_next 
-0x3317 002367 add rega ,coffset_conn_handle ,contr 
-0x3318 002368 ifetch 1 ,contr 
-0x3319 002369 isub temp ,null 
-0x331a 002370 rtn zero 
-0x331b 002371 branch context_search_next 
-:      002373 context_search_sniff:
-0x331c 002374 bbit0 state_insniff ,context_search_next 
-:      002375 context_search_sniff_loop:
-0x331d 002376 call context_get_anchor 
-0x331e 002377 bbit1 27 ,context_search_sniff_cont 
-0x331f 002378 isolate0 27 ,temp 
-0x3320 002379 branch context_search_sniff_cont ,true 
-0x3321 002380 set1 28 ,pdata 
-:      002381 context_search_sniff_cont:
-0x3322 002382 isub temp ,pdata 
-0x3323 002383 increase 1 ,pdata 
-0x3324 002384 branch context_search_sniff_miss ,positive 
-0x3325 002385 increase 5 ,pdata 
-0x3326 002386 nbranch context_search_next ,positive 
-:      002387 context_search_meet:
-0x3327 002388 copy temp ,bt_clk 
-0x3328 002389 call context_next_anchor 
-0x3329 002390 force 0 ,null 
-0x332a 002391 rtn 
-:      002393 context_search_sniff_miss:
-0x332b 002394 iforce regb 
-0x332c 002395 add rega ,coffset_tsniff ,contr 
-0x332d 002396 ifetch 2 ,contr 
-0x332e 002397 branch context_search_meet ,blank 
-0x332f 002398 call context_next_anchor 
-0x3330 002399 branch context_search_sniff_loop 
-:      002401 context_check_inconn:
-0x3331 002402 bbit0 state_inconn ,context_search_next 
-0x3332 002403 force 0 ,null 
-0x3333 002404 rtn 
-:      002406 context_check_a_wack:
-0x3334 002407 bbit0 state_inconn ,context_search_next 
-0x3335 002408 add rega ,coffset_mode ,contr 
-0x3336 002409 ifetch 1 ,contr 
-0x3337 002410 bbit1 mode_le ,context_search_next 
-0x3338 002411 add rega ,coffset_arq ,contr 
-0x3339 002412 ifetch 1 ,contr 
-0x333a 002413 bbit0 wack ,context_search_next 
-0x333b 002414 force 0 ,null 
-0x333c 002415 rtn 
-:      002417 context_get_anchor:
-0x333d 002418 add rega ,coffset_mode ,contr 
-0x333e 002419 ifetcht 1 ,contr 
-0x333f 002420 deposit clkn_bt 
-0x3340 002421 isolate1 mode_master ,temp 
-0x3341 002422 add rega ,coffset_sniff_anchor ,contr 
-0x3342 002423 ifetcht 4 ,contr 
-0x3343 002424 rtn true 
-0x3344 002425 add rega ,coffset_clk_offset ,contr 
-0x3345 002426 ifetch 6 ,contr 
-0x3346 002427 call calc_clke2 
-0x3347 002428 deposit clke_bt 
-0x3348 002429 rtn 
-:      002431 context_next_anchor:
-0x3349 002432 add rega ,coffset_tsniff ,contr 
-0x334a 002433 add rega ,coffset_sniff_anchor ,contw 
-0x334b 002434 ifetch 2 ,contr 
-0x334c 002435 iadd temp ,timeup 
-0x334d 002436 deposit timeup 
-0x334e 002437 istore 4 ,contw 
-0x334f 002438 branch le_context_nexthop 
-:      002441 context_search_window:
-0x3350 002442 bbit0 state_insniff ,context_search_next 
-0x3351 002443 call context_get_anchor 
-0x3352 002444 iadd stop_watch ,pdata 
-0x3353 002445 iadd stop_watch ,pdata 
-0x3354 002446 iadd queue ,pdata 
-0x3355 002447 isub temp ,null 
-0x3356 002448 nbranch context_search_next ,positive 
-0x3357 002449 force 0 ,null 
-0x3358 002450 rtn 
-:      002452 context_traverse_mslot:
-0x3359 002453 bbit0 state_inconn ,context_search_next 
-0x335a 002454 deposit temp 
-0x335b 002455 isub rega ,null 
-0x335c 002456 branch context_search_next ,null 
-0x335d 002457 add rega ,coffset_mode ,contr 
-0x335e 002458 ifetch 1 ,contr 
-0x335f 002459 bbit1 mode_le ,context_search_next 
-0x3360 002460 add rega ,coffset_lmp_to_send ,contw 
-0x3361 002461 ifetch 1 ,contw 
-0x3362 002462 nbranch context_search_next ,blank 
-0x3363 002463 force lmp_max_slot ,pdata 
-0x3364 002464 istore 1 ,contw 
-0x3365 002465 branch context_search_next 
-:      002467 context_traverse_clearkey:
-0x3366 002468 bbit0 state_inconn ,context_search_next 
-0x3367 002469 deposit temp 
-0x3368 002470 isub rega ,null 
-0x3369 002471 branch context_search_next ,null 
-0x336a 002472 add rega ,coffset_mode ,contr 
-0x336b 002473 ifetch 1 ,contr 
-0x336c 002474 bbit1 mode_le ,context_search_next 
-0x336d 002475 ifetch 1 ,rega 
-0x336e 002476 set0 state_linkkey ,pdata 
-0x336f 002477 istore 1 ,rega 
-0x3370 002478 branch context_search_next 
-:      002481 master_conn_send_packet:
-0x3371 002482 set0 mark_ext_patch ,mark 
-0x3372 002483 bpatch patch06_4 ,mem_patch06 
-0x3373 002484 call rf_setup_time_master_slot 
-:      002485 master_send_packet:
-0x3374 002486 add clkn_bt ,1 ,bt_clk 
-0x3375 002487 call fetch_self_bt_adr 
-0x3376 002488 force 0x03 ,freq_mode 
-0x3377 002489 call tx_radio_freq 
-0x3378 002490 call start_transmitter 
-0x3379 002491 call start_tx_native 
-0x337a 002492 call send_access_word 
-0x337b 002493 branch transmit_packet 
-:      002495 master_conn_recv_packet:
-0x337c 002496 set0 mark_ext_patch ,mark 
-0x337d 002497 bpatch patch06_5 ,mem_patch06 
-0x337e 002498 call rf_setup_time_slave_slot 
-:      002499 master_recv_packet:
-0x337f 002500 add clkn_bt ,1 ,bt_clk 
-0x3380 002501 call fetch_self_bt_adr 
-0x3381 002502 force 0x03 ,freq_mode 
-0x3382 002503 call rx_radio_freq 
-0x3383 002504 call init_rx_packet_flags 
-0x3384 002505 call prep_crypt 
-0x3385 002506 call start_rx_native 
-0x3386 002507 call start_receiver 
-:      002508 master_rx_conn_finish_packet:
-0x3387 002509 call wait_access_clkn_rt 
-0x3388 002510 nrtn sync 
-0x3389 002511 call save_rssi 
-0x338a 002512 branch receive_packet 
-:      002516 master_newconn_once:
-0x338b 002517 set0 mark_ext_patch ,mark 
-0x338c 002518 bpatch patch06_6 ,mem_patch06 
-0x338d 002519 fetch 1 ,mem_fhs_am_addr 
-0x338e 002520 iforce am_addr 
-0x338f 002521 force type_poll ,type 
-0x3390 002522 call master_conn_send_packet 
-0x3391 002523 branch master_conn_recv_packet 
-:      002534 inquiry_scan_dispatch:
-0x3392 002535 fetch 1 ,mem_scan_mode 
-0x3393 002536 rtnbit0 inq_scan_mode 
-0x3394 002537 force iscan_interval_timer ,queue 
-0x3395 002538 call timer_check 
-0x3396 002539 nrtn blank 
-0x3397 002540 fetcht 2 ,mem_iscan_window 
-0x3398 002541 force 4 ,queue 
-0x3399 002542 call sniff_check_window 
-0x339a 002543 rtn user 
-0x339b 002544 call inquiry_scan_start 
-0x339c 002545 force iscan_interval_timer ,queue 
-0x339d 002546 fetch 2 ,mem_iscan_interval 
-0x339e 002547 nbranch timer_init ,sync 
-0x339f 002548 random pdata 
-0x33a0 002549 iand mask3ff ,pdata 
-0x33a1 002550 branch timer_init 
-:      002553 inquiry_scan_start:
-0x33a2 002554 set0 mark_ext_patch ,mark 
-0x33a3 002555 bpatch patch06_7 ,mem_patch06 
-0x33a4 002556 jam 0 ,mem_fhs_am_addr 
-0x33a5 002557 disable clknt 
-0x33a6 002558 disable attempt 
-0x33a7 002559 call afh_clear 
-0x33a8 002560 and clkn_bt ,0x1fc ,bt_clk 
-0x33a9 002561 force 0x01 ,freq_mode 
-0x33aa 002562 call fetch_giac 
-0x33ab 002563 call rx_radio_freq 
-0x33ac 002564 setflip mark_inquiry_state ,mark 
-0x33ad 002565 fetch 1 ,mem_inquiryscan_waitcnt 
-0x33ae 002566 increase 1 ,pdata 
-0x33af 002567 store 1 ,mem_inquiryscan_waitcnt 
-0x33b0 002568 call fetch_diac 
-0x33b1 002569 call start_receiver 
-0x33b2 002570 call wait_access_forever 
-0x33b3 002571 nrtn sync 
-0x33b4 002572 set0 mark_ext_patch ,mark 
-0x33b5 002573 bpatch patch07_0 ,mem_patch07 
-0x33b6 002574 force 0 ,stop_watch 
-0x33b7 002575 call shutdown_radio 
-0x33b8 002576 fetch 1 ,mem_inquiryscan_rcvcnt 
-0x33b9 002577 increase 1 ,pdata 
-0x33ba 002578 store 1 ,mem_inquiryscan_rcvcnt 
-0x33bb 002579 call fetch_giac 
-0x33bc 002580 call rf_setup_time_slave_slot 
-0x33bd 002581 or_into 0x002 ,bt_clk 
-0x33be 002582 force 0x01 ,freq_mode 
-0x33bf 002583 call tx_radio_freq 
-0x33c0 002584 call fetch_diac 
-0x33c1 002585 call start_transmitter 
-0x33c2 002586 call start_tx_external 
-0x33c3 002587 deposit clkn_bt 
-0x33c4 002588 store 4 ,mem_clkn_bt 
-0x33c5 002589 call send_access_word 
-0x33c6 002590 force type_fhs ,type 
-0x33c7 002591 force 0 ,am_addr 
-0x33c8 002592 call scan_mode_whiten 
-0x33c9 002593 call transmit_packet_whitened 
-0x33ca 002594 call send_eir 
-0x33cb 002595 and_into 0x1fd ,bt_clk 
-0x33cc 002596 increase 1 ,n_tx_slot 
-0x33cd 002597 rtn 
-:      002599 send_eir:
-0x33ce 002600 set0 mark_ext_patch ,mark 
-0x33cf 002601 bpatch patch07_1 ,mem_patch07 
-0x33d0 002602 fetch 1 ,mem_eir_enable 
-0x33d1 002603 rtn blank 
-0x33d2 002604 arg mem_eir ,contw 
-0x33d3 002605 fetch 1 ,mem_local_name_length 
-0x33d4 002606 copy pdata ,loopcnt 
-0x33d5 002607 increase 1 ,pdata 
-0x33d6 002608 istore 1 ,contw 
-0x33d7 002609 copy contw ,temp 
-0x33d8 002610 increase 1 ,pdata 
-0x33d9 002611 store 2 ,mem_tx_len 
-0x33da 002612 copy temp ,contw 
-0x33db 002613 setarg 0x09 
-0x33dc 002614 istore 1 ,contw 
-0x33dd 002615 arg mem_local_name ,contr 
-0x33de 002616 call memcpy 
-0x33df 002617 arg mem_all_uuid_128bits ,regc 
-0x33e0 002618 arg 4 ,loopcnt 
-0x33e1 002619 call get_all_uuid 
-0x33e2 002620 arg mem_all_uuid_16bits ,regc 
-0x33e3 002621 arg 1 ,loopcnt 
-0x33e4 002622 call get_all_uuid 
-0x33e5 002623 force type_dm3 ,type 
-0x33e6 002624 jam 2 ,mem_tx_lch 
-0x33e7 002625 setarg mem_eir 
-0x33e8 002626 store 2 ,mem_txptr 
-0x33e9 002627 call rf_setup_time_slave_slot 
-0x33ea 002628 call tx_radio_freq 
-0x33eb 002629 call start_transmitter 
-0x33ec 002630 call start_tx_external 
-0x33ed 002631 call send_access_word 
-0x33ee 002632 call scan_mode_whiten 
-0x33ef 002633 call transmit_packet_whitened 
-0x33f0 002634 rtn 
-:      002637 get_all_uuid:
-0x33f1 002638 copy contw ,temp 
-0x33f2 002639 copy regc ,contr 
-0x33f3 002640 ifetch 1 ,contr 
-0x33f4 002641 rtn blank 
-:      002642 lshift_loop:
-0x33f5 002643 lshift pdata ,pdata 
-0x33f6 002644 loop lshift_loop 
-0x33f7 002645 copy pdata ,rega 
-0x33f8 002646 increase 2 ,pdata 
-0x33f9 002647 copy pdata ,queue 
-0x33fa 002648 fetch 2 ,mem_tx_len 
-0x33fb 002649 iadd queue ,pdata 
-0x33fc 002650 store 2 ,mem_tx_len 
-0x33fd 002651 copy temp ,contw 
-0x33fe 002652 copy rega ,pdata 
-0x33ff 002653 increase 1 ,pdata 
-0x3400 002654 istore 1 ,contw 
-0x3401 002655 copy regc ,contr 
-0x3402 002656 ifetch 1 ,contr 
-0x3403 002657 ifetch 1 ,contr 
-0x3404 002658 istore 1 ,contw 
-0x3405 002659 copy rega ,loopcnt 
-0x3406 002660 branch memcpy 
-:      002666 page_scan_dispatch:
-0x3407 002667 fetch 1 ,mem_scan_mode 
-0x3408 002668 rtnbit0 page_scan_mode 
-0x3409 002669 force pscan_interval_timer ,queue 
-0x340a 002670 call timer_check 
-0x340b 002671 nrtn blank 
-0x340c 002672 fetcht 2 ,mem_pscan_window 
-0x340d 002673 force 40 ,queue 
-0x340e 002674 call sniff_check_window 
-0x340f 002675 rtn user 
-0x3410 002676 force 0 ,am_addr 
-0x3411 002677 jam param_pagerespto ,mem_fhs_wait_counter 
-0x3412 002678 set0 mark_fhs_already_good ,mark 
-0x3413 002679 call page_scan_start 
-0x3414 002680 force pscan_interval_timer ,queue 
-0x3415 002681 fetch 2 ,mem_pscan_interval 
-0x3416 002682 branch timer_init 
-:      002685 page_scan_start:
-0x3417 002686 set0 mark_ext_patch ,mark 
-0x3418 002687 bpatch patch07_2 ,mem_patch07 
-0x3419 002688 disable clknt 
-0x341a 002689 call afh_clear 
-0x341b 002690 fetch 1 ,mem_pagescan_waitcnt 
-0x341c 002691 increase 1 ,pdata 
-0x341d 002692 store 1 ,mem_pagescan_waitcnt 
-0x341e 002693 force 0 ,n_tx_slot 
-0x341f 002694 call fetch_self_bt_adr 
-0x3420 002695 add clkn_bt ,1 ,bt_clk 
-0x3421 002696 force 0x02 ,freq_mode 
-0x3422 002697 set0 mark_ext_patch ,mark 
-0x3423 002698 bpatch patch07_3 ,mem_patch07 
-0x3424 002699 call rx_radio_freq 
-0x3425 002700 call start_receiver 
-0x3426 002701 call wait_access_forever 
-0x3427 002702 nrtn sync 
-0x3428 002703 call shutdown_radio 
-0x3429 002704 fetch 1 ,mem_pagescan_rcvcnt 
-0x342a 002705 increase 1 ,pdata 
-0x342b 002706 store 1 ,mem_pagescan_rcvcnt 
-0x342c 002707 force 0 ,stop_watch 
-0x342d 002708 call rf_setup_time_slave_slot 
-0x342e 002709 or_into 0x002 ,bt_clk 
-0x342f 002710 force 0x01 ,freq_mode 
-0x3430 002711 call tx_radio_freq 
-0x3431 002712 call start_transmitter 
-0x3432 002713 call start_tx_external 
-0x3433 002714 call send_access_word 
-0x3434 002715 call end_of_packet 
-0x3435 002716 force 0 ,am_addr 
-0x3436 002717 arg param_rf_setup ,timeup 
-0x3437 002718 until clke_rt ,meet 
-0x3438 002719 or_into 0x03 ,clke_bt 
-0x3439 002720 and_into 0x1fd ,bt_clk 
-:      002721 page_scan_wait_fhs_restart:
-0x343a 002722 set0 mark_ext_patch ,mark 
-0x343b 002723 bpatch patch07_4 ,mem_patch07 
-0x343c 002724 increase 1 ,n_tx_slot 
-0x343d 002725 call rx_radio_freq 
-0x343e 002726 call start_receiver 
-0x343f 002727 call wait_access_mhalfbnd 
-0x3440 002728 nbranch page_scan_wait_fhs_again ,sync 
-0x3441 002729 call scan_mode_whiten 
-0x3442 002730 call receive_packet_whitened 
-0x3443 002731 bmark1 mark_fhs_already_good ,page_scan_reply_to_fhs 
-:      002732 page_scan_wait_fhs_again:
-0x3444 002733 set0 mark_ext_patch ,mark 
-0x3445 002734 bpatch patch07_5 ,mem_patch07 
-0x3446 002735 fetch 1 ,mem_fhs_wait_counter 
-0x3447 002736 rtn blank 
-0x3448 002737 increase -1 ,pdata 
-0x3449 002738 store 1 ,mem_fhs_wait_counter 
-0x344a 002739 call rf_setup_time_master_slot 
-0x344b 002740 branch page_scan_wait_fhs_restart 
-:      002743 page_scan_reply_to_fhs:
-0x344c 002744 set0 mark_ext_patch ,mark 
-0x344d 002745 bpatch patch07_6 ,mem_patch07 
-0x344e 002746 set0 1 ,clke_bt 
-0x344f 002747 set1 0 ,clke_bt 
-0x3450 002748 fetch 1 ,mem_pagescan_rcvfhscnt 
-0x3451 002749 increase 1 ,pdata 
-0x3452 002750 store 1 ,mem_pagescan_rcvfhscnt 
-0x3453 002751 call rf_setup_time_slave_slot 
-0x3454 002752 or_into 0x02 ,bt_clk 
-0x3455 002753 call tx_radio_freq 
-0x3456 002754 call start_transmitter 
-0x3457 002755 call start_tx_external 
-0x3458 002756 call send_access_word 
-0x3459 002757 call end_of_packet 
-:      002758 slave_apply_clke_bt:
-0x345a 002759 compare 0x03 ,clke_bt ,0x03 
-0x345b 002760 branch slave_apply_clke_bt_now ,true 
-0x345c 002761 until null ,mhalfbnd 
-0x345d 002762 branch slave_apply_clke_bt 
-:      002763 slave_apply_clke_bt_now:
-0x345e 002764 fetch 4 ,mem_clke_bt 
-0x345f 002765 or_into 0x03 ,pdata 
-0x3460 002766 icopy clke_bt 
-:      002768 start_slave_connection:
-0x3461 002769 set0 mark_ext_patch ,mark 
-0x3462 002770 bpatch patch07_7 ,mem_patch07 
-0x3463 002771 fetch 6 ,extm_lap 
-0x3464 002772 store 6 ,mem_plap 
-0x3465 002773 call prepare_newconn 
-:      002774 slave_newconn_loop:
-0x3466 002775 call slave_newconn_once 
-0x3467 002776 branch sconn_successful ,match 
-0x3468 002777 call new_conn_timeout 
-0x3469 002778 nbranch slave_newconn_loop ,blank 
-0x346a 002779 rtn 
-:      002782 sconn_successful:
-0x346b 002783 set0 mark_ext_patch ,mark 
-0x346c 002784 bpatch patch08_0 ,mem_patch08 
-0x346d 002785 call newconn_init 
-0x346e 002786 call context_new 
-0x346f 002787 nrtn zero 
-0x3470 002788 jam 0 ,mem_mode 
-0x3471 002789 call calc_clke_offset 
-0x3472 002790 branch context_save 
-:      002793 slave_dispatch:
-0x3473 002794 set0 mark_ext_patch ,mark 
-0x3474 002795 bpatch patch08_1 ,mem_patch08 
-0x3475 002796 call calc_clke 
-0x3476 002797 call role_switch_slave 
-0x3477 002798 rtn user 
-0x3478 002799 call load_esco 
-0x3479 002800 call get_sco_data 
-:      002801 slave_loop:
-0x347a 002802 set0 mark_ext_patch ,mark 
-0x347b 002803 bpatch patch08_2 ,mem_patch08 
-0x347c 002804 call check_bt_disabled 
-0x347d 002805 call scheduler_process 
-0x347e 002806 call slave_conn_recv_packet 
-0x347f 002807 call slave_savelist 
-0x3480 002808 nbranch slave_notmatch ,match 
-0x3481 002809 call supervision_flush 
-0x3482 002810 call parse_l2cap 
-0x3483 002811 call scheduler_tx_l2cap_pkt 
-0x3484 002812 call prepare_tx 
-0x3485 002813 call slave_conn_send_packet 
-0x3486 002814 call parse_lmp 
-0x3487 002815 call process_cmd 
-0x3488 002816 call hci_send_num_complete_packets 
-0x3489 002817 fetch 1 ,mem_slave_rcvcnt 
-0x348a 002818 increase 1 ,pdata 
-0x348b 002819 store 1 ,mem_slave_rcvcnt 
-0x348c 002820 call calc_clke_offset 
-:      002821 slave_notmatch:
-0x348d 002822 set0 mark_ext_patch ,mark 
-0x348e 002823 bpatch patch08_3 ,mem_patch08 
-0x348f 002824 call lpm_set_mult 
-0x3490 002825 call supervision_update 
-0x3491 002826 branch slave_disconnect ,positive 
-0x3492 002827 call check_disconnect_timeout 
-0x3493 002828 nbranch slave_disconnect ,user 
-0x3494 002829 call check_attempt 
-0x3495 002830 nbranch slave_loop ,blank 
-0x3496 002831 call process_sco_data 
-0x3497 002832 branch restore_esco 
-:      002835 slave_disconnect:
-0x3498 002836 set0 mark_ext_patch ,mark 
-0x3499 002837 bpatch patch08_4 ,mem_patch08 
-0x349a 002838 jam 0 ,mem_tester_emulate 
-0x349b 002839 jam 0 ,mem_debug_config 
-0x349c 002840 call quit_connection 
-0x349d 002841 set0 mark_testmode ,mark 
-0x349e 002842 call test_enable_white 
-0x349f 002843 fetch 1 ,mem_state 
-0x34a0 002844 bbit0 state_conn_comp ,slave_connection_fail 
-0x34a1 002845 fetcht 1 ,mem_conn_handle 
-0x34a2 002846 branch hci_send_disconn_complete 
-:      002848 slave_connection_fail:
-0x34a3 002849 force hci_error_key_missing ,temp 
-0x34a4 002850 branch hci_send_connection_error 
-:      002852 role_switch_slave:
-0x34a5 002853 set0 mark_ext_patch ,mark 
-0x34a6 002854 bpatch patch08_5 ,mem_patch08 
-0x34a7 002855 call role_switch_check 
-0x34a8 002856 nrtn user 
-0x34a9 002857 copy am_addr ,temp 
-0x34aa 002858 call get_free_amaddr 
-0x34ab 002859 store 1 ,mem_fhs_am_addr 
-0x34ac 002860 copy temp ,am_addr 
-0x34ad 002861 jam param_newconnto ,mem_newconnto_counter 
-:      002862 roles_sendfhs_loop:
-0x34ae 002863 set0 mark_ext_patch ,mark 
-0x34af 002864 bpatch patch08_6 ,mem_patch08 
-0x34b0 002865 call rf_setup_time_master_slot 
-0x34b1 002866 force type_fhs ,type 
-0x34b2 002867 call slave_send_access 
-0x34b3 002868 deposit clkn_bt 
-0x34b4 002869 store 4 ,mem_clkn_bt 
-0x34b5 002870 call transmit_packet 
-0x34b6 002871 call rf_setup_time_slave_slot 
-0x34b7 002872 enable user3 
-0x34b8 002873 call slave_receive_access 
-0x34b9 002874 branch roles_got_fhs_reply ,sync 
-0x34ba 002875 call shutdown_radio 
-0x34bb 002876 call new_conn_timeout 
-0x34bc 002877 nbranch roles_sendfhs_loop ,blank 
-0x34bd 002878 rtnmark0 mark_accept_switch 
-0x34be 002879 jam lmp_slot_offset ,mem_lmo_opcode2 
-0x34bf 002880 set1 mark_switch_initiated ,mark 
-0x34c0 002881 rtn 
-:      002882 roles_got_fhs_reply:
-0x34c1 002883 enable clknt 
-0x34c2 002884 call prepare_newconn 
-0x34c3 002885 call afh_clear 
-:      002886 roles_newconn_loop:
-0x34c4 002887 set0 mark_ext_patch ,mark 
-0x34c5 002888 bpatch patch08_7 ,mem_patch08 
-0x34c6 002889 call master_newconn_once 
-0x34c7 002890 branch roles_newconn_responded ,sync 
-0x34c8 002891 call new_conn_timeout 
-0x34c9 002892 nbranch roles_newconn_loop ,blank 
-0x34ca 002893 disable clknt 
-0x34cb 002894 deposit clke_bt 
-0x34cc 002895 store 4 ,mem_next_btclk 
-0x34cd 002896 rtn 
-:      002897 roles_newconn_responded:
-0x34ce 002898 force 0 ,temp 
-0x34cf 002899 call hci_send_role_change 
-0x34d0 002900 enable master 
-0x34d1 002901 bmark0 mark_accept_switch ,roles_newconn_nolmp 
-0x34d2 002902 set0 mark_accept_switch ,mark 
-0x34d3 002903 jam lmp_accepted ,mem_lmo_opcode2 
-0x34d4 002904 jam lmp_host_connection_req ,mem_lmi_opcode2 
-0x34d5 002905 call tid_set_reply 
-:      002906 roles_newconn_nolmp:
-0x34d6 002907 deposit am_addr 
-0x34d7 002908 store 1 ,mem_amaddr 
-0x34d8 002909 force 0 ,pdata 
-0x34d9 002910 store 6 ,mem_clk_offset 
-0x34da 002911 fetch 1 ,mem_mode 
-0x34db 002912 set1 mode_master ,pdata 
-0x34dc 002913 store 1 ,mem_mode 
-0x34dd 002914 call supervision_flush 
-0x34de 002915 disable master 
-:      002916 enable_user:
-0x34df 002917 enable user 
-0x34e0 002918 rtn 
-:      002922 init_rx_packet_flags:
-0x34e1 002923 set0 mark_ext_patch ,mark 
-0x34e2 002924 bpatch patch09_0 ,mem_patch09 
-0x34e3 002925 disable match 
-0x34e4 002926 set0 mark_loopback ,mark 
-0x34e5 002927 set0 mark_am_addr_broadcast ,mark 
-0x34e6 002928 set0 mark_longpacket ,mark 
-0x34e7 002929 set0 mark_old_packet ,mark 
-0x34e8 002930 fetch 1 ,mem_arq 
-0x34e9 002931 set0 arqnx ,pdata 
-0x34ea 002932 set1 flowx ,pdata 
-0x34eb 002933 store 1 ,mem_arq 
-0x34ec 002934 rtn 
-:      002936 prepare_newconn:
-0x34ed 002937 set0 mark_ext_patch ,mark 
-0x34ee 002938 bpatch patch09_1 ,mem_patch09 
-0x34ef 002939 jam param_newconnto ,mem_newconnto_counter 
-0x34f0 002940 jam param_newconn_arq ,mem_arq 
-0x34f1 002941 fetch 2 ,mem_rx_window_init 
-0x34f2 002942 store 2 ,mem_rx_window 
-0x34f3 002943 deposit clkn_bt 
-0x34f4 002944 store 4 ,mem_next_btclk 
-0x34f5 002945 rtn clknt 
-0x34f6 002946 deposit clke_bt 
-0x34f7 002947 store 4 ,mem_next_btclk 
-0x34f8 002948 rtn 
-:      002950 newconn_init:
-0x34f9 002951 set0 mark_ext_patch ,mark 
-0x34fa 002952 bpatch patch09_2 ,mem_patch09 
-0x34fb 002953 call init_lmp_reinit 
-0x34fc 002954 call new_conn_handle 
-0x34fd 002955 store 1 ,mem_conn_handle 
-0x34fe 002956 setarg param_supervision_to 
-0x34ff 002957 store 2 ,mem_supervision_to 
-0x3500 002958 fetch 1 ,mem_state 
-0x3501 002959 set1 state_inconn ,pdata 
-0x3502 002960 store 1 ,mem_state 
-0x3503 002961 jam 0 ,mem_op 
-0x3504 002962 jam 0 ,mem_state_map 
-0x3505 002963 jam 0 ,mem_lpm_current_mult 
-0x3506 002964 branch supervision_flush 
-:      002967 clear_linkkey:
-0x3507 002968 set0 mark_ext_patch ,mark 
-0x3508 002969 bpatch patch09_3 ,mem_patch09 
-0x3509 002970 force 0 ,pdata 
-0x350a 002971 store 8 ,mem_link_key 
-0x350b 002972 istore 8 ,contw 
-0x350c 002973 call clear_linkstate 
-0x350d 002974 branch context_traverse_linkkey 
-:      002976 new_conn_timeout:
-0x350e 002977 fetch 1 ,mem_newconnto_counter 
-0x350f 002978 increase -1 ,pdata 
-0x3510 002979 store 1 ,mem_newconnto_counter 
-0x3511 002980 rtn 
-:      002982 new_conn_handle:
-0x3512 002983 fetch 1 ,mem_handle_num 
-0x3513 002984 increase 1 ,pdata 
-0x3514 002985 store 1 ,mem_handle_num 
-0x3515 002986 rtn 
-:      002989 quit_connection:
-0x3516 002990 set0 mark_ext_patch ,mark 
-0x3517 002991 bpatch patch09_4 ,mem_patch09 
-0x3518 002992 call disconnect_stop_sco 
-0x3519 002993 fetch 1 ,mem_hci_cmd 
-0x351a 002994 beq hci_cmd_remote_name_req ,quit_connection_name 
-0x351b 002995 fetch 1 ,mem_lmp_to_send 
-0x351c 002996 bne lmp_name_req ,quit_connection_cont 
-:      002997 quit_connection_name:
-0x351d 002998 call cmd_check_plap 
-0x351e 002999 nbranch quit_connection_cont ,zero 
-0x351f 003000 call master_name_error 
-0x3520 003001 jam 0 ,mem_hci_cmd 
-:      003002 quit_connection_cont:
-0x3521 003003 set0 mark_ext_patch ,mark 
-0x3522 003004 bpatch patch09_5 ,mem_patch09 
-0x3523 003005 call app_disconn_reason_collect_bt 
-0x3524 003006 call process_cmd 
-0x3525 003007 call sniff_exit 
-0x3526 003008 jam bt_evt_bb_disconnected ,mem_fifo_temp 
-0x3527 003009 call ui_ipc_send_event 
-0x3528 003010 call init_lmp_work 
-0x3529 003011 call l2cap_init_work 
-0x352a 003012 call sp_initialize 
-0x352b 003013 fetch 1 ,mem_state 
-0x352c 003014 set0 state_inconn 
-0x352d 003015 store 1 ,mem_state 
-0x352e 003016 jam 0 ,memui_reconnect_mode 
-0x352f 003018 fetch 1 ,mem_state_map 
-0x3530 003019 compare 0x0 ,pdata ,0xc0 
-0x3531 003020 branch quit_connection_not_clear_mark ,true 
-0x3532 003021 set0 mark_rxbuf_inuse ,mark 
-:      003022 quit_connection_not_clear_mark:
-0x3533 003023 fetch 1 ,mem_arq 
-0x3534 003024 bbit0 wack ,quit_connection_not_clear_tx 
-:      003025 quit_connection_not_clear_tx:
-0x3535 003026 fetch 1 ,mem_op 
-0x3536 003027 rtnbit0 op_txl2cap 
-0x3537 003028 set0 mark_tx_l2cap ,mark 
-0x3538 003029 rtn 
-:      003031 slave_newconn_once:
-0x3539 003032 set0 mark_ext_patch ,mark 
-0x353a 003033 bpatch patch09_6 ,mem_patch09 
-0x353b 003034 fetch 1 ,extm_newconn_am_addr 
-0x353c 003035 rtn blank 
-0x353d 003036 icopy am_addr 
-0x353e 003037 call slave_conn_recv_packet 
-0x353f 003038 nrtn match 
-0x3540 003039 force type_null ,type 
-0x3541 003040 call slave_conn_send_packet 
-0x3542 003041 deposit am_addr 
-0x3543 003042 store 1 ,mem_amaddr 
-0x3544 003043 force 0 ,pdata 
-0x3545 003044 store 1 ,extm_newconn_am_addr 
-0x3546 003045 rtn 
-:      003051 prepare_tx:
-0x3547 003052 set0 mark_ext_patch ,mark 
-0x3548 003053 bpatch patch09_7 ,mem_patch09 
-0x3549 003054 fetch 1 ,mem_state 
-0x354a 003055 bbit0 state_insco ,prepare_tx_not_sco 
-0x354b 003056 force type_hv3 ,type 
-0x354c 003057 bmark0 mark_esco ,prepare_tx_not_esco 
-0x354d 003058 call check_esco_amaddr 
-0x354e 003059 nbranch prepare_tx_not_sco ,true 
-0x354f 003060 branch prepare_tx_not_sco ,attempt 
-0x3550 003061 call set_wait_ack 
-0x3551 003062 setarg 2 
-0x3552 003063 store 2 ,mem_retransmission_cnt 
-0x3553 003064 rtn 
-:      003065 prepare_tx_not_esco:
-0x3554 003066 nrtn attempt 
-:      003067 prepare_tx_not_sco:
-0x3555 003068 set0 mark_ext_patch ,mark 
-0x3556 003069 bpatch patch0a_0 ,mem_patch0a 
-0x3557 003070 call context_check_all_wack 
-0x3558 003071 nbranch prepare_tx_no_retransmit ,zero 
-0x3559 003072 fetch 1 ,mem_arq 
-0x355a 003073 bbit0 wack ,prepare_tx_pollnull 
-:      003074 prepare_tx_retransmit:
-0x355b 003075 bmark1 mark_loopback ,prepare_tx_loopback 
-0x355c 003076 fetch 1 ,mem_debug_config 
-0x355d 003077 bbit1 debug_tx_pattern ,prepare_tx_txpat 
-0x355e 003078 fetch 2 ,mem_retransmission_cnt 
-0x355f 003079 increase -1 ,pdata 
-0x3560 003080 store 2 ,mem_retransmission_cnt 
-0x3561 003081 branch prepare_tx_nomore_retransmit ,blank 
-0x3562 003082 fetch 1 ,mem_last_type 
-0x3563 003083 iforce type 
-0x3564 003084 rtn 
-:      003086 prepare_tx_nomore_retransmit:
-0x3565 003087 set0 mark_ext_patch ,mark 
-0x3566 003088 bpatch patch0a_1 ,mem_patch0a 
-0x3567 003089 call clear_got_tx 
-:      003090 prepare_tx_no_retransmit:
-0x3568 003091 call check_esco_amaddr 
-0x3569 003092 branch prepare_tx_pollnull ,true 
-0x356a 003093 call send_lmp 
-0x356b 003094 branch prepare_tx_sendlmp ,user 
-0x356c 003095 fetch 1 ,mem_op 
-0x356d 003096 bbit1 op_txl2cap ,prepare_tx_sendl2cap 
-0x356e 003097 bmark1 mark_loopback ,prepare_tx_loopback 
-0x356f 003098 fetch 1 ,mem_debug_config 
-0x3570 003099 bbit1 debug_tx_pattern ,prepare_tx_txpat 
-:      003100 prepare_tx_pollnull:
-0x3571 003101 force type_poll ,type 
-0x3572 003102 rtn master 
-0x3573 003103 force type_null ,type 
-0x3574 003104 rtn 
-:      003105 prepare_tx_loopback:
-0x3575 003106 set0 mark_ext_patch ,mark 
-0x3576 003107 bpatch patch0a_2 ,mem_patch0a 
-0x3577 003108 fetch 1 ,mem_rx_type 
-0x3578 003109 iforce type 
-0x3579 003110 rtnne 1 
-0x357a 003111 force type_null ,type 
-0x357b 003112 rtn 
-:      003113 prepare_tx_txpat:
-0x357c 003114 fetch 1 ,test_mode_packet_type 
-0x357d 003115 and pdata ,0xf ,type 
-0x357e 003116 set1 mark_loopback ,mark 
-0x357f 003117 rtn 
-:      003118 prepare_tx_sendlmp:
-0x3580 003119 force type_lmp ,type 
-0x3581 003120 branch set_wait_ack 
-:      003121 prepare_tx_sendl2cap:
-0x3582 003122 call tx_l2cap_type 
-:      003124 set_wait_ack:
-0x3583 003125 set0 mark_ext_patch ,mark 
-0x3584 003126 bpatch patch0a_3 ,mem_patch0a 
-0x3585 003127 fetcht 1 ,mem_arq 
-0x3586 003128 set1 wack ,temp 
-0x3587 003129 storet 1 ,mem_arq 
-0x3588 003130 deposit type 
-0x3589 003131 store 1 ,mem_last_type 
-0x358a 003132 setarg 0xffff 
-0x358b 003133 store 2 ,mem_retransmission_cnt 
-0x358c 003134 rtn 
-:      003136 tx_l2cap_type:
-0x358d 003137 set0 mark_ext_patch ,mark 
-0x358e 003138 bpatch patch0a_4 ,mem_patch0a 
-0x358f 003139 fetch 1 ,mem_state_map 
-0x3590 003140 isolate1 smap_edr ,pdata 
-0x3591 003141 fetch 2 ,mem_tx_len 
-0x3592 003142 branch tx_l2cap_type_edr ,true 
-0x3593 003143 force type_dm1 ,type 
-0x3594 003144 sub pdata ,17 ,null 
-0x3595 003145 rtn positive 
-0x3596 003146 force type_dh1 ,type 
-0x3597 003147 sub pdata ,27 ,null 
-0x3598 003148 rtn positive 
-0x3599 003149 force type_dm3 ,type 
-0x359a 003150 sub pdata ,121 ,null 
-0x359b 003151 rtn positive 
-0x359c 003152 force type_dm5 ,type 
-0x359d 003153 sub pdata ,224 ,null 
-0x359e 003154 rtn positive 
-0x359f 003155 force type_dh5 ,type 
-0x35a0 003156 rtn 
-:      003157 tx_l2cap_type_edr:
-0x35a1 003158 force type_dm1 ,type 
-0x35a2 003159 sub pdata ,17 ,null 
-0x35a3 003160 rtn positive 
-0x35a4 003161 force type_dh1 ,type 
-0x35a5 003162 sub pdata ,54 ,null 
-0x35a6 003163 rtn positive 
-0x35a7 003164 force type_dm3 ,type 
-0x35a8 003165 arg 367 ,temp 
-0x35a9 003166 isub temp ,null 
-0x35aa 003167 nrtn positive 
-0x35ab 003168 force type_dm5 ,type 
-0x35ac 003169 arg 679 ,temp 
-0x35ad 003170 isub temp ,null 
-0x35ae 003171 nrtn positive 
-0x35af 003172 force type_dh5 ,type 
-0x35b0 003173 rtn 
-:      003182 slave_receive_master_slot:
-0x35b1 003183 fetch 1 ,mem_state 
-0x35b2 003184 bbit0 state_insniff ,slave_receive_notsniff 
-0x35b3 003185 fetch 2 ,mem_tsniff 
-0x35b4 003186 branch slave_receive_notsniff ,blank 
-0x35b5 003187 nbranch slave_receive_sniff ,attempt 
-:      003188 slave_receive_notsniff:
-0x35b6 003189 call rf_setup_time_master_slot 
-:      003190 slave_receive_access:
-0x35b7 003191 add clke_bt ,1 ,bt_clk 
-:      003192 slave_receive_sniff:
-0x35b8 003193 enable swfine 
-0x35b9 003194 fetch 2 ,mem_rx_window 
-0x35ba 003195 rshift pdata ,pdata 
-0x35bb 003196 arg param_pll_setup ,temp 
-0x35bc 003197 iadd temp ,pdata 
-0x35bd 003198 call ahead_window 
-0x35be 003199 call fetch_extm_bt_adr 
-0x35bf 003200 force 0x03 ,freq_mode 
-0x35c0 003201 call rx_radio_freq 
-0x35c1 003202 call init_rx_packet_flags 
-0x35c2 003203 call prep_crypt 
-0x35c3 003204 set0 mark_ext_patch ,mark 
-0x35c4 003205 bpatch patch0a_5 ,mem_patch0a 
-0x35c5 003206 fetch 2 ,mem_rx_window 
-0x35c6 003207 rshift pdata ,pdata 
-0x35c7 003208 call ahead_window 
-0x35c8 003209 call start_receiver 
-0x35c9 003210 enable decode_fec0 
-0x35ca 003211 fetch 2 ,mem_rx_window 
-0x35cb 003212 arg param_clke_cal ,temp 
-0x35cc 003213 iadd temp ,stop_watch 
-0x35cd 003214 correlate null ,timeout 
-0x35ce 003215 copy clke ,temp 
-0x35cf 003216 storet 6 ,mem_sync_clke 
-0x35d0 003217 disable decode_fec0 
-0x35d1 003218 nrtn sync 
-0x35d2 003219 arg param_clke_cal ,clke_rt 
-0x35d3 003220 copy bt_clk ,clke_bt 
-0x35d4 003221 branch lpm_adjust_clk ,wake 
-0x35d5 003222 rtn 
-:      003225 slave_conn_recv_packet:
-0x35d6 003226 set0 mark_ext_patch ,mark 
-0x35d7 003227 bpatch patch0a_6 ,mem_patch0a 
-0x35d8 003228 call slave_receive_master_slot 
-0x35d9 003229 nbranch shutdown_radio ,sync 
-0x35da 003230 call save_rssi 
-0x35db 003231 bmark0 mark_testmode ,receive_packet 
-0x35dc 003232 fetch 2 ,mem_tst_pktcnt_sync 
-0x35dd 003233 increase 1 ,pdata 
-0x35de 003234 store 2 ,mem_tst_pktcnt_sync 
-:      003235 receive_packet:
-0x35df 003236 rshift bt_clk ,temp 
-0x35e0 003237 or temp ,0x40 ,white_init 
-:      003238 receive_packet_whitened:
-0x35e1 003239 set0 mark_ext_patch ,mark 
-0x35e2 003240 bpatch patch0a_7 ,mem_patch0a 
-0x35e3 003241 enable enable_white 
-0x35e4 003242 enable enable_hec 
-0x35e5 003243 enable decode_fec1 
-0x35e6 003244 parse demod ,bucket ,3 
-0x35e7 003245 rshift8 pwindow ,pdata 
-0x35e8 003246 store 1 ,mem_temp_am_addr 
-0x35e9 003247 parse demod ,bucket ,4 
-0x35ea 003248 inject bucket ,7 
-0x35eb 003249 copy pwindow ,pdata 
-0x35ec 003250 store 1 ,mem_rx_type 
-0x35ed 003251 parse demod ,bucket ,3 
-0x35ee 003252 rshift8 pwindow ,pdata 
-0x35ef 003253 store 1 ,mem_temp_arq 
-0x35f0 003254 fetch 1 ,mem_rx_type 
-0x35f1 003255 sub pdata ,3 ,null 
-0x35f2 003256 branch receive_packet_noedr ,positive 
-0x35f3 003257 beq 7 ,receive_packet_noedr 
-0x35f4 003258 fetch 1 ,mem_state_map 
-0x35f5 003259 isolate1 smap_edr ,pdata 
-0x35f6 003260 setflag true ,psk ,radio_ctrl 
-:      003261 receive_packet_noedr:
-0x35f7 003262 set0 mark_ext_patch ,mark 
-0x35f8 003263 bpatch patch0b_0 ,mem_patch0b 
-0x35f9 003264 parse demod ,bucket ,8 
-0x35fa 003265 disable decode_fec1 
-0x35fb 003266 disable enable_hec 
-0x35fc 003267 branch error_header ,crc_failed 
-0x35fd 003268 bmark0 mark_testmode ,receive_packet_amchk 
-0x35fe 003269 fetch 2 ,mem_tst_pktcnt_hec 
-0x35ff 003270 increase 1 ,pdata 
-0x3600 003271 store 2 ,mem_tst_pktcnt_hec 
-:      003272 receive_packet_amchk:
-0x3601 003273 set0 mark_ext_patch ,mark 
-0x3602 003274 bpatch patch0b_1 ,mem_patch0b 
-0x3603 003275 fetch 1 ,mem_temp_am_addr 
-0x3604 003276 compare 0 ,pdata ,0x07 
-0x3605 003277 setflag true ,mark_am_addr_broadcast ,mark 
-0x3606 003278 branch am_addr_ok ,true 
-0x3607 003279 icompare 0x07 ,am_addr 
-0x3608 003280 branch am_addr_match ,true 
-0x3609 003281 bmark0 mark_esco ,end_of_packet 
-0x360a 003282 fetcht 1 ,mem_saved_amaddr 
-0x360b 003283 icompare 0x7 ,temp 
-0x360c 003284 nbranch end_of_packet ,true 
-0x360d 003285 call restore_esco 
-0x360e 003286 fetch 1 ,mem_arq 
-0x360f 003287 set0 arqnx ,pdata 
-0x3610 003288 set1 flowx ,pdata 
-0x3611 003289 store 1 ,mem_arq 
-:      003290 am_addr_match:
-0x3612 003291 enable match 
-:      003292 am_addr_ok:
-0x3613 003293 set0 mark_ext_patch ,mark 
-0x3614 003294 bpatch patch0b_2 ,mem_patch0b 
-0x3615 003295 fetch 1 ,mem_rx_type 
-0x3616 003296 icopy type 
-0x3617 003297 bmark1 mark_am_addr_broadcast ,arqn_bypass 
-0x3618 003298 fetcht 1 ,mem_temp_arq 
-0x3619 003299 fetch 1 ,mem_arq 
-0x361a 003300 set0 flow ,pdata 
-0x361b 003301 isolate1 flow ,temp 
-0x361c 003302 setflag true ,flow ,pdata 
-0x361d 003303 isolate1 arqn ,temp 
-0x361e 003304 setflag true ,arqn ,pdata 
-0x361f 003305 store 1 ,mem_arq 
-0x3620 003306 isolate0 arqn ,temp 
-0x3621 003307 branch arqn_bypass ,true 
-0x3622 003308 call clear_got_tx 
-:      003309 arqn_bypass:
-0x3623 003310 set0 mark_ext_patch ,mark 
-0x3624 003311 bpatch patch0b_3 ,mem_patch0b 
-0x3625 003312 arg 0 ,temp 
-0x3626 003313 call reserve_slot 
-0x3627 003314 and type ,0xf ,pdata 
-0x3628 003315 beq type_poll ,process_poll 
-0x3629 003316 beq type_null ,end_of_packet 
-0x362a 003317 beq type_fhs ,process_fhs 
-0x362b 003318 fetcht 1 ,mem_temp_arq 
-0x362c 003319 fetch 1 ,mem_arq 
-0x362d 003320 icompare 0x04 ,temp 
-0x362e 003321 nbranch rx_type_dispatch ,true 
-0x362f 003322 bmark0 mark_am_addr_broadcast ,failed_seqn 
-0x3630 003323 bbit0 bcast1 ,rx_type_dispatch 
-:      003324 failed_seqn:
-0x3631 003325 set1 mark_old_packet ,mark 
-:      003326 rx_type_dispatch:
-0x3632 003327 set0 mark_ext_patch ,mark 
-0x3633 003328 bpatch patch0b_4 ,mem_patch0b 
-0x3634 003329 deposit type 
-0x3635 003330 beq type_dm1 ,process_dm1 
-0x3636 003331 beq type_dh1 ,process_dh1 
-0x3637 003332 beq type_hv3 ,process_hev 
-0x3638 003333 beq type_3dh1 ,process_3dh1 
-0x3639 003334 arg 4 ,temp 
-0x363a 003335 call reserve_slot 
-0x363b 003336 beq type_dm3 ,process_dm3 
-0x363c 003337 beq type_dh3 ,process_dh3 
-0x363d 003338 arg 8 ,temp 
-0x363e 003339 call reserve_slot 
-0x363f 003340 beq type_dm5 ,process_dm5 
-0x3640 003341 beq type_dh5 ,process_dh5 
-0x3641 003342 rtn 
-:      003345 process_hev:
-0x3642 003346 set0 mark_ext_patch ,mark 
-0x3643 003347 bpatch patch0b_5 ,mem_patch0b 
-0x3644 003348 enable decode_fec0 
-0x3645 003349 enable enable_crc 
-0x3646 003350 enable encrypt 
-0x3647 003351 arg mem_sco_ibuf ,contw 
-0x3648 003352 force 30 ,loopcnt 
-:      003353 process_hev_loop:
-0x3649 003354 parse demod ,bucket ,8 
-0x364a 003355 rshift3 pwindow ,pdata 
-0x364b 003356 istore 1 ,contw 
-0x364c 003357 loop process_hev_loop 
-0x364d 003358 bmark0 mark_esco ,end_of_packet 
-0x364e 003359 parse demod ,bucket ,16 
-0x364f 003360 nsetflag crc_failed ,mark_esco_rxok ,mark 
-0x3650 003361 call test_esco ,crc_failed 
-0x3651 003362 branch error_payload ,crc_failed 
-0x3652 003363 branch ack_payload 
-:      003365 test_esco:
-0x3653 003366 deposit clke 
-0x3654 003367 store 6 ,mem_display 
-0x3655 003368 rtn 
-:      003370 process_poll:
-0x3656 003371 branch end_of_packet 
-:      003373 process_dm3:
-:      003374 process_dm5:
-0x3657 003375 set1 mark_longpacket ,mark 
-:      003376 process_dm1:
-0x3658 003377 enable decode_fec2 
-0x3659 003378 branch process_dmh 
-:      003380 process_dh3:
-:      003381 process_dh5:
-0x365a 003382 set1 mark_longpacket ,mark 
-:      003383 process_3dh1:
-0x365b 003384 set1 psk3m ,radio_ctrl 
-:      003385 process_dh1:
-0x365c 003386 enable decode_fec0 
-:      003387 process_dmh:
-0x365d 003388 set0 mark_ext_patch ,mark 
-0x365e 003389 bpatch patch0b_6 ,mem_patch0b 
-0x365f 003390 bmark1 mark_rxbuf_inuse ,end_of_packet 
-0x3660 003391 isolate0 psk ,radio_ctrl 
-0x3661 003392 branch process_dmh_noedr ,true 
-0x3662 003393 disable enable_white 
-0x3663 003394 enable decode_fec0 
-0x3664 003395 disable decode_fec2 
-0x3665 003396 add clkn_bt ,2 ,timeup 
-0x3666 003397 correlate clkn_bt ,meet 
-0x3667 003398 nbranch error_payload ,sync 
-0x3668 003399 set1 mark_longpacket ,mark 
-0x3669 003400 enable enable_white 
-:      003401 process_dmh_noedr:
-0x366a 003402 set0 mark_ext_patch ,mark 
-0x366b 003403 bpatch patch0b_7 ,mem_patch0b 
-0x366c 003404 enable encrypt 
-0x366d 003405 enable enable_crc 
-0x366e 003406 parse demod ,bucket ,3 
-0x366f 003407 rshift8 pwindow ,pdata 
-0x3670 003408 store 1 ,mem_lch_code 
-0x3671 003409 parse demod ,bucket ,5 
-0x3672 003410 bmark1 mark_longpacket ,process_dmh_long 
-0x3673 003411 rshift3 pwindow ,loopcnt 
-0x3674 003412 rshift3 loopcnt ,loopcnt 
-0x3675 003413 branch process_dmh_common 
-:      003414 process_dmh_long:
-0x3676 003415 parse demod ,bucket ,5 
-0x3677 003416 rshift pwindow ,loopcnt 
-0x3678 003417 parse demod ,bucket ,3 
-:      003418 process_dmh_common:
-0x3679 003419 set0 mark_ext_patch ,mark 
-0x367a 003420 bpatch patch0c_0 ,mem_patch0c 
-0x367b 003421 deposit loopcnt 
-0x367c 003422 store 2 ,mem_len 
-0x367d 003423 branch process_dmh_data_end ,blank 
-0x367e 003424 isub mask3ff ,null 
-0x367f 003425 branch error_payload ,positive 
-0x3680 003426 set0 mark_ext_patch ,mark 
-0x3681 003427 bpatch patch0c_1 ,mem_patch0c 
-0x3682 003428 set0 mark_fhs_eir ,mark 
-0x3683 003429 fetch 1 ,mem_lch_code 
-0x3684 003430 and_into 0x03 ,pdata 
-0x3685 003431 arg mem_rxbuf ,contw 
-0x3686 003432 beq llid_lmp ,process_lmp 
-0x3687 003433 bmark1 mark_testmode ,process_dmh_data 
-0x3688 003434 fetch 1 ,mem_device_option 
-0x3689 003435 beq dvc_op_hci ,process_dmh_acl 
-0x368a 003437 fetch 1 ,mem_lch_code 
-0x368b 003438 and_into 0x03 ,pdata 
-0x368c 003439 beq llid_l2cap_start ,process_dmh_data_l2cap_start_pkt 
-0x368d 003440 beq llid_l2cap_cont ,process_dmh_data_l2cap_continue_pkt 
-0x368e 003441 branch error_payload 
-:      003443 process_lmp:
-0x368f 003444 fetch 2 ,mem_len 
-0x3690 003445 sub pdata ,0x70 ,null 
-0x3691 003446 nbranch error_payload ,positive 
-0x3692 003447 bmark1 mark_old_packet ,ack_payload 
-0x3693 003448 branch process_dmh_data 
-:      003450 process_dmh_acl:
-0x3694 003451 set0 mark_ext_patch ,mark 
-0x3695 003452 bpatch patch0c_2 ,mem_patch0c 
-0x3696 003453 bmark1 mark_old_packet ,ack_payload 
-0x3697 003454 fetch 2 ,mem_len 
-0x3698 003455 branch error_payload ,blank 
-0x3699 003456 call hci_check_bcsp_protocol 
-0x369a 003457 nbranch process_dmh_acl_check_h4_buff ,true 
-:      003458 process_dmh_acl_bcsp:
-0x369b 003459 fetcht 2 ,mem_h5tx_free 
-0x369c 003460 increase 10 ,pdata 
-0x369d 003461 isub temp ,null 
-0x369e 003462 nbranch process_dmh_acl_packet ,positive 
-0x369f 003463 call hci_dispatch 
-0x36a0 003464 branch process_dmh_acl_bcsp 
-:      003465 process_dmh_acl_check_h4_buff:
-0x36a1 003466 hfetch 2 ,core_uart_txitems 
-0x36a2 003467 arg 300 ,temp 
-0x36a3 003468 isub temp ,null 
-0x36a4 003469 branch error_payload ,positive 
-0x36a5 003470 fetch 2 ,mem_acl_credits 
-0x36a6 003471 branch error_payload ,blank 
-:      003472 process_dmh_acl_packet:
-0x36a7 003473 set0 mark_ext_patch ,mark 
-0x36a8 003474 bpatch patch0c_3 ,mem_patch0c 
-0x36a9 003475 call hci_get_packet_ptr 
-0x36aa 003476 fetch 1 ,mem_conn_handle 
-0x36ab 003477 fetcht 1 ,mem_lch_code 
-0x36ac 003478 and_into 3 ,temp 
-0x36ad 003479 lshift8 temp ,temp 
-0x36ae 003480 lshift4 temp ,temp 
-0x36af 003481 ior temp ,pdata 
-0x36b0 003482 istore 2 ,contwu 
-0x36b1 003483 fetcht 2 ,mem_len 
-0x36b2 003484 copy temp ,loopcnt 
-0x36b3 003485 istoret 2 ,contwu 
-:      003486 process_dmh_acl_copy:
-0x36b4 003487 set0 mark_ext_patch ,mark 
-0x36b5 003488 bpatch patch0c_4 ,mem_patch0c 
-0x36b6 003489 parse demod ,bucket ,8 
-0x36b7 003490 rshift3 pwindow ,pdata 
-0x36b8 003491 istore 1 ,contwu 
-0x36b9 003492 loop process_dmh_acl_copy 
-0x36ba 003493 add temp ,4 ,loopcnt 
-0x36bb 003494 call hci_check_bcsp_protocol 
-0x36bc 003495 nbranch process_dmh_acl_send_h4 ,true 
-0x36bd 003496 set1 mark_h5tx_rp ,mark 
-0x36be 003497 force 6 ,queue 
-0x36bf 003498 call bcsp_send_packet 
-0x36c0 003499 branch process_dmh_data_end 
-:      003500 process_dmh_acl_send_h4:
-0x36c1 003501 call h4_send_packet_acl 
-0x36c2 003502 branch process_dmh_data_end 
-:      003504 process_dmh_data_l2cap_start_pkt:
-0x36c3 003505 set0 mark_ext_patch ,mark 
-0x36c4 003506 bpatch patch0c_5 ,mem_patch0c 
-0x36c5 003507 bmark1 mark_old_packet ,ack_payload 
-0x36c6 003508 fetch 2 ,mem_len 
-0x36c7 003509 arg 0x2e0 ,temp 
-0x36c8 003510 isub temp ,null 
-0x36c9 003511 branch error_payload ,positive 
-0x36ca 003512 fetch 1 ,mem_l2cap_rxbuff_inuse 
-0x36cb 003513 bbit0 l2cap_inuse_buff1 ,process_dmh_data_into_buff1 
-0x36cc 003514 bbit0 l2cap_inuse_buff2 ,process_dmh_data_into_buff2 
-0x36cd 003515 branch end_of_packet 
-:      003516 process_dmh_data_into_buff1:
-0x36ce 003517 jam 1 ,mem_l2cap_rxbuff_new 
-0x36cf 003518 fetch 2 ,mem_l2cap_rxbuff1_len 
-0x36d0 003519 bne 0 ,end_of_packet 
-0x36d1 003520 arg mem_l2cap_rxbuff1 ,contw 
-0x36d2 003521 branch process_dmh_data 
-:      003522 process_dmh_data_into_buff2:
-0x36d3 003523 jam 2 ,mem_l2cap_rxbuff_new 
-0x36d4 003524 fetch 2 ,mem_l2cap_rxbuff2_len 
-0x36d5 003525 bne 0 ,end_of_packet 
-0x36d6 003526 arg mem_l2cap_rxbuff2 ,contw 
-0x36d7 003527 branch process_dmh_data 
-:      003529 process_dmh_data_l2cap_continue_pkt:
-0x36d8 003530 set0 mark_ext_patch ,mark 
-0x36d9 003531 bpatch patch0c_6 ,mem_patch0c 
-0x36da 003532 bmark1 mark_old_packet ,ack_payload 
-0x36db 003533 fetch 2 ,mem_len 
-0x36dc 003534 arg 0x2e0 ,temp 
-0x36dd 003535 isub temp ,null 
-0x36de 003536 branch error_payload ,positive 
-0x36df 003537 fetch 1 ,mem_l2cap_rxbuff_new 
-0x36e0 003538 beq 1 ,process_dmh_data_l2cap_continue_pkt1 
-0x36e1 003539 beq 2 ,process_dmh_data_l2cap_continue_pkt2 
-0x36e2 003540 branch end_of_packet 
-:      003541 process_dmh_data_l2cap_continue_pkt1:
-0x36e3 003542 arg mem_l2cap_rxbuff1 ,contw 
-0x36e4 003543 fetch 2 ,mem_l2cap_rxbuff1_len 
-0x36e5 003544 iadd contw ,contw 
-0x36e6 003545 branch process_dmh_data 
-:      003546 process_dmh_data_l2cap_continue_pkt2:
-0x36e7 003547 arg mem_l2cap_rxbuff2 ,contw 
-0x36e8 003548 fetch 2 ,mem_l2cap_rxbuff2_len 
-0x36e9 003549 iadd contw ,contw 
-:      003550 process_dmh_data:
-0x36ea 003551 parse demod ,bucket ,8 
-0x36eb 003552 rshift3 pwindow ,pdata 
-0x36ec 003553 istore 1 ,contw 
-0x36ed 003554 loop process_dmh_data 
-:      003555 process_dmh_data_end:
-0x36ee 003556 set0 mark_ext_patch ,mark 
-0x36ef 003557 bpatch patch0c_7 ,mem_patch0c 
-0x36f0 003558 parse demod ,bucket ,16 
-0x36f1 003559 branch error_payload_crc ,crc_failed 
-0x36f2 003560 call lpm_hci_wake_dispatch 
-0x36f3 003561 fetch 1 ,mem_l2cap_flow_ctrl_flag 
-0x36f4 003562 beq l2cap_flow_ctrl_enable ,end_of_packet 
-0x36f5 003563 bmark1 mark_testmode ,process_dmh_cont 
-0x36f6 003564 bmark1 mark_old_packet ,redundant_payload 
-0x36f7 003565 fetch 1 ,mem_lch_code 
-0x36f8 003566 compare 3 ,pdata ,3 
-0x36f9 003567 branch process_dmh_cont ,true 
-0x36fa 003568 fetch 2 ,mem_len 
-0x36fb 003569 branch process_dmh_cont ,blank 
-0x36fc 003570 fetch 1 ,mem_device_option 
-0x36fd 003571 beq dvc_op_hci ,process_dmh_cont 
-0x36fe 003572 set0 mark_ext_patch ,mark 
-0x36ff 003573 bpatch patch0d_0 ,mem_patch0d 
-0x3700 003574 fetch 1 ,mem_l2cap_rxbuff_new 
-0x3701 003575 beq 1 ,process_l2cap_pass_crc_buff1 
-0x3702 003576 beq 2 ,process_l2cap_pass_crc_buff2 
-0x3703 003577 branch assert 
-:      003578 process_l2cap_pass_crc_buff1:
-0x3704 003579 fetch 2 ,mem_l2cap_rxbuff1_len 
-0x3705 003580 fetcht 2 ,mem_len 
-0x3706 003581 iadd temp ,pdata 
-0x3707 003582 store 2 ,mem_l2cap_rxbuff1_len 
-0x3708 003583 beq 0 ,assert 
-0x3709 003584 fetcht 2 ,mem_l2cap_rxbuff1 
-0x370a 003585 increase 4 ,temp 
-0x370b 003586 isub temp ,null 
-0x370c 003587 call l2cap_buff1_inuse ,zero 
-0x370d 003588 branch process_dmh_cont 
-:      003589 process_l2cap_pass_crc_buff2:
-0x370e 003590 fetch 2 ,mem_l2cap_rxbuff2_len 
-0x370f 003591 fetcht 2 ,mem_len 
-0x3710 003592 iadd temp ,pdata 
-0x3711 003593 store 2 ,mem_l2cap_rxbuff2_len 
-0x3712 003594 beq 0 ,assert 
-0x3713 003595 fetcht 2 ,mem_l2cap_rxbuff2 
-0x3714 003596 add temp ,4 ,temp 
-0x3715 003597 isub temp ,null 
-0x3716 003598 call l2cap_buff2_inuse ,zero 
-0x3717 003599 branch process_dmh_cont 
-:      003600 process_dmh_cont:
-0x3718 003601 set0 mark_ext_patch ,mark 
-0x3719 003602 bpatch patch0d_1 ,mem_patch0d 
-0x371a 003603 fetcht 1 ,mem_state_map 
-0x371b 003604 fetch 1 ,mem_lch_code 
-0x371c 003605 compare 3 ,pdata ,0x03 
-0x371d 003606 setflag true ,smap_rxlmp ,temp 
-0x371e 003607 nsetflag true ,smap_rxl2cap ,temp 
-0x371f 003608 storet 1 ,mem_state_map 
-0x3720 003609 nbranch process_dmh_cont_rxbuf_not_use ,true 
-0x3721 003610 set1 mark_rxbuf_inuse ,mark 
-:      003611 process_dmh_cont_rxbuf_not_use:
-0x3722 003612 bmark0 mark_testmode ,ack_payload 
-0x3723 003613 isolate1 smap_rxlmp ,temp 
-0x3724 003614 branch ack_payload ,true 
-0x3725 003615 fetch 2 ,mem_tst_pktcnt_crc 
-0x3726 003616 increase 1 ,pdata 
-0x3727 003617 store 2 ,mem_tst_pktcnt_crc 
-0x3728 003618 set1 mark_loopback ,mark 
-0x3729 003619 set0 smap_rxl2cap ,temp 
-0x372a 003620 set0 mark_rxbuf_inuse ,mark 
-0x372b 003621 storet 1 ,mem_state_map 
-:      003622 ack_payload:
-0x372c 003623 set0 mark_ext_patch ,mark 
-0x372d 003624 bpatch patch0d_2 ,mem_patch0d 
-0x372e 003625 fetcht 1 ,mem_temp_arq 
-0x372f 003626 fetch 1 ,mem_arq 
-0x3730 003627 set1 arqnx ,pdata 
-0x3731 003628 isolate1 seqn ,temp 
-0x3732 003629 setflag true ,seqn ,pdata 
-0x3733 003630 isolate1 mark_am_addr_broadcast ,mark 
-0x3734 003631 setflag true ,bcast1 ,pdata 
-0x3735 003632 store 1 ,mem_arq 
-0x3736 003633 fetch 2 ,mem_len 
-0x3737 003634 nbranch end_of_packet ,blank 
-0x3738 003635 fetch 1 ,mem_state_map 
-0x3739 003636 set0 smap_rxl2cap ,pdata 
-0x373a 003637 store 1 ,mem_state_map 
-0x373b 003638 fetch 1 ,mem_lch_code 
-0x373c 003639 compare 0x01 ,pdata ,0x07 
-0x373d 003641 branch end_of_packet 
-:      003643 error_header:
-0x373e 003644 set0 mark_ext_patch ,mark 
-0x373f 003645 bpatch patch0d_3 ,mem_patch0d 
-0x3740 003646 disable match 
-0x3741 003647 fetch 2 ,mem_rx_hec_err 
-0x3742 003648 increase 1 ,pdata 
-0x3743 003649 store 2 ,mem_rx_hec_err 
-0x3744 003650 branch end_of_packet 
-:      003651 error_payload_crc:
-0x3745 003652 fetch 2 ,mem_rx_crc_err 
-0x3746 003653 increase 1 ,pdata 
-0x3747 003654 store 2 ,mem_rx_crc_err 
-0x3748 003655 call discard_pkt 
-0x3749 003656 bmark0 mark_testmode ,error_payload 
-0x374a 003657 set1 mark_loopback ,mark 
-:      003658 error_payload:
-0x374b 003659 branch end_of_packet 
-:      003661 discard_pkt:
-0x374c 003662 set0 mark_ext_patch ,mark 
-0x374d 003663 bpatch patch0d_4 ,mem_patch0d 
-0x374e 003664 fetch 1 ,mem_lch_code 
-0x374f 003665 compare 3 ,pdata ,0x03 
-0x3750 003666 nbranch discard_pkt_l2cap ,true 
-:      003667 discard_pkt_lmp:
-0x3751 003668 fetcht 1 ,mem_state_map 
-0x3752 003669 set0 smap_rxlmp ,temp 
-0x3753 003670 storet 1 ,mem_state_map 
-0x3754 003671 rtn 
-:      003672 discard_pkt_l2cap:
-0x3755 003675 fetcht 1 ,mem_state_map 
-0x3756 003676 set0 smap_rxl2cap ,temp 
-0x3757 003677 storet 1 ,mem_state_map 
-0x3758 003678 branch h4_send_acl_trigger_clear 
-:      003680 redundant_payload:
-0x3759 003681 fetch 1 ,mem_arq 
-0x375a 003682 set1 arqnx ,pdata 
-0x375b 003683 store 1 ,mem_arq 
-:      003684 end_of_packet:
-0x375c 003685 set0 mark_ext_patch ,mark 
-0x375d 003686 bpatch patch0d_5 ,mem_patch0d 
-0x375e 003687 disable encode_fec0 
-0x375f 003688 disable encode_fec2 
-0x3760 003689 disable decode_fec0 
-0x3761 003690 disable decode_fec2 
-0x3762 003691 disable enable_crc 
-0x3763 003692 disable encrypt 
-0x3764 003693 disable enable_white 
-0x3765 003694 branch shutdown_radio ,is_rx 
-0x3766 003695 until null ,tx_clear 
-0x3767 003696 nop 100 
-0x3768 003697 branch shutdown_radio 
-:      003699 process_fhs:
-0x3769 003700 set0 mark_ext_patch ,mark 
-0x376a 003701 bpatch patch0d_6 ,mem_patch0d 
-0x376b 003702 enable enable_crc 
-0x376c 003703 enable decode_fec2 
-0x376d 003704 parse demod ,bucket ,72 
-0x376e 003705 isolate1 58 ,pdata 
-0x376f 003706 setflag true ,mark_fhs_eir ,mark 
-0x3770 003707 copy bt_adr ,temp 
-0x3771 003708 ialigned bt_adr 
-0x3772 003709 ialigned fhs0 
-0x3773 003710 pulse recalc 
-0x3774 003711 setsect 2 ,0xfffff 
-0x3775 003712 setsect 3 ,0x0ffff 
-0x3776 003713 nop 32 
-0x3777 003714 iverify fhs_parity 
-0x3778 003715 deposit lap 
-0x3779 003716 store 3 ,extm_lap 
-0x377a 003717 deposit uap 
-0x377b 003718 store 1 ,extm_uap 
-0x377c 003719 copy temp ,bt_adr 
-0x377d 003720 branch fhs_parity_ok ,true 
-0x377e 003721 branch error_payload 
-:      003722 fhs_parity_ok:
-0x377f 003723 set0 mark_ext_patch ,mark 
-0x3780 003724 bpatch patch0d_7 ,mem_patch0d 
-0x3781 003725 parse demod ,bucket ,72 
-0x3782 003726 ialigned fhs1 
-0x3783 003727 ialigned am_addr 
-0x3784 003728 ialigned nap 
-0x3785 003729 ialigned regb 
-0x3786 003730 force 0 ,pdata 
-0x3787 003731 parse demod ,bucket ,16 
-0x3788 003732 branch error_payload ,crc_failed 
-0x3789 003733 setarg 0x0ffffffc 
-0x378a 003734 iand regb ,pdata 
-0x378b 003735 store 4 ,mem_clke_bt 
-0x378c 003736 deposit fhs_class 
-0x378d 003737 store 3 ,extm_class 
-0x378e 003738 deposit fhs_misc 
-0x378f 003739 store 1 ,extm_fhs_misc 
-0x3790 003740 deposit am_addr 
-0x3791 003741 store 1 ,extm_newconn_am_addr 
-0x3792 003742 deposit nap 
-0x3793 003743 store 2 ,extm_nap 
-0x3794 003744 deposit bt_clk 
-0x3795 003745 inject rxf ,32 
-0x3796 003746 compare type_fhs ,type ,0x0f 
-0x3797 003747 setflag true ,mark_fhs_already_good ,mark 
-0x3798 003748 branch end_of_packet 
-:      003750 clear_got_tx:
-0x3799 003751 set0 mark_ext_patch ,mark 
-0x379a 003752 bpatch patch0e_0 ,mem_patch0e 
-0x379b 003753 fetch 1 ,mem_arq 
-0x379c 003754 rtnbit0 wack 
-0x379d 003755 set0 wack ,pdata 
-0x379e 003756 setflip seqnx ,pdata 
-0x379f 003757 store 1 ,mem_arq 
-0x37a0 003758 fetch 1 ,mem_last_type 
-0x37a1 003759 beq type_lmp ,clear_got_txlmp 
-0x37a2 003760 rtneq type_hv3 
-0x37a3 003761 fetch 1 ,mem_op 
-0x37a4 003762 rtnbit0 op_txl2cap ,pdata 
-0x37a5 003763 set0 op_txl2cap ,pdata 
-0x37a6 003764 set1 op_pkt_comp ,pdata 
-0x37a7 003765 store 1 ,mem_op 
-0x37a8 003766 set0 mark_tx_l2cap ,mark 
-0x37a9 003767 fetch 1 ,mem_device_option 
-0x37aa 003768 rtneq dvc_op_hci 
-0x37ab 003769 fetch 2 ,mem_l2cap_tx_multi_offset 
-0x37ac 003770 nrtn blank 
-0x37ad 003771 fetch 1 ,mem_op 
-0x37ae 003772 set0 op_pkt_comp ,pdata 
-0x37af 003773 store 1 ,mem_op 
-0x37b0 003774 branch l2cap_malloc_free 
-:      003776 clear_got_txlmp:
-0x37b1 003777 set0 mark_ext_patch ,mark 
-0x37b2 003778 bpatch patch0e_1 ,mem_patch0e 
-0x37b3 003779 fetch 1 ,mem_lmo_header_opcode 
-0x37b4 003780 rshift pdata ,pdata 
-0x37b5 003781 beq lmp_start_encryption_req ,start_encryption 
-0x37b6 003782 beq lmp_stop_encryption_req ,stop_encryption 
-0x37b7 003783 beq lmp_unsniff_req ,sniff_exit 
-0x37b8 003784 beq lmp_escape ,clear_lmp_escape 
-0x37b9 003785 beq lmp_remove_sco_link_req ,stop_sco 
-0x37ba 003786 rtnne lmp_accepted 
-0x37bb 003787 fetch 1 ,mem_lmo_payload 
-0x37bc 003788 beq lmp_sco_link_req ,sco_link_req_by_slave 
-0x37bd 003789 beq lmp_start_encryption_req ,clear_send_setup_complete 
-0x37be 003790 rtn 
-:      003792 clear_lmp_escape:
-0x37bf 003793 fetch 1 ,mem_lmo_payload 
-0x37c0 003794 set1 7 ,pdata 
-0x37c1 003795 beq lmp_ext_remove_esco_req ,stop_sco 
-0x37c2 003796 rtn 
-:      003797 clear_send_setup_complete:
-0x37c3 003798 rtn master 
-0x37c4 003799 fetch 1 ,mem_state 
-0x37c5 003800 rtnbit1 state_conn_comp 
-0x37c6 003801 jam lmp_setup_complete ,mem_lmo_opcode2 
-0x37c7 003802 rtn 
-:      003805 sco_link_req_by_slave:
-0x37c8 003806 rtn master 
-0x37c9 003807 fetch 1 ,mem_mode 
-0x37ca 003808 isolate1 send_sco_when_slave ,pdata 
-0x37cb 003809 branch clean_mem_mode ,true 
-0x37cc 003811 rtn 
-:      003812 clean_mem_mode:
-0x37cd 003813 set0 send_sco_when_slave ,pdata 
-0x37ce 003814 store 1 ,mem_mode 
-0x37cf 003815 rtn 
-:      003817 start_encryption:
-0x37d0 003818 set0 mark_ext_patch ,mark 
-0x37d1 003819 bpatch patch0e_2 ,mem_patch0e 
-0x37d2 003820 fetch 1 ,mem_state_map 
-0x37d3 003821 set1 smap_encryption ,pdata 
-0x37d4 003822 store 1 ,mem_state_map 
-0x37d5 003823 hjam 1 ,core_encrypt 
-0x37d6 003824 fetch 1 ,mem_state 
-0x37d7 003825 isolate1 state_conn_comp ,pdata 
-0x37d8 003826 branch hci_send_encryption_change ,true 
-0x37d9 003827 rtn 
-:      003829 stop_encryption:
-0x37da 003830 set0 mark_ext_patch ,mark 
-0x37db 003831 bpatch patch0e_3 ,mem_patch0e 
-0x37dc 003832 fetch 1 ,mem_state_map 
-0x37dd 003833 set0 smap_encryption ,pdata 
-0x37de 003834 store 1 ,mem_state_map 
-0x37df 003835 hjam 0 ,core_encrypt 
-0x37e0 003836 rtn 
-:      003839 sniff_init:
-0x37e1 003840 set0 mark_ext_patch ,mark 
-0x37e2 003841 bpatch patch0e_4 ,mem_patch0e 
-0x37e3 003842 copy clkn_bt ,pdata 
-0x37e4 003843 store 4 ,mem_lpm_delay_after_sniff 
-0x37e5 003844 add clkn_bt ,3 ,rega 
-0x37e6 003845 branch sniff_init_master ,master 
-0x37e7 003846 add clke_bt ,3 ,rega 
-:      003847 sniff_init_master:
-0x37e8 003848 fetcht 2 ,mem_tsniff 
-0x37e9 003849 deposit rega 
-0x37ea 003850 set0 27 ,pdata 
-0x37eb 003851 idiv temp 
-0x37ec 003852 fetch 2 ,mem_dsniff 
-0x37ed 003853 call wait_div_end 
-0x37ee 003854 remainder regc 
-0x37ef 003855 isub regc ,pdata 
-0x37f0 003856 branch sniff_init_nowrap ,positive 
-0x37f1 003857 iadd temp ,pdata 
-:      003858 sniff_init_nowrap:
-0x37f2 003859 iadd rega ,pdata 
-0x37f3 003860 store 4 ,mem_sniff_anchor 
-0x37f4 003861 jam switch_flag_init ,mem_switch_flag 
-0x37f5 003862 fetch 1 ,mem_state 
-0x37f6 003863 set1 state_insniff ,pdata 
-0x37f7 003864 store 1 ,mem_state 
-0x37f8 003865 fetch 1 ,mem_sniff_attempt 
-0x37f9 003866 store 1 ,mem_current_sniff_attempt 
-0x37fa 003867 jam 0x80 ,mem_seqi 
-0x37fb 003868 setarg 0 
-0x37fc 003869 store 3 ,mem_sniff_rcv 
-0x37fd 003870 store 3 ,mem_sniff_lost 
-0x37fe 003871 store 1 ,mem_sniff_unint_lost 
-0x37ff 003872 jam bt_evt_enter_sniff ,mem_fifo_temp 
-0x3800 003873 call ui_ipc_send_event 
-0x3801 003874 fetch 2 ,mem_rx_window_sniff 
-0x3802 003875 store 2 ,mem_rx_window 
-0x3803 003876 nrtn master 
-0x3804 003877 add am_addr ,-1 ,queue 
-0x3805 003878 rtn 
-:      003880 sniff_exit:
-0x3806 003881 set0 mark_ext_patch ,mark 
-0x3807 003882 bpatch patch0e_5 ,mem_patch0e 
-0x3808 003883 fetch 1 ,mem_state 
-0x3809 003884 rtnbit0 state_insniff 
-0x380a 003885 set0 state_insniff ,pdata 
-0x380b 003886 store 1 ,mem_state 
-0x380c 003887 jam 0x7f ,mem_seqi 
-0x380d 003888 fetch 2 ,mem_rx_window_init 
-0x380e 003889 store 2 ,mem_rx_window 
-0x380f 003890 disable wake 
-0x3810 003891 jam bt_evt_exit_sniff ,mem_fifo_temp 
-0x3811 003892 branch ui_ipc_send_event 
-:      003895 check_attempt:
-0x3812 003896 set0 mark_ext_patch ,mark 
-0x3813 003897 bpatch patch0e_6 ,mem_patch0e 
-0x3814 003898 enable attempt 
-0x3815 003899 fetch 1 ,mem_state 
-0x3816 003900 bbit1 state_insniff ,check_attempt_sniff 
-0x3817 003901 rtnmark1 mark_testmode 
-0x3818 003902 fetch 1 ,mem_arq 
-0x3819 003903 rtnbit1 wack 
-0x381a 003904 fetch 1 ,mem_lmp_to_send 
-0x381b 003905 nrtn blank 
-0x381c 003906 fetch 1 ,mem_op 
-0x381d 003907 rtnbit1 op_txl2cap 
-:      003908 check_attempt_nomore:
-0x381e 003909 force 0 ,pdata 
-0x381f 003910 rtn 
-:      003912 check_attempt_sniff:
-0x3820 003913 bbit0 state_insco ,check_attempt_not_sco 
-0x3821 003914 fetch 1 ,mem_current_sniff_attempt 
-0x3822 003915 beq 2 ,check_attempt_sniff_restore_sco 
-0x3823 003916 fetch 1 ,mem_arq 
-0x3824 003917 bbit1 wack ,check_attempt_notimeout 
-0x3825 003918 bmark0 mark_esco_rxok ,check_attempt_notimeout 
-:      003919 check_attempt_sniff_restore_sco:
-0x3826 003920 call restore_esco 
-0x3827 003921 nbranch check_attempt_notimeout ,master 
-0x3828 003922 fetch 1 ,mem_lmp_to_send 
-0x3829 003923 nbranch check_attempt_notimeout ,blank 
-:      003924 check_attempt_sco_master:
-0x382a 003925 fetch 1 ,mem_sco_poll 
-0x382b 003926 increase -1 ,pdata 
-0x382c 003927 store 1 ,mem_sco_poll 
-0x382d 003928 nbranch check_attempt_nomore ,blank 
-0x382e 003929 jam param_sco_poll ,mem_sco_poll 
-0x382f 003930 branch check_attempt_notimeout 
-:      003932 check_attempt_not_sco:
-0x3830 003933 fetch 1 ,mem_current_sniff_attempt 
-0x3831 003934 bne 1 ,check_attempt_notimeout 
-0x3832 003935 fetch 1 ,mem_current_sniff_timeout 
-0x3833 003936 branch check_attempt_notimeout ,blank 
-0x3834 003937 increase -1 ,pdata 
-0x3835 003938 store 1 ,mem_current_sniff_timeout 
-0x3836 003939 fetch 1 ,mem_arq 
-0x3837 003940 rtnbit1 wack 
-0x3838 003941 nrtn match 
-:      003942 check_attempt_notimeout:
-0x3839 003943 fetch 1 ,mem_current_sniff_attempt 
-0x383a 003944 increase -1 ,pdata 
-0x383b 003945 store 1 ,mem_current_sniff_attempt 
-0x383c 003946 rtn 
-:      003949 sniff_check_window:
-0x383d 003950 set0 mark_ext_patch ,mark 
-0x383e 003951 bpatch patch0e_7 ,mem_patch0e 
-0x383f 003952 disable swfine 
-0x3840 003953 copy temp ,stop_watch 
-0x3841 003954 call context_search_sniff_window 
-0x3842 003955 disable user 
-0x3843 003956 nrtn zero 
-0x3844 003957 force 0 ,stop_watch 
-0x3845 003958 enable user 
-0x3846 003959 rtn 
-:      003962 check_esco_amaddr:
-0x3847 003963 fetch 1 ,mem_esco_addr 
-0x3848 003964 icompare 0xff ,am_addr 
-0x3849 003965 rtn 
-:      003967 play_sco:
-0x384a 003968 set0 mark_ext_patch ,mark 
-0x384b 003969 bpatch patch0f_0 ,mem_patch0f 
-0x384c 003970 jam 1 ,mem_max_slot 
-0x384d 003972 call enable_pcm 
-0x384e 003973 force 12 ,pdata 
-0x384f 003974 store 2 ,mem_tsniff 
-0x3850 003975 fetch 1 ,mem_esco_desco 
-0x3851 003976 lshift pdata ,pdata 
-0x3852 003977 store 2 ,mem_dsniff 
-0x3853 003978 fetch 1 ,mem_state 
-0x3854 003979 set1 state_insco ,pdata 
-0x3855 003980 store 1 ,mem_state 
-0x3856 003981 jam 3 ,mem_sniff_attempt 
-0x3857 003982 jam 3 ,mem_current_sniff_attempt 
-0x3858 003983 call sniff_init 
-0x3859 003984 force 0 ,temp 
-0x385a 003985 call hci_send_sco_complete 
-0x385b 003986 jam 0x50 ,mem_esco_arq 
-0x385c 003987 jam param_sco_poll ,mem_sco_poll 
-0x385d 003988 rtn 
-:      003990 stop_sco:
-0x385e 003991 set0 mark_ext_patch ,mark 
-0x385f 003992 bpatch patch0f_1 ,mem_patch0f 
-0x3860 003993 call sniff_exit 
-0x3861 003994 jam 5 ,mem_max_slot 
-0x3862 003996 call disable_pcm 
-0x3863 003997 fetch 1 ,mem_state 
-0x3864 003998 set0 state_insco ,pdata 
-0x3865 003999 store 1 ,mem_state 
-:      004000 stop_sco_hci:
-0x3866 004001 arg 0xe00 ,temp 
-0x3867 004002 jam hci_error_remote_user_ended_connection ,mem_hci_disconn_reason 
-0x3868 004003 branch hci_send_disconn_complete 
-:      004005 stop_esco:
-0x3869 004006 set0 mark_ext_patch ,mark 
-0x386a 004007 bpatch patch0f_2 ,mem_patch0f 
-0x386b 004008 jam default_neogotiation_state ,mem_neogotiation_state 
-0x386c 004009 call stop_sco 
-0x386d 004010 call restore_esco 
-0x386e 004011 set0 mark_esco ,mark 
-0x386f 004012 rtn 
-:      004014 parse_l2cap:
-0x3870 004015 set0 mark_ext_patch ,mark 
-0x3871 004016 bpatch patch0f_3 ,mem_patch0f 
-0x3872 004017 fetch 1 ,mem_device_option 
-0x3873 004018 beq dvc_op_hci ,parse_l2cap_hci 
-0x3874 004019 set0 mark_rxbuf_inuse ,mark 
-:      004020 parse_l2cap_cont:
-0x3875 004021 jam l2cap_rx_clear ,mem_l2cap_rx_done 
-0x3876 004022 fetch 1 ,mem_l2cap_rxbuff_inuse 
-0x3877 004023 rtn blank 
-0x3878 004024 isolate1 l2cap_inuse_buff1 ,pdata 
-0x3879 004025 arg mem_l2cap_rxbuff1 ,contr 
-0x387a 004026 call process_rx_l2cap_pkt ,true 
-0x387b 004027 set0 mark_ext_patch ,mark 
-0x387c 004028 bpatch patch0f_4 ,mem_patch0f 
-0x387d 004029 fetch 1 ,mem_l2cap_rx_done 
-0x387e 004030 beq l2cap_rx_done ,parse_l2cap_release_buff1 
-0x387f 004032 jam l2cap_rx_clear ,mem_l2cap_rx_done 
-0x3880 004033 fetch 1 ,mem_l2cap_rxbuff_inuse 
-0x3881 004034 rtnbit0 l2cap_inuse_buff2 
-0x3882 004035 arg mem_l2cap_rxbuff2 ,contr 
-0x3883 004036 call process_rx_l2cap_pkt 
-0x3884 004037 fetch 1 ,mem_l2cap_rx_done 
-0x3885 004038 beq l2cap_rx_done ,parse_l2cap_release_buff2 
-0x3886 004039 rtn 
-:      004041 parse_l2cap_exit:
-0x3887 004042 fetch 1 ,mem_state_map 
-0x3888 004043 set0 smap_rxl2cap ,pdata 
-0x3889 004044 store 1 ,mem_state_map 
-0x388a 004045 set0 mark_rxbuf_inuse ,mark 
-0x388b 004046 branch h4_send_acl_trigger_clear 
-:      004048 parse_l2cap_release_buff1:
-0x388c 004049 fetch 1 ,mem_l2cap_rxbuff_inuse 
-0x388d 004050 set0 l2cap_inuse_buff1 ,pdata 
-0x388e 004051 store 1 ,mem_l2cap_rxbuff_inuse 
-0x388f 004052 setarg 0 
-0x3890 004053 store 2 ,mem_l2cap_rxbuff1_len 
-0x3891 004054 rtn 
-:      004055 parse_l2cap_release_buff2:
-0x3892 004056 fetch 1 ,mem_l2cap_rxbuff_inuse 
-0x3893 004057 set0 l2cap_inuse_buff2 ,pdata 
-0x3894 004058 store 1 ,mem_l2cap_rxbuff_inuse 
-0x3895 004059 setarg 0 
-0x3896 004060 store 2 ,mem_l2cap_rxbuff2_len 
-0x3897 004061 rtn 
-:      004063 parse_l2cap_hci:
-0x3898 004064 fetch 1 ,mem_state_map 
-0x3899 004065 rtnbit0 smap_rxl2cap ,pdata 
-0x389a 004066 call h4_send_acl_trigger 
-0x389b 004067 fetch 2 ,mem_acl_credits 
-0x389c 004068 branch assert ,blank 
-0x389d 004069 increase -1 ,pdata 
-0x389e 004070 store 2 ,mem_acl_credits 
-0x389f 004071 branch parse_l2cap_exit 
-:      004073 l2cap_buff1_inuse:
-0x38a0 004074 fetch 1 ,mem_l2cap_rxbuff_inuse 
-0x38a1 004075 set1 l2cap_inuse_buff1 ,pdata 
-0x38a2 004076 store 1 ,mem_l2cap_rxbuff_inuse 
-0x38a3 004077 rtn 
-:      004079 l2cap_buff2_inuse:
-0x38a4 004080 fetch 1 ,mem_l2cap_rxbuff_inuse 
-0x38a5 004081 set1 l2cap_inuse_buff2 ,pdata 
-0x38a6 004082 store 1 ,mem_l2cap_rxbuff_inuse 
-0x38a7 004083 rtn 
-:      004089 slave_send_access:
-0x38a8 004090 set0 mark_ext_patch ,mark 
-0x38a9 004091 bpatch patch0f_5 ,mem_patch0f 
-0x38aa 004092 add clke_bt ,1 ,bt_clk 
-0x38ab 004093 call fetch_extm_bt_adr 
-0x38ac 004094 force 0x03 ,freq_mode 
-0x38ad 004095 call tx_radio_freq 
-0x38ae 004096 call start_transmitter 
-0x38af 004097 call start_tx_external 
-0x38b0 004098 branch send_access_word 
-:      004101 slave_conn_send_packet:
-0x38b1 004102 set0 mark_ext_patch ,mark 
-0x38b2 004103 bpatch patch0f_6 ,mem_patch0f 
-0x38b3 004104 call rf_setup_time_slave_slot 
-0x38b4 004105 deposit clke_bt 
-0x38b5 004106 fetcht 4 ,mem_next_btclk 
-0x38b6 004107 isub temp ,pdata 
-0x38b7 004108 rtnne 1 
-0x38b8 004109 compare type_null ,type ,0x1f 
-0x38b9 004110 nbranch slave_conn_send_access ,true 
-0x38ba 004111 fetch 1 ,mem_rx_type 
-0x38bb 004112 rtn blank 
-:      004113 slave_conn_send_access:
-0x38bc 004114 call slave_send_access 
-0x38bd 004115 compare type_id ,type ,0x1f 
-0x38be 004116 branch end_of_packet ,true 
-:      004117 transmit_packet:
-0x38bf 004118 rshift bt_clk ,temp 
-0x38c0 004119 or temp ,0x40 ,white_init 
-:      004120 transmit_packet_whitened:
-0x38c1 004121 set0 mark_ext_patch ,mark 
-0x38c2 004122 bpatch patch0f_7 ,mem_patch0f 
-0x38c3 004123 enable enable_white 
-0x38c4 004124 enable enable_hec 
-0x38c5 004125 enable encode_fec1 
-0x38c6 004126 set0 mark_longpacket ,mark 
-0x38c7 004127 deposit am_addr 
-0x38c8 004128 inject mod ,3 
-0x38c9 004129 deposit type 
-0x38ca 004130 inject mod ,4 
-0x38cb 004131 fetch 1 ,mem_arq 
-0x38cc 004132 inject bucket ,4 
-0x38cd 004133 inject mod ,3 
-0x38ce 004134 enable enable_parity 
-0x38cf 004135 inject mod ,8 
-0x38d0 004136 disable encode_fec1 
-0x38d1 004137 disable enable_parity 
-0x38d2 004138 disable enable_hec 
-0x38d3 004139 set0 psk3m ,radio_ctrl 
-0x38d4 004140 arg 0 ,temp 
-0x38d5 004141 call reserve_slot 
-0x38d6 004142 set0 mark_ext_patch ,mark 
-0x38d7 004143 bpatch patch10_0 ,mem_patch10 
-0x38d8 004144 and type ,0x1f ,pdata 
-0x38d9 004145 beq type_lmp ,transmit_lmp 
-0x38da 004146 beq type_null ,end_of_packet 
-0x38db 004147 beq type_poll ,end_of_packet 
-0x38dc 004148 beq type_fhs ,transmit_fhs 
-0x38dd 004149 beq type_dm1 ,transmit_dm1 
-0x38de 004150 beq type_dh1 ,transmit_dh1 
-0x38df 004151 beq type_hv3 ,transmit_hev 
-0x38e0 004152 beq type_3dh1 ,transmit_3dh1 
-0x38e1 004153 arg 4 ,temp 
-0x38e2 004154 call reserve_slot 
-0x38e3 004155 beq type_dm3 ,transmit_dm3 
-0x38e4 004156 beq type_dh3 ,transmit_dh3 
-0x38e5 004157 arg 8 ,temp 
-0x38e6 004158 call reserve_slot 
-0x38e7 004159 beq type_dh5 ,transmit_dh5 
-0x38e8 004160 branch transmit_dm5 
-:      004163 transmit_hev:
-0x38e9 004164 set0 mark_ext_patch ,mark 
-0x38ea 004165 bpatch patch10_1 ,mem_patch10 
-0x38eb 004166 enable encode_fec0 
-0x38ec 004167 enable enable_crc 
-0x38ed 004168 enable encrypt 
-0x38ee 004169 force 30 ,loopcnt 
-0x38ef 004170 arg mem_sco_obuf ,contr 
-:      004171 transmit_ev_loop:
-0x38f0 004172 ifetch 1 ,contr 
-0x38f1 004173 inject mod ,8 
-0x38f2 004174 loop transmit_ev_loop 
-0x38f3 004175 bmark1 mark_esco ,transmit_end 
-0x38f4 004176 branch end_of_packet 
-:      004178 transmit_fhs:
-0x38f5 004179 set0 mark_ext_patch ,mark 
-0x38f6 004180 bpatch patch10_2 ,mem_patch10 
-0x38f7 004181 fetch 1 ,mem_fhs_am_addr 
-0x38f8 004182 icopy am_addr 
-0x38f9 004183 fetch 1 ,mem_fhs_misc 
-0x38fa 004184 icopy fhs_misc 
-0x38fb 004185 fetch 3 ,mem_class 
-0x38fc 004186 icopy fhs_class 
-0x38fd 004187 fetch 2 ,mem_nap 
-0x38fe 004188 icopy nap 
-0x38ff 004189 enable enable_crc 
-0x3900 004190 enable encode_fec2 
-0x3901 004191 copy bt_adr ,rega 
-0x3902 004192 call fetch_self_bt_adr 
-0x3903 004193 pulse recalc 
-0x3904 004194 nop 32 
-0x3905 004195 copy bt_clk ,timeup 
-0x3906 004196 fetch 4 ,mem_clkn_bt 
-0x3907 004197 icopy bt_clk 
-0x3908 004198 preload fhs0 
-0x3909 004199 set1 58 ,pdata 
-0x390a 004200 inject mod ,72 
-0x390b 004201 preload fhs1 
-0x390c 004202 inject mod ,72 
-0x390d 004203 copy timeup ,bt_clk 
-0x390e 004204 copy rega ,bt_adr 
-0x390f 004205 enable enable_parity 
-0x3910 004206 inject mod ,16 
-0x3911 004207 disable enable_parity 
-0x3912 004208 branch end_of_packet 
-:      004210 transmit_lmp:
-0x3913 004211 set0 mark_ext_patch ,mark 
-0x3914 004212 bpatch patch10_3 ,mem_patch10 
-0x3915 004213 enable encrypt 
-0x3916 004214 enable enable_crc 
-0x3917 004215 enable encode_fec2 
-0x3918 004216 fetch 1 ,mem_lmo_header_length 
-0x3919 004217 and pdata ,0x1f8 ,temp 
-0x391a 004218 arg mem_lmo_header_length ,contr 
-0x391b 004219 increase 8 ,temp 
-:      004220 transmit_lmp_loop:
-0x391c 004221 add temp ,-72 ,regc 
-0x391d 004222 nbranch transmit_lmp_finish ,positive 
-0x391e 004223 ifetch 9 ,contr 
-0x391f 004224 inject mod ,72 
-0x3920 004225 copy regc ,temp 
-0x3921 004226 branch transmit_lmp_loop 
-:      004227 transmit_lmp_finish:
-0x3922 004228 ifetch 9 ,contr 
-0x3923 004229 iinject mod ,temp 
-0x3924 004230 branch transmit_end 
-:      004232 transmit_dm1:
-0x3925 004233 enable encode_fec2 
-0x3926 004234 branch transmit_dmh 
-:      004235 transmit_dm3:
-:      004236 transmit_dm5:
-0x3927 004237 enable encode_fec2 
-0x3928 004238 set1 mark_longpacket ,mark 
-0x3929 004239 branch transmit_dmh 
-:      004241 transmit_3dh1:
-0x392a 004242 set1 psk3m ,radio_ctrl 
-:      004243 transmit_dh1:
-0x392b 004244 enable encode_fec0 
-0x392c 004245 branch transmit_dmh 
-:      004247 transmit_dh3:
-:      004248 transmit_dh5:
-0x392d 004249 set1 psk3m ,radio_ctrl 
-0x392e 004250 enable encode_fec0 
-0x392f 004251 set1 mark_longpacket ,mark 
-:      004253 transmit_dmh:
-0x3930 004254 set0 mark_ext_patch ,mark 
-0x3931 004255 bpatch patch10_4 ,mem_patch10 
-0x3932 004256 fetch 1 ,mem_state_map 
-0x3933 004257 bbit0 smap_edr ,transmit_noedr 
-0x3934 004258 sub type ,3 ,null 
-0x3935 004259 branch transmit_noedr ,positive 
-0x3936 004260 disable encrypt 
-0x3937 004261 disable encode_fec2 
-0x3938 004262 enable encode_fec0 
-0x3939 004263 disable enable_white 
-0x393a 004264 set1 psk ,radio_ctrl 
-0x393b 004265 isolate1 psk3m ,radio_ctrl 
-0x393c 004266 branch transmit_edr3m ,true 
-0x393d 004267 setarg 0xabeee 
-0x393e 004268 inject mod ,20 
-0x393f 004269 branch transmit_edr_sync_end 
-:      004270 transmit_edr3m:
-0x3940 004271 setarg 0x5faeba 
-0x3941 004272 inject mod ,24 
-0x3942 004273 setarg 0x12 
-0x3943 004274 inject mod ,6 
-:      004275 transmit_edr_sync_end:
-0x3944 004276 enable enable_white 
-0x3945 004277 set1 mark_longpacket ,mark 
-:      004278 transmit_noedr:
-0x3946 004279 enable encrypt 
-0x3947 004280 enable enable_crc 
-0x3948 004281 bmark1 mark_loopback ,transmit_loopback 
-0x3949 004282 fetch 1 ,mem_tx_lch 
-0x394a 004283 inject mod ,3 
-0x394b 004284 fetch 2 ,mem_tx_len 
-0x394c 004285 iforce loopcnt 
-0x394d 004286 bmark1 mark_longpacket ,transmit_long 
-0x394e 004287 inject mod ,5 
-0x394f 004288 branch transmit_stuff 
-:      004289 transmit_long:
-0x3950 004290 inject mod ,13 
-:      004291 transmit_stuff:
-0x3951 004292 fetch 1 ,mem_device_option 
-0x3952 004293 beq dvc_op_hci ,transmit_stuff_hci 
-0x3953 004294 deposit loopcnt 
-0x3954 004295 branch transmit_end ,blank 
-0x3955 004296 fetch 2 ,mem_txptr 
-0x3956 004297 iforce contr 
-:      004298 transmit_stuff_loop:
-0x3957 004299 ifetch 1 ,contr 
-0x3958 004300 inject mod ,8 
-0x3959 004301 loop transmit_stuff_loop 
-0x395a 004302 branch transmit_end 
-:      004303 transmit_stuff_hci:
-0x395b 004304 fetch 2 ,mem_txptr 
-0x395c 004305 iforce contru 
-:      004306 transmit_stuff_hci_loop:
-0x395d 004307 ifetch 1 ,contru 
-0x395e 004308 inject mod ,8 
-0x395f 004309 loop transmit_stuff_hci_loop 
-:      004310 transmit_end:
-0x3960 004311 enable enable_parity 
-0x3961 004312 inject mod ,16 
-0x3962 004313 disable enable_parity 
-0x3963 004314 call set_wait_ack 
-0x3964 004315 fetch 1 ,mem_state_map 
-0x3965 004316 bbit0 smap_edr ,end_of_packet 
-0x3966 004317 force 0 ,pdata 
-0x3967 004318 inject mod ,6 
-0x3968 004319 branch end_of_packet 
-:      004322 transmit_loopback:
-0x3969 004323 set0 mark_ext_patch ,mark 
-0x396a 004324 bpatch patch10_5 ,mem_patch10 
-0x396b 004325 bmark1 mark_longpacket ,transmit_loopback_long 
-:      004326 transmit_loopback_short:
-0x396c 004327 fetch 1 ,mem_lch_code 
-0x396d 004328 inject mod ,3 
-0x396e 004329 fetch 1 ,mem_len 
-0x396f 004330 iforce regc 
-0x3970 004331 inject mod ,5 
-0x3971 004332 branch transmit_loopback_cont 
-:      004333 transmit_loopback_long:
-0x3972 004334 fetch 1 ,mem_lch_code 
-0x3973 004335 inject mod ,3 
-0x3974 004336 fetch 2 ,mem_len 
-0x3975 004337 iforce regc 
-0x3976 004338 inject mod ,13 
-:      004339 transmit_loopback_cont:
-0x3977 004340 arg mem_rxbuf ,contr 
-:      004341 transmit_loopback_loop:
-0x3978 004342 copy regc ,null 
-0x3979 004343 branch transmit_loopback_end ,zero 
-0x397a 004344 ifetch 1 ,contr 
-0x397b 004345 inject mod ,8 
-0x397c 004346 increase -1 ,regc 
-0x397d 004347 branch transmit_loopback_loop 
-:      004348 transmit_loopback_end:
-0x397e 004349 fetch 2 ,mem_tst_pktcnt_dmh 
-0x397f 004350 increase 1 ,pdata 
-0x3980 004351 store 2 ,mem_tst_pktcnt_dmh 
-0x3981 004352 branch transmit_end 
-:      004355 apply_switch_clke:
-0x3982 004356 fetch 4 ,mem_clke_bt 
-0x3983 004357 add pdata ,7 ,rega 
-0x3984 004358 fetch 2 ,mem_slot_offset 
-0x3985 004359 nbranch apply_switch_nozero ,blank 
-0x3986 004360 increase -3 ,rega 
-0x3987 004361 branch apply_switch_wait_loop 
-:      004362 apply_switch_nozero:
-0x3988 004363 mul32 pdata ,12 ,pdata 
-0x3989 004364 hfetcht 2 ,core_halfslot 
-0x398a 004365 increase 1 ,temp 
-:      004366 apply_switch_loop:
-0x398b 004367 isub temp ,pdata 
-0x398c 004368 nbranch apply_switch_bt ,positive 
-0x398d 004369 increase -1 ,rega 
-0x398e 004370 branch apply_switch_loop 
-:      004371 apply_switch_bt:
-0x398f 004372 sub pdata ,0 ,pdata 
-:      004373 apply_switch_wait_loop:
-0x3990 004374 until null ,oneslot 
-0x3991 004375 compare 0 ,clkn_bt ,3 
-0x3992 004376 nbranch apply_switch_wait_loop ,true 
-0x3993 004377 iforce clke_rt 
-0x3994 004378 copy rega ,clke_bt 
-0x3995 004379 iforce clke_rt 
-0x3996 004380 rtn 
-:      004383 calc_slot_offset:
-0x3997 004384 set0 mark_ext_patch ,mark 
-0x3998 004385 bpatch patch10_6 ,mem_patch10 
-0x3999 004386 until null ,halfslot 
-0x399a 004387 deposit clke 
-0x399b 004388 iforce contr 
-0x399c 004389 rshift16 ,pdata ,pdata 
-0x399d 004390 isub clkn_bt ,loopcnt 
-0x399e 004391 and_into 3 ,loopcnt 
-0x399f 004392 nbranch calc_bt_portion ,zero 
-0x39a0 004393 force 0 ,pdata 
-0x39a1 004394 branch calc_skip_bt 
-:      004395 calc_bt_portion:
-0x39a2 004396 arg 3750 ,temp 
-0x39a3 004397 force 0 ,pdata 
-:      004398 calc_slot_offset_loop:
-0x39a4 004399 iadd temp ,pdata 
-0x39a5 004400 loop calc_slot_offset_loop 
-:      004401 calc_skip_bt:
-0x39a6 004402 iadd contr ,pdata 
-0x39a7 004403 div pdata ,12 
-0x39a8 004404 call wait_div_end 
-0x39a9 004405 quotient pdata 
-0x39aa 004406 store 2 ,mem_slot_offset 
-0x39ab 004407 rtn 
-:      004409 calc_clke_offset:
-0x39ac 004410 set0 mark_ext_patch ,mark 
-0x39ad 004411 bpatch patch10_7 ,mem_patch10 
-0x39ae 004412 deposit clke 
-0x39af 004413 copy clkn ,temp 
-0x39b0 004414 isub temp ,null 
-0x39b1 004415 nsetflag positive ,44 ,pdata 
-0x39b2 004416 isub temp ,temp 
-0x39b3 004417 setarg 3750 
-0x39b4 004418 isolate0 15 ,temp 
-0x39b5 004419 branch calc_clke_pos ,true 
-0x39b6 004420 setarg -61786 
-0x39b7 004421 iadd temp ,temp 
-:      004422 calc_clke_pos:
-0x39b8 004423 storet 6 ,mem_le_clk_offset 
-0x39b9 004424 rtn le 
-0x39ba 004425 storet 6 ,mem_clk_offset 
-0x39bb 004426 rtn 
-:      004428 calc_clke:
-0x39bc 004429 disable clknt 
-0x39bd 004430 fetch 6 ,mem_le_clk_offset 
-0x39be 004431 branch calc_clke2 ,le 
-0x39bf 004432 fetch 6 ,mem_clk_offset 
-:      004433 calc_clke2:
-0x39c0 004434 iadd clkn ,alarm 
-0x39c1 004435 increase 10 ,alarm 
-0x39c2 004436 setarg 3750 
-0x39c3 004437 isub alarm ,pdata 
-0x39c4 004438 isolate0 15 ,pdata 
-0x39c5 004439 branch calc_clke_pos_adj ,true 
-0x39c6 004440 setarg 0xf15a 
-0x39c7 004441 iadd alarm ,alarm 
-:      004442 calc_clke_pos2:
-0x39c8 004443 copy alarm ,clke 
-0x39c9 004444 rtn 
-:      004445 calc_clke_pos_adj:
-0x39ca 004446 force 0 ,null 
-0x39cb 004447 branch calc_clke_pos2 
-:      004454 calc_radio_freq:
-0x39cc 004455 set0 mark_ext_patch ,mark 
-0x39cd 004456 bpatch patch11_0 ,mem_patch11 
-0x39ce 004457 call set_sync_on 
-0x39cf 004458 copy bt_clk ,pdata 
-0x39d0 004459 and_into 0x180 ,pdata 
-0x39d1 004460 compare 3 ,freq_mode ,0x07 
-0x39d2 004461 nbranch freq_not_connection ,true 
-0x39d3 004462 rshift3 pdata ,pdata 
-0x39d4 004463 iadd freq_index ,pdata 
-0x39d5 004464 branch do_hop_mod_now 
-:      004465 freq_not_connection:
-0x39d6 004466 copy freq_index ,pdata 
-:      004467 do_hop_mod_now:
-0x39d7 004468 div pdata ,79 
-0x39d8 004469 pulse recalc 
-0x39d9 004470 call wait_div_end 
-0x39da 004471 remainder rega 
-0x39db 004472 add rega ,-40 ,temp 
-0x39dc 004473 branch odd_half ,positive 
-0x39dd 004474 lshift rega ,temp 
-0x39de 004475 branch freq_result 
-:      004476 odd_half:
-0x39df 004477 lshift temp ,temp 
-0x39e0 004478 increase 1 ,temp 
-:      004479 freq_result:
-0x39e1 004480 set0 mark_ext_patch ,mark 
-0x39e2 004481 bpatch patch11_1 ,mem_patch11 
-0x39e3 004482 fetch 1 ,mem_mode 
-0x39e4 004483 bbit0 afh_change ,afh_process_con 
-:      004484 afh_process_0:
-0x39e5 004485 fetch 4 ,mem_afh_instant 
-0x39e6 004486 isub bt_clk ,null 
-0x39e7 004487 branch afh_process_con ,positive 
-0x39e8 004488 call afh_clear 
-0x39e9 004489 fetch 1 ,mem_afh_new_mod 
-0x39ea 004490 rtn blank 
-0x39eb 004491 fetch 1 ,mem_mode 
-0x39ec 004492 set1 afh_enable ,pdata 
-0x39ed 004493 store 1 ,mem_mode 
-0x39ee 004494 fetch 5 ,mem_afh_map_new 
-0x39ef 004495 store 5 ,mem_afh_map_lo 
-0x39f0 004496 ifetch 5 ,contr 
-0x39f1 004497 store 5 ,mem_afh_map_hi 
-0x39f2 004498 call afh_process_freq_map 
-:      004499 afh_process_con:
-0x39f3 004500 fetch 1 ,mem_mode 
-0x39f4 004501 rtnbit0 afh_enable 
-0x39f5 004502 isolate1 1 ,bt_clk 
-0x39f6 004503 branch afh_same_channel ,true 
-0x39f7 004504 rshift3 temp ,rega 
-0x39f8 004505 and temp ,7 ,queue 
-0x39f9 004506 setarg mem_afh_map_lo 
-0x39fa 004507 iadd rega ,rega 
-0x39fb 004508 ifetch 1 ,rega 
-0x39fc 004509 qisolate0 pdata 
-0x39fd 004510 branch afh_process_1 ,true 
-0x39fe 004511 deposit temp 
-0x39ff 004512 branch afh_process_end 
-:      004513 afh_process_1:
-0x3a00 004514 fetch 1 ,mem_afh_used 
-0x3a01 004515 iforce regb 
-0x3a02 004516 deposit bt_clk 
-0x3a03 004517 and_into 0x180 ,pdata 
-0x3a04 004518 rshift3 pdata ,pdata 
-0x3a05 004519 iadd freq_index ,pdata 
-0x3a06 004520 idiv regb 
-0x3a07 004521 setarg mem_afh_map 
-0x3a08 004522 call wait_div_end 
-0x3a09 004523 remainder rega 
-0x3a0a 004524 iadd rega ,contr 
-0x3a0b 004525 ifetch 1 ,contr 
-:      004526 afh_process_end:
-0x3a0c 004527 store 1 ,mem_afh_index 
-0x3a0d 004528 iforce temp 
-0x3a0e 004529 rtn 
-:      004531 afh_same_channel:
-0x3a0f 004532 fetch 1 ,mem_afh_index 
-0x3a10 004533 iforce temp 
-0x3a11 004534 rtn 
-:      004536 afh_clear:
-0x3a12 004537 fetch 1 ,mem_mode 
-0x3a13 004538 set0 afh_enable ,pdata 
-0x3a14 004539 set0 afh_change ,pdata 
-0x3a15 004540 store 1 ,mem_mode 
-0x3a16 004541 rtn 
-:      004547 afh_process_freq_map:
-0x3a17 004548 set0 mark_ext_patch ,mark 
-0x3a18 004549 bpatch patch11_2 ,mem_patch11 
-0x3a19 004550 arg mem_afh_map ,contw 
-0x3a1a 004551 force 10 ,loopcnt 
-0x3a1b 004552 call memset0 
-0x3a1c 004553 arg mem_afh_map ,contw 
-0x3a1d 004554 force 0 ,regc 
-0x3a1e 004555 force 2 ,queue 
-:      004556 process_freq_3:
-0x3a1f 004557 fetch 5 ,mem_afh_map_lo 
-0x3a20 004558 iforce temp 
-0x3a21 004559 compare 2 ,queue ,0xff 
-0x3a22 004560 branch process_freq_1 ,true 
-0x3a23 004561 rshift temp ,temp 
-:      004562 process_freq_1:
-0x3a24 004563 isolate0 0 ,temp 
-0x3a25 004564 branch process_freq_0 ,true 
-0x3a26 004565 deposit regc 
-0x3a27 004566 istore 1 ,contw 
-:      004567 process_freq_0:
-0x3a28 004568 rshift2 temp ,temp 
-0x3a29 004569 increase 2 ,regc 
-0x3a2a 004570 compare 40 ,regc ,0xfe 
-0x3a2b 004571 nbranch process_freq_2 ,true 
-0x3a2c 004572 fetch 5 ,mem_afh_map_hi 
-0x3a2d 004573 iforce temp 
-0x3a2e 004574 compare 2 ,queue ,0xff 
-0x3a2f 004575 branch process_freq_2 ,true 
-0x3a30 004576 rshift temp ,temp 
-:      004577 process_freq_2:
-0x3a31 004578 sub regc ,78 ,null 
-0x3a32 004579 branch process_freq_1 ,positive 
-0x3a33 004580 force 1 ,regc 
-0x3a34 004581 increase -1 ,queue 
-0x3a35 004582 nbranch process_freq_3 ,zero 
-0x3a36 004583 arg mem_afh_map ,rega 
-0x3a37 004584 deposit contw 
-0x3a38 004585 isub rega ,pdata 
-0x3a39 004586 store 1 ,mem_afh_used 
-0x3a3a 004587 rtn 
-:      004589 rx_radio_freq:
-0x3a3b 004590 set0 mark_ext_patch ,mark 
-0x3a3c 004591 bpatch patch11_3 ,mem_patch11 
-0x3a3d 004592 call calc_radio_freq 
-0x3a3e 004593 fetch 1 ,mem_debug_config 
-0x3a3f 004594 bbit0 debug_rx_fixed_freq ,rx_radio_freq_now 
-0x3a40 004595 fetcht 1 ,mem_rx_fixed_freq 
-:      004596 rx_radio_freq_now:
-0x3a41 004597 branch set_freq_rx 
-:      004600 tx_radio_freq:
-0x3a42 004601 set0 mark_ext_patch ,mark 
-0x3a43 004602 bpatch patch11_4 ,mem_patch11 
-0x3a44 004603 call calc_radio_freq 
-0x3a45 004604 fetch 1 ,mem_debug_config 
-0x3a46 004605 bbit0 debug_tx_fixed_freq ,tx_radio_freq_now 
-0x3a47 004606 fetcht 1 ,mem_tx_fixed_freq 
-:      004607 tx_radio_freq_now:
-0x3a48 004608 branch set_freq_tx 
-:      004611 fetch_giac:
-0x3a49 004612 force 0 ,uap 
-0x3a4a 004613 fetch 3 ,mem_glap 
-0x3a4b 004614 iforce lap 
-0x3a4c 004615 rtn 
-:      004617 fetch_page_bt_adr:
-0x3a4d 004618 set0 mark_ext_patch ,mark 
-0x3a4e 004619 bpatch patch11_5 ,mem_patch11 
-0x3a4f 004620 fetch 1 ,mem_hci_puap 
-0x3a50 004621 icopy uap 
-0x3a51 004622 fetch 3 ,mem_hci_plap 
-0x3a52 004623 icopy lap 
-0x3a53 004624 rtn 
-:      004626 fetch_self_bt_adr:
-0x3a54 004627 set0 mark_ext_patch ,mark 
-0x3a55 004628 bpatch patch11_6 ,mem_patch11 
-0x3a56 004629 fetch 2 ,mem_nap 
-0x3a57 004630 icopy nap 
-0x3a58 004631 fetch 1 ,mem_uap 
-0x3a59 004632 icopy uap 
-0x3a5a 004633 fetch 3 ,mem_lap 
-0x3a5b 004634 icopy lap 
-0x3a5c 004635 rtn 
-:      004637 fetch_extm_bt_adr:
-0x3a5d 004638 set0 mark_ext_patch ,mark 
-0x3a5e 004639 bpatch patch11_7 ,mem_patch11 
-0x3a5f 004640 fetch 2 ,mem_pnap 
-0x3a60 004641 icopy nap 
-0x3a61 004642 fetch 1 ,mem_puap 
-0x3a62 004643 icopy uap 
-0x3a63 004644 fetch 3 ,mem_plap 
-0x3a64 004645 icopy lap 
-0x3a65 004646 rtn 
-:      004649 fetch_diac:
-0x3a66 004650 bmark1 mark_all_diac ,fetch_diac_do 
-0x3a67 004651 rtnmark0 mark_inquiry_state 
-0x3a68 004652 rtnmark0 mark_periodical_diac 
-:      004653 fetch_diac_do:
-0x3a69 004654 and_into -256 ,lap 
-0x3a6a 004655 pulse recalc 
-0x3a6b 004656 nop 32 
-0x3a6c 004657 rtn 
-:      004660 shutdown_radio:
-0x3a6d 004661 set0 mark_ext_patch ,mark 
-0x3a6e 004662 bpatch patch12_0 ,mem_patch12 
-0x3a6f 004663 force 0 ,radio_ctrl 
-0x3a70 004664 disable is_rx 
-0x3a71 004665 disable is_tx 
-0x3a72 004666 pulse packet_end 
-0x3a73 004667 hjam 0x0 ,rfen_mdm 
-0x3a74 004668 hjam 0x0 ,rfen_tx 
-0x3a75 004669 hjam 0x0 ,rfen_rx 
-0x3a76 004670 hjam 0 ,rfen_sn 
-0x3a77 004671 hjam 0x70 ,rfen_msc 
-0x3a78 004672 hjam 0x0 ,rfen_adc 
-0x3a79 004673 rtn 
-:      004675 set_sync_on:
-0x3a7a 004676 set0 mark_ext_patch ,mark 
-0x3a7b 004677 bpatch patch12_1 ,mem_patch12 
-0x3a7c 004678 hjam 0x0 ,rfen_mdm 
-0x3a7d 004679 hjam 0x0 ,rfen_tx 
-0x3a7e 004680 hjam 0x18 ,rfen_rx 
-0x3a7f 004681 hjam 0xa7 ,rfen_sn 
-0x3a80 004682 hjam 0x7f ,rfen_msc 
-0x3a81 004683 rtn 
-:      004686 set_freq_rx:
-0x3a82 004687 set0 mark_ext_patch ,mark 
-0x3a83 004688 bpatch patch12_2 ,mem_patch12 
-0x3a84 004690 storet 1 ,mem_last_freq 
-0x3a85 004691 add temp ,rx_freq_offset ,rega 
-0x3a86 004692 branch rf_write_freq 
-:      004693 rf_rx_enable:
-0x3a87 004694 set0 mark_ext_patch ,mark 
-0x3a88 004695 bpatch patch12_3 ,mem_patch12 
-0x3a89 004696 hjam 0xcf ,rfen_tx 
-0x3a8a 004697 nop 10 
-0x3a8b 004698 hjam 0xff ,rfen_rx 
-0x3a8c 004699 hjam 0xaf ,rfen_sn 
-0x3a8d 004700 hjam 0xff ,rfen_msc 
-0x3a8e 004701 nop 10 
-0x3a8f 004702 hjam 0xa0 ,rfen_mdm 
-0x3a90 004703 rtn 
-:      004706 set_freq_tx:
-0x3a91 004707 set0 mark_ext_patch ,mark 
-0x3a92 004708 bpatch patch12_4 ,mem_patch12 
-0x3a93 004709 storet 1 ,mem_last_freq 
-0x3a94 004710 add temp ,tx_freq_offset ,rega 
-0x3a95 004711 call rf_write_freq 
-0x3a96 004712 setarg param_pll_setup 
-0x3a97 004713 call sleep 
-:      004714 txon:
-0x3a98 004715 hjam 0x1 ,rfen_adc 
-0x3a99 004716 hjam 0x3c ,rfen_rx 
-0x3a9a 004717 hjam 0xe0 ,rfen_tx 
-0x3a9b 004718 hjam 0xb7 ,rfen_sn 
-0x3a9c 004719 hjam 0x7f ,rfen_mdm 
-0x3a9d 004720 rtn 
-:      004722 initialize_radio:
-0x3a9e 004723 hjam clksel_rc ,core_clksel 
-0x3a9f 004724 call init_rf_regs 
-0x3aa0 004725 call init_agc_table 
-:      004726 initialize_radio_wait:
-0x3aa1 004727 fetch 2 ,mem_rf_init_ptr 
-0x3aa2 004728 bbit0 14 ,initialize_radio_wait 
-0x3aa3 004729 iforce contr 
-0x3aa4 004730 arg 0x8900 ,temp 
-:      004731 initialize_radio_loop:
-0x3aa5 004732 ifetch 1 ,contr 
-0x3aa6 004733 beq 0xff ,initialize_radio_cont 
-0x3aa7 004734 ior temp ,contw 
-0x3aa8 004735 ifetch 1 ,contr 
-0x3aa9 004736 istore 1 ,contw 
-0x3aaa 004737 branch initialize_radio_loop 
-:      004738 initialize_radio_cont:
-0x3aab 004739 set0 mark_ext_patch ,mark 
-0x3aac 004740 bpatch patch12_5 ,mem_patch12 
-0x3aad 004741 call lpm_cal_xtal_startup 
-0x3aae 004742 call switchto_dpllclk 
-0x3aaf 004744 setarg param_dpll_start_delay 
-0x3ab0 004745 iadd clkn_bt ,pdata 
-0x3ab1 004746 store 4 ,mem_dpll_clkn 
-0x3ab2 004747 set1 reset ,radio_ctrl 
-0x3ab3 004748 force 0 ,radio_ctrl 
-0x3ab4 004749 ncall do_rccal ,wake 
-0x3ab5 004750 branch set_rccal 
-:      004753 rf_write_freq:
-0x3ab6 004754 set0 mark_ext_patch ,mark 
-0x3ab7 004755 bpatch patch12_6 ,mem_patch12 
-0x3ab8 004756 setarg 2400 
-0x3ab9 004757 iadd rega ,temp 
-0x3aba 004758 fetch 1 ,mem_fcomp_mul 
-0x3abb 004759 hjam 0x04 ,rf_pll_rstn 
-0x3abc 004760 imul32 temp ,pdata 
-0x3abd 004761 fetcht 1 ,mem_fcomp_div 
-0x3abe 004762 idiv temp 
-0x3abf 004763 call wait_div_end 
-0x3ac0 004764 quotient rega 
-0x3ac1 004765 remainder pdata 
-0x3ac2 004766 lshift16 pdata ,pdata 
-0x3ac3 004767 lshift4 pdata ,pdata 
-0x3ac4 004768 idiv temp 
-0x3ac5 004769 call wait_div_end 
-0x3ac6 004770 quotient pdata 
-0x3ac7 004771 lshift8 pdata ,pdata 
-0x3ac8 004772 lshift pdata ,pdata 
-0x3ac9 004773 ior rega ,pdata 
-0x3aca 004774 hstore 4 ,rf_pll_intg 
-0x3acb 004775 hjam 0x44 ,rf_pll_rstn 
-0x3acc 004776 hjam 0xc4 ,rf_pll_rstn 
-0x3acd 004777 rtn 
-:      004780 do_rccal:
-0x3ace 004781 set0 mark_ext_patch ,mark 
-0x3acf 004782 bpatch patch12_7 ,mem_patch12 
-0x3ad0 004783 hjam 0x02 ,rfen_adc 
-0x3ad1 004784 setarg 250000 
-0x3ad2 004785 call sleep 
-0x3ad3 004786 hjam 0x7f ,rfen_rx 
-0x3ad4 004787 nop 130 
-0x3ad5 004788 hjam 0x30 ,rf_rccal_ctrl 
-0x3ad6 004789 hjam 0xd0 ,rfen_tx 
-0x3ad7 004790 hjam 0x70 ,rf_rccal_ctrl 
-0x3ad8 004791 hjam 0xf0 ,rf_rccal_ctrl 
-0x3ad9 004792 force 50 ,loopcnt 
-:      004793 do_rccal_loop:
-0x3ada 004794 hfetch 1 ,rf_rccal_result 
-0x3adb 004795 bbit1 5 ,do_rccal_end 
-0x3adc 004796 loop do_rccal_loop 
-:      004797 do_rccal_end:
-0x3add 004798 store 1 ,mem_rf_rccal 
-0x3ade 004799 hjam 0 ,rfen_tx 
-0x3adf 004800 hjam 0 ,rfen_rx 
-0x3ae0 004801 hjam 0x00 ,rfen_adc 
-0x3ae1 004802 rtn 
-:      004804 set_rccal:
-0x3ae2 004805 set0 mark_ext_patch ,mark 
-0x3ae3 004806 bpatch patch13_0 ,mem_patch13 
-0x3ae4 004807 fetch 1 ,mem_rf_rccal 
-0x3ae5 004808 set1 5 ,pdata 
-0x3ae6 004809 hstore 1 ,rf_rccal_ctrl 
-0x3ae7 004810 hfetcht 1 ,rf_bpf_ctrim 
-0x3ae8 004811 and_into 7 ,temp 
-0x3ae9 004812 lshift3 pdata ,pdata 
-0x3aea 004813 ior temp ,pdata 
-0x3aeb 004814 hstore 1 ,rf_bpf_ctrim 
-0x3aec 004815 hfetch 1 ,rf_bpf_ib 
-0x3aed 004816 set0 bpf_rccal ,pdata 
-0x3aee 004817 hstore 1 ,rf_bpf_ib 
-0x3aef 004818 hfetch 1 ,rf_adc_rccal 
-0x3af0 004819 set0 adc_rccal ,pdata 
-0x3af1 004820 hstore 1 ,rf_adc_rccal 
-0x3af2 004821 rtn 
-:      004823 save_rssi:
-0x3af3 004824 set0 mark_ext_patch ,mark 
-0x3af4 004825 bpatch patch13_1 ,mem_patch13 
-0x3af5 004826 hfetch 2 ,rf_afc_d2a 
-0x3af6 004827 rshift4 pdata ,pdata 
-0x3af7 004828 rshift3 pdata ,pdata 
-0x3af8 004829 sub pdata ,0 ,pdata 
-0x3af9 004830 and_into 0xff ,pdata 
-0x3afa 004831 div pdata ,10 
-0x3afb 004832 call wait_div_end 
-0x3afc 004833 quotient pdata 
-0x3afd 004834 lshift4 pdata ,pdata 
-0x3afe 004835 remainder temp 
-0x3aff 004836 ior temp ,pdata 
-0x3b00 004837 store 1 ,mem_rssi 
-0x3b01 004838 rtn 
-:      004840 switchto_rcclk:
-0x3b02 004841 hjam 0xa ,core_clksel 
-0x3b03 004842 hjam 0 ,rfen_ck 
-0x3b04 004843 hfetch 3 ,core_lpm_ctrl 
-0x3b05 004844 hstore 3 ,core_lpm_reg 
-0x3b06 004845 hjam 0xfc ,core_lpm_reg 
-0x3b07 004846 call lpm_write_ctrl 
-0x3b08 004847 nop 1000 
-0x3b09 004848 rtn 
-:      004850 switchto_dpllclk:
-0x3b0a 004851 hjam clksel_rc ,core_clksel 
-0x3b0b 004852 hfetch 1 ,rf_clkpll_frac + 2 
-0x3b0c 004853 set0 4 ,pdata 
-0x3b0d 004854 set0 5 ,pdata 
-0x3b0e 004855 hstore 1 ,rf_clkpll_frac + 2 
-0x3b0f 004856 hjam 0x00 ,rfen_ck 
-0x3b10 004857 hjam 0x00 ,rfen_msc 
-0x3b11 004858 hjam 0x70 ,rfen_msc 
-0x3b12 004859 hjam 0xff ,rfen_ck 
-0x3b13 004860 hfetch 1 ,rf_clkpll_frac + 2 
-0x3b14 004861 set1 4 ,pdata 
-0x3b15 004862 set1 5 ,pdata 
-0x3b16 004863 hstore 1 ,rf_clkpll_frac + 2 
-0x3b17 004864 call init_lpm_ctrl 
-0x3b18 004865 hfetch 1 ,rf_clkpll_int 
-0x3b19 004866 set1 7 ,pdata 
-0x3b1a 004867 hstore 1 ,rf_clkpll_int 
-0x3b1b 004868 set0 7 ,pdata 
-0x3b1c 004869 hstore 1 ,rf_clkpll_int 
-0x3b1d 004870 set1 7 ,pdata 
-0x3b1e 004871 hstore 1 ,rf_clkpll_int 
-0x3b1f 004872 hjam clksel_dpll ,core_clksel 
-0x3b20 004873 rtn 
-:      004875 check_dpll:
-0x3b21 004876 nop 1000 
-0x3b22 004877 hjam clksel_xtal ,core_clksel 
-0x3b23 004878 nop 10 
-0x3b24 004879 hjam 0x00 ,core_bist_ctrl 
-0x3b25 004880 hjam ccnt_start ,core_misc_ctrl 
-:      004881 check_dpll_loop:
-0x3b26 004882 hfetch 1 ,core_perf_status 
-0x3b27 004883 bbit0 1 ,check_dpll_loop 
-0x3b28 004884 hfetcht 3 ,core_clk_counter 
-0x3b29 004885 hjam clksel_dpll ,core_clksel 
-0x3b2a 004886 nop 10 
-0x3b2b 004887 hjam ccnt_start ,core_misc_ctrl 
-:      004888 check_dpll_loop2:
-0x3b2c 004889 hfetch 1 ,core_perf_status 
-0x3b2d 004890 bbit0 1 ,check_dpll_loop2 
-0x3b2e 004891 hfetch 3 ,core_clk_counter 
-0x3b2f 004892 isub temp ,pdata 
-0x3b30 004893 branch check_dpll_pos ,positive 
-0x3b31 004894 sub pdata ,0 ,pdata 
-:      004895 check_dpll_pos:
-0x3b32 004896 store 2 ,mem_dpll_error 
-0x3b33 004897 sub pdata ,70 ,null 
-:      004898 check_dpll_assert:
-0x3b34 004899 nbranch check_dpll_assert ,positive 
-0x3b35 004900 rtn 
-:      004902 xtal_fast_wake:
-0x3b36 004903 setarg 0xf0f 
-0x3b37 004904 branch lpm_write_config 
-:      004906 init_lpm_ctrl:
-0x3b38 004907 setarg 0x80f 
-0x3b39 004908 branch lpm_write_config 
-:      004912 start_receiver:
-0x3b3a 004913 set0 mark_ext_patch ,mark 
-0x3b3b 004914 bpatch patch13_2 ,mem_patch13 
-0x3b3c 004915 call rf_rx_enable 
-0x3b3d 004916 disable is_tx 
-0x3b3e 004917 enable is_rx 
-0x3b3f 004918 pulse init_encrypt 
-0x3b40 004919 rtn 
-:      004921 prep_crypt:
-0x3b41 004922 set0 mark_ext_patch ,mark 
-0x3b42 004923 bpatch patch13_3 ,mem_patch13 
-0x3b43 004924 fetch 1 ,mem_state_map 
-0x3b44 004925 isolate1 smap_encryption ,pdata 
-0x3b45 004926 setflag true ,0 ,pdata 
-0x3b46 004927 hstore 1 ,core_encrypt 
-0x3b47 004928 arg mem_kc ,contr 
-0x3b48 004929 ifetch 9 ,contr 
-0x3b49 004930 iforce kc_ls 
-0x3b4a 004931 ifetch 7 ,contr 
-0x3b4b 004932 iforce kc_ms 
-0x3b4c 004933 fetch 1 ,mem_key_size 
-0x3b4d 004934 add pdata ,-1 ,g1l 
-0x3b4e 004935 pulse kc_p_activate 
-0x3b4f 004936 rtn 
-:      004938 wait_access_clke_rt:
-0x3b50 004939 set0 mark_ext_patch ,mark 
-0x3b51 004940 bpatch patch13_4 ,mem_patch13 
-0x3b52 004941 enable decode_fec0 
-0x3b53 004942 arg param_conn_access ,timeup 
-0x3b54 004943 correlate clke_rt ,meet 
-:      004944 wait_access_end:
-0x3b55 004945 deposit clke 
-0x3b56 004946 store 6 ,mem_sync_clke 
-0x3b57 004947 disable decode_fec0 
-0x3b58 004948 nbranch shutdown_radio ,sync 
-0x3b59 004949 arg param_clke_cal ,clke_rt 
-0x3b5a 004950 increase 1 ,clke_bt 
-0x3b5b 004951 and_into 0x1fc ,clke_bt 
-0x3b5c 004952 rtn 
-:      004956 wait_access_mhalfbnd:
-0x3b5d 004957 enable decode_fec0 
-:      004958 wait_access_mhalfbnd_correlate:
-0x3b5e 004959 correlate null ,mhalfbnd 
-0x3b5f 004960 branch wait_access_end ,sync 
-0x3b60 004961 compare 0x02 ,clke_bt ,0x02 
-0x3b61 004962 nbranch wait_access_mhalfbnd_correlate ,true 
-0x3b62 004963 branch wait_access_end 
-:      004965 wait_access_clkn_rt:
-0x3b63 004966 set0 mark_ext_patch ,mark 
-0x3b64 004967 bpatch patch13_5 ,mem_patch13 
-0x3b65 004968 arg param_conn_access ,timeup 
-0x3b66 004969 enable decode_fec0 
-0x3b67 004970 correlate clkn_rt ,meet 
-0x3b68 004971 disable decode_fec0 
-0x3b69 004972 nbranch shutdown_radio ,sync 
-0x3b6a 004973 rtn 
-:      004975 wait_access_forever:
-0x3b6b 004976 set0 mark_ext_patch ,mark 
-0x3b6c 004977 bpatch patch13_6 ,mem_patch13 
-0x3b6d 004978 enable decode_fec0 
-0x3b6e 004979 correlate null ,timeout 
-0x3b6f 004980 disable decode_fec0 
-0x3b70 004981 nbranch shutdown_radio ,sync 
-0x3b71 004982 arg param_clke_cal ,clke_rt 
-0x3b72 004983 and_into 0x1fc ,clke_bt 
-0x3b73 004984 rtn 
-:      004987 reserve_slot:
-0x3b74 004988 set0 mark_ext_patch ,mark 
-0x3b75 004989 bpatch patch13_7 ,mem_patch13 
-0x3b76 004990 iforce rega 
-0x3b77 004991 deposit bt_clk 
-0x3b78 004992 iadd temp ,timeup 
-0x3b79 004993 copy timeup ,pdata 
-0x3b7a 004994 store 4 ,mem_next_btclk 
-0x3b7b 004995 deposit rega 
-0x3b7c 004996 rtn 
-:      004999 ahead_window:
-0x3b7d 005000 copy pdata ,temp 
-0x3b7e 005001 set0 mark_ext_patch ,mark 
-0x3b7f 005002 bpatch patch14_0 ,mem_patch14 
-0x3b80 005003 copy temp ,pdata 
-0x3b81 005004 call clk2bt 
-0x3b82 005005 lshift16 bt_clk ,pdata 
-0x3b83 005006 set1 44 ,pdata 
-0x3b84 005007 call clk_diff 
-0x3b85 005008 set0 44 ,pdata 
-0x3b86 005009 call get_clk 
-0x3b87 005010 call clk_diff 
-0x3b88 005011 rtn user 
-0x3b89 005012 call clk2rt 
-0x3b8a 005013 iforce stop_watch 
-0x3b8b 005014 until null ,timeout 
-0x3b8c 005015 rtn 
-:      005018 setup_clk:
-0x3b8d 005019 set0 mark_ext_patch ,mark 
-0x3b8e 005020 bpatch patch14_1 ,mem_patch14 
-0x3b8f 005021 branch setup_clkn ,clknt 
-0x3b90 005022 until clke_rt ,meet 
-:      005023 skip_setup_clke:
-0x3b91 005024 copy clke_bt ,temp 
-0x3b92 005025 branch setup_clknbt 
-:      005026 setup_clkn:
-0x3b93 005027 branch skip_setup_clkn ,attempt 
-0x3b94 005028 until clkn_rt ,meet 
-:      005029 skip_setup_clkn:
-0x3b95 005030 copy clkn_bt ,temp 
-:      005031 setup_clknbt:
-0x3b96 005032 branch setup_clk11 ,user 
-0x3b97 005033 compare 1 ,temp ,3 
-0x3b98 005034 nbranch setup_clk ,true 
-:      005035 setup_complete:
-0x3b99 005036 set0 mark_ext_patch ,mark 
-0x3b9a 005037 bpatch patch14_2 ,mem_patch14 
-0x3b9b 005038 fetch 1 ,mem_state 
-0x3b9c 005039 rtnbit0 state_inconn 
-0x3b9d 005040 fetch 4 ,mem_next_btclk 
-0x3b9e 005041 isub temp ,pdata 
-0x3b9f 005042 nrtn positive 
-0x3ba0 005043 sub pdata ,0xff ,null 
-0x3ba1 005044 branch setup_clk ,positive 
-0x3ba2 005045 rtn 
-:      005046 setup_clk11:
-0x3ba3 005047 compare 3 ,temp ,3 
-0x3ba4 005048 nbranch setup_clk ,true 
-0x3ba5 005049 branch setup_complete 
-:      005051 rf_setup_time:
-0x3ba6 005052 set0 mark_ext_patch ,mark 
-0x3ba7 005053 bpatch patch14_3 ,mem_patch14 
-0x3ba8 005054 arg param_rf_setup ,timeup 
-0x3ba9 005055 branch setup_clk 
-:      005057 rf_setup_time_slave_slot:
-0x3baa 005058 disable user 
-0x3bab 005059 branch rf_setup_time 
-:      005061 rf_setup_time_master_slot:
-0x3bac 005062 enable user 
-0x3bad 005063 branch rf_setup_time 
-:      005065 start_transmitter:
-0x3bae 005066 set0 mark_ext_patch ,mark 
-0x3baf 005067 bpatch patch14_4 ,mem_patch14 
-0x3bb0 005068 call prep_crypt 
-0x3bb1 005069 disable is_rx 
-0x3bb2 005070 enable is_tx 
-0x3bb3 005071 rtn 
-:      005075 start_tx_native:
-0x3bb4 005076 set0 mark_ext_patch ,mark 
-0x3bb5 005077 bpatch patch14_5 ,mem_patch14 
-0x3bb6 005078 arg param_tx_setup ,timeup 
-0x3bb7 005079 until clkn_rt ,meet 
-0x3bb8 005080 pulse init_encrypt 
-0x3bb9 005081 rtn 
-:      005083 start_rx_native:
-0x3bba 005084 set0 mark_ext_patch ,mark 
-0x3bbb 005085 bpatch patch14_6 ,mem_patch14 
-0x3bbc 005086 arg param_rx_setup ,timeup 
-0x3bbd 005087 until clkn_rt ,meet 
-0x3bbe 005088 rtn 
-:      005091 start_tx_external:
-0x3bbf 005092 set0 mark_ext_patch ,mark 
-0x3bc0 005093 bpatch patch14_7 ,mem_patch14 
-0x3bc1 005094 arg param_tx_setup ,timeup 
-0x3bc2 005095 until clke_rt ,meet 
-0x3bc3 005096 pulse init_encrypt 
-0x3bc4 005097 rtn 
-:      005099 send_access_word:
-0x3bc5 005100 set0 mark_ext_patch ,mark 
-0x3bc6 005101 bpatch patch15_0 ,mem_patch15 
-0x3bc7 005102 preload access 
-0x3bc8 005103 enable encode_fec0 
-0x3bc9 005104 set1 txgfsk ,radio_ctrl 
-0x3bca 005105 inject mod ,72 
-0x3bcb 005106 disable encode_fec0 
-0x3bcc 005107 rtn 
-:      005110 scan_mode_whiten:
-0x3bcd 005111 copy xin ,temp 
-0x3bce 005112 or_into 0x60 ,temp 
-0x3bcf 005113 copy temp ,white_init 
-0x3bd0 005114 rtn 
-:      005119 get_free_amaddr:
-0x3bd1 005120 set0 mark_ext_patch ,mark 
-0x3bd2 005121 bpatch patch15_1 ,mem_patch15 
-0x3bd3 005122 fetch 1 ,mem_current_amaddr 
-0x3bd4 005123 increase 1 ,pdata 
-0x3bd5 005124 bne param_esco_addr ,get_free_amaddr_cont 
-0x3bd6 005125 force 1 ,pdata 
-:      005126 get_free_amaddr_cont:
-0x3bd7 005127 store 1 ,mem_current_amaddr 
-0x3bd8 005128 iforce am_addr 
-0x3bd9 005129 rtn 
-:      005131 get_clk:
-0x3bda 005132 copy clkn ,temp 
-0x3bdb 005133 rtn master 
-0x3bdc 005134 copy clke ,temp 
-0x3bdd 005135 rtn 
-:      005137 get_clkbt:
-0x3bde 005138 deposit clkn_bt 
-0x3bdf 005139 rtn master 
-0x3be0 005140 deposit clke_bt 
-0x3be1 005141 rtn 
-:      005144 supervision_update:
-0x3be2 005145 set0 mark_ext_patch ,mark 
-0x3be3 005146 bpatch patch15_2 ,mem_patch15 
-0x3be4 005147 fetcht 4 ,mem_supervision_timer 
-0x3be5 005148 call get_clkbt 
-0x3be6 005149 isub temp ,timeup 
-0x3be7 005150 deposit timeup 
-0x3be8 005151 fetcht 2 ,mem_supervision_to 
-0x3be9 005152 lshift temp ,temp 
-0x3bea 005153 isub temp ,pdata 
-0x3beb 005154 rtn 
-:      005156 supervision_flush:
-0x3bec 005157 set0 mark_ext_patch ,mark 
-0x3bed 005158 bpatch patch15_3 ,mem_patch15 
-0x3bee 005159 call get_clkbt 
-0x3bef 005160 store 4 ,mem_supervision_timer 
-0x3bf0 005161 rtn 
-:      005163 assert:
-0x3bf1 005164 branch assert 
-:      005166 loop:
-0x3bf2 005167 branch loop 
-:      005169 sleep:
-0x3bf3 005170 rtn blank 
-0x3bf4 005172 rshift pdata ,pdata 
-0x3bf5 005173 increase -3 ,pdata 
-:      005174 sleep_loop:
-0x3bf6 005175 increase -1 ,pdata 
-0x3bf7 005176 nbranch sleep_loop ,zero 
-0x3bf8 005177 force 0 ,pdata 
-0x3bf9 005178 rtn 
-:      005182 init_param:
-0x3bfa 005184 arg 0x10 ,loopcnt 
-0x3bfb 005185 arg 0 ,contw 
-0x3bfc 005186 call memset0 
-0x3bfd 005187 arg mem_le_state ,contw 
-0x3bfe 005188 arg 10 ,loopcnt 
-0x3bff 005189 call memset0 
-0x3c00 005190 jam 0 ,mem_sp_calc 
-0x3c01 005191 jam 0 ,mem_fifo_temp 
-0x3c02 005192 jam 0 ,mem_le_testtype 
-0x3c03 005193 jam 0 ,mem_debug_config 
-0x3c04 005194 jam 0 ,mem_lmp_conn_state 
-0x3c05 005195 set0 mark_ext_patch ,mark 
-0x3c06 005196 bpatch patch15_4 ,mem_patch15 
-0x3c07 005197 jam 0 ,mem_connection_options 
-0x3c08 005198 jam 0 ,mem_tester_emulate 
-0x3c09 005199 jam 0 ,mem_tester_cnt 
-0x3c0a 005200 setarg param_glap 
-0x3c0b 005201 store 3 ,mem_glap 
-0x3c0c 005202 setarg param_acl_pktlen 
-0x3c0d 005203 store 2 ,mem_acl_pktlen 
-0x3c0e 005204 jam param_sco_pktlen ,mem_sco_pktlen 
-0x3c0f 005205 jam param_acl_pktcnt ,mem_acl_pktcnt 
-0x3c10 005206 jam param_sco_pktcnt ,mem_sco_pktcnt 
-0x3c11 005207 setarg param_hci_version 
-0x3c12 005208 store 3 ,mem_hci_version 
-0x3c13 005209 setarg param_lmp_version 
-0x3c14 005210 store 3 ,mem_lmp_version 
-0x3c15 005211 setarg param_lmp_subversion 
-0x3c16 005212 store 2 ,mem_lmp_subversion 
-0x3c17 005213 jam 0x60 ,mem_fhs_misc 
-0x3c18 005214 jam param_max_slot ,mem_max_slot 
-0x3c19 005215 jam 0x02 ,mem_fw_ver 
-0x3c1a 005216 call init_memp 
-0x3c1b 005217 set0 mark_ext_patch ,mark 
-0x3c1c 005218 bpatch patch15_5 ,mem_patch15 
-0x3c1d 005219 rtn wake 
-0x3c1e 005220 setarg 0 
-0x3c1f 005221 store 2 ,mem_tx_len 
-0x3c20 005222 rshift clkn_bt ,pdata 
-0x3c21 005223 store 4 ,mem_last_clkn 
-0x3c22 005224 rtn 
-:      005228 init_esco_ibuff:
-0x3c23 005229 setarg 0xaa ,pdata 
-0x3c24 005230 arg mem_sco_ibuf ,contw 
-0x3c25 005231 force 30 ,loopcnt 
-:      005232 init_esco_ibuff_loop:
-0x3c26 005233 istore 1 ,contw 
-0x3c27 005234 loop init_esco_ibuff_loop 
-0x3c28 005235 rtn 
-:      005237 init_rf_regs:
-0x3c29 005238 hjam 0x02 ,0x907 
-0x3c2a 005239 hjam 0x1f ,0x908 
-0x3c2b 005240 hjam 0x1f ,0x909 
-0x3c2c 005241 hjam 0xe0 ,0x90a 
-0x3c2d 005242 hjam 0x4e ,0x90b 
-0x3c2e 005243 hjam 0x45 ,rf_agc_ctrl 
-0x3c2f 005244 hjam 0x00 ,0x953 
-0x3c30 005246 hjam 0xfb ,0x94c 
-0x3c31 005247 hjam 0xef ,0x94d 
-0x3c32 005248 hjam 0x0c ,0x94e 
-0x3c33 005250 hjam 0x88 ,0x96f 
-0x3c34 005251 hjam 0x30 ,0x973 
-0x3c35 005254 hjam 0x00 ,0x953 
-0x3c36 005255 hjam 0xc9 ,0x956 
-0x3c37 005256 hjam 0x6c ,0x958 
-0x3c38 005257 hjam 0x50 ,0x959 
-0x3c39 005258 rtn 
-:      005260 init_agc_table:
-0x3c3a 005262 hjam 0xa9 ,0x930 
-0x3c3b 005263 hjam 0xb1 ,0x92f 
-0x3c3c 005264 hjam 0xb9 ,0x92e 
-0x3c3d 005265 hjam 0xAD ,0x92d 
-0x3c3e 005266 hjam 0xB1 ,0x92c 
-0x3c3f 005267 hjam 0xB5 ,0x92b 
-0x3c40 005268 hjam 0xBA ,0x92a 
-0x3c41 005269 hjam 0xBE ,0x929 
-0x3c42 005270 hjam 0xC2 ,0x928 
-0x3c43 005271 hjam 0xC6 ,0x927 
-0x3c44 005272 hjam 0xCA ,0x926 
-0x3c45 005273 hjam 0xCE ,0x925 
-0x3c46 005274 hjam 0xD2 ,0x924 
-0x3c47 005275 hjam 0xD6 ,0x923 
-0x3c48 005276 hjam 0xDA ,0x922 
-0x3c49 005277 hjam 0xDE ,0x921 
-0x3c4a 005278 hjam 0xE2 ,0x920 
-0x3c4b 005279 hjam 0xE6 ,0x91f 
-0x3c4c 005280 hjam 0xEA ,0x91e 
-0x3c4d 005281 hjam 0xEE ,0x91d 
-0x3c4e 005282 hjam 0xF2 ,0x91c 
-0x3c4f 005283 hjam 0xF6 ,0x91b 
-0x3c50 005284 hjam 0xFB ,0x91a 
-0x3c51 005286 hjam 0xf5 ,0x947 
-0x3c52 005287 hjam 0xe5 ,0x946 
-0x3c53 005288 hjam 0xd5 ,0x945 
-0x3c54 005289 hjam 0xD8 ,0x944 
-0x3c55 005290 hjam 0xC9 ,0x943 
-0x3c56 005291 hjam 0xC8 ,0x942 
-0x3c57 005292 hjam 0x89 ,0x941 
-0x3c58 005293 hjam 0x88 ,0x940 
-0x3c59 005294 hjam 0x87 ,0x93f 
-0x3c5a 005295 hjam 0x48 ,0x93e 
-0x3c5b 005296 hjam 0x09 ,0x93d 
-0x3c5c 005297 hjam 0x08 ,0x93c 
-0x3c5d 005298 hjam 0xC9 ,0x93b 
-0x3c5e 005299 hjam 0xC8 ,0x93a 
-0x3c5f 005300 hjam 0xC7 ,0x939 
-0x3c60 005301 hjam 0xC6 ,0x938 
-0x3c61 005302 hjam 0xC5 ,0x937 
-0x3c62 005303 hjam 0xC4 ,0x936 
-0x3c63 005304 hjam 0xC3 ,0x935 
-0x3c64 005305 hjam 0xC2 ,0x934 
-0x3c65 005306 hjam 0xC1 ,0x933 
-0x3c66 005307 hjam 0xC0 ,0x932 
-0x3c67 005308 hjam 0x80 ,0x931 
-0x3c68 005309 rtn 
-:      005313 init_250k:
-0x3c69 005314 enable le 
-0x3c6a 005315 setarg 0x8e89be 
-0x3c6b 005316 lshift8 pdata ,pdata 
-0x3c6c 005317 or_into 0xd6 ,pdata 
-0x3c6d 005318 iforce access 
-0x3c6e 005319 hjam 7 ,0x914 
-0x3c6f 005320 hjam 0xa0 ,0x90a 
-0x3c70 005321 hjam 0x8f ,0x90d 
-0x3c71 005322 hjam 0x0f ,0x911 
-0x3c72 005323 hjam 0x87 ,0x912 
-0x3c73 005324 rtn 
-:      005329 lpmstate:
-0x3c74 005330 setarg 0xee21 
-0x3c75 005331 hstore 2 ,core_clkoff 
-0x3c76 005332 hfetch 1 ,core_lpm_ldocnt 
-0x3c77 005333 bbit0 gpio_latch ,loadcode 
-0x3c78 005334 enable wake 
-0x3c79 005335 bbit0 cold_wake ,lpmwake 
-0x3c7a 005336 disable wake 
-0x3c7b 005337 deposit auxcnt 
-0x3c7c 005338 nbranch lpmwake ,blank 
-0x3c7d 005339 arg param_hibernate_clks ,temp 
-0x3c7e 005340 branch lpm_enter_sleep 
-:      005341 lpmwake:
-0x3c7f 005342 hfetch 3 ,core_lpm_xtalcnt 
-0x3c80 005343 hstore 3 ,core_lpm_reg 
-0x3c81 005344 ifetch 1 ,contr 
-0x3c82 005345 or_into isogate_mask ,pdata 
-0x3c83 005346 istore 1 ,contw 
-0x3c84 005347 call lpm_write_ctrl2 
-0x3c85 005348 hfetch 1 ,core_lpm_isogate 
-0x3c86 005349 set1 enable_retmem ,pdata 
-0x3c87 005350 hstore 1 ,core_lpm_isogate 
-0x3c88 005351 call lpm_write_ctrl2 
-0x3c89 005352 call lpm_load_context ,wake 
-0x3c8a 005353 hfetch 1 ,core_lpm_reg + 2 
-0x3c8b 005354 set0 gpio_latch ,pdata 
-0x3c8c 005355 hstore 1 ,core_lpm_reg + 2 
-0x3c8d 005356 call lpm_write_ctrl2 
-0x3c8e 005357 rtn wake 
-0x3c8f 005358 branch loadcode 
-:      005360 lpm_load_context:
-0x3c90 005361 fetch 1 ,mem_saved_spidctrl 
-0x3c91 005362 hstore 1 ,core_spid_ctrl 
-0x3c92 005363 fetch 3 ,mem_saved_gsel 
-0x3c93 005364 hstore 3 ,core_gpio_sel 
-0x3c94 005365 fetch 4 ,mem_saved_gpio + 4 
-0x3c95 005366 hstore 4 ,core_gpio_out0 
-0x3c96 005367 fetch 4 ,mem_saved_gpio 
-0x3c97 005368 hstore 4 ,core_gpio_oe0 
-0x3c98 005369 fetch 8 ,mem_saved_gpio + 8 
-0x3c99 005370 hstore 8 ,core_gpio_pu0 
-0x3c9a 005371 fetch 8 ,mem_saved_mark 
-0x3c9b 005372 iforce mark 
-0x3c9c 005373 hfetch 8 ,core_gpio_wakeup_low 
-0x3c9d 005374 store 8 ,mem_gpio_wakeup_low 
-0x3c9e 005375 call load_ucode 
-0x3c9f 005376 rtn 
-:      005378 lpm_save_context:
-0x3ca0 005379 deposit mark 
-0x3ca1 005380 store 8 ,mem_saved_mark 
-0x3ca2 005381 hfetch 8 ,core_gpio_oe0 
-0x3ca3 005382 store 8 ,mem_saved_gpio 
-0x3ca4 005383 ifetch 8 ,contr 
-0x3ca5 005384 istore 8 ,contw 
-0x3ca6 005385 hfetch 3 ,core_gpio_sel 
-0x3ca7 005386 store 3 ,mem_saved_gsel 
-0x3ca8 005387 hfetch 1 ,core_spid_ctrl 
-0x3ca9 005388 store 1 ,mem_saved_spidctrl 
-0x3caa 005389 branch lpm_write_gpio_wakeup 
-:      005391 lpo_calibration:
-0x3cab 005392 hfetch 1 ,core_bist_ctrl 
-0x3cac 005393 nbranch lpo_cal_inited ,blank 
-0x3cad 005394 fetch 3 ,mem_clks_per_lpo 
-0x3cae 005395 nrtn blank 
-0x3caf 005396 hjam 0xc0 ,core_bist_ctrl 
-0x3cb0 005397 hjam ccnt_start ,core_misc_ctrl 
-:      005398 lpo_cal_inited:
-0x3cb1 005399 hfetch 1 ,core_perf_status 
-0x3cb2 005400 rtnbit0 1 
-0x3cb3 005401 hfetch 3 ,core_clk_counter 
-0x3cb4 005402 store 3 ,mem_clks_per_lpo 
-0x3cb5 005403 rtn 
-:      005407 lpm_adjust_clk:
-0x3cb6 005408 set0 mark_ext_patch ,mark 
-0x3cb7 005409 bpatch patch15_6 ,mem_patch15 
-0x3cb8 005410 deposit clke 
-0x3cb9 005411 call clk_diff_rt 
-0x3cba 005412 fetcht 4 ,mem_sleep_counter_all 
-0x3cbb 005413 sub temp ,0xff ,null 
-0x3cbc 005414 rtn positive 
-0x3cbd 005415 lshift8 pdata ,pdata 
-0x3cbe 005416 lshift4 pdata ,pdata 
-0x3cbf 005417 idiv temp 
-0x3cc0 005418 call wait_div_end 
-0x3cc1 005419 quotient pdata 
-0x3cc2 005420 arg param_lpm_adjmax ,temp 
-0x3cc3 005421 call ceiling 
-0x3cc4 005422 store 1 ,mem_lpm_adjust 
-0x3cc5 005423 nbranch lpm_adjust_positive ,user 
-0x3cc6 005424 sub pdata ,0 ,pdata 
-:      005425 lpm_adjust_positive:
-0x3cc7 005426 fetcht 3 ,mem_clks_per_lpo 
-0x3cc8 005427 iadd temp ,pdata 
-0x3cc9 005428 store 3 ,mem_clks_per_lpo 
-:      005429 lpm_clear_counter:
-0x3cca 005430 setarg 0 
-0x3ccb 005431 store 4 ,mem_sleep_counter_all 
-0x3ccc 005432 rtn 
-:      005435 lpm_hibernate:
-0x3ccd 005436 set0 mark_ext_patch ,mark 
-0x3cce 005437 bpatch patch15_7 ,mem_patch15 
-0x3ccf 005438 call lpm_write_gpio_wakeup 
-0x3cd0 005439 hfetch 4 ,core_lpm_ctrl 
-0x3cd1 005440 set0 15 ,pdata 
-0x3cd2 005441 hstore 4 ,core_lpm_reg 
-0x3cd3 005442 call lpm_write_ctrl 
-:      005443 lpm_hibernate_normal:
-0x3cd4 005444 arg param_hibernate_clks ,temp 
-0x3cd5 005445 fetch 1 ,mem_lpm_hibernate_switch 
-0x3cd6 005446 store 1 ,mem_lpm_xtalcnt + 4 
-0x3cd7 005447 fetch 1 ,mem_lpm_xtalcnt + 2 
-0x3cd8 005448 set1 cold_wake ,pdata 
-0x3cd9 005449 store 1 ,mem_lpm_xtalcnt + 2 
-:      005452 lpm_sleep:
-0x3cda 005453 set0 mark_ext_patch ,mark 
-0x3cdb 005454 bpatch patch16_0 ,mem_patch16 
-0x3cdc 005455 fetch 4 ,mem_sleep_counter_all 
-0x3cdd 005456 iadd temp ,pdata 
-0x3cde 005457 store 4 ,mem_sleep_counter_all 
-0x3cdf 005458 call lpm_save_context 
-0x3ce0 005459 fetch 5 ,mem_lpm_xtalcnt 
-0x3ce1 005460 hstore 4 ,core_lpm_reg 
-0x3ce2 005461 rshift32 pdata ,rega 
-0x3ce3 005462 until null ,lpo_edge 
-0x3ce4 005463 deposit clkn 
-0x3ce5 005464 store 6 ,mem_sleep_clkn 
-0x3ce6 005465 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
-0x3ce7 005466 until null ,lpo_edge 
-0x3ce8 005467 until null ,lpo_edge 
-0x3ce9 005468 deposit rega 
-0x3cea 005469 hstore 1 ,core_lpm_isogate 
-0x3ceb 005470 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
-:      005471 lpm_enter_sleep:
-0x3cec 005472 until null ,lpo_edge 
-0x3ced 005473 until null ,lpo_edge 
-0x3cee 005474 hstoret 4 ,core_lpm_reg 
-0x3cef 005475 hjam lpmreg_sel_counter ,core_lpm_wr 
-0x3cf0 005476 until null ,never 
-:      005481 lpm_recover_clk:
-0x3cf1 005482 set0 mark_ext_patch ,mark 
-0x3cf2 005483 bpatch patch16_1 ,mem_patch16 
-0x3cf3 005484 setarg 0 
-0x3cf4 005485 copy auxcnt ,null 
-0x3cf5 005486 branch lpm_recover_timeout ,zero 
-0x3cf6 005487 hfetch 1 ,core_lpm_xtalcnt 
-0x3cf7 005488 hfetcht 1 ,core_lpm_buckcnt 
-0x3cf8 005489 isub temp ,null 
-0x3cf9 005490 branch lpm_recover_xtal ,positive 
-0x3cfa 005491 deposit temp 
-:      005492 lpm_recover_xtal:
-0x3cfb 005493 isub auxcnt ,pdata 
-0x3cfc 005494 increase 1 ,pdata 
-:      005495 lpm_recover_timeout:
-0x3cfd 005496 increase 8 ,pdata 
-0x3cfe 005497 until null ,lpo_edge 
-0x3cff 005498 iadd lpo_time ,pdata 
-0x3d00 005499 fetcht 4 ,mem_sleep_counter 
-0x3d01 005500 iadd temp ,pdata 
-0x3d02 005501 fetcht 3 ,mem_clks_per_lpo 
-0x3d03 005502 imul32 temp ,pdata 
-0x3d04 005503 rshift8 pdata ,pdata 
-0x3d05 005504 rshift4 pdata ,pdata 
-0x3d06 005505 increase param_lpm_fix ,pdata 
-0x3d07 005506 arg 3750 ,temp 
-0x3d08 005507 idiv temp 
-0x3d09 005508 call wait_div_end 
-0x3d0a 005509 quotient pdata 
-0x3d0b 005510 lshift16 pdata ,pdata 
-0x3d0c 005511 remainder temp 
-0x3d0d 005512 ior temp ,pdata 
-0x3d0e 005513 fetcht 6 ,mem_sleep_clkn 
-0x3d0f 005514 call clk_add 
-0x3d10 005515 copy temp ,clkn 
-0x3d11 005516 fetch 6 ,mem_context + coffset_clk_offset 
-0x3d12 005517 call calc_clke2 
-0x3d13 005518 deposit clke 
-0x3d14 005519 store 6 ,mem_pdatatemp 
-0x3d15 005520 deposit auxcnt 
-0x3d16 005521 istore 1 ,contw 
-0x3d17 005522 hfetch 1 ,core_gpio_in1 
-0x3d18 005523 or_into 0xf0 ,pdata 
-0x3d19 005524 istore 1 ,contw 
-0x3d1a 005525 call savelist_2 
-0x3d1b 005526 rtn 
-:      005528 lpm_dispatch:
-0x3d1c 005529 set0 mark_ext_patch ,mark 
-0x3d1d 005530 bpatch patch16_2 ,mem_patch16 
-0x3d1e 005531 call lpo_calibration 
-0x3d1f 005532 fetch 3 ,mem_clks_per_lpo 
-0x3d20 005533 rtn blank 
-0x3d21 005534 fetch 1 ,mem_lpm_mode 
-0x3d22 005535 rtn blank 
-0x3d23 005536 call lpm_check_wake_lock 
-0x3d24 005537 nrtn blank 
-:      005538 lpm_dispatch0:
-0x3d25 005539 fetch 1 ,mem_context 
-0x3d26 005540 compare 3 ,pdata ,0x7 
-0x3d27 005541 nbranch lpm_dispatch_unconn ,true 
-0x3d28 005542 fetch 2 ,mem_context + coffset_tsniff 
-0x3d29 005543 rtn blank 
-0x3d2a 005544 rtn wake 
-0x3d2b 005545 set0 mark_ext_patch ,mark 
-0x3d2c 005546 bpatch patch16_3 ,mem_patch16 
-:      005547 lpm_dispatch1:
-0x3d2d 005548 fetcht 1 ,mem_lpm_current_mult 
-0x3d2e 005549 fetch 2 ,mem_context + coffset_tsniff 
-0x3d2f 005550 imul32 temp ,pdata 
-0x3d30 005551 rshift4 temp ,temp 
-0x3d31 005552 rshift2 temp ,temp 
-0x3d32 005553 isub temp ,pdata 
-0x3d33 005554 fetcht 4 ,mem_context + coffset_sniff_anchor 
-0x3d34 005555 iadd temp ,pdata 
-0x3d35 005556 fetcht 1 ,mem_lpm_overhead 
-0x3d36 005557 isub temp ,pdata 
-0x3d37 005558 lshift16 pdata ,alarm 
-0x3d38 005559 set0 mark_ext_patch ,mark 
-0x3d39 005560 bpatch patch16_4 ,mem_patch16 
-0x3d3a 005561 fetch 2 ,mem_context + coffset_rx_window 
-0x3d3b 005562 rshift pdata ,pdata 
-0x3d3c 005563 call clk2bt 
-0x3d3d 005564 deposit alarm 
-0x3d3e 005565 call clk_diff 
-0x3d3f 005566 copy clke ,temp 
-0x3d40 005567 call clk_diff_rt 
-0x3d41 005568 rtn user 
-:      005569 lpm_dispatch_sleep:
-0x3d42 005570 call clk2lpo 
-:      005571 lpm_dispatch_lpo:
-0x3d43 005572 set0 mark_ext_patch ,mark 
-0x3d44 005573 bpatch patch16_5 ,mem_patch16 
-0x3d45 005574 fetch 1 ,mem_lpm_xtalcnt 
-0x3d46 005575 isub temp ,null 
-0x3d47 005576 branch lpm_clear_counter ,positive 
-0x3d48 005577 storet 4 ,mem_sleep_counter 
-0x3d49 005578 call app_will_enter_lpm 
-0x3d4a 005579 call l2cap_lpm_save_txbuf 
-0x3d4b 005580 fetcht 4 ,mem_sleep_counter 
-0x3d4c 005581 branch lpm_sleep 
-:      005583 lpm_dispatch_unconn:
-0x3d4d 005584 set0 mark_ext_patch ,mark 
-0x3d4e 005585 bpatch patch16_6 ,mem_patch16 
-0x3d4f 005586 fetch 1 ,mem_context 
-0x3d50 005587 rtnbit1 state_inconn 
-0x3d51 005588 rtnbit1 state_inpage 
-0x3d52 005589 fetch 1 ,mem_ssp_enable 
-0x3d53 005590 branch lpm_unconn_nossp ,blank 
-0x3d54 005591 fetch 1 ,mem_sp_local_key_invalid 
-0x3d55 005592 rtn blank 
-:      005593 lpm_unconn_nossp:
-0x3d56 005594 fetch 1 ,mem_le_adv_enable 
-0x3d57 005595 nbranch lpm_unconn_cont ,blank 
-0x3d58 005596 fetch 1 ,mem_scan_mode 
-0x3d59 005597 rtn blank 
-:      005598 lpm_unconn_cont:
-0x3d5a 005599 fetch 2 ,mem_lpm_interval 
-0x3d5b 005600 rtn blank 
-:      005601 lpm_sleep_btclk:
-0x3d5c 005602 fetcht 1 ,mem_lpm_overhead 
-0x3d5d 005603 isub temp ,pdata 
-0x3d5e 005604 arg 7500 ,temp 
-0x3d5f 005605 imul32 temp ,pdata 
-0x3d60 005606 branch lpm_dispatch_sleep 
-:      005608 lpm_set_mult:
-0x3d61 005609 set0 mark_ext_patch ,mark 
-0x3d62 005610 bpatch patch16_7 ,mem_patch16 
-0x3d63 005611 disable wake 
-0x3d64 005612 fetch 1 ,mem_state 
-0x3d65 005613 rtnbit0 state_insniff 
-0x3d66 005614 nbranch lpm_not_match ,match 
-0x3d67 005615 call lpm_match 
-0x3d68 005616 fetch 2 ,mem_rx_window_sniff 
-0x3d69 005617 store 2 ,mem_rx_window 
-0x3d6a 005618 fetch 1 ,mem_arq 
-0x3d6b 005619 bbit1 wack ,lpm_mult_short 
-0x3d6c 005620 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
-0x3d6d 005621 call l2cap_malloc_is_fifo_empty 
-0x3d6e 005622 nbranch lpm_mult_short ,blank 
-:      005623 lpm_mult_wait_timeout:
-0x3d6f 005624 jam 0 ,mem_lpm_current_mult 
-0x3d70 005625 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
-0x3d71 005626 fetch 1 ,mem_lpm_mult_cnt 
-0x3d72 005627 branch lpm_mult_long ,blank 
-0x3d73 005628 increase -1 ,pdata 
-0x3d74 005629 store 1 ,mem_lpm_mult_cnt 
-0x3d75 005630 rtn 
-:      005632 lpm_match:
-0x3d76 005633 jam 0 ,mem_sniff_unint_lost 
-0x3d77 005634 fetch 3 ,mem_sniff_rcv 
-0x3d78 005635 increase 1 ,pdata 
-0x3d79 005636 store 3 ,mem_sniff_rcv 
-0x3d7a 005637 rtn 
-:      005639 lpm_not_match:
-0x3d7b 005640 set0 mark_ext_patch ,mark 
-0x3d7c 005641 bpatch patch17_0 ,mem_patch17 
-0x3d7d 005642 fetcht 2 ,mem_rx_window_sniff 
-0x3d7e 005643 rshift temp ,temp 
-0x3d7f 005644 fetch 2 ,mem_rx_window 
-0x3d80 005645 iadd temp ,pdata 
-0x3d81 005646 store 2 ,mem_rx_window 
-:      005647 lpm_lost:
-0x3d82 005648 jam 0 ,mem_lpm_current_mult 
-0x3d83 005649 fetch 3 ,mem_sniff_lost 
-0x3d84 005650 increase 1 ,pdata 
-0x3d85 005651 store 3 ,mem_sniff_lost 
-0x3d86 005652 fetch 1 ,mem_sniff_unint_lost 
-0x3d87 005653 increase 1 ,pdata 
-0x3d88 005654 store 1 ,mem_sniff_unint_lost 
-0x3d89 005655 rtn 
-:      005657 lpm_mult_short:
-0x3d8a 005658 jam 0 ,mem_lpm_current_mult 
-0x3d8b 005659 fetch 1 ,mem_lpm_mult_timeout 
-0x3d8c 005660 store 1 ,mem_lpm_mult_cnt 
-0x3d8d 005661 rtn 
-:      005663 lpm_mult_long:
-0x3d8e 005664 fetcht 1 ,mem_lpm_mult 
-0x3d8f 005665 storet 1 ,mem_lpm_current_mult 
-0x3d90 005666 rtn 
-:      005668 lpm_cal_xtal_startup:
-0x3d91 005669 set0 mark_ext_patch ,mark 
-0x3d92 005670 bpatch patch17_1 ,mem_patch17 
-0x3d93 005671 fetch 1 ,mem_lpm_xtalcnt 
-0x3d94 005672 nrtn blank 
-0x3d95 005673 hjam clksel_rc ,core_clksel 
-0x3d96 005674 setarg 0xf0c 
-0x3d97 005675 call lpm_write_config 
-0x3d98 005676 setarg 200000 
-0x3d99 005677 call sleep 
-0x3d9a 005678 until null ,lpo_edge 
-0x3d9b 005679 copy lpo_time ,alarm 
-0x3d9c 005680 call xtal_fast_wake 
-0x3d9d 005681 hjam clksel_xtal ,core_clksel 
-0x3d9e 005682 nop 10 
-0x3d9f 005683 until null ,lpo_edge 
-0x3da0 005684 deposit lpo_time 
-0x3da1 005685 isub alarm ,pdata 
-0x3da2 005686 increase 0x30 ,pdata 
-0x3da3 005687 arg 0xff ,temp 
-0x3da4 005688 call ceiling 
-0x3da5 005689 store 1 ,mem_lpm_xtalcnt 
-0x3da6 005690 rtn 
-:      005695 lpm_write_config:
-0x3da7 005696 arg 0xfff ,contw 
-0x3da8 005697 iand contw ,contw 
-0x3da9 005698 fetch 1 ,mem_lpm_config 
-0x3daa 005699 and_into 0xf0 ,pdata 
-0x3dab 005700 lshift8 pdata ,pdata 
-0x3dac 005701 ior contw ,pdata 
-0x3dad 005702 hstore 2 ,core_lpm_reg 
-0x3dae 005703 ifetch 2 ,contr 
-0x3daf 005704 istore 2 ,contw 
-:      005706 lpm_write_ctrl:
-0x3db0 005707 setarg lpmreg_sel_ctrl 
-0x3db1 005708 branch lpm_write 
-:      005710 lpm_write_ctrl2:
-0x3db2 005711 setarg lpmreg_sel_ctrl2 
-:      005712 lpm_write:
-0x3db3 005713 until null ,lpo_edge 
-0x3db4 005714 hstore 1 ,core_lpm_wr 
-0x3db5 005715 until null ,lpo_edge 
-0x3db6 005716 until null ,lpo_edge 
-0x3db7 005717 rtn 
-:      005720 lpm_write_gpio_wakeup:
-0x3db8 005721 set0 mark_ext_patch ,mark 
-0x3db9 005722 bpatch patch17_2 ,mem_patch17 
-0x3dba 005723 fetch 4 ,mem_gpio_wakeup_low 
-0x3dbb 005724 hstore 4 ,core_lpm_reg 
-0x3dbc 005725 setarg lpmreg_sel_gpiolow 
-0x3dbd 005726 call lpm_write 
-0x3dbe 005727 fetch 4 ,mem_gpio_wakeup_high 
-0x3dbf 005728 hstore 4 ,core_lpm_reg 
-0x3dc0 005729 setarg lpmreg_sel_gpiohigh 
-0x3dc1 005730 branch lpm_write 
-:      005732 lpm_get_wake_lock:
-0x3dc2 005733 fetch 2 ,mem_lpm_wake_lock 
-0x3dc3 005734 qset1 pdata 
-0x3dc4 005735 store 2 ,mem_lpm_wake_lock 
-0x3dc5 005736 rtn 
-:      005738 lpm_put_wake_lock:
-0x3dc6 005739 fetch 2 ,mem_lpm_wake_lock 
-0x3dc7 005740 qset0 pdata 
-0x3dc8 005741 store 2 ,mem_lpm_wake_lock 
-0x3dc9 005742 rtn 
-:      005746 lpm_check_wake_lock:
-0x3dca 005747 set0 mark_ext_patch ,mark 
-0x3dcb 005748 bpatch patch17_3 ,mem_patch17 
-0x3dcc 005749 call app_check_wake_lock 
-0x3dcd 005750 fetch 2 ,mem_lpm_wake_lock 
-0x3dce 005751 copy pdata ,rega 
-0x3dcf 005752 fetch 1 ,mem_state_map 
-0x3dd0 005753 isolate1 smap_rxlmp ,pdata 
-0x3dd1 005754 setflag true ,wake_lock_lmp_rx ,rega 
-0x3dd2 005755 fetch 1 ,mem_lmo_opcode1 
-0x3dd3 005756 fetcht 1 ,mem_lmo_opcode2 
-0x3dd4 005757 iadd temp ,pdata 
-0x3dd5 005758 fetcht 1 ,mem_lmp_to_send 
-0x3dd6 005759 iadd temp ,pdata 
-0x3dd7 005760 nsetflag blank ,wake_lock_lmp_tx ,rega 
-0x3dd8 005761 set0 mark_ext_patch ,mark 
-0x3dd9 005762 bpatch patch17_4 ,mem_patch17 
-0x3dda 005763 fetch 2 ,mem_l2cap_rxbuff1_len 
-0x3ddb 005764 fetcht 2 ,mem_l2cap_rxbuff2_len 
-0x3ddc 005765 iadd temp ,pdata 
-0x3ddd 005766 nsetflag blank ,wake_lock_l2cap_rx ,rega 
-0x3dde 005767 fetch 5 ,mem_ipc_fifo_bt2c51 
-0x3ddf 005768 nsetflag blank ,wake_lock_ipc_bt2c51 ,rega 
-0x3de0 005769 fetch 5 ,mem_ipc_fifo_c512bt 
-0x3de1 005770 nsetflag blank ,wake_lock_ipc_c512bt ,rega 
-0x3de2 005771 fetch 1 ,mem_hci_cmd 
-0x3de3 005772 nsetflag blank ,wake_lock_cmd ,rega 
-0x3de4 005773 fetch 1 ,mem_device_option 
-0x3de5 005774 compare dvc_op_module ,pdata ,0xff 
-0x3de6 005775 call lpm_uart_wake_lock ,true 
-0x3de7 005776 set0 mark_ext_patch ,mark 
-0x3de8 005777 bpatch patch17_5 ,mem_patch17 
-0x3de9 005778 fetch 1 ,mem_device_option 
-0x3dea 005779 bne dvc_op_hci ,lpm_check_wake_lock_nothci 
-0x3deb 005780 call lpm_uart_wake_lock 
-0x3dec 005781 fetch 1 ,mem_link_key_exists 
-0x3ded 005782 setflag blank ,wake_link_key_exists ,rega 
-0x3dee 005783 fetch 4 ,mem_lpm_delay_after_sniff 
-0x3def 005784 arg 0x1710 ,temp 
-0x3df0 005785 iadd temp ,temp 
-0x3df1 005786 copy clkn_bt ,pdata 
-0x3df2 005787 isub temp ,null 
-0x3df3 005788 nsetflag positive ,wake_lock_delay ,rega 
-0x3df4 005789 branch lpm_check_wake_lock_end 
-:      005791 lpm_uart_wake_lock:
-0x3df5 005792 hfetch 2 ,core_uart_rxitems 
-0x3df6 005793 nsetflag blank ,wake_lock_uart_rx ,rega 
-0x3df7 005794 hfetch 2 ,core_uart_txitems 
-0x3df8 005795 nsetflag blank ,wake_lock_uart_tx ,rega 
-0x3df9 005796 rtn 
-:      005798 lpm_check_wake_lock_nothci:
-0x3dfa 005799 setarg -8 
-0x3dfb 005800 iand rega ,rega 
-:      005801 lpm_check_wake_lock_end:
-0x3dfc 005802 copy rega ,pdata 
-0x3dfd 005803 store 2 ,mem_lpm_wake_lock 
-0x3dfe 005804 rtn blank 
-0x3dff 005805 rtn match 
-0x3e00 005806 enable wake 
-0x3e01 005807 rtn 
-:      005809 lpm_shut_down:
-0x3e02 005810 hfetch 4 ,core_lpm_ctrl 
-0x3e03 005811 set0 27 ,pdata 
-0x3e04 005812 hstore 4 ,core_lpm_reg 
-0x3e05 005813 call lpm_write_ctrl 
-0x3e06 005814 branch assert 
-:      005816 lpm_enable_exen_output:
-0x3e07 005817 hfetch 4 ,core_lpm_xtalcnt 
-0x3e08 005818 set1 20 ,pdata 
-0x3e09 005819 hstore 4 ,core_lpm_reg 
-0x3e0a 005820 branch lpm_write_ctrl2 
-:      005822 lpm_disable_exen_output:
-0x3e0b 005823 hfetch 4 ,core_lpm_xtalcnt 
-0x3e0c 005824 set0 20 ,pdata 
-0x3e0d 005825 hstore 4 ,core_lpm_reg 
-0x3e0e 005826 branch lpm_write_ctrl2 
-:      005828 lpm_hci_wake_dispatch:
-0x3e0f 005829 set0 mark_ext_patch ,mark 
-0x3e10 005830 bpatch patch17_6 ,mem_patch17 
-0x3e11 005831 fetch 1 ,mem_device_option 
-0x3e12 005832 rtnne dvc_op_hci 
-0x3e13 005833 call gpio_check_uart_state 
-0x3e14 005834 rtn true 
-0x3e15 005835 fetch 4 ,mem_hci_wake_clk 
-0x3e16 005836 nbranch lpm_hci_check_wake_time ,blank 
-0x3e17 005837 copy clkn_bt ,pdata 
-0x3e18 005838 store 4 ,mem_hci_wake_clk 
-0x3e19 005839 branch gpio_pd_uart_tx 
-:      005840 lpm_hci_check_wake_time:
-0x3e1a 005841 set0 mark_ext_patch ,mark 
-0x3e1b 005842 bpatch patch17_7 ,mem_patch17 
-0x3e1c 005843 copy clkn_bt ,pdata 
-0x3e1d 005844 fetcht 4 ,mem_hci_wake_clk 
-0x3e1e 005845 isub temp ,pdata 
-0x3e1f 005846 arg host_wake_time ,temp 
-0x3e20 005847 isub temp ,null 
-0x3e21 005848 nrtn positive 
-0x3e22 005849 setarg 0 
-0x3e23 005850 store 4 ,mem_hci_wake_clk 
-0x3e24 005851 branch hci_exit_lpm 
-:      005853 check_bt_disabled:
-0x3e25 005854 fetch 2 ,mem_chip_functions 
-0x3e26 005855 bbit1 bt_disabled ,assert 
-0x3e27 005856 rtn 
-:      005857 check_ble_disabled:
-0x3e28 005858 fetch 2 ,mem_chip_functions 
-0x3e29 005859 bbit1 ble_disabled ,assert 
-0x3e2a 005860 rtn 
-:      005861 check_module_disabled:
-0x3e2b 005862 fetch 2 ,mem_chip_functions 
-0x3e2c 005863 bbit1 module_disable ,assert 
-0x3e2d 005864 rtn 
-:      005866 test_init:
-0x3e2e 005867 setarg test_proc 
-0x3e2f 005868 store 2 ,mem_cb_bt_process 
-0x3e30 005869 setarg test_sleep 
-0x3e31 005870 store 2 ,mem_cb_bb_event_process 
-0x3e32 005871 setarg test_proc 
-0x3e33 005872 store 2 ,mem_cb_idle_process 
-0x3e34 005873 rtn wake 
-0x3e35 005874 jam ui_led_start ,mem_led_switch 
-0x3e36 005875 rtn 
-:      005877 test_proc:
-0x3e37 005878 fetch 1 ,mem_state 
-0x3e38 005879 bbit0 state_insniff ,check_test_cond 
-0x3e39 005880 set1 mark_lpm_mult_enable ,mark 
-0x3e3a 005881 fetch 6 ,mem_sniff_rcv 
-0x3e3b 005882 store 6 ,mem_local_name 
-0x3e3c 005883 branch ui_led_blink_stop 
-:      005886 test_sleep:
-0x3e3d 005887 deposit regc 
-0x3e3e 005888 rtnne bt_evt_button_long_pressed 
-:      005889 test_sleep_loop:
-0x3e3f 005890 call ui_button_polling 
-0x3e40 005891 fetch 1 ,mem_ui_button_last_state 
-0x3e41 005892 beq 1 ,test_sleep_loop 
-0x3e42 005893 call ui_led_off 
-0x3e43 005894 branch lpm_hibernate 
-:      005897 test_tx:
-0x3e44 005898 force 2 ,temp 
-0x3e45 005899 increase -2 ,temp 
-0x3e46 005900 call set_sync_on 
-0x3e47 005901 call set_freq_tx 
-0x3e48 005902 disable enable_white 
-0x3e49 005903 enable encode_fec0 
-0x3e4a 005904 set1 txgfsk ,radio_ctrl 
-0x3e4b 005905 call start_transmitter 
-:      005906 test_tx_loop:
-0x3e4c 005907 fetch 1 ,0 
-0x3e4d 005908 inject mod ,8 
-0x3e4e 005909 branch test_tx_loop 
-:      005915 app_init:
-0x3e4f 005916 set1 mark_ext_patch ,mark 
-0x3e50 005917 bpatch patch39_5 ,mem_patch39 
-0x3e51 005918 fetch 1 ,mem_device_option 
-0x3e52 005919 branch app_init ,blank 
-0x3e53 005920 beq dvc_op_ukey ,le_ukey_init 
-0x3e54 005921 beq dvc_op_ir ,le_ir_init 
-0x3e55 005922 beq dvc_op_dongle ,le_dongle_init 
-0x3e56 005923 beq dvc_op_kb ,kb_init 
-0x3e57 005924 beq dvc_op_hci ,hci_init 
-0x3e58 005925 beq dvc_op_shutter ,shutter_init 
-0x3e59 005926 beq dvc_op_module ,module_init 
-0x3e5a 005927 beq dvc_op_ble_kb ,le_kb_init 
-0x3e5b 005928 beq dvc_op_ble_prcp ,prcp_init 
-0x3e5c 005929 beq dvc_op_test ,test_init 
-0x3e5d 005930 bbit1 dvc_op_mouse ,mouse_init 
-0x3e5e 005931 rtn 
-:      005933 app_lpm_init:
-0x3e5f 005934 set1 mark_ext_patch ,mark 
-0x3e60 005935 bpatch patch39_6 ,mem_patch39 
-0x3e61 005936 jam 0 ,mem_tester_emulate 
-0x3e62 005937 jam 0 ,mem_debug_config 
-0x3e63 005938 jam 0 ,mem_lch_code 
-0x3e64 005939 setarg 0 
-0x3e65 005940 store 5 ,mem_sp_state_start 
-0x3e66 005941 fetch 1 ,mem_device_option 
-0x3e67 005942 branch app_lpm_init ,blank 
-0x3e68 005943 beq dvc_op_module ,module_lpm_init 
-0x3e69 005944 rtn 
-:      005947 app_process_idle:
-0x3e6a 005948 call ui_dispatch 
-0x3e6b 005949 call check_51cmd 
-0x3e6c 005950 call app_process_bb_event 
-0x3e6d 005951 fetch 2 ,mem_cb_idle_process 
-0x3e6e 005952 branch callback_func 
-:      005954 app_process_bt:
-0x3e6f 005955 fetch 2 ,mem_cb_bt_process 
-0x3e70 005956 branch callback_func 
-:      005958 app_process_ble:
-0x3e71 005959 fetch 2 ,mem_cb_le_process 
-0x3e72 005960 branch callback_func 
-:      005962 app_process_bb_event:
-0x3e73 005963 set1 mark_ext_patch ,mark 
-0x3e74 005964 bpatch patch39_7 ,mem_patch39 
-0x3e75 005966 arg mem_ipc_fifo_bt2c51 ,rega 
-0x3e76 005967 call fifo_out 
-0x3e77 005968 rtn blank 
-0x3e78 005970 copy pdata ,regc 
-0x3e79 005971 call app_event_normal_process 
-0x3e7a 005972 branch app_process_bb_event_priority 
-:      005974 app_discard_event:
-0x3e7b 005975 arg 0 ,regc 
-0x3e7c 005976 rtn 
-:      005981 app_event_normal_process:
-0x3e7d 005982 beq bt_evt_bb_connected ,app_evt_bt_conn 
-0x3e7e 005983 beq bt_evt_button_long_pressed ,app_evt_button_long_pressed 
-0x3e7f 005984 beq bt_evt_setup_complete ,app_evt_setup_complete 
-0x3e80 005985 beq bt_evt_hid_handshake ,app_evt_hid_handshake 
-0x3e81 005986 beq bt_evt_hid_connected ,app_bb_event_hid_connected 
-0x3e82 005987 beq bt_evt_reconn_failed ,app_bb_event_reconn_failed 
-0x3e83 005988 beq bt_evt_bb_disconnected ,app_bb_event_bb_disconn 
-0x3e84 005989 beq bt_evt_reconn_page_timeout ,app_bb_event_reconn_failed 
-0x3e85 005990 beq bt_evt_le_connected ,app_le_event_bb_connected 
-0x3e86 005991 beq bt_evt_le_disconnected ,app_le_event_bb_disconn 
-0x3e87 005992 beq bt_evt_reconn_started ,app_event_reconn_start 
-0x3e88 005993 beq bt_evt_enter_sniff ,app_event_enter_sniff 
-0x3e89 005994 beq bt_evt_exit_sniff ,app_event_exit_sniff 
-0x3e8a 005996 beq bt_evt_ml2cap_conn_refused ,app_event_ml2cap_conn_refused 
-0x3e8b 005997 beq bt_evt_linkkey_generate ,app_event_linkkey_generate 
-0x3e8c 005998 beq bt_evt_switch_fail_master ,app_event_switch_fail_master 
-0x3e8d 005999 beq bt_evt_switch_success_master ,app_event_switch_success 
-0x3e8e 006001 and pdata ,0x0f ,temp 
-0x3e8f 006002 and_into bt_evt_timer_mask ,pdata 
-0x3e90 006003 beq bt_evt_timer_init ,app_evt_timer 
-0x3e91 006004 rtn 
-:      006006 app_evt_bt_conn:
-0x3e92 006007 fetch 2 ,mem_ui_state_map 
-0x3e93 006008 set1 ui_state_bt_connected ,pdata 
-0x3e94 006009 store 2 ,mem_ui_state_map 
-0x3e95 006010 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3e96 006011 set0 app_disc_by_button ,pdata 
-0x3e97 006012 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3e98 006013 rtn 
-:      006014 app_event_switch_success:
-0x3e99 006015 jam 0 ,mem_switch_fail_master_count 
-0x3e9a 006016 rtn 
-:      006018 app_event_switch_fail_master:
-0x3e9b 006019 fetch 1 ,mem_switch_fail_master_count 
-0x3e9c 006020 increase 1 ,pdata 
-0x3e9d 006021 store 1 ,mem_switch_fail_master_count 
-0x3e9e 006022 sub pdata ,1 ,null 
-0x3e9f 006023 branch app_bt_role_switch ,positive 
-0x3ea0 006024 jam 0 ,mem_switch_fail_master_count 
-0x3ea1 006025 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3ea2 006026 set1 app_disc_switch_fail ,pdata 
-0x3ea3 006027 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3ea4 006028 branch app_bt_disconnect 
-:      006030 app_process_bb_event_priority:
-0x3ea5 006031 fetch 2 ,mem_cb_bb_event_process 
-0x3ea6 006032 branch callback_func 
-:      006034 app_check_wake_lock:
-0x3ea7 006035 fetch 2 ,mem_cb_check_wakelock 
-0x3ea8 006036 branch callback_func 
-:      006038 app_will_enter_lpm:
-0x3ea9 006039 fetch 2 ,mem_cb_before_lpm 
-0x3eaa 006040 branch callback_func 
-:      006042 app_event_linkkey_generate:
-0x3eab 006043 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3eac 006044 set1 app_disc_after_pairing ,pdata 
-0x3ead 006045 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3eae 006046 branch app_bt_store_reconn_info 
-:      006048 app_event_reconn_start:
-0x3eaf 006049 fetch 2 ,mem_ui_state_map 
-0x3eb0 006050 set1 ui_state_bt_reconnect ,pdata 
-0x3eb1 006051 store 2 ,mem_ui_state_map 
-0x3eb2 006052 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3eb3 006053 set1 app_disc_after_reconn ,pdata 
-0x3eb4 006054 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3eb5 006055 rtn 
-:      006057 app_evt_setup_complete:
-0x3eb6 006058 fetch 2 ,mem_ui_state_map 
-0x3eb7 006059 set1 ui_state_bt_setup_complete ,pdata 
-0x3eb8 006060 store 2 ,mem_ui_state_map 
-0x3eb9 006061 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3eba 006062 set1 app_disc_after_setup_done ,pdata 
-0x3ebb 006063 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3ebc 006064 rtn 
-:      006066 app_evt_hid_handshake:
-0x3ebd 006067 fetch 2 ,mem_ui_state_map 
-0x3ebe 006068 set1 ui_state_bt_hid_handshake ,pdata 
-0x3ebf 006069 store 2 ,mem_ui_state_map 
-0x3ec0 006070 rtn 
-:      006072 app_event_enter_sniff:
-0x3ec1 006073 fetch 2 ,mem_ui_state_map 
-0x3ec2 006074 set1 ui_state_bt_sniff ,pdata 
-0x3ec3 006075 store 2 ,mem_ui_state_map 
-0x3ec4 006076 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3ec5 006077 set1 app_disc_after_sniff ,pdata 
-0x3ec6 006078 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3ec7 006079 rtn 
-:      006081 app_event_exit_sniff:
-0x3ec8 006082 fetch 2 ,mem_ui_state_map 
-0x3ec9 006083 set0 ui_state_bt_sniff ,pdata 
-0x3eca 006084 store 2 ,mem_ui_state_map 
-0x3ecb 006085 rtn 
-:      006087 app_le_event_bb_connected:
-0x3ecc 006088 fetch 2 ,mem_ui_state_map 
-0x3ecd 006089 set1 ui_state_ble_connected ,pdata 
-0x3ece 006090 store 2 ,mem_ui_state_map 
-0x3ecf 006091 rtn 
-:      006093 app_le_event_bb_disconn:
-0x3ed0 006094 fetch 2 ,mem_ui_state_map 
-0x3ed1 006095 set0 ui_state_ble_connected ,pdata 
-0x3ed2 006096 store 2 ,mem_ui_state_map 
-0x3ed3 006097 jam 0 ,mem_le_switch_send_data 
-0x3ed4 006098 branch app_lpm_mult_disable 
-:      006100 app_bb_event_hid_connected:
-0x3ed5 006101 fetch 2 ,mem_ui_state_map 
-0x3ed6 006102 set1 ui_state_bt_hid_conn ,pdata 
-0x3ed7 006103 store 2 ,mem_ui_state_map 
-0x3ed8 006104 rtn 
-:      006106 app_evt_button_long_pressed:
-0x3ed9 006107 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3eda 006108 set1 app_disc_by_button ,pdata 
-0x3edb 006109 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3edc 006110 rtn 
-:      006112 app_event_ml2cap_conn_refused:
-0x3edd 006113 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3ede 006114 set1 app_disc_l2cap_refused ,pdata 
-0x3edf 006115 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3ee0 006116 branch app_bt_disconnect 
-:      006119 app_evt_timer:
-0x3ee1 006120 set1 mark_ext_patch ,mark 
-0x3ee2 006121 bpatch patch3a_0 ,mem_patch3a 
-0x3ee3 006122 storet 1 ,mem_app_evt_timer_count 
-:      006123 app_evt_100ms_loop:
-0x3ee4 006124 fetch 1 ,mem_app_evt_timer_count 
-0x3ee5 006125 rtn blank 
-0x3ee6 006126 increase -1 ,pdata 
-0x3ee7 006127 store 1 ,mem_app_evt_timer_count 
-0x3ee8 006128 call ui_button_polling 
-0x3ee9 006129 call app_lpm_wake_auto_lock_timer 
-0x3eea 006130 call app_unsniff_delay_timer 
-0x3eeb 006131 call app_discovery_timer 
-0x3eec 006132 branch app_evt_100ms_loop 
-:      006134 app_unsniff_delay_timer:
-0x3eed 006135 fetch 1 ,mem_unsniff2sniff_timer_count 
-0x3eee 006136 rtn blank 
-0x3eef 006137 increase -1 ,pdata 
-0x3ef0 006138 store 1 ,mem_unsniff2sniff_timer_count 
-0x3ef1 006139 nrtn blank 
-0x3ef2 006140 call context_check_idle 
-0x3ef3 006141 branch app_bt_enter_sniff ,zero 
-0x3ef4 006142 rtn 
-:      006143 app_discovery_timer:
-0x3ef5 006144 fetch 2 ,mem_discovery_timeout_timer_count 
-0x3ef6 006145 rtn blank 
-0x3ef7 006146 increase -1 ,pdata 
-0x3ef8 006147 store 2 ,mem_discovery_timeout_timer_count 
-0x3ef9 006148 nrtn blank 
-0x3efa 006149 call app_bt_stop_discovery 
-0x3efb 006150 call app_led_off 
-0x3efc 006151 fetch 2 ,mem_cb_discovry_timeout 
-0x3efd 006152 branch callback_func 
-:      006154 app_bb_event_reconn_failed:
-0x3efe 006155 call app_disconn_reason_flag_clear 
-:      006156 app_clear_reconnect_flag:
-0x3eff 006157 fetch 2 ,mem_ui_state_map 
-0x3f00 006158 set0 ui_state_bt_reconnect ,pdata 
-0x3f01 006159 store 2 ,mem_ui_state_map 
-0x3f02 006160 rtn 
-:      006162 app_bb_event_bb_disconn:
-0x3f03 006163 jam 0 ,mem_unsniff2sniff_timer_count 
-0x3f04 006164 fetch 2 ,mem_ui_state_map 
-0x3f05 006165 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
-0x3f06 006166 isolate0 ui_state_bt_setup_complete ,pdata 
-0x3f07 006167 call app_discard_event ,true 
-:      006168 app_bb_event_bb_reconn_disconn:
-0x3f08 006169 fetch 2 ,mem_ui_state_map 
-0x3f09 006170 set0 ui_state_bt_connected ,pdata 
-0x3f0a 006171 set0 ui_state_bt_setup_complete ,pdata 
-0x3f0b 006172 set0 ui_state_bt_hid_conn ,pdata 
-0x3f0c 006173 set0 ui_state_bt_hid_handshake ,pdata 
-0x3f0d 006174 set0 ui_state_bt_spp_conn ,pdata 
-0x3f0e 006175 store 2 ,mem_ui_state_map 
-0x3f0f 006176 branch app_lpm_mult_disable 
-:      006178 app_bb_hibernate:
-0x3f10 006179 call app_disconn_reason_clear 
-0x3f11 006180 branch app_enter_hibernate 
-:      006183 app_event_do_nothing:
-:      006184 app_disconn_reason_clear:
-0x3f12 006185 setarg 0 
-0x3f13 006186 store app_disc_rsn_size ,mem_app_disconn_reason 
-0x3f14 006187 rtn 
-:      006188 app_disconn_reason_flag_clear:
-0x3f15 006189 setarg 0 
-0x3f16 006190 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3f17 006191 rtn 
-:      006194 app_disconn_reason_collect_bt:
-0x3f18 006195 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3f19 006196 store app_disc_rsn_size ,mem_app_disconn_reason 
-0x3f1a 006197 setarg 0 
-0x3f1b 006198 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3f1c 006199 rtn 
-:      006201 app_disconn_reason_collect_ble:
-0x3f1d 006202 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3f1e 006203 set1 app_disc_ble ,pdata 
-0x3f1f 006204 store app_disc_rsn_size ,mem_app_disconn_reason 
-0x3f20 006205 setarg 0 
-0x3f21 006206 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x3f22 006207 rtn 
-:      006213 app_check_reconn_target:
-0x3f23 006214 call eeprom_load_reconn_info 
-0x3f24 006215 fetch 6 ,mem_hci_plap 
-0x3f25 006216 rtn 
-:      006218 app_le_check_reconn_target:
-0x3f26 006219 fetch 1 ,mem_ltk_exists 
-0x3f27 006220 branch app_le_check_reconn_target_none ,blank 
-0x3f28 006221 call app_led_on 
-0x3f29 006222 branch app_ble_start_direct_adv 
-:      006223 app_le_check_reconn_target_none:
-0x3f2a 006224 call app_led_start_blink 
-0x3f2b 006225 branch app_ble_start_adv 
-:      006227 app_check_plap:
-0x3f2c 006228 set1 mark_ext_patch ,mark 
-0x3f2d 006229 bpatch patch3a_1 ,mem_patch3a 
-0x3f2e 006230 arg mem_check_plap_temp ,regb 
-0x3f2f 006231 arg app_check_one_plap ,regc 
-0x3f30 006232 branch context_search 
-:      006234 app_check_one_plap:
-0x3f31 006235 arg 0 ,temp 
-0x3f32 006236 bbit0 state_inconn ,app_check_one_plap_next 
-0x3f33 006237 add rega ,coffset_plap ,contr 
-0x3f34 006238 ifetcht 6 ,contr 
-:      006239 app_check_one_plap_next:
-0x3f35 006240 copy temp ,pdata 
-0x3f36 006241 ncall app_check_one_plap_device_exist ,blank 
-0x3f37 006242 istoret 6 ,regb 
-0x3f38 006243 increase 6 ,regb 
-0x3f39 006244 branch context_search_next 
-:      006245 app_check_one_plap_device_exist:
-0x3f3a 006246 fetch 1 ,mem_device_nums 
-0x3f3b 006247 increase 1 ,pdata 
-0x3f3c 006248 store 1 ,mem_device_nums 
-0x3f3d 006249 rtn 
-:      006251 app_check_conn_device_nums_addr:
-0x3f3e 006252 jam 0 ,mem_device_nums 
-0x3f3f 006253 branch app_check_plap 
-:      006255 app_check_sniff:
-0x3f40 006256 fetch 1 ,mem_ui_state_map 
-0x3f41 006257 isolate1 ui_state_bt_sniff ,pdata 
-0x3f42 006258 rtn 
-:      006263 app_clearflag_store:
-0x3f43 006264 setarg 0 
-0x3f44 006265 branch app_flag_store 
-:      006266 app_initflag_store:
-0x3f45 006267 setarg eeprom_init_flag 
-:      006268 app_flag_store:
-0x3f46 006269 store 2 ,mem_timeup 
-0x3f47 006270 set1 mark_ext_patch ,mark 
-0x3f48 006271 bpatch patch3a_2 ,mem_patch3a 
-0x3f49 006272 arg 2 ,temp 
-0x3f4a 006273 arg mem_timeup ,rega 
-0x3f4b 006274 arg eeprom_module_init_flag ,regb 
-0x3f4c 006275 branch iicd_write_eep_data 
-:      006278 app_initflag_check:
-0x3f4d 006279 set1 mark_ext_patch ,mark 
-0x3f4e 006280 bpatch patch3a_3 ,mem_patch3a 
-0x3f4f 006281 arg 2 ,temp 
-0x3f50 006282 arg mem_pdatatemp ,rega 
-0x3f51 006283 arg eeprom_module_init_flag ,regb 
-0x3f52 006284 call iicd_read_eep_data 
-0x3f53 006285 fetch 2 ,mem_pdatatemp 
-0x3f54 006286 arg eeprom_init_flag ,temp 
-0x3f55 006287 isub temp ,null 
-0x3f56 006288 rtn 
-:      006291 app_start_auto_sniff:
-0x3f57 006292 fetch 1 ,mem_unsniff2sniff_timer 
-0x3f58 006293 store 1 ,mem_unsniff2sniff_timer_count 
-0x3f59 006294 rtn 
-:      006296 app_get_lpm_wake_lock:
-0x3f5a 006297 arg wake_lock_app ,queue 
-0x3f5b 006298 branch lpm_get_wake_lock 
-:      006300 app_put_lpm_wake_lock:
-0x3f5c 006301 arg wake_lock_app ,queue 
-0x3f5d 006302 branch lpm_put_wake_lock 
-:      006304 app_lpm_wake_auto_lock:
-0x3f5e 006305 jam lpm_wake_up_delay_timer ,mem_wake_up_delay_timer 
-0x3f5f 006306 branch app_get_lpm_wake_lock 
-:      006307 app_lpm_wake_auto_lock_timer:
-0x3f60 006308 fetch 1 ,mem_wake_up_delay_timer 
-0x3f61 006309 rtn blank 
-0x3f62 006310 increase -1 ,pdata 
-0x3f63 006311 store 1 ,mem_wake_up_delay_timer 
-0x3f64 006312 nrtn blank 
-0x3f65 006313 branch app_put_lpm_wake_lock 
-:      006315 app_l2cap_flow_control_enable:
-0x3f66 006316 jam l2cap_flow_ctrl_enable ,mem_l2cap_flow_ctrl_flag 
-0x3f67 006317 rtn 
-:      006319 app_l2cap_flow_control_disable:
-0x3f68 006320 jam l2cap_flow_ctrl_disable ,mem_l2cap_flow_ctrl_flag 
-0x3f69 006321 rtn 
-:      006323 app_bt_set_pincode:
-0x3f6a 006324 jam bt_cmd_set_pin_code ,mem_fifo_temp 
-0x3f6b 006325 branch ui_ipc_send_cmd 
-:      006327 app_bt_role_switch:
-0x3f6c 006328 jam bt_cmd_role_switch ,mem_fifo_temp 
-0x3f6d 006329 branch ui_ipc_send_cmd 
-:      006331 app_bt_start_reconnect:
-0x3f6e 006332 set1 mark_ext_patch ,mark 
-0x3f6f 006333 bpatch patch3a_4 ,mem_patch3a 
-0x3f70 006334 fetch 1 ,mem_app_connection_options 
-0x3f71 006335 store 1 ,mem_connection_options 
-0x3f72 006336 jam app_flag_reconnect ,mem_reconnect_flag 
-0x3f73 006337 jam bt_cmd_reconnect ,mem_fifo_temp 
-0x3f74 006338 branch ui_ipc_send_cmd 
-:      006340 app_bt_reconnect_cancel:
-0x3f75 006341 jam bt_cmd_bb_reconn_cancel ,mem_fifo_temp 
-0x3f76 006342 branch ui_ipc_send_cmd 
-:      006344 app_bt_disconnect:
-0x3f77 006345 jam bt_cmd_disconnect ,mem_fifo_temp 
-0x3f78 006346 branch ui_ipc_send_cmd 
-:      006348 app_bt_start_discovery_short:
-0x3f79 006349 fetch 2 ,mem_discovery_timeout 
-0x3f7a 006350 store 2 ,mem_discovery_timeout_timer_count 
-:      006351 app_bt_start_discovery_led_blink:
-0x3f7b 006352 call app_led_start_blink 
-:      006353 app_bt_start_discovery:
-0x3f7c 006354 jam bt_cmd_start_discovery ,mem_fifo_temp 
-0x3f7d 006355 branch ui_ipc_send_cmd 
-:      006357 app_bt_stop_discovery:
-0x3f7e 006358 setarg 0 
-0x3f7f 006359 store 2 ,mem_discovery_timeout_timer_count 
-0x3f80 006360 jam bt_cmd_stop_discovery ,mem_fifo_temp 
-0x3f81 006361 branch ui_ipc_send_cmd 
-:      006363 app_ble_start_direct_adv:
-0x3f82 006364 jam bt_cmd_start_direct_adv ,mem_fifo_temp 
-0x3f83 006365 branch ui_ipc_send_cmd 
-:      006367 app_ble_stop_direct_adv:
-0x3f84 006368 jam bt_cmd_stop_direct_adv ,mem_fifo_temp 
-0x3f85 006369 branch ui_ipc_send_cmd 
-:      006371 app_ble_stop_adv:
-0x3f86 006372 jam bt_cmd_stop_adv ,mem_fifo_temp 
-0x3f87 006373 branch ui_ipc_send_cmd 
-:      006375 app_ble_start_adv:
-0x3f88 006376 jam bt_cmd_start_adv ,mem_fifo_temp 
-0x3f89 006377 branch ui_ipc_send_cmd 
-:      006379 app_ble_start_scan:
-0x3f8a 006380 jam bt_cmd_le_start_scan ,mem_fifo_temp 
-0x3f8b 006381 branch ui_ipc_send_cmd 
-:      006383 app_ble_stop_scan:
-0x3f8c 006384 jam bt_cmd_le_stop_scan ,mem_fifo_temp 
-0x3f8d 006385 branch ui_ipc_send_cmd 
-:      006387 app_ble_start_conn:
-0x3f8e 006388 jam bt_cmd_le_start_conn ,mem_fifo_temp 
-0x3f8f 006389 branch ui_ipc_send_cmd 
-:      006391 app_ble_disconnect:
-0x3f90 006392 jam bt_cmd_le_disconnect ,mem_fifo_temp 
-0x3f91 006393 branch ui_ipc_send_cmd 
-:      006395 app_ble_start_write:
-0x3f92 006396 jam bt_cmd_le_start_write ,mem_fifo_temp 
-0x3f93 006397 branch ui_ipc_send_cmd 
-:      006399 app_led_start_blink:
-0x3f94 006400 jam bt_cmd_led_blink ,mem_fifo_temp 
-0x3f95 006401 branch ui_ipc_send_cmd 
-:      006403 app_led_on:
-0x3f96 006404 jam bt_cmd_led_on ,mem_fifo_temp 
-0x3f97 006405 branch ui_ipc_send_cmd 
-:      006407 app_led_stop_blink:
-:      006408 app_led_off:
-0x3f98 006409 jam bt_cmd_led_off ,mem_fifo_temp 
-0x3f99 006410 branch ui_ipc_send_cmd 
-:      006412 app_enter_hibernate:
-0x3f9a 006413 jam bt_cmd_enter_hibernate ,mem_fifo_temp 
-0x3f9b 006414 branch ui_ipc_send_cmd 
-:      006416 app_bt_sniff_exit:
-0x3f9c 006417 jam bt_cmd_exit_sniff ,mem_fifo_temp 
-0x3f9d 006418 branch ui_ipc_send_cmd 
-:      006420 app_bt_enter_sniff:
-0x3f9e 006421 jam bt_cmd_enter_sniff ,mem_fifo_temp 
-0x3f9f 006422 branch ui_ipc_send_cmd 
-:      006424 app_ble_store_reconn_info:
-0x3fa0 006425 jam bt_cmd_store_reconn_info_le ,mem_fifo_temp 
-0x3fa1 006426 branch ui_ipc_send_cmd 
-:      006428 app_bt_store_reconn_info:
-0x3fa2 006429 jam bt_cmd_store_reconn_info_bt ,mem_fifo_temp 
-0x3fa3 006430 branch ui_ipc_send_cmd 
-:      006432 app_lpm_mult_enable:
-0x3fa4 006433 set1 mark_lpm_mult_enable ,mark 
-0x3fa5 006434 rtn 
-:      006436 app_lpm_mult_disable:
-0x3fa6 006437 set0 mark_lpm_mult_enable ,mark 
-0x3fa7 006438 rtn 
-:      006442 at_restore_param:
-0x3fa8 006443 set1 mark_ext_patch ,mark 
-0x3fa9 006444 bpatch patch32_0 ,mem_patch32 
-0x3faa 006445 arg 32 ,temp 
-0x3fab 006446 arg mem_le_name_len ,rega 
-0x3fac 006447 arg eeprom_module_ble_name_length ,regb 
-0x3fad 006448 call iicd_read_eep_data 
-0x3fae 006451 arg 32 ,temp 
-0x3faf 006452 arg mem_local_name_length ,rega 
-0x3fb0 006453 arg eeprom_module_bt_name_length ,regb 
-0x3fb1 006454 call iicd_read_eep_data 
-0x3fb2 006456 arg 6 ,temp 
-0x3fb3 006457 arg mem_lap ,rega 
-0x3fb4 006458 arg eeprom_module_bt_adss ,regb 
-0x3fb5 006459 call iicd_read_eep_data 
-0x3fb6 006461 arg 6 ,temp 
-0x3fb7 006462 arg mem_le_lap ,rega 
-0x3fb8 006463 arg eeprom_module_le_adss ,regb 
-0x3fb9 006464 call iicd_read_eep_data 
-0x3fba 006465 call le_modified_name 
-0x3fbb 006467 arg 2 ,temp 
-0x3fbc 006468 arg mem_baud ,rega 
-0x3fbd 006469 arg eeprom_module_trans_baud ,regb 
-0x3fbe 006470 call iicd_read_eep_data 
-0x3fbf 006471 call uart_set_baud_by_mem 
-0x3fc0 006473 branch at_restore_pin_code 
-:      006475 at_restore_pin_code:
-0x3fc1 006476 arg 14 ,temp 
-0x3fc2 006477 arg mem_pin_length ,rega 
-0x3fc3 006478 arg eeprom_module_pincode_length ,regb 
-0x3fc4 006479 branch iicd_read_eep_data 
-:      006481 init_module_environment:
-0x3fc5 006482 set1 mark_ext_patch ,mark 
-0x3fc6 006483 bpatch patch32_1 ,mem_patch32 
-0x3fc7 006484 call app_initflag_check 
-0x3fc8 006485 branch at_restore_param ,zero 
-:      006486 init_module_eeprom:
-0x3fc9 006487 call at_store_bt_name 
-0x3fca 006488 call at_store_le_name 
-0x3fcb 006489 call le_modified_name 
-0x3fcc 006490 call at_store_le_adss 
-0x3fcd 006491 call at_store_bt_adss 
-0x3fce 006492 call pincode_reinit 
-0x3fcf 006493 call at_store_bt_pincode 
-0x3fd0 006494 call at_store_throughput_uart_baud115200 
-0x3fd1 006495 branch app_initflag_store 
-:      006497 at_store_bt_name:
-0x3fd2 006498 fetcht 1 ,mem_local_name_length 
-0x3fd3 006499 increase 1 ,temp 
-0x3fd4 006500 arg mem_local_name_length ,rega 
-0x3fd5 006501 arg eeprom_module_bt_name_length ,regb 
-0x3fd6 006502 branch iicd_write_eep_data 
-:      006504 at_store_le_name:
-0x3fd7 006505 fetcht 1 ,mem_le_name_len 
-0x3fd8 006506 increase 1 ,temp 
-0x3fd9 006507 arg mem_le_name_len ,rega 
-0x3fda 006508 arg eeprom_module_ble_name_length ,regb 
-0x3fdb 006509 branch iicd_write_eep_data 
-:      006511 at_store_le_adss:
-0x3fdc 006512 arg 6 ,temp 
-0x3fdd 006513 arg mem_le_lap ,rega 
-0x3fde 006514 arg eeprom_module_le_adss ,regb 
-0x3fdf 006515 branch iicd_write_eep_data 
-:      006517 at_store_bt_adss:
-0x3fe0 006518 arg 6 ,temp 
-0x3fe1 006519 arg mem_lap ,rega 
-0x3fe2 006520 arg eeprom_module_bt_adss ,regb 
-0x3fe3 006521 branch iicd_write_eep_data 
-:      006523 at_store_bt_pincode:
-0x3fe4 006524 fetcht 1 ,mem_pin_length 
-0x3fe5 006525 increase 1 ,temp 
-0x3fe6 006526 arg mem_pin_length ,rega 
-0x3fe7 006527 arg eeprom_module_pincode_length ,regb 
-0x3fe8 006528 branch iicd_write_eep_data 
-:      006530 at_store_throughput_uart_baud115200:
-0x3fe9 006531 setarg at_baud_115200 
-0x3fea 006532 store 2 ,mem_timeup 
-:      006533 at_store_throughput_uart_baud:
-0x3feb 006534 arg 2 ,temp 
-0x3fec 006535 arg mem_timeup ,rega 
-0x3fed 006536 arg eeprom_module_trans_baud ,regb 
-0x3fee 006537 branch iicd_write_eep_data 
-:      006540 at_process:
-0x3fef 006541 set1 mark_ext_patch ,mark 
-0x3ff0 006542 bpatch patch32_2 ,mem_patch32 
-0x3ff1 006543 fetch 2 ,mem_current_packet_length 
-0x3ff2 006544 arg 300 ,temp 
-0x3ff3 006545 isub temp ,null 
-0x3ff4 006546 branch at_error_rev_end ,positive 
-0x3ff5 006547 call check_module_disabled 
-0x3ff6 006548 call get_uart_rrptr 
-0x3ff7 006549 copy contru ,rega 
-0x3ff8 006550 fetch 2 ,mem_current_packet_length 
-0x3ff9 006551 increase -2 ,pdata 
-0x3ffa 006552 iadd contru ,contru 
-0x3ffb 006553 ifetch 2 ,contru 
-0x3ffc 006554 arg at_cmd_end ,temp 
-0x3ffd 006555 isub temp ,null 
-0x3ffe 006556 nrtn zero 
-0x3fff 006557 copy rega ,contru 
-0x4000 006558 arg mem_prarm_atp ,regb 
-0x4001 006559 arg 3 ,loopcnt 
-0x4002 006560 call string_compare_uart_follow 
-0x4003 006561 nbranch at_error_rev_end ,true 
-0x4004 006562 branch at_dispatch 
-:      006564 at_dispatch:
-0x4005 006565 set1 mark_ext_patch ,mark 
-0x4006 006566 bpatch patch32_3 ,mem_patch32 
-0x4007 006568 copy contru ,rega 
-0x4008 006569 arg mem_prarm_name ,regb 
-0x4009 006570 force 4 ,loopcnt 
-0x400a 006571 call string_compare_uart_follow 
-0x400b 006572 branch at_rev_name ,true 
-0x400c 006574 arg mem_prarm_blename ,regb 
-0x400d 006575 force 7 ,loopcnt 
-0x400e 006576 call string_compare_uart_follow 
-0x400f 006577 branch at_rev_le_name ,true 
-0x4010 006579 arg mem_prarm_adss ,regb 
-0x4011 006580 force 4 ,loopcnt 
-0x4012 006581 call string_compare_uart_follow 
-0x4013 006582 branch at_rev_adss ,true 
-0x4014 006584 arg mem_prarm_bleadss ,regb 
-0x4015 006585 force 7 ,loopcnt 
-0x4016 006586 call string_compare_uart_follow 
-0x4017 006587 branch at_rev_leadss ,true 
-0x4018 006589 arg mem_prarm_vers ,regb 
-0x4019 006590 force 4 ,loopcnt 
-0x401a 006591 call string_compare_uart_follow 
-0x401b 006592 branch at_rev_vers ,true 
-0x401c 006594 arg mem_prarm_uart ,regb 
-0x401d 006595 force 4 ,loopcnt 
-0x401e 006596 call string_compare_uart_follow 
-0x401f 006597 branch at_rev_uart ,true 
-0x4020 006599 arg mem_prarm_pswd ,regb 
-0x4021 006600 force 4 ,loopcnt 
-0x4022 006601 call string_compare_uart_follow 
-0x4023 006602 branch at_rev_pswd ,true 
-0x4024 006604 arg mem_prarm_class ,regb 
-0x4025 006605 force 5 ,loopcnt 
-0x4026 006606 call string_compare_uart_follow 
-0x4027 006607 branch at_rev_class ,true 
-0x4028 006609 arg mem_prarm_list ,regb 
-0x4029 006610 force 4 ,loopcnt 
-0x402a 006611 call string_compare_uart_follow 
-0x402b 006612 branch at_rev_list ,true 
-0x402c 006614 arg mem_prarm_role ,regb 
-0x402d 006615 force 4 ,loopcnt 
-0x402e 006616 call string_compare_uart_follow 
-0x402f 006617 branch at_rev_role ,true 
-0x4030 006619 arg mem_prarm_sniff ,regb 
-0x4031 006620 force 5 ,loopcnt 
-0x4032 006621 call string_compare_uart_follow 
-0x4033 006622 branch at_rev_sniff ,true 
-0x4034 006624 arg mem_prarm_ldev ,regb 
-0x4035 006625 force 4 ,loopcnt 
-0x4036 006626 call string_compare_uart_follow 
-0x4037 006627 branch at_rev_ldev ,true 
-0x4038 006629 arg mem_prarm_rssi ,regb 
-0x4039 006630 force 4 ,loopcnt 
-0x403a 006631 call string_compare_uart_follow 
-0x403b 006632 branch at_rev_rssi ,true 
-0x403c 006634 arg mem_prarm_cdev ,regb 
-0x403d 006635 force 4 ,loopcnt 
-0x403e 006636 call string_compare_uart_follow 
-0x403f 006637 branch at_rev_cdev ,true 
-0x4040 006639 arg mem_prarm_inqr ,regb 
-0x4041 006640 force 4 ,loopcnt 
-0x4042 006641 call string_compare_uart_follow 
-0x4043 006642 branch at_rev_inqr ,true 
-0x4044 006644 arg mem_prarm_bleinqr ,regb 
-0x4045 006645 force 7 ,loopcnt 
-0x4046 006646 call string_compare_uart_follow 
-0x4047 006647 branch at_rev_leinqr ,true 
-0x4048 006649 arg mem_prarm_cmode ,regb 
-0x4049 006650 force 5 ,loopcnt 
-0x404a 006651 call string_compare_uart_follow 
-0x404b 006652 branch at_rev_cmode ,true 
-0x404c 006654 arg mem_prarm_mode ,regb 
-0x404d 006655 force 4 ,loopcnt 
-0x404e 006656 call string_compare_uart_follow 
-0x404f 006657 branch at_rev_mode ,true 
-0x4050 006659 arg mem_prarm_dmstate ,regb 
-0x4051 006660 force 7 ,loopcnt 
-0x4052 006661 call string_compare_uart_follow 
-0x4053 006662 branch at_rev_dmstate ,true 
-0x4054 006664 arg mem_prarm_reconn ,regb 
-0x4055 006665 force 6 ,loopcnt 
-0x4056 006666 call string_compare_uart_follow 
-0x4057 006667 branch at_rev_reconn ,true 
-0x4058 006669 arg mem_prarm_discov ,regb 
-0x4059 006670 force 6 ,loopcnt 
-0x405a 006671 call string_compare_uart_follow 
-0x405b 006672 branch at_rev_discov ,true 
-0x405c 006674 arg mem_prarm_dis ,regb 
-0x405d 006675 force 3 ,loopcnt 
-0x405e 006676 call string_compare_uart_follow 
-0x405f 006677 branch at_rev_dis ,true 
-0x4060 006679 arg mem_prarm_stsn ,regb 
-0x4061 006680 force 4 ,loopcnt 
-0x4062 006681 call string_compare_uart_follow 
-0x4063 006682 branch at_rev_stsn ,true 
-0x4064 006684 arg mem_prarm_clrflg ,regb 
-0x4065 006685 force 6 ,loopcnt 
-0x4066 006686 call string_compare_uart_follow 
-0x4067 006687 branch at_rev_clrflg ,true 
-0x4068 006689 arg mem_prarm_ota ,regb 
-0x4069 006690 force 3 ,loopcnt 
-0x406a 006691 call string_compare_uart_follow 
-0x406b 006692 branch at_rev_ota ,true 
-0x406c 006693 branch at_error_rev_end 
-:      006696 at_rev_name:
-0x406d 006697 ifetch 1 ,contru 
-0x406e 006698 beq at_ques ,at_rev_name_inquiry 
-0x406f 006699 beq at_equ ,at_rev_name_set 
-0x4070 006700 branch at_error_rev_end 
-:      006701 at_rev_name_inquiry:
-0x4071 006702 call get_uart_twptr 
-0x4072 006703 call at_group_name_inquiry 
-0x4073 006704 branch at_nomal_rev_end 
-:      006707 at_rev_le_name:
-0x4074 006708 ifetch 1 ,contru 
-0x4075 006709 beq at_ques ,at_rev_le_name_inquiry 
-0x4076 006710 beq at_equ ,at_rev_le_name_set 
-0x4077 006711 branch at_error_rev_end 
-:      006712 at_rev_le_name_inquiry:
-0x4078 006713 call get_uart_twptr 
-0x4079 006714 call at_group_le_name_inquiry 
-0x407a 006715 branch at_nomal_rev_end 
-:      006717 at_rev_adss:
-0x407b 006718 ifetch 1 ,contru 
-0x407c 006719 beq at_ques ,at_rev_adss_inquiry 
-0x407d 006720 beq at_equ ,at_rev_adss_set 
-0x407e 006721 branch at_error_rev_end 
-:      006722 at_rev_adss_inquiry:
-0x407f 006723 call at_group_adss_inquiry 
-0x4080 006724 branch at_nomal_rev_end 
-:      006726 at_rev_leadss:
-0x4081 006727 ifetch 1 ,contru 
-0x4082 006728 beq at_ques ,at_rev_leadss_inquiry 
-0x4083 006729 beq at_equ ,at_rev_leadss_set 
-0x4084 006730 branch at_error_rev_end 
-:      006731 at_rev_leadss_inquiry:
-0x4085 006733 call at_group_leadss_inquiry 
-0x4086 006734 branch at_nomal_rev_end 
-:      006736 at_rev_vers:
-0x4087 006737 ifetch 1 ,contru 
-0x4088 006738 beq at_ques ,at_rev_vers_inquiry 
-0x4089 006739 branch at_error_rev_end 
-:      006740 at_rev_vers_inquiry:
-0x408a 006741 call at_group_version_inquiry 
-0x408b 006742 branch at_nomal_rev_end 
-:      006745 at_rev_uart:
-0x408c 006746 ifetch 1 ,contru 
-0x408d 006747 beq at_equ ,at_rev_uart_set 
-0x408e 006748 branch at_error_rev_end 
-:      006751 at_rev_pswd:
-0x408f 006752 ifetch 1 ,contru 
-0x4090 006753 beq at_ques ,at_rev_pswd_inquiry 
-0x4091 006754 beq at_equ ,at_rev_pswd_set 
-0x4092 006755 branch at_error_rev_end 
-:      006756 at_rev_pswd_inquiry:
-0x4093 006757 call at_group_pswd_inquiry 
-0x4094 006758 branch at_nomal_rev_end 
-:      006760 at_rev_class:
-0x4095 006761 ifetch 1 ,contru 
-0x4096 006762 beq at_ques ,at_rev_class_inquiry 
-0x4097 006763 beq at_equ ,at_rev_class_set 
-0x4098 006764 branch at_error_rev_end 
-:      006765 at_rev_class_inquiry:
-0x4099 006766 call at_group_class_inquiry 
-0x409a 006767 branch at_nomal_rev_end 
-:      006769 at_rev_list:
-0x409b 006770 ifetch 1 ,contru 
-0x409c 006771 beq at_ques ,at_rev_list_inquiry 
-0x409d 006772 beq at_equ ,at_rev_list_set 
-0x409e 006773 branch at_error_rev_end 
-:      006774 at_rev_list_inquiry:
-0x409f 006775 call at_group_list_inquiry 
-0x40a0 006776 branch at_nomal_rev_end 
-:      006778 at_rev_role:
-0x40a1 006779 ifetch 1 ,contru 
-0x40a2 006780 beq at_ques ,at_rev_role_inquiry 
-0x40a3 006781 beq at_equ ,at_rev_role_set 
-0x40a4 006782 branch at_error_rev_end 
-:      006785 at_rev_sniff:
-0x40a5 006786 ifetch 1 ,contru 
-0x40a6 006787 beq at_ques ,at_rev_sniff_inquiry 
-0x40a7 006788 beq at_equ ,at_rev_sniff_set 
-0x40a8 006789 branch at_error_rev_end 
-:      006790 at_rev_sniff_inquiry:
-0x40a9 006791 call at_group_sniff_inquiry 
-0x40aa 006792 branch at_nomal_rev_end 
-:      006794 at_rev_ldev:
-0x40ab 006795 ifetch 1 ,contru 
-0x40ac 006796 beq at_ques ,at_rev_ldev_inquiry 
-0x40ad 006797 branch at_error_rev_end 
-:      006798 at_rev_ldev_inquiry:
-0x40ae 006799 call at_group_ldev_inquiry 
-0x40af 006800 branch at_nomal_rev_end 
-:      006802 at_rev_rssi:
-0x40b0 006803 ifetch 1 ,contru 
-0x40b1 006804 beq at_ques ,at_rev_rssi_inquiry 
-0x40b2 006805 branch at_nomal_rev_end 
-:      006806 at_rev_rssi_inquiry:
-0x40b3 006807 call context_check_idle 
-0x40b4 006808 nbranch at_error_rev_end ,zero 
-0x40b5 006809 call at_group_rssi_inquiry 
-0x40b6 006810 branch at_nomal_rev_end 
-:      006812 at_rev_cdev:
-0x40b7 006813 ifetch 1 ,contru 
-0x40b8 006814 beq at_ques ,at_rev_cdev_inquiry 
-0x40b9 006815 branch at_error_rev_end 
-:      006816 at_rev_cdev_inquiry:
-0x40ba 006817 fetch 1 ,mem_context 
-0x40bb 006818 bbit0 state_inconn ,at_error_rev_end 
-0x40bc 006819 call get_uart_twptr 
-0x40bd 006820 fetch 1 ,mem_context + coffset_mode 
-0x40be 006821 bbit1 mode_le ,le_cdev_inquiry 
-0x40bf 006822 branch at_cdev_unle_inq 
-:      006823 le_cdev_inquiry:
-0x40c0 006824 arg mem_prarm_cdev ,rega 
-0x40c1 006825 arg 4 ,loopcnt 
-0x40c2 006826 call at_group_inquiryhead_common 
-0x40c3 006827 call at_rev_uart_write_62 
-0x40c4 006828 setarg 0x34 
-0x40c5 006829 istore 1 ,contwu 
-0x40c6 006830 call at_rev_uart_write_44 
-0x40c7 006831 arg mem_le_plap ,rega 
-0x40c8 006832 call adss_hex2string_to_uart 
-0x40c9 006833 call uartd_send 
-0x40ca 006834 branch at_nomal_rev_end 
-:      006835 at_cdev_unle_inq:
-0x40cb 006836 arg mem_prarm_cdev ,rega 
-0x40cc 006837 arg 4 ,loopcnt 
-0x40cd 006838 call at_group_inquiryhead_common 
-0x40ce 006839 call at_rev_uart_write_62 
-0x40cf 006840 setarg 0x33 
-0x40d0 006841 istore 1 ,contwu 
-0x40d1 006842 call at_rev_uart_write_44 
-0x40d2 006843 arg mem_plap ,rega 
-0x40d3 006844 call adss_hex2string_to_uart 
-0x40d4 006845 call uartd_send 
-0x40d5 006846 branch at_nomal_rev_end 
-:      006849 at_rev_inqr:
-0x40d6 006850 set1 mark_ext_patch ,mark 
-0x40d7 006851 bpatch patch32_4 ,mem_patch32 
-0x40d8 006852 call app_check_conn_device_nums_addr 
-0x40d9 006853 fetch 1 ,mem_device_nums 
-0x40da 006854 bne 0 ,at_error_rev_end 
-0x40db 006855 call do_at_inquiry 
-0x40dc 006856 branch at_nomal_rev_end 
-:      006858 at_rev_leinqr:
-0x40dd 006859 set1 mark_ext_patch ,mark 
-0x40de 006860 bpatch patch32_5 ,mem_patch32 
-0x40df 006861 call do_at_leinquiry 
-0x40e0 006862 branch at_nomal_rev_end 
-:      006864 at_rev_role_inquiry:
-0x40e1 006865 arg mem_prarm_role ,rega 
-0x40e2 006866 arg 4 ,loopcnt 
-0x40e3 006867 call at_group_inquiryhead_common 
-0x40e4 006868 call context_check_idle 
-0x40e5 006869 nbranch at_rev_uart_write_n ,zero 
-0x40e6 006870 fetch 1 ,mem_context + coffset_mode 
-0x40e7 006871 bbit1 mode_master ,at_rev_uart_write_m 
-0x40e8 006872 call at_rev_uart_write_s 
-0x40e9 006873 call uartd_send 
-0x40ea 006874 branch at_nomal_rev_end 
-:      006875 at_rev_uart_write_m:
-0x40eb 006876 setarg 0x4d 
-0x40ec 006877 istore 1 ,contwu 
-0x40ed 006878 call uartd_send 
-0x40ee 006879 branch at_nomal_rev_end 
-:      006880 at_rev_uart_write_s:
-0x40ef 006881 setarg 0x53 
-0x40f0 006882 istore 1 ,contwu 
-0x40f1 006883 rtn 
-:      006885 at_rev_cmode:
-0x40f2 006886 ifetch 1 ,contru 
-0x40f3 006887 beq at_ques ,at_rev_cmode_inquiry 
-0x40f4 006888 beq at_equ ,at_rev_cmode_set 
-0x40f5 006889 branch at_error_rev_end 
-:      006890 at_rev_cmode_inquiry:
-0x40f6 006891 call at_group_cmode_inquiry 
-0x40f7 006892 branch at_nomal_rev_end 
-:      006894 at_rev_mode:
-0x40f8 006895 ifetch 1 ,contru 
-0x40f9 006896 beq at_equ ,at_rev_mode_set 
-0x40fa 006897 branch at_error_rev_end 
-:      006899 at_rev_dmstate:
-0x40fb 006900 ifetch 1 ,contru 
-0x40fc 006901 beq at_ques ,at_rev_dmstate_inquiry 
-0x40fd 006902 branch at_error_rev_end 
-:      006903 at_rev_dmstate_inquiry:
-0x40fe 006904 call at_group_dmstate_inquiry 
-0x40ff 006905 branch at_nomal_rev_end 
-:      006907 at_rev_reconn:
-0x4100 006908 fetch 1 ,mem_app_connection_options 
-0x4101 006909 store 1 ,mem_connection_options 
-0x4102 006910 call eeprom_load_reconn_info 
-0x4103 006911 call app_check_conn_device_nums_addr 
-0x4104 006912 fetch 1 ,mem_device_nums 
-0x4105 006913 bne 0 ,at_error_rev_end 
-0x4106 006914 fetch 1 ,mem_xrecord_mode 
-0x4107 006915 beq rec_3_mode ,at_rev_unle_reconn 
-0x4108 006916 beq rec_4_mode ,at_rev_lereconn 
-0x4109 006917 branch at_error_rev_end 
-:      006919 at_rev_lereconn:
-0x410a 006920 call app_ble_start_direct_adv 
-0x410b 006921 branch at_nomal_rev_end 
-:      006922 at_rev_unle_reconn:
-0x410c 006923 call app_bt_start_reconnect 
-0x410d 006924 branch at_nomal_rev_end 
-:      006926 at_rev_dis:
-0x410e 006927 call app_check_conn_device_nums_addr 
-0x410f 006928 fetch 1 ,mem_device_nums 
-0x4110 006929 bne 1 ,at_error_rev_end 
-0x4111 006930 fetch 1 ,mem_context + coffset_mode 
-0x4112 006931 bbit1 mode_le ,at_rev_ledis 
-0x4113 006932 call app_bt_disconnect 
-0x4114 006933 branch at_nomal_rev_end 
-:      006936 at_rev_ledis:
-0x4115 006937 call app_ble_disconnect 
-0x4116 006938 branch at_nomal_rev_end 
-:      006941 at_rev_stsn:
-0x4117 006942 ifetch 1 ,contru 
-0x4118 006943 beq at_equ ,at_rev_stsn_set 
-0x4119 006944 branch at_error_rev_end 
-:      006945 at_rev_stsn_set:
-0x411a 006946 ifetch 1 ,contru 
-0x411b 006947 beq 0x31 ,at_exit_sniff 
-0x411c 006948 beq 0x30 ,at_enter_sniff 
-0x411d 006949 branch at_error_rev_end 
-:      006950 at_enter_sniff:
-0x411e 006951 call app_check_sniff 
-0x411f 006952 branch at_nomal_rev_end ,true 
-0x4120 006953 call app_bt_enter_sniff 
-0x4121 006954 branch at_nomal_rev_end 
-:      006955 at_exit_sniff:
-0x4122 006956 call app_check_sniff 
-0x4123 006957 nbranch at_nomal_rev_end ,true 
-0x4124 006958 call module_exit_sniff 
-0x4125 006959 call at_set_cmd_task_flag 
-0x4126 006960 branch at_nomal_rev_end 
-:      006963 at_rev_clrflg:
-0x4127 006964 call app_clearflag_store 
-0x4128 006965 branch at_nomal_rev_end 
-:      006967 at_rev_ota:
-0x4129 006968 ifetch 1 ,contru 
-0x412a 006969 beq at_equ ,at_rev_ota_process 
-0x412b 006970 branch at_error_rev_end 
-:      006972 at_rev_discov:
-0x412c 006973 call app_check_conn_device_nums_addr 
-0x412d 006974 fetch 1 ,mem_device_nums 
-0x412e 006975 bne 0 ,at_error_rev_end 
-0x412f 006976 call module_disconn_start 
-0x4130 006977 branch at_nomal_rev_end 
-:      006983 at_rev_name_set:
-0x4131 006984 arg mem_local_name ,rega 
-0x4132 006985 call at_set_common 
-0x4133 006986 storet 1 ,mem_local_name_length 
-0x4134 006987 call at_store_bt_name 
-0x4135 006988 branch at_nomal_rev_end 
-:      006990 at_rev_le_name_set:
-0x4136 006991 arg mem_le_name ,rega 
-0x4137 006992 call at_set_common 
-0x4138 006993 storet 1 ,mem_le_name_len 
-0x4139 006994 call at_store_le_name 
-0x413a 006995 call le_modified_name 
-0x413b 006996 branch at_nomal_rev_end 
-:      006998 at_rev_adss_set:
-0x413c 006999 arg mem_lap ,contw 
-0x413d 007000 call adss_string2hex_from_uart 
-0x413e 007001 call at_store_bt_adss 
-0x413f 007002 branch at_nomal_rev_end 
-:      007004 at_rev_leadss_set:
-0x4140 007005 arg mem_le_lap ,contw 
-0x4141 007006 call adss_string2hex_from_uart 
-0x4142 007007 call at_store_le_adss 
-0x4143 007008 branch at_nomal_rev_end 
-:      007010 at_rev_pswd_set:
-0x4144 007011 arg mem_pin ,rega 
-0x4145 007012 call at_set_common 
-0x4146 007013 storet 1 ,mem_pin_length 
-0x4147 007014 call at_store_bt_pincode 
-0x4148 007015 branch at_nomal_rev_end 
-:      007017 at_rev_uart_set:
-0x4149 007018 call string2dec_from_uart 
-0x414a 007019 setarg uart_clk 
-0x414b 007020 idiv temp 
-0x414c 007021 call wait_div_end 
-0x414d 007022 quotient pdata 
-0x414e 007023 store 2 ,mem_timeup 
-0x414f 007024 call at_store_throughput_uart_baud 
-0x4150 007025 branch at_nomal_rev_end 
-:      007027 at_rev_mode_set:
-0x4151 007028 ifetch 1 ,contru 
-0x4152 007029 sub pdata ,0x33 ,null 
-0x4153 007030 nbranch at_error_rev_end ,positive 
-0x4154 007031 and pdata ,0x3 ,pdata 
-0x4155 007032 store 1 ,mem_module_state 
-0x4156 007033 branch at_nomal_rev_end 
-:      007035 at_rev_class_set:
-0x4157 007036 ifetch 3 ,contru 
-0x4158 007037 store 3 ,mem_class 
-0x4159 007038 branch at_nomal_rev_end 
-:      007040 at_rev_role_set:
-0x415a 007041 call context_check_idle 
-0x415b 007042 nbranch at_error_rev_end ,zero 
-0x415c 007043 ifetch 1 ,contru 
-0x415d 007044 beq 0x53 ,at_role_slave 
-0x415e 007045 beq 0x4D ,at_role_master 
-0x415f 007046 branch at_error_rev_end 
-:      007048 at_role_slave:
-0x4160 007049 fetch 1 ,mem_context + coffset_mode 
-0x4161 007050 bbit1 mode_master ,at_switch_role 
-0x4162 007051 branch at_error_rev_end 
-:      007053 at_role_master:
-0x4163 007054 fetch 1 ,mem_context + coffset_mode 
-0x4164 007055 bbit0 mode_master ,at_switch_role 
-0x4165 007056 branch at_error_rev_end 
-:      007058 at_switch_role:
-0x4166 007059 fetch 1 ,mem_module_task 
-0x4167 007060 set1 at_task_switch ,pdata 
-0x4168 007061 store 1 ,mem_module_task 
-0x4169 007062 jam hci_cmd_role_switch ,mem_hci_cmd 
-0x416a 007063 branch at_rev_end 
-:      007065 at_rev_sniff_set:
-0x416b 007066 arg mem_sniff_param_interval ,contw 
-0x416c 007067 call mem2_string2hex_from_uart 
-0x416d 007068 arg mem_sniff_param_attempt ,contw 
-0x416e 007069 call mem2_string2hex_from_uart 
-0x416f 007070 arg mem_sniff_param_timeout ,contw 
-0x4170 007071 call mem2_string2hex_from_uart 
-0x4171 007072 branch at_nomal_rev_end 
-:      007074 at_rev_list_set:
-0x4172 007075 ifetch 1 ,contru 
-0x4173 007076 beq 0x31 ,at_rev_list_set_1 
-0x4174 007077 beq 0x32 ,at_rev_list_set_2 
-0x4175 007078 branch at_error_rev_end 
-:      007079 at_rev_list_set_1:
-0x4176 007080 ifetch 1 ,contru 
-0x4177 007081 arg mem_temp_lap ,contw 
-0x4178 007082 call adss_string2hex_from_uart 
-0x4179 007083 call eeprom_clear_bd_reconn_info 
-0x417a 007084 nrtn user 
-0x417b 007085 branch at_nomal_rev_end 
-:      007086 at_rev_list_set_2:
-0x417c 007087 call eeprom_clear_all_reconn_info 
-0x417d 007088 branch at_nomal_rev_end 
-:      007090 at_rev_cmode_set:
-0x417e 007091 ifetch 1 ,contru 
-0x417f 007092 fetcht 1 ,mem_module_state 
-0x4180 007093 nsetflag blank ,at_state_cmode ,temp 
-0x4181 007094 storet 1 ,mem_module_state 
-0x4182 007095 branch at_nomal_rev_end ,blank 
-0x4183 007096 ifetch 1 ,contru 
-0x4184 007097 arg mem_cmode_addr ,contw 
-0x4185 007098 call adss_string2hex_from_uart 
-0x4186 007099 branch at_nomal_rev_end 
-:      007101 at_rev_ota_process:
-0x4187 007102 set1 mark_ext_patch ,mark 
-0x4188 007103 bpatch patch32_6 ,mem_patch32 
-0x4189 007104 arg 20 ,loopcnt 
-0x418a 007105 arg mem_l2cap_rxbuff1 ,contw 
-0x418b 007106 call uart_copy_rx_bytes 
-0x418c 007107 arg mem_l2cap_rxbuff1 ,rega 
-0x418d 007108 fetch 1 ,mem_l2cap_rxbuff1 
-0x418e 007109 compare ota_write_req ,pdata ,0xff 
-0x418f 007110 call prcp_parse_ota_write_req ,true 
-0x4190 007111 fetch 1 ,mem_l2cap_rxbuff1 
-0x4191 007112 compare ota_end_cmd ,pdata ,0xff 
-0x4192 007113 call prcp_parse_ota_end_cmd ,true 
-0x4193 007114 branch at_nomal_rev_end 
-:      007119 at_group_name_inquiry:
-0x4194 007120 arg mem_prarm_name ,rega 
-0x4195 007121 arg 4 ,loopcnt 
-0x4196 007122 call at_group_inquiryhead_common 
-0x4197 007123 fetch 1 ,mem_local_name_length 
-0x4198 007124 copy pdata ,loopcnt 
-0x4199 007125 arg mem_local_name ,contr 
-0x419a 007126 branch send_mem_to_uart0 
-:      007127 at_group_le_name_inquiry:
-0x419b 007128 arg mem_prarm_blename ,rega 
-0x419c 007129 force 7 ,loopcnt 
-0x419d 007130 call at_group_inquiryhead_common 
-0x419e 007131 call le_get_device_name 
-0x419f 007132 ifetch 1 ,contr 
-0x41a0 007133 copy pdata ,loopcnt 
-0x41a1 007134 branch send_mem_to_uart0 
-:      007137 at_group_adss_inquiry:
-0x41a2 007138 arg mem_prarm_adss ,rega 
-0x41a3 007139 arg 4 ,loopcnt 
-0x41a4 007140 call at_group_inquiryhead_common 
-0x41a5 007141 arg mem_lap ,rega 
-0x41a6 007142 call adss_hex2string_to_uart 
-0x41a7 007143 branch uartd_send 
-:      007144 at_group_leadss_inquiry:
-0x41a8 007145 arg mem_prarm_bleadss ,rega 
-0x41a9 007146 arg 7 ,loopcnt 
-0x41aa 007147 call at_group_inquiryhead_common 
-0x41ab 007148 arg mem_le_lap ,rega 
-0x41ac 007149 call adss_hex2string_to_uart 
-0x41ad 007150 branch uartd_send 
-:      007153 at_group_version_inquiry:
-0x41ae 007154 arg mem_prarm_vers ,rega 
-0x41af 007155 arg 4 ,loopcnt 
-0x41b0 007156 call at_group_inquiryhead_common 
-0x41b1 007157 arg 6 ,loopcnt 
-0x41b2 007158 arg mem_module_version ,contr 
-0x41b3 007159 branch send_mem_to_uart0 
-:      007161 at_group_class_inquiry:
-0x41b4 007162 arg mem_prarm_class ,rega 
-0x41b5 007163 arg 5 ,loopcnt 
-0x41b6 007164 call at_group_inquiryhead_common 
-0x41b7 007165 arg 3 ,loopcnt 
-0x41b8 007166 arg mem_class ,contr 
-0x41b9 007167 branch send_mem_to_uart0 
-:      007169 at_group_list_inquiry:
-0x41ba 007170 arg mem_prarm_list ,rega 
-0x41bb 007171 arg 4 ,loopcnt 
-0x41bc 007172 call at_group_inquiryhead_common 
-0x41bd 007173 call eeprom_load_bdaddr_list 
-0x41be 007174 call at_group_list_reply 
-0x41bf 007175 branch uartd_send 
-:      007178 at_group_ldev_inquiry:
-0x41c0 007179 call eeprom_load_reconn_bdaddr 
-0x41c1 007180 arg mem_prarm_ldev ,rega 
-0x41c2 007181 arg 4 ,loopcnt 
-0x41c3 007182 call at_group_inquiryhead_common 
-0x41c4 007183 fetch 1 ,mem_record_bt_mode 
-0x41c5 007184 beq rec_3_mode ,at_group_ldev_inquiry0 
-0x41c6 007185 beq rec_4_mode ,at_group_ldev_inquiry0 
-0x41c7 007186 branch uartd_send 
-:      007187 at_group_ldev_inquiry0:
-0x41c8 007188 istore 1 ,contwu 
-0x41c9 007189 call at_rev_uart_write_44 
-0x41ca 007190 arg mem_temp_lap ,rega 
-0x41cb 007191 call adss_hex2string_to_uart 
-0x41cc 007192 branch uartd_send 
-:      007194 at_group_rssi_inquiry:
-0x41cd 007195 set1 mark_ext_patch ,mark 
-0x41ce 007196 bpatch patch32_7 ,mem_patch32 
-0x41cf 007197 arg mem_prarm_rssi ,rega 
-0x41d0 007198 arg 4 ,loopcnt 
-0x41d1 007199 call at_group_inquiryhead_common 
-0x41d2 007200 call at_rssi_result 
-0x41d3 007201 branch uartd_send 
-:      007202 at_rssi_result:
-0x41d4 007203 arg mem_rssi ,rega 
-0x41d5 007204 arg 1 ,loopcnt 
-0x41d6 007205 branch hex2string_to_uart0 
-:      007207 at_group_cdev_inquiry:
-0x41d7 007208 rtn 
-:      007211 at_group_cmode_inquiry:
-0x41d8 007212 arg mem_prarm_cmode ,rega 
-0x41d9 007213 arg 5 ,loopcnt 
-0x41da 007214 call at_group_inquiryhead_common 
-0x41db 007215 arg mem_cmode_addr ,rega 
-0x41dc 007216 call adss_hex2string_to_uart 
-0x41dd 007217 branch uartd_send 
-:      007220 at_group_dmstate_inquiry:
-0x41de 007221 arg mem_prarm_dmstate ,rega 
-0x41df 007222 arg 7 ,loopcnt 
-0x41e0 007223 call at_group_inquiryhead_common 
-0x41e1 007224 fetch 1 ,mem_module_state 
-0x41e2 007225 copy pdata ,rega 
-0x41e3 007226 fetch 1 ,mem_context 
-0x41e4 007227 isolate1 state_inconn ,pdata 
-0x41e5 007228 setflag true ,at_state_isconn ,rega 
-0x41e6 007229 isolate1 state_insniff ,pdata 
-0x41e7 007230 setflag true ,at_state_sniff ,rega 
-0x41e8 007231 fetch 1 ,mem_context + coffset_mode 
-0x41e9 007232 isolate1 mode_master ,pdata 
-0x41ea 007233 setflag true ,at_state_role ,rega 
-0x41eb 007234 isolate1 mode_le ,pdata 
-0x41ec 007235 setflag true ,at_state_le ,rega 
-0x41ed 007236 copy rega ,pdata 
-0x41ee 007237 istore 1 ,contwu 
-0x41ef 007238 branch uartd_send 
-:      007240 do_at_inquiry:
-0x41f0 007241 setarg param_glap 
-0x41f1 007242 store 3 ,mem_glap 
-0x41f2 007243 fetch 1 ,mem_at_using_flag 
-0x41f3 007244 set1 at_flag_inq ,pdata 
-0x41f4 007245 store 1 ,mem_at_using_flag 
-0x41f5 007246 branch do_at_inquiry0 
-:      007248 do_at_leinquiry:
-0x41f6 007249 call app_check_conn_device_nums_addr 
-0x41f7 007250 fetch 1 ,mem_device_nums 
-0x41f8 007251 bne 0 ,at_error_rev_end 
-0x41f9 007252 call app_ble_start_scan 
-0x41fa 007253 fetch 1 ,mem_at_using_flag 
-0x41fb 007254 set1 at_flag_leinq ,pdata 
-0x41fc 007255 store 1 ,mem_at_using_flag 
-0x41fd 007256 setarg 0x200 
-0x41fe 007257 store 2 ,mem_at_scan_time 
-0x41ff 007258 arg mem_prarm_bleinqr ,rega 
-0x4200 007259 arg 6 ,loopcnt 
-0x4201 007260 call at_group_inquiryhead_common 
-0x4202 007261 call send_mem_to_uart0 
-0x4203 007262 branch at_rev_end 
-:      007266 at_group_pswd_inquiry:
-0x4204 007267 arg mem_prarm_pswd ,rega 
-0x4205 007268 arg 4 ,loopcnt 
-0x4206 007269 call at_group_inquiryhead_common 
-0x4207 007270 fetch 1 ,mem_pin_length 
-0x4208 007271 copy pdata ,loopcnt 
-0x4209 007272 arg mem_pin ,contr 
-0x420a 007273 branch send_mem_to_uart0 
-:      007277 at_group_sniff_inquiry:
-0x420b 007278 arg mem_prarm_sniff ,rega 
-0x420c 007279 arg 5 ,loopcnt 
-0x420d 007280 call at_group_inquiryhead_common 
-0x420e 007281 call at_rev_uart_write_62 
-0x420f 007282 setarg 84 
-0x4210 007283 istore 1 ,contwu 
-0x4211 007284 call at_rev_uart_write_colon 
-0x4212 007285 arg mem_sniff_param_interval ,rega 
-0x4213 007286 call mem2_hex2string_to_uart 
-0x4214 007287 call at_rev_uart_write_62 
-0x4215 007288 setarg 65 
-0x4216 007289 istore 1 ,contwu 
-0x4217 007290 call at_rev_uart_write_colon 
-0x4218 007291 arg mem_sniff_param_attempt ,rega 
-0x4219 007292 call mem2_hex2string_to_uart 
-0x421a 007293 call at_rev_uart_write_62 
-0x421b 007294 setarg 79 
-0x421c 007295 istore 1 ,contwu 
-0x421d 007296 call at_rev_uart_write_colon 
-0x421e 007297 arg mem_sniff_param_timeout ,rega 
-0x421f 007298 call mem2_hex2string_to_uart 
-0x4220 007299 branch send_mem_to_uart0 
-:      007300 at_inquiry_reply:
-0x4221 007301 call get_uart_twptr 
-0x4222 007302 call at_rev_uart_write_62 
-0x4223 007303 arg extm_lap ,rega 
-0x4224 007304 call adss_hex2string_to_uart 
-0x4225 007305 call at_rev_uart_write_44 
-0x4226 007306 arg extm_class ,rega 
-0x4227 007307 call mem3_hex2string_to_uart 
-0x4228 007308 call at_rev_uart_write_44 
-0x4229 007309 call at_rssi_result 
-0x422a 007310 branch uartd_send 
-:      007321 at_set_common:
-0x422b 007322 call at_set_setprarm 
-0x422c 007323 branch uart_copy_rx_bytes 
-:      007324 at_set_setprarm:
-0x422d 007325 call uart_get_remain_length 
-0x422e 007326 copy pdata ,temp 
-0x422f 007327 copy pdata ,loopcnt 
-0x4230 007328 copy rega ,contw 
-0x4231 007329 rtn 
-:      007332 at_group_inquiryhead_common:
-0x4232 007333 call get_uart_twptr 
-0x4233 007334 call at_rev_uart_write_plus 
-:      007335 at_group_inquiryhead_common0:
-0x4234 007336 copy rega ,contr 
-0x4235 007337 call uart_copy_tx_bytes 
-0x4236 007338 branch at_rev_uart_write_colon 
-:      007341 string_compare_uart_follow:
-0x4237 007342 ifetch 1 ,contru 
-0x4238 007343 ifetcht 1 ,regb 
-0x4239 007344 isub temp ,null 
-0x423a 007345 disable true 
-0x423b 007346 nbranch string_compare_uart_follow_diff ,zero 
-0x423c 007347 increase 1 ,regb 
-0x423d 007348 loop string_compare_uart_follow 
-0x423e 007349 enable true 
-0x423f 007350 rtn 
-:      007351 string_compare_uart_follow_diff:
-0x4240 007352 branch restore_contru 
-:      007355 at_rev_uart_write_plus:
-0x4241 007356 setarg ui_plus 
-0x4242 007357 istore 1 ,contwu 
-0x4243 007358 rtn 
-:      007360 at_rev_uart_write_colon:
-0x4244 007361 setarg ui_colon 
-0x4245 007362 istore 1 ,contwu 
-0x4246 007363 rtn 
-:      007366 at_rev_uart_write_62:
-0x4247 007367 setarg 62 
-0x4248 007368 istore 1 ,contwu 
-0x4249 007369 rtn 
-:      007370 at_rev_uart_write_n:
-0x424a 007371 setarg 78 
-0x424b 007372 istore 1 ,contwu 
-0x424c 007373 call uartd_send 
-0x424d 007374 branch at_nomal_rev_end 
-:      007378 at_rev_uart_write_44:
-0x424e 007379 setarg at_comma 
-0x424f 007380 istore 1 ,contwu 
-0x4250 007381 rtn 
-:      007383 restore_contru:
-0x4251 007384 copy rega ,contru 
-0x4252 007385 rtn 
-:      007387 at_group_list_reply:
-0x4253 007388 arg mem_bdaddr_list_buff + 7 ,regc 
-0x4254 007389 arg 4 ,loopcnt 
-:      007390 at_group_list_reply_loop:
-0x4255 007391 copy loopcnt ,pdata 
-0x4256 007392 store 1 ,mem_pdatatemp 
-0x4257 007393 ifetch 1 ,regc 
-0x4258 007394 beq rec_3_mode ,at_group_list_isrecord 
-0x4259 007395 beq rec_4_mode ,at_group_list_isrecord 
-0x425a 007396 branch at_group_list_notrecord 
-:      007397 at_group_list_isrecord:
-0x425b 007398 call at_rev_uart_write_62 
-0x425c 007399 ifetch 1 ,regc 
-0x425d 007400 istore 1 ,contwu 
-0x425e 007401 increase 1 ,regc 
-0x425f 007402 call at_rev_uart_write_44 
-0x4260 007403 copy regc ,rega 
-0x4261 007404 call adss_hex2string_to_uart 
-:      007405 at_group_list_notrecord0:
-0x4262 007406 increase 6 ,regc 
-0x4263 007407 fetch 1 ,mem_pdatatemp 
-0x4264 007408 copy pdata ,loopcnt 
-0x4265 007409 loop at_group_list_reply_loop 
-0x4266 007410 rtn 
-:      007411 at_group_list_notrecord:
-0x4267 007412 increase 1 ,regc 
-0x4268 007413 branch at_group_list_notrecord0 
-:      007417 uart_get_remain_length:
-0x4269 007418 set1 mark_ext_patch ,mark 
-0x426a 007419 bpatch patch33_0 ,mem_patch33 
-0x426b 007420 hfetch 2 ,core_uart_rrptr 
-0x426c 007421 isub contru ,pdata 
-0x426d 007422 rtn zero 
-0x426e 007423 branch uart_get_remain_length0 ,positive 
-:      007424 uart_get_remain_length_common:
-0x426f 007425 fetcht 2 ,mem_current_packet_length 
-0x4270 007426 iadd temp ,pdata 
-0x4271 007427 increase -2 ,pdata 
-0x4272 007428 rtn 
-:      007429 uart_get_remain_length0:
-0x4273 007430 call uart_get_rx_buff_length 
-0x4274 007431 iadd contru ,temp 
-0x4275 007432 hfetch 2 ,core_uart_rrptr 
-0x4276 007433 isub temp ,pdata 
-0x4277 007434 branch uart_get_remain_length_common 
-:      007436 uart_get_rx_buff_length:
-0x4278 007437 arg mem_module_rx_buf_end ,pdata 
-0x4279 007438 increase 1 ,pdata 
-0x427a 007439 arg mem_module_rx_buf ,temp 
-0x427b 007440 isub temp ,pdata 
-0x427c 007441 rtn 
-:      007443 release_packet:
-0x427d 007444 fetcht 2 ,mem_current_packet_length 
-0x427e 007445 branch uartd_rxdone_by_len 
-:      007450 at_error_rev_end:
-0x427f 007451 set1 mark_ext_patch ,mark 
-0x4280 007452 bpatch patch33_1 ,mem_patch33 
-0x4281 007453 call get_uart_twptr 
-0x4282 007454 setarg 0x525245 
-0x4283 007455 istore 3 ,contwu 
-0x4284 007456 call uartd_send 
-0x4285 007457 branch at_rev_end 
-:      007459 at_nomal_rev_end:
-0x4286 007460 set1 mark_ext_patch ,mark 
-0x4287 007461 bpatch patch33_2 ,mem_patch33 
-0x4288 007462 call get_uart_twptr 
-0x4289 007463 setarg 0x4b4f 
-0x428a 007464 istore 2 ,contwu 
-0x428b 007465 call uartd_send 
-:      007466 spp_send_end:
-:      007467 at_rev_end:
-0x428c 007468 set1 mark_ext_patch ,mark 
-0x428d 007469 bpatch patch33_3 ,mem_patch33 
-0x428e 007470 call release_packet 
-:      007471 spp_ipc_end:
-0x428f 007472 setarg 0 
-0x4290 007473 store 2 ,mem_current_packet_length 
-0x4291 007474 store 4 ,mem_last_uart_clock 
-0x4292 007475 rtn 
-:      007478 le_dongle_init:
-0x4293 007479 call usb_init 
-0x4294 007480 call app_led_start_blink 
-0x4295 007481 setarg le_dongle 
-0x4296 007482 store 2 ,mem_cb_le_process 
-0x4297 007483 setarg dongle_process_bb_event 
-0x4298 007484 store 2 ,mem_cb_bb_event_process 
-0x4299 007485 setarg usb_isr 
-0x429a 007486 store 2 ,mem_cb_idle_process 
-0x429b 007487 jam 5 ,mem_dongle_count 
-0x429c 007488 jam 0 ,mem_dongle_peers 
-0x429d 007489 jam hci_cmd_le_create_conn ,mem_hci_cmd 
-0x429e 007490 rtn 
-:      007493 le_dongle:
-0x429f 007494 disable true 
-0x42a0 007495 call app_check_conn_device_nums_addr 
-0x42a1 007497 jam 0x1b ,mem_cmd_le_create_conn 
-0x42a2 007498 fetch 1 ,mem_device_nums 
-0x42a3 007499 compare 2 ,pdata ,0x3 
-0x42a4 007500 nrtn true 
-0x42a5 007501 jam 0 ,mem_le_scan_enable 
-0x42a6 007502 rtn 
-:      007504 le_scan_dongle:
-0x42a7 007505 fetch 1 ,mem_le_rxbuf 
-0x42a8 007506 bbit0 0 ,dongle_add_peer 
-0x42a9 007507 fetch 6 ,mem_le_rxbuf + 2 
-0x42aa 007508 fetcht 6 ,mem_le_plap 
-0x42ab 007509 isub temp ,null 
-0x42ac 007510 nrtn zero 
-:      007511 dongle_peer_paired:
-0x42ad 007512 fetch 6 ,mem_le_plap 
-0x42ae 007513 store 6 ,mem_le_conn_peer_addr 
-0x42af 007514 rtn 
-:      007516 dongle_add_peer:
-0x42b0 007517 arg 0xff ,rega 
-0x42b1 007518 call le_search_adtype 
-0x42b2 007519 nrtn zero 
-0x42b3 007520 ifetch 2 ,contr 
-0x42b4 007521 fetcht 2 ,mem_dongle_signature 
-0x42b5 007522 isub temp ,null 
-0x42b6 007523 nrtn zero 
-0x42b7 007524 fetch 1 ,mem_dongle_peers 
-0x42b8 007525 increase 1 ,pdata 
-0x42b9 007526 store 1 ,mem_dongle_peers 
-0x42ba 007527 fetcht 1 ,mem_dongle_pairing_cnt 
-0x42bb 007528 isub temp ,null 
-0x42bc 007529 branch dongle_peer_paired ,positive 
-0x42bd 007530 rtn 
-:      007532 dongle_process_bb_event:
-0x42be 007533 copy regc ,pdata 
-0x42bf 007534 beq bt_evt_le_disconnected ,dongle_le_event_bb_disconnected 
-0x42c0 007535 beq bt_evt_le_connected ,dongle_bb_event_connected 
-0x42c1 007536 and pdata ,0x0f ,temp 
-0x42c2 007537 and_into bt_evt_timer_mask ,pdata 
-0x42c3 007538 beq bt_evt_timer_init ,dongle_bb_event_100ms 
-0x42c4 007539 rtn 
-:      007541 dongle_le_event_bb_disconnected:
-0x42c5 007542 setarg 0 
-0x42c6 007543 store 6 ,mem_le_conn_peer_addr 
-0x42c7 007544 jam 0 ,mem_dongle_peers 
-0x42c8 007545 setarg 0 
-0x42c9 007546 store 5 ,mem_mouse_data 
-0x42ca 007547 jam send_mouse_data_cmd ,mem_mcmd 
-0x42cb 007548 call usb_isr 
-0x42cc 007549 branch app_ble_start_scan 
-:      007551 dongle_bb_event_100ms:
-0x42cd 007552 rtn 
-0x42ce 007553 fetch 1 ,mem_le_scan_enable 
-0x42cf 007554 rtn blank 
-0x42d0 007555 fetch 1 ,mem_dongle_count 
-0x42d1 007556 rtn blank 
-0x42d2 007557 increase -1 ,pdata 
-0x42d3 007558 store 1 ,mem_dongle_count 
-0x42d4 007559 nrtn blank 
-0x42d5 007560 call le_change_peer_addr 
-0x42d6 007561 branch app_ble_start_conn 
-:      007564 dongle_bb_event_connected:
-0x42d7 007565 branch app_ble_stop_scan 
-:      007567 le_change_peer_addr:
-0x42d8 007569 jam 5 ,mem_dongle_count 
-0x42d9 007570 fetch 1 ,mem_le_peer_state 
-0x42da 007571 beq le_context_state_kb ,addr_slave2 
-0x42db 007572 beq le_context_state_mouse ,addr_slave1 
-0x42dc 007573 rtn 
-:      007574 addr_slave1:
-0x42dd 007575 fetch 6 ,mem_le_addr_slave1 
-0x42de 007576 store 6 ,mem_app_peer_addr 
-0x42df 007577 jam le_context_state_kb ,mem_le_peer_state 
-0x42e0 007578 rtn 
-:      007579 addr_slave2:
-0x42e1 007580 fetch 6 ,mem_le_addr_slave2 
-0x42e2 007581 store 6 ,mem_app_peer_addr 
-0x42e3 007582 jam le_context_state_mouse ,mem_le_peer_state 
-0x42e4 007583 rtn 
-:      007586 hci_rx_bcsp:
-0x42e5 007587 ifetch 2 ,contru 
-0x42e6 007588 branch hci_reset_uart ,blank 
-0x42e7 007589 iforce regc 
-0x42e8 007590 ifetch 1 ,contru 
-0x42e9 007591 store 1 ,mem_h5rx_tmp 
-0x42ea 007592 iforce rega 
-0x42eb 007593 bbit0 6 ,hci_rx_bcsp_nocrc 
-0x42ec 007594 increase -2 ,regc 
-:      007595 hci_rx_bcsp_nocrc:
-0x42ed 007596 ifetch 2 ,contru 
-0x42ee 007597 rshift4 pdata ,loopcnt 
-0x42ef 007598 and pdata ,0xf ,debug 
-0x42f0 007599 iadd rega ,rega 
-0x42f1 007600 rshift8 pdata ,pdata 
-0x42f2 007601 iadd rega ,rega 
-0x42f3 007602 ifetch 1 ,contru 
-0x42f4 007603 iadd rega ,pdata 
-0x42f5 007604 bne 0xff ,hci_rx_bcsp_discard_packet 
-0x42f6 007605 add regc ,-4 ,pdata 
-0x42f7 007606 isub loopcnt ,null 
-0x42f8 007607 nbranch hci_rx_bcsp_discard_packet_err ,zero 
-0x42f9 007608 fetch 1 ,mem_h5rx_tmp 
-0x42fa 007609 isolate0 7 ,pdata 
-0x42fb 007610 branch hci_rx_bcsp_check_ack_skip ,true 
-0x42fc 007611 set0 mark_h5_reset ,mark 
-0x42fd 007612 bmark1 mark_h5_reset ,hci_rx_bcsp_check_ack_skip 
-0x42fe 007613 and_into 7 ,pdata 
-0x42ff 007614 fetcht 1 ,mem_h5tx_ack 
-0x4300 007615 isub temp ,null 
-0x4301 007616 nbranch hci_rx_bcsp_discard_packet_err ,zero 
-:      007617 hci_rx_bcsp_check_ack_skip:
-0x4302 007618 setarg 1600 
-0x4303 007619 force lpo_delay_timer ,queue 
-0x4304 007620 call timer_init 
-0x4305 007621 deposit debug 
-0x4306 007622 call hci_bcsp_parse_packet 
-0x4307 007623 rtn user 
-0x4308 007624 fetch 1 ,mem_h5rx_tmp 
-0x4309 007625 iforce rega 
-0x430a 007626 rshift3 pdata ,temp 
-0x430b 007627 and_into 7 ,temp 
-0x430c 007628 fetch 1 ,mem_h5rx_ack 
-0x430d 007629 isub temp ,pdata 
-0x430e 007630 sub pdata ,0 ,pdata 
-0x430f 007631 and_into 7 ,pdata 
-0x4310 007632 bne 1 ,hci_rx_bcsp_discard_packet_err 
-0x4311 007633 storet 1 ,mem_h5rx_ack 
-0x4312 007634 fetch 1 ,mem_h5rx_ackcnt 
-0x4313 007635 increase 1 ,pdata 
-0x4314 007636 store 1 ,mem_h5rx_ackcnt 
-0x4315 007637 branch hci_rx_bcsp_discard_packet 
-:      007639 hci_rx_bcsp_discard_packet_err:
-0x4316 007640 fetch 1 ,mem_check_err_acl_cont 
-0x4317 007641 increase 1 ,pdata 
-0x4318 007642 store 1 ,mem_check_err_acl_cont 
-:      007643 hci_rx_bcsp_discard_packet:
-0x4319 007644 hfetch 2 ,core_uart_rrptr 
-0x431a 007645 iforce contru 
-0x431b 007646 ifetch 2 ,contru 
-0x431c 007647 iadd contru ,contru 
-0x431d 007648 deposit contru 
-0x431e 007649 hstore 2 ,core_uart_rrptr 
-0x431f 007650 rtn 
-:      007652 hci_bcsp_parse_packet:
-0x4320 007653 disable user 
-0x4321 007654 rtn blank 
-0x4322 007655 beq 1 ,parse_bcsp_link_establish 
-0x4323 007656 beq 2 ,parse_bcsp_bccmd 
-0x4324 007657 beq 5 ,process_hci_cmd 
-0x4325 007658 beq 6 ,process_acl 
-0x4326 007659 beq 8 ,process_hci_patch 
-0x4327 007660 rtn 
-:      007662 parse_bcsp_link_establish:
-0x4328 007663 set0 mark_h5_reinit ,mark 
-0x4329 007664 ifetch 1 ,contru 
-0x432a 007665 beq 0xda ,parse_bcsp_link_establish_sync 
-0x432b 007666 beq 0xac ,parse_bcsp_link_establish_syncrsp 
-0x432c 007667 beq 0xad ,parse_bcsp_link_establish_conf 
-0x432d 007668 beq 0xde ,parse_bcsp_link_establish_confrsp 
-0x432e 007669 rtn 
-:      007670 parse_bcsp_link_establish_sync:
-0x432f 007671 bmark1 mark_h5_sync ,parse_bcsp_link_establish_send_syncrsp 
-0x4330 007672 force 0xda ,temp 
-0x4331 007673 setarg 0xededdc 
-0x4332 007674 call parse_bcsp_link_establish_send 
-:      007675 parse_bcsp_link_establish_send_syncrsp:
-0x4333 007676 force 0xac ,temp 
-0x4334 007677 setarg 0xeeefaf 
-0x4335 007678 branch parse_bcsp_link_establish_send 
-:      007679 parse_bcsp_link_establish_syncrsp:
-0x4336 007680 set1 mark_h5_sync ,mark 
-0x4337 007681 force 0xad ,temp 
-0x4338 007682 setarg 0xedacef 
-0x4339 007683 branch parse_bcsp_link_establish_send 
-:      007684 parse_bcsp_link_establish_conf:
-0x433a 007685 force 0xde ,temp 
-0x433b 007686 setarg 0xd0d0ad 
-:      007687 parse_bcsp_link_establish_send:
-0x433c 007688 lshift8 pdata ,pdata 
-0x433d 007689 ior temp ,temp 
-0x433e 007690 call hci_get_packet_ptr 
-0x433f 007691 istoret 4 ,contwu 
-0x4340 007692 force 1 ,queue 
-0x4341 007693 force 4 ,loopcnt 
-0x4342 007694 set0 mark_h5tx_rp ,mark 
-0x4343 007695 branch bcsp_send_packet 
-:      007696 parse_bcsp_link_establish_confrsp:
-0x4344 007697 force 0 ,alarm 
-0x4345 007698 branch hci_command_status 
-:      007700 parse_bcsp_bccmd:
-0x4346 007701 copy loopcnt ,alarm 
-0x4347 007702 call bcsp_send_ack 
-0x4348 007703 force 0 ,regb 
-0x4349 007704 call hci_get_packet_ptr 
-0x434a 007705 copy alarm ,loopcnt 
-0x434b 007706 ifetch 1 ,contru 
-0x434c 007707 setarg 1 
-0x434d 007708 istore 1 ,contwu 
-0x434e 007709 set0 mark_temp ,mark 
-:      007710 parse_bcsp_bccmd_loop:
-0x434f 007711 ifetch 1 ,contru 
-0x4350 007712 increase 1 ,regb 
-0x4351 007713 beq 0x1c ,parse_bcsp_bccmd_sco_link 
-0x4352 007714 compare 4 ,regb ,0xff 
-0x4353 007715 nbranch parse_bcsp_bccmd_next ,true 
-0x4354 007716 setflag blank ,mark_temp ,mark 
-0x4355 007717 bne 0x3a ,parse_bcsp_bccmd_next 
-0x4356 007718 setarg 2000 
-0x4357 007719 force h5_reinit_timer ,queue 
-0x4358 007720 call timer_init 
-0x4359 007721 set1 mark_h5_reinit ,mark 
-0x435a 007722 rtn 
-:      007724 parse_bcsp_bccmd_sco_link:
-0x435b 007725 compare 6 ,regb ,0xff 
-0x435c 007726 branch parse_bcsp_bccmd_next_ok ,true 
-:      007727 parse_bcsp_bccmd_next:
-0x435d 007728 isolate1 mark_temp ,mark 
-0x435e 007729 call parse_bcsp_bccmd_replace ,true 
-0x435f 007730 istore 1 ,contwu 
-0x4360 007731 loop parse_bcsp_bccmd_loop 
-0x4361 007732 set0 mark_bccmd_patch ,mark 
-0x4362 007733 copy alarm ,loopcnt 
-0x4363 007734 set1 mark_h5tx_rp ,mark 
-0x4364 007735 force 2 ,queue 
-0x4365 007736 branch bcsp_send_packet 
-:      007737 parse_bcsp_bccmd_next_ok:
-0x4366 007738 set1 mark_bccmd_patch ,mark 
-0x4367 007739 branch parse_bcsp_bccmd_next 
-:      007741 parse_bcsp_bccmd_replace:
-0x4368 007742 rtnmark1 mark_bccmd_patch 
-0x4369 007743 compare 10 ,regb ,0xff 
-0x436a 007744 branch parse_bcsp_bccmd_replace1 ,true 
-0x436b 007745 compare 11 ,regb ,0xff 
-0x436c 007746 nrtn true 
-0x436d 007747 setarg 0x12 
-0x436e 007748 rtn 
-:      007749 parse_bcsp_bccmd_replace1:
-0x436f 007750 setarg 0xe9 
-0x4370 007751 rtn 
-:      007753 bcsp_send_ack:
-0x4371 007754 fetch 1 ,mem_h5rx_tmp 
-0x4372 007755 increase 1 ,pdata 
-0x4373 007756 and_into 7 ,pdata 
-0x4374 007757 store 1 ,mem_h5tx_ack 
-0x4375 007758 force 0 ,loopcnt 
-0x4376 007759 force 0 ,queue 
-0x4377 007760 set0 mark_h5tx_rp ,mark 
-:      007761 bcsp_send_packet:
-0x4378 007763 add loopcnt ,4 ,regb 
-0x4379 007764 fetch 1 ,mem_h5tx_ack 
-0x437a 007765 lshift3 pdata ,regc 
-0x437b 007766 isolate0 mark_h5tx_crc ,mark 
-0x437c 007767 nsetflag true ,6 ,regc 
-0x437d 007768 branch bcsp_send_packet_nocrc ,true 
-0x437e 007769 increase 2 ,regb 
-:      007770 bcsp_send_packet_nocrc:
-0x437f 007771 bmark0 mark_h5tx_rp ,bcsp_send_packet_form_nonrp 
-0x4380 007772 set1 7 ,regc 
-0x4381 007773 fetch 1 ,mem_h5tx_seq 
-0x4382 007774 ior regc ,regc 
-0x4383 007775 increase 1 ,pdata 
-0x4384 007776 and_into 7 ,pdata 
-0x4385 007777 store 1 ,mem_h5tx_seq 
-0x4386 007778 fetch 1 ,mem_rp_packets 
-0x4387 007779 increase 1 ,pdata 
-0x4388 007780 store 1 ,mem_rp_packets 
-:      007781 bcsp_send_packet_form_nonrp:
-0x4389 007782 fetch 2 ,mem_h5tx_wptr 
-0x438a 007783 iforce contwu 
-0x438b 007784 deposit regb 
-0x438c 007785 isolate1 mark_h5tx_rp ,mark 
-0x438d 007786 setflag true ,hci_flag_rp ,pdata 
-0x438e 007787 istore 2 ,contwu 
-0x438f 007788 copy contwu ,rega 
-0x4390 007789 deposit regc 
-0x4391 007790 istore 1 ,contwu 
-0x4392 007791 lshift4 loopcnt ,pdata 
-0x4393 007792 ior queue ,pdata 
-0x4394 007793 iadd regc ,regc 
-0x4395 007794 istore 2 ,contwu 
-0x4396 007795 rshift8 pdata ,pdata 
-0x4397 007796 iadd regc ,pdata 
-0x4398 007797 sub pdata ,0xff ,pdata 
-0x4399 007798 istore 1 ,contwu 
-0x439a 007799 bmark0 mark_h5tx_crc ,bcsp_send_packet_form_nocrc 
-0x439b 007800 increase 4 ,loopcnt 
-0x439c 007801 copy rega ,contwu 
-0x439d 007802 call calc_tx_crc16 
-0x439e 007803 istore 2 ,contwu 
-:      007804 bcsp_send_packet_form_nocrc:
-0x439f 007805 fetch 2 ,mem_h5tx_wptr 
-0x43a0 007806 iadd regb ,contwu 
-0x43a1 007807 increase 2 ,contwu 
-0x43a2 007808 deposit contwu 
-0x43a3 007809 store 2 ,mem_h5tx_wptr 
-0x43a4 007810 hstore 2 ,core_uart_twptr 
-0x43a5 007811 fetcht 2 ,mem_h5tx_rptr 
-0x43a6 007812 call bcsp_update_free 
-0x43a7 007813 call bcsp_init_retransmit 
-0x43a8 007814 setarg 1600 
-0x43a9 007815 force lpo_delay_timer ,queue 
-0x43aa 007816 branch timer_init 
-:      007818 bcsp_init_retransmit:
-0x43ab 007819 setarg 400 
-0x43ac 007820 force hci_retransmit_timer ,queue 
-0x43ad 007821 call timer_init 
-0x43ae 007822 set1 mark_h5tx_retransmit ,mark 
-0x43af 007823 rtn 
-:      007825 bcsp_retransmit:
-0x43b0 007826 rtnmark0 mark_h5tx_retransmit 
-0x43b1 007827 force hci_retransmit_timer ,queue 
-0x43b2 007828 call timer_check 
-0x43b3 007829 nrtn blank 
-0x43b4 007830 fetch 2 ,mem_h5tx_rptr 
-0x43b5 007831 hstore 2 ,core_uart_trptrp 
-0x43b6 007832 branch bcsp_init_retransmit 
-:      007834 bcsp_freepacket:
-0x43b7 007835 fetch 2 ,mem_h5tx_wptr 
-0x43b8 007836 fetcht 2 ,mem_h5tx_rptr 
-0x43b9 007837 isub temp ,null 
-0x43ba 007838 branch bcsp_noretransmit ,zero 
-0x43bb 007839 copy temp ,contwu 
-0x43bc 007840 ifetch 2 ,contwu 
-0x43bd 007841 iforce rega 
-0x43be 007842 iand mask3ff ,pdata 
-0x43bf 007843 iadd contwu ,contwu 
-0x43c0 007844 hfetch 2 ,core_uart_trptr 
-0x43c1 007845 isub contwu ,pdata 
-0x43c2 007846 iand mask3ff ,regb 
-0x43c3 007847 fetch 2 ,mem_h5tx_wptr 
-0x43c4 007848 isub contwu ,pdata 
-0x43c5 007849 iand mask3ff ,pdata 
-0x43c6 007850 isub regb ,pdata 
-0x43c7 007851 nrtn positive 
-0x43c8 007852 isolate0 hci_flag_rp ,rega 
-0x43c9 007853 branch bcsp_discardnrp ,true 
-0x43ca 007854 fetch 1 ,mem_h5rx_ackcnt 
-0x43cb 007855 rtn blank 
-0x43cc 007856 increase -1 ,pdata 
-0x43cd 007857 store 1 ,mem_h5rx_ackcnt 
-0x43ce 007858 fetch 1 ,mem_rp_packets 
-0x43cf 007859 increase -1 ,pdata 
-0x43d0 007860 store 1 ,mem_rp_packets 
-:      007861 bcsp_discardnrp:
-0x43d1 007862 copy contwu ,temp 
-0x43d2 007863 storet 2 ,mem_h5tx_rptr 
-0x43d3 007864 fetch 2 ,mem_h5tx_wptr 
-0x43d4 007865 call bcsp_update_free 
-0x43d5 007866 branch bcsp_freepacket 
-:      007867 bcsp_noretransmit:
-0x43d6 007868 set0 mark_h5tx_retransmit ,mark 
-0x43d7 007869 rtn 
-:      007871 bcsp_update_free:
-0x43d8 007872 isub temp ,pdata 
-0x43d9 007873 iand mask3ff ,pdata 
-0x43da 007874 isub mask3ff ,pdata 
-0x43db 007875 sub pdata ,0 ,pdata 
-0x43dc 007876 store 2 ,mem_h5tx_free 
-0x43dd 007877 rtn 
-:      007879 bcsp_get_tx_ptr:
-0x43de 007880 fetch 2 ,mem_h5tx_wptr 
-0x43df 007881 iadd contwu ,contwu 
-0x43e0 007882 rtn 
-:      007886 hci_log:
-0x43e1 007887 rtn 
-:      007889 hci_rx_h4:
-0x43e2 007890 set1 mark_ext_patch ,mark 
-0x43e3 007891 bpatch patch3d_4 ,mem_patch3d 
-0x43e4 007892 fetch 1 ,mem_hci_cmd 
-0x43e5 007893 nrtn blank 
-:      007894 hci_rx_h4_1:
-0x43e6 007895 call hci_h4_parse_packet 
-0x43e7 007896 ncall h4_rx_discard_packet ,user 
-0x43e8 007897 rtn 
-:      007899 hci_h4_parse_packet:
-0x43e9 007900 set1 mark_ext_patch ,mark 
-0x43ea 007901 bpatch patch3d_5 ,mem_patch3d 
-0x43eb 007902 copy contru ,rega 
-0x43ec 007903 arg 4 ,temp 
-0x43ed 007904 ifetch 1 ,contru 
-0x43ee 007905 beq hci_h4_type_cmd ,hci_h4_parse_packet_wait_len 
-0x43ef 007906 increase 1 ,temp 
-0x43f0 007907 beq hci_h4_type_acl ,hci_h4_parse_packet_wait_len 
-0x43f1 007908 copy contru ,pdata 
-0x43f2 007909 hstore 2 ,core_uart_rrptr 
-0x43f3 007910 rtn 
-:      007911 hci_h4_parse_packet_wait_len:
-0x43f4 007912 hfetch 2 ,core_uart_rxitems 
-0x43f5 007913 isub temp ,null 
-0x43f6 007914 nbranch hci_h4_parse_packet_wait_len ,positive 
-0x43f7 007916 disable user 
-0x43f8 007917 copy rega ,contru 
-0x43f9 007918 call h4_get_rx_payload_len 
-0x43fa 007919 iadd temp ,temp 
-:      007920 hci_h4_parse_packet_wait:
-0x43fb 007921 hfetch 2 ,core_uart_rxitems 
-0x43fc 007922 isub temp ,null 
-0x43fd 007923 nbranch hci_h4_parse_packet_wait ,positive 
-0x43fe 007924 copy rega ,contru 
-0x43ff 007925 ifetch 1 ,contru 
-0x4400 007926 beq hci_h4_type_cmd ,process_hci_cmd 
-0x4401 007927 beq hci_h4_type_acl ,hci_h4_parse_packet_acl 
-0x4402 007928 branch assert 
-:      007929 hci_h4_parse_packet_acl:
-0x4403 007930 set1 mark_ext_patch ,mark 
-0x4404 007931 bpatch patch3d_6 ,mem_patch3d 
-0x4405 007932 copy contru ,rega 
-0x4406 007933 ifetch 2 ,contru 
-0x4407 007934 copy rega ,contru 
-0x4408 007935 fetcht 1 ,mem_conn_handle 
-0x4409 007936 icompare 0xff ,temp 
-0x440a 007937 branch process_acl ,true 
-0x440b 007938 branch le_acl_downgoing ,le 
-0x440c 007939 enable user 
-0x440d 007940 rtn 
-:      007941 h4_rx_discard_packet:
-0x440e 007942 set1 mark_ext_patch ,mark 
-0x440f 007943 bpatch patch3d_7 ,mem_patch3d 
-0x4410 007944 hfetch 2 ,core_uart_rrptr 
-0x4411 007945 iforce contru 
-0x4412 007946 call h4_get_rx_payload_len 
-0x4413 007947 iadd contru ,contru 
-0x4414 007948 deposit contru 
-0x4415 007949 hstore 2 ,core_uart_rrptr 
-0x4416 007950 rtn 
-:      007955 h4_get_rx_payload_len:
-0x4417 007956 ifetch 1 ,contru 
-0x4418 007957 increase 2 ,contru 
-0x4419 007958 beq hci_h4_type_acl ,h4_get_rx_payload_len_acl 
-0x441a 007959 ifetch 1 ,contru 
-0x441b 007960 rtn 
-:      007961 h4_get_rx_payload_len_acl:
-0x441c 007962 ifetch 2 ,contru 
-0x441d 007963 rtn 
-:      007965 h4_get_tx_ptr:
-0x441e 007966 hfetch 2 ,core_uart_twptr 
-0x441f 007967 increase -5 ,contwu 
-0x4420 007968 iadd contwu ,contwu 
-0x4421 007969 rtn 
-:      007971 h4_send_packet_event:
-0x4422 007972 arg hci_h4_type_event ,temp 
-0x4423 007973 branch h4_send_packet 
-:      007974 h4_send_packet_acl:
-0x4424 007975 arg hci_h4_type_acl ,temp 
-:      007976 h4_send_packet:
-0x4425 007977 set1 mark_ext_patch ,mark 
-0x4426 007978 bpatch patch3e_0 ,mem_patch3e 
-0x4427 007979 increase 1 ,loopcnt 
-0x4428 007980 hfetch 2 ,core_uart_twptr 
-0x4429 007981 copy pdata ,contwu 
-0x442a 007982 copy loopcnt ,pdata 
-0x442b 007983 istoret 1 ,contwu 
-0x442c 007984 increase -1 ,pdata 
-0x442d 007985 iadd contwu ,contwu 
-0x442e 007986 copy contwu ,pdata 
-0x442f 007987 store 2 ,mem_hci_acl_tx_trigger_wptr 
-0x4430 007988 copy temp ,pdata 
-0x4431 007989 rtneq hci_h4_type_acl 
-0x4432 007990 fetch 2 ,mem_hci_acl_tx_trigger_wptr 
-0x4433 007991 hstore 2 ,core_uart_twptr 
-0x4434 007992 branch h4_send_acl_trigger_clear 
-:      007994 h4_send_acl_trigger:
-0x4435 007995 set1 mark_ext_patch ,mark 
-0x4436 007996 bpatch patch3e_1 ,mem_patch3e 
-0x4437 007997 fetch 2 ,mem_hci_acl_tx_trigger_wptr 
-0x4438 007998 branch assert ,blank 
-0x4439 007999 hstore 2 ,core_uart_twptr 
-0x443a 008000 branch h4_send_acl_trigger_clear 
-:      008002 h4_send_acl_trigger_clear:
-0x443b 008003 setarg 0 
-0x443c 008004 store 2 ,mem_hci_acl_tx_trigger_wptr 
-0x443d 008005 rtn 
-:      008007 h4_tx_buffer_remain:
-0x443e 008008 hfetcht 2 ,core_uart_trptr 
-0x443f 008009 hfetch 2 ,core_uart_twptr 
-0x4440 008010 isub temp ,rega 
-0x4441 008011 nbranch h4_tx_buffer_remain_negative ,positive 
-0x4442 008012 hfetcht 2 ,core_uart_tsaddr 
-0x4443 008013 hfetch 2 ,core_uart_teaddr 
-0x4444 008014 isub temp ,pdata 
-0x4445 008015 isub rega ,temp 
-0x4446 008016 rtn 
-:      008017 h4_tx_buffer_remain_negative:
-0x4447 008018 sub rega ,-1 ,temp 
-0x4448 008019 rtn 
-:      008024 hci_dispatch:
-0x4449 008025 set0 mark_ext_patch ,mark 
-0x444a 008026 bpatch patch19_5 ,mem_patch19 
-0x444b 008027 fetch 1 ,mem_device_option 
-0x444c 008028 rtnne dvc_op_hci 
-0x444d 008029 call hci_rx_packet 
-0x444e 008030 call hci_check_bcsp_protocol 
-0x444f 008031 call bcsp_retransmit ,true 
-0x4450 008032 call hci_check_bcsp_protocol 
-0x4451 008033 call bcsp_freepacket ,true 
-0x4452 008034 branch process_send_acl 
-0x4453 008035 rtnmark0 mark_h5_reinit 
-0x4454 008036 force h5_reinit_timer ,queue 
-0x4455 008037 call timer_check 
-0x4456 008038 nrtn blank 
-0x4457 008039 call hci_reinit 
-0x4458 008040 call hci_check_bcsp_protocol 
-0x4459 008041 nrtn true 
-0x445a 008042 set0 mark_h5_sync ,mark 
-0x445b 008043 force 0xda ,temp 
-0x445c 008044 setarg 0xededdc 
-0x445d 008045 call parse_bcsp_link_establish_send 
-0x445e 008046 setarg 2000 
-0x445f 008047 force h5_reinit_timer ,queue 
-0x4460 008048 branch timer_init 
-:      008051 hci_init:
-0x4461 008052 set0 mark_ext_patch ,mark 
-0x4462 008053 bpatch patch19_6 ,mem_patch19 
-0x4463 008054 rtn wake 
-0x4464 008055 setarg hci_idle_dispatch 
-0x4465 008056 store 2 ,mem_cb_idle_process 
-0x4466 008058 setarg uart_baud_115200 
-0x4467 008059 store uart_baud_len ,mem_baud 
-:      008060 hci_lpm_init:
-0x4468 008061 set0 mark_ext_patch ,mark 
-0x4469 008062 bpatch patch19_7 ,mem_patch19 
-0x446a 008063 call init_filter_ram 
-0x446b 008064 setarg mem_h5rx_buf 
-0x446c 008065 hstore 2 ,core_uart_rsaddr 
-0x446d 008066 setarg mem_h5rx_buf_end 
-0x446e 008067 hstore 2 ,core_uart_readdr 
-0x446f 008068 setarg mem_h5tx_buf 
-0x4470 008069 hstore 2 ,core_uart_tsaddr 
-0x4471 008070 call hci_sel_init 
-:      008071 hci_reinit:
-0x4472 008072 set0 mark_ext_patch ,mark 
-0x4473 008073 bpatch patch1a_0 ,mem_patch1a 
-0x4474 008074 hjam 0x0 ,core_uart_ctrl 
-0x4475 008075 jam 0 ,mem_h5rx_ack 
-0x4476 008076 jam 0 ,mem_h5tx_ack 
-0x4477 008077 jam 0 ,mem_h5tx_seq 
-0x4478 008078 setarg mem_h5tx_buf 
-0x4479 008079 store 2 ,mem_h5tx_wptr 
-0x447a 008080 store 2 ,mem_h5tx_rptr 
-0x447b 008081 hstore 2 ,core_uart_twptr 
-0x447c 008082 hstore 2 ,core_uart_trptrp 
-0x447d 008083 setarg mem_h5rx_buf 
-0x447e 008084 hstore 2 ,core_uart_rrptr 
-0x447f 008085 store 2 ,mem_h5rx_rptr 
-:      008086 hci_init_common:
-0x4480 008087 set0 mark_ext_patch ,mark 
-0x4481 008088 bpatch patch1a_1 ,mem_patch1a 
-0x4482 008089 hfetch 2 ,core_clkoff 
-0x4483 008090 set0 clock_off_uart ,pdata 
-0x4484 008091 hstore 2 ,core_clkoff 
-0x4485 008092 call uart_set_baud_by_mem 
-0x4486 008093 hjam uartclk_dpll ,core_uart_clksel 
-0x4487 008094 hjam uart_ctrl_h4 ,core_uart_ctrl 
-0x4488 008095 branch hci_init_queue_ack 
-:      008097 hci_sel_init:
-0x4489 008098 setarg mem_h5tx_buf_end 
-0x448a 008099 hstore 2 ,core_uart_teaddr 
-0x448b 008100 hfetch 1 ,core_gpio_sel1 
-0x448c 008101 or_into 0x07 ,pdata 
-0x448d 008102 hstore 1 ,core_gpio_sel1 
-0x448e 008103 jam 0xff ,mem_ucode_id_local 
-0x448f 008104 rtn 
-:      008106 hci_reset_uart:
-0x4490 008107 hfetch 2 ,core_uart_rwptr 
-0x4491 008108 hstore 2 ,core_uart_rrptr 
-0x4492 008109 set1 mark_h5_reset ,mark 
-0x4493 008110 rtn 
-:      008113 hci_check_bcsp_protocol:
-0x4494 008114 hfetch 1 ,core_uart_ctrl 
-0x4495 008115 isolate1 uart_ctrl_bit_slip_protocol ,pdata 
-0x4496 008116 rtn 
-:      008118 hci_init_queue_ack:
-0x4497 008119 setarg mem_hci_acl_queue_start 
-0x4498 008120 store 2 ,mem_hci_acl_queue_wptr 
-0x4499 008121 store 2 ,mem_hci_acl_queue_rptr 
-0x449a 008122 force param_acl_pktcnt ,temp 
-0x449b 008123 iadd temp ,pdata 
-0x449c 008124 iadd temp ,pdata 
-0x449d 008125 increase 2 ,pdata 
-0x449e 008126 store 2 ,mem_hci_acl_queue_end 
-0x449f 008127 setarg 0x00 
-0x44a0 008128 store 1 ,mem_hci_acl_cnt 
-0x44a1 008129 store 1 ,mem_hci_acl_queue_wcnt 
-0x44a2 008130 rtn 
-:      008132 hci_rx_packet:
-0x44a3 008133 set0 mark_ext_patch ,mark 
-0x44a4 008134 bpatch patch1a_2 ,mem_patch1a 
-0x44a5 008135 hfetch 1 ,core_uart_status 
-0x44a6 008136 iforce regb 
-0x44a7 008137 bbit0 uart_status_rx_fifo_empty ,hci_rx_packet_cont 
-0x44a8 008138 hfetch 2 ,core_uart_rxitems 
-0x44a9 008139 iforce regc 
-0x44aa 008140 arg 0x44f ,temp 
-0x44ab 008141 isub temp ,null 
-0x44ac 008142 nrtn zero 
-:      008143 hci_rx_packet_cont:
-0x44ad 008144 hfetch 2 ,core_uart_rrptr 
-0x44ae 008145 iforce contru 
-0x44af 008146 call hci_check_bcsp_protocol 
-0x44b0 008147 branch hci_rx_bcsp ,true 
-0x44b1 008148 branch hci_rx_h4 
-:      008150 hci_send_ack:
-0x44b2 008151 call hci_check_bcsp_protocol 
-0x44b3 008152 branch bcsp_send_ack ,true 
-0x44b4 008153 rtn 
-:      008155 uart_send_byte:
-0x44b5 008156 hfetcht 1 ,core_uart_status 
-0x44b6 008157 isolate1 6 ,temp 
-0x44b7 008158 branch uart_send_byte ,true 
-0x44b8 008159 hstore 1 ,core_uart_txd 
-0x44b9 008160 rtn 
-:      008163 process_acl_into_queue:
-0x44ba 008164 fetcht 2 ,mem_hci_acl_queue_end 
-0x44bb 008165 fetch 2 ,mem_hci_acl_queue_wptr 
-0x44bc 008166 iforce contw 
-0x44bd 008167 deposit contru 
-0x44be 008168 istore 2 ,contw 
-0x44bf 008169 deposit contw 
-0x44c0 008170 store 2 ,mem_hci_acl_queue_wptr 
-0x44c1 008171 icompare 0xff ,temp 
-0x44c2 008172 call process_acl_into_queue_loop ,true 
-0x44c3 008173 fetch 1 ,mem_hci_acl_queue_wcnt 
-0x44c4 008174 increase 1 ,pdata 
-0x44c5 008175 store 1 ,mem_hci_acl_queue_wcnt 
-0x44c6 008176 rtn 
-:      008177 process_acl_into_queue_loop:
-0x44c7 008178 setarg mem_hci_acl_queue_start 
-0x44c8 008179 store 2 ,mem_hci_acl_queue_wptr 
-0x44c9 008180 rtn 
-:      008183 process_acl_dequeue:
-0x44ca 008184 fetch 1 ,mem_hci_acl_queue_wcnt 
-0x44cb 008185 rtn blank 
-0x44cc 008186 fetcht 2 ,mem_hci_acl_queue_end 
-0x44cd 008187 fetch 2 ,mem_hci_acl_queue_rptr 
-0x44ce 008188 iforce contr 
-0x44cf 008189 ifetch 2 ,contr 
-0x44d0 008190 iforce contru 
-0x44d1 008191 deposit contr 
-0x44d2 008192 store 2 ,mem_hci_acl_queue_rptr 
-0x44d3 008193 icompare 0xff ,temp 
-0x44d4 008194 call process_acl_dequeue_loop ,true 
-0x44d5 008195 fetch 1 ,mem_hci_acl_queue_wcnt 
-0x44d6 008196 increase -1 ,pdata 
-0x44d7 008197 store 1 ,mem_hci_acl_queue_wcnt 
-0x44d8 008198 force 1 ,pdata 
-0x44d9 008199 rtn 
-:      008200 process_acl_dequeue_loop:
-0x44da 008201 setarg mem_hci_acl_queue_start 
-0x44db 008202 store 2 ,mem_hci_acl_queue_rptr 
-0x44dc 008203 rtn 
-:      008205 process_acl:
-0x44dd 008206 set0 mark_ext_patch ,mark 
-0x44de 008207 bpatch patch1a_3 ,mem_patch1a 
-0x44df 008208 fetch 1 ,mem_hci_acl_queue_wcnt 
-0x44e0 008209 sub pdata ,2 ,null 
-0x44e1 008210 branch process_acl_queue_check_ok ,positive 
-0x44e2 008211 enable user 
-0x44e3 008212 branch process_send_acl 
-:      008213 process_acl_queue_check_ok:
-0x44e4 008214 call hci_send_ack 
-0x44e5 008215 call process_acl_into_queue 
-:      008216 process_send_acl:
-0x44e6 008217 set0 mark_ext_patch ,mark 
-0x44e7 008218 bpatch patch1a_4 ,mem_patch1a 
-0x44e8 008219 rtnmark1 mark_tx_l2cap 
-0x44e9 008220 call process_acl_dequeue 
-0x44ea 008221 rtn blank 
-0x44eb 008222 ifetcht 1 ,contru 
-0x44ec 008223 call context_search_conn_handle2 
-0x44ed 008224 nrtn zero 
-0x44ee 008225 ifetch 1 ,contru 
-0x44ef 008226 rshift4 pdata ,pdata 
-0x44f0 008227 and pdata ,0x3 ,pdata 
-0x44f1 008228 nbranch process_send_acl_good_lch ,blank 
-0x44f2 008229 set1 1 ,pdata 
-:      008230 process_send_acl_good_lch:
-0x44f3 008231 set1 2 ,pdata 
-0x44f4 008232 store 1 ,mem_tx_lch 
-0x44f5 008233 ifetch 2 ,contru 
-0x44f6 008234 store 2 ,mem_tx_len 
-0x44f7 008235 deposit contru 
-0x44f8 008236 store 2 ,mem_txptr 
-0x44f9 008237 set1 mark_tx_l2cap ,mark 
-0x44fa 008238 bmark0 mark_context ,process_acl_ncontext 
-0x44fb 008239 fetch 1 ,mem_conn_handle 
-0x44fc 008240 isub temp ,null 
-0x44fd 008241 nbranch process_acl_ncontext ,zero 
-0x44fe 008242 fetch 1 ,mem_op 
-0x44ff 008243 set1 op_txl2cap ,pdata 
-0x4500 008244 store 1 ,mem_op 
-0x4501 008245 rtn 
-:      008247 process_acl_ncontext:
-0x4502 008248 increase coffset_op ,rega 
-0x4503 008249 ifetch 1 ,rega 
-0x4504 008250 set1 op_txl2cap ,pdata 
-0x4505 008251 istore 1 ,rega 
-0x4506 008252 rtn 
-:      008257 process_hci_cmd:
-0x4507 008258 set0 mark_ext_patch ,mark 
-0x4508 008259 bpatch patch1a_5 ,mem_patch1a 
-0x4509 008260 fetch 1 ,mem_hci_cmd 
-0x450a 008261 branch process_hci_cmd_cont ,blank 
-0x450b 008262 enable user 
-0x450c 008263 rtn 
-:      008264 process_hci_cmd_cont:
-0x450d 008265 call hci_send_ack 
-0x450e 008266 ifetch 2 ,contru 
-0x450f 008267 iforce alarm 
-0x4510 008268 iforce queue 
-0x4511 008269 ifetch 1 ,contru 
-0x4512 008270 iforce temp 
-0x4513 008271 rshift2 alarm ,pdata 
-0x4514 008272 rshift8 pdata ,pdata 
-0x4515 008273 beq hci_ogf_link_control ,phci_grp_link_control 
-0x4516 008274 beq hci_ogf_link_policy ,phci_grp_link_policy 
-0x4517 008275 beq hci_ogf_baseband ,phci_grp_baseband 
-0x4518 008276 beq hci_ogf_info ,phci_grp_info 
-0x4519 008277 beq hci_ogf_status ,phci_grp_status 
-0x451a 008278 beq hci_ogf_test ,phci_grp_test 
-0x451b 008279 beq hci_ogf_vendor_specific ,phci_grp_vendor_specific 
-0x451c 008280 beq hci_ogf_low_energy ,phci_grp_low_energy 
-0x451d 008281 rtn 
-:      008284 phci_grp_link_control:
-0x451e 008285 set0 mark_ext_patch ,mark 
-0x451f 008286 bpatch patch1a_6 ,mem_patch1a 
-0x4520 008287 deposit queue 
-0x4521 008288 beq hci_inquiry ,phci_inquiry 
-0x4522 008289 beq hci_inquiry_cancel ,phci_inquiry_cancel 
-0x4523 008290 beq hci_periodic_inquiry_mode ,hci_normal_reply 
-0x4524 008291 beq hci_exit_periodic_inquiry_mode ,hci_normal_reply 
-0x4525 008292 beq hci_create_connection ,phci_create_connection 
-0x4526 008293 beq hci_disconnect ,phci_disconnect 
-0x4527 008294 beq hci_add_sco_connection ,hci_normal_reply 
-0x4528 008295 beq hci_create_connection_cancel ,phci_create_connection_cancel 
-0x4529 008296 beq hci_accept_connection ,phci_accept_connection 
-0x452a 008297 beq hci_reject_connection ,phci_reject_connection 
-0x452b 008298 beq hci_link_key_request_reply ,phci_link_key_request_reply 
-0x452c 008299 beq hci_link_key_request_negative_reply ,phci_link_key_request_negative_reply 
-0x452d 008300 beq hci_pin_code_request_reply ,phci_pin_code_request_reply 
-0x452e 008301 beq hci_pin_code_request_negative_reply ,phci_pin_code_request_negative_reply 
-0x452f 008302 beq hci_change_connection_packet_type ,phci_change_connection_packet_type 
-0x4530 008303 beq hci_authentication_requested ,phci_authentication_requested 
-0x4531 008304 beq hci_set_connection_encryption ,phci_set_connection_encryption 
-0x4532 008305 beq hci_change_connection_link_key ,hci_normal_reply 
-0x4533 008306 beq hci_master_link_key ,hci_normal_reply 
-0x4534 008307 beq hci_remote_name_request ,phci_remote_name_request 
-0x4535 008308 beq hci_read_remote_supported_features ,phci_read_remote_supported_features 
-0x4536 008309 beq hci_read_remote_ext_features ,phci_read_remote_ext_features 
-0x4537 008310 beq hci_read_remote_version_information ,phci_read_remote_version_information 
-0x4538 008311 beq hci_read_clock_offset ,phci_read_clock_offset 
-0x4539 008312 beq hci_setup_sco_connection ,phci_setup_sco_connection 
-0x453a 008313 beq hci_accept_sco_connection ,phci_accept_sco_connection 
-0x453b 008314 beq hci_io_cap_request_reply ,phci_io_cap_request_reply 
-0x453c 008315 branch phci_unknown_command 
-:      008318 phci_grp_link_policy:
-0x453d 008319 set0 mark_ext_patch ,mark 
-0x453e 008320 bpatch patch1a_7 ,mem_patch1a 
-0x453f 008321 deposit queue 
-0x4540 008322 beq hci_role_discovery ,phci_role_discovery 
-0x4541 008323 beq hci_write_link_policy_settings ,phci_write_link_policy_settings 
-0x4542 008324 beq hci_hold_mode ,hci_normal_reply 
-0x4543 008325 beq hci_sniff_mode ,phci_sniff_mode 
-0x4544 008326 beq hci_exit_sniff_mode ,phci_exit_sniff_mode 
-0x4545 008327 beq hci_park_mode ,hci_normal_reply 
-0x4546 008328 beq hci_exit_park_mode ,hci_normal_reply 
-0x4547 008329 beq hci_qos_setup ,hci_normal_reply 
-0x4548 008330 beq hci_switch_role ,phci_switch_role 
-0x4549 008331 beq hci_read_link_policy_settings ,hci_normal_reply 
-0x454a 008332 beq hci_read_default_link_policy_settings ,hci_normal_reply 
-0x454b 008333 beq hci_write_default_link_policy_settings ,hci_normal_reply 
-0x454c 008334 beq hci_flow_specification ,hci_normal_reply 
-0x454d 008335 beq hci_sniff_subrating ,phci_sniff_subrating 
-0x454e 008336 branch phci_unknown_command 
-:      008338 phci_grp_baseband:
-0x454f 008339 set0 mark_ext_patch ,mark 
-0x4550 008340 bpatch patch1b_0 ,mem_patch1b 
-0x4551 008341 deposit queue 
-0x4552 008342 beq hci_set_event_mask ,phci_set_event_mask 
-0x4553 008343 beq hci_reset ,hci_normal_reply 
-0x4554 008344 beq hci_delete_stored_link_key ,phci_delete_stored_link_key 
-0x4555 008345 beq hci_write_local_name ,phci_change_local_name 
-0x4556 008346 beq hci_read_local_name ,phci_read_local_name 
-0x4557 008347 beq hci_write_page_timeout ,phci_write_page_timeout 
-0x4558 008348 beq hci_read_scan_enable ,phci_read_scan_enable 
-0x4559 008349 beq hci_write_scan_enable ,phci_write_scan_enable 
-0x455a 008350 beq hci_write_page_scan_activity ,phci_write_page_scan_activity 
-0x455b 008351 beq hci_write_inquiry_scan_activity ,phci_write_inquiry_scan_activity 
-0x455c 008352 beq hci_write_authentication_enable ,phci_write_authentication_enable 
-0x455d 008353 beq hci_write_encryption_mode ,phci_write_encryption_mode 
-0x455e 008354 beq hci_write_class_of_device ,phci_write_class_of_device 
-0x455f 008355 beq hci_write_voice_setting ,hci_normal_reply 
-0x4560 008356 beq hci_set_controller_to_host_flow_control ,hci_normal_reply 
-0x4561 008357 beq hci_host_buffer_size ,hci_normal_reply 
-0x4562 008358 beq hci_host_num_completed_packets ,phci_host_num_completed 
-0x4563 008359 beq hci_write_inquiry_scan_type ,hci_normal_reply 
-0x4564 008360 beq hci_write_inquiry_mode ,hci_normal_reply 
-0x4565 008361 beq hci_write_page_scan_type ,hci_normal_reply 
-0x4566 008362 beq hci_read_extended_inquiry_response ,phci_read_ext_inquiry_response 
-0x4567 008363 beq hci_write_simple_pairing_mode ,phci_write_ssp_mode 
-0x4568 008364 branch phci_unknown_command 
-:      008366 phci_grp_info:
-0x4569 008367 set0 mark_ext_patch ,mark 
-0x456a 008368 bpatch patch1b_1 ,mem_patch1b 
-0x456b 008369 deposit queue 
-0x456c 008370 beq hci_read_local_version_information ,phci_read_local_version_information 
-0x456d 008371 beq hci_read_local_supported_features ,phci_read_local_supported_features 
-0x456e 008372 beq hci_read_local_ext_features ,phci_read_local_ext_features 
-0x456f 008373 beq hci_read_buffer_size ,phci_read_buffer_size 
-0x4570 008374 beq hci_read_bd_addr ,phci_read_bd_addr 
-0x4571 008375 branch phci_unknown_command 
-:      008377 phci_grp_status:
-0x4572 008378 set0 mark_ext_patch ,mark 
-0x4573 008379 bpatch patch1b_2 ,mem_patch1b 
-0x4574 008380 deposit queue 
-0x4575 008381 beq hci_read_failed_contact_counter ,hci_normal_reply 
-0x4576 008382 beq hci_reset_failed_contact_counter ,phci_reset_failed_contact_counter 
-0x4577 008383 beq hci_get_link_quality ,phci_get_link_quality 
-0x4578 008384 beq hci_read_rssi ,phci_read_rssi 
-0x4579 008385 beq hci_read_afh_channel_map ,phci_read_afh_channel_map 
-0x457a 008386 beq hci_read_bd_clock ,phci_read_bd_clock 
-0x457b 008387 branch phci_unknown_command 
-:      008389 phci_grp_test:
-0x457c 008390 set0 mark_ext_patch ,mark 
-0x457d 008391 bpatch patch1b_3 ,mem_patch1b 
-0x457e 008392 deposit queue 
-0x457f 008393 beq hci_read_loopback_mode ,hci_normal_reply 
-0x4580 008394 beq hci_write_loopback_mode ,hci_normal_reply 
-0x4581 008395 beq hci_enable_device_under_test_mode ,hci_normal_reply 
-0x4582 008396 beq hci_write_simple_pairing_debug_mode ,hci_normal_reply 
-0x4583 008397 branch phci_unknown_command 
-0x4584 008398 rtn 
-:      008400 phci_grp_vendor_specific:
-0x4585 008401 set0 mark_ext_patch ,mark 
-0x4586 008402 bpatch patch1b_4 ,mem_patch1b 
-0x4587 008403 deposit queue 
-0x4588 008404 beq hci_vendor_cmd_reset ,hci_normal_reply 
-0x4589 008405 beq hci_vendor_cmd_chipid ,phci_grp_vendor_chipid 
-0x458a 008406 beq hci_vendor_cmd_baud ,phci_grp_vendor_baud 
-0x458b 008407 beq hci_vendor_cmd_patch ,phci_grp_vendor_patch 
-0x458c 008408 beq hci_vendor_cmd_patch_done ,phci_grp_vendor_done 
-0x458d 008409 beq hci_vendor_cmd_echo ,hci_normal_reply 
-0x458e 008410 beq hci_vendor_cmd_bdaddr ,phci_grp_vendor_bdaddr 
-0x458f 008411 beq hci_vendor_cmd_enter_lpm ,phci_grp_vendor_enter_lpm 
-0x4590 008413 beq hci_vendor_cmd_mem ,phci_grp_vendor_mem 
-0x4591 008414 beq hci_vendor_cmd_eep ,phci_grp_vendor_eep 
-0x4592 008415 branch hci_normal_reply 
-:      008417 phci_grp_vendor_enter_lpm:
-0x4593 008418 call hci_normal_reply 
-0x4594 008419 call wait_uarttx 
-0x4595 008420 call gpio_pu_uart_tx 
-:      008421 hci_enter_lpm:
-0x4596 008422 call app_put_lpm_wake_lock 
-0x4597 008423 call app_l2cap_flow_control_enable 
-0x4598 008424 branch gpio_rx_config_input_with_pu 
-:      008426 hci_exit_lpm:
-0x4599 008427 jam hci_rx_ready ,mem_hci_lt_rx_state 
-0x459a 008428 call app_get_lpm_wake_lock 
-0x459b 008429 call hci_lpm_init 
-0x459c 008430 branch app_l2cap_flow_control_disable 
-:      008432 phci_grp_vendor_chipid:
-0x459d 008433 call hci_get_cmd_complete_ptr 
-0x459e 008434 hfetch 2 ,core_chipid 
-0x459f 008435 istore 2 ,contwu 
-0x45a0 008436 force 6 ,loopcnt 
-0x45a1 008437 branch hci_command_complete 
-:      008439 phci_grp_vendor_baud:
-0x45a2 008440 ifetch 2 ,contru 
-0x45a3 008441 store 2 ,mem_baud 
-0x45a4 008442 hstore 2 ,core_uart_baud 
-0x45a5 008443 rtn 
-:      008445 phci_grp_vendor_patch:
-0x45a6 008447 ifetch 1 ,contru 
-0x45a7 008448 copy pdata ,temp 
-0x45a8 008449 hstore 1 ,core_ucode_low 
-0x45a9 008450 ifetch 1 ,contru 
-0x45aa 008451 iadd temp ,temp 
-0x45ab 008452 set1 7 ,pdata 
-0x45ac 008453 hstore 1 ,core_ucode_ctrl 
-0x45ad 008454 ifetch 1 ,contru 
-0x45ae 008455 iadd temp ,temp 
-0x45af 008456 copy pdata ,loopcnt 
-:      008457 phci_grp_vendor_patch_loop:
-0x45b0 008458 ifetch 1 ,contru 
-0x45b1 008459 hstore 1 ,core_ucode_data 
-0x45b2 008460 iadd temp ,temp 
-0x45b3 008461 loop phci_grp_vendor_patch_loop 
-0x45b4 008462 and temp ,0xff ,temp 
-0x45b5 008463 ifetch 1 ,contru 
-0x45b6 008464 isub temp ,null 
-0x45b7 008465 nbranch phci_grp_vendor_patch_bad ,zero 
-0x45b8 008466 branch hci_normal_reply 
-:      008468 phci_grp_vendor_done:
-0x45b9 008469 arg 0x20 ,loopcnt 
-0x45ba 008470 arg mem_patch00 ,contw 
-0x45bb 008471 arg 0 ,temp 
-:      008472 phci_grp_vendor_done_loop:
-0x45bc 008473 ifetch 1 ,contru 
-0x45bd 008474 istore 1 ,contw 
-0x45be 008475 iadd temp ,temp 
-0x45bf 008476 loop phci_grp_vendor_done_loop 
-0x45c0 008477 and temp ,0xff ,temp 
-0x45c1 008478 ifetch 1 ,contru 
-0x45c2 008479 isub temp ,null 
-0x45c3 008480 nbranch phci_grp_vendor_patch_bad ,zero 
-0x45c4 008481 hjam 0 ,core_ucode_ctrl 
-0x45c5 008482 call hci_normal_reply 
-0x45c6 008483 call h4_rx_discard_packet 
-0x45c7 008484 branch soft_reset 
-:      008486 phci_grp_vendor_patch_bad:
-0x45c8 008487 hjam 0 ,core_ucode_ctrl 
-0x45c9 008488 branch start 
-:      008490 phci_grp_vendor_bdaddr:
-0x45ca 008491 ifetch 6 ,contru 
-0x45cb 008492 store 6 ,mem_lap 
-0x45cc 008493 branch hci_normal_reply 
-:      008496 phci_grp_vendor_mem:
-0x45cd 008497 ifetch 1 ,contru 
-0x45ce 008498 store 1 ,mem_hci_curr_len 
-0x45cf 008499 copy pdata ,loopcnt 
-0x45d0 008500 ifetch 2 ,contru 
-0x45d1 008501 store 2 ,mem_hci_curr_target 
-0x45d2 008502 copy pdata ,contw 
-0x45d3 008503 call uart_copy_rx_bytes 
-0x45d4 008504 branch hci_normal_reply 
-:      008507 phci_grp_vendor_eep:
-0x45d5 008508 ifetch 1 ,contru 
-0x45d6 008509 store 1 ,mem_hci_curr_len 
-0x45d7 008510 copy pdata ,loopcnt 
-0x45d8 008511 ifetch 2 ,contru 
-0x45d9 008512 store 2 ,mem_hci_curr_target 
-0x45da 008513 arg mem_l2cap_rxbuff1 ,contw 
-0x45db 008514 call uart_copy_rx_bytes 
-0x45dc 008515 fetcht 1 ,mem_hci_curr_len 
-0x45dd 008516 arg mem_l2cap_rxbuff1 ,rega 
-0x45de 008517 fetch 2 ,mem_hci_curr_target 
-0x45df 008518 branch iicd_write_ota_data 
-:      008524 phci_grp_low_energy:
-0x45e0 008525 set0 mark_ext_patch ,mark 
-0x45e1 008526 bpatch patch1b_5 ,mem_patch1b 
-0x45e2 008527 deposit queue 
-0x45e3 008528 beq hci_le_set_event_mask ,hci_normal_reply 
-0x45e4 008529 beq hci_le_read_buffer_size ,phci_le_read_buffer_size 
-0x45e5 008530 beq hci_le_read_local_supported_features ,phci_le_read_local_supported_features 
-0x45e6 008531 beq hci_le_set_advertising_parameters ,phci_le_set_adv_param 
-0x45e7 008532 beq hci_le_set_advertising_data ,phci_le_set_adv_data 
-0x45e8 008533 beq hci_le_set_scan_response_data ,phci_le_set_scan_response_data 
-0x45e9 008534 beq hci_le_set_advertise_enable ,phci_le_set_adv_enable 
-0x45ea 008535 beq hci_le_set_scan_parameters ,phci_le_set_scan_param 
-0x45eb 008536 beq hci_le_set_scan_enable ,phci_le_set_scan_enable 
-0x45ec 008537 beq hci_le_create_connection ,phci_le_create_conn 
-0x45ed 008538 beq hci_le_create_connection_cancel ,phci_le_create_conn_cancel 
-0x45ee 008539 beq hci_le_read_channel_map ,phci_le_read_channel_map 
-0x45ef 008540 beq hci_le_read_remote_used_features ,hci_command_status 
-0x45f0 008541 beq hci_le_connection_update ,hci_normal_reply 
-0x45f1 008542 branch phci_unknown_command 
-0x45f2 008543 rtn 
-:      008544 phci_le_read_buffer_size:
-0x45f3 008545 call hci_get_cmd_complete_ptr 
-0x45f4 008546 setarg 0 
-0x45f5 008547 istore 3 ,contwu 
-0x45f6 008548 force 0x07 ,loopcnt 
-0x45f7 008549 branch hci_command_complete 
-:      008551 phci_le_read_local_supported_features:
-0x45f8 008552 call hci_get_cmd_complete_ptr 
-0x45f9 008553 setarg 1 
-0x45fa 008554 istore 2 ,contwu 
-0x45fb 008555 setarg 0 
-0x45fc 008556 istore 6 ,contwu 
-0x45fd 008557 force 0x0c ,loopcnt 
-0x45fe 008558 branch hci_command_complete 
-:      008560 phci_le_set_adv_param:
-0x45ff 008561 arg 15 ,loopcnt 
-0x4600 008562 arg mem_le_adv_param ,contw 
-0x4601 008563 call uart_copy_rx_bytes 
-0x4602 008564 branch hci_normal_reply 
-:      008566 phci_le_set_adv_data:
-0x4603 008567 arg 32 ,loopcnt 
-0x4604 008568 arg mem_le_adv_data_len ,contw 
-0x4605 008569 call uart_copy_rx_bytes 
-0x4606 008570 branch hci_normal_reply 
-:      008572 phci_le_set_scan_response_data:
-0x4607 008573 arg 32 ,loopcnt 
-0x4608 008574 arg mem_le_scan_data_len ,contw 
-0x4609 008575 call uart_copy_rx_bytes 
-0x460a 008576 branch hci_normal_reply 
-:      008578 phci_le_set_adv_enable:
-0x460b 008579 ifetch 1 ,contru 
-0x460c 008580 store 1 ,mem_le_adv_enable 
-0x460d 008581 branch hci_normal_reply 
-:      008583 phci_le_set_scan_param:
-0x460e 008584 ifetch 7 ,contru 
-0x460f 008585 store 7 ,mem_le_scan_params 
-0x4610 008586 branch hci_normal_reply 
-:      008588 phci_le_set_scan_enable:
-0x4611 008589 ifetch 1 ,contru 
-0x4612 008590 store 1 ,mem_le_scan_enable 
-0x4613 008591 branch hci_normal_reply 
-:      008593 phci_le_create_conn:
-0x4614 008594 ifetch 4 ,contru 
-0x4615 008595 store 4 ,mem_le_scan_interval 
-0x4616 008596 ifetch 1 ,contru 
-0x4617 008597 store 1 ,mem_le_scan_filter_policy 
-0x4618 008598 arg 20 ,loopcnt 
-0x4619 008599 arg mem_le_conn_param ,contw 
-0x461a 008600 call uart_copy_rx_bytes 
-0x461b 008601 jam 1 ,mem_le_scan_enable 
-0x461c 008602 fetch 1 ,mem_le_conn_own_addr_type 
-0x461d 008603 store 1 ,mem_le_scan_own_addr_type 
-0x461e 008604 fetch 2 ,mem_le_conn_interval_max 
-0x461f 008605 store 2 ,mem_le_conn_interval 
-0x4620 008606 fetch 2 ,mem_le_conn_latency 
-0x4621 008607 store 2 ,mem_le_slave_latency 
-0x4622 008608 fetch 2 ,mem_le_conn_superto 
-0x4623 008609 store 2 ,mem_le_superto 
-0x4624 008610 jam hci_cmd_le_create_conn ,mem_hci_cmd 
-0x4625 008611 branch hci_command_status 
-:      008613 phci_le_create_conn_cancel:
-0x4626 008615 branch hci_normal_reply 
-:      008617 phci_le_read_channel_map:
-0x4627 008618 call hci_get_cmd_complete_ptr 
-0x4628 008619 ifetch 2 ,contru 
-0x4629 008620 istore 2 ,contwu 
-0x462a 008621 setarg 0x1fffff 
-0x462b 008622 istore 5 ,contwu 
-0x462c 008623 force 0x0b ,loopcnt 
-0x462d 008624 branch hci_command_complete 
-:      008629 phci_host_num_completed:
-0x462e 008630 ifetch 3 ,contru 
-0x462f 008631 ifetcht 3 ,contru 
-0x4630 008632 fetch 2 ,mem_acl_credits 
-0x4631 008633 iadd temp ,pdata 
-0x4632 008634 store 2 ,mem_acl_credits 
-0x4633 008635 rtn 
-:      008637 phci_inquiry:
-0x4634 008638 ifetch 3 ,contru 
-0x4635 008639 store 3 ,mem_glap 
-:      008640 do_at_inquiry0:
-0x4636 008641 jam hci_cmd_inquiry ,mem_hci_cmd 
-0x4637 008642 ifetch 1 ,contru 
-0x4638 008643 arg 1600 ,temp 
-0x4639 008644 imul32 temp ,pdata 
-0x463a 008645 arg 0xffff ,temp 
-0x463b 008646 isub temp ,null 
-0x463c 008647 nbranch phci_inquiry_nowrap ,positive 
-0x463d 008648 deposit temp 
-:      008649 phci_inquiry_nowrap:
-0x463e 008650 force inquiry_length_timer ,queue 
-0x463f 008651 call timer_init 
-0x4640 008652 fetch 1 ,mem_at_using_flag 
-0x4641 008653 bbit1 at_flag_inq ,at_rev_end 
-0x4642 008654 branch hci_command_status 
-:      008657 phci_inquiry_cancel:
-0x4643 008658 jam hci_cmd_inquiry_cancel ,mem_hci_cmd 
-0x4644 008659 branch hci_normal_reply 
-:      008661 phci_create_connection:
-0x4645 008662 call phci_read_plap 
-0x4646 008663 ifetch 2 ,contru 
-0x4647 008664 store 2 ,mem_packet_type 
-0x4648 008665 ifetch 2 ,contru 
-0x4649 008666 store 1 ,mem_page_mode 
-0x464a 008667 call phci_read_clock 
-0x464b 008668 ifetch 1 ,contru 
-0x464c 008669 store 1 ,mem_allow_switch 
-0x464d 008670 jam hci_cmd_create_conn ,mem_hci_cmd 
-0x464e 008671 branch hci_command_status 
-:      008674 phci_disconnect:
-0x464f 008675 jam hci_cmd_disconn ,mem_hci_cmd 
-0x4650 008676 ifetch 2 ,contru 
-0x4651 008677 store 1 ,mem_hci_conn_handle 
-0x4652 008678 ifetch 1 ,contru 
-0x4653 008679 store 1 ,mem_disconn_reason_send 
-0x4654 008680 jam hci_error_connection_terminated_by_local_host ,mem_hci_disconn_reason 
-0x4655 008681 fetch 1 ,mem_hci_conn_handle 
-0x4656 008682 fetcht 1 ,mem_sco_handle 
-0x4657 008683 isub temp ,null 
-0x4658 008684 nbranch hci_command_status ,zero 
-0x4659 008685 jam hci_cmd_disconn_sco ,mem_hci_cmd 
-0x465a 008686 fetch 1 ,mem_sco_asso_handle 
-0x465b 008687 store 1 ,mem_hci_conn_handle 
-0x465c 008688 branch hci_command_status 
-:      008690 phci_create_connection_cancel:
-0x465d 008691 call hci_get_cmd_complete_ptr 
-0x465e 008692 call hci_write_plap 
-0x465f 008693 force 10 ,loopcnt 
-0x4660 008694 call hci_command_complete 
-0x4661 008696 jam hci_cmd_detach ,mem_hci_cmd 
-0x4662 008697 force hci_error_no_connection ,temp 
-0x4663 008698 branch hci_send_connection_error 
-:      008700 phci_link_key_request_reply:
-0x4664 008701 call phci_read_plap 
-0x4665 008702 arg mem_link_key ,contw 
-0x4666 008703 force 16 ,loopcnt 
-0x4667 008704 call uart_copy_rx_bytes 
-0x4668 008705 jam hci_cmd_linkkey ,mem_hci_cmd 
-0x4669 008706 branch phci_pin_code_reply 
-:      008708 phci_link_key_request_negative_reply:
-0x466a 008709 call phci_read_plap 
-0x466b 008710 jam hci_cmd_nokey ,mem_hci_cmd 
-0x466c 008711 branch phci_pin_code_reply 
-:      008713 phci_pin_code_request_reply:
-0x466d 008714 call phci_read_plap 
-0x466e 008715 ifetch 1 ,contru 
-0x466f 008716 store 1 ,mem_pin_length 
-0x4670 008717 iforce loopcnt 
-0x4671 008718 arg mem_pin ,contw 
-0x4672 008719 call uart_copy_rx_bytes 
-0x4673 008720 jam hci_cmd_pair ,mem_hci_cmd 
-0x4674 008721 branch phci_pin_code_reply 
-:      008723 phci_pin_code_request_negative_reply:
-0x4675 008724 call phci_read_plap 
-0x4676 008725 jam hci_cmd_nopair ,mem_hci_cmd 
-:      008726 phci_pin_code_reply:
-0x4677 008727 call hci_get_cmd_complete_ptr 
-0x4678 008728 call hci_write_plap 
-0x4679 008729 force 10 ,loopcnt 
-0x467a 008730 branch hci_command_complete 
-:      008732 phci_io_cap_request_reply:
-0x467b 008734 increase 6 ,contru 
-0x467c 008735 ifetch 3 ,contru 
-0x467d 008736 store 3 ,mem_sp_iocap_local 
-0x467e 008737 fetch 1 ,mem_master_sp_state 
-0x467f 008738 beq sp_master_stat_start_done ,phci_io_cap_request_reply_master 
-0x4680 008739 beq sp_stat_key_send ,phci_io_cap_request_reply_master 
-0x4681 008740 jam hci_cmd_io_cap ,mem_hci_cmd 
-0x4682 008741 branch phci_io_cap_request_reply_commom 
-:      008742 phci_io_cap_request_reply_master:
-0x4683 008743 jam sp_flag_commit ,mem_master_sp_flag 
-:      008744 phci_io_cap_request_reply_commom:
-0x4684 008745 call hci_get_cmd_complete_ptr 
-0x4685 008746 call hci_write_plap 
-0x4686 008747 force 10 ,loopcnt 
-0x4687 008748 branch hci_command_complete 
-:      008751 phci_authentication_requested:
-0x4688 008752 call phci_read_handle 
-0x4689 008753 jam hci_cmd_auth ,mem_hci_cmd 
-0x468a 008754 branch hci_command_status 
-:      008756 phci_set_connection_encryption:
-0x468b 008757 call phci_read_handle 
-0x468c 008758 ifetch 1 ,contru 
-0x468d 008759 increase hci_cmd_stopencrypt ,pdata 
-0x468e 008760 store 1 ,mem_hci_cmd 
-0x468f 008761 branch hci_command_status 
-:      008763 phci_remote_name_request:
-0x4690 008764 call phci_read_plap 
-0x4691 008765 ifetch 2 ,contru 
-0x4692 008766 store 1 ,mem_page_mode 
-0x4693 008767 call phci_read_clock 
-0x4694 008768 jam hci_cmd_remote_name_req ,mem_hci_cmd 
-0x4695 008769 branch hci_command_status 
-:      008771 phci_read_remote_ext_features:
-0x4696 008772 ifetch 2 ,contru 
-0x4697 008773 ifetch 1 ,contru 
-0x4698 008774 store 1 ,mem_ext_features_page 
-0x4699 008775 jam hci_cmd_remote_ext_features_req ,mem_hci_cmd 
-0x469a 008776 branch hci_command_status 
-:      008778 phci_read_remote_supported_features:
-0x469b 008780 fetch 1 ,mem_conn_handle 
-0x469c 008781 force hci_error_no_connection ,rega 
-0x469d 008782 branch hci_command_status_err ,blank 
-0x469e 008783 call phci_read_handle 
-0x469f 008784 jam hci_cmd_remote_feature_req ,mem_hci_cmd 
-0x46a0 008785 branch hci_command_status 
-:      008788 phci_read_remote_version_information:
-0x46a1 008790 fetch 1 ,mem_conn_handle 
-0x46a2 008791 force hci_error_no_connection ,rega 
-0x46a3 008792 branch hci_command_status_err ,blank 
-0x46a4 008793 call phci_read_handle 
-0x46a5 008794 jam hci_cmd_remote_version_req ,mem_hci_cmd 
-0x46a6 008795 branch hci_command_status 
-:      008798 phci_read_clock_offset:
-0x46a7 008799 call phci_status_reply_temp 
-0x46a8 008800 force hci_event_read_clock_offset_complete ,queue 
-0x46a9 008801 force 5 ,loopcnt 
-0x46aa 008802 branch hci_send_event 
-:      008804 phci_setup_sco_connection:
-0x46ab 008805 call phci_read_handle 
-0x46ac 008806 increase 10 ,contru 
-0x46ad 008807 ifetch 2 ,contru 
-0x46ae 008808 store 2 ,mem_voice_setting 
-0x46af 008809 ifetch 1 ,contru 
-0x46b0 008810 store 1 ,mem_retransmission_effort 
-0x46b1 008811 ifetch 2 ,contru 
-0x46b2 008812 store 2 ,mem_sco_ptype 
-0x46b3 008813 jam 2 ,mem_air_mode 
-0x46b4 008814 jam hci_cmd_setup_sco ,mem_hci_cmd 
-0x46b5 008815 branch hci_command_status 
-:      008817 phci_accept_sco_connection:
-0x46b6 008818 jam hci_cmd_accept_sco_conn ,mem_hci_cmd 
-0x46b7 008819 branch hci_command_status 
-:      008823 phci_read_local_name:
-0x46b8 008824 call hci_get_cmd_complete_ptr 
-0x46b9 008825 arg mem_local_name ,contr 
-0x46ba 008826 sub contr ,0xff ,loopcnt 
-0x46bb 008827 call uart_copy_tx_bytes 
-0x46bc 008828 force 0 ,pdata 
-0x46bd 008829 sub contr ,mem_local_name ,loopcnt 
-0x46be 008830 increase 0xf8 ,loopcnt 
-0x46bf 008831 call uart_write_bytes 
-0x46c0 008832 force 0xfc ,loopcnt 
-0x46c1 008833 branch hci_command_complete 
-:      008835 phci_change_local_name:
-0x46c2 008836 arg mem_local_name ,contw 
-0x46c3 008837 sub contw ,0xff ,loopcnt 
-:      008838 phci_change_local_name_loop:
-0x46c4 008839 ifetch 1 ,contru 
-0x46c5 008840 istore 1 ,contw 
-0x46c6 008841 branch phci_write_local_name_end ,blank 
-0x46c7 008842 loop phci_change_local_name_loop 
-:      008843 phci_write_local_name_end:
-0x46c8 008844 sub contw ,mem_local_name ,pdata 
-0x46c9 008845 sub pdata ,0 ,pdata 
-0x46ca 008846 store 1 ,mem_local_name_length 
-0x46cb 008847 branch hci_normal_reply 
-:      008849 phci_role_discovery:
-0x46cc 008850 call hci_get_cmd_complete_ptr 
-0x46cd 008851 call hci_write_handle 
-0x46ce 008852 force 0 ,pdata 
-0x46cf 008853 nsetflag master ,0 ,pdata 
-0x46d0 008854 istore 1 ,contwu 
-0x46d1 008855 force 7 ,loopcnt 
-0x46d2 008856 arg 0x809 ,alarm 
-0x46d3 008857 call hci_command_complete 
-0x46d4 008858 branch cmd_exit 
-0x46d5 008859 jam hci_cmd_role_discovery ,mem_hci_cmd 
-0x46d6 008860 rtn 
-:      008863 phci_write_link_policy_settings:
-0x46d7 008864 call phci_copy_handle 
-0x46d8 008865 force 6 ,loopcnt 
-0x46d9 008866 branch hci_command_complete 
-:      008869 phci_delete_stored_link_key:
-0x46da 008870 branch hci_normal_reply 
-:      008872 phci_write_page_timeout:
-0x46db 008873 ifetch 2 ,contru 
-0x46dc 008874 store 2 ,mem_page_to 
-0x46dd 008875 branch hci_normal_reply 
-:      008878 phci_write_scan_enable:
-0x46de 008879 ifetch 1 ,contru 
-0x46df 008880 store 1 ,mem_scan_mode 
-0x46e0 008881 branch hci_normal_reply 
-:      008883 phci_write_page_scan_activity:
-0x46e1 008884 ifetch 2 ,contru 
-0x46e2 008885 store 2 ,mem_pscan_interval 
-0x46e3 008886 ifetch 2 ,contru 
-0x46e4 008887 store 2 ,mem_pscan_window 
-0x46e5 008888 branch hci_normal_reply 
-:      008890 phci_write_inquiry_scan_activity:
-0x46e6 008891 ifetch 2 ,contru 
-0x46e7 008892 store 2 ,mem_iscan_interval 
-0x46e8 008893 ifetch 2 ,contru 
-0x46e9 008894 store 2 ,mem_iscan_window 
-0x46ea 008895 branch hci_normal_reply 
-:      008897 phci_write_encryption_mode:
-0x46eb 008898 branch hci_normal_reply 
-:      008901 phci_write_authentication_enable:
-0x46ec 008902 ifetch 1 ,contru 
-0x46ed 008903 store 1 ,mem_auth_enable 
-0x46ee 008904 branch hci_normal_reply 
-:      008906 phci_write_class_of_device:
-0x46ef 008907 ifetch 3 ,contru 
-0x46f0 008908 store 3 ,mem_class 
-0x46f1 008909 branch hci_normal_reply 
-:      008914 phci_read_ext_inquiry_response:
-0x46f2 008915 deposit temp 
-0x46f3 008916 branch hci_normal_reply ,blank 
-0x46f4 008917 call hci_get_payload_ptr 
-0x46f5 008918 force 0x1 ,pdata 
-0x46f6 008919 istore 1 ,contwu 
-0x46f7 008920 deposit alarm 
-0x46f8 008921 istore 2 ,contwu 
-0x46f9 008922 force hci_error_invalid_hci_command_parameters ,pdata 
-0x46fa 008923 istore 1 ,contwu 
-0x46fb 008924 setarg 0 
-0x46fc 008925 increase 0xf1 ,loopcnt 
-0x46fd 008926 call uart_write_bytes 
-0x46fe 008928 force hci_event_command_complete ,queue 
-0x46ff 008929 force 0xf5 ,loopcnt 
-0x4700 008930 branch hci_send_event 
-:      008934 phci_write_ssp_mode:
-0x4701 008935 ifetch 1 ,contru 
-0x4702 008936 ncall ssp_enable ,blank 
-0x4703 008937 call ssp_disable ,blank 
-0x4704 008938 branch hci_normal_reply 
-:      008940 phci_read_scan_enable:
-0x4705 008941 call hci_get_cmd_complete_ptr 
-0x4706 008942 fetch 1 ,mem_scan_mode 
-0x4707 008943 istore 1 ,contwu 
-0x4708 008944 force 5 ,loopcnt 
-0x4709 008945 branch hci_command_complete 
-:      008947 phci_read_local_version_information:
-0x470a 008948 call hci_get_cmd_complete_ptr 
-0x470b 008949 fetch 8 ,mem_hci_version 
-0x470c 008950 istore 8 ,contwu 
-0x470d 008951 force 12 ,loopcnt 
-0x470e 008952 branch hci_command_complete 
-:      008954 phci_read_local_supported_features:
-0x470f 008955 call hci_get_cmd_complete_ptr 
-0x4710 008956 fetch 8 ,mem_features 
-0x4711 008957 istore 8 ,contwu 
-0x4712 008958 force 12 ,loopcnt 
-0x4713 008959 branch hci_command_complete 
-:      008961 phci_read_local_ext_features:
-0x4714 008962 call hci_get_cmd_complete_ptr 
-0x4715 008963 setarg 0x0101 
-0x4716 008964 istore 2 ,contwu 
-0x4717 008965 setarg 0x01 
-0x4718 008966 istore 8 ,contwu 
-0x4719 008967 force 14 ,loopcnt 
-0x471a 008968 branch hci_command_complete 
-:      008970 phci_read_buffer_size:
-0x471b 008971 call hci_get_cmd_complete_ptr 
-0x471c 008972 fetch 7 ,mem_acl_pktlen 
-0x471d 008973 istore 7 ,contwu 
-0x471e 008974 force 11 ,loopcnt 
-0x471f 008975 branch hci_command_complete 
-:      008977 phci_read_bd_addr:
-0x4720 008978 call hci_get_cmd_complete_ptr 
-0x4721 008979 fetch 6 ,mem_lap 
-0x4722 008980 istore 6 ,contwu 
-0x4723 008981 force 10 ,loopcnt 
-0x4724 008982 branch hci_command_complete 
-:      008984 phci_set_event_mask:
-0x4725 008985 branch hci_normal_reply 
-:      008988 phci_reset_failed_contact_counter:
-0x4726 008989 branch hci_normal_reply 
-:      008990 phci_get_link_quality:
-0x4727 008991 call hci_get_cmd_complete_ptr 
-0x4728 008992 call hci_write_handle 
-0x4729 008993 setarg 0xff 
-0x472a 008994 istore 1 ,contwu 
-0x472b 008995 force 7 ,loopcnt 
-0x472c 008996 branch hci_command_complete 
-:      008998 phci_read_rssi:
-0x472d 008999 call hci_get_cmd_complete_ptr 
-0x472e 009000 call hci_write_handle 
-0x472f 009001 setarg 0x00 
-0x4730 009002 istore 1 ,contwu 
-0x4731 009003 force 7 ,loopcnt 
-0x4732 009004 branch hci_command_complete 
-:      009006 phci_read_afh_channel_map:
-0x4733 009007 set0 mark_ext_patch ,mark 
-0x4734 009008 bpatch patch1b_6 ,mem_patch1b 
-0x4735 009009 branch hci_normal_reply 
-:      009010 phci_read_bd_clock:
-0x4736 009011 set0 mark_ext_patch ,mark 
-0x4737 009012 bpatch patch1b_7 ,mem_patch1b 
-0x4738 009013 branch hci_normal_reply 
-:      009018 phci_accept_connection:
-0x4739 009019 call phci_read_plap 
-0x473a 009020 jam hci_cmd_accept_conn ,mem_hci_cmd 
-0x473b 009021 ifetch 1 ,contru 
-0x473c 009022 beq 1 ,hci_command_status 
-0x473d 009023 jam hci_cmd_accept_with_switch ,mem_hci_cmd 
-0x473e 009024 branch hci_command_status 
-:      009026 phci_reject_connection:
-0x473f 009027 branch phci_accept_connection 
-0x4740 009028 call phci_read_plap 
-0x4741 009029 jam hci_cmd_reject_conn ,mem_hci_cmd 
-0x4742 009030 branch hci_normal_reply 
-:      009032 phci_change_connection_packet_type:
-0x4743 009033 call hci_command_status 
-0x4744 009034 call hci_get_payload_ptr 
-0x4745 009035 setarg 0 
-0x4746 009036 istore 1 ,contwu 
-0x4747 009037 ifetch 4 ,contru 
-0x4748 009038 istore 4 ,contwu 
-0x4749 009039 force 8 ,loopcnt 
-0x474a 009040 arg hci_event_connection_packet_type_changed ,queue 
-0x474b 009041 arg 5 ,loopcnt 
-0x474c 009042 branch hci_send_event 
-:      009044 phci_unknown_command:
-0x474d 009045 force hci_error_unknown_hci_command ,rega 
-0x474e 009046 branch hci_command_status_err 
-:      009048 phci_sniff_mode:
-0x474f 009051 call phci_read_handle 
-0x4750 009052 ifetch 2 ,contru 
-0x4751 009053 store 2 ,mem_sniff_param_interval 
-0x4752 009054 ifetch 2 ,contru 
-0x4753 009055 store 2 ,mem_hci_sniff_min_interval 
-0x4754 009056 ifetch 2 ,contru 
-0x4755 009057 store 2 ,mem_sniff_param_attempt 
-0x4756 009058 ifetch 2 ,contru 
-0x4757 009059 store 2 ,mem_sniff_param_timeout 
-0x4758 009060 jam hci_cmd_in_sniff ,mem_hci_cmd 
-0x4759 009061 branch hci_command_status 
-:      009063 phci_exit_sniff_mode:
-0x475a 009064 call phci_read_handle 
-0x475b 009065 call exit_sniff 
-0x475c 009066 branch hci_command_status 
-:      009068 exit_sniff:
-0x475d 009069 jam hci_cmd_exit_sniff ,mem_hci_cmd 
-0x475e 009070 rtn 
-:      009072 phci_sniff_subrating:
-0x475f 009073 branch hci_normal_reply 
-:      009075 phci_switch_role:
-0x4760 009076 call phci_read_plap 
-0x4761 009077 jam hci_cmd_role_switch ,mem_hci_cmd 
-0x4762 009078 branch hci_command_status 
-:      009080 phci_read_plap:
-0x4763 009081 ifetch 6 ,contru 
-0x4764 009082 store 6 ,mem_hci_plap 
-0x4765 009083 rtn 
-:      009085 phci_read_handle:
-0x4766 009086 ifetch 2 ,contru 
-0x4767 009087 store 1 ,mem_hci_conn_handle 
-0x4768 009088 rtn 
-:      009090 phci_copy_handle:
-0x4769 009091 call phci_read_handle 
-0x476a 009092 call hci_get_cmd_complete_ptr 
-0x476b 009093 fetch 1 ,mem_hci_conn_handle 
-0x476c 009094 istore 2 ,contwu 
-0x476d 009095 rtn 
-:      009099 phci_status_reply_temp:
-0x476e 009100 call phci_read_handle 
-0x476f 009101 call hci_command_status 
-0x4770 009102 call hci_get_payload_ptr 
-0x4771 009103 force 0 ,pdata 
-0x4772 009104 istore 1 ,contwu 
-0x4773 009105 fetch 1 ,mem_hci_conn_handle 
-0x4774 009106 istore 2 ,contwu 
-0x4775 009107 rtn 
-:      009109 phci_read_clock:
-0x4776 009110 ifetch 2 ,contru 
-0x4777 009111 iadd clkn_bt ,pdata 
-0x4778 009112 and_into 0x1fc ,pdata 
-0x4779 009113 store 4 ,mem_page_clk 
-0x477a 009114 rtn 
-:      009116 hci_inquiry_reply:
-0x477b 009117 set0 mark_ext_patch ,mark 
-0x477c 009118 bpatch patch1c_0 ,mem_patch1c 
-0x477d 009119 fetch 1 ,mem_rp_packets 
-0x477e 009120 sub pdata ,2 ,null 
-0x477f 009121 nrtn positive 
-0x4780 009122 fetcht 6 ,extm_lap 
-0x4781 009123 call context_search_plap2 
-0x4782 009124 rtn zero 
-0x4783 009125 call hci_get_packet_ptr 
-0x4784 009126 setarg 0x10f22 
-0x4785 009127 istore 3 ,contwu 
-0x4786 009128 fetch 6 ,extm_lap 
-0x4787 009129 istore 6 ,contwu 
-0x4788 009130 fetch 1 ,extm_fhs_misc 
-0x4789 009131 copy pdata ,temp 
-0x478a 009132 rshift3 pdata ,pdata 
-0x478b 009133 rshift3 pdata ,pdata 
-0x478c 009134 istore 1 ,contwu 
-0x478d 009135 copy temp ,pdata 
-0x478e 009136 and pdata ,0x30 ,pdata 
-0x478f 009137 rshift3 pdata ,pdata 
-0x4790 009138 rshift pdata ,pdata 
-0x4791 009139 istore 1 ,contwu 
-0x4792 009140 fetch 3 ,extm_class 
-0x4793 009141 istore 3 ,contwu 
-0x4794 009142 fetch 4 ,mem_clke_bt 
-0x4795 009143 isub clkn_bt ,pdata 
-0x4796 009144 istore 2 ,contwu 
-0x4797 009145 setarg 0xc8 
-0x4798 009146 istore 1 ,contwu 
-0x4799 009147 force 15 ,loopcnt 
-0x479a 009148 branch hci_send_event_raw 
-:      009150 hci_inquiry_reply_eir:
-0x479b 009151 set0 mark_ext_patch ,mark 
-0x479c 009152 bpatch patch1c_1 ,mem_patch1c 
-0x479d 009153 force 540 ,temp 
-0x479e 009154 fetch 2 ,mem_h5tx_free 
-0x479f 009155 isub temp ,null 
-0x47a0 009156 nrtn positive 
-0x47a1 009157 fetcht 3 ,mem_extm_uap_restore 
-0x47a2 009158 fetch 3 ,extm_uap 
-0x47a3 009159 isub temp ,null 
-0x47a4 009160 rtn zero 
-0x47a5 009161 rtn blank 
-0x47a6 009162 store 3 ,mem_extm_uap_restore 
-0x47a7 009163 fetch 1 ,mem_rp_packets 
-0x47a8 009164 sub pdata ,2 ,null 
-0x47a9 009165 nrtn positive 
-0x47aa 009166 fetcht 6 ,extm_lap 
-0x47ab 009167 call context_search_plap2 
-0x47ac 009168 rtn zero 
-0x47ad 009169 call hci_eir_reply 
-0x47ae 009170 force 15 ,temp 
-0x47af 009171 fetch 1 ,mem_rxbuf + 1 
-0x47b0 009172 bne 0x09 ,hci_inquiry_reply_eir_end 
-0x47b1 009173 fetch 1 ,mem_rxbuf 
-0x47b2 009174 branch hci_inquiry_reply_eir_end ,blank 
-0x47b3 009175 iforce loopcnt 
-0x47b4 009176 istore 1 ,contwu 
-0x47b5 009177 iadd temp ,temp 
-0x47b6 009178 increase 1 ,temp 
-0x47b7 009179 arg mem_rxbuf + 1 ,contr 
-:      009181 hci_inquiry_name_loop:
-0x47b8 009182 ifetch 1 ,contr 
-0x47b9 009183 istore 1 ,contwu 
-0x47ba 009184 loop hci_inquiry_name_loop 
-:      009185 hci_inquiry_other_rtn_loop:
-0x47bb 009186 ifetch 1 ,contr 
-0x47bc 009187 branch hci_inquiry_reply_eir_end ,blank 
-0x47bd 009188 iforce loopcnt 
-0x47be 009189 istore 1 ,contwu 
-0x47bf 009190 iadd temp ,temp 
-0x47c0 009191 increase 1 ,temp 
-:      009192 hci_inquiry_other_loop:
-0x47c1 009193 ifetch 1 ,contr 
-0x47c2 009194 istore 1 ,contwu 
-0x47c3 009195 loop hci_inquiry_other_loop 
-0x47c4 009196 branch hci_inquiry_other_rtn_loop 
-:      009197 hci_inquiry_reply_eir_end:
-0x47c5 009198 sub temp ,0xff ,pdata 
-0x47c6 009199 iforce loopcnt 
-:      009200 hci_inquiry_fill_zero:
-0x47c7 009201 setarg 0x00 
-0x47c8 009202 istore 1 ,contwu 
-0x47c9 009203 loop hci_inquiry_fill_zero 
-0x47ca 009204 force 0xff ,loopcnt 
-0x47cb 009205 branch hci_send_event_raw 
-:      009207 hci_eir_reply:
-0x47cc 009208 set0 mark_ext_patch ,mark 
-0x47cd 009209 bpatch patch1c_2 ,mem_patch1c 
-0x47ce 009210 call hci_get_packet_ptr 
-0x47cf 009211 setarg 0x1ff2f 
-0x47d0 009212 istore 3 ,contwu 
-0x47d1 009213 fetch 6 ,extm_lap 
-0x47d2 009214 istore 6 ,contwu 
-0x47d3 009215 fetch 1 ,extm_fhs_misc 
-0x47d4 009216 copy pdata ,temp 
-0x47d5 009217 rshift3 pdata ,pdata 
-0x47d6 009218 rshift3 pdata ,pdata 
-0x47d7 009219 istore 1 ,contwu 
-0x47d8 009220 copy temp ,pdata 
-0x47d9 009221 and pdata ,0x30 ,pdata 
-0x47da 009222 rshift3 pdata ,pdata 
-0x47db 009223 rshift pdata ,pdata 
-0x47dc 009224 istore 1 ,contwu 
-0x47dd 009225 fetch 3 ,extm_class 
-0x47de 009226 istore 3 ,contwu 
-0x47df 009227 fetch 4 ,mem_clke_bt 
-0x47e0 009228 isub clkn_bt ,pdata 
-0x47e1 009229 istore 2 ,contwu 
-0x47e2 009230 setarg 0xc8 
-0x47e3 009231 istore 1 ,contwu 
-0x47e4 009232 rtn 
-:      009234 hci_send_remote_features:
-0x47e5 009235 set0 mark_ext_patch ,mark 
-0x47e6 009236 bpatch patch1c_3 ,mem_patch1c 
-0x47e7 009237 fetch 1 ,mem_device_option 
-0x47e8 009238 rtnne dvc_op_hci 
-0x47e9 009239 call hci_write_handle3 
-0x47ea 009240 istoret 8 ,contwu 
-0x47eb 009241 force 11 ,loopcnt 
-0x47ec 009242 force hci_event_read_remote_features_complete ,queue 
-0x47ed 009243 branch hci_send_event 
-:      009245 hci_send_remote_ext_features_notification:
-0x47ee 009246 set0 mark_ext_patch ,mark 
-0x47ef 009247 bpatch patch1c_4 ,mem_patch1c 
-0x47f0 009248 fetch 1 ,mem_device_option 
-0x47f1 009249 rtnne dvc_op_hci 
-0x47f2 009251 call hci_get_payload_ptr 
-0x47f3 009252 fetch 6 ,mem_plap 
-0x47f4 009253 istore 6 ,contwu 
-0x47f5 009254 istoret 8 ,contwu 
-0x47f6 009255 force 14 ,loopcnt 
-0x47f7 009256 force hci_event_remote_host_supported_features_notification ,queue 
-0x47f8 009257 branch hci_send_event 
-:      009259 hci_send_remote_ext_features_event:
-0x47f9 009260 set0 mark_ext_patch ,mark 
-0x47fa 009261 bpatch patch1c_5 ,mem_patch1c 
-0x47fb 009262 fetch 1 ,mem_device_option 
-0x47fc 009263 rtnne dvc_op_hci 
-0x47fd 009265 call hci_write_handle3 
-0x47fe 009266 fetch 1 ,mem_ext_features_page 
-0x47ff 009267 istore 1 ,contwu 
-0x4800 009268 setarg 1 
-0x4801 009269 istore 1 ,contwu 
-0x4802 009270 istoret 8 ,contwu 
-0x4803 009271 force 13 ,loopcnt 
-0x4804 009272 force hci_event_read_remote_ext_features_complete ,queue 
-0x4805 009273 branch hci_send_event 
-:      009276 hci_send_version_information:
-0x4806 009277 set0 mark_ext_patch ,mark 
-0x4807 009278 bpatch patch1c_6 ,mem_patch1c 
-0x4808 009279 fetch 1 ,mem_device_option 
-0x4809 009280 rtnne dvc_op_hci 
-0x480a 009281 call hci_write_handle3 
-0x480b 009282 istoret 5 ,contwu 
-0x480c 009283 force 8 ,loopcnt 
-0x480d 009284 force hci_event_read_remote_version_information_complete ,queue 
-0x480e 009285 branch hci_send_event 
-:      009287 hci_send_io_cap_response_event:
-0x480f 009288 set0 mark_ext_patch ,mark 
-0x4810 009289 bpatch patch1c_7 ,mem_patch1c 
-0x4811 009290 fetch 1 ,mem_device_option 
-0x4812 009291 rtnne dvc_op_hci 
-0x4813 009293 call hci_get_payload_ptr 
-0x4814 009294 fetch 6 ,mem_plap 
-0x4815 009295 istore 6 ,contwu 
-0x4816 009296 fetch 3 ,mem_sp_iocap_remote 
-0x4817 009297 istore 3 ,contwu 
-0x4818 009298 force 9 ,loopcnt 
-0x4819 009299 force hci_event_io_cap_response ,queue 
-0x481a 009300 branch hci_send_event 
-:      009302 hci_send_io_cap_req_event:
-0x481b 009303 set0 mark_ext_patch ,mark 
-0x481c 009304 bpatch patch1d_0 ,mem_patch1d 
-0x481d 009305 fetch 1 ,mem_device_option 
-0x481e 009306 rtnne dvc_op_hci 
-0x481f 009308 call hci_get_payload_ptr 
-0x4820 009309 fetch 6 ,mem_plap 
-0x4821 009310 istore 6 ,contwu 
-0x4822 009311 force 6 ,loopcnt 
-0x4823 009312 force hci_event_io_cap_req ,queue 
-0x4824 009313 branch hci_send_event 
-:      009316 hci_send_connection_complete:
-0x4825 009317 force 0 ,temp 
-:      009318 hci_send_connection_error:
-0x4826 009319 set0 mark_ext_patch ,mark 
-0x4827 009320 bpatch patch1d_1 ,mem_patch1d 
-0x4828 009321 fetch 1 ,mem_device_option 
-0x4829 009322 rtnne dvc_op_hci 
-0x482a 009323 force hci_event_connection_complete ,queue 
-0x482b 009324 jam 5 ,mem_acl_credits 
-0x482c 009325 call hci_get_payload_ptr 
-0x482d 009326 istoret 1 ,contwu 
-0x482e 009327 call hci_write_handle 
-0x482f 009328 call hci_write_plap 
-0x4830 009329 force 1 ,pdata 
-0x4831 009330 istore 1 ,contwu 
-0x4832 009331 force 0 ,pdata 
-0x4833 009332 fetcht 1 ,mem_state_map 
-0x4834 009333 isolate1 smap_encryption ,temp 
-0x4835 009334 setflag true ,0 ,pdata 
-0x4836 009335 istore 1 ,contwu 
-0x4837 009336 force 11 ,loopcnt 
-0x4838 009337 branch hci_send_event 
-:      009340 hci_send_conn_req_event:
-0x4839 009341 set0 mark_ext_patch ,mark 
-0x483a 009342 bpatch patch1d_2 ,mem_patch1d 
-0x483b 009343 fetch 1 ,mem_device_option 
-0x483c 009344 rtnne dvc_op_hci 
-0x483d 009345 force hci_event_connection_request ,queue 
-0x483e 009346 call hci_get_payload_ptr 
-0x483f 009347 call hci_write_plap 
-0x4840 009349 fetch 3 ,extm_class 
-0x4841 009350 istore 3 ,contwu 
-0x4842 009351 istoret 1 ,contwu 
-0x4843 009352 force 10 ,loopcnt 
-0x4844 009353 branch hci_send_event 
-:      009355 hci_send_encryption_change:
-0x4845 009356 set0 mark_ext_patch ,mark 
-0x4846 009357 bpatch patch1d_3 ,mem_patch1d 
-0x4847 009358 fetch 1 ,mem_device_option 
-0x4848 009359 rtnne dvc_op_hci 
-0x4849 009360 call hci_write_handle3 
-0x484a 009361 force 0 ,pdata 
-0x484b 009362 fetcht 1 ,mem_state_map 
-0x484c 009363 isolate1 smap_encryption ,temp 
-0x484d 009364 setflag true ,0 ,pdata 
-0x484e 009365 istore 1 ,contwu 
-0x484f 009366 force hci_event_encryption_change_complete ,queue 
-0x4850 009367 force 4 ,loopcnt 
-0x4851 009368 branch hci_send_event 
-:      009371 hci_send_linkkey_notification:
-0x4852 009372 set0 mark_ext_patch ,mark 
-0x4853 009373 bpatch patch1d_4 ,mem_patch1d 
-0x4854 009374 fetch 1 ,mem_device_option 
-0x4855 009375 rtnne dvc_op_hci 
-0x4856 009376 force hci_event_link_key_notification ,queue 
-0x4857 009377 call hci_get_payload_ptr 
-0x4858 009378 call hci_write_plap 
-0x4859 009379 arg mem_link_key ,contr 
-0x485a 009380 force 16 ,loopcnt 
-0x485b 009381 call uart_copy_tx_bytes 
-0x485c 009382 force 0x05 ,pdata 
-0x485d 009383 istore 1 ,contwu 
-0x485e 009384 force 0x17 ,loopcnt 
-0x485f 009385 branch hci_send_event 
-:      009387 hci_send_user_confirmation_req:
-0x4860 009388 fetch 1 ,mem_device_option 
-0x4861 009389 rtnne dvc_op_hci 
-0x4862 009390 force hci_event_user_confirmation_request ,queue 
-0x4863 009391 call hci_get_payload_ptr 
-0x4864 009392 call hci_write_plap 
-0x4865 009393 fetch 4 ,mem_sp_gkey 
-0x4866 009394 istore 4 ,contwu 
-0x4867 009395 force 0xa ,loopcnt 
-0x4868 009396 branch hci_send_event 
-:      009398 hci_send_ssp_complete:
-0x4869 009399 fetch 1 ,mem_device_option 
-0x486a 009400 rtnne dvc_op_hci 
-0x486b 009401 force hci_event_simple_pairing_complete ,queue 
-0x486c 009402 call hci_get_payload_ptr 
-0x486d 009403 setarg 0 
-0x486e 009404 istore 1 ,contwu 
-0x486f 009405 call hci_write_plap 
-0x4870 009406 force 0x7 ,loopcnt 
-0x4871 009407 branch hci_send_event 
-:      009410 hci_send_linkkey_req:
-0x4872 009411 set0 mark_ext_patch ,mark 
-0x4873 009412 bpatch patch1d_5 ,mem_patch1d 
-0x4874 009413 force hci_event_link_key_request ,queue 
-:      009414 hci_send_sec_req:
-0x4875 009415 fetch 1 ,mem_device_option 
-0x4876 009416 rtnne dvc_op_hci 
-0x4877 009417 call hci_get_payload_ptr 
-0x4878 009418 call hci_write_plap 
-0x4879 009419 force 6 ,loopcnt 
-0x487a 009420 branch hci_send_event 
-:      009422 hci_send_pincode_req:
-0x487b 009423 fetch 1 ,mem_device_option 
-0x487c 009424 rtnne dvc_op_hci 
-0x487d 009425 force hci_event_pin_code_request ,queue 
-0x487e 009426 branch hci_send_sec_req 
-:      009429 hci_send_role_change:
-0x487f 009430 fetch 1 ,mem_device_option 
-0x4880 009431 rtnne dvc_op_hci 
-0x4881 009432 force hci_event_role_change ,queue 
-0x4882 009433 call hci_get_payload_ptr 
-0x4883 009434 force 0 ,pdata 
-0x4884 009435 istore 1 ,contwu 
-0x4885 009436 call hci_write_plap 
-0x4886 009437 istoret 1 ,contwu 
-0x4887 009438 force 8 ,loopcnt 
-0x4888 009439 branch hci_send_event 
-:      009441 hci_send_role_change_err:
-0x4889 009442 fetch 1 ,mem_device_option 
-0x488a 009443 rtnne dvc_op_hci 
-0x488b 009444 force 0 ,temp 
-0x488c 009445 nbranch hci_send_role_change_err_slave ,master 
-0x488d 009446 force 1 ,temp 
-:      009447 hci_send_role_change_err_slave:
-0x488e 009448 fetch 1 ,mem_device_option 
-0x488f 009449 rtnne dvc_op_hci 
-0x4890 009450 force hci_event_role_change ,queue 
-0x4891 009451 call hci_get_payload_ptr 
-0x4892 009452 force 0x35 ,pdata 
-0x4893 009453 istore 1 ,contwu 
-0x4894 009454 call hci_write_plap 
-0x4895 009455 istoret 1 ,contwu 
-0x4896 009456 force 8 ,loopcnt 
-0x4897 009457 branch hci_send_event 
-:      009459 hci_send_name:
-0x4898 009460 set0 mark_ext_patch ,mark 
-0x4899 009461 bpatch patch1d_6 ,mem_patch1d 
-0x489a 009462 fetch 1 ,mem_device_option 
-0x489b 009463 rtnne dvc_op_hci 
-0x489c 009464 call hci_get_packet_ptr 
-0x489d 009465 setarg 0xff07 
-0x489e 009466 istore 2 ,contwu 
-0x489f 009467 deposit queue 
-0x48a0 009468 istore 1 ,contwu 
-0x48a1 009469 call hci_write_plap 
-0x48a2 009470 arg mem_tmp_buffer ,contr 
-0x48a3 009471 force 248 ,loopcnt 
-:      009472 hci_read_remote_name_loop:
-0x48a4 009473 ifetch 1 ,contr 
-0x48a5 009474 istore 1 ,contwu 
-0x48a6 009475 loop hci_read_remote_name_loop 
-0x48a7 009476 force 0xff ,loopcnt 
-0x48a8 009477 branch hci_send_event_raw 
-:      009479 hci_send_num_complete_packets:
-0x48a9 009480 set0 mark_ext_patch ,mark 
-0x48aa 009481 bpatch patch1d_7 ,mem_patch1d 
-0x48ab 009482 fetch 1 ,mem_device_option 
-0x48ac 009483 rtnne dvc_op_hci 
-0x48ad 009484 hfetch 1 ,core_uart_txitems 
-0x48ae 009485 nrtn blank 
-0x48af 009486 fetch 1 ,mem_op 
-0x48b0 009487 rtnbit0 op_pkt_comp 
-0x48b1 009488 set0 op_pkt_comp ,pdata 
-0x48b2 009489 store 1 ,mem_op 
-0x48b3 009490 call hci_get_payload_ptr 
-0x48b4 009491 force 1 ,pdata 
-0x48b5 009492 istore 1 ,contwu 
-0x48b6 009493 call hci_write_handle 
-0x48b7 009494 force 1 ,pdata 
-0x48b8 009495 istore 2 ,contwu 
-0x48b9 009496 force hci_event_num_completed_packets ,queue 
-0x48ba 009497 force 5 ,loopcnt 
-0x48bb 009498 branch hci_send_event 
-:      009502 hci_send_auth_complete:
-0x48bc 009503 set0 mark_ext_patch ,mark 
-0x48bd 009504 bpatch patch1e_0 ,mem_patch1e 
-0x48be 009505 fetch 1 ,mem_device_option 
-0x48bf 009506 rtnne dvc_op_hci 
-0x48c0 009507 call hci_write_handle3 
-0x48c1 009508 force hci_event_authentication_complete ,queue 
-0x48c2 009509 force 3 ,loopcnt 
-0x48c3 009510 branch hci_send_event 
-:      009514 hci_send_disconn_complete:
-0x48c4 009515 set0 mark_ext_patch ,mark 
-0x48c5 009516 bpatch patch1e_1 ,mem_patch1e 
-0x48c6 009517 fetch 1 ,mem_device_option 
-0x48c7 009518 rtnne dvc_op_hci 
-0x48c8 009519 call hci_get_payload_ptr 
-0x48c9 009520 force 0 ,pdata 
-0x48ca 009521 istore 1 ,contwu 
-0x48cb 009522 istoret 2 ,contwu 
-0x48cc 009523 fetch 1 ,mem_hci_disconn_reason 
-0x48cd 009524 istore 1 ,contwu 
-0x48ce 009525 force hci_event_disconnection_complete ,queue 
-0x48cf 009526 force 4 ,loopcnt 
-0x48d0 009527 branch hci_send_event 
-:      009530 hci_send_le_adv_report_event:
-0x48d1 009531 set0 mark_ext_patch ,mark 
-0x48d2 009532 bpatch patch1e_2 ,mem_patch1e 
-0x48d3 009533 fetch 1 ,mem_device_option 
-0x48d4 009534 rtnne dvc_op_hci ,pdata 
-0x48d5 009535 call hci_get_payload_ptr 
-0x48d6 009536 setarg 0x0102 
-0x48d7 009537 istore 2 ,contwu 
-0x48d8 009538 fetcht 1 ,mem_le_rxbuf 
-0x48d9 009539 and temp ,0xf ,pdata 
-0x48da 009540 istore 1 ,contwu 
-0x48db 009541 copy rega ,pdata 
-0x48dc 009542 istore 1 ,contwu 
-0x48dd 009543 fetcht 1 ,mem_le_rxbuf + 1 
-0x48de 009544 increase -6 ,temp 
-0x48df 009545 fetch 6 ,mem_le_rxbuf + 2 
-0x48e0 009546 istore 6 ,contwu 
-0x48e1 009547 istoret 1 ,contwu 
-0x48e2 009548 copy temp ,loopcnt 
-0x48e3 009549 call uart_copy_tx_bytes 
-0x48e4 009550 setarg 127 
-0x48e5 009551 istore 1 ,contwu 
-0x48e6 009552 copy temp ,loopcnt 
-0x48e7 009553 add loopcnt ,12 ,loopcnt 
-0x48e8 009554 force hci_event_le_meta_event ,queue 
-0x48e9 009555 branch hci_send_event 
-:      009557 hci_send_le_conn_complete:
-0x48ea 009558 set0 mark_ext_patch ,mark 
-0x48eb 009559 bpatch patch1e_3 ,mem_patch1e 
-0x48ec 009560 fetch 1 ,mem_device_option 
-0x48ed 009561 rtnne dvc_op_hci ,pdata 
-0x48ee 009562 call hci_get_payload_ptr 
-0x48ef 009563 setarg hci_le_subevent_conn_complete 
-0x48f0 009564 istore 1 ,contwu 
-0x48f1 009565 istoret 1 ,contwu 
-0x48f2 009566 fetch 1 ,mem_le_conn_handle 
-0x48f3 009567 istore 2 ,contwu 
-0x48f4 009568 fetch 1 ,mem_le_mode 
-0x48f5 009569 rshift pdata ,pdata 
-0x48f6 009570 setflip 0 ,pdata 
-0x48f7 009571 istore 1 ,contwu 
-0x48f8 009572 fetch 1 ,mem_le_conn_peer_addr_type 
-0x48f9 009573 istore 1 ,contwu 
-0x48fa 009574 fetch 6 ,mem_le_plap 
-0x48fb 009575 istore 6 ,contwu 
-0x48fc 009576 fetch 2 ,mem_le_conn_interval 
-0x48fd 009577 istore 2 ,contwu 
-0x48fe 009578 fetch 2 ,mem_le_slave_latency 
-0x48ff 009579 istore 2 ,contwu 
-0x4900 009580 fetch 2 ,mem_le_superto 
-0x4901 009581 istore 2 ,contwu 
-0x4902 009582 fetch 1 ,mem_le_peer_sca 
-0x4903 009583 istore 1 ,contwu 
-0x4904 009584 force hci_event_le_meta_event ,queue 
-0x4905 009585 arg 19 ,loopcnt 
-0x4906 009586 branch hci_send_event 
-:      009590 hci_send_mode_change:
-0x4907 009591 set0 mark_ext_patch ,mark 
-0x4908 009592 bpatch patch1e_4 ,mem_patch1e 
-0x4909 009593 fetch 1 ,mem_device_option 
-0x490a 009594 rtnne dvc_op_hci 
-0x490b 009596 call hci_get_payload_ptr 
-0x490c 009597 call hci_write_handle3 
-0x490d 009598 istoret 1 ,contwu 
-0x490e 009599 fetch 2 ,mem_tsniff 
-0x490f 009600 rshift pdata ,pdata 
-0x4910 009601 istore 2 ,contwu 
-0x4911 009602 force 6 ,loopcnt 
-0x4912 009603 force hci_event_mode_change ,queue 
-0x4913 009604 branch hci_send_event 
-:      009607 hci_send_sco_complete:
-0x4914 009608 set0 mark_ext_patch ,mark 
-0x4915 009609 bpatch patch1e_5 ,mem_patch1e 
-0x4916 009610 fetch 1 ,mem_device_option 
-0x4917 009611 rtnne dvc_op_hci 
-0x4918 009612 set0 mark_ext_patch ,mark 
-0x4919 009613 bpatch patch1e_6 ,mem_patch1e 
-0x491a 009614 call hci_get_payload_ptr 
-0x491b 009615 istoret 1 ,contwu 
-0x491c 009616 setarg 0xe00 
-0x491d 009617 istore 2 ,contwu 
-0x491e 009618 call hci_write_plap 
-0x491f 009619 force 0 ,pdata 
-0x4920 009620 bmark1 mark_esco ,hci_send_esco 
-0x4921 009621 force 0 ,pdata 
-0x4922 009622 istore 7 ,contwu 
-0x4923 009623 branch hci_send_sco_cont 
-:      009624 hci_send_esco:
-0x4924 009625 fetch 1 ,mem_device_option 
-0x4925 009626 rtnne dvc_op_hci 
-0x4926 009627 setarg 0x020602 
-0x4927 009628 istore 3 ,contwu 
-0x4928 009629 setarg 30 
-0x4929 009630 istore 2 ,contwu 
-0x492a 009631 setarg 30 
-0x492b 009632 istore 2 ,contwu 
-:      009633 hci_send_sco_cont:
-0x492c 009634 fetch 1 ,mem_device_option 
-0x492d 009635 rtnne dvc_op_hci 
-0x492e 009636 fetch 1 ,mem_air_mode 
-0x492f 009637 istore 1 ,contwu 
-0x4930 009638 force hci_event_sco_connection_complete ,queue 
-0x4931 009639 force 17 ,loopcnt 
-0x4932 009640 branch hci_send_event 
-:      009643 hci_command_status:
-0x4933 009644 set0 mark_ext_patch ,mark 
-0x4934 009645 bpatch patch1e_7 ,mem_patch1e 
-0x4935 009646 call hci_get_payload_ptr 
-0x4936 009647 setarg 0x100 
-0x4937 009648 istore 2 ,contwu 
-0x4938 009649 deposit alarm 
-0x4939 009650 istore 2 ,contwu 
-0x493a 009651 force 4 ,loopcnt 
-0x493b 009652 force hci_event_command_status ,queue 
-0x493c 009653 branch hci_send_event 
-:      009655 hci_command_status_err:
-0x493d 009656 set0 mark_ext_patch ,mark 
-0x493e 009657 bpatch patch1f_0 ,mem_patch1f 
-0x493f 009658 call hci_get_payload_ptr 
-0x4940 009659 deposit rega 
-0x4941 009660 istore 1 ,contwu 
-0x4942 009661 setarg 0x01 
-0x4943 009662 istore 1 ,contwu 
-0x4944 009663 deposit alarm 
-0x4945 009664 istore 2 ,contwu 
-0x4946 009665 force 4 ,loopcnt 
-0x4947 009666 force hci_event_command_status ,queue 
-0x4948 009667 branch hci_send_event 
-:      009669 hci_normal_reply:
-0x4949 009670 set0 mark_ext_patch ,mark 
-0x494a 009671 bpatch patch1f_1 ,mem_patch1f 
-0x494b 009672 force 4 ,loopcnt 
-:      009673 hci_command_complete:
-0x494c 009674 call hci_get_payload_ptr 
-0x494d 009675 force 0x1 ,pdata 
-0x494e 009676 istore 1 ,contwu 
-0x494f 009677 deposit alarm 
-0x4950 009678 istore 3 ,contwu 
-0x4951 009679 force hci_event_command_complete ,queue 
-:      009680 hci_send_event:
-0x4952 009681 set0 mark_ext_patch ,mark 
-0x4953 009682 bpatch patch1f_2 ,mem_patch1f 
-0x4954 009683 call hci_get_packet_ptr 
-0x4955 009684 deposit queue 
-0x4956 009685 istore 1 ,contwu 
-0x4957 009686 deposit loopcnt 
-0x4958 009687 istore 1 ,contwu 
-:      009688 hci_send_event_raw:
-0x4959 009689 set1 mark_h5tx_rp ,mark 
-0x495a 009690 force 5 ,queue 
-0x495b 009691 increase 2 ,loopcnt 
-:      009692 hci_send_packet:
-0x495c 009693 call hci_check_bcsp_protocol 
-0x495d 009694 branch bcsp_send_packet ,true 
-0x495e 009695 branch h4_send_packet_event 
-:      009697 hci_send_commu_ready_event:
-0x495f 009698 force hci_event_vendor_specific ,queue 
-0x4960 009699 call hci_get_payload_ptr 
-0x4961 009700 setarg hci_vendor_event_commu_ready 
-0x4962 009701 istore 1 ,contwu 
-0x4963 009702 force 1 ,loopcnt 
-0x4964 009703 branch hci_send_event 
-:      009706 hci_write_plap:
-0x4965 009707 fetch 6 ,mem_plap 
-0x4966 009708 istore 6 ,contwu 
-0x4967 009709 rtn 
-:      009711 hci_write_handle3:
-0x4968 009712 call hci_get_payload_ptr 
-0x4969 009713 force 0 ,pdata 
-0x496a 009714 istore 1 ,contwu 
-:      009715 hci_write_handle:
-0x496b 009716 fetch 1 ,mem_conn_handle 
-0x496c 009717 istore 2 ,contwu 
-0x496d 009718 rtn 
-:      009720 hci_get_cmd_complete_ptr:
-0x496e 009721 force 12 ,contwu 
-0x496f 009722 branch hci_get_tx_ptr 
-:      009724 hci_get_payload_ptr:
-0x4970 009725 force 8 ,contwu 
-0x4971 009726 branch hci_get_tx_ptr 
-:      009728 hci_get_packet_ptr:
-0x4972 009729 force 6 ,contwu 
-:      009730 hci_get_tx_ptr:
-0x4973 009731 call hci_check_bcsp_protocol 
-0x4974 009732 branch bcsp_get_tx_ptr ,true 
-0x4975 009733 branch h4_get_tx_ptr 
-:      009735 uart_copy_tx_bytes:
-0x4976 009736 deposit loopcnt 
-0x4977 009737 rtn blank 
-:      009738 uart_copy_tx_bytes_loop:
-0x4978 009739 ifetch 1 ,contr 
-0x4979 009740 istore 1 ,contwu 
-0x497a 009741 loop uart_copy_tx_bytes_loop 
-0x497b 009742 rtn 
-:      009744 uart_copy_rx_bytes:
-0x497c 009745 deposit loopcnt 
-0x497d 009746 rtn blank 
-:      009747 uart_copy_rx_bytes_loop:
-0x497e 009748 ifetch 1 ,contru 
-0x497f 009749 istore 1 ,contw 
-0x4980 009750 loop uart_copy_rx_bytes_loop 
-0x4981 009751 rtn 
-:      009753 uart_write_bytes:
-0x4982 009754 istore 1 ,contwu 
-0x4983 009755 rshift8 pdata ,pdata 
-0x4984 009756 loop uart_write_bytes 
-0x4985 009757 rtn 
-:      009760 calc_tx_crc16:
-0x4986 009761 pulse crc16 
-0x4987 009762 enable enable_crc 
-:      009763 crcloop:
-0x4988 009764 ifetch 1 ,contwu 
-0x4989 009765 inject bucket ,8 
-0x498a 009766 loop crcloop 
-0x498b 009767 enable enable_parity 
-0x498c 009768 inject bucket ,16 
-0x498d 009769 disable enable_parity 
-0x498e 009770 disable enable_crc 
-0x498f 009771 disable crc16 
-0x4990 009772 byteswap pdata ,pdata 
-0x4991 009773 rtn 
-:      009775 stop_loop:
-0x4992 009776 nop 1 
-0x4993 009777 hjam 1 ,0x8203 
-0x4994 009778 branch stop_loop 
-:      009782 process_cmd:
-0x4995 009783 set0 mark_ext_patch ,mark 
-0x4996 009784 bpatch patch1f_3 ,mem_patch1f 
-0x4997 009785 fetch 1 ,mem_hci_cmd 
-0x4998 009786 rtn blank 
-0x4999 009787 fetch 1 ,mem_lmo_opcode2 
-0x499a 009788 nrtn blank 
-0x499b 009789 call cmd_check_plap 
-0x499c 009790 nbranch process_cmd_conn_handle ,zero 
-0x499d 009791 fetch 1 ,mem_hci_cmd 
-0x499e 009792 beq hci_cmd_remote_name_req ,cmd_namereq 
-0x499f 009793 beq hci_cmd_pair ,cmd_pair 
-0x49a0 009794 beq hci_cmd_nopair ,cmd_nopair 
-0x49a1 009795 beq hci_cmd_linkkey ,cmd_has_key 
-0x49a2 009796 beq hci_cmd_nokey ,cmd_no_key 
-0x49a3 009797 beq hci_cmd_reject_conn ,cmd_disconn 
-0x49a4 009798 beq hci_cmd_role_switch ,cmd_role_switch 
-0x49a5 009799 beq hci_cmd_accept_conn ,cmd_accept_conn 
-0x49a6 009800 beq hci_cmd_accept_with_switch ,cmd_accept_with_switch 
-0x49a7 009801 beq hci_cmd_detach ,cmd_detach 
-0x49a8 009802 beq hci_cmd_in_sniff ,cmd_in_sniff 
-0x49a9 009803 beq hci_cmd_exit_sniff ,cmd_exit_sniff 
-:      009804 process_cmd_conn_handle:
-0x49aa 009805 set0 mark_ext_patch ,mark 
-0x49ab 009806 bpatch patch1f_4 ,mem_patch1f 
-0x49ac 009807 call cmd_check_handle 
-0x49ad 009808 nrtn blank 
-0x49ae 009809 fetch 1 ,mem_hci_cmd 
-0x49af 009810 beq hci_cmd_auth ,cmd_auth 
-0x49b0 009811 beq hci_cmd_startencrypt ,cmd_start_encrypt 
-0x49b1 009812 beq hci_cmd_stopencrypt ,cmd_stop_encrypt 
-0x49b2 009813 beq hci_cmd_setup_sco ,cmd_setup_sco 
-0x49b3 009814 beq hci_cmd_disconn_sco ,cmd_disconn_sco 
-0x49b4 009815 beq hci_cmd_accept_sco_conn ,cmd_accept_sco_conn 
-0x49b5 009816 beq hci_cmd_remote_feature_req ,cmd_feature_req 
-0x49b6 009817 beq hci_cmd_remote_ext_features_req ,cmd_ext_feature_req 
-0x49b7 009818 beq hci_cmd_remote_version_req ,cmd_version_req 
-0x49b8 009819 beq hci_cmd_role_discovery ,cmd_role_discovery 
-0x49b9 009820 beq hci_cmd_io_cap ,cmd_io_cap 
-0x49ba 009821 rtnne hci_cmd_disconn 
-0x49bb 009822 call lmp_disconnect 
-:      009823 cmd_exit:
-0x49bc 009824 jam 0 ,mem_hci_cmd 
-0x49bd 009825 rtn 
-:      009827 cmd_check_plap:
-0x49be 009828 fetch 6 ,mem_hci_plap 
-0x49bf 009829 fetcht 6 ,mem_plap 
-0x49c0 009830 isub temp ,null 
-0x49c1 009831 rtn 
-:      009834 cmd_check_handle:
-0x49c2 009835 fetch 1 ,mem_hci_conn_handle 
-0x49c3 009836 fetcht 1 ,mem_conn_handle 
-0x49c4 009837 isub temp ,pdata 
-0x49c5 009838 rtn 
-:      009840 cmd_accept_conn:
-0x49c6 009841 jam lmp_accepted ,mem_lmo_opcode2 
-0x49c7 009842 jam lmp_host_connection_req ,mem_lmi_opcode2 
-0x49c8 009843 call tid_set_reply 
-0x49c9 009844 branch cmd_exit 
-:      009846 cmd_accept_with_switch:
-0x49ca 009847 branch cmd_accept_sco_conn ,master 
-0x49cb 009848 set1 mark_accept_switch ,mark 
-:      009849 cmd_role_switch:
-0x49cc 009850 jam lmp_slot_offset ,mem_lmo_opcode2 
-0x49cd 009851 set1 mark_switch_initiated ,mark 
-0x49ce 009852 nbranch cmd_exit ,master 
-0x49cf 009853 jam lmp_switch_req ,mem_lmo_opcode2 
-0x49d0 009854 fetch 1 ,mem_connection_options 
-0x49d1 009855 set0 connection_switch ,pdata 
-0x49d2 009856 store 1 ,mem_connection_options 
-0x49d3 009857 branch cmd_exit 
-:      009860 cmd_namereq:
-0x49d4 009861 jam lmp_name_req ,mem_lmo_opcode2 
-0x49d5 009862 jam 0 ,mem_name_offset 
-0x49d6 009863 branch cmd_exit 
-:      009866 cmd_ssp:
-0x49d7 009867 jam sp_flag_commit ,mem_master_sp_flag 
-0x49d8 009868 jam sp_master_stat_start_skip ,mem_master_sp_state 
-0x49d9 009869 branch cmd_exit 
-:      009871 cmd_pair:
-0x49da 009872 fetch 1 ,mem_op 
-0x49db 009873 bbit1 op_inrand_req ,cmd_pair_passive 
-0x49dc 009874 call tid_initiate 
-0x49dd 009875 jam lmp_in_rand ,mem_lmo_opcode2 
-0x49de 009876 branch cmd_exit 
-:      009877 cmd_pair_passive:
-0x49df 009878 set0 op_inrand_req ,pdata 
-0x49e0 009879 store 1 ,mem_op 
-0x49e1 009880 call lmp_accept_inrand 
-0x49e2 009881 setarg 0 
-0x49e3 009882 setflag master ,smap_lmptid ,pdata 
-0x49e4 009883 store 1 ,mem_lmo_tid2 
-0x49e5 009884 branch cmd_exit 
-:      009886 cmd_nopair:
-0x49e6 009887 jam pairing_not_allowed ,mem_disconn_reason_send 
-0x49e7 009888 jam lmp_detach ,mem_lmo_opcode2 
-0x49e8 009889 fetch 1 ,mem_state 
-0x49e9 009890 bbit1 state_inconn ,cmd_exit 
-0x49ea 009891 force hci_error_pairing_not_allowed ,temp 
-0x49eb 009892 call hci_send_connection_error 
-0x49ec 009893 branch cmd_exit 
-:      009896 cmd_has_key:
-0x49ed 009897 call linkkey_set 
-0x49ee 009898 fetch 1 ,mem_op 
-0x49ef 009899 bbit1 op_auth_req ,cmd_send_aurand 
-0x49f0 009900 bbit1 op_send_sres ,cmd_send_sres 
-0x49f1 009901 bbit1 op_inrand_req ,cmd_pair_passive 
-0x49f2 009902 branch cmd_exit 
-:      009903 cmd_send_sres:
-0x49f3 009904 set0 op_send_sres ,pdata 
-0x49f4 009905 store 1 ,mem_op 
-0x49f5 009906 jam lmp_sres ,mem_lmo_opcode2 
-0x49f6 009907 branch cmd_exit 
-:      009909 cmd_no_key:
-0x49f7 009910 fetch 1 ,mem_op 
-0x49f8 009911 bbit1 op_send_sres ,cmd_no_key_reject 
-0x49f9 009912 call hci_send_pincode_req 
-0x49fa 009913 branch cmd_exit 
-:      009914 cmd_no_key_reject:
-0x49fb 009915 set0 op_send_sres ,pdata 
-0x49fc 009916 store 1 ,mem_op 
-0x49fd 009917 jam lmp_not_accepted ,mem_lmo_opcode2 
-0x49fe 009918 jam lmp_au_rand ,mem_lmi_opcode2 
-0x49ff 009919 jam key_missing ,mem_lmo_reason2 
-0x4a00 009920 branch cmd_exit 
-:      009923 cmd_auth:
-0x4a01 009924 fetch 1 ,mem_op 
-0x4a02 009925 set1 op_auth_req ,pdata 
-0x4a03 009926 store 1 ,mem_op 
-0x4a04 009927 fetch 1 ,mem_state 
-0x4a05 009928 bbit1 state_linkkey ,cmd_auth_sendaurand 
-0x4a06 009929 call hci_send_linkkey_req 
-0x4a07 009930 branch cmd_exit 
-:      009932 cmd_send_aurand:
-:      009933 cmd_auth_sendaurand:
-0x4a08 009934 call tid_initiate 
-0x4a09 009935 jam lmp_au_rand ,mem_lmo_opcode2 
-0x4a0a 009936 branch cmd_exit 
-:      009938 cmd_start_encrypt:
-0x4a0b 009939 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
-0x4a0c 009940 branch cmd_exit 
-:      009942 cmd_stop_encrypt:
-0x4a0d 009943 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
-0x4a0e 009944 branch cmd_exit 
-:      009946 cmd_feature_req:
-0x4a0f 009947 set0 mark_ext_patch ,mark 
-0x4a10 009948 bpatch patch1f_5 ,mem_patch1f 
-0x4a11 009949 jam lmp_features_req ,mem_lmo_opcode2 
-0x4a12 009950 jam hci_cmd_wait_remote_feature ,mem_hci_cmd 
-0x4a13 009951 rtn 
-:      009953 cmd_ext_feature_req:
-0x4a14 009954 jam lmp_ext_features_req ,mem_lmo_opcode2 
-0x4a15 009955 jam hci_cmd_wait_remote_ext_feature ,mem_hci_cmd 
-0x4a16 009956 rtn 
-:      009958 cmd_version_req:
-0x4a17 009959 jam lmp_version_req ,mem_lmo_opcode2 
-0x4a18 009960 branch cmd_exit 
-:      009962 cmd_in_sniff:
-0x4a19 009963 jam lmp_sniff_req ,mem_lmo_opcode2 
-0x4a1a 009964 arg mem_sniff_payload ,contw 
-0x4a1b 009965 setarg 0 
-0x4a1c 009966 isolate1 27 ,clke_bt 
-0x4a1d 009967 setflag true ,1 ,pdata 
-0x4a1e 009968 istore 1 ,contw 
-0x4a1f 009969 setarg 0 
-0x4a20 009970 istore 2 ,contw 
-0x4a21 009971 fetch 2 ,mem_sniff_param_interval 
-0x4a22 009972 istore 2 ,contw 
-0x4a23 009973 fetch 1 ,mem_sniff_param_attempt 
-0x4a24 009974 istore 2 ,contw 
-0x4a25 009975 fetch 1 ,mem_sniff_param_timeout 
-0x4a26 009976 istore 2 ,contw 
-0x4a27 009977 branch cmd_exit 
-:      009979 cmd_exit_sniff:
-0x4a28 009980 jam lmp_unsniff_req ,mem_lmo_opcode2 
-0x4a29 009981 branch cmd_exit 
-:      009983 cmd_setup_sco:
-0x4a2a 009984 call new_conn_handle 
-0x4a2b 009985 store 1 ,mem_sco_handle 
-0x4a2c 009986 fetch 1 ,mem_conn_handle 
-0x4a2d 009987 store 1 ,mem_sco_asso_handle 
-0x4a2e 009988 jam lmp_sco_link_req ,mem_lmo_opcode2 
-0x4a2f 009989 set1 mark_esco ,mark 
-0x4a30 009990 jam lmp_ext_esco_link_req ,mem_lmo_opcode2 
-0x4a31 009991 branch cmd_exit 
-:      009993 cmd_disconn:
-0x4a32 009994 call lmp_disconnect 
-0x4a33 009995 branch cmd_exit 
-:      009997 cmd_disconn_sco:
-0x4a34 009998 jam lmp_remove_sco_link_req ,mem_lmo_opcode2 
-0x4a35 009999 bmark0 mark_esco ,cmd_exit 
-0x4a36 010000 jam lmp_ext_remove_esco_req ,mem_lmo_opcode2 
-0x4a37 010001 branch cmd_exit 
-:      010003 cmd_accept_sco_conn:
-0x4a38 010004 branch cmd_accept_sco_conn_master ,master 
-0x4a39 010005 jam lmp_accepted ,mem_lmo_opcode2 
-0x4a3a 010006 jam lmp_sco_link_req ,mem_lmi_opcode2 
-0x4a3b 010007 bmark0 mark_esco ,cmd_exit 
-0x4a3c 010008 fetch 1 ,mem_esco_type 
-0x4a3d 010009 bne type_hv3 ,parse_lmpext_esco_link_req_change_param 
-0x4a3e 010010 jam lmp_ext_accepted ,mem_lmo_opcode2 
-0x4a3f 010011 jam lmp_ext_esco_link_req ,mem_lmi_opcode2 
-0x4a40 010012 branch cmd_exit 
-:      010013 cmd_accept_sco_conn_master:
-0x4a41 010014 call new_conn_handle 
-0x4a42 010015 store 1 ,mem_sco_handle 
-0x4a43 010016 fetch 1 ,mem_conn_handle 
-0x4a44 010017 store 1 ,mem_sco_asso_handle 
-0x4a45 010018 jam lmp_sco_link_req ,mem_lmo_opcode2 
-0x4a46 010019 bmark0 mark_esco ,cmd_exit 
-0x4a47 010020 branch parse_lmpext_esco_link_req_change_param 
-:      010023 cmd_role_discovery:
-0x4a48 010024 call hci_get_cmd_complete_ptr 
-0x4a49 010025 call hci_write_handle 
-0x4a4a 010026 force 0 ,pdata 
-0x4a4b 010027 nsetflag master ,0 ,pdata 
-0x4a4c 010028 istore 1 ,contwu 
-0x4a4d 010029 force 7 ,loopcnt 
-0x4a4e 010030 arg 0x809 ,alarm 
-0x4a4f 010031 call hci_command_complete 
-0x4a50 010032 branch cmd_exit 
-:      010034 cmd_io_cap:
-0x4a51 010035 jam lmp_io_cap_res ,mem_lmo_opcode2 
-0x4a52 010036 branch cmd_exit 
-:      010038 cmd_detach:
-0x4a53 010039 jam lmp_detach ,mem_lmo_opcode2 
-0x4a54 010040 jam other_end_terminated ,mem_disconn_reason_send 
-0x4a55 010041 branch cmd_exit 
-:      010046 process_hci_patch:
-0x4a56 010047 jam 0 ,mem_check_sum 
-0x4a57 010050 ifetch 1 ,contru 
-0x4a58 010051 store 1 ,mem_ucode_id_remote 
-0x4a59 010052 call hci_ucode_checksum_add 
-0x4a5a 010054 call push_stack 
-0x4a5b 010055 fetch 1 ,mem_ucode_id_remote 
-0x4a5c 010056 copy pdata ,temp 
-0x4a5d 010057 fetch 1 ,mem_ucode_id_local 
-0x4a5e 010058 increase 1 ,pdata 
-0x4a5f 010059 icompare 0xff ,temp 
-0x4a60 010060 nbranch hci_nak_ucode_with_stack ,true 
-0x4a61 010061 store 1 ,mem_ucode_id_local 
-0x4a62 010062 call pop_stack 
-0x4a63 010064 ifetch 1 ,contru 
-0x4a64 010065 beq 0x01 ,hci_enable_ucode_load 
-0x4a65 010066 beq 0x02 ,process_hci_ucode 
-0x4a66 010067 beq 0x03 ,hci_disable_ucode_load 
-0x4a67 010068 beq 0x05 ,process_hci_n_sched_data 
-0x4a68 010069 beq 0x06 ,hci_write_register 
-0x4a69 010070 beq 0x07 ,hci_read_register 
-0x4a6a 010071 beq 0x08 ,hci_enable_ucode 
-0x4a6b 010072 beq 0x09 ,hci_soft_branch 
-0x4a6c 010073 rtn 
-:      010074 hci_ucode_checksum_add:
-0x4a6d 010075 copy pdata ,temp 
-0x4a6e 010076 call push_stack 
-0x4a6f 010077 fetch 1 ,mem_check_sum 
-0x4a70 010078 iadd temp ,pdata 
-0x4a71 010079 store 1 ,mem_check_sum 
-0x4a72 010080 branch pop_stack 
-:      010083 hci_ack_ucode:
-0x4a73 010084 force 1 ,pdata 
-0x4a74 010085 call uart_send_byte 
-0x4a75 010086 fetch 1 ,mem_ucode_id_local 
-0x4a76 010087 branch uart_send_byte 
-:      010089 hci_nak_ucode_with_stack:
-0x4a77 010090 call pop_stack 
-0x4a78 010091 branch hci_nak_ucode_ucode_id 
-:      010092 hci_nak_ucode:
-0x4a79 010093 fetch 1 ,mem_ucode_id_local 
-0x4a7a 010094 increase -1 ,pdata 
-0x4a7b 010095 store 1 ,mem_ucode_id_local 
-:      010096 hci_nak_ucode_ucode_id:
-0x4a7c 010097 force 0 ,pdata 
-0x4a7d 010098 call uart_send_byte 
-0x4a7e 010099 fetch 1 ,mem_ucode_id_local 
-0x4a7f 010100 branch uart_send_byte 
-:      010102 hci_write_register:
-0x4a80 010103 call hci_ucode_checksum_add 
-0x4a81 010104 ifetch 1 ,contru 
-0x4a82 010105 store 1 ,mem_ucode_temp 
-0x4a83 010106 call hci_ucode_checksum_add 
-0x4a84 010107 ifetch 1 ,contru 
-0x4a85 010108 lshift8 pdata ,contw 
-0x4a86 010109 call hci_ucode_checksum_add 
-0x4a87 010110 fetch 1 ,mem_ucode_temp 
-0x4a88 010111 iadd contw ,contw 
-0x4a89 010112 ifetch 1 ,contru 
-0x4a8a 010113 istore 1 ,contw 
-0x4a8b 010114 call hci_ucode_checksum_add 
-0x4a8c 010115 ifetch 1 ,contru 
-0x4a8d 010116 call hci_ucode_checksum_add 
-0x4a8e 010117 fetch 1 ,mem_check_sum 
-0x4a8f 010118 bne 0xff ,hci_nak_ucode 
-0x4a90 010119 branch hci_ack_ucode 
-:      010121 hci_read_register:
-0x4a91 010122 call hci_ucode_checksum_add 
-0x4a92 010123 ifetch 1 ,contru 
-0x4a93 010124 store 1 ,mem_ucode_temp 
-0x4a94 010125 call hci_ucode_checksum_add 
-0x4a95 010126 ifetch 1 ,contru 
-0x4a96 010127 store 1 ,mem_ucode_temp1 
-0x4a97 010128 call hci_ucode_checksum_add 
-0x4a98 010129 ifetch 1 ,contru 
-0x4a99 010130 call hci_ucode_checksum_add 
-0x4a9a 010131 fetch 1 ,mem_check_sum 
-0x4a9b 010132 bne 0xff ,hci_nak_ucode 
-0x4a9c 010134 fetch 1 ,mem_ucode_temp1 
-0x4a9d 010135 lshift8 pdata ,temp 
-0x4a9e 010136 fetch 1 ,mem_ucode_temp 
-0x4a9f 010137 iadd temp ,contru 
-0x4aa0 010138 ifetch 1 ,contru 
-0x4aa1 010139 store 1 ,mem_ucode_temp 
-:      010140 hci_read_register_ack:
-0x4aa2 010141 force 1 ,pdata 
-0x4aa3 010142 call uart_send_byte 
-0x4aa4 010143 fetch 1 ,mem_ucode_temp 
-0x4aa5 010144 call uart_send_byte 
-0x4aa6 010145 jam 0xff ,mem_ucode_id_local 
-0x4aa7 010146 rtn 
-:      010148 hci_enable_ucode:
-0x4aa8 010149 call hci_ucode_checksum_add 
-0x4aa9 010150 ifetch 1 ,contru 
-0x4aaa 010151 call hci_ucode_checksum_add 
-0x4aab 010152 fetch 1 ,mem_check_sum 
-0x4aac 010153 bne 0xff ,hci_nak_ucode 
-0x4aad 010154 branch hci_ack_ucode 
-:      010156 process_hci_ucode:
-0x4aae 010157 call hci_ucode_checksum_add 
-0x4aaf 010158 ifetch 1 ,contru 
-0x4ab0 010159 hstore 1 ,core_ucode_low 
-0x4ab1 010160 call hci_ucode_checksum_add 
-0x4ab2 010161 ifetch 1 ,contru 
-0x4ab3 010162 set1 7 ,pdata 
-0x4ab4 010163 hstore 1 ,core_ucode_ctrl 
-0x4ab5 010164 set0 7 ,pdata 
-0x4ab6 010165 call hci_ucode_checksum_add 
-0x4ab7 010166 ifetch 1 ,contru 
-0x4ab8 010167 copy pdata ,loopcnt 
-0x4ab9 010168 call hci_ucode_checksum_add 
-:      010169 write_ucode_loop:
-0x4aba 010170 ifetch 1 ,contru 
-0x4abb 010171 hstore 1 ,core_ucode_data 
-0x4abc 010172 call hci_ucode_checksum_add 
-0x4abd 010173 loop write_ucode_loop 
-0x4abe 010174 ifetch 1 ,contru 
-0x4abf 010175 call hci_ucode_checksum_add 
-0x4ac0 010176 fetch 1 ,mem_check_sum 
-0x4ac1 010177 bne 0xff ,hci_nak_ucode 
-0x4ac2 010178 branch hci_ack_ucode 
-:      010180 process_hci_n_sched_data:
-0x4ac3 010181 call hci_ucode_checksum_add 
-0x4ac4 010182 ifetch 1 ,contru 
-0x4ac5 010183 store 1 ,mem_ucode_temp 
-0x4ac6 010184 call hci_ucode_checksum_add 
-0x4ac7 010185 ifetch 1 ,contru 
-0x4ac8 010186 lshift8 pdata ,contw 
-0x4ac9 010187 call hci_ucode_checksum_add 
-0x4aca 010188 fetch 1 ,mem_ucode_temp 
-0x4acb 010189 iadd contw ,contw 
-0x4acc 010190 ifetch 1 ,contru 
-0x4acd 010191 iforce loopcnt 
-0x4ace 010192 call hci_ucode_checksum_add 
-:      010193 process_hci_n_sched_loop:
-0x4acf 010194 ifetch 1 ,contru 
-0x4ad0 010195 istore 1 ,contw 
-0x4ad1 010196 call hci_ucode_checksum_add 
-0x4ad2 010197 loop process_hci_n_sched_loop 
-0x4ad3 010198 ifetch 1 ,contru 
-0x4ad4 010199 call hci_ucode_checksum_add 
-0x4ad5 010200 fetch 1 ,mem_check_sum 
-0x4ad6 010201 bne 0xff ,hci_nak_ucode 
-0x4ad7 010202 branch hci_ack_ucode 
-:      010206 hci_enable_ucode_load:
-0x4ad8 010207 call hci_ucode_checksum_add 
-0x4ad9 010208 ifetch 1 ,contru 
-0x4ada 010209 call hci_ucode_checksum_add 
-0x4adb 010210 fetch 1 ,mem_check_sum 
-0x4adc 010211 bne 0xff ,hci_nak_ucode 
-0x4add 010212 hjam 0x80 ,core_ucode_ctrl 
-0x4ade 010213 branch hci_ack_ucode 
-:      010215 hci_disable_ucode_load:
-0x4adf 010216 call hci_ucode_checksum_add 
-0x4ae0 010217 ifetch 1 ,contru 
-0x4ae1 010218 call hci_ucode_checksum_add 
-0x4ae2 010219 fetch 1 ,mem_check_sum 
-0x4ae3 010220 bne 0xff ,hci_nak_ucode 
-0x4ae4 010221 hjam 0 ,core_ucode_ctrl 
-0x4ae5 010222 branch hci_ack_ucode 
-:      010224 hci_soft_branch:
-0x4ae6 010225 call hci_ucode_checksum_add 
-0x4ae7 010226 ifetch 1 ,contru 
-0x4ae8 010227 call hci_ucode_checksum_add 
-0x4ae9 010228 fetch 1 ,mem_check_sum 
-0x4aea 010229 bne 0xff ,hci_nak_ucode 
-0x4aeb 010230 call hci_ack_ucode 
-0x4aec 010231 branch soft_reset 
-:      010234 hci_idle_dispatch:
-0x4aed 010235 call gpio_check_uart_state 
-0x4aee 010236 rtn true 
-0x4aef 010237 arg uart_wakeup_rx ,temp 
-0x4af0 010238 call gpio_get_bit 
-0x4af1 010239 nbranch uart_wake_up ,true 
-0x4af2 010240 jam hci_rx_wake ,mem_hci_lt_rx_state 
-0x4af3 010241 rtn 
-:      010242 uart_wake_up:
-0x4af4 010243 fetch 1 ,mem_hci_lt_rx_state 
-0x4af5 010244 rtnne hci_rx_wake 
-0x4af6 010245 call hci_exit_lpm 
-0x4af7 010246 branch hci_send_commu_ready_event 
-:      010260 hid_rx_process:
-0x4af8 010261 set1 mark_ext_patch ,mark 
-0x4af9 010262 bpatch patch33_4 ,mem_patch33 
-0x4afa 010263 fetch 2 ,mem_l2cap_payload_ptr 
-0x4afb 010264 copy pdata ,contr 
-0x4afc 010265 ifetch 1 ,contr 
-0x4afd 010266 and pdata ,0x0f ,temp 
-0x4afe 010267 rshift4 pdata ,pdata 
-0x4aff 010268 beq hid_type_set_idle ,hid_rx_process_handshake 
-0x4b00 010269 beq hid_type_set_protocol ,hid_rx_process_handshake 
-0x4b01 010270 beq hid_type_data ,hid_rx_process_data 
-0x4b02 010271 beq hid_type_set_report ,hid_rx_process_set_report 
-0x4b03 010272 beq hid_type_control ,hid_rx_process_hid_control 
-0x4b04 010273 rtn 
-:      010275 hid_rx_process_hid_control:
-0x4b05 010276 copy temp ,pdata 
-0x4b06 010277 beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
-0x4b07 010278 beq hid_control_p_suspend ,hid_rx_process_suspend 
-0x4b08 010279 rtn 
-:      010281 hid_rx_process_virtual_cable_unplug:
-0x4b09 010282 jam bt_evt_virtual_cable_unplug ,mem_fifo_temp 
-0x4b0a 010283 call ui_ipc_send_event 
-0x4b0b 010284 fetch 1 ,mem_device_option 
-0x4b0c 010285 rtnne dvc_op_mouse ,pdata 
-0x4b0d 010286 copy temp ,pdata 
-0x4b0e 010287 beq hid_control_p_virtualcableunplug ,eeprom_erase_reconn_info 
-0x4b0f 010288 rtn 
-:      010289 hid_rx_process_suspend:
-0x4b10 010290 rtn 
-:      010292 hid_rx_process_set_report:
-0x4b11 010293 arg 0x01 ,rega 
-0x4b12 010294 call hid_malloc_tx_buff 
-0x4b13 010295 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x4b14 010296 istore 2 ,contw 
-0x4b15 010297 setarg 0x00 
-0x4b16 010298 istore 1 ,contw 
-0x4b17 010299 rtn 
-:      010301 hid_rx_process_handshake:
-0x4b18 010302 arg 1 ,rega 
-0x4b19 010303 call hid_malloc_tx_buff 
-0x4b1a 010304 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x4b1b 010305 istore 2 ,contw 
-0x4b1c 010306 setarg 0 
-0x4b1d 010307 istore 1 ,contw 
-0x4b1e 010308 jam 1 ,mem_ui_data_txbuff_length 
-0x4b1f 010309 fetch 1 ,mem_hid_control_state 
-0x4b20 010310 set1 l2cap_channel_hid_handshake_done 
-0x4b21 010311 store 1 ,mem_hid_control_state 
-:      010312 hid_handshake_event:
-0x4b22 010313 jam bt_evt_hid_handshake ,mem_fifo_temp 
-0x4b23 010314 branch ui_ipc_send_event 
-:      010316 hid_rx_process_data:
-0x4b24 010317 ifetch 1 ,contr 
-0x4b25 010318 beq hid_report_id_kb ,hid_rx_process_data_hid_kb 
-0x4b26 010319 rtn 
-:      010321 hid_rx_process_data_hid_kb:
-0x4b27 010322 copy contr ,rega 
-0x4b28 010323 fetch 1 ,mem_device_option 
-0x4b29 010324 rtnne dvc_op_kb ,pdata 
-0x4b2a 010325 copy rega ,contr 
-0x4b2b 010326 branch kb_process_kb_report 
-:      010328 hid_malloc_tx_buff:
-0x4b2c 010329 call l2cap_malloc 
-0x4b2d 010330 copy rega ,temp 
-0x4b2e 010331 storet 1 ,mem_ui_data_txbuff_length 
-0x4b2f 010332 copy pdata ,contw 
-0x4b30 010333 copy rega ,pdata 
-0x4b31 010334 istore 2 ,contw 
-0x4b32 010335 rtn 
-:      010338 le_ir_init:
-0x4b33 010339 setarg le_ir 
-0x4b34 010340 store 2 ,mem_cb_le_process 
-0x4b35 010341 setarg le_ir_wcb 
-0x4b36 010342 store 2 ,mem_cb_att_write 
-0x4b37 010343 call eeprom_load_reconn_info 
-0x4b38 010344 call le_init_att 
-0x4b39 010345 hjam 158 ,core_pwm_ncnt0 
-0x4b3a 010346 hjam 8 ,core_gpio_sel1 
-0x4b3b 010347 hjam 5 ,core_gpio_out1 
-0x4b3c 010348 setarg -1 
-0x4b3d 010349 set0 1 ,pdata 
-0x4b3e 010350 set0 21 ,pdata 
-0x4b3f 010351 hstore 4 ,core_gpio_oe0 
-0x4b40 010352 hjam 2 ,core_gpio_pu0 
-0x4b41 010353 rtn wake 
-0x4b42 010354 jam 1 ,mem_le_adv_enable 
-0x4b43 010355 rtn 
-:      010358 le_ir_wcb:
-0x4b44 010359 ifetch 1 ,rega 
-0x4b45 010360 store 1 ,mem_ir_cmd 
-0x4b46 010361 beq ircmd_write_pulse ,le_ir_write_pulse 
-0x4b47 010362 beq ircmd_write_seq ,le_ir_write_seq 
-0x4b48 010363 beq ircmd_write_next ,le_ir_write_next 
-0x4b49 010364 beq ircmd_screen_on ,le_ir_screen_on 
-0x4b4a 010365 beq ircmd_screen_off ,le_ir_screen_off 
-0x4b4b 010366 rtnne ircmd_play 
-0x4b4c 010367 ifetch 1 ,contr 
-0x4b4d 010368 store 1 ,mem_ir_play_count 
-0x4b4e 010369 rtn 
-:      010371 le_ir_write_pulse:
-0x4b4f 010372 arg mem_ir_pulse_zero ,contw 
-0x4b50 010373 branch le_ir_write 
-:      010375 le_ir_write_seq:
-0x4b51 010376 arg mem_ir_sequence_len ,contw 
-0x4b52 010377 branch le_ir_write 
-:      010379 le_ir_write_next:
-0x4b53 010380 fetch 2 ,mem_ir_ptr 
-0x4b54 010381 iforce contw 
-:      010383 le_ir_write:
-0x4b55 010384 arg 19 ,loopcnt 
-0x4b56 010385 call memcpy 
-0x4b57 010386 deposit contw 
-0x4b58 010387 store 2 ,mem_ir_ptr 
-0x4b59 010388 jam 0 ,mem_ir_cmd 
-0x4b5a 010389 rtn 
-:      010393 le_ir:
-0x4b5b 010394 fetch 1 ,mem_ir_cmd 
-0x4b5c 010395 beq ircmd_record ,le_ir_start_record 
-0x4b5d 010396 beq ircmd_play ,le_ir_play 
-0x4b5e 010397 beq ircmd_report_pulse ,le_ir_report 
-0x4b5f 010398 beq ircmd_report_seq ,le_ir_report 
-0x4b60 010399 beq ircmd_report_raw ,le_ir_report 
-0x4b61 010400 beq ircmd_test_play ,le_ir_play 
-0x4b62 010401 beq ircmd_test_rec ,le_ir_rec 
-0x4b63 010402 rtn 
-:      010404 le_ir_screen_on:
-0x4b64 010405 jam 0 ,mem_lpm_mult 
-0x4b65 010406 jam 0 ,mem_ir_cmd 
-0x4b66 010407 rtn 
-:      010408 le_ir_screen_off:
-0x4b67 010409 jam 30 ,mem_lpm_mult 
-0x4b68 010410 jam 0 ,mem_ir_cmd 
-0x4b69 010411 rtn 
-:      010415 le_ir_rec:
-0x4b6a 010416 jam 0 ,mem_ir_cmd 
-0x4b6b 010417 arg 0xfffff ,stop_watch 
-0x4b6c 010418 call ir_record 
-0x4b6d 010419 rtn 
-:      010421 le_ir_next_anchor:
-0x4b6e 010422 fetcht 2 ,mem_le_tsniff 
-0x4b6f 010423 iadd temp ,pdata 
-0x4b70 010424 store 4 ,mem_le_anchor 
-:      010425 le_ir_start_record:
-0x4b71 010426 fetch 4 ,mem_le_anchor 
-0x4b72 010427 isub clke_bt ,pdata 
-0x4b73 010428 nbranch le_ir_next_anchor ,positive 
-0x4b74 010429 rshift pdata ,stop_watch 
-0x4b75 010430 call ir_record 
-0x4b76 010431 rtn blank 
-0x4b77 010432 jam ircmd_report_raw ,mem_ir_cmd 
-0x4b78 010433 arg mem_ir_record ,temp 
-0x4b79 010434 storet 2 ,mem_ir_ptr 
-:      010436 le_ir_report:
-0x4b7a 010437 call le_xtype_fifo_is_full 
-0x4b7b 010438 nrtn blank 
-0x4b7c 010439 jam notify_handle ,mem_le_notify_handle 
-0x4b7d 010440 jam attop_handle_value_notification ,mem_fifo_temp 
-0x4b7e 010441 call le_xtype_fifo_in 
-0x4b7f 010442 fetch 2 ,mem_le_notify_attr_start 
-0x4b80 010443 iforce contw 
-0x4b81 010444 fetch 2 ,mem_ir_ptr 
-0x4b82 010445 iforce contr 
-0x4b83 010446 arg 20 ,loopcnt 
-0x4b84 010447 call memcpy 
-0x4b85 010448 deposit contr 
-0x4b86 010449 store 2 ,mem_ir_ptr 
-0x4b87 010450 fetch 2 ,mem_ir_report_len 
-0x4b88 010451 increase -20 ,pdata 
-0x4b89 010452 store 2 ,mem_ir_report_len 
-0x4b8a 010453 rtn positive 
-0x4b8b 010454 jam 0 ,mem_ir_cmd 
-0x4b8c 010455 rtn 
-:      010458 le_ir_play:
-0x4b8d 010459 fetch 1 ,mem_ir_play_count 
-0x4b8e 010460 call ir_play 
-0x4b8f 010461 jam 0 ,mem_ir_cmd 
-0x4b90 010462 rtn 
-:      010465 ir_record:
-0x4b91 010466 call ir_receive 
-0x4b92 010467 setarg mem_ir_record 
-0x4b93 010468 isub contw ,pdata 
-0x4b94 010469 sub pdata ,0 ,pdata 
-0x4b95 010470 store 2 ,mem_ir_report_len 
-0x4b96 010471 rtn 
-:      010475 ir_receive:
-0x4b97 010476 disable swfine 
-0x4b98 010477 arg mem_ir_record ,contw 
-:      010478 ir_receive_waitsync:
-0x4b99 010479 rtn timeout 
-0x4b9a 010480 hfetch 1 ,core_gpio_in + 2 
-0x4b9b 010481 bbit0 5 ,ir_receive_waitsync 
-0x4b9c 010482 copy clkn ,temp 
-0x4b9d 010483 arg 0x80 ,loopcnt 
-0x4b9e 010484 call memset0 
-0x4b9f 010485 arg mem_ir_record ,contw 
-0x4ba0 010486 arg 0x0 ,regc 
-:      010487 ir_receive_loop:
-0x4ba1 010488 arg 180 ,stop_watch 
-:      010489 ir_receive_waitedge:
-0x4ba2 010490 rtn timeout 
-0x4ba3 010491 hfetch 1 ,core_gpio_in + 2 
-0x4ba4 010492 ixor regc ,pdata 
-0x4ba5 010493 bbit1 5 ,ir_receive_waitedge 
-0x4ba6 010494 copy clkn ,pdata 
-0x4ba7 010495 iforce alarm 
-0x4ba8 010496 call clk_diff_rt 
-0x4ba9 010497 sub pdata ,0xff ,null 
-0x4baa 010498 branch ir_receive_waitedge ,positive 
-0x4bab 010499 isolate0 5 ,regc 
-0x4bac 010500 setflag true ,23 ,pdata 
-0x4bad 010501 istore 3 ,contw 
-0x4bae 010502 rshift8 contw ,pdata 
-0x4baf 010503 rtneq mem_ir_record_max 
-0x4bb0 010504 copy alarm ,temp 
-0x4bb1 010505 xor_into 0x20 ,regc 
-0x4bb2 010506 branch ir_receive_loop 
-:      010510 ir_get_next_seq:
-0x4bb3 010511 branch ir_get_next_seq_saved ,user 
-0x4bb4 010512 branch ir_get_next_encoded ,user2 
-:      010513 ir_get_next_seq_fetch:
-0x4bb5 010514 arg mem_ir_sequence ,temp 
-0x4bb6 010515 fetch 1 ,mem_ir_sequence_len 
-0x4bb7 010516 iadd temp ,pdata 
-0x4bb8 010517 isub rega ,null 
-0x4bb9 010518 branch ir_get_next_seq_exit ,zero 
-0x4bba 010519 ifetch 1 ,rega 
-0x4bbb 010520 copy contr ,rega 
-0x4bbc 010521 bbit0 7 ,ir_get_next_cont 
-0x4bbd 010522 enable user2 
-0x4bbe 010523 and pdata ,0x7f ,regb 
-0x4bbf 010524 lshift3 rega ,rega 
-0x4bc0 010525 branch ir_get_next_encoded 
-:      010526 ir_get_next_cont:
-0x4bc1 010527 rshift4 pdata ,debug 
-0x4bc2 010528 and_into 0xf ,pdata 
-0x4bc3 010529 isub debug ,null 
-0x4bc4 010530 rtn zero 
-0x4bc5 010531 enable user 
-0x4bc6 010532 rtn 
-:      010533 ir_get_next_seq_saved:
-0x4bc7 010534 deposit debug 
-0x4bc8 010535 disable user 
-0x4bc9 010536 rtn 
-:      010537 ir_get_next_encoded:
-0x4bca 010538 deposit regb 
-0x4bcb 010539 branch ir_get_next_encoded_end ,blank 
-0x4bcc 010540 and rega ,0x7 ,queue 
-0x4bcd 010541 rshift3 rega ,contr 
-0x4bce 010542 ifetch 1 ,contr 
-0x4bcf 010543 increase 1 ,rega 
-0x4bd0 010544 increase -1 ,regb 
-0x4bd1 010545 qisolate0 pdata 
-0x4bd2 010546 fetch 1 ,mem_ir_pulse_zero 
-0x4bd3 010547 branch ir_get_next_cont ,true 
-0x4bd4 010548 fetch 1 ,mem_ir_pulse_one 
-0x4bd5 010549 branch ir_get_next_cont 
-:      010550 ir_get_next_encoded_end:
-0x4bd6 010551 disable user2 
-0x4bd7 010552 increase 7 ,rega 
-0x4bd8 010553 rshift3 rega ,rega 
-0x4bd9 010554 branch ir_get_next_seq_fetch 
-:      010555 ir_get_next_seq_exit:
-0x4bda 010556 setarg 0xff 
-0x4bdb 010557 rtn 
-:      010560 ir_get_pulse:
-0x4bdc 010561 lshift pdata ,contr 
-0x4bdd 010562 iadd contr ,pdata 
-0x4bde 010563 arg mem_ir_pulses ,contr 
-0x4bdf 010564 iadd contr ,contr 
-0x4be0 010565 ifetch 3 ,contr 
-0x4be1 010566 rtn 
-:      010569 ir_play:
-0x4be2 010570 enable swfine 
-0x4be3 010571 iforce loopcnt 
-:      010572 ir_play_nloop:
-0x4be4 010573 disable user 
-0x4be5 010574 disable user2 
-0x4be6 010575 arg mem_ir_sequence ,rega 
-:      010576 ir_play_loop:
-0x4be7 010577 call ir_get_next_seq 
-0x4be8 010578 beq 0xff ,ir_play_end 
-0x4be9 010579 call ir_get_pulse 
-0x4bea 010580 bbit0 23 ,ir_play_silence 
-0x4beb 010581 set0 23 ,pdata 
-0x4bec 010582 hjam 158 ,core_pwm_pcnt0 
-:      010583 ir_play_silence:
-0x4bed 010584 iforce stop_watch 
-0x4bee 010585 until null ,timeout 
-0x4bef 010586 hjam 0 ,core_pwm_pcnt0 
-0x4bf0 010587 branch ir_play_loop 
-:      010588 ir_play_end:
-0x4bf1 010589 loop ir_play_nloop 
-0x4bf2 010590 rtn 
-:      010596 le_kb_init:
-0x4bf3 010597 call kb_init_common 
-0x4bf4 010598 setarg kb_process_idle 
-0x4bf5 010599 store 2 ,mem_cb_idle_process 
-0x4bf6 010600 setarg kb_send_process 
-0x4bf7 010601 store 2 ,mem_cb_bt_process 
-0x4bf8 010602 setarg kb_process_bb_event 
-0x4bf9 010603 store 2 ,mem_cb_bb_event_process 
-0x4bfa 010604 setarg kb_process_lpm_before 
-0x4bfb 010605 store 2 ,mem_cb_before_lpm 
-0x4bfc 010606 setarg kb_discovery_timeout_sleep 
-0x4bfd 010607 store 2 ,mem_cb_discovry_timeout 
-0x4bfe 010608 setarg kb_before_hibernate 
-0x4bff 010609 store 2 ,mem_cb_before_hibernate 
-0x4c00 010610 setarg kb_wakeup_check 
-0x4c01 010611 store 2 ,mem_cb_check_wakelock 
-0x4c02 010612 rtn wake 
-0x4c03 010614 fetch 2 ,mem_ui_state_map 
-0x4c04 010615 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
-0x4c05 010616 call app_check_reconn_target 
-0x4c06 010617 branch kb_start_discovery ,blank 
-0x4c07 010618 call app_bt_stop_discovery 
-0x4c08 010619 branch app_bt_start_reconnect 
-:      010622 kb_init:
-0x4c09 010623 call kb_init_common 
-0x4c0a 010624 setarg kb_process_idle 
-0x4c0b 010625 store 2 ,mem_cb_idle_process 
-0x4c0c 010626 setarg kb_send_process 
-0x4c0d 010627 store 2 ,mem_cb_bt_process 
-0x4c0e 010628 setarg kb_process_bb_event 
-0x4c0f 010629 store 2 ,mem_cb_bb_event_process 
-0x4c10 010630 setarg kb_process_lpm_before 
-0x4c11 010631 store 2 ,mem_cb_before_lpm 
-0x4c12 010632 setarg kb_discovery_timeout_sleep 
-0x4c13 010633 store 2 ,mem_cb_discovry_timeout 
-0x4c14 010634 setarg kb_before_hibernate 
-0x4c15 010635 store 2 ,mem_cb_before_hibernate 
-0x4c16 010636 setarg kb_wakeup_check 
-0x4c17 010637 store 2 ,mem_cb_check_wakelock 
-0x4c18 010638 rtn wake 
-0x4c19 010640 jam 0 ,mem_sp_flag 
-0x4c1a 010641 jam 0 ,mem_master_sp_flag 
-0x4c1b 010643 fetch 2 ,mem_ui_state_map 
-0x4c1c 010644 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
-0x4c1d 010645 call app_check_reconn_target 
-0x4c1e 010646 branch kb_start_discovery ,blank 
-0x4c1f 010647 call app_bt_stop_discovery 
-0x4c20 010648 branch app_bt_start_reconnect 
-:      010652 kb_init_common:
-0x4c21 010653 set1 mark_ext_patch ,mark 
-0x4c22 010654 bpatch patch36_6 ,mem_patch36 
-0x4c23 010656 fetch 1 ,0x8140 
-0x4c24 010657 branch assert ,blank 
-0x4c25 010658 hjam 0 ,core_gpio_oe0 
-0x4c26 010659 hjam 0xff ,core_gpio_pu0 
-0x4c27 010661 hjam 0xff ,core_gpio_oe1 
-0x4c28 010662 hjam 0xff ,core_gpio_oe2 
-0x4c29 010663 hfetch 1 ,core_gpio_oe3 
-0x4c2a 010664 or_into 0x0f ,pdata 
-0x4c2b 010665 hstore 1 ,core_gpio_oe3 
-0x4c2c 010667 hjam 0x00 ,core_gpio_sel 
-0x4c2d 010668 hjam 0x00 ,core_gpio_sel1 
-0x4c2e 010669 hjam 0xff ,core_gpio_key0 
-0x4c2f 010670 hjam 0xFf ,core_gpio_key1 
-0x4c30 010671 hfetch 1 ,core_gpio_key2 
-0x4c31 010672 or_into 0x03 ,pdata 
-0x4c32 010673 hstore 1 ,core_gpio_key2 
-0x4c33 010674 hjam 0x00 ,core_kscn_rowmask 
-0x4c34 010675 setarg kb_kscan_col_1 
-0x4c35 010676 lshift3 pdata ,pdata 
-0x4c36 010677 add pdata ,kb_kscan_row_1 ,pdata 
-0x4c37 010678 hstore 1 ,core_kscn_rctc 
-0x4c38 010680 hfetch 1 ,core_config 
-0x4c39 010681 set1 2 ,pdata 
-0x4c3a 010682 hstore 1 ,core_config 
-0x4c3b 010683 hfetch 1 ,core_clkoff + 1 
-0x4c3c 010684 set0 1 ,pdata 
-0x4c3d 010685 hstore 1 ,core_clkoff + 1 
-0x4c3e 010686 hjam 0xd ,core_kscn_ksctrl 
-0x4c3f 010687 hjam 0xd3 ,core_kscn_m_debounce 
-0x4c40 010688 hjam 0 ,core_kscn_scancycle_timer_l 
-0x4c41 010689 hjam 0x31 ,core_kscn_scancycle_timer_h 
-0x4c42 010690 call lpm_disable_exen_output 
-0x4c43 010691 fetcht 1 ,mem_led_cap_gpio 
-0x4c44 010692 call gpio_config_output 
-0x4c45 010693 fetcht 1 ,mem_led_num_gpio 
-0x4c46 010694 call gpio_config_output 
-0x4c47 010695 fetcht 1 ,mem_led_scl_gpio 
-0x4c48 010696 call gpio_config_output 
-0x4c49 010697 rtn 
-:      010699 kb_process_kb_report:
-0x4c4a 010700 set1 mark_ext_patch ,mark 
-0x4c4b 010701 bpatch patch36_7 ,mem_patch36 
-0x4c4c 010702 ifetch 1 ,contr 
-0x4c4d 010703 copy pdata ,rega 
-0x4c4e 010704 fetcht 1 ,mem_led_num_gpio 
-0x4c4f 010705 isolate1 kb_num_lock_selected ,rega 
-0x4c50 010706 call gpio_out_flag 
-0x4c51 010707 fetcht 1 ,mem_led_cap_gpio 
-0x4c52 010708 isolate1 kb_caps_lock_selected ,rega 
-0x4c53 010709 call gpio_out_flag 
-0x4c54 010710 fetcht 1 ,mem_led_scl_gpio 
-0x4c55 010711 isolate1 kb_scroll_lock_selected ,rega 
-0x4c56 010712 call gpio_out_flag 
-0x4c57 010713 jam 1 ,mem_kb_rcv_led_data 
-0x4c58 010714 rtn 
-:      010717 kb_send_process:
-0x4c59 010719 call kb_kscan_check_if_empty 
-0x4c5a 010720 nrtn user 
-0x4c5b 010721 nrtn user2 
-0x4c5c 010723 fetch 1 ,mem_pincode_state 
-0x4c5d 010724 beq pincode_state_wait_pincode ,kb_pincode 
-0x4c5e 010725 fetch 1 ,mem_hid_interrupt_state 
-0x4c5f 010726 rtnne 0x3f 
-0x4c60 010728 arg 10 ,rega 
-0x4c61 010729 call hid_malloc_tx_buff 
-0x4c62 010730 fetch 2 ,mem_hid_int_remote_cid 
-0x4c63 010731 istore 2 ,contw 
-0x4c64 010732 setarg 0x01a1 
-0x4c65 010733 istore 2 ,contw 
-0x4c66 010734 fetch 8 ,mem_kb_state 
-0x4c67 010735 istore 8 ,contw 
-0x4c68 010736 rtn 
-:      010738 kb_pincode:
-0x4c69 010739 fetcht 1 ,mem_pin_length 
-0x4c6a 010740 setarg mem_pin 
-0x4c6b 010741 iadd temp ,contw 
-0x4c6c 010742 fetch 1 ,mem_kb_report_data 
-0x4c6d 010743 branch kb_pincode_rtn ,blank 
-0x4c6e 010744 beq kb_kcode_bksp ,kb_pincode_bksp 
-0x4c6f 010745 bne kb_kcode_enter ,kb_pincode_data 
-0x4c70 010746 storet 1 ,mem_pin_length 
-0x4c71 010747 branch app_bt_set_pincode 
-:      010749 kb_pincode_rtn:
-0x4c72 010750 storet 1 ,mem_pin_length 
-0x4c73 010751 rtn 
-:      010752 kb_pincode_bksp:
-0x4c74 010753 fetch 1 ,mem_pin_length 
-0x4c75 010754 rtn blank 
-0x4c76 010755 increase -1 ,pdata 
-0x4c77 010756 store 1 ,mem_pin_length 
-0x4c78 010757 arg mem_pin ,contw 
-0x4c79 010758 iadd contw ,contw 
-0x4c7a 010759 setarg 0 
-0x4c7b 010760 istore 1 ,contw 
-0x4c7c 010761 enable user2 
-0x4c7d 010762 branch kb_send_pin 
-:      010763 kb_pincode_data:
-0x4c7e 010764 sub pdata ,kb_kcode_1_m1 ,null 
-0x4c7f 010765 rtn positive 
-0x4c80 010766 arg 0x30 ,temp 
-0x4c81 010767 sub pdata ,kb_kcode_0 ,null 
-0x4c82 010768 nrtn positive 
-0x4c83 010769 branch kb_pincode_0 ,zero 
-0x4c84 010770 arg kb_kcode_1_m1 ,temp 
-0x4c85 010771 isub temp ,temp 
-0x4c86 010772 or_into 0x30 ,temp 
-:      010773 kb_pincode_0:
-0x4c87 010774 istoret 1 ,contw 
-0x4c88 010775 fetch 1 ,mem_pin_length 
-0x4c89 010776 increase 1 ,pdata 
-0x4c8a 010777 store 1 ,mem_pin_length 
-0x4c8b 010778 disable user2 
-0x4c8c 010779 branch kb_send_pin 
-:      010781 kb_send_pin:
-0x4c8d 010782 fetch 2 ,mem_hid_int_remote_cid 
-0x4c8e 010783 rtn blank 
-0x4c8f 010784 arg 3 ,rega 
-0x4c90 010785 call hid_malloc_tx_buff 
-0x4c91 010786 fetch 2 ,mem_hid_int_remote_cid 
-0x4c92 010787 istore 2 ,contw 
-0x4c93 010788 setarg 0xffa1 
-0x4c94 010789 istore 2 ,contw 
-0x4c95 010790 setarg 0 
-0x4c96 010791 setflag user2 ,0 ,pdata 
-0x4c97 010792 istore 1 ,contw 
-0x4c98 010793 rtn 
-:      010797 kb_kscan_check_if_empty:
-0x4c99 010798 disable user 
-0x4c9a 010799 disable user2 
-0x4c9b 010800 hfetch 1 ,core_kscn_kstat 
-0x4c9c 010801 rtnbit1 kb_kscan_stat_empty 
-:      010803 kb_kscan_check_ghost:
-0x4c9d 010804 hfetch 1 ,core_kscn_event_num 
-0x4c9e 010805 bbit1 kb_kscan_key_event_stat ,kb_kscan_process_event 
-0x4c9f 010806 hfetch 1 ,core_kscn_kstat 
-0x4ca0 010807 bbit0 kb_kscan_stat_ghost ,kb_kscan_process_event 
-0x4ca1 010808 hfetch 1 ,core_kscn_event 
-0x4ca2 010809 branch kb_kscan_check_if_empty 
-:      010811 kb_kscan_process_event:
-0x4ca3 010812 enable user 
-0x4ca4 010813 enable user2 
-0x4ca5 010814 hfetch 1 ,core_kscn_event_num 
-0x4ca6 010815 isolate0 kb_kscan_key_event_stat ,pdata 
-0x4ca7 010816 hfetch 1 ,core_kscn_event 
-0x4ca8 010817 arg mem_kb_map ,contr 
-0x4ca9 010818 iadd contr ,contr 
-0x4caa 010819 ifetch 1 ,contr 
-0x4cab 010820 bbit1 7 ,kb_kscan_read_statekey 
-0x4cac 010821 nbranch kb_kscan_release_a_key_data ,true 
-0x4cad 010822 disable user2 
-0x4cae 010823 iforce temp 
-0x4caf 010824 fetch 1 ,mem_kb_keys 
-0x4cb0 010825 sub pdata ,4 ,null 
-0x4cb1 010826 nrtn positive 
-0x4cb2 010827 copy pdata ,rega 
-0x4cb3 010828 arg 3 ,loopcnt 
-0x4cb4 010829 arg mem_kb_report_data ,contr 
-:      010830 kb_kscan_check_report_data:
-0x4cb5 010831 ifetch 1 ,contr 
-0x4cb6 010832 isub temp ,null 
-0x4cb7 010833 branch kb_kscan_check_if_empty ,zero 
-0x4cb8 010834 loop kb_kscan_check_report_data 
-:      010835 kb_kscan_store_a_key_data:
-0x4cb9 010836 copy rega ,pdata 
-0x4cba 010837 arg mem_kb_report_data ,contw 
-0x4cbb 010838 iadd contw ,contw 
-0x4cbc 010839 istoret 1 ,contw 
-0x4cbd 010840 increase 1 ,pdata 
-0x4cbe 010841 store 1 ,mem_kb_keys 
-0x4cbf 010842 hfetch 1 ,core_kscn_event_num 
-0x4cc0 010843 rshift3 pdata ,pdata 
-0x4cc1 010844 nbranch kb_kscan_check_nextevent ,blank 
-0x4cc2 010845 branch kb_kscan_prepare_send 
-:      010847 kb_kscan_check_nextevent:
-0x4cc3 010848 increase -1 ,pdata 
-0x4cc4 010849 branch kb_kscan_prepare_send ,zero 
-0x4cc5 010850 hfetch 1 ,core_kscn_event_num 
-0x4cc6 010851 and_into 0x01 ,pdata 
-0x4cc7 010852 beq kb_kscan_key_press ,kb_kscan_check_if_empty 
-0x4cc8 010853 beq kb_kscan_key_release ,kb_kscan_prepare_send 
-0x4cc9 010854 rtn 
-:      010855 kb_kscan_prepare_send:
-0x4cca 010856 enable user2 
-0x4ccb 010857 rtn 
-:      010859 kb_kscan_release_a_key_data:
-0x4ccc 010860 and pdata ,0xff ,temp 
-0x4ccd 010861 fetch 1 ,mem_kb_keys 
-0x4cce 010862 rtn blank 
-0x4ccf 010863 iforce loopcnt 
-0x4cd0 010864 arg mem_kb_report_data ,contr 
-:      010865 kb_kscan_find_same_key_data:
-0x4cd1 010866 ifetch 1 ,contr 
-0x4cd2 010867 isub temp ,null 
-0x4cd3 010868 branch kb_kscan_release_foundkey ,zero 
-0x4cd4 010869 loop kb_kscan_find_same_key_data 
-0x4cd5 010870 rtn 
-:      010871 kb_kscan_release_foundkey:
-0x4cd6 010872 add contr ,-1 ,contw 
-0x4cd7 010873 call memcpy 
-0x4cd8 010874 fetch 1 ,mem_kb_keys 
-0x4cd9 010875 increase -1 ,pdata 
-0x4cda 010876 store 1 ,mem_kb_keys 
-0x4cdb 010877 hfetch 1 ,core_kscn_event_num 
-0x4cdc 010878 rshift3 pdata ,pdata 
-0x4cdd 010879 nbranch kb_kscan_check_nextevent2 ,blank 
-0x4cde 010880 rtn 
-:      010882 kb_kscan_check_nextevent2:
-0x4cdf 010883 hfetch 1 ,core_kscn_event_num 
-0x4ce0 010884 and_into 0x01 ,pdata 
-0x4ce1 010885 beq kb_kscan_key_press ,kb_kscan_prepare_send 
-0x4ce2 010886 beq kb_kscan_key_release ,kb_kscan_check_if_empty 
-0x4ce3 010887 rtn 
-:      010889 kb_kscan_read_statekey:
-0x4ce4 010890 and pdata ,7 ,queue 
-0x4ce5 010891 fetch 1 ,mem_kb_state 
-0x4ce6 010892 qsetflag true ,pdata 
-0x4ce7 010893 store 1 ,mem_kb_state 
-0x4ce8 010894 rtn 
-:      010896 kb_clear_keys:
-0x4ce9 010897 setarg 0 
-0x4cea 010898 store 8 ,mem_kb_state 
-0x4ceb 010899 store 1 ,mem_kb_keys 
-0x4cec 010900 rtn 
-:      010902 kb_clean_kscan_fifo:
-0x4ced 010903 hfetch 1 ,core_kscn_event_num 
-0x4cee 010904 hfetch 1 ,core_kscn_event 
-0x4cef 010905 hfetch 1 ,core_kscn_kstat 
-0x4cf0 010906 bbit0 kb_kscan_stat_empty ,kb_clean_kscan_fifo 
-0x4cf1 010907 setarg 0xff 
-0x4cf2 010908 enable user 
-0x4cf3 010909 rtn 
-:      010911 le_keyboard:
-0x4cf4 010912 fetcht 2 ,mem_le_notify_handle 
-0x4cf5 010913 call le_att_check_notification_enable 
-0x4cf6 010914 rtnbit0 0 
-0x4cf7 010915 fetch 1 ,mem_le_switch_send_data 
-0x4cf8 010916 rtnbit0 0 
-0x4cf9 010917 call le_xtype_fifo_is_full 
-0x4cfa 010918 nrtn blank 
-0x4cfb 010919 call kb_kscan_check_if_empty 
-0x4cfc 010920 nrtn user 
-0x4cfd 010921 nrtn user2 
-:      010922 le_slave_keyboard_send_data:
-0x4cfe 010923 call app_lpm_wake_auto_lock 
-0x4cff 010924 jam 2 ,mem_lpm_mult 
-0x4d00 010925 fetcht 2 ,mem_le_notify_handle 
-0x4d01 010926 call le_att_get_handle_ptr 
-0x4d02 010927 add contr ,1 ,contw 
-0x4d03 010928 fetch 8 ,mem_kb_state 
-0x4d04 010929 istore 8 ,contw 
-0x4d05 010930 jam attop_handle_value_notification ,mem_fifo_temp 
-0x4d06 010931 call le_xtype_fifo_in 
-0x4d07 010932 fetch 1 ,mem_le_op 
-0x4d08 010933 bbit1 op_disconn ,loop 
-0x4d09 010934 rtn 
-:      010935 le_keyboard_process_bb_event:
-0x4d0a 010936 copy regc ,pdata 
-0x4d0b 010937 beq bt_evt_button_long_pressed ,le_keyboard_bb_event_discovery_btn 
-0x4d0c 010939 beq bt_evt_le_connected ,le_kb_connected 
-0x4d0d 010940 beq bt_evt_le_write_request ,le_kb_bb_event_write_request 
-0x4d0e 010941 beq bt_evt_le_enc_info ,le_kb_bb_event_enc_info 
-0x4d0f 010942 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
-0x4d10 010943 rtn 
-:      010944 le_kb_bb_event_enc_info:
-:      010945 le_kb_bb_event_write_request:
-0x4d11 010946 call app_lpm_mult_enable 
-0x4d12 010947 branch app_ble_start_write 
-:      010948 le_kb_connected:
-0x4d13 010949 call kb_clean_kscan_fifo 
-0x4d14 010950 branch kb_clear_keys 
-:      010952 le_keyboard_bb_event_discovery_btn:
-0x4d15 010953 call le_clean_att_list_handle_enable 
-0x4d16 010954 call app_ble_disconnect 
-0x4d17 010955 call app_ble_start_adv 
-0x4d18 010956 branch app_led_start_blink 
-:      010958 le_keyboard_bb_event_hud_ms:
-0x4d19 010959 fetch 1 ,mem_le_led_on_time 
-0x4d1a 010960 rtn blank 
-0x4d1b 010961 increase -1 ,pdata 
-0x4d1c 010962 store 1 ,mem_le_led_on_time 
-0x4d1d 010963 nrtn blank 
-0x4d1e 010964 fetch 1 ,mem_le_adv_type 
-0x4d1f 010965 rtn blank 
-0x4d20 010966 branch app_led_off 
-:      010969 kb_process_idle:
-0x4d21 010970 branch kb_pairing_button_check 
-:      010973 kb_wakeup_check:
-0x4d22 010974 hfetch 3 ,core_gpio_in 
-0x4d23 010975 copy pdata ,regb 
-0x4d24 010976 hfetch 1 ,core_gpio_in + 3 
-0x4d25 010977 and_into 0x0f ,pdata 
-0x4d26 010978 lshift16 pdata ,pdata 
-0x4d27 010979 lshift8 pdata ,pdata 
-0x4d28 010980 ior regb ,pdata 
-0x4d29 010981 fetcht 4 ,mem_kb_fast_wake_last 
-0x4d2a 010982 isub temp ,pdata 
-0x4d2b 010983 rtn blank 
-0x4d2c 010984 arg 0xbb ,regb 
-0x4d2d 010985 branch app_lpm_wake_auto_lock 
-:      010988 kb_pairing_button_check:
-0x4d2e 010989 fetch 1 ,mem_scan_mode 
-0x4d2f 010990 nrtn blank 
-0x4d30 010991 fetch 1 ,mem_app_handshake_flag 
-0x4d31 010992 nrtn blank 
-0x4d32 010993 fetch 1 ,mem_ui_button_timer 
-0x4d33 010994 rtn blank 
-0x4d34 010995 fetch 1 ,mem_ui_button_last_state 
-0x4d35 010996 nrtn blank 
-0x4d36 010997 branch app_enter_hibernate 
-:      010999 kb_process_bb_event:
-0x4d37 011000 copy regc ,pdata 
-0x4d38 011001 beq bt_evt_hid_connected ,kb_hid_connected 
-0x4d39 011002 beq bt_evt_pincode_req ,kb_process_pincode 
-0x4d3a 011003 beq bt_evt_hid_connected ,kb_bt_hid_handshake 
-0x4d3b 011004 beq bt_evt_button_long_pressed ,kb_bb_event_discovery_btn 
-0x4d3c 011005 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
-0x4d3d 011006 beq bt_evt_bb_connected ,kb_stop_discovery 
-0x4d3e 011007 beq bt_evt_bb_disconnected ,kb_bb_disconnected 
-0x4d3f 011009 beq bt_evt_reconn_failed ,kb_bb_event_reconn_failed 
-0x4d40 011010 beq bt_evt_reconn_page_timeout ,kb_bb_event_reconn_failed 
-0x4d41 011011 and pdata ,0x0f ,temp 
-0x4d42 011012 and_into bt_evt_timer_mask ,pdata 
-0x4d43 011013 beq bt_evt_timer_init ,kb_bb_event_timer 
-0x4d44 011014 rtn 
-:      011016 kb_bb_event_timer:
-0x4d45 011017 set1 mark_ext_patch ,mark 
-0x4d46 011018 bpatch patch37_0 ,mem_patch37 
-0x4d47 011019 storet 1 ,mem_app_evt_timer_count 
-:      011020 kb_bb_event_100ms_loop:
-0x4d48 011021 fetch 1 ,mem_app_evt_timer_count 
-0x4d49 011022 rtn blank 
-0x4d4a 011023 increase -1 ,pdata 
-0x4d4b 011024 store 1 ,mem_app_evt_timer_count 
-0x4d4c 011026 call kb_check_hid_handshake_timer 
-0x4d4d 011027 branch kb_bb_event_100ms_loop 
-:      011029 kb_bb_event_reconn_failed:
-0x4d4e 011030 fetch 2 ,mem_ui_state_map 
-0x4d4f 011031 bbit1 ui_state_btn_down ,kb_start_discovery 
-0x4d50 011032 branch app_bb_hibernate 
-:      011035 kb_bb_disconnected:
-0x4d51 011036 set1 mark_ext_patch ,mark 
-0x4d52 011037 bpatch patch37_1 ,mem_patch37 
-0x4d53 011038 call kb_bb_discon_clear_stack 
-0x4d54 011039 fetch app_disc_rsn_size ,mem_app_disconn_reason 
-0x4d55 011041 bbit1 app_disc_by_button ,app_disconn_reason_clear 
-0x4d56 011042 bbit1 app_disc_after_pairing ,kb_event_light_state_pairing 
-0x4d57 011043 bbit1 app_disc_after_reconn ,kb_event_light_state_reconn 
-0x4d58 011044 branch kb_start_discovery 
-:      011045 kb_bb_discon_clear_stack:
-0x4d59 011046 jam 0 ,mem_link_key_exists 
-0x4d5a 011047 jam 0 ,mem_ltk_exists 
-0x4d5b 011048 rtn 
-:      011050 kb_event_light_state_pairing:
-0x4d5c 011051 bbit1 app_disc_after_handshake ,app_bb_hibernate 
-0x4d5d 011052 bbit1 app_disc_after_sniff ,app_bb_hibernate 
-0x4d5e 011053 branch kb_start_discovery 
-:      011054 kb_event_light_state_reconn:
-0x4d5f 011055 fetch 2 ,mem_ui_state_map 
-0x4d60 011056 bbit1 ui_state_btn_down ,kb_start_discovery 
-0x4d61 011057 branch app_bb_hibernate 
-:      011061 kb_check_hid_handshake_timer:
-0x4d62 011062 fetch 1 ,mem_hid_handshake_timer_count 
-0x4d63 011063 rtn blank 
-0x4d64 011064 increase -1 ,pdata 
-0x4d65 011065 store 1 ,mem_hid_handshake_timer_count 
-0x4d66 011066 nrtn blank 
-0x4d67 011067 branch kb_bt_hid_handshake 
-:      011070 kb_bb_event_discovery_btn:
-0x4d68 011071 call kb_3_0_bb_event_discovery_btn 
-0x4d69 011072 branch kb_start_discovery 
-:      011074 kb_3_0_bb_event_discovery_btn:
-0x4d6a 011075 set1 mark_ext_patch ,mark 
-0x4d6b 011076 bpatch patch37_2 ,mem_patch37 
-0x4d6c 011077 fetch 2 ,mem_ui_state_map 
-0x4d6d 011078 isolate1 ui_state_bt_reconnect ,pdata 
-0x4d6e 011079 call app_bt_reconnect_cancel ,true 
-0x4d6f 011080 fetch 2 ,mem_discovery_timeout 
-0x4d70 011081 store 2 ,mem_discovery_timeout_timer_count 
-0x4d71 011082 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x4d72 011083 set1 app_disc_by_button ,pdata 
-0x4d73 011084 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x4d74 011085 fetch 2 ,mem_ui_state_map 
-0x4d75 011086 bbit1 ui_state_bt_connected ,app_bt_disconnect 
-0x4d76 011087 rtn 
-:      011090 kb_stop_discovery:
-0x4d77 011091 call app_bt_stop_discovery 
-0x4d78 011092 branch app_led_stop_blink 
-:      011094 kb_start_discovery:
-0x4d79 011095 call app_bt_start_discovery 
-0x4d7a 011096 branch app_led_start_blink 
-:      011098 kb_discovery_timeout_sleep:
-0x4d7b 011099 branch app_enter_hibernate 
-:      011101 kb_process_pincode:
-0x4d7c 011102 jam 0 ,mem_pin_length 
-0x4d7d 011103 rtn 
-:      011106 kb_before_hibernate:
-:      011108 kb_process_lpm_before:
-0x4d7e 011109 hjam 0x00 ,core_gpio_key0 
-0x4d7f 011110 hjam 0x00 ,core_gpio_key1 
-0x4d80 011111 hfetch 1 ,core_gpio_key2 
-0x4d81 011112 and_into 0xf0 ,pdata 
-0x4d82 011113 hstore 1 ,core_gpio_key2 
-0x4d83 011114 setarg 0x00 
-0x4d84 011115 store 4 ,mem_gpio_wakeup_high 
-0x4d85 011116 setarg 0xff 
-0x4d86 011117 fetcht 1 ,mem_ui_button_gpio 
-0x4d87 011118 copy temp ,queue 
-0x4d88 011119 qset1 pdata 
-0x4d89 011120 store 4 ,mem_gpio_wakeup_low 
-0x4d8a 011121 rtn 
-:      011123 kb_hid_connected:
-0x4d8b 011124 setarg hid_handshake_timeout 
-0x4d8c 011125 store 1 ,mem_hid_handshake_timer_count 
-0x4d8d 011126 call kb_clean_kscan_fifo 
-0x4d8e 011130 branch kb_clear_keys 
-:      011131 kb_bt_hid_handshake:
-0x4d8f 011132 set1 mark_ext_patch ,mark 
-0x4d90 011133 bpatch patch37_3 ,mem_patch37 
-0x4d91 011134 jam app_handshake_done ,mem_app_handshake_flag 
-0x4d92 011135 call app_lpm_mult_enable 
-0x4d93 011136 call app_bt_store_reconn_info 
-0x4d94 011138 setarg 0 
-0x4d95 011139 store 2 ,mem_discovery_timeout_timer_count 
-0x4d96 011140 store 1 ,mem_hid_handshake_timer_count 
-0x4d97 011141 branch app_bt_enter_sniff 
-:      011148 l2cap_init:
-0x4d98 011149 branch l2cap_init_wake ,wake 
-:      011150 l2cap_init_work:
-0x4d99 011151 setarg mem_l2cap_xmem_end 
-0x4d9a 011152 arg mem_l2cap_xmem_start ,contw 
-0x4d9b 011153 isub contw ,loopcnt 
-0x4d9c 011154 call clear_mem 
-:      011155 l2cap_init_wake:
-0x4d9d 011156 set1 mark_ext_patch ,mark 
-0x4d9e 011157 bpatch patch22_6 ,mem_patch22 
-0x4d9f 011158 setarg mem_sdp_mem_end 
-0x4da0 011159 arg mem_sdp_mem_start ,contw 
-0x4da1 011160 isub contw ,loopcnt 
-0x4da2 011161 call clear_mem 
-0x4da3 011162 setarg mem_l2cap_mem_end 
-0x4da4 011163 arg mem_l2cap_mem_start ,contw 
-0x4da5 011164 isub contw ,loopcnt 
-0x4da6 011165 call clear_mem 
-0x4da7 011166 branch l2cap_lpm_load_txbuf 
-:      011168 process_rx_l2cap_pkt:
-0x4da8 011169 set1 mark_ext_patch ,mark 
-0x4da9 011170 bpatch patch22_7 ,mem_patch22 
-0x4daa 011171 copy contr ,temp 
-0x4dab 011174 copy temp ,contr 
-0x4dac 011175 ifetch 2 ,contr 
-0x4dad 011176 store 2 ,mem_l2cap_rx_pkt_length 
-0x4dae 011177 ifetch 2 ,contr 
-0x4daf 011178 store 2 ,mem_l2cap_rx_cid 
-0x4db0 011179 deposit contr 
-0x4db1 011180 store 2 ,mem_l2cap_payload_ptr 
-0x4db2 011181 fetch 1 ,memui_reconnect_mode 
-0x4db3 011182 beq no_reconnection ,l2cap_rx_multiplexing 
-0x4db4 011183 branch ml2cap_rx_multiplexing 
-:      011185 l2cap_rx_multiplexing:
-0x4db5 011186 set1 mark_ext_patch ,mark 
-0x4db6 011187 bpatch patch23_0 ,mem_patch23 
-0x4db7 011188 fetch 2 ,mem_l2cap_rx_pkt_length 
-0x4db8 011189 branch l2cap_rx_reset_state ,blank 
-0x4db9 011190 fetch 1 ,mem_l2cap_rx_cid 
-0x4dba 011191 beq l2cap_signal_channel ,l2cap_call_proc_signal 
-:      011192 l2cap_rx_multiplexing0:
-0x4dbb 011193 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
-0x4dbc 011194 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
-0x4dbd 011195 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
-0x4dbe 011196 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
-0x4dbf 011197 branch l2cap_rx_reset_state 
-:      011199 l2cap_call_proc_signal:
-0x4dc0 011200 call l2cap_malloc_is_fifo_full 
-0x4dc1 011201 nrtn blank 
-0x4dc2 011202 jam 0 ,mem_l2cap_pending_item 
-:      011203 l2cap_call_proc_signal0:
-0x4dc3 011204 call l2cap_malloc_signal_channel 
-0x4dc4 011205 call l2cap_process_signal_pkt 
-0x4dc5 011206 fetcht 2 ,mem_l2cap_signal_tx_length 
-0x4dc6 011207 branch l2cap_call_proc_no_reply ,blank 
-0x4dc7 011208 call l2cap_get_signal_tx_buff 
-0x4dc8 011209 fetch 2 ,mem_l2cap_signal_tx_length 
-0x4dc9 011210 istore 2 ,contw 
-0x4dca 011211 force l2cap_signal_channel ,pdata 
-0x4dcb 011212 istore 2 ,contw 
-0x4dcc 011213 branch l2cap_rx_reset_state 
-:      011215 l2cap_call_proc_sigal_pending:
-0x4dcd 011216 fetch 1 ,mem_device_option 
-0x4dce 011217 rtneq dvc_op_hci 
-0x4dcf 011218 fetch 1 ,mem_l2cap_pending_item 
-0x4dd0 011219 rtn blank 
-0x4dd1 011220 copy pdata ,rega 
-0x4dd2 011221 fetch 4 ,mem_l2cap_sdpres_delay_time 
-0x4dd3 011222 arg 0x100 ,temp 
-0x4dd4 011223 iadd temp ,temp 
-0x4dd5 011224 copy clkn_bt ,pdata 
-0x4dd6 011225 isub temp ,null 
-0x4dd7 011226 nrtn positive 
-0x4dd8 011227 jam 0 ,mem_l2cap_pending_item 
-0x4dd9 011228 copy rega ,pdata 
-0x4dda 011229 beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
-0x4ddb 011230 branch assert 
-:      011231 l2cap_sdp_conn_succ:
-0x4ddc 011232 call l2cap_malloc_signal_channel 
-0x4ddd 011233 call restore_l2cap_req_param 
-0x4dde 011234 call l2cap_get_signal_tx_payload 
-0x4ddf 011235 call save_cont_pointers 
-0x4de0 011236 call send_connection_sdp_res 
-0x4de1 011237 call l2cap_get_signal_tx_buff 
-0x4de2 011239 setarg 0x000c 
-0x4de3 011240 istore 2 ,contw 
-0x4de4 011241 force l2cap_signal_channel ,pdata 
-0x4de5 011242 istore 2 ,contw 
-0x4de6 011243 branch l2cap_rx_reset_state 
-:      011245 l2cap_call_proc_sdp:
-0x4de7 011246 call l2cap_malloc_is_fifo_empty 
-0x4de8 011247 nrtn blank 
-0x4de9 011248 call l2cap_malloc_sdp_channel 
-0x4dea 011249 call sdp_process 
-0x4deb 011250 call l2cap_get_sdp_tx_buff 
-0x4dec 011251 fetch 2 ,mem_sdp_tx_pkt_length 
-0x4ded 011252 branch l2cap_call_proc_no_reply ,blank 
-0x4dee 011253 istore 2 ,contw 
-0x4def 011254 fetch 2 ,mem_sdp_remote_cid 
-0x4df0 011255 istore 2 ,contw 
-0x4df1 011256 branch l2cap_rx_reset_state 
-:      011258 l2cap_call_proc_hid:
-0x4df2 011259 call hid_rx_process 
-0x4df3 011260 branch l2cap_rx_reset_state 
-:      011262 l2cap_call_proc_rfcomm:
-0x4df4 011263 set1 mark_ext_patch ,mark 
-0x4df5 011264 bpatch patch23_1 ,mem_patch23 
-0x4df6 011265 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
-0x4df7 011266 call rfcomm_rx_process 
-0x4df8 011267 fetch 1 ,mem_rfcomm_malloc_fail_flag 
-0x4df9 011268 rtneq rfcomm_malloc_fail 
-0x4dfa 011269 branch l2cap_rx_reset_state 
-:      011270 l2cap_call_proc_no_reply:
-0x4dfb 011271 call l2cap_malloc_discard 
-:      011273 l2cap_rx_reset_state:
-0x4dfc 011274 setarg 0 
-0x4dfd 011275 store 2 ,mem_l2cap_rx_pkt_length 
-0x4dfe 011276 store 2 ,mem_l2cap_rx_cid 
-0x4dff 011277 jam l2cap_rx_done ,mem_l2cap_rx_done 
-0x4e00 011278 rtn 
-:      011280 l2cap_process_signal_pkt:
-0x4e01 011281 set1 mark_ext_patch ,mark 
-0x4e02 011282 bpatch patch23_2 ,mem_patch23 
-0x4e03 011283 call l2cap_get_signal_tx_payload 
-0x4e04 011284 force 0 ,regb 
-0x4e05 011285 fetch 2 ,mem_l2cap_rx_pkt_length 
-0x4e06 011286 copy pdata ,regc 
-0x4e07 011287 fetch 2 ,mem_l2cap_payload_ptr 
-0x4e08 011288 iforce contr 
-:      011289 l2cap_process_signal_pkt_loop:
-0x4e09 011290 call l2cap_process_one_signal 
-0x4e0a 011291 deposit regc 
-0x4e0b 011292 increase -4 ,regc 
-0x4e0c 011293 increase -4 ,pdata 
-0x4e0d 011294 nbranch l2cap_process_signal_pkt_loop ,blank 
-0x4e0e 011295 copy regb ,pdata 
-0x4e0f 011296 store 2 ,mem_l2cap_signal_tx_length 
-0x4e10 011297 rtn 
-:      011299 l2cap_process_one_signal:
-0x4e11 011300 set1 mark_ext_patch ,mark 
-0x4e12 011301 bpatch patch23_3 ,mem_patch23 
-0x4e13 011302 ifetch 1 ,contr 
-0x4e14 011303 beq signal_cmd_reject ,l2cap_proc_signal_cmd_reject 
-0x4e15 011304 beq signal_connect_req ,l2cap_proc_signal_connect_req 
-0x4e16 011305 beq signal_connect_rsp ,l2cap_proc_signal_connect_rsp 
-0x4e17 011306 beq signal_config_req ,l2cap_proc_signal_config_req 
-0x4e18 011307 beq signal_config_rsp ,l2cap_proc_signal_config_rsp 
-0x4e19 011308 beq signal_disconnect_req ,l2cap_proc_signal_disconnect_req 
-0x4e1a 011309 beq signal_disconnect_rsp ,l2cap_proc_signal_disconnect_rsp 
-0x4e1b 011310 beq signal_echo_req ,l2cap_proc_signal_echo_req 
-0x4e1c 011311 beq signal_echo_rsp ,l2cap_proc_signal_echo_rsp 
-0x4e1d 011312 beq signal_info_req ,l2cap_proc_signal_info_req 
-0x4e1e 011313 beq signal_info_rsp ,l2cap_proc_signal_info_rsp 
-0x4e1f 011314 call l2cap_reject_command 
-:      011315 l2cap_process_one_signal_rtn:
-0x4e20 011316 rtn 
-:      011318 l2cap_proc_signal_info_req:
-0x4e21 011319 ifetch 1 ,contr 
-0x4e22 011320 copy pdata ,queue 
-0x4e23 011321 ifetch 2 ,contr 
-0x4e24 011322 copy pdata ,rega 
-0x4e25 011323 copy regc ,pdata 
-0x4e26 011324 isub rega ,regc 
-0x4e27 011325 copy rega ,pdata 
-0x4e28 011326 iadd contr ,contr 
-0x4e29 011327 setarg 0x0b 
-0x4e2a 011328 istore 1 ,contw 
-0x4e2b 011329 copy queue ,pdata 
-0x4e2c 011330 istore 1 ,contw 
-0x4e2d 011331 force 0x0008 ,pdata 
-0x4e2e 011332 istore 2 ,contw 
-0x4e2f 011333 force 0x0002 ,pdata 
-0x4e30 011334 istore 2 ,contw 
-0x4e31 011335 force 0x0000 ,pdata 
-0x4e32 011336 istore 2 ,contw 
-0x4e33 011337 force 0x0400 ,pdata 
-0x4e34 011338 istore 2 ,contw 
-0x4e35 011339 force 0x0000 ,pdata 
-0x4e36 011340 istore 2 ,contw 
-0x4e37 011341 force 12 ,pdata 
-0x4e38 011342 iadd regb ,regb 
-0x4e39 011343 branch l2cap_process_one_signal_rtn 
-:      011345 ml2cap_proc_signal_info_req:
-0x4e3a 011346 ifetch 1 ,contr 
-0x4e3b 011347 copy pdata ,queue 
-0x4e3c 011348 ifetch 2 ,contr 
-0x4e3d 011349 copy pdata ,rega 
-0x4e3e 011350 copy regc ,pdata 
-0x4e3f 011351 isub rega ,regc 
-0x4e40 011352 copy rega ,pdata 
-0x4e41 011353 iadd contr ,contr 
-0x4e42 011354 call l2cap_get_signal_tx_payload 
-0x4e43 011355 setarg 0x0b 
-0x4e44 011356 istore 1 ,contw 
-0x4e45 011357 copy queue ,pdata 
-0x4e46 011358 istore 1 ,contw 
-0x4e47 011359 force 0x0008 ,pdata 
-0x4e48 011360 istore 2 ,contw 
-0x4e49 011361 force 0x0002 ,pdata 
-0x4e4a 011362 istore 2 ,contw 
-0x4e4b 011363 force 0x0000 ,pdata 
-0x4e4c 011364 istore 2 ,contw 
-0x4e4d 011365 force 0x0400 ,pdata 
-0x4e4e 011366 istore 2 ,contw 
-0x4e4f 011367 force 0x0000 ,pdata 
-0x4e50 011368 istore 2 ,contw 
-0x4e51 011369 force 12 ,pdata 
-0x4e52 011370 iadd regb ,regb 
-0x4e53 011372 branch l2cap_process_one_signal_rtn 
-:      011376 l2cap_proc_signal_cmd_reject:
-0x4e54 011377 ifetch 1 ,contr 
-0x4e55 011378 copy pdata ,queue 
-0x4e56 011379 ifetch 2 ,contr 
-0x4e57 011380 copy pdata ,rega 
-0x4e58 011381 iadd contr ,contr 
-0x4e59 011382 copy regc ,pdata 
-0x4e5a 011383 isub rega ,regc 
-:      011384 l2cap_proc_signal_cmd_reject_rtn:
-0x4e5b 011385 branch l2cap_process_one_signal_rtn 
-:      011387 l2cap_proc_signal_connect_req:
-0x4e5c 011388 call save_cont_pointers 
-0x4e5d 011391 call load_cont_pointers 
-0x4e5e 011392 arg 0 ,debug 
-0x4e5f 011393 ifetch 1 ,contr 
-0x4e60 011394 copy pdata ,queue 
-0x4e61 011395 ifetch 2 ,contr 
-0x4e62 011396 copy pdata ,rega 
-0x4e63 011397 ifetch 2 ,contr 
-0x4e64 011398 copy pdata ,temp 
-0x4e65 011399 ifetch 2 ,contr 
-0x4e66 011400 copy pdata ,timeup 
-0x4e67 011401 copy temp ,pdata 
-0x4e68 011402 beq psm_sdp ,l2cap_proc_signal_connect_req_sdp 
-0x4e69 011403 beq psm_rfcomm ,l2cap_proc_signal_connect_req_rfcomm 
-0x4e6a 011404 beq psm_hid_control ,l2cap_proc_signal_connect_req_hid_ctrl 
-0x4e6b 011405 beq psm_hid_interrupt ,l2cap_proc_signal_connect_req_hid_int 
-0x4e6c 011406 call l2cap_reject_command 
-0x4e6d 011407 branch l2cap_proc_signal_connect_req_rtn 
-:      011409 l2cap_proc_signal_connect_req_sdp:
-0x4e6e 011410 call save_cont_pointers 
-0x4e6f 011411 arg l2cap_sdp_channel ,temp 
-0x4e70 011412 fetch 2 ,mem_sdp_remote_cid 
-0x4e71 011413 nbranch already_connected ,blank 
-0x4e72 011414 copy timeup ,pdata 
-0x4e73 011415 store 2 ,mem_sdp_remote_cid 
-0x4e74 011416 copy clkn_bt ,pdata 
-0x4e75 011417 store 4 ,mem_l2cap_sdpres_delay_time 
-0x4e76 011418 call store_l2cap_req_param 
-0x4e77 011419 branch send_connection_pending 
-:      011421 store_l2cap_req_param:
-0x4e78 011422 storet 2 ,mem_psm 
-0x4e79 011423 deposit timeup 
-0x4e7a 011424 store 2 ,mem_scid 
-0x4e7b 011425 deposit rega 
-0x4e7c 011426 store 2 ,mem_cmd_length 
-0x4e7d 011427 deposit regb 
-0x4e7e 011428 store 2 ,mem_tt2 
-0x4e7f 011429 deposit regc 
-0x4e80 011430 store 2 ,mem_tt3 
-0x4e81 011431 deposit queue 
-0x4e82 011432 store 2 ,mem_id 
-0x4e83 011433 rtn 
-:      011435 restore_l2cap_req_param:
-0x4e84 011436 fetcht 2 ,mem_psm 
-0x4e85 011437 fetch 2 ,mem_scid 
-0x4e86 011438 copy pdata ,timeup 
-0x4e87 011439 fetch 2 ,mem_cmd_length 
-0x4e88 011440 copy pdata ,rega 
-0x4e89 011441 fetch 2 ,mem_tt2 
-0x4e8a 011442 copy pdata ,regb 
-0x4e8b 011443 fetch 2 ,mem_tt3 
-0x4e8c 011444 copy pdata ,regc 
-0x4e8d 011445 fetch 2 ,mem_id 
-0x4e8e 011446 copy pdata ,queue 
-0x4e8f 011447 rtn 
-:      011449 l2cap_proc_signal_connect_req_rfcomm:
-0x4e90 011450 call save_cont_pointers 
-0x4e91 011451 setarg l2cap_rfcomm_channel 
-0x4e92 011452 arg l2cap_rfcomm_channel ,temp 
-0x4e93 011453 fetch 2 ,mem_rfcomm_remote_cid 
-0x4e94 011454 nbranch already_connected ,blank 
-0x4e95 011455 copy timeup ,pdata 
-0x4e96 011456 store 2 ,mem_rfcomm_remote_cid 
-0x4e97 011457 fetch 1 ,mem_rfcomm_state 
-0x4e98 011458 set1 l2cap_channel_state_conn_req ,pdata 
-0x4e99 011459 set1 l2cap_channel_state_conn_res ,pdata 
-0x4e9a 011460 store 1 ,mem_rfcomm_state 
-0x4e9b 011461 branch send_connection_res 
-:      011462 l2cap_proc_signal_connect_req_hid_ctrl:
-0x4e9c 011463 call save_cont_pointers 
-0x4e9d 011464 arg l2cap_hid_control_channel ,temp 
-0x4e9e 011465 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x4e9f 011466 nbranch already_connected ,blank 
-0x4ea0 011467 copy timeup ,pdata 
-0x4ea1 011468 store 2 ,mem_hid_ctrl_remote_cid 
-0x4ea2 011469 fetch 1 ,mem_hid_control_state 
-0x4ea3 011470 set1 l2cap_channel_state_conn_req ,pdata 
-0x4ea4 011471 set1 l2cap_channel_state_conn_res ,pdata 
-0x4ea5 011472 store 1 ,mem_hid_control_state 
-0x4ea6 011473 branch send_connection_res 
-:      011474 l2cap_proc_signal_connect_req_hid_int:
-0x4ea7 011475 call save_cont_pointers 
-0x4ea8 011476 deposit clke 
-0x4ea9 011477 arg l2cap_hid_interrupt_channel ,temp 
-0x4eaa 011478 fetch 2 ,mem_hid_int_remote_cid 
-0x4eab 011479 nbranch already_connected ,blank 
-0x4eac 011480 copy timeup ,pdata 
-0x4ead 011481 store 2 ,mem_hid_int_remote_cid 
-0x4eae 011482 fetch 1 ,mem_hid_interrupt_state 
-0x4eaf 011483 set1 l2cap_channel_state_conn_req ,pdata 
-0x4eb0 011484 set1 l2cap_channel_state_conn_res ,pdata 
-0x4eb1 011485 store 1 ,mem_hid_interrupt_state 
-0x4eb2 011486 branch send_connection_res 
-:      011488 send_connection_pending:
-0x4eb3 011489 setarg l2cap_connect_pending 
-0x4eb4 011490 store 2 ,meml2cap_t1 
-0x4eb5 011491 jam l2cap_sdp_channel ,mem_l2cap_pending_item 
-0x4eb6 011492 branch send_connection_res0 
-:      011493 send_connection_sdp_res:
-0x4eb7 011494 fetch 1 ,mem_sdp_state 
-0x4eb8 011495 set1 l2cap_channel_state_conn_req ,pdata 
-0x4eb9 011496 set1 l2cap_channel_state_conn_res ,pdata 
-0x4eba 011497 store 1 ,mem_sdp_state 
-:      011498 send_connection_res:
-0x4ebb 011499 setarg l2cap_connect_successful 
-0x4ebc 011500 store 2 ,meml2cap_t1 
-:      011501 send_connection_res0:
-0x4ebd 011502 set1 mark_ext_patch ,mark 
-0x4ebe 011503 bpatch patch23_4 ,mem_patch23 
-0x4ebf 011504 call load_cont_pointers 
-0x4ec0 011505 setarg signal_connect_rsp 
-0x4ec1 011506 istore 1 ,contw 
-0x4ec2 011507 copy queue ,pdata 
-0x4ec3 011508 istore 1 ,contw 
-0x4ec4 011509 setarg 0x0008 
-0x4ec5 011510 istore 2 ,contw 
-0x4ec6 011511 copy temp ,pdata 
-0x4ec7 011512 istore 2 ,contw 
-0x4ec8 011513 copy timeup ,pdata 
-0x4ec9 011514 istore 2 ,contw 
-0x4eca 011515 fetch 2 ,meml2cap_t1 
-0x4ecb 011516 beq l2cap_connect_pending ,connect_pending 
-0x4ecc 011517 isolate0 0 ,debug 
-0x4ecd 011518 branch connect_suc ,true 
-0x4ece 011519 setarg l2cap_connect_refused_no_resources 
-:      011520 connect_suc:
-0x4ecf 011521 istore 2 ,contw 
-0x4ed0 011522 force 0x0000 ,pdata 
-0x4ed1 011523 istore 2 ,contw 
-0x4ed2 011524 setarg 12 
-0x4ed3 011525 branch connect_req_update_byte_counts 
-:      011526 connect_pending:
-0x4ed4 011527 istore 2 ,contw 
-0x4ed5 011528 force 0x0002 ,pdata 
-0x4ed6 011529 istore 2 ,contw 
-0x4ed7 011530 setarg 12 
-0x4ed8 011531 branch connect_req_update_byte_counts 
-:      011533 already_connected:
-0x4ed9 011534 set1 0 ,debug 
-0x4eda 011535 branch send_connection_res 
-:      011536 connect_req_update_byte_counts:
-0x4edb 011537 iadd regb ,regb 
-0x4edc 011538 copy regc ,pdata 
-0x4edd 011539 isub rega ,regc 
-0x4ede 011540 branch l2cap_proc_signal_connect_req_rtn 
-:      011541 l2cap_proc_signal_connect_req_rtn:
-0x4edf 011542 branch l2cap_process_one_signal_rtn 
-:      011544 l2cap_proc_signal_connect_rsp:
-0x4ee0 011545 ifetch 1 ,contr 
-0x4ee1 011546 copy pdata ,queue 
-0x4ee2 011547 ifetch 2 ,contr 
-0x4ee3 011548 copy pdata ,rega 
-0x4ee4 011549 copy regc ,pdata 
-0x4ee5 011550 isub rega ,regc 
-0x4ee6 011551 ifetch 2 ,contr 
-0x4ee7 011552 copy pdata ,timeup 
-0x4ee8 011553 ifetch 2 ,contr 
-0x4ee9 011554 copy pdata ,temp 
-0x4eea 011555 setarg l2cap_sdp_channel 
-0x4eeb 011556 isub temp ,null 
-0x4eec 011557 branch l2cap_proc_signal_connect_rsp_sdp ,zero 
-0x4eed 011558 setarg l2cap_rfcomm_channel 
-0x4eee 011559 isub temp ,null 
-0x4eef 011560 branch l2cap_proc_signal_connect_rsp_rfcomm ,zero 
-0x4ef0 011561 setarg l2cap_hid_control_channel 
-0x4ef1 011562 isub temp ,null 
-0x4ef2 011563 branch l2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
-0x4ef3 011564 setarg l2cap_hid_interrupt_channel 
-0x4ef4 011565 isub temp ,null 
-0x4ef5 011566 branch l2cap_proc_signal_connect_rsp_hid_int ,zero 
-0x4ef6 011567 rtn 
-:      011569 l2cap_proc_signal_connect_rsp_sdp:
-0x4ef7 011570 copy timeup ,pdata 
-0x4ef8 011571 store 2 ,mem_sdp_remote_cid 
-0x4ef9 011572 fetch 1 ,mem_sdp_state 
-0x4efa 011573 set1 l2cap_channel_state_conn_res ,pdata 
-0x4efb 011574 store 1 ,mem_sdp_state 
-0x4efc 011575 branch l2cap_process_one_signal_rtn 
-:      011576 l2cap_proc_signal_connect_rsp_rfcomm:
-0x4efd 011577 copy timeup ,pdata 
-0x4efe 011578 store 2 ,mem_rfcomm_remote_cid 
-0x4eff 011579 fetch 1 ,mem_rfcomm_state 
-0x4f00 011580 set1 l2cap_channel_state_conn_res ,pdata 
-0x4f01 011581 store 1 ,mem_rfcomm_state 
-0x4f02 011582 rtn 
-:      011583 l2cap_proc_signal_connect_rsp_hid_int:
-0x4f03 011584 copy timeup ,pdata 
-0x4f04 011585 store 2 ,mem_hid_ctrl_remote_cid 
-0x4f05 011586 fetch 1 ,mem_hid_interrupt_state 
-0x4f06 011587 set1 l2cap_channel_state_conn_res ,pdata 
-0x4f07 011588 store 1 ,mem_hid_interrupt_state 
-0x4f08 011589 rtn 
-:      011590 l2cap_proc_signal_connect_rsp_hid_ctrl:
-0x4f09 011591 copy timeup ,pdata 
-0x4f0a 011592 store 2 ,mem_hid_int_remote_cid 
-0x4f0b 011593 fetch 1 ,mem_hid_control_state 
-0x4f0c 011594 set1 l2cap_channel_state_conn_res ,pdata 
-0x4f0d 011595 store 1 ,mem_hid_control_state 
-0x4f0e 011596 rtn 
-:      011598 l2cap_proc_signal_config_req:
-0x4f0f 011599 ifetch 1 ,contr 
-0x4f10 011600 copy pdata ,queue 
-0x4f11 011601 ifetch 2 ,contr 
-0x4f12 011602 copy pdata ,rega 
-0x4f13 011603 copy regc ,pdata 
-0x4f14 011604 isub rega ,regc 
-0x4f15 011605 ifetch 2 ,contr 
-0x4f16 011606 copy pdata ,temp 
-0x4f17 011607 copy temp ,rega 
-0x4f18 011608 setarg l2cap_sdp_channel 
-0x4f19 011609 isub temp ,null 
-0x4f1a 011610 branch l2cap_proc_signal_config_req_sdp ,zero 
-0x4f1b 011611 setarg l2cap_rfcomm_channel 
-0x4f1c 011612 isub temp ,null 
-0x4f1d 011613 branch l2cap_proc_signal_config_req_rfcomm ,zero 
-0x4f1e 011614 setarg l2cap_hid_control_channel 
-0x4f1f 011615 isub temp ,null 
-0x4f20 011616 branch l2cap_proc_signal_config_req_hid_ctrl ,zero 
-0x4f21 011617 setarg l2cap_hid_interrupt_channel 
-0x4f22 011618 isub temp ,null 
-0x4f23 011619 branch l2cap_proc_signal_config_req_hid_int ,zero 
-0x4f24 011620 branch l2cap_reject_command 
-:      011622 l2cap_proc_signal_config_req_sdp:
-0x4f25 011623 copy contw ,timeup 
-0x4f26 011624 fetch 1 ,mem_sdp_state 
-0x4f27 011625 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
-0x4f28 011626 set1 l2cap_channel_state_snd_cfg_res ,pdata 
-0x4f29 011628 store 1 ,mem_sdp_state 
-0x4f2a 011629 copy timeup ,contw 
-0x4f2b 011630 arg l2cap_sdp_channel ,timeup 
-0x4f2c 011631 fetch 2 ,mem_sdp_remote_cid 
-0x4f2d 011632 copy pdata ,temp 
-0x4f2e 011633 branch l2cap_send_config_rsp 
-:      011634 l2cap_proc_signal_config_req_hid_ctrl:
-0x4f2f 011635 copy contw ,timeup 
-0x4f30 011636 fetch 1 ,mem_hid_control_state 
-0x4f31 011637 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
-0x4f32 011638 set1 l2cap_channel_state_snd_cfg_res ,pdata 
-0x4f33 011640 store 1 ,mem_hid_control_state 
-0x4f34 011641 copy timeup ,contw 
-0x4f35 011642 arg l2cap_hid_control_channel ,timeup 
-0x4f36 011643 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x4f37 011644 copy pdata ,temp 
-0x4f38 011645 branch l2cap_send_config_rsp 
-:      011646 l2cap_proc_signal_config_req_hid_int:
-0x4f39 011647 copy contw ,timeup 
-0x4f3a 011648 fetch 1 ,mem_hid_interrupt_state 
-0x4f3b 011649 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
-0x4f3c 011650 set1 l2cap_channel_state_snd_cfg_res ,pdata 
-0x4f3d 011652 store 1 ,mem_hid_interrupt_state 
-0x4f3e 011653 copy timeup ,contw 
-0x4f3f 011654 arg l2cap_hid_interrupt_channel ,timeup 
-0x4f40 011655 fetch 2 ,mem_hid_int_remote_cid 
-0x4f41 011656 copy pdata ,temp 
-0x4f42 011657 branch l2cap_send_config_rsp 
-:      011658 l2cap_proc_signal_config_req_rfcomm:
-0x4f43 011659 copy contw ,timeup 
-0x4f44 011660 fetch 1 ,mem_rfcomm_state 
-0x4f45 011661 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
-0x4f46 011662 set1 l2cap_channel_state_snd_cfg_res ,pdata 
-0x4f47 011664 store 1 ,mem_rfcomm_state 
-0x4f48 011666 copy timeup ,contw 
-0x4f49 011667 arg l2cap_rfcomm_channel ,timeup 
-0x4f4a 011668 fetch 2 ,mem_rfcomm_remote_cid 
-0x4f4b 011669 copy pdata ,temp 
-:      011670 l2cap_send_config_rsp:
-0x4f4c 011671 set1 mark_ext_patch ,mark 
-0x4f4d 011672 bpatch patch23_5 ,mem_patch23 
-0x4f4e 011673 setarg signal_config_rsp 
-0x4f4f 011674 istore 1 ,contw 
-0x4f50 011675 copy queue ,pdata 
-0x4f51 011676 istore 1 ,contw 
-0x4f52 011677 setarg 0x0006 
-0x4f53 011678 istore 2 ,contw 
-0x4f54 011679 copy temp ,pdata 
-0x4f55 011680 istore 2 ,contw 
-0x4f56 011681 force 0x00 ,pdata 
-0x4f57 011682 istore 2 ,contw 
-0x4f58 011683 force l2cap_config_success ,pdata 
-0x4f59 011684 istore 2 ,contw 
-0x4f5a 011685 force 10 ,pdata 
-0x4f5b 011686 iadd regb ,regb 
-0x4f5c 011688 storet 2 ,mem_config_req_dest_cid 
-0x4f5d 011689 copy queue ,pdata 
-0x4f5e 011690 store 1 ,mem_config_identifier 
-0x4f5f 011691 force l2cap_sdp_channel ,pdata 
-0x4f60 011692 icompare 0xff ,timeup 
-0x4f61 011693 branch l2cap_send_config_rsp_is_sdp ,true 
-0x4f62 011694 increase 1 ,pdata 
-:      011695 l2cap_send_config_rsp_is_sdp:
-0x4f63 011697 rtn 
-:      011698 l2cap_check_channel_state:
-0x4f64 011699 disable user 
-0x4f65 011700 rtnbit1 l2cap_channel_state_snd_cfg_req ,pdata 
-0x4f66 011701 rtnbit0 l2cap_channel_state_conn_req ,pdata 
-0x4f67 011702 rtnbit0 l2cap_channel_state_conn_res ,pdata 
-0x4f68 011703 set1 l2cap_channel_state_snd_cfg_req ,pdata 
-0x4f69 011704 copy contr ,contw 
-0x4f6a 011705 increase -1 ,contw 
-0x4f6b 011706 istore 1 ,contw 
-0x4f6c 011707 enable user 
-0x4f6d 011708 rtn 
-:      011709 l2cap_send_config_req:
-:      011710 l2cap_send_config_req_sdp:
-0x4f6e 011711 fetch 1 ,mem_sdp_state 
-0x4f6f 011712 call l2cap_check_channel_state 
-0x4f70 011713 nbranch l2cap_send_config_req_rfcomm ,user 
-0x4f71 011714 jam l2cap_sdp_channel ,mem_send_config_req 
-0x4f72 011715 fetch 2 ,mem_sdp_remote_cid 
-0x4f73 011716 store 2 ,mem_config_req_dest_cid 
-0x4f74 011717 branch l2cap_generate_config_req 
-:      011718 l2cap_send_config_req_rfcomm:
-0x4f75 011719 fetch 1 ,mem_rfcomm_state 
-0x4f76 011720 call l2cap_check_channel_state 
-0x4f77 011721 nbranch l2cap_send_config_req_hid_ctrl ,user 
-0x4f78 011722 jam l2cap_rfcomm_channel ,mem_send_config_req 
-0x4f79 011723 fetch 2 ,mem_rfcomm_remote_cid 
-0x4f7a 011724 store 2 ,mem_config_req_dest_cid 
-0x4f7b 011725 branch l2cap_generate_config_req 
-:      011726 l2cap_send_config_req_hid_ctrl:
-0x4f7c 011727 fetch 1 ,mem_hid_control_state 
-0x4f7d 011728 call l2cap_check_channel_state 
-0x4f7e 011729 nbranch l2cap_send_config_req_hid_int ,user 
-0x4f7f 011730 jam l2cap_hid_control_channel ,mem_send_config_req 
-0x4f80 011731 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x4f81 011732 store 2 ,mem_config_req_dest_cid 
-0x4f82 011733 branch l2cap_generate_config_req 
-:      011734 l2cap_send_config_req_hid_int:
-0x4f83 011735 fetch 1 ,mem_hid_interrupt_state 
-0x4f84 011736 call l2cap_check_channel_state 
-0x4f85 011737 nrtn user 
-0x4f86 011738 jam l2cap_hid_interrupt_channel ,mem_send_config_req 
-0x4f87 011739 fetch 2 ,mem_hid_int_remote_cid 
-0x4f88 011740 store 2 ,mem_config_req_dest_cid 
-:      011743 l2cap_generate_config_req:
-0x4f89 011744 set1 mark_ext_patch ,mark 
-0x4f8a 011745 bpatch patch23_6 ,mem_patch23 
-0x4f8b 011746 call l2cap_get_req_id 
-0x4f8c 011747 call l2cap_malloc_signal_channel 
-0x4f8d 011748 force 0 ,regb 
-0x4f8e 011749 call l2cap_get_signal_tx_payload 
-0x4f8f 011750 force signal_config_req ,pdata 
-0x4f90 011751 istore 1 ,contw 
-0x4f91 011752 fetch 1 ,mem_ml2cap_comm_id 
-0x4f92 011753 istore 1 ,contw 
-0x4f93 011754 setarg 0x0008 
-0x4f94 011755 istore 2 ,contw 
-0x4f95 011756 fetch 2 ,mem_config_req_dest_cid 
-0x4f96 011757 istore 2 ,contw 
-0x4f97 011758 setarg 0x0000 
-0x4f98 011759 istore 2 ,contw 
-0x4f99 011760 force 1 ,pdata 
-0x4f9a 011761 istore 1 ,contw 
-0x4f9b 011762 force 2 ,pdata 
-0x4f9c 011763 istore 1 ,contw 
-0x4f9d 011764 fetch 1 ,mem_send_config_req 
-0x4f9e 011765 beq l2cap_rfcomm_channel ,l2cap_generate_config_req_rfcomm 
-0x4f9f 011766 setarg l2cap_config_mtu_sdp 
-0x4fa0 011767 istore 2 ,contw 
-0x4fa1 011768 branch l2cap_generate_config_req_done 
-:      011769 l2cap_generate_config_req_rfcomm:
-0x4fa2 011770 setarg l2cap_config_mtu_rfcomm 
-0x4fa3 011771 istore 2 ,contw 
-:      011772 l2cap_generate_config_req_done:
-0x4fa4 011773 arg 0x0c ,temp 
-0x4fa5 011774 storet 2 ,mem_l2cap_signal_tx_length 
-0x4fa6 011775 call l2cap_get_signal_tx_buff 
-0x4fa7 011776 fetch 2 ,mem_l2cap_signal_tx_length 
-0x4fa8 011777 istore 2 ,contw 
-0x4fa9 011778 force l2cap_signal_channel ,pdata 
-0x4faa 011779 istore 2 ,contw 
-0x4fab 011780 jam 0 ,mem_send_config_req 
-:      011781 l2cap_proc_signal_config_req_rtn:
-0x4fac 011782 branch l2cap_process_one_signal_rtn 
-:      011784 l2cap_proc_signal_config_rsp:
-0x4fad 011785 increase 1 ,contr 
-0x4fae 011786 ifetch 2 ,contr 
-0x4faf 011787 copy pdata ,rega 
-0x4fb0 011788 copy regc ,pdata 
-0x4fb1 011789 isub rega ,regc 
-0x4fb2 011790 ifetch 2 ,contr 
-0x4fb3 011791 copy pdata ,rega 
-0x4fb4 011792 setarg l2cap_sdp_channel 
-0x4fb5 011793 isub rega ,null 
-0x4fb6 011794 branch l2cap_proc_signal_config_rsp_sdp ,zero 
-0x4fb7 011795 setarg l2cap_rfcomm_channel 
-0x4fb8 011796 isub rega ,null 
-0x4fb9 011797 branch l2cap_proc_signal_config_rsp_rfcomm ,zero 
-0x4fba 011798 setarg l2cap_hid_control_channel 
-0x4fbb 011799 isub rega ,null 
-0x4fbc 011800 branch l2cap_proc_signal_config_rsp_hid_ctrl ,zero 
-0x4fbd 011801 setarg l2cap_hid_interrupt_channel 
-0x4fbe 011802 isub rega ,null 
-0x4fbf 011803 branch l2cap_proc_signal_config_rsp_hid_int ,zero 
-0x4fc0 011804 increase 2 ,contr 
-0x4fc1 011805 ifetch 2 ,contr 
-0x4fc2 011806 iforce null 
-0x4fc3 011807 branch l2cap_process_one_signal_rtn 
-:      011808 l2cap_proc_signal_config_rsp_sdp:
-0x4fc4 011809 fetch 1 ,mem_sdp_state 
-0x4fc5 011810 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
-0x4fc6 011811 store 1 ,mem_sdp_state 
-0x4fc7 011812 branch l2cap_process_one_signal_rtn 
-:      011813 l2cap_proc_signal_config_rsp_rfcomm:
-0x4fc8 011814 fetch 1 ,mem_rfcomm_state 
-0x4fc9 011815 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
-0x4fca 011816 store 1 ,mem_rfcomm_state 
-0x4fcb 011817 branch l2cap_process_one_signal_rtn 
-:      011818 l2cap_proc_signal_config_rsp_hid_ctrl:
-0x4fcc 011819 fetch 1 ,mem_hid_control_state 
-0x4fcd 011820 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
-0x4fce 011821 store 1 ,mem_hid_control_state 
-0x4fcf 011822 branch l2cap_process_one_signal_rtn 
-:      011823 l2cap_proc_signal_config_rsp_hid_int:
-0x4fd0 011824 fetch 1 ,mem_hid_interrupt_state 
-0x4fd1 011825 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
-0x4fd2 011826 store 1 ,mem_hid_interrupt_state 
-0x4fd3 011827 jam bt_evt_hid_connected ,mem_fifo_temp 
-0x4fd4 011828 branch ui_ipc_send_event 
-:      011832 l2cap_proc_signal_disconnect_req:
-0x4fd5 011833 ifetch 1 ,contr 
-0x4fd6 011834 copy pdata ,queue 
-0x4fd7 011835 ifetch 2 ,contr 
-0x4fd8 011836 copy pdata ,rega 
-0x4fd9 011837 copy regc ,pdata 
-0x4fda 011838 isub rega ,regc 
-0x4fdb 011839 ifetch 2 ,contr 
-0x4fdc 011840 copy pdata ,rega 
-0x4fdd 011841 ifetch 2 ,contr 
-0x4fde 011842 copy pdata ,timeup 
-0x4fdf 011843 copy rega ,temp 
-0x4fe0 011844 call save_cont_pointers 
-0x4fe1 011845 setarg l2cap_sdp_channel 
-0x4fe2 011846 isub temp ,null 
-0x4fe3 011847 branch l2cap_proc_signal_disconnect_req_sdp ,zero 
-0x4fe4 011848 setarg l2cap_rfcomm_channel 
-0x4fe5 011849 isub temp ,null 
-0x4fe6 011850 branch l2cap_proc_signal_disconnect_req_rfcomm ,zero 
-0x4fe7 011851 setarg l2cap_hid_control_channel 
-0x4fe8 011852 isub temp ,null 
-0x4fe9 011853 branch l2cap_proc_signal_disconnect_req_hid_ctrl ,zero 
-0x4fea 011854 setarg l2cap_hid_interrupt_channel 
-0x4feb 011855 isub temp ,null 
-0x4fec 011856 branch l2cap_proc_signal_disconnect_req_hid_int ,zero 
-0x4fed 011857 call l2cap_reject_command 
-0x4fee 011858 branch l2cap_proc_signal_disconnect_req_err_rtn 
-:      011859 l2cap_proc_signal_disconnect_req_hid_ctrl:
-0x4fef 011860 copy timeup ,temp 
-0x4ff0 011861 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x4ff1 011862 isub temp ,null 
-0x4ff2 011863 branch l2cap_disconnect_hid_control_now ,zero 
-0x4ff3 011864 call l2cap_reject_command 
-0x4ff4 011865 branch l2cap_proc_signal_disconnect_req_err_rtn 
-:      011866 l2cap_proc_signal_disconnect_req_hid_int:
-0x4ff5 011867 copy timeup ,temp 
-0x4ff6 011868 fetch 2 ,mem_hid_int_remote_cid 
-0x4ff7 011869 isub temp ,null 
-0x4ff8 011870 branch l2cap_disconnect_hid_interrupt_now ,zero 
-0x4ff9 011871 call l2cap_reject_command 
-0x4ffa 011872 branch l2cap_proc_signal_disconnect_req_err_rtn 
-:      011874 l2cap_proc_signal_disconnect_req_sdp:
-0x4ffb 011875 copy timeup ,temp 
-0x4ffc 011876 fetch 2 ,mem_sdp_remote_cid 
-0x4ffd 011877 isub temp ,null 
-0x4ffe 011878 branch l2cap_disconnect_sdp_now ,zero 
-0x4fff 011879 call l2cap_reject_command 
-0x5000 011880 branch l2cap_proc_signal_disconnect_req_err_rtn 
-:      011881 l2cap_disconnect_hid_control_now:
-0x5001 011882 call l2cap_reset_hid_ctrl_state 
-0x5002 011883 branch l2cap_send_disconnect_rsp_pkt 
-:      011884 l2cap_disconnect_hid_interrupt_now:
-0x5003 011885 call l2cap_reset_hid_int_state 
-0x5004 011886 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x5005 011887 branch l2cap_send_disconnect_rsp_pkt ,blank 
-0x5006 011895 branch l2cap_send_disconnect_rsp_pkt 
-:      011897 l2cap_disconnect_sdp_now:
-0x5007 011898 call l2cap_reset_sdp_channel_state 
-0x5008 011899 fetch 1 ,mem_upper_sm_ss 
-0x5009 011900 nbranch l2cap_send_disconnect_rsp_pkt ,blank 
-0x500a 011903 branch l2cap_send_disconnect_rsp_pkt 
-:      011904 l2cap_proc_signal_disconnect_req_rfcomm:
-0x500b 011905 copy timeup ,temp 
-0x500c 011906 fetch 2 ,mem_rfcomm_remote_cid 
-0x500d 011907 isub temp ,null 
-0x500e 011908 branch l2cap_disconnect_rfcomm_now ,zero 
-0x500f 011909 call l2cap_reject_command 
-0x5010 011910 branch l2cap_proc_signal_disconnect_req_err_rtn 
-:      011911 l2cap_disconnect_rfcomm_now:
-0x5011 011912 call l2cap_reset_rfcomm_channel_state 
-0x5012 011913 branch l2cap_send_disconnect_rsp_pkt 
-:      011914 l2cap_send_disconnect_rsp_pkt:
-0x5013 011915 call load_cont_pointers 
-0x5014 011916 setarg signal_disconnect_rsp 
-0x5015 011917 istore 1 ,contw 
-0x5016 011918 copy queue ,pdata 
-0x5017 011919 istore 1 ,contw 
-0x5018 011920 setarg 0x0004 
-0x5019 011921 istore 2 ,contw 
-0x501a 011922 copy rega ,pdata 
-0x501b 011923 istore 2 ,contw 
-0x501c 011924 copy timeup ,pdata 
-0x501d 011925 istore 2 ,contw 
-0x501e 011926 force 8 ,pdata 
-0x501f 011927 branch l2cap_proc_signal_disconnect_req_rtn 
-:      011928 l2cap_proc_signal_disconnect_req_err_rtn:
-0x5020 011929 call load_cont_pointers 
-0x5021 011930 branch l2cap_proc_signal_disconnect_req_rtn 
-:      011931 l2cap_proc_signal_disconnect_req_rtn:
-0x5022 011932 iadd regb ,regb 
-0x5023 011933 branch l2cap_process_one_signal_rtn 
-:      011934 l2cap_proc_signal_disconnect_rsp:
-0x5024 011935 ifetch 1 ,contr 
-0x5025 011936 copy pdata ,queue 
-0x5026 011937 ifetch 2 ,contr 
-0x5027 011938 copy pdata ,rega 
-0x5028 011939 copy regc ,pdata 
-0x5029 011940 isub rega ,regc 
-0x502a 011941 ifetch 2 ,contr 
-0x502b 011942 copy pdata ,timeup 
-0x502c 011943 ifetch 2 ,contr 
-0x502d 011944 copy pdata ,temp 
-0x502e 011945 call save_cont_pointers 
-0x502f 011946 setarg l2cap_sdp_channel 
-0x5030 011947 isub temp ,null 
-0x5031 011948 branch l2cap_proc_signal_disconnect_rsp_sdp ,zero 
-0x5032 011949 setarg l2cap_rfcomm_channel 
-0x5033 011950 isub temp ,null 
-0x5034 011951 branch l2cap_proc_signal_disconnect_rsp_rfcomm ,zero 
-0x5035 011952 setarg l2cap_hid_control_channel 
-0x5036 011953 isub temp ,null 
-0x5037 011954 branch l2cap_proc_signal_disconnect_rsp_hid_ctrl ,zero 
-0x5038 011955 setarg l2cap_hid_interrupt_channel 
-0x5039 011956 isub temp ,null 
-0x503a 011957 branch l2cap_proc_signal_disconnect_rsp_hid_int ,zero 
-0x503b 011958 call l2cap_reject_command 
-0x503c 011959 branch l2cap_proc_signal_disconnect_rsp_err_rtn 
-:      011960 l2cap_proc_signal_disconnect_rsp_sdp:
-0x503d 011961 copy temp ,rega 
-0x503e 011962 copy timeup ,temp 
-0x503f 011963 fetch 2 ,mem_sdp_remote_cid 
-0x5040 011964 isub temp ,null 
-0x5041 011965 call l2cap_reset_sdp_channel_state ,zero 
-0x5042 011966 branch l2cap_proc_signal_disconnect_rsp_rtn 
-:      011967 l2cap_proc_signal_disconnect_rsp_rfcomm:
-0x5043 011968 copy temp ,rega 
-0x5044 011969 copy timeup ,temp 
-0x5045 011970 fetch 2 ,mem_rfcomm_remote_cid 
-0x5046 011971 isub temp ,null 
-0x5047 011972 call l2cap_reset_rfcomm_channel_state ,zero 
-0x5048 011973 branch l2cap_proc_signal_disconnect_rsp_rtn 
-:      011974 l2cap_proc_signal_disconnect_rsp_hid_ctrl:
-0x5049 011975 copy temp ,rega 
-0x504a 011976 copy timeup ,temp 
-0x504b 011977 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x504c 011978 isub temp ,null 
-0x504d 011979 call l2cap_reset_hid_ctrl_state ,zero 
-0x504e 011980 branch l2cap_proc_signal_disconnect_rsp_rtn 
-:      011981 l2cap_proc_signal_disconnect_rsp_hid_int:
-0x504f 011982 copy temp ,rega 
-0x5050 011983 copy timeup ,temp 
-0x5051 011984 fetch 2 ,mem_hid_int_remote_cid 
-0x5052 011985 isub temp ,null 
-0x5053 011986 call l2cap_reset_hid_int_state ,zero 
-0x5054 011987 branch l2cap_proc_signal_disconnect_rsp_rtn 
-:      011988 l2cap_proc_signal_disconnect_rsp_rtn:
-0x5055 011989 call load_cont_pointers 
-0x5056 011990 branch l2cap_process_one_signal_rtn 
-:      011991 l2cap_proc_signal_disconnect_rsp_err_rtn:
-0x5057 011992 branch l2cap_process_one_signal_rtn 
-:      011995 l2cap_proc_signal_echo_req:
-0x5058 011996 ifetch 1 ,contr 
-0x5059 011997 copy pdata ,queue 
-0x505a 011998 ifetch 2 ,contr 
-0x505b 011999 copy pdata ,rega 
-0x505c 012000 iadd contr ,contr 
-0x505d 012001 setarg 9 
-0x505e 012002 istore 1 ,contw 
-0x505f 012003 copy queue ,pdata 
-0x5060 012004 istore 1 ,contw 
-0x5061 012005 force 0x0000 ,pdata 
-0x5062 012006 istore 2 ,contw 
-0x5063 012007 force 4 ,pdata 
-0x5064 012008 iadd regb ,regb 
-0x5065 012009 copy regc ,pdata 
-0x5066 012010 isub rega ,regc 
-0x5067 012011 branch l2cap_process_one_signal_rtn 
-:      012012 l2cap_proc_signal_echo_rsp:
-0x5068 012013 branch l2cap_process_one_signal_rtn 
-:      012015 l2cap_proc_signal_info_rsp:
-0x5069 012016 branch l2cap_process_one_signal_rtn 
-:      012017 l2cap_reject_command:
-0x506a 012018 force 0 ,regb 
-0x506b 012019 call l2cap_get_signal_tx_payload 
-0x506c 012020 setarg signal_cmd_reject 
-0x506d 012021 istore 1 ,contw 
-0x506e 012022 copy queue ,pdata 
-0x506f 012023 istore 1 ,contw 
-0x5070 012024 setarg 2 
-0x5071 012025 istore 2 ,contw 
-0x5072 012026 setarg cmd_not_understood 
-0x5073 012027 istore 2 ,contw 
-0x5074 012028 increase 6 ,regb 
-0x5075 012029 arg 4 ,regc 
-0x5076 012030 branch l2cap_process_one_signal_rtn 
-:      012034 l2cap_reset_rfcomm_channel_state:
-0x5077 012035 setarg 0 
-0x5078 012036 store 2 ,mem_rfcomm_tx_pkt_length 
-0x5079 012037 store 2 ,mem_rfcomm_remote_cid 
-0x507a 012038 jam 0 ,mem_rfcomm_state 
-0x507b 012039 rtn 
-:      012040 l2cap_reset_sdp_channel_state:
-0x507c 012041 setarg 0 
-0x507d 012042 store 2 ,mem_sdp_tx_pkt_length 
-0x507e 012043 store 2 ,mem_sdp_remote_cid 
-0x507f 012044 jam 0 ,mem_sdp_state 
-0x5080 012045 rtn 
-:      012046 l2cap_reset_hid_ctrl_state:
-0x5081 012047 setarg 0 
-0x5082 012048 store 2 ,mem_hid_ctrl_remote_cid 
-0x5083 012049 jam 0 ,mem_hid_control_state 
-0x5084 012050 fetch 1 ,mem_hid_interrupt_state 
-0x5085 012051 beq 0 ,l2cap_reset_hid_disconnected 
-0x5086 012052 rtn 
-:      012054 l2cap_reset_hid_int_state:
-0x5087 012055 setarg 0 
-0x5088 012056 store 2 ,mem_hid_int_remote_cid 
-0x5089 012057 jam 0 ,mem_hid_interrupt_state 
-0x508a 012058 fetch 1 ,mem_hid_control_state 
-0x508b 012059 beq 0 ,l2cap_reset_hid_disconnected 
-0x508c 012060 rtn 
-:      012062 l2cap_reset_hid_disconnected:
-0x508d 012063 jam bt_evt_hid_disconnected ,mem_fifo_temp 
-0x508e 012064 branch ui_ipc_send_event 
-:      012066 l2cap_disconnect_interrupt_req:
-0x508f 012067 fetch 1 ,mem_control_tasks 
-0x5090 012068 set0 l2cap_disconnect_interrupt ,pdata 
-0x5091 012069 store 1 ,mem_control_tasks 
-0x5092 012070 fetch 2 ,mem_hid_int_remote_cid 
-0x5093 012071 rtn blank 
-0x5094 012072 call l2cap_malloc_signal_channel 
-0x5095 012073 fetch 2 ,mem_hid_int_remote_cid 
-0x5096 012074 copy pdata ,rega 
-0x5097 012075 force l2cap_hid_interrupt_channel ,regb 
-0x5098 012076 branch l2cap_generate_disconnect_req 
-:      012077 l2cap_disconnect_control_req:
-0x5099 012078 fetch 1 ,mem_control_tasks 
-0x509a 012079 set0 l2cap_disconnect_control ,pdata 
-0x509b 012080 store 1 ,mem_control_tasks 
-0x509c 012081 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x509d 012082 rtn blank 
-0x509e 012083 call l2cap_malloc_signal_channel 
-0x509f 012084 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x50a0 012085 copy pdata ,rega 
-0x50a1 012086 force l2cap_hid_control_channel ,regb 
-:      012087 l2cap_generate_disconnect_req:
-0x50a2 012088 call l2cap_get_req_id 
-0x50a3 012089 call l2cap_get_signal_tx_payload 
-0x50a4 012090 force signal_disconnect_req ,pdata 
-0x50a5 012091 istore 1 ,contw 
-0x50a6 012092 fetch 1 ,mem_ml2cap_comm_id 
-0x50a7 012093 istore 1 ,contw 
-0x50a8 012094 setarg 0x0004 
-0x50a9 012095 istore 2 ,contw 
-0x50aa 012096 copy rega ,pdata 
-0x50ab 012097 istore 2 ,contw 
-0x50ac 012098 copy regb ,pdata 
-0x50ad 012099 istore 2 ,contw 
-0x50ae 012100 force 0x08 ,temp 
-0x50af 012101 branch ml2cap_send_signal 
-:      012103 ml2cap_send_signal_connect_req:
-0x50b0 012104 set1 mark_ext_patch ,mark 
-0x50b1 012105 bpatch patch23_7 ,mem_patch23 
-0x50b2 012106 call l2cap_get_req_id 
-0x50b3 012107 call l2cap_get_signal_tx_payload 
-0x50b4 012108 setarg signal_connect_req 
-0x50b5 012109 istore 1 ,contw 
-0x50b6 012110 fetch 1 ,mem_ml2cap_comm_id 
-0x50b7 012111 istore 1 ,contw 
-0x50b8 012112 setarg 0x0004 
-0x50b9 012113 istore 2 ,contw 
-0x50ba 012114 copy temp ,pdata 
-0x50bb 012115 istore 2 ,contw 
-0x50bc 012116 copy timeup ,pdata 
-0x50bd 012117 istore 2 ,contw 
-0x50be 012118 arg 8 ,temp 
-0x50bf 012119 branch ml2cap_send_signal 
-:      012120 ml2cap_send_signal_config_req:
-0x50c0 012121 set1 mark_ext_patch ,mark 
-0x50c1 012122 bpatch patch24_0 ,mem_patch24 
-0x50c2 012123 call l2cap_get_req_id 
-0x50c3 012124 call l2cap_get_signal_tx_payload 
-0x50c4 012125 setarg signal_config_req 
-0x50c5 012126 istore 1 ,contw 
-0x50c6 012127 fetch 1 ,mem_ml2cap_comm_id 
-0x50c7 012128 istore 1 ,contw 
-0x50c8 012129 setarg 0x0008 
-0x50c9 012130 istore 2 ,contw 
-0x50ca 012132 copy temp ,pdata 
-0x50cb 012134 istore 2 ,contw 
-0x50cc 012135 setarg 0x0000 
-0x50cd 012136 istore 2 ,contw 
-0x50ce 012137 setarg 0x01 
-0x50cf 012138 istore 1 ,contw 
-0x50d0 012139 setarg 0x02 
-0x50d1 012140 istore 1 ,contw 
-0x50d2 012141 setarg l2cap_config_mtu_rfcomm 
-0x50d3 012142 istore 2 ,contw 
-0x50d4 012143 arg 0xc ,temp 
-0x50d5 012144 branch ml2cap_send_signal 
-:      012145 ml2cap_send_signal_disconn_req:
-0x50d6 012146 set1 mark_ext_patch ,mark 
-0x50d7 012147 bpatch patch24_1 ,mem_patch24 
-0x50d8 012148 call l2cap_get_req_id 
-0x50d9 012149 call l2cap_get_signal_tx_payload 
-0x50da 012150 setarg signal_disconnect_req 
-0x50db 012151 istore 1 ,contw 
-0x50dc 012152 fetch 1 ,mem_ml2cap_comm_id 
-0x50dd 012153 increase 1 ,pdata 
-0x50de 012154 copy contw ,rega 
-0x50df 012155 store 1 ,mem_ml2cap_comm_id 
-0x50e0 012156 copy rega ,contw 
-0x50e1 012157 istore 1 ,contw 
-0x50e2 012158 setarg 0x0004 
-0x50e3 012159 istore 2 ,contw 
-0x50e4 012160 copy temp ,pdata 
-0x50e5 012161 istore 2 ,contw 
-0x50e6 012162 copy timeup ,pdata 
-0x50e7 012163 istore 2 ,contw 
-0x50e8 012164 arg 0x8 ,temp 
-:      012167 ml2cap_send_signal:
-0x50e9 012168 storet 2 ,mem_l2cap_signal_tx_length 
-0x50ea 012169 copy temp ,pdata 
-0x50eb 012170 branch l2cap_malloc_discard ,blank 
-0x50ec 012171 call l2cap_get_signal_tx_buff 
-0x50ed 012172 fetch 2 ,mem_l2cap_signal_tx_length 
-0x50ee 012173 istore 2 ,contw 
-0x50ef 012174 force l2cap_signal_channel ,pdata 
-0x50f0 012175 istore 2 ,contw 
-0x50f1 012176 rtn 
-:      012178 msdp_send_req_done:
-0x50f2 012179 fetch 2 ,mem_sdp_tx_pkt_length 
-0x50f3 012180 branch assert ,blank 
-0x50f4 012181 call l2cap_get_sdp_tx_buff 
-0x50f5 012182 fetch 2 ,mem_sdp_tx_pkt_length 
-0x50f6 012183 istore 2 ,contw 
-0x50f7 012184 fetch 2 ,mem_sdp_remote_cid 
-0x50f8 012185 istore 2 ,contw 
-0x50f9 012186 rtn 
-:      012187 ml2cap_rx_multiplexing:
-0x50fa 012188 set1 mark_ext_patch ,mark 
-0x50fb 012189 bpatch patch24_2 ,mem_patch24 
-0x50fc 012190 fetch 2 ,mem_l2cap_rx_pkt_length 
-0x50fd 012191 branch l2cap_rx_reset_state ,blank 
-0x50fe 012192 fetch 1 ,mem_l2cap_rx_cid 
-0x50ff 012193 beq l2cap_signal_channel ,ml2cap_call_proc_signal 
-0x5100 012194 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
-0x5101 012195 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
-0x5102 012196 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
-0x5103 012197 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
-0x5104 012198 branch l2cap_rx_reset_state 
-:      012200 ml2cap_call_proc_signal:
-0x5105 012201 set1 mark_ext_patch ,mark 
-0x5106 012202 bpatch patch24_3 ,mem_patch24 
-0x5107 012203 call l2cap_malloc_signal_channel 
-0x5108 012204 force 0 ,regb 
-0x5109 012205 call l2cap_get_signal_tx_payload 
-0x510a 012206 copy pdata ,contw 
-0x510b 012207 fetch 2 ,mem_l2cap_rx_pkt_length 
-0x510c 012208 copy pdata ,regc 
-0x510d 012209 fetch 2 ,mem_l2cap_payload_ptr 
-0x510e 012210 iforce contr 
-:      012211 ml2cap_proc_one_comm_loop:
-0x510f 012212 call ml2cap_proc_one_comm 
-0x5110 012213 increase -4 ,regc 
-0x5111 012214 nbranch ml2cap_proc_one_comm_loop ,zero 
-0x5112 012215 copy regb ,temp 
-0x5113 012216 call ml2cap_send_signal 
-0x5114 012217 branch l2cap_rx_reset_state 
-:      012219 ml2cap_proc_one_comm:
-0x5115 012220 ifetch 1 ,contr 
-0x5116 012221 beq signal_connect_req ,ml2cap_proc_signal_connect_req 
-0x5117 012222 beq signal_cmd_reject ,ml2cap_proc_signal_cmd_reject 
-0x5118 012223 beq signal_connect_rsp ,ml2cap_proc_signal_connect_rsp 
-0x5119 012224 beq signal_config_rsp ,ml2cap_proc_signal_config_rsp 
-0x511a 012225 beq signal_config_req ,ml2cap_proc_signal_config_req 
-0x511b 012226 beq signal_disconnect_rsp ,ml2cap_proc_signal_disconn_rsp 
-0x511c 012227 beq signal_disconnect_req ,ml2cap_proc_signal_disconn_req 
-0x511d 012228 beq signal_echo_req ,l2cap_proc_signal_echo_req 
-0x511e 012229 beq signal_info_req ,ml2cap_proc_signal_info_req 
-0x511f 012230 branch ml2cap_proc_send_reject 
-:      012232 ml2cap_proc_signal_connect_req:
-0x5120 012233 call save_cont_pointers 
-0x5121 012235 call load_cont_pointers 
-0x5122 012236 branch l2cap_proc_signal_connect_req 
-:      012237 ml2cap_proc_signal_cmd_reject:
-0x5123 012238 ifetch 1 ,contr 
-0x5124 012239 copy pdata ,queue 
-0x5125 012240 ifetch 2 ,contr 
-0x5126 012241 copy pdata ,rega 
-0x5127 012242 copy regc ,pdata 
-0x5128 012243 isub rega ,regc 
-:      012244 mvptr:
-0x5129 012245 ifetch 1 ,contr 
-0x512a 012246 increase -1 ,rega 
-0x512b 012247 nbranch mvptr ,zero 
-0x512c 012248 rtn 
-:      012249 ml2cap_proc_signal_connect_rsp:
-0x512d 012250 ifetch 1 ,contr 
-0x512e 012251 copy pdata ,queue 
-0x512f 012252 ifetch 2 ,contr 
-0x5130 012253 copy pdata ,rega 
-0x5131 012254 ifetch 2 ,contr 
-0x5132 012255 copy pdata ,timeup 
-0x5133 012256 ifetch 2 ,contr 
-0x5134 012257 copy pdata ,temp 
-0x5135 012258 ifetch 2 ,contr 
-0x5136 012259 sub pdata ,0 ,null 
-0x5137 012260 branch ml2cap_proc_signal_connect_rsp_sucessful ,zero 
-0x5138 012261 beq l2cap_connect_refused_psm_unsupported ,ml2cap_proc_signal_connect_refused_result 
-0x5139 012262 beq l2cap_connect_refused_no_resources ,ml2cap_proc_signal_connect_refused_result 
-0x513a 012263 branch ml2cap_proc_signal_connect_rsp_mnosucc 
-:      012264 ml2cap_proc_signal_connect_refused_result:
-0x513b 012265 jam bt_evt_ml2cap_conn_refused ,mem_fifo_temp 
-0x513c 012266 call ui_ipc_send_event 
-:      012267 ml2cap_proc_signal_connect_rsp_mnosucc:
-0x513d 012268 ifetch 2 ,contr 
-0x513e 012269 branch mnosucc 
-:      012270 ml2cap_proc_signal_connect_rsp_sucessful:
-0x513f 012271 call save_cont_pointers 
-0x5140 012275 setarg l2cap_sdp_channel 
-0x5141 012276 isub temp ,null 
-0x5142 012277 branch ml2cap_proc_signal_connect_rsp_sdp ,zero 
-0x5143 012278 setarg l2cap_rfcomm_channel 
-0x5144 012279 isub temp ,null 
-0x5145 012280 branch ml2cap_proc_signal_connect_rsp_rfcomm ,zero 
-0x5146 012281 setarg l2cap_hid_interrupt_channel 
-0x5147 012282 isub temp ,null 
-0x5148 012283 branch ml2cap_proc_signal_connect_rsp_hid_int ,zero 
-0x5149 012284 setarg l2cap_hid_control_channel 
-0x514a 012285 isub temp ,null 
-0x514b 012286 branch ml2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
-0x514c 012287 branch mnosucc 
-:      012288 ml2cap_proc_signal_connect_rsp_sdp:
-0x514d 012289 copy timeup ,pdata 
-0x514e 012290 store 2 ,mem_sdp_remote_cid 
-0x514f 012291 fetch 1 ,mem_sdp_state 
-0x5150 012292 set1 l2cap_channel_state_conn_res 
-0x5151 012293 store 1 ,mem_sdp_state 
-0x5152 012294 branch mnosucc1 
-:      012295 ml2cap_proc_signal_connect_rsp_rfcomm:
-0x5153 012296 copy timeup ,pdata 
-0x5154 012297 store 2 ,mem_rfcomm_remote_cid 
-0x5155 012298 fetch 1 ,mem_rfcomm_state 
-0x5156 012299 set1 l2cap_channel_state_conn_res 
-0x5157 012300 store 1 ,mem_rfcomm_state 
-0x5158 012301 branch mnosucc1 
-:      012302 ml2cap_proc_signal_connect_rsp_hid_ctrl:
-0x5159 012303 copy timeup ,pdata 
-0x515a 012304 store 2 ,mem_hid_ctrl_remote_cid 
-0x515b 012305 fetch 1 ,mem_hid_control_state 
-0x515c 012306 set1 l2cap_channel_state_conn_res 
-0x515d 012307 store 1 ,mem_hid_control_state 
-0x515e 012308 branch mnosucc1 
-:      012309 ml2cap_proc_signal_connect_rsp_hid_int:
-0x515f 012310 copy timeup ,pdata 
-0x5160 012311 store 2 ,mem_hid_int_remote_cid 
-0x5161 012312 fetch 1 ,mem_hid_interrupt_state 
-0x5162 012313 set1 l2cap_channel_state_conn_res 
-0x5163 012314 store 1 ,mem_hid_interrupt_state 
-:      012317 mnosucc1:
-0x5164 012318 call load_cont_pointers 
-:      012319 mnosucc:
-0x5165 012320 copy regc ,pdata 
-0x5166 012321 isub rega ,regc 
-0x5167 012322 rtn 
-:      012324 ml2cap_proc_signal_config_rsp:
-0x5168 012325 ifetch 1 ,contr 
-0x5169 012326 copy pdata ,queue 
-0x516a 012327 ifetch 2 ,contr 
-0x516b 012328 copy pdata ,rega 
-0x516c 012329 copy regc ,pdata 
-0x516d 012330 isub rega ,regc 
-0x516e 012331 ifetch 2 ,contr 
-0x516f 012332 copy pdata ,timeup 
-0x5170 012333 ifetch 2 ,contr 
-0x5171 012334 ifetch 2 ,contr 
-0x5172 012335 nbranch mcrsdone1 ,blank 
-0x5173 012336 call save_cont_pointers 
-0x5174 012340 copy timeup ,temp 
-0x5175 012341 setarg l2cap_sdp_channel 
-0x5176 012342 isub temp ,null 
-0x5177 012343 branch ml2cap_proc_signal_config_rsp_sdp ,zero 
-0x5178 012344 setarg l2cap_rfcomm_channel 
-0x5179 012345 isub temp ,null 
-0x517a 012346 branch ml2cap_proc_signal_config_rsp_rfcomm ,zero 
-0x517b 012347 setarg l2cap_hid_control_channel 
-0x517c 012348 isub temp ,null 
-0x517d 012349 branch ml2cap_proc_signal_config_rsp_hid_ctrl ,zero 
-0x517e 012350 setarg l2cap_hid_interrupt_channel 
-0x517f 012351 isub temp ,null 
-0x5180 012352 branch ml2cap_proc_signal_config_rsp_hid_int ,zero 
-:      012353 ml2cap_proc_signal_config_rsp_sdp:
-0x5181 012354 fetch 1 ,mem_sdp_state 
-0x5182 012355 set1 l2cap_channel_state_rcv_cfg_res 
-0x5183 012356 store 1 ,mem_sdp_state 
-0x5184 012357 rtn 
-:      012358 ml2cap_proc_signal_config_rsp_rfcomm:
-0x5185 012359 fetch 1 ,mem_rfcomm_state 
-0x5186 012360 set1 l2cap_channel_state_rcv_cfg_res 
-0x5187 012361 store 1 ,mem_rfcomm_state 
-0x5188 012362 rtn 
-:      012363 ml2cap_proc_signal_config_rsp_hid_ctrl:
-0x5189 012364 fetch 1 ,mem_hid_control_state 
-0x518a 012365 set1 l2cap_channel_state_rcv_cfg_res 
-0x518b 012366 store 1 ,mem_hid_control_state 
-0x518c 012367 rtn 
-:      012368 ml2cap_proc_signal_config_rsp_hid_int:
-0x518d 012369 fetch 1 ,mem_hid_interrupt_state 
-0x518e 012370 set1 l2cap_channel_state_rcv_cfg_res 
-0x518f 012371 store 1 ,mem_hid_interrupt_state 
-0x5190 012372 jam bt_evt_hid_connected ,mem_fifo_temp 
-0x5191 012373 branch ui_ipc_send_event 
-:      012376 mcfrsdone:
-0x5192 012377 call load_cont_pointers 
-:      012378 mcrsdone1:
-0x5193 012379 increase -6 ,rega 
-:      012380 mloop2:
-0x5194 012381 branch mcrsdone ,zero 
-0x5195 012382 increase 1 ,contr 
-0x5196 012383 increase -1 ,rega 
-0x5197 012384 branch mloop2 
-:      012385 mcrsdone:
-0x5198 012386 rtn 
-:      012387 ml2cap_proc_signal_config_req:
-0x5199 012388 ifetch 1 ,contr 
-0x519a 012389 copy pdata ,queue 
-0x519b 012390 ifetch 2 ,contr 
-0x519c 012391 copy pdata ,rega 
-0x519d 012392 copy regc ,pdata 
-0x519e 012393 isub rega ,regc 
-0x519f 012394 ifetch 2 ,contr 
-0x51a0 012395 increase 2 ,contr 
-0x51a1 012396 copy pdata ,temp 
-0x51a2 012397 setarg signal_config_rsp 
-0x51a3 012398 istore 1 ,contw 
-0x51a4 012399 copy queue ,pdata 
-0x51a5 012400 istore 1 ,contw 
-0x51a6 012401 increase 2 ,rega 
-0x51a7 012402 copy rega ,pdata 
-0x51a8 012403 istore 2 ,contw 
-0x51a9 012404 call save_cont_pointers 
-0x51aa 012405 setarg l2cap_sdp_channel 
-0x51ab 012406 isub temp ,null 
-0x51ac 012407 branch ml2cap_proc_signal_config_req_sdp ,zero 
-0x51ad 012408 setarg l2cap_rfcomm_channel 
-0x51ae 012409 isub temp ,null 
-0x51af 012410 branch ml2cap_proc_signal_config_req_rfcomm ,zero 
-0x51b0 012411 setarg l2cap_hid_control_channel 
-0x51b1 012412 isub temp ,null 
-0x51b2 012413 branch ml2cap_proc_signal_config_req_hid_ctrl ,zero 
-0x51b3 012414 setarg l2cap_hid_interrupt_channel 
-0x51b4 012415 isub temp ,null 
-0x51b5 012416 branch ml2cap_proc_signal_config_req_hid_int ,zero 
-0x51b6 012417 branch mcfgrq_done 
-:      012418 ml2cap_proc_signal_config_req_sdp:
-0x51b7 012419 fetch 1 ,mem_sdp_state 
-0x51b8 012420 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
-0x51b9 012421 set1 l2cap_channel_state_snd_cfg_res ,pdata 
-0x51ba 012422 store 1 ,mem_sdp_state 
-0x51bb 012423 bbit1 l2cap_channel_state_snd_cfg_req ,ml2cap_proc_signal_config_req_sdp_nsndreq 
-0x51bc 012424 fetcht 1 ,mem_control_tasks 
-0x51bd 012425 set1 l2cap_init_config_req ,temp 
-0x51be 012426 storet 1 ,mem_control_tasks 
-0x51bf 012427 copy queue ,pdata 
-0x51c0 012428 increase 1 ,pdata 
-0x51c1 012429 store 1 ,mem_config_identifier 
-0x51c2 012430 fetch 1 ,mem_sdp_state 
-0x51c3 012431 set1 l2cap_channel_state_snd_cfg_req ,pdata 
-0x51c4 012432 store 1 ,mem_sdp_state 
-:      012433 ml2cap_proc_signal_config_req_sdp_nsndreq:
-0x51c5 012434 fetch 2 ,mem_sdp_remote_cid 
-0x51c6 012435 store 2 ,mem_config_req_dest_cid 
-0x51c7 012436 branch mcfgrq_done 
-:      012437 ml2cap_proc_signal_config_req_rfcomm:
-0x51c8 012438 fetch 1 ,mem_rfcomm_state 
-0x51c9 012439 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
-0x51ca 012440 set1 l2cap_channel_state_snd_cfg_res ,pdata 
-0x51cb 012441 store 1 ,mem_rfcomm_state 
-0x51cc 012442 fetch 2 ,mem_rfcomm_remote_cid 
-0x51cd 012443 branch mcfgrq_done 
-:      012444 ml2cap_proc_signal_config_req_hid_ctrl:
-0x51ce 012445 fetch 1 ,mem_hid_control_state 
-0x51cf 012446 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
-0x51d0 012447 set1 l2cap_channel_state_snd_cfg_res ,pdata 
-0x51d1 012448 store 1 ,mem_hid_control_state 
-0x51d2 012449 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x51d3 012450 branch mcfgrq_done 
-:      012451 ml2cap_proc_signal_config_req_hid_int:
-0x51d4 012452 fetch 1 ,mem_hid_interrupt_state 
-0x51d5 012453 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
-0x51d6 012454 set1 l2cap_channel_state_snd_cfg_res ,pdata 
-0x51d7 012455 store 1 ,mem_hid_interrupt_state 
-0x51d8 012456 fetch 2 ,mem_hid_int_remote_cid 
-:      012459 mcfgrq_done:
-0x51d9 012460 copy pdata ,timeup 
-0x51da 012461 call load_cont_pointers 
-0x51db 012463 copy timeup ,pdata 
-0x51dc 012465 istore 2 ,contw 
-0x51dd 012466 force 0x0000 ,pdata 
-0x51de 012467 istore 2 ,contw 
-0x51df 012468 force 0x0000 ,pdata 
-0x51e0 012469 istore 2 ,contw 
-0x51e1 012470 force 10 ,pdata 
-0x51e2 012471 iadd regb ,regb 
-0x51e3 012472 increase -6 ,rega 
-:      012473 mloop1:
-0x51e4 012474 branch mcrqdone ,zero 
-0x51e5 012475 ifetch 1 ,contr 
-0x51e6 012476 istore 1 ,contw 
-0x51e7 012477 increase 1 ,regb 
-0x51e8 012478 increase -1 ,rega 
-0x51e9 012479 branch mloop1 
-:      012480 mcrqdone:
-0x51ea 012481 rtn 
-:      012482 ml2cap_proc_signal_disconn_req:
-0x51eb 012483 ifetch 1 ,contr 
-0x51ec 012484 copy pdata ,queue 
-0x51ed 012485 ifetch 2 ,contr 
-0x51ee 012486 copy pdata ,rega 
-0x51ef 012487 copy regc ,pdata 
-0x51f0 012488 isub rega ,regc 
-0x51f1 012490 ifetch 2 ,contr 
-0x51f2 012491 copy pdata ,rega 
-0x51f3 012492 ifetch 2 ,contr 
-0x51f4 012493 copy pdata ,timeup 
-0x51f5 012494 call save_cont_pointers 
-0x51f6 012495 setarg l2cap_sdp_channel 
-0x51f7 012496 copy rega ,temp 
-0x51f8 012497 isub temp ,null 
-0x51f9 012498 branch ml2cap_proc_signal_disconn_sdp ,zero 
-0x51fa 012499 setarg l2cap_hid_control_channel 
-0x51fb 012500 copy rega ,temp 
-0x51fc 012501 isub temp ,null 
-0x51fd 012502 branch ml2cap_proc_signal_disconn_hid_ctrl ,zero 
-0x51fe 012503 setarg l2cap_hid_interrupt_channel 
-0x51ff 012504 copy rega ,temp 
-0x5200 012505 isub temp ,null 
-0x5201 012506 branch ml2cap_proc_signal_disconn_hid_int ,zero 
-0x5202 012507 branch mclsrfc 
-:      012508 ml2cap_proc_signal_disconn_sdp:
-0x5203 012509 setarg 0x0000 
-0x5204 012510 store 2 ,mem_sdp_tx_pkt_length 
-0x5205 012511 store 2 ,mem_sdp_remote_cid 
-0x5206 012512 store 1 ,mem_sdp_state 
-0x5207 012513 branch mclssdp 
-:      012514 ml2cap_proc_signal_disconn_hid_ctrl:
-0x5208 012515 call l2cap_reset_hid_ctrl_state 
-0x5209 012516 branch mclssdp 
-:      012517 ml2cap_proc_signal_disconn_hid_int:
-0x520a 012518 call l2cap_reset_hid_int_state 
-0x520b 012524 branch mclssdp 
-:      012525 mclsrfc:
-0x520c 012526 setarg 0x0000 
-0x520d 012527 store 2 ,mem_rfcomm_tx_pkt_length 
-:      012528 mclssdp:
-0x520e 012529 call load_cont_pointers 
-0x520f 012530 setarg signal_disconnect_rsp 
-0x5210 012531 istore 1 ,contw 
-0x5211 012532 copy queue ,pdata 
-0x5212 012533 istore 1 ,contw 
-0x5213 012534 setarg 0x0004 
-0x5214 012535 istore 2 ,contw 
-0x5215 012536 copy rega ,pdata 
-0x5216 012537 istore 2 ,contw 
-0x5217 012538 copy timeup ,pdata 
-0x5218 012539 istore 2 ,contw 
-0x5219 012540 force 8 ,pdata 
-0x521a 012541 iadd regb ,regb 
-0x521b 012542 rtn 
-:      012544 ml2cap_proc_signal_disconn_rsp:
-0x521c 012545 ifetch 1 ,contr 
-0x521d 012546 copy pdata ,queue 
-0x521e 012547 ifetch 2 ,contr 
-0x521f 012548 copy pdata ,rega 
-0x5220 012549 ifetch 2 ,contr 
-0x5221 012550 copy pdata ,timeup 
-0x5222 012551 ifetch 2 ,contr 
-0x5223 012552 copy pdata ,temp 
-0x5224 012553 call save_cont_pointers 
-0x5225 012554 fetch 1 ,mem_ml2cap_comm_id 
-0x5226 012555 icompare 0xff ,queue 
-0x5227 012556 nbranch mdisdone ,true 
-0x5228 012557 setarg l2cap_sdp_channel 
-0x5229 012558 isub temp ,null 
-0x522a 012559 branch ml2cap_proc_signal_disconn_rsp_sdp ,zero 
-0x522b 012560 setarg l2cap_rfcomm_channel 
-0x522c 012561 isub temp ,null 
-0x522d 012562 branch ml2cap_proc_signal_disconn_rsp_rfcomm ,zero 
-0x522e 012563 branch mdisdone 
-:      012564 ml2cap_proc_signal_disconn_rsp_sdp:
-0x522f 012565 jam 0 ,mem_sdp_remote_cid 
-0x5230 012566 jam 0 ,mem_sdp_state 
-0x5231 012567 branch mdisdone 
-:      012568 ml2cap_proc_signal_disconn_rsp_rfcomm:
-:      012571 mdisdone:
-0x5232 012572 call load_cont_pointers 
-0x5233 012573 copy regc ,pdata 
-0x5234 012574 isub rega ,regc 
-0x5235 012575 rtn 
-:      012577 ml2cap_proc_send_reject:
-0x5236 012578 setarg signal_cmd_reject 
-0x5237 012579 istore 1 ,contw 
-0x5238 012580 ifetch 1 ,contr 
-0x5239 012581 istore 1 ,contw 
-0x523a 012582 setarg 0x0002 
-0x523b 012583 istore 2 ,contw 
-0x523c 012584 setarg 0x0000 
-0x523d 012585 istore 2 ,contw 
-0x523e 012586 setarg 0x0006 
-0x523f 012587 iadd regb ,regb 
-0x5240 012588 force 4 ,regc 
-0x5241 012589 rtn 
-:      012592 l2cap_get_req_id:
-0x5242 012593 fetch 1 ,mem_ml2cap_comm_id 
-0x5243 012594 increase 1 ,pdata 
-0x5244 012595 bne 0 ,l2cap_get_req_id_ok 
-0x5245 012596 increase 1 ,pdata 
-:      012597 l2cap_get_req_id_ok:
-0x5246 012598 store 1 ,mem_ml2cap_comm_id 
-0x5247 012599 rtn 
-:      012609 l2cap_malloc:
-0x5248 012610 set1 mark_ext_patch ,mark 
-0x5249 012611 bpatch patch24_4 ,mem_patch24 
-0x524a 012612 arg 0 ,regb 
-0x524b 012613 call l2cap_malloc_is_fifo_full 
-0x524c 012614 nbranch assert ,blank 
-0x524d 012615 call l2cap_malloc_get_full_map 
-0x524e 012616 arg mem_tx_buff0 ,regb 
-0x524f 012617 arg 0 ,queue 
-:      012618 l2cap_malloc_loop:
-0x5250 012619 fetcht 1 ,mem_used_map 
-0x5251 012620 qisolate1 temp 
-0x5252 012621 branch l2cap_malloc_next ,true 
-0x5253 012622 call l2cap_malloc_enough 
-0x5254 012623 sub timeup ,0 ,null 
-0x5255 012624 branch l2cap_malloc_next ,positive 
-0x5256 012625 call l2cap_malloc_into_fifo 
-0x5257 012626 branch l2cap_malloc_rtn 
-:      012627 l2cap_malloc_next:
-0x5258 012628 increase 128 ,regb 
-0x5259 012629 increase 1 ,queue 
-0x525a 012630 setarg 8 
-0x525b 012631 isub queue ,null 
-0x525c 012632 branch l2cap_malloc_loop ,positive 
-0x525d 012633 arg 0 ,regb 
-:      012634 l2cap_malloc_rtn:
-0x525e 012635 copy regb ,pdata 
-0x525f 012636 branch assert ,blank 
-0x5260 012637 rtn 
-:      012645 l2cap_malloc_fifo_out:
-0x5261 012646 set1 mark_ext_patch ,mark 
-0x5262 012647 bpatch patch24_5 ,mem_patch24 
-0x5263 012648 call l2cap_malloc_fifo_get_first_ptr 
-0x5264 012649 increase 1 ,contr 
-0x5265 012650 ifetch 2 ,contr 
-0x5266 012651 rtn 
-:      012657 l2cap_malloc_free:
-0x5267 012658 set1 mark_ext_patch ,mark 
-0x5268 012659 bpatch patch24_6 ,mem_patch24 
-0x5269 012660 call l2cap_malloc_fifo_get_first_ptr 
-0x526a 012661 copy contr ,contw 
-0x526b 012662 copy contr ,temp 
-0x526c 012663 setarg 0 
-0x526d 012664 istore 3 ,contw 
-0x526e 012665 rtn 
-:      012670 l2cap_malloc_discard:
-0x526f 012671 set1 mark_ext_patch ,mark 
-0x5270 012672 bpatch patch24_7 ,mem_patch24 
-0x5271 012673 call l2cap_malloc_is_fifo_empty 
-0x5272 012674 branch assert ,blank 
-0x5273 012675 fetch 3 ,mem_tx_fifo2 
-0x5274 012676 store 3 ,mem_tx_fifo3 
-0x5275 012677 fetch 3 ,mem_tx_fifo1 
-0x5276 012678 store 3 ,mem_tx_fifo2 
-0x5277 012679 fetch 3 ,mem_tx_fifo0 
-0x5278 012680 store 3 ,mem_tx_fifo1 
-0x5279 012681 rtn 
-:      012687 l2cap_malloc_is_fifo_full:
-0x527a 012688 fetch 3 ,mem_tx_fifo0 
-0x527b 012689 rtn 
-:      012695 l2cap_malloc_is_fifo_nearly_full:
-0x527c 012696 fetch 3 ,mem_tx_fifo1 
-0x527d 012697 rtn 
-:      012703 l2cap_malloc_is_fifo_empty:
-0x527e 012704 fetch 3 ,mem_tx_fifo3 
-0x527f 012705 rtn 
-:      012710 l2cap_malloc_fifo_get_first_ptr:
-0x5280 012711 call l2cap_malloc_is_fifo_empty 
-0x5281 012712 branch assert ,blank 
-0x5282 012713 arg mem_tx_fifo0 ,contr 
-:      012714 l2cap_malloc_free_loop:
-0x5283 012715 ifetch 3 ,contr 
-0x5284 012716 branch l2cap_malloc_free_loop ,blank 
-0x5285 012717 increase -3 ,contr 
-0x5286 012718 rtn 
-:      012725 l2cap_malloc_get_full_map:
-0x5287 012726 set1 mark_ext_patch ,mark 
-0x5288 012727 bpatch patch25_0 ,mem_patch25 
-0x5289 012728 arg 4 ,loopcnt 
-0x528a 012729 arg mem_tx_fifo0_map ,contr 
-0x528b 012730 arg 0 ,temp 
-:      012731 l2cap_malloc_get_full_map_loop:
-0x528c 012732 ifetch 3 ,contr 
-0x528d 012733 and pdata ,0xff ,pdata 
-0x528e 012734 ior temp ,temp 
-0x528f 012735 loop l2cap_malloc_get_full_map_loop 
-0x5290 012736 storet 1 ,mem_used_map 
-0x5291 012737 rtn 
-:      012745 l2cap_malloc_into_fifo:
-0x5292 012746 set1 mark_ext_patch ,mark 
-0x5293 012747 bpatch patch25_1 ,mem_patch25 
-0x5294 012748 call l2cap_malloc_is_fifo_full 
-0x5295 012749 nbranch assert ,blank 
-0x5296 012750 call l2cap_malloc_is_fifo_empty 
-0x5297 012751 branch l2cap_malloc_into_fifo_no_push ,blank 
-0x5298 012752 fetch 3 ,mem_tx_fifo1 
-0x5299 012753 store 3 ,mem_tx_fifo0 
-0x529a 012754 ifetch 3 ,contr 
-0x529b 012755 istore 3 ,contw 
-0x529c 012756 ifetch 3 ,contr 
-0x529d 012757 istore 3 ,contw 
-0x529e 012758 setarg 0 
-0x529f 012759 istore 3 ,contw 
-:      012760 l2cap_malloc_into_fifo_no_push:
-0x52a0 012761 arg 0 ,temp 
-0x52a1 012762 copy timeup ,pdata 
-0x52a2 012763 iadd queue ,pdata 
-:      012764 l2cap_malloc_into_fifo_loop:
-0x52a3 012765 qset1 temp 
-0x52a4 012766 increase 1 ,queue 
-0x52a5 012767 isub queue ,null 
-0x52a6 012768 nbranch l2cap_malloc_into_fifo_loop ,zero 
-0x52a7 012770 lshift8 regb ,pdata 
-0x52a8 012771 ior temp ,pdata 
-0x52a9 012772 store 3 ,mem_tx_fifo3 
-0x52aa 012773 rtn 
-:      012783 l2cap_malloc_enough:
-0x52ab 012784 set1 mark_ext_patch ,mark 
-0x52ac 012785 bpatch patch25_2 ,mem_patch25 
-0x52ad 012786 call l2cap_malloc_get_full_map 
-0x52ae 012787 copy queue ,regc 
-0x52af 012788 arg 0 ,temp 
-0x52b0 012789 arg 0 ,timeup 
-:      012791 l2cap_malloc_enough_loop:
-0x52b1 012792 copy queue ,pdata 
-0x52b2 012793 beq 8 ,l2cap_malloc_enough_end 
-0x52b3 012794 fetch 1 ,mem_used_map 
-0x52b4 012795 qisolate1 pdata 
-0x52b5 012796 branch l2cap_malloc_enough_end ,true 
-0x52b6 012797 increase 128 ,temp 
-0x52b7 012798 increase 1 ,queue 
-0x52b8 012799 copy rega ,pdata 
-0x52b9 012800 isub temp ,null 
-0x52ba 012801 branch l2cap_malloc_enough_end ,zero 
-0x52bb 012802 branch l2cap_malloc_enough_loop ,positive 
-:      012803 l2cap_malloc_enough_end:
-0x52bc 012804 copy temp ,pdata 
-0x52bd 012805 isub rega ,null 
-0x52be 012806 nbranch l2cap_malloc_enough_rtn ,positive 
-0x52bf 012807 copy queue ,pdata 
-0x52c0 012808 copy regc ,temp 
-0x52c1 012809 isub temp ,timeup 
-:      012810 l2cap_malloc_enough_rtn:
-0x52c2 012811 copy regc ,queue 
-0x52c3 012812 rtn 
-:      012815 l2cap_malloc_signal_channel:
-0x52c4 012816 set1 mark_ext_patch ,mark 
-0x52c5 012817 bpatch patch25_3 ,mem_patch25 
-0x52c6 012818 arg l2cap_signal_malloc_size ,rega 
-0x52c7 012819 call l2cap_malloc 
-0x52c8 012820 store 2 ,mem_l2cap_signal_tx_buff_ptr 
-0x52c9 012821 increase 4 ,pdata 
-0x52ca 012822 store 2 ,mem_l2cap_signal_tx_payload_ptr 
-0x52cb 012823 setarg 0 
-0x52cc 012824 store 2 ,mem_l2cap_signal_tx_length 
-0x52cd 012825 rtn 
-:      012827 l2cap_get_signal_tx_buff:
-0x52ce 012828 fetch 2 ,mem_l2cap_signal_tx_buff_ptr 
-0x52cf 012829 branch l2cap_util_pdata_to_contw 
-:      012831 l2cap_get_signal_tx_payload:
-0x52d0 012832 fetch 2 ,mem_l2cap_signal_tx_payload_ptr 
-0x52d1 012833 branch l2cap_util_pdata_to_contw 
-:      012836 l2cap_malloc_sdp_channel:
-0x52d2 012837 set1 mark_ext_patch ,mark 
-0x52d3 012838 bpatch patch25_4 ,mem_patch25 
-0x52d4 012839 arg sdp_malloc_size ,rega 
-0x52d5 012840 call l2cap_malloc 
-0x52d6 012841 store 2 ,mem_sdp_tx_buff_ptr 
-0x52d7 012842 increase 4 ,pdata 
-0x52d8 012843 store 2 ,mem_sdp_tx_payload_ptr 
-0x52d9 012844 setarg 0 
-0x52da 012845 store 2 ,mem_sdp_tx_pkt_length 
-0x52db 012846 rtn 
-:      012848 l2cap_get_sdp_tx_buff:
-0x52dc 012849 fetch 2 ,mem_sdp_tx_buff_ptr 
-0x52dd 012850 branch l2cap_util_pdata_to_contw 
-:      012852 l2cap_get_sdp_tx_payload:
-0x52de 012853 fetch 2 ,mem_sdp_tx_payload_ptr 
-0x52df 012854 branch l2cap_util_pdata_to_contw 
-:      012857 l2cap_malloc_rfcomm_channel:
-0x52e0 012858 set1 mark_ext_patch ,mark 
-0x52e1 012859 bpatch patch25_5 ,mem_patch25 
-0x52e2 012860 call push_stack 
-0x52e3 012861 jam rfcomm_malloc_fail ,mem_rfcomm_malloc_fail_flag 
-0x52e4 012862 call l2cap_malloc_is_fifo_full 
-0x52e5 012863 nrtn blank 
-0x52e6 012864 arg rfcomm_malloc_size ,rega 
-0x52e7 012865 call l2cap_malloc 
-0x52e8 012866 store 2 ,mem_rfcomm_tx_buff_ptr 
-0x52e9 012867 increase 4 ,pdata 
-0x52ea 012868 store 2 ,mem_rfcomm_tx_payload_ptr 
-0x52eb 012869 setarg 0 
-0x52ec 012870 store 2 ,mem_rfcomm_tx_pkt_length 
-0x52ed 012871 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
-0x52ee 012872 branch pop_stack 
-:      012874 l2cap_get_rfcomm_tx_buff:
-0x52ef 012875 fetch 2 ,mem_rfcomm_tx_buff_ptr 
-0x52f0 012876 branch l2cap_util_pdata_to_contw 
-:      012878 l2cap_get_rfcomm_tx_payload:
-0x52f1 012879 fetch 2 ,mem_rfcomm_tx_payload_ptr 
-:      012881 l2cap_util_pdata_to_contw:
-0x52f2 012882 branch assert ,blank 
-0x52f3 012883 copy pdata ,contw 
-0x52f4 012884 rtn 
-:      012887 l2cap_lpm_save_calc_len:
-0x52f5 012888 set1 mark_ext_patch ,mark 
-0x52f6 012889 bpatch patch25_6 ,mem_patch25 
-0x52f7 012890 arg 0 ,regb 
-0x52f8 012891 arg mem_tx_fifo0_map ,rega 
-0x52f9 012892 increase -2 ,rega 
-:      012893 l2cap_lpm_save_calc_len_loop:
-0x52fa 012894 increase 2 ,rega 
-0x52fb 012895 setarg mem_tx_fifo_end 
-0x52fc 012896 isub rega ,null 
-0x52fd 012897 branch l2cap_lpm_save_calc_len_end ,zero 
-0x52fe 012898 ifetch 1 ,rega 
-0x52ff 012899 increase 1 ,rega 
-0x5300 012900 branch l2cap_lpm_save_calc_len_loop ,blank 
-0x5301 012901 ifetcht 2 ,rega 
-0x5302 012902 ifetch 2 ,temp 
-0x5303 012903 iadd regb ,regb 
-0x5304 012904 increase 4 ,regb 
-0x5305 012905 branch l2cap_lpm_save_calc_len_loop 
-:      012906 l2cap_lpm_save_calc_len_end:
-0x5306 012907 copy regb ,pdata 
-0x5307 012908 rtn 
-:      012911 l2cap_lpm_get_wake_lock:
-0x5308 012912 arg wake_lock_l2cap_tx ,queue 
-0x5309 012913 branch lpm_get_wake_lock 
-:      012915 l2cap_lpm_put_wake_lock:
-0x530a 012916 arg wake_lock_l2cap_tx ,queue 
-0x530b 012917 branch lpm_put_wake_lock 
-:      012919 l2cap_lpm_save_txbuf:
-0x530c 012920 set1 mark_ext_patch ,mark 
-0x530d 012921 bpatch patch25_7 ,mem_patch25 
-0x530e 012922 call l2cap_malloc_get_full_map 
-0x530f 012923 fetch 1 ,mem_used_map 
-0x5310 012924 rtn blank 
-0x5311 012925 call l2cap_lpm_save_calc_len 
-0x5312 012926 arg l2cap_lpm_txbuf_len ,temp 
-0x5313 012927 isub temp ,null 
-0x5314 012928 branch l2cap_lpm_get_wake_lock ,positive 
-0x5315 012929 call l2cap_lpm_put_wake_lock 
-0x5316 012930 arg mem_l2cap_lpm_txbuf ,contw 
-0x5317 012931 arg mem_tx_fifo0 ,rega 
-:      012932 l2cap_lpm_save_txbuf_loop:
-0x5318 012933 setarg mem_tx_fifo_end 
-0x5319 012934 isub rega ,null 
-0x531a 012935 rtn zero 
-0x531b 012936 ifetch 1 ,rega 
-0x531c 012937 increase 1 ,rega 
-0x531d 012938 nbranch l2cap_lpm_save_txbuf_nempty ,blank 
-0x531e 012939 istore 2 ,contw 
-0x531f 012940 increase 2 ,rega 
-0x5320 012941 branch l2cap_lpm_save_txbuf_loop 
-:      012942 l2cap_lpm_save_txbuf_nempty:
-0x5321 012943 ifetch 2 ,rega 
-0x5322 012944 increase 2 ,rega 
-0x5323 012945 copy pdata ,contr 
-0x5324 012946 ifetch 2 ,contr 
-0x5325 012947 istore 2 ,contw 
-0x5326 012948 copy pdata ,loopcnt 
-0x5327 012949 increase 2 ,loopcnt 
-0x5328 012950 call memcpy 
-0x5329 012951 branch l2cap_lpm_save_txbuf_loop 
-:      012953 l2cap_lpm_load_txbuf:
-0x532a 012954 set1 mark_ext_patch ,mark 
-0x532b 012955 bpatch patch26_0 ,mem_patch26 
-0x532c 012956 call l2cap_malloc_get_full_map 
-0x532d 012957 fetch 1 ,mem_used_map 
-0x532e 012958 rtn blank 
-0x532f 012959 arg mem_tx_fifo0_ptr ,rega 
-0x5330 012960 increase -3 ,rega 
-0x5331 012961 arg mem_l2cap_lpm_txbuf ,contr 
-:      012962 l2cap_lpm_load_txbuf_loop:
-0x5332 012963 increase 3 ,rega 
-0x5333 012964 setarg mem_tx_fifo_end + 1 
-0x5334 012965 isub rega ,null 
-0x5335 012966 rtn zero 
-0x5336 012967 ifetch 2 ,contr 
-0x5337 012968 branch l2cap_lpm_load_txbuf_loop ,blank 
-0x5338 012969 increase 4 ,pdata 
-0x5339 012970 copy pdata ,loopcnt 
-0x533a 012971 copy contr ,regb 
-0x533b 012972 ifetch 2 ,rega 
-0x533c 012973 copy pdata ,contw 
-0x533d 012974 copy regb ,contr 
-0x533e 012975 increase -2 ,contr 
-0x533f 012976 call memcpy 
-0x5340 012977 branch l2cap_lpm_load_txbuf_loop 
-:      012985 le_init_param:
-0x5341 012986 rtn wake 
-0x5342 012987 setarg param_le_scan_interval 
-0x5343 012988 store 2 ,mem_le_scan_interval 
-0x5344 012989 setarg param_le_scan_window 
-0x5345 012990 store 2 ,mem_le_scan_window 
-0x5346 012991 rtn 
-:      012993 le_init_att:
-0x5347 012994 arg notify_handle ,temp 
-0x5348 012995 call le_att_get_handle_ptr 
-0x5349 012996 add contr ,1 ,pdata 
-0x534a 012997 store 2 ,mem_le_notify_attr_start 
-0x534b 012998 rtn 
-:      013000 le_init_conn:
-0x534c 013001 set1 mark_ext_patch ,mark 
-0x534d 013002 bpatch patch26_2 ,mem_patch26 
-0x534e 013003 disable wake 
-0x534f 013004 jam 1 ,mem_app_state 
-0x5350 013005 jam 1 ,mem_le_conn_handle 
-0x5351 013006 jam 3 ,mem_le_state 
-0x5352 013007 jam 1 ,mem_le_arq 
-0x5353 013008 setarg -1 
-0x5354 013009 store 2 ,mem_le_event_count 
-0x5355 013010 force 0 ,pdata 
-0x5356 013011 store 1 ,mem_le_conn_sm 
-0x5357 013012 store 1 ,mem_le_ch 
-0x5358 013013 store 1 ,mem_le_op 
-0x5359 013014 store 3 ,mem_sniff_rcv 
-0x535a 013015 store 3 ,mem_sniff_lost 
-0x535b 013016 store 5 ,mem_le_pcnt_tx 
-0x535c 013017 set1 39 ,pdata 
-0x535d 013018 store 5 ,mem_le_pcnt_rx 
-0x535e 013019 branch le_supervision_flush 
-:      013021 le_init_master:
-0x535f 013022 set1 mark_ext_patch ,mark 
-0x5360 013023 bpatch patch26_3 ,mem_patch26 
-0x5361 013024 enable master 
-0x5362 013025 jam lemode_master ,mem_le_mode 
-0x5363 013026 jam 1 ,mem_le_att_handle 
-0x5364 013027 jam 1 ,mem_le_search_handle_start 
-0x5365 013028 setarg 0xffff 
-0x5366 013029 store 2 ,mem_le_search_handle_end 
-0x5367 013030 force 0 ,pdata 
-0x5368 013031 store 5 ,mem_le_pcnt_rx 
-0x5369 013032 set1 39 ,pdata 
-0x536a 013033 store 5 ,mem_le_pcnt_tx 
-0x536b 013034 branch le_init_conn 
-:      013037 le_init_slave:
-0x536c 013038 set1 mark_ext_patch ,mark 
-0x536d 013039 bpatch patch26_4 ,mem_patch26 
-0x536e 013040 disable master 
-0x536f 013041 jam lemode_slave ,mem_le_mode 
-0x5370 013042 jam 0 ,mem_le_adv_enable 
-0x5371 013043 jam 0 ,mem_lpm_current_mult 
-0x5372 013044 branch le_init_conn 
-:      013050 le_dispatch:
-0x5373 013051 call le_enable 
-0x5374 013052 call le_scan 
-0x5375 013053 call le_adv 
-0x5376 013054 branch le_disable 
-:      013056 le_conn_dispatch:
-0x5377 013057 set1 mark_ext_patch ,mark 
-0x5378 013058 bpatch patch26_5 ,mem_patch26 
-0x5379 013059 call le_enable 
-0x537a 013060 call app_process_ble 
-0x537b 013061 fetch 1 ,mem_le_mode 
-0x537c 013062 beq lemode_master ,le_master_dispatch 
-0x537d 013063 branch le_slave_dispatch 
-:      013069 le_master_dispatch:
-0x537e 013070 set1 mark_ext_patch ,mark 
-0x537f 013071 bpatch patch26_6 ,mem_patch26 
-0x5380 013072 enable master 
-0x5381 013073 call le_supervision_update 
-0x5382 013074 branch le_master_disconn ,positive 
-0x5383 013075 call check_ble_disabled 
-0x5384 013076 call le_setup 
-0x5385 013077 call le_prepare_tx 
-0x5386 013078 disable match 
-0x5387 013079 call le_transmit_receive_sifs 
-0x5388 013080 nrtn match 
-0x5389 013081 set1 mark_ext_patch ,mark 
-0x538a 013082 bpatch patch26_7 ,mem_patch26 
-0x538b 013083 fetch 1 ,mem_le_conn_rcv 
-0x538c 013084 increase 1 ,pdata 
-0x538d 013085 store 1 ,mem_le_conn_rcv 
-0x538e 013086 call le_acknowledge 
-0x538f 013087 call le_conn_sm_master 
-0x5390 013088 disable master 
-0x5391 013089 rtn 
-:      013091 le_master_disconn:
-0x5392 013092 call le_disconnect 
-0x5393 013093 disable master 
-0x5394 013094 rtn 
-:      013099 le_slave_dispatch:
-0x5395 013100 set1 mark_ext_patch ,mark 
-0x5396 013101 bpatch patch27_0 ,mem_patch27 
-0x5397 013102 disable attempt 
-0x5398 013103 call le_supervision_update 
-0x5399 013104 branch le_slave_disconn ,positive 
-0x539a 013105 call check_ble_disabled 
-0x539b 013106 call le_setup 
-0x539c 013107 call le_receive_slave 
-0x539d 013108 nbranch le_slave_unsync ,match 
-:      013109 le_slave_match:
-0x539e 013110 set1 mark_ext_patch ,mark 
-0x539f 013111 bpatch patch27_1 ,mem_patch27 
-0x53a0 013112 call le_got_first_packet 
-0x53a1 013113 call le_acknowledge 
-0x53a2 013114 call le_prepare_tx 
-0x53a3 013115 fetch 1 ,mem_le_rxbuf 
-0x53a4 013116 bbit1 md ,le_slave_more_data 
-0x53a5 013117 call le_xtype_fifo_is_empty 
-0x53a6 013118 nbranch le_slave_more_data ,blank 
-:      013119 le_slave_transmit_last:
-0x53a7 013120 set1 mark_ext_patch ,mark 
-0x53a8 013121 bpatch patch27_2 ,mem_patch27 
-0x53a9 013122 call le_transmit_norx 
-:      013123 le_slave_cont:
-0x53aa 013124 call check_51cmd 
-0x53ab 013125 fetch 1 ,mem_le_op 
-0x53ac 013126 bbit1 op_disconn ,le_slave_disconn 
-:      013127 le_slave_unsync:
-0x53ad 013128 set1 mark_ext_patch ,mark 
-0x53ae 013129 bpatch patch27_3 ,mem_patch27 
-0x53af 013130 call le_savelist 
-0x53b0 013131 call le_lpm_set_mult 
-0x53b1 013132 call le_update_channel_map 
-0x53b2 013133 call le_update_param 
-0x53b3 013134 branch calc_clke_offset 
-:      013136 le_slave_more_data:
-0x53b4 013137 set1 mark_ext_patch ,mark 
-0x53b5 013138 bpatch patch27_4 ,mem_patch27 
-0x53b6 013139 enable attempt 
-0x53b7 013140 call le_transmit_receive_sifs 
-0x53b8 013141 branch le_slave_match ,match 
-0x53b9 013142 branch le_slave_cont 
-:      013144 le_slave_disconn:
-:      013147 le_disconnect:
-0x53ba 013148 set1 mark_ext_patch ,mark 
-0x53bb 013149 bpatch patch27_5 ,mem_patch27 
-0x53bc 013150 call le_clear_connection_info 
-0x53bd 013151 call app_disconn_reason_collect_ble 
-0x53be 013152 jam bt_evt_le_disconnected ,mem_fifo_temp 
-0x53bf 013153 branch ui_ipc_send_event 
-:      013155 le_clear_connection_info:
-0x53c0 013156 fetcht 1 ,mem_le_conn_handle 
-0x53c1 013157 jam hci_error_connection_timeout ,mem_hci_disconn_reason 
-0x53c2 013158 call hci_send_disconn_complete 
-0x53c3 013159 jam 0 ,mem_le_conn_handle 
-0x53c4 013160 jam lemode_idle ,mem_le_mode 
-0x53c5 013161 jam 0 ,mem_le_state 
-0x53c6 013162 jam 0 ,mem_app_state 
-0x53c7 013163 rtn 
-:      013165 le_got_first_packet:
-0x53c8 013166 fetch 1 ,mem_le_conn_rcv 
-0x53c9 013167 increase 1 ,pdata 
-0x53ca 013168 store 1 ,mem_le_conn_rcv 
-0x53cb 013169 fetch 1 ,mem_le_state 
-0x53cc 013170 rtnbit1 lestate_got_first_packet 
-0x53cd 013171 set1 lestate_got_first_packet 
-0x53ce 013172 store 1 ,mem_le_state 
-0x53cf 013173 setarg 0 
-0x53d0 013174 store 4 ,mem_le_transmit_window 
-0x53d1 013175 rtn 
-:      013180 le_enable:
-0x53d2 013181 set1 mark_ext_patch ,mark 
-0x53d3 013182 bpatch patch27_6 ,mem_patch27 
-0x53d4 013183 enable le 
-0x53d5 013184 hjam 7 ,rfen_ulp 
-0x53d6 013185 branch check_ble_disabled 
-:      013187 le_disable:
-0x53d7 013188 set1 mark_ext_patch ,mark 
-0x53d8 013189 bpatch patch27_7 ,mem_patch27 
-0x53d9 013190 disable le 
-0x53da 013191 hjam 3 ,rfen_ulp 
-0x53db 013192 arg 0 ,stop_watch 
-0x53dc 013193 rtn 
-:      013195 le_prep:
-0x53dd 013196 disable enable_crc 
-0x53de 013197 disable enable_white 
-0x53df 013198 fetch 3 ,mem_le_crcinit 
-0x53e0 013199 iforce crc24_init 
-0x53e1 013200 fetch 1 ,mem_le_ch_mapped 
-0x53e2 013201 reverse pdata ,temp 
-0x53e3 013202 set1 1 ,temp 
-0x53e4 013203 rshift temp ,white_init 
-0x53e5 013204 rtn 
-:      013207 lerx_setfreq:
-0x53e6 013208 call le_setfreq 
-0x53e7 013209 call set_freq_rx 
-0x53e8 013210 setarg param_pll_setup 
-0x53e9 013211 call sleep 
-0x53ea 013212 branch rf_rx_enable 
-:      013214 letx_setfreq:
-0x53eb 013215 branch txon ,match 
-0x53ec 013216 call le_setfreq 
-0x53ed 013217 branch set_freq_tx 
-:      013218 le_setfreq:
-0x53ee 013219 set1 mark_ext_patch ,mark 
-0x53ef 013220 bpatch patch28_0 ,mem_patch28 
-0x53f0 013221 call set_sync_on 
-0x53f1 013222 fetch 1 ,mem_le_testtype 
-0x53f2 013223 nbranch le_ctf_test ,blank 
-0x53f3 013224 fetch 1 ,mem_le_ch_mapped 
-0x53f4 013225 sub pdata ,36 ,null 
-0x53f5 013226 branch le_ctf_normal ,positive 
-0x53f6 013227 force 0 ,temp 
-0x53f7 013228 rtneq 37 
-0x53f8 013229 force 24 ,temp 
-0x53f9 013230 rtneq 38 
-0x53fa 013231 force 78 ,temp 
-0x53fb 013232 rtn 
-:      013234 le_ctf_normal:
-0x53fc 013235 sub pdata ,10 ,null 
-0x53fd 013236 branch le_ctf_low ,positive 
-0x53fe 013237 increase 1 ,pdata 
-:      013239 le_ctf_low:
-0x53ff 013240 lshift pdata ,pdata 
-0x5400 013241 add pdata ,2 ,temp 
-0x5401 013242 rtn 
-:      013244 le_ctf_test:
-0x5402 013245 fetch 1 ,mem_le_ch_mapped 
-0x5403 013246 lshift pdata ,temp 
-0x5404 013247 rtn 
-:      013249 le_sca_map:
-0x5405 013250 arg 500 ,temp 
-0x5406 013251 rtn blank 
-0x5407 013252 arg 250 ,temp 
-0x5408 013253 rtneq 1 
-0x5409 013254 arg 150 ,temp 
-0x540a 013255 rtneq 2 
-0x540b 013256 arg 100 ,temp 
-0x540c 013257 rtneq 3 
-0x540d 013258 arg 75 ,temp 
-0x540e 013259 rtneq 4 
-0x540f 013260 arg 50 ,temp 
-0x5410 013261 rtneq 5 
-0x5411 013262 arg 40 ,temp 
-0x5412 013263 rtneq 6 
-0x5413 013264 arg 20 ,temp 
-0x5414 013265 rtn 
-:      013269 le_adv_access:
-0x5415 013270 setarg 0x8e89be 
-0x5416 013271 lshift8 pdata ,pdata 
-0x5417 013272 or_into 0xd6 ,pdata 
-0x5418 013273 iforce access 
-0x5419 013274 setarg 0x555555 
-0x541a 013275 store 3 ,mem_le_crcinit 
-0x541b 013276 rtn 
-:      013278 le_setup:
-0x541c 013279 set1 mark_ext_patch ,mark 
-0x541d 013280 bpatch patch28_1 ,mem_patch28 
-0x541e 013281 enable swfine 
-0x541f 013282 fetch 4 ,mem_le_access 
-0x5420 013283 iforce access 
-0x5421 013284 call le_map_channel 
-0x5422 013285 setarg 0x200 
-0x5423 013286 branch le_setup_master ,master 
-0x5424 013287 fetch 2 ,mem_le_receive_window 
-0x5425 013288 rshift pdata ,pdata 
-:      013289 le_setup_master:
-0x5426 013290 arg param_pll_setup ,temp 
-0x5427 013291 iadd temp ,pdata 
-0x5428 013292 call ahead_window 
-0x5429 013293 deposit clke 
-0x542a 013294 store 6 ,mem_le_rxon_ts 
-0x542b 013295 rtn 
-:      013297 le_next_adv_channel:
-0x542c 013298 set1 mark_ext_patch ,mark 
-0x542d 013299 bpatch patch28_2 ,mem_patch28 
-0x542e 013300 fetch 1 ,mem_le_ch_mapped 
-0x542f 013301 increase 1 ,pdata 
-0x5430 013302 store 1 ,mem_le_ch_mapped 
-0x5431 013303 rtnne 40 
-0x5432 013304 jam 37 ,mem_le_ch_mapped 
-0x5433 013305 rtn 
-:      013307 le_context_nexthop:
-0x5434 013308 set1 mark_ext_patch ,mark 
-0x5435 013309 bpatch patch28_3 ,mem_patch28 
-0x5436 013310 add rega ,coffset_mode ,contr 
-0x5437 013311 ifetch 1 ,contr 
-0x5438 013312 rtnbit0 mode_le 
-0x5439 013313 add rega ,coffset_le_event_cnt ,contw 
-0x543a 013314 ifetch 2 ,contw 
-0x543b 013315 increase 1 ,pdata 
-0x543c 013316 istore 2 ,contw 
-0x543d 013317 add rega ,coffset_le_hop ,contr 
-0x543e 013318 ifetch 1 ,contr 
-0x543f 013319 add rega ,coffset_le_ch ,contw 
-0x5440 013320 ifetcht 1 ,contw 
-0x5441 013321 iadd temp ,pdata 
-0x5442 013322 sub pdata ,36 ,null 
-0x5443 013323 branch le_nexthop_nowrap ,positive 
-0x5444 013324 increase -37 ,pdata 
-:      013325 le_nexthop_nowrap:
-0x5445 013326 istore 1 ,contw 
-0x5446 013327 rtn 
-:      013330 le_calc_channel_map:
-0x5447 013331 set1 mark_ext_patch ,mark 
-0x5448 013332 bpatch patch28_4 ,mem_patch28 
-0x5449 013333 fetch 5 ,mem_le_channel_map 
-0x544a 013334 force 0 ,temp 
-0x544b 013335 force 37 ,loopcnt 
-:      013336 le_count_channels_loop:
-0x544c 013337 bbit0 0 ,le_count_channels_notused 
-0x544d 013338 increase 1 ,temp 
-:      013339 le_count_channels_notused:
-0x544e 013340 rshift pdata ,pdata 
-0x544f 013341 loop le_count_channels_loop 
-0x5450 013342 add temp ,-1 ,pdata 
-0x5451 013343 store 1 ,mem_le_channels 
-0x5452 013344 rtn 
-:      013346 le_map_channel:
-0x5453 013347 set1 mark_ext_patch ,mark 
-0x5454 013348 bpatch patch28_5 ,mem_patch28 
-0x5455 013349 fetch 1 ,mem_le_ch 
-0x5456 013350 iforce queue 
-0x5457 013351 fetcht 5 ,mem_le_channel_map 
-0x5458 013352 qisolate1 temp 
-0x5459 013353 branch le_map_channel_end ,true 
-:      013354 le_map_channel_next:
-0x545a 013355 set1 mark_ext_patch ,mark 
-0x545b 013356 bpatch patch28_6 ,mem_patch28 
-0x545c 013357 fetch 1 ,mem_le_channels 
-0x545d 013358 isub queue ,pdata 
-0x545e 013359 branch le_map_channel_cont ,positive 
-0x545f 013360 sub pdata ,-1 ,queue 
-0x5460 013361 branch le_map_channel_next 
-:      013362 le_map_channel_cont:
-0x5461 013363 copy queue ,loopcnt 
-0x5462 013364 force 0 ,queue 
-:      013365 le_map_channel_loop:
-0x5463 013366 qisolate1 temp 
-0x5464 013367 branch le_map_channel_skip ,true 
-0x5465 013368 increase 1 ,loopcnt 
-:      013369 le_map_channel_skip:
-0x5466 013370 deposit loopcnt 
-0x5467 013371 branch le_map_channel_end ,blank 
-0x5468 013372 increase 1 ,queue 
-0x5469 013373 increase -1 ,loopcnt 
-0x546a 013374 branch le_map_channel_loop 
-:      013375 le_map_channel_end:
-0x546b 013376 deposit queue 
-0x546c 013377 store 1 ,mem_le_ch_mapped 
-0x546d 013378 rtn 
-:      013381 le_wait_tx:
-0x546e 013382 branch le_wait_master ,master 
-0x546f 013383 until null ,timeout 
-0x5470 013384 rtn 
-:      013386 le_wait_master:
-0x5471 013387 arg 0xea0 ,timeup 
-0x5472 013388 until clkn_rt ,meet 
-0x5473 013389 rtn 
-:      013391 le_receive_adv:
-0x5474 013392 disable swfine 
-0x5475 013393 fetch 2 ,mem_le_scan_window 
-0x5476 013394 copy pdata ,timeup 
-0x5477 013395 branch le_receive_packet 
-:      013398 le_receive_slave:
-0x5478 013399 set1 mark_ext_patch ,mark 
-0x5479 013400 bpatch patch28_7 ,mem_patch28 
-0x547a 013401 enable swfine 
-0x547b 013402 fetch 2 ,mem_le_receive_window 
-0x547c 013403 fetcht 4 ,mem_le_transmit_window 
-0x547d 013404 iadd temp ,timeup 
-:      013405 le_receive_packet:
-0x547e 013406 call lerx_setfreq 
-:      013407 le_receive_rxon:
-0x547f 013408 set1 mark_ext_patch ,mark 
-0x5480 013409 bpatch patch29_0 ,mem_patch29 
-0x5481 013410 call le_prep 
-0x5482 013411 disable match 
-0x5483 013412 enable decode_fec0 
-0x5484 013413 enable is_rx 
-0x5485 013414 disable is_tx 
-0x5486 013415 copy timeup ,stop_watch 
-0x5487 013416 correlate null ,timeout 
-0x5488 013417 branch le_receive_on_attempt ,attempt 
-0x5489 013418 copy clke ,temp 
-0x548a 013419 storet 6 ,mem_sync_clke 
-:      013420 le_receive_on_attempt:
-0x548b 013421 nbranch end_of_packet ,sync 
-0x548c 013422 branch le_receive_skip ,attempt 
-0x548d 013423 arg param_clke_cal_le ,clke_rt 
-0x548e 013424 copy bt_clk ,clke_bt 
-0x548f 013425 fetch 1 ,mem_le_state 
-0x5490 013426 bbit0 lestate_got_first_packet ,le_receive_skip 
-0x5491 013427 call lpm_adjust_clk ,wake 
-:      013428 le_receive_skip:
-0x5492 013429 set1 mark_ext_patch ,mark 
-0x5493 013430 bpatch patch29_1 ,mem_patch29 
-0x5494 013431 call save_rssi 
-0x5495 013432 enable enable_white 
-0x5496 013433 enable enable_crc 
-0x5497 013434 parse demod ,bucket ,8 
-0x5498 013435 rshift3 pwindow ,pdata 
-0x5499 013436 store 1 ,mem_le_rxbuf 
-0x549a 013437 parse demod ,bucket ,8 
-0x549b 013438 rshift3 pwindow ,pdata 
-0x549c 013439 istore 1 ,contw 
-0x549d 013440 and pdata ,0x3f ,loopcnt 
-0x549e 013441 branch lerx_nopayload ,zero 
-:      013443 lerx_loop:
-0x549f 013444 parse demod ,bucket ,8 
-0x54a0 013445 rshift3 pwindow ,pdata 
-0x54a1 013446 istore 1 ,contw 
-0x54a2 013447 loop lerx_loop 
-:      013449 lerx_nopayload:
-0x54a3 013450 set1 mark_ext_patch ,mark 
-0x54a4 013451 bpatch patch29_2 ,mem_patch29 
-0x54a5 013452 parse demod ,bucket ,24 
-0x54a6 013453 enable swfine 
-0x54a7 013454 arg param_sifs ,stop_watch 
-0x54a8 013455 rshift32 pdata ,pdata 
-0x54a9 013456 rshift16 pdata ,pdata 
-0x54aa 013457 istore 3 ,contw 
-0x54ab 013458 branch end_of_packet ,crc_failed 
-0x54ac 013459 enable match 
-0x54ad 013460 fetch 1 ,mem_last_freq 
-0x54ae 013461 add pdata ,2 ,rega 
-0x54af 013462 call rf_write_freq 
-0x54b0 013463 disable decode_fec0 
-0x54b1 013464 branch set_sync_on 
-:      013466 le_transmit_receive_sifs:
-0x54b2 013467 set1 mark_ext_patch ,mark 
-0x54b3 013468 bpatch patch29_3 ,mem_patch29 
-0x54b4 013469 call le_transmit 
-0x54b5 013470 fetcht 1 ,mem_last_freq 
-0x54b6 013471 call set_freq_rx 
-0x54b7 013472 call rf_rx_enable 
-0x54b8 013473 enable swfine 
-0x54b9 013474 arg 5000 ,timeup 
-0x54ba 013475 branch le_receive_rxon 
-:      013477 le_transmit_norx:
-0x54bb 013478 call le_transmit 
-0x54bc 013479 branch end_of_packet 
-:      013481 le_transmit:
-0x54bd 013482 set1 mark_ext_patch ,mark 
-0x54be 013483 bpatch patch29_4 ,mem_patch29 
-0x54bf 013484 call le_prep 
-0x54c0 013485 call letx_setfreq 
-0x54c1 013486 set1 txgfsk ,radio_ctrl 
-0x54c2 013487 enable encode_fec0 
-0x54c3 013488 enable is_tx 
-0x54c4 013489 disable is_rx 
-0x54c5 013490 call le_wait_tx 
-0x54c6 013491 rshift16 access ,pdata 
-0x54c7 013492 rshift8 pdata ,pdata 
-0x54c8 013493 rshift4 pdata ,pdata 
-0x54c9 013494 inject mod ,40 
-0x54ca 013495 enable enable_white 
-0x54cb 013496 enable enable_crc 
-0x54cc 013497 set1 mark_ext_patch ,mark 
-0x54cd 013498 bpatch patch29_5 ,mem_patch29 
-0x54ce 013499 fetch 1 ,mem_le_txheader 
-0x54cf 013500 inject mod ,8 
-0x54d0 013501 ifetch 1 ,contr 
-0x54d1 013502 and pdata ,0x3f ,loopcnt 
-0x54d2 013503 inject mod ,8 
-0x54d3 013504 branch letr_nopayload ,zero 
-:      013505 letr_loop:
-0x54d4 013506 ifetch 1 ,contr 
-0x54d5 013507 inject mod ,8 
-0x54d6 013508 loop letr_loop 
-:      013510 letr_nopayload:
-0x54d7 013511 enable enable_parity 
-0x54d8 013512 inject mod ,24 
-0x54d9 013513 disable enable_parity 
-0x54da 013514 until null ,tx_clear 
-0x54db 013515 nop 100 
-0x54dc 013516 disable encode_fec0 
-0x54dd 013517 rtn 
-:      013519 le_send_adv_ind:
-0x54de 013520 set1 mark_ext_patch ,mark 
-0x54df 013521 bpatch patch29_6 ,mem_patch29 
-0x54e0 013522 fetch 1 ,mem_le_adv_type 
-0x54e1 013523 beq adv_direct_ind ,le_send_adv_direct_ind 
-0x54e2 013524 fetch 1 ,mem_le_adv_own_addr_type 
-0x54e3 013525 lshift4 pdata ,pdata 
-0x54e4 013526 lshift2 pdata ,pdata 
-0x54e5 013527 store 1 ,mem_le_txheader 
-0x54e6 013528 fetcht 1 ,mem_le_adv_data_len 
-0x54e7 013529 add temp ,6 ,pdata 
-0x54e8 013530 store 1 ,mem_le_txlen 
-0x54e9 013531 fetch 6 ,mem_le_lap 
-0x54ea 013532 store 6 ,mem_le_txpayload 
-0x54eb 013533 copy temp ,loopcnt 
-0x54ec 013534 arg mem_le_adv_data ,contr 
-0x54ed 013535 call memcpy 
-0x54ee 013536 branch le_send_adv_transmit 
-:      013537 le_send_adv_direct_ind:
-0x54ef 013538 fetcht 2 ,mem_le_notify_handle 
-0x54f0 013539 call le_att_check_notification_enable 
-0x54f1 013540 copy rega ,contw 
-0x54f2 013541 setarg 1 
-0x54f3 013542 istore 1 ,contw 
-0x54f4 013543 fetch 1 ,mem_le_adv_direct_addr_type 
-0x54f5 013544 lshift4 pdata ,pdata 
-0x54f6 013545 lshift2 pdata ,pdata 
-0x54f7 013546 increase 1 ,pdata 
-0x54f8 013547 store 1 ,mem_le_txheader 
-0x54f9 013548 setarg 12 
-0x54fa 013549 store 1 ,mem_le_txlen 
-0x54fb 013550 fetch 6 ,mem_le_lap 
-0x54fc 013551 store 6 ,mem_le_txpayload 
-0x54fd 013552 fetch 6 ,mem_hci_plap 
-0x54fe 013553 istore 6 ,contw 
-:      013554 le_send_adv_transmit:
-0x54ff 013555 set1 mark_ext_patch ,mark 
-0x5500 013556 bpatch patch29_7 ,mem_patch29 
-0x5501 013557 fetch 1 ,mem_le_adv_transmit 
-0x5502 013558 increase 1 ,pdata 
-0x5503 013559 store 1 ,mem_le_adv_transmit 
-0x5504 013560 arg 1800 ,stop_watch 
-0x5505 013561 disable match 
-0x5506 013562 branch le_transmit_receive_sifs 
-:      013564 le_send_scan_request:
-0x5507 013565 set1 mark_ext_patch ,mark 
-0x5508 013566 bpatch patch2a_0 ,mem_patch2a 
-0x5509 013567 fetch 1 ,mem_le_scan_type 
-0x550a 013568 rtnne le_scan_type_active ,pdata 
-0x550b 013569 fetch 1 ,mem_le_adv_transmit 
-0x550c 013570 increase 1 ,pdata 
-0x550d 013571 store 1 ,mem_le_adv_transmit 
-0x550e 013572 arg 0x0c03 ,temp 
-0x550f 013573 fetch 1 ,mem_le_scan_own_addr_type 
-0x5510 013574 nsetflag blank ,le_sender_addr_bit ,temp 
-0x5511 013575 copy rega ,pdata 
-0x5512 013576 nsetflag blank ,le_receiver_addr_bit ,temp 
-0x5513 013577 storet 2 ,mem_le_txheader 
-0x5514 013578 fetch 6 ,mem_le_lap 
-0x5515 013579 istore 6 ,contw 
-0x5516 013580 fetch 6 ,mem_le_plap 
-0x5517 013581 istore 6 ,contw 
-0x5518 013582 branch le_transmit_receive_sifs 
-:      013585 le_send_scan_response:
-0x5519 013586 set1 mark_ext_patch ,mark 
-0x551a 013587 bpatch patch2a_1 ,mem_patch2a 
-0x551b 013588 arg scan_rsp ,temp 
-0x551c 013589 fetch 1 ,mem_le_adv_own_addr_type 
-0x551d 013590 nsetflag blank ,le_sender_addr_bit ,temp 
-0x551e 013591 storet 1 ,mem_le_txheader 
-0x551f 013592 fetcht 1 ,mem_le_scan_data_len 
-0x5520 013593 add temp ,6 ,pdata 
-0x5521 013594 store 1 ,mem_le_txlen 
-0x5522 013595 fetch 6 ,mem_le_lap 
-0x5523 013596 store 6 ,mem_le_txpayload 
-0x5524 013597 arg mem_le_scan_data ,contr 
-0x5525 013598 copy temp ,loopcnt 
-0x5526 013599 call memcpy 
-0x5527 013600 branch le_transmit_norx 
-:      013603 le_connect_request:
-0x5528 013604 set1 mark_ext_patch ,mark 
-0x5529 013605 bpatch patch2a_2 ,mem_patch2a 
-0x552a 013606 force -1 ,pdata 
-0x552b 013607 setsect 2 ,1 
-0x552c 013608 store 5 ,mem_le_channel_map 
-0x552d 013609 call le_calc_channel_map 
-0x552e 013610 force 4 ,loopcnt 
-0x552f 013611 arg mem_le_access ,contw 
-0x5530 013612 call generate_random_loop 
-0x5531 013613 fetch 2 ,mem_le_conn_superto 
-0x5532 013614 store 2 ,mem_le_superto 
-:      013615 le_con_req_hop_retry:
-0x5533 013616 random pdata 
-0x5534 013617 and_into 0xf ,pdata 
-0x5535 013618 sub pdata ,4 ,null 
-0x5536 013619 branch le_con_req_hop_retry ,positive 
-0x5537 013620 store 1 ,mem_le_hop 
-0x5538 013621 store 1 ,mem_tmp1 
-0x5539 013622 set1 mark_ext_patch ,mark 
-0x553a 013623 bpatch patch2a_3 ,mem_patch2a 
-0x553b 013624 fetcht 2 ,mem_le_conn_interval 
-0x553c 013625 storet 2 ,mem_le_tsniff 
-0x553d 013626 copy temp ,regc 
-0x553e 013627 add clkn_bt ,7 ,pdata 
-0x553f 013628 idiv regc 
-0x5540 013629 call wait_div_end 
-0x5541 013630 remainder rega 
-0x5542 013631 isub rega ,pdata 
-0x5543 013632 iadd regc ,pdata 
-0x5544 013633 fetcht 2 ,mem_le_dsniff 
-0x5545 013634 iadd temp ,pdata 
-0x5546 013635 store 4 ,mem_le_anchor 
-0x5547 013636 isub clkn_bt ,rega 
-0x5548 013637 increase -6 ,rega 
-0x5549 013638 arg 0x2205 ,regb 
-0x554a 013639 fetch 1 ,mem_le_conn_own_addr_type 
-0x554b 013640 nsetflag blank ,le_sender_addr_bit ,regb 
-0x554c 013641 fetch 1 ,mem_le_conn_peer_addr_type 
-0x554d 013642 nsetflag blank ,le_receiver_addr_bit ,regb 
-0x554e 013643 copy regb ,pdata 
-0x554f 013644 store 2 ,mem_le_txheader 
-0x5550 013645 fetch 6 ,mem_le_lap 
-0x5551 013646 istore 6 ,contw 
-0x5552 013647 fetch 6 ,mem_le_plap 
-0x5553 013648 istore 6 ,contw 
-0x5554 013649 fetch 4 ,mem_le_access 
-0x5555 013650 istore 4 ,contw 
-0x5556 013651 random pdata 
-0x5557 013652 istore 2 ,contw 
-0x5558 013653 random pdata 
-0x5559 013654 istore 1 ,contw 
-0x555a 013655 force 2 ,pdata 
-0x555b 013656 istore 1 ,contw 
-0x555c 013657 rshift2 rega ,pdata 
-0x555d 013658 istore 2 ,contw 
-0x555e 013659 rshift2 regc ,pdata 
-0x555f 013660 istore 2 ,contw 
-0x5560 013661 set1 mark_ext_patch ,mark 
-0x5561 013662 bpatch patch2a_4 ,mem_patch2a 
-0x5562 013663 fetch 2 ,mem_le_conn_latency 
-0x5563 013664 istore 2 ,contw 
-0x5564 013665 fetch 2 ,mem_le_conn_superto 
-0x5565 013666 istore 2 ,contw 
-0x5566 013667 fetch 5 ,mem_le_channel_map 
-0x5567 013668 istore 5 ,contw 
-0x5568 013669 fetch 1 ,mem_le_hop 
-0x5569 013670 arg param_le_sca ,temp 
-0x556a 013671 ior temp ,pdata 
-0x556b 013672 istore 1 ,contw 
-0x556c 013673 call le_transmit_norx 
-0x556d 013674 setarg mem_le_txheader 
-0x556e 013675 add pdata ,18 ,contr 
-0x556f 013676 ifetch 3 ,contr 
-0x5570 013677 store 3 ,mem_le_crcinit 
-0x5571 013678 rtn 
-:      013680 le_init_adv:
-0x5572 013681 set1 mark_ext_patch ,mark 
-0x5573 013682 bpatch patch2a_5 ,mem_patch2a 
-0x5574 013683 disable master 
-0x5575 013684 branch le_adv_access 
-:      013688 le_update_param:
-0x5576 013689 set1 mark_ext_patch ,mark 
-0x5577 013690 bpatch patch2a_6 ,mem_patch2a 
-0x5578 013691 fetch 1 ,mem_le_state 
-0x5579 013692 rtnbit0 lestate_update_param 
-0x557a 013693 fetch 2 ,mem_le_event_count 
-0x557b 013694 fetcht 2 ,mem_le_instant 
-0x557c 013695 isub temp ,pdata 
-0x557d 013696 nrtn positive 
-0x557e 013697 fetch 1 ,mem_le_state 
-0x557f 013698 set0 lestate_update_param ,pdata 
-0x5580 013699 set0 lestate_got_first_packet ,pdata 
-0x5581 013700 store 1 ,mem_le_state 
-0x5582 013701 fetch 4 ,mem_le_anchor 
-0x5583 013702 fetcht 2 ,mem_le_tsniff 
-0x5584 013703 isub temp ,rega 
-0x5585 013704 set1 mark_ext_patch ,mark 
-0x5586 013705 bpatch patch2a_7 ,mem_patch2a 
-0x5587 013706 fetch 1 ,mem_le_new_param 
-0x5588 013707 store 1 ,mem_le_window_size 
-0x5589 013708 ifetcht 2 ,contr 
-0x558a 013709 ifetch 2 ,contr 
-0x558b 013710 lshift2 pdata ,pdata 
-0x558c 013711 store 2 ,mem_le_tsniff 
-0x558d 013712 lshift2 temp ,temp 
-0x558e 013713 iadd temp ,pdata 
-0x558f 013714 ifetcht 4 ,contr 
-0x5590 013715 storet 4 ,mem_le_slave_latency 
-0x5591 013716 iadd rega ,pdata 
-0x5592 013717 store 4 ,mem_le_anchor 
-0x5593 013718 branch le_receive_window_size 
-:      013720 le_update_channel_map:
-0x5594 013721 set1 mark_ext_patch ,mark 
-0x5595 013722 bpatch patch2b_0 ,mem_patch2b 
-0x5596 013723 fetch 1 ,mem_le_state 
-0x5597 013724 rtnbit0 lestate_update_map 
-0x5598 013725 fetch 2 ,mem_le_event_count 
-0x5599 013726 fetcht 2 ,mem_le_instant 
-0x559a 013727 isub temp ,pdata 
-0x559b 013728 nrtn positive 
-0x559c 013729 fetch 1 ,mem_le_state 
-0x559d 013730 set0 lestate_update_map ,pdata 
-0x559e 013731 store 1 ,mem_le_state 
-0x559f 013732 fetch 5 ,mem_le_new_map 
-0x55a0 013733 store 5 ,mem_le_channel_map 
-0x55a1 013734 branch le_calc_channel_map 
-:      013737 le_acknowledge:
-0x55a2 013738 set1 mark_ext_patch ,mark 
-0x55a3 013739 bpatch patch2b_1 ,mem_patch2b 
-0x55a4 013740 call le_supervision_flush 
-0x55a5 013741 call le_check_wak 
-0x55a6 013742 fetch 1 ,mem_le_rxbuf 
-0x55a7 013743 rshift pdata ,pdata 
-0x55a8 013744 ixor temp ,pdata 
-0x55a9 013745 isolate1 nesn ,pdata 
-0x55aa 013746 setflag true ,mark_old_packet ,mark 
-0x55ab 013747 fetch 1 ,mem_le_rxbuf + 1 
-0x55ac 013748 branch le_ack_unenc ,blank 
-0x55ad 013749 fetch 1 ,mem_le_state 
-0x55ae 013750 bbit0 lestate_encryption ,le_ack_unenc 
-0x55af 013751 call load_sk 
-0x55b0 013752 call le_decrypt 
-0x55b1 013753 nrtn blank 
-:      013754 le_ack_unenc:
-0x55b2 013755 rtnmark1 mark_old_packet 
-0x55b3 013756 fetcht 1 ,mem_le_arq 
-0x55b4 013757 setflip nesn ,temp 
-0x55b5 013758 storet 1 ,mem_le_arq 
-0x55b6 013759 branch le_parse 
-:      013761 le_check_wak:
-0x55b7 013762 set1 mark_ext_patch ,mark 
-0x55b8 013763 bpatch patch2b_2 ,mem_patch2b 
-0x55b9 013764 fetcht 1 ,mem_le_arq 
-0x55ba 013765 isolate0 wak ,temp 
-0x55bb 013766 rtn true 
-0x55bc 013767 fetch 1 ,mem_le_rxbuf 
-0x55bd 013768 lshift pdata ,pdata 
-0x55be 013769 ixor temp ,pdata 
-0x55bf 013770 rtnbit0 sn 
-0x55c0 013771 set0 wak ,temp 
-0x55c1 013772 setflip sn ,temp 
-0x55c2 013773 storet 1 ,mem_le_arq 
-0x55c3 013774 compare 3 ,temp ,3 
-0x55c4 013775 nrtn true 
-0x55c5 013776 fetch 1 ,mem_le_txpayload 
-0x55c6 013777 rtnne ll_start_enc_req 
-0x55c7 013778 fetch 1 ,mem_le_state 
-0x55c8 013779 set1 lestate_encryption ,pdata 
-0x55c9 013780 store 1 ,mem_le_state 
-0x55ca 013781 rtn 
-:      013783 le_wait_adv:
-0x55cb 013784 set1 mark_ext_patch ,mark 
-0x55cc 013785 bpatch patch2b_3 ,mem_patch2b 
-0x55cd 013786 call le_next_adv_channel 
-0x55ce 013787 call le_receive_adv 
-0x55cf 013788 fetch 1 ,mem_le_adv_waitcnt 
-0x55d0 013789 increase 1 ,pdata 
-0x55d1 013790 store 1 ,mem_le_adv_waitcnt 
-0x55d2 013791 rtn 
-:      013793 le_scan:
-0x55d3 013794 set1 mark_ext_patch ,mark 
-0x55d4 013795 bpatch patch2b_4 ,mem_patch2b 
-0x55d5 013796 fetch 1 ,mem_le_scan_enable 
-0x55d6 013797 rtnne le_scan_enable 
-0x55d7 013798 arg le_scan_interval_timer ,queue 
-0x55d8 013799 call timer_check 
-0x55d9 013800 nrtn blank 
-0x55da 013801 fetch 2 ,mem_le_scan_interval 
-0x55db 013802 fetcht 2 ,mem_le_scan_window 
-0x55dc 013803 isub temp ,pdata 
-0x55dd 013804 arg le_scan_interval_timer ,queue 
-0x55de 013805 call timer_init 
-0x55df 013806 disable master 
-0x55e0 013807 call le_init_adv 
-0x55e1 013808 call le_wait_adv 
-0x55e2 013809 nrtn match 
-0x55e3 013810 set1 mark_ext_patch ,mark 
-0x55e4 013811 bpatch patch2b_5 ,mem_patch2b 
-0x55e5 013812 fetch 6 ,mem_le_rxbuf + 2 
-0x55e6 013813 store 6 ,mem_le_plap 
-0x55e7 013814 call le_scan_dongle 
-0x55e8 013815 call le_scan_addr_to_uart 
-0x55e9 013817 fetch 1 ,mem_le_adv_rcv 
-0x55ea 013818 increase 1 ,pdata 
-0x55eb 013819 store 1 ,mem_le_adv_rcv 
-0x55ec 013820 call le_create_conn 
-0x55ed 013821 rtn master 
-0x55ee 013822 call hci_send_le_adv_report_event 
-0x55ef 013823 call le_send_scan_request 
-0x55f0 013824 nrtn match 
-0x55f1 013825 set1 mark_ext_patch ,mark 
-0x55f2 013826 bpatch patch2b_6 ,mem_patch2b 
-0x55f3 013827 fetch 1 ,mem_le_scanrsp_rcv 
-0x55f4 013828 increase 1 ,pdata 
-0x55f5 013829 store 1 ,mem_le_scanrsp_rcv 
-0x55f6 013830 fetch 9 ,mem_le_rxbuf + 8 
-0x55f7 013831 store 9 ,mem_tmp_buffer 
-0x55f8 013832 branch hci_send_le_adv_report_event 
-:      013834 le_create_conn:
-0x55f9 013835 set1 mark_ext_patch ,mark 
-0x55fa 013836 bpatch patch2b_7 ,mem_patch2b 
-0x55fb 013837 fetch 1 ,mem_cmd_le_create_conn 
-0x55fc 013838 rtnne hci_cmd_le_create_conn ,pdata 
-0x55fd 013839 fetch 6 ,mem_le_plap 
-0x55fe 013840 fetcht 6 ,mem_le_conn_peer_addr 
-0x55ff 013841 isub temp ,null 
-0x5600 013842 nrtn zero 
-0x5601 013843 call context_new 
-0x5602 013844 nrtn zero 
-0x5603 013845 call le_connect_request 
-0x5604 013846 call le_init_master 
-0x5605 013847 set1 mark_ext_patch ,mark 
-0x5606 013848 bpatch patch2c_0 ,mem_patch2c 
-0x5607 013849 jam 0 ,mem_hci_cmd 
-0x5608 013850 jam 0 ,mem_le_peer_sca 
-0x5609 013851 fetch 1 ,mem_device_option 
-0x560a 013852 bne dvc_op_dongle ,le_create_conn_ndongle 
-0x560b 013853 jam conn_sm_send_write_req ,mem_le_conn_sm 
-:      013854 le_create_conn_ndongle:
-0x560c 013855 arg 0 ,temp 
-0x560d 013856 call hci_send_le_conn_complete 
-0x560e 013857 jam 0 ,mem_le_scan_enable 
-0x560f 013858 jam 0 ,mem_cmd_le_create_conn 
-0x5610 013859 jam xt_ll_version_ind ,mem_fifo_temp 
-0x5611 013860 call le_xtype_fifo_in 
-0x5612 013861 branch context_save 
-:      013863 le_scan_check_sender_addr_type:
-0x5613 013864 arg 1 ,rega 
-0x5614 013865 fetch 1 ,mem_le_rxbuf 
-0x5615 013866 rtnbit1 le_sender_addr_bit 
-0x5616 013867 arg 0 ,rega 
-0x5617 013868 rtn 
-:      013870 le_xtype_fifo_count:
-0x5618 013871 arg mem_le_xtype_fifo ,contr 
-0x5619 013872 branch fifo_content_count 
-:      013874 le_xtype_fifo_is_empty:
-0x561a 013875 arg mem_le_xtype_fifo ,rega 
-0x561b 013876 branch fifo_is_empty 
-:      013878 le_xtype_fifo_is_full:
-0x561c 013879 arg mem_le_xtype_fifo ,rega 
-0x561d 013880 branch fifo_is_full 
-:      013882 le_xtype_fifo_is_near_full:
-0x561e 013883 arg mem_le_xtype_fifo ,rega 
-0x561f 013884 branch fifo_is_near_full 
-:      013886 le_xtype_fifo_in:
-0x5620 013887 arg mem_le_xtype_fifo ,rega 
-0x5621 013888 branch fifo_in 
-:      013890 le_prepare_tx:
-0x5622 013891 set1 mark_ext_patch ,mark 
-0x5623 013892 bpatch patch2c_1 ,mem_patch2c 
-0x5624 013893 fetch 1 ,mem_le_arq 
-0x5625 013894 rtnbit1 wak 
-0x5626 013895 arg mem_le_xtype_fifo ,rega 
-0x5627 013896 call fifo_out 
-0x5628 013897 nbranch le_prepare_tx_cmd ,blank 
-0x5629 013898 fetch 1 ,mem_device_option 
-0x562a 013899 bne dvc_op_hci ,le_send_empty 
-0x562b 013900 arg 0 ,type 
-0x562c 013901 call hci_rx_packet 
-0x562d 013902 copy type ,pdata 
-0x562e 013903 nrtn blank 
-0x562f 013904 branch le_send_empty 
-:      013905 le_prepare_tx_cmd:
-0x5630 013906 copy pdata ,temp 
-0x5631 013907 set1 mark_ext_patch ,mark 
-0x5632 013908 bpatch patch2c_2 ,mem_patch2c 
-0x5633 013909 copy temp ,pdata 
-0x5634 013910 bbit0 5 ,le_prepare_l2cap 
-0x5635 013911 force 3 ,type 
-0x5636 013912 set0 5 ,pdata 
-0x5637 013913 store 1 ,mem_le_txpayload 
-0x5638 013914 set1 mark_ext_patch ,mark 
-0x5639 013915 bpatch patch2c_3 ,mem_patch2c 
-0x563a 013916 fetch 1 ,mem_le_txpayload 
-0x563b 013917 beq ll_connection_update_req ,le_send_connection_update_req 
-0x563c 013918 beq ll_channel_map_req ,le_send_channel_map_req 
-0x563d 013919 beq ll_terminate_ind ,le_send_terminate_ind 
-0x563e 013920 beq ll_enc_req ,le_send_enc_req 
-0x563f 013921 beq ll_enc_rsp ,le_send_enc_rsp 
-0x5640 013922 beq ll_start_enc_req ,le_send_start_enc_req 
-0x5641 013923 beq ll_start_enc_rsp ,le_send_start_enc_rsp 
-0x5642 013924 beq ll_unknown_rsp ,le_send_unknown_rsp 
-0x5643 013925 beq ll_feature_req ,le_send_feature 
-0x5644 013926 beq ll_feature_rsp ,le_send_feature 
-0x5645 013927 beq ll_pause_enc_req ,le_send_pause_enc_req 
-0x5646 013928 beq ll_pause_enc_rsp ,le_send_pause_enc_rsp 
-0x5647 013929 beq ll_version_ind ,le_send_version_ind 
-0x5648 013930 beq ll_reject_ind ,le_send_reject_ind 
-0x5649 013931 beq ll_connection_param_req ,le_send_conn_param_req 
-0x564a 013932 branch assert 
-:      013934 le_prepare_l2cap:
-0x564b 013935 jam 0 ,mem_le_txcid + 1 
-0x564c 013936 force 2 ,type 
-0x564d 013937 bbit0 6 ,le_prepare_att 
-0x564e 013938 beq attop_write_command ,le_prepare_att 
-0x564f 013939 beq attop_signed_write_command ,le_prepare_att 
-0x5650 013940 jam le_l2cap_cid_smp ,mem_le_txcid 
-0x5651 013941 set0 6 ,pdata 
-0x5652 013942 store 1 ,mem_le_l2cap 
-:      013943 le_prepare_smp:
-0x5653 013944 set1 mark_ext_patch ,mark 
-0x5654 013945 bpatch patch2c_4 ,mem_patch2c 
-0x5655 013946 fetch 1 ,mem_le_l2cap 
-:      013947 le_prepare_smp0:
-0x5656 013948 beq smp_pairing_request ,le_send_smp_pairing_request 
-0x5657 013949 beq smp_pairing_response ,le_send_smp_pairing_response 
-0x5658 013950 beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
-0x5659 013951 beq smp_pairing_random ,le_send_smp_pairing_random 
-0x565a 013952 beq smp_pairing_failed ,le_send_smp_pairing_failed 
-0x565b 013953 beq smp_encryption_information ,le_send_smp_encryption_information 
-0x565c 013954 beq smp_master_identification ,le_send_smp_master_identification 
-0x565d 013955 beq smp_identity_information ,le_send_smp_identity_information 
-0x565e 013956 beq smp_identity_address_information ,le_send_smp_identity_address_information 
-0x565f 013957 beq smp_signing_information ,le_send_smp_signing_information 
-0x5660 013958 beq smp_security_request ,le_send_smp_security_request 
-0x5661 013959 branch assert 
-:      013961 le_prepare_att:
-0x5662 013962 jam le_l2cap_cid_att ,mem_le_txcid 
-0x5663 013963 store 1 ,mem_le_l2cap 
-0x5664 013964 set1 mark_ext_patch ,mark 
-0x5665 013965 bpatch patch2c_5 ,mem_patch2c 
-:      013966 le_prepare_att0:
-0x5666 013967 fetch 1 ,mem_le_l2cap 
-0x5667 013968 beq attop_error_response ,le_send_att_error_response 
-0x5668 013969 beq attop_exchange_mtu_request ,le_send_att_exchange_mtu 
-0x5669 013970 beq attop_exchange_mtu_response ,le_send_att_exchange_mtu 
-0x566a 013971 beq attop_find_information_request ,le_send_att_find_information_request 
-0x566b 013972 beq attop_find_information_response ,le_send_att_find_information_response 
-0x566c 013973 beq attop_find_by_type_value_request ,le_send_att_find_by_type_value_request 
-0x566d 013974 beq attop_find_by_type_value_response ,le_send_att_find_by_type_value_response 
-0x566e 013975 beq attop_read_by_type_request ,le_send_att_read_by_type_request 
-0x566f 013976 beq attop_read_by_type_response ,le_send_att_read_by_type_response 
-0x5670 013977 beq attop_read_request ,le_send_att_read_request 
-0x5671 013978 beq attop_read_response ,le_send_att_read_response 
-0x5672 013979 beq attop_read_blob_request ,le_send_att_read_blob_request 
-0x5673 013980 beq attop_read_blob_response ,le_send_att_read_blob_response 
-0x5674 013981 beq attop_read_multiple_request ,le_send_att_read_multiple_request 
-0x5675 013982 beq attop_read_multiple_response ,le_send_att_read_multiple_response 
-0x5676 013983 beq attop_read_by_group_type_request ,le_send_att_read_by_group_type_request 
-0x5677 013984 beq attop_read_by_group_type_response ,le_send_att_read_by_group_type_response 
-0x5678 013985 beq attop_write_request ,le_send_att_write_request 
-0x5679 013986 beq attop_write_response ,le_send_att_write_response 
-0x567a 013987 beq attop_prepare_write_request ,le_send_att_prepare_write_request 
-0x567b 013988 beq attop_prepare_write_response ,le_send_att_prepare_write_response 
-0x567c 013989 beq attop_execute_write_request ,le_send_att_execute_write_request 
-0x567d 013990 beq attop_execute_write_response ,le_send_att_execute_write_response 
-0x567e 013991 beq attop_handle_value_notification ,le_send_att_handle_value_notification 
-0x567f 013992 beq attop_handle_value_indication ,le_send_att_handle_value_indication 
-0x5680 013993 beq attop_handle_value_confirmation ,le_send_att_handle_value_confirmation 
-0x5681 013994 beq attop_write_command ,le_send_att_write_command 
-0x5682 013995 beq attop_signed_write_command ,le_send_att_signed_write_command 
-0x5683 013996 beq empty_le_data_pre ,le_send_empty_le_data_pre 
-0x5684 013997 beq empty_le_data ,le_send_empty_le_data 
-0x5685 013998 branch assert 
-:      014000 le_send_empty_le_data_pre:
-0x5686 014001 jam attop_read_by_group_type_request ,mem_fifo_temp 
-0x5687 014002 call le_xtype_fifo_in 
-:      014004 le_send_empty_le_data:
-0x5688 014005 setarg 0x0011 
-0x5689 014006 store 2 ,mem_le_txheader 
-0x568a 014007 fetch 1 ,mem_le_arq 
-0x568b 014008 set1 wak ,pdata 
-0x568c 014009 store 1 ,mem_le_arq 
-0x568d 014010 jam attop_write_request ,mem_fifo_temp 
-0x568e 014011 branch le_xtype_fifo_in 
-:      014013 le_send_connection_update_req:
-0x568f 014014 force 12 ,temp 
-0x5690 014015 branch le_send_packet 
-:      014017 le_send_channel_map_req:
-0x5691 014018 force 8 ,temp 
-0x5692 014019 branch le_send_packet 
-:      014021 le_send_terminate_ind:
-0x5693 014022 force 2 ,temp 
-0x5694 014023 branch le_send_packet 
-:      014025 le_send_enc_req:
-0x5695 014026 force 0 ,pdata 
-0x5696 014027 istore 8 ,contw 
-0x5697 014028 istore 2 ,contw 
-0x5698 014029 copy contw ,temp 
-0x5699 014030 arg mem_le_skdm ,contw 
-0x569a 014031 force 8 ,loopcnt 
-0x569b 014032 call generate_random_loop 
-0x569c 014033 fetch 8 ,mem_le_skdm 
-0x569d 014034 istore 8 ,temp 
-0x569e 014035 copy contw ,temp 
-0x569f 014036 arg mem_le_ivm ,contw 
-0x56a0 014037 force 4 ,loopcnt 
-0x56a1 014038 call generate_random_loop 
-0x56a2 014039 fetch 4 ,mem_le_ivm 
-0x56a3 014040 istore 4 ,temp 
-0x56a4 014041 force 23 ,temp 
-0x56a5 014042 branch le_send_packet 
-:      014044 le_send_enc_rsp:
-0x56a6 014045 copy contw ,temp 
-0x56a7 014046 arg mem_le_skds ,contw 
-0x56a8 014047 force 8 ,loopcnt 
-0x56a9 014048 call generate_random_loop 
-0x56aa 014049 fetch 8 ,mem_le_skds 
-0x56ab 014050 istore 8 ,temp 
-0x56ac 014051 copy contw ,temp 
-0x56ad 014052 arg mem_le_ivs ,contw 
-0x56ae 014053 force 4 ,loopcnt 
-0x56af 014054 call generate_random_loop 
-0x56b0 014055 fetch 4 ,mem_le_ivs 
-0x56b1 014056 istore 4 ,temp 
-0x56b2 014057 call generate_sk 
-0x56b3 014058 jam xt_ll_start_enc_req ,mem_fifo_temp 
-0x56b4 014059 call le_xtype_fifo_in 
-0x56b5 014060 force 13 ,temp 
-0x56b6 014061 branch le_send_packet 
-:      014063 le_send_start_enc_req:
-0x56b7 014064 force 1 ,temp 
-0x56b8 014065 branch le_send_packet 
-:      014067 le_send_start_enc_rsp:
-0x56b9 014068 force 1 ,temp 
-0x56ba 014069 branch le_send_packet ,master 
-0x56bb 014070 jam xt_smp_encryption_information ,mem_fifo_temp 
-0x56bc 014071 call le_xtype_fifo_in 
-0x56bd 014072 force 1 ,temp 
-0x56be 014073 branch le_send_packet 
-:      014075 le_send_unknown_rsp:
-0x56bf 014076 force 2 ,temp 
-0x56c0 014077 branch le_send_packet 
-:      014079 le_send_feature:
-0x56c1 014080 setarg param_le_features 
-0x56c2 014081 istore 8 ,contw 
-0x56c3 014082 force 9 ,temp 
-0x56c4 014083 branch le_send_packet 
-:      014085 le_send_pause_enc_req:
-0x56c5 014086 force 6 ,temp 
-0x56c6 014087 branch le_send_packet 
-:      014089 le_send_pause_enc_rsp:
-0x56c7 014090 force 6 ,temp 
-0x56c8 014091 branch le_send_packet 
-:      014093 le_send_version_ind:
-0x56c9 014094 setarg param_le_version 
-0x56ca 014095 istore 3 ,contw 
-0x56cb 014096 setarg param_le_subversion 
-0x56cc 014097 istore 2 ,contw 
-0x56cd 014098 force 6 ,temp 
-0x56ce 014099 branch le_send_packet 
-:      014101 le_send_reject_ind:
-0x56cf 014102 force 2 ,temp 
-0x56d0 014103 branch le_send_packet 
-:      014105 le_send_conn_param_req:
-0x56d1 014106 increase -1 ,contw 
-0x56d2 014107 setarg 0x000c 
-0x56d3 014108 istore 2 ,contw 
-0x56d4 014109 setarg 0x0005 
-0x56d5 014110 istore 2 ,contw 
-0x56d6 014111 setarg 0xb412 
-0x56d7 014112 istore 2 ,contw 
-0x56d8 014113 setarg 0x0008 
-0x56d9 014114 istore 2 ,contw 
-0x56da 014115 setarg 0x0008 
-0x56db 014116 istore 2 ,contw 
-0x56dc 014117 setarg 0x0010 
-0x56dd 014118 istore 2 ,contw 
-0x56de 014119 setarg 0 
-0x56df 014120 istore 2 ,contw 
-0x56e0 014121 setarg 0x012c 
-0x56e1 014122 istore 2 ,contw 
-0x56e2 014123 call le_send_autolen 
-0x56e3 014124 force 2 ,type 
-0x56e4 014125 branch le_send_packet 
-:      014127 le_send_smp_pairing_request:
-0x56e5 014128 setarg 0x1000401 
-0x56e6 014129 store 4 ,mem_le_preq 
-0x56e7 014130 setarg 0x070710 
-0x56e8 014131 istore 3 ,contw 
-0x56e9 014132 fetch 6 ,mem_le_preq + 1 
-0x56ea 014133 store 6 ,mem_le_l2cap_response 
-0x56eb 014134 force 11 ,temp 
-0x56ec 014135 branch le_send_packet 
-:      014137 le_send_smp_pairing_response:
-0x56ed 014138 setarg param_smp_paring_response 
-0x56ee 014139 store 4 ,mem_le_pres 
-0x56ef 014140 setarg param_smp_key_dist 
-0x56f0 014141 istore 3 ,contw 
-0x56f1 014142 fetch 6 ,mem_le_pres + 1 
-0x56f2 014143 store 6 ,mem_le_l2cap_response 
-0x56f3 014144 force 11 ,temp 
-0x56f4 014145 branch le_send_packet 
-:      014147 le_send_smp_pairing_confirm:
-0x56f5 014148 call generate_confirm 
-0x56f6 014149 arg mem_le_l2cap_response ,contw 
-0x56f7 014150 call store_aes_result 
-0x56f8 014151 force 21 ,temp 
-0x56f9 014152 branch le_send_packet 
-:      014154 le_send_smp_pairing_random:
-0x56fa 014155 fetch 8 ,mem_le_mrand 
-0x56fb 014156 branch le_send_smp_mrandom ,master 
-0x56fc 014157 fetch 8 ,mem_le_srand 
-:      014159 le_send_smp_mrandom:
-0x56fd 014160 call le_send_smp_128 
-0x56fe 014161 branch le_send_packet 
-:      014163 le_send_smp_pairing_failed:
-0x56ff 014164 force 6 ,temp 
-0x5700 014165 branch le_send_packet 
-:      014167 le_send_smp_encryption_information:
-0x5701 014168 jam bt_evt_le_enc_info ,mem_fifo_temp 
-0x5702 014169 call ui_ipc_send_event 
-0x5703 014170 jam xt_smp_master_identification ,mem_fifo_temp 
-0x5704 014171 call le_xtype_fifo_in 
-0x5705 014172 arg mem_le_my_ltk ,contw 
-0x5706 014173 call generate_random 
-0x5707 014174 fetch 8 ,mem_le_my_ltk 
-0x5708 014175 fetch 8 ,mem_le_ltk 
-0x5709 014176 call le_send_smp_128 
-0x570a 014177 branch le_send_packet 
-:      014179 le_send_smp_master_identification:
-0x570b 014180 jam xt_smp_identity_information ,mem_fifo_temp 
-0x570c 014181 call le_xtype_fifo_in 
-0x570d 014182 arg mem_le_l2cap_response ,contw 
-0x570e 014183 force 8 ,loopcnt 
-0x570f 014184 call generate_random_loop 
-0x5710 014185 force 15 ,temp 
-0x5711 014186 branch le_send_packet 
-:      014188 le_send_smp_identity_information:
-0x5712 014189 jam xt_smp_identity_address_information ,mem_fifo_temp 
-0x5713 014190 call le_xtype_fifo_in 
-0x5714 014191 arg mem_le_l2cap_response ,contw 
-0x5715 014192 call generate_random 
-0x5716 014193 branch le_send_autolen 
-:      014195 le_send_smp_identity_address_information:
-0x5717 014196 jam xt_smp_signing_information ,mem_fifo_temp 
-0x5718 014197 call le_xtype_fifo_in 
-0x5719 014198 force 0 ,pdata 
-0x571a 014199 store 1 ,mem_le_l2cap_response 
-0x571b 014200 fetch 6 ,mem_le_lap 
-0x571c 014201 istore 6 ,contw 
-0x571d 014202 branch le_send_autolen 
-:      014204 le_send_smp_signing_information:
-0x571e 014205 arg mem_le_l2cap_response ,contw 
-0x571f 014206 call generate_random 
-0x5720 014207 branch le_send_autolen 
-:      014209 le_send_smp_security_request:
-0x5721 014210 force 6 ,temp 
-0x5722 014211 branch le_send_packet 
-:      014213 le_send_smp_128:
-0x5723 014214 store 8 ,mem_le_l2cap_response 
-0x5724 014215 ifetch 8 ,contr 
-0x5725 014216 istore 8 ,contw 
-0x5726 014217 force 21 ,temp 
-0x5727 014218 rtn 
-:      014220 le_send_att_error_response_notfound:
-0x5728 014221 jam att_err_attribute_not_found ,mem_le_err_code 
-:      014222 le_send_att_error_response:
-0x5729 014223 jam attop_error_response ,mem_le_l2cap 
-0x572a 014224 fetch 3 ,mem_le_att_opcode 
-0x572b 014225 store 3 ,mem_le_l2cap_response 
-0x572c 014226 fetch 1 ,mem_le_err_code 
-0x572d 014227 istore 1 ,contw 
-0x572e 014228 branch le_send_autolen 
-:      014230 le_send_att_exchange_mtu:
-0x572f 014231 setarg param_le_mtu 
-0x5730 014232 istore 2 ,contw 
-0x5731 014233 branch le_send_autolen 
-:      014235 le_send_att_find_information_request:
-0x5732 014236 fetch 2 ,mem_le_search_handle_start 
-0x5733 014237 store 2 ,mem_le_l2cap_response 
-0x5734 014238 fetch 2 ,mem_le_search_handle_end 
-0x5735 014239 istore 2 ,contw 
-0x5736 014240 branch le_send_autolen 
-:      014244 le_send_att_find_information_response:
-0x5737 014245 force 1 ,pdata 
-0x5738 014246 store 1 ,mem_le_l2cap_response 
-0x5739 014247 call le_init_attlist_search 
-:      014248 le_send_att_find_information_res_loop:
-0x573a 014249 call le_att_handle_inrange 
-0x573b 014250 branch le_send_att_find_information_res_end ,blank 
-0x573c 014251 nbranch le_send_att_find_information_res_next ,positive 
-0x573d 014252 disable user 
-0x573e 014253 istore 2 ,contw 
-0x573f 014254 ifetch 2 ,contr 
-0x5740 014255 istore 2 ,contw 
-:      014256 le_send_att_find_information_res_cont:
-0x5741 014257 ifetch 1 ,contr 
-0x5742 014258 iadd contr ,contr 
-0x5743 014259 branch le_send_att_find_information_res_loop 
-:      014260 le_send_att_find_information_res_next:
-0x5744 014261 increase 2 ,contr 
-0x5745 014262 branch le_send_att_find_information_res_cont 
-:      014263 le_send_att_find_information_res_end:
-0x5746 014264 branch le_send_att_error_response_notfound ,user 
-0x5747 014265 branch le_send_autolen 
-:      014268 le_send_att_find_by_type_value_request:
-0x5748 014269 fetch 2 ,mem_le_search_handle_start 
-0x5749 014270 branch le_send_empty_le_data ,blank 
-0x574a 014271 store 2 ,mem_le_l2cap_response 
-0x574b 014272 fetch 2 ,mem_le_search_handle_end 
-0x574c 014274 istore 2 ,contw 
-0x574d 014275 fetch 2 ,mem_le_uuid 
-0x574e 014277 istore 2 ,contw 
-0x574f 014278 fetch 2 ,mem_le_search_att_type 
-0x5750 014280 istore 2 ,contw 
-0x5751 014281 branch le_send_autolen 
-:      014284 le_send_att_find_by_type_value_response:
-0x5752 014285 call le_start_end_handle_check_1 
-0x5753 014286 rtn user 
-0x5754 014287 fetcht 2 ,mem_le_uuid 
-0x5755 014288 setarg uuid_gatt_primary_service 
-0x5756 014289 isub temp ,null 
-0x5757 014290 branch le_send_att_find_by_type_value_res_primary ,zero 
-0x5758 014291 setarg uuid_gatt_secondary_service 
-0x5759 014292 isub temp ,null 
-0x575a 014293 branch le_send_att_error_response_notfound ,zero 
-0x575b 014294 setarg uuid_gatt_include 
-0x575c 014295 isub temp ,null 
-0x575d 014296 branch le_send_att_error_response_notfound ,zero 
-0x575e 014297 setarg uuid_gatt_characteristic 
-0x575f 014298 isub temp ,null 
-0x5760 014299 branch le_send_att_error_response_notfound ,zero 
-0x5761 014300 branch le_send_att_error_response_notfound 
-:      014302 le_send_att_find_by_type_value_res_primary:
-0x5762 014303 fetcht 2 ,mem_le_search_att_type 
-0x5763 014304 increase 2 ,contr 
-0x5764 014305 ifetch 1 ,contr 
-0x5765 014306 icopy regc 
-0x5766 014307 increase 1 ,regc 
-:      014309 le_send_att_find_by_type_value_res_primary_search_loop:
-0x5767 014310 increase -1 ,regc 
-0x5768 014311 branch le_send_att_error_response_notfound ,zero 
-0x5769 014312 ifetch 2 ,contr 
-0x576a 014313 isub temp ,null 
-0x576b 014314 branch le_send_att_find_by_type_value_res_primary_search_end ,zero 
-0x576c 014315 increase 4 ,contr 
-0x576d 014316 branch le_send_att_find_by_type_value_res_primary_search_loop 
-:      014318 le_send_att_find_by_type_value_res_primary_search_end:
-0x576e 014319 ifetch 2 ,contr 
-0x576f 014320 icopy rega 
-0x5770 014321 ifetch 2 ,contr 
-0x5771 014322 icopy regb 
-0x5772 014323 call le_start_end_handle_check_2 
-0x5773 014324 rtn user 
-0x5774 014325 jam attop_find_by_type_value_response ,mem_le_l2cap 
-0x5775 014326 deposit rega 
-0x5776 014327 store 2 ,mem_le_l2cap_response 
-0x5777 014328 deposit regb 
-0x5778 014329 istore 2 ,contw 
-0x5779 014330 force 9 ,temp 
-0x577a 014331 branch le_send_packet 
-:      014336 le_start_end_handle_check_1:
-0x577b 014337 disable user 
-0x577c 014338 fetcht 2 ,mem_le_search_handle_start 
-0x577d 014339 fetch 2 ,mem_le_search_handle_end 
-0x577e 014340 isub temp ,null 
-0x577f 014341 nbranch le_start_end_handle_check_1_fail ,positive 
-0x5780 014342 deposit temp 
-0x5781 014343 rtnne 0 
-:      014345 le_start_end_handle_check_1_fail:
-0x5782 014346 enable user 
-:      014347 le_send_att_invalid_handle:
-0x5783 014348 jam att_err_invalid_handle ,mem_le_err_code 
-0x5784 014349 branch le_send_att_error_response 
-:      014351 le_start_end_handle_check_2:
-0x5785 014352 disable user 
-0x5786 014353 fetcht 2 ,mem_le_search_handle_start 
-0x5787 014354 deposit rega 
-0x5788 014355 isub temp ,null 
-0x5789 014356 nbranch le_start_end_handle_check_2_fail ,positive 
-0x578a 014357 fetch 2 ,mem_le_search_handle_end 
-0x578b 014358 isub regb ,null 
-0x578c 014359 nbranch le_start_end_handle_check_2_fail ,positive 
-0x578d 014360 deposit regb 
-0x578e 014361 isub rega ,null 
-0x578f 014362 nbranch le_start_end_handle_check_2_fail ,positive 
-0x5790 014363 rtn 
-:      014365 le_start_end_handle_check_2_fail:
-0x5791 014366 enable user 
-0x5792 014367 branch le_send_att_error_response_notfound 
-:      014370 le_send_att_read_by_type_request:
-0x5793 014371 fetch 2 ,mem_le_search_handle_start 
-0x5794 014373 istore 2 ,contw 
-0x5795 014374 fetch 2 ,mem_le_search_handle_end 
-0x5796 014376 istore 2 ,contw 
-0x5797 014377 fetch 2 ,mem_le_search_att_type 
-0x5798 014378 istore 2 ,contw 
-0x5799 014379 force 11 ,temp 
-0x579a 014380 branch le_send_packet 
-:      014383 le_send_att_read_by_type_response:
-0x579b 014384 fetcht 2 ,mem_le_search_att_type 
-0x579c 014385 setarg uuid_gatt_characteristic 
-0x579d 014386 isub temp ,null 
-0x579e 014387 setarg 7 
-0x579f 014388 branch le_send_att_read_by_type_res_cont ,zero 
-0x57a0 014389 setarg uuid_gatt_primary_service 
-0x57a1 014390 isub temp ,null 
-0x57a2 014391 setarg 6 
-0x57a3 014392 branch le_send_att_read_by_type_res_cont ,zero 
-0x57a4 014393 branch le_send_att_error_response_notfound 
-:      014394 le_send_att_read_by_type_res_cont:
-0x57a5 014395 store 1 ,mem_le_l2cap_response 
-0x57a6 014396 call le_init_attlist_search 
-0x57a7 014397 force 3 ,alarm 
-:      014398 le_send_att_read_by_type_res_loop:
-0x57a8 014399 call le_att_handle_inrange 
-0x57a9 014400 branch le_send_att_read_by_type_res_end ,blank 
-0x57aa 014401 nbranch le_send_att_read_by_type_res_next ,positive 
-0x57ab 014402 iforce rega 
-0x57ac 014403 ifetch 2 ,contr 
-0x57ad 014404 isub temp ,null 
-0x57ae 014405 nbranch le_send_att_read_by_type_res_next2 ,zero 
-0x57af 014406 disable user 
-0x57b0 014407 deposit rega 
-0x57b1 014408 istore 2 ,contw 
-0x57b2 014409 ifetch 1 ,contr 
-0x57b3 014410 add pdata ,4 ,loopcnt 
-0x57b4 014411 call memcpy 
-0x57b5 014412 increase -1 ,alarm 
-0x57b6 014413 branch le_send_att_read_by_type_res_end ,zero 
-0x57b7 014414 branch le_send_att_read_by_type_res_next2 
-:      014415 le_send_att_read_by_type_res_next:
-0x57b8 014416 increase 2 ,contr 
-:      014417 le_send_att_read_by_type_res_next2:
-0x57b9 014418 ifetch 1 ,contr 
-0x57ba 014419 iadd contr ,contr 
-0x57bb 014420 branch le_send_att_read_by_type_res_loop 
-:      014421 le_send_att_read_by_type_res_end:
-0x57bc 014422 branch le_send_att_error_response_notfound ,user 
-0x57bd 014423 branch le_send_autolen 
-:      014426 le_send_att_read_request:
-0x57be 014427 fetch 1 ,mem_le_temp 
-0x57bf 014429 increase -1 ,pdata 
-0x57c0 014430 store 1 ,mem_le_temp 
-0x57c1 014431 lshift pdata ,pdata 
-0x57c2 014433 iadd contr ,contr 
-0x57c3 014434 ifetcht 2 ,contr 
-0x57c4 014435 storet 2 ,mem_le_l2cap_response 
-0x57c5 014436 branch le_send_autolen 
-:      014438 le_send_att_read_response:
-0x57c6 014439 fetcht 2 ,mem_le_att_handle 
-0x57c7 014440 call le_att_get_handle_ptr 
-0x57c8 014441 branch le_send_att_error_response_notfound ,blank 
-0x57c9 014442 ifetch 1 ,contr 
-0x57ca 014443 branch le_send_autolen ,blank 
-0x57cb 014444 sub pdata ,22 ,null 
-0x57cc 014445 branch le_send_att_read_response_less ,positive 
-0x57cd 014446 force 22 ,pdata 
-:      014447 le_send_att_read_response_less:
-0x57ce 014448 icopy loopcnt 
-0x57cf 014449 call memcpy 
-0x57d0 014450 branch le_send_autolen 
-:      014453 le_send_att_read_blob_request:
-0x57d1 014454 setarg 0x0003 
-0x57d2 014455 store 2 ,mem_le_l2cap_response 
-0x57d3 014456 setarg 0x0008 
-0x57d4 014457 istore 2 ,contw 
-0x57d5 014458 branch le_send_autolen 
-:      014460 le_send_att_read_blob_response:
-0x57d6 014461 fetch 2 ,mem_le_att_offset 
-0x57d7 014462 iforce rega 
-0x57d8 014463 fetcht 2 ,mem_le_att_handle 
-0x57d9 014464 call le_att_get_handle_ptr 
-0x57da 014465 branch le_send_att_error_response_notfound ,blank 
-0x57db 014466 ifetch 1 ,contr 
-0x57dc 014467 isub rega ,loopcnt 
-0x57dd 014468 nbranch le_send_att_error_response_notfound ,positive 
-0x57de 014469 sub loopcnt ,22 ,null 
-0x57df 014470 branch le_send_att_read_blob_response_less ,positive 
-0x57e0 014471 force 22 ,loopcnt 
-:      014472 le_send_att_read_blob_response_less:
-0x57e1 014473 deposit rega 
-0x57e2 014474 iadd contr ,contr 
-0x57e3 014475 call memcpy 
-0x57e4 014476 branch le_send_autolen 
-:      014478 le_send_att_read_multiple_request:
-0x57e5 014479 setarg 0x0003 
-0x57e6 014480 istore 2 ,contw 
-0x57e7 014481 setarg 0x0007 
-0x57e8 014482 istore 2 ,contw 
-0x57e9 014483 setarg 0x0009 
-0x57ea 014484 istore 2 ,contw 
-0x57eb 014485 branch le_send_autolen 
-:      014487 le_send_att_read_multiple_response:
-0x57ec 014488 fetch 1 ,mem_le_temp 
-0x57ed 014489 icopy regc 
-0x57ee 014490 arg mem_le_rxbuf + 7 ,rega 
-0x57ef 014491 arg mem_le_l2cap_response ,regb 
-0x57f0 014492 arg 0 ,timeup 
-0x57f1 014493 disable user7 
-:      014495 le_send_att_read_multiple_response_loop:
-0x57f2 014496 copy rega ,contr 
-0x57f3 014497 ifetcht 2 ,contr 
-0x57f4 014498 copy contr ,rega 
-0x57f5 014499 call le_att_get_handle_ptr 
-0x57f6 014500 branch le_send_att_read_multiple_response_end ,blank 
-0x57f7 014501 ifetch 1 ,contr 
-0x57f8 014502 icopy loopcnt 
-0x57f9 014503 iadd timeup ,timeup 
-0x57fa 014507 sub timeup ,24 ,null 
-0x57fb 014508 nbranch le_send_att_read_multiple_response_end_1 ,positive 
-0x57fc 014509 copy regb ,contw 
-:      014511 le_copy_att_value_loop_3:
-0x57fd 014512 ifetch 1 ,contr 
-0x57fe 014513 istore 1 ,contw 
-0x57ff 014514 loop le_copy_att_value_loop_3 
-0x5800 014515 copy contw ,regb 
-0x5801 014516 enable user7 
-0x5802 014517 increase -1 ,regc 
-0x5803 014518 branch le_send_att_read_multiple_response_end ,zero 
-0x5804 014519 branch le_send_att_read_multiple_response_loop 
-:      014521 le_send_att_read_multiple_response_end:
-0x5805 014522 nbranch le_send_att_read_multiple_response_fail ,user7 
-0x5806 014523 disable user7 
-0x5807 014524 copy timeup ,temp 
-0x5808 014525 increase 5 ,temp 
-0x5809 014526 branch le_send_packet 
-:      014528 le_send_att_read_multiple_response_end_1:
-0x580a 014529 nbranch le_send_att_read_multiple_response_fail ,user7 
-0x580b 014530 disable user7 
-0x580c 014531 deposit timeup 
-0x580d 014532 isub loopcnt ,temp 
-0x580e 014533 increase 5 ,temp 
-0x580f 014534 branch le_send_packet 
-:      014536 le_send_att_read_multiple_response_fail:
-0x5810 014537 jam att_err_unsupported_group_type ,mem_le_err_code 
-0x5811 014538 branch le_send_att_error_response 
-:      014541 le_send_att_read_by_group_type_request:
-0x5812 014542 fetch 2 ,mem_le_att_handle 
-0x5813 014543 branch le_send_empty_le_data ,blank 
-0x5814 014544 istore 2 ,contw 
-0x5815 014545 setarg 0xffff 
-0x5816 014546 istore 2 ,contw 
-0x5817 014547 setarg 0x2800 
-0x5818 014548 istore 2 ,contw 
-0x5819 014549 branch le_send_autolen 
-:      014552 le_send_att_read_by_group_type_response:
-0x581a 014553 setarg 0x06 
-0x581b 014554 store 1 ,mem_le_l2cap_response 
-0x581c 014555 fetch 2 ,mem_le_search_att_type 
-0x581d 014556 iforce rega 
-0x581e 014557 call le_init_attlist_search 
-0x581f 014558 force 3 ,loopcnt 
-:      014559 le_send_att_read_by_group_type_response_loop:
-0x5820 014560 call le_att_handle_inrange 
-0x5821 014561 branch le_send_att_read_by_group_type_response_last ,blank 
-0x5822 014562 nbranch le_send_att_read_by_group_type_response_next ,positive 
-0x5823 014563 iforce alarm 
-0x5824 014564 ifetch 2 ,contr 
-0x5825 014565 isub rega ,null 
-0x5826 014566 nbranch le_send_att_read_by_group_type_response_cont ,zero 
-0x5827 014567 deposit alarm 
-0x5828 014568 branch le_send_att_read_by_group_type_response_first ,user 
-0x5829 014569 increase -1 ,pdata 
-0x582a 014570 istore 2 ,contw 
-0x582b 014571 istoret 2 ,contw 
-0x582c 014572 increase 1 ,pdata 
-0x582d 014573 increase -1 ,loopcnt 
-0x582e 014574 branch le_send_autolen ,zero 
-:      014575 le_send_att_read_by_group_type_response_first:
-0x582f 014576 disable user 
-0x5830 014577 istore 2 ,contw 
-0x5831 014578 increase 1 ,contr 
-0x5832 014579 ifetcht 2 ,contr 
-0x5833 014580 increase -3 ,contr 
-0x5834 014581 branch le_send_att_read_by_group_type_response_cont 
-:      014582 le_send_att_read_by_group_type_response_last:
-0x5835 014583 branch le_send_att_error_response_notfound ,user 
-0x5836 014584 force -1 ,pdata 
-0x5837 014585 istore 2 ,contw 
-0x5838 014586 istoret 2 ,contw 
-0x5839 014587 branch le_send_autolen 
-:      014588 le_send_att_read_by_group_type_response_next:
-0x583a 014589 increase 2 ,contr 
-:      014590 le_send_att_read_by_group_type_response_cont:
-0x583b 014591 ifetch 1 ,contr 
-0x583c 014592 iadd contr ,contr 
-0x583d 014593 branch le_send_att_read_by_group_type_response_loop 
-:      014597 le_send_att_write_request:
-0x583e 014598 fetch 2 ,mem_le_notify_handle 
-0x583f 014599 store 2 ,mem_le_l2cap_response 
-0x5840 014600 fetch 1 ,mem_le_handle_data_len 
-0x5841 014601 copy pdata ,loopcnt 
-0x5842 014602 arg mem_le_handle_data ,contr 
-0x5843 014603 call memcpy 
-0x5844 014604 branch le_send_autolen 
-:      014606 le_send_att_write_response:
-0x5845 014607 fetcht 2 ,mem_le_att_handle 
-0x5846 014608 call le_att_get_handle_ptr 
-0x5847 014609 branch le_send_att_write_response_go ,blank 
-0x5848 014610 increase -2 ,contr 
-0x5849 014611 ifetcht 2 ,contr 
-0x584a 014612 setarg uuid_client_characteristic 
-0x584b 014613 isub temp ,null 
-0x584c 014614 nbranch le_send_att_write_response_go ,zero 
-0x584d 014615 increase 1 ,contr 
-0x584e 014616 ifetcht 2 ,contr 
-0x584f 014617 setarg 0x0001 
-0x5850 014618 isub temp ,null 
-0x5851 014619 branch le_send_att_write_response_notify ,zero 
-0x5852 014620 setarg 0x0000 
-0x5853 014621 isub temp ,null 
-0x5854 014622 nbranch le_send_att_write_response_go ,zero 
-0x5855 014623 branch le_send_att_write_response_go 
-:      014625 le_send_att_write_response_notify:
-0x5856 014626 increase -7 ,contr 
-0x5857 014627 ifetch 2 ,contr 
-0x5858 014628 increase -1 ,pdata 
-0x5859 014629 store 2 ,mem_le_notify_handle 
-0x585a 014630 jam attop_handle_value_notification ,mem_fifo_temp 
-0x585b 014631 call le_xtype_fifo_in 
-:      014634 le_send_att_write_response_go:
-0x585c 014635 force 5 ,temp 
-0x585d 014636 branch le_send_packet 
-:      014638 le_send_att_prepare_write_request:
-0x585e 014639 force 6 ,temp 
-0x585f 014640 branch le_send_packet 
-:      014642 le_send_att_prepare_write_response:
-0x5860 014643 force 6 ,temp 
-0x5861 014644 branch le_send_packet 
-:      014646 le_send_att_execute_write_request:
-0x5862 014647 force 6 ,temp 
-0x5863 014648 branch le_send_packet 
-:      014650 le_send_att_execute_write_response:
-0x5864 014651 force 6 ,temp 
-0x5865 014652 branch le_send_packet 
-:      014654 le_att_check_notification_enable:
-0x5866 014655 set1 mark_ext_patch ,mark 
-0x5867 014656 bpatch patch2c_6 ,mem_patch2c 
-0x5868 014657 increase 1 ,temp 
-0x5869 014658 call le_att_get_handle_ptr 
-0x586a 014659 increase -2 ,contr 
-0x586b 014660 ifetch 2 ,contr 
-0x586c 014661 arg client_charactertic_configuration ,temp 
-0x586d 014662 isub temp ,null 
-0x586e 014663 nrtn zero 
-0x586f 014664 increase 1 ,contr 
-0x5870 014665 copy contr ,rega 
-0x5871 014666 ifetch 1 ,contr 
-0x5872 014667 rtn 
-:      014669 le_send_att_handle_value_notification:
-0x5873 014670 jam 0 ,mem_le_notify_len 
-0x5874 014671 fetch 2 ,mem_cb_update_notify_value 
-0x5875 014672 call callback_func 
-0x5876 014673 arg mem_le_l2cap ,contw 
-0x5877 014674 increase 1 ,contw 
-0x5878 014675 fetcht 2 ,mem_le_notify_handle 
-0x5879 014676 istoret 2 ,contw 
-0x587a 014677 call le_att_get_handle_ptr 
-0x587b 014678 ifetch 1 ,contr 
-0x587c 014679 icopy loopcnt 
-0x587d 014680 call memcpy 
-0x587e 014681 fetcht 1 ,mem_le_notify_len 
-0x587f 014682 increase 7 ,temp 
-0x5880 014683 call le_send_packet 
-0x5881 014684 branch le_clear_notify_att 
-:      014686 le_send_att_handle_value_indication:
-0x5882 014687 force 6 ,temp 
-0x5883 014688 branch le_send_packet 
-:      014690 le_send_att_handle_value_confirmation:
-0x5884 014691 force 6 ,temp 
-0x5885 014692 branch le_send_packet 
-:      014694 le_send_att_write_command:
-0x5886 014695 force 6 ,temp 
-0x5887 014696 branch le_send_packet 
-:      014698 le_send_att_signed_write_command:
-0x5888 014699 force 6 ,temp 
-0x5889 014700 branch le_send_packet 
-:      014703 le_send_autolen:
-0x588a 014704 set1 mark_ext_patch ,mark 
-0x588b 014705 bpatch patch2c_7 ,mem_patch2c 
-0x588c 014706 setarg mem_le_txpayload 
-0x588d 014707 isub contw ,pdata 
-0x588e 014708 sub pdata ,0 ,temp 
-0x588f 014709 branch le_send_packet 
-:      014712 le_send_empty:
-0x5890 014713 force 0 ,temp 
-0x5891 014714 force 1 ,type 
-:      014716 le_send_packet:
-0x5892 014717 set1 mark_ext_patch ,mark 
-0x5893 014718 bpatch patch2d_0 ,mem_patch2d 
-0x5894 014719 storet 1 ,mem_le_txlen 
-0x5895 014720 compare 2 ,type ,3 
-0x5896 014721 nbranch le_send_non_l2cap ,true 
-0x5897 014722 add temp ,-4 ,pdata 
-0x5898 014723 store 2 ,mem_le_txpayload 
-:      014725 le_send_non_l2cap:
-0x5899 014726 fetcht 1 ,mem_le_arq 
-0x589a 014727 call le_xtype_fifo_is_empty 
-0x589b 014728 nsetflag blank ,md ,temp 
-0x589c 014729 set1 wak ,temp 
-0x589d 014730 and temp ,0xfc ,pdata 
-0x589e 014731 ior type ,pdata 
-0x589f 014732 store 1 ,mem_le_arq 
-0x58a0 014733 and_into 0x1f ,pdata 
-0x58a1 014734 store 1 ,mem_le_txheader 
-0x58a2 014735 set1 mark_ext_patch ,mark 
-0x58a3 014736 bpatch patch2d_1 ,mem_patch2d 
-0x58a4 014737 fetch 1 ,mem_le_txheader 
-0x58a5 014738 compare 1 ,type ,3 
-0x58a6 014739 rtn true 
-0x58a7 014740 fetch 7 ,mem_le_txheader + 1 
-0x58a8 014741 fetch 1 ,mem_le_state 
-0x58a9 014742 rtnbit0 lestate_encryption 
-0x58aa 014743 call load_sk 
-0x58ab 014744 branch le_encrypt 
-:      014746 le_parse:
-0x58ac 014747 set1 mark_ext_patch ,mark 
-0x58ad 014748 bpatch patch2d_2 ,mem_patch2d 
-0x58ae 014749 call le_xtype_fifo_is_full 
-0x58af 014750 nbranch assert ,blank 
-0x58b0 014751 nrtn blank 
-0x58b1 014752 fetch 1 ,mem_le_rxbuf + 1 
-0x58b2 014753 rtn blank 
-0x58b3 014754 fetch 1 ,mem_le_rxbuf 
-0x58b4 014755 compare 1 ,pdata ,3 
-0x58b5 014756 branch le_parse_l2cap ,true 
-0x58b6 014757 fetch 7 ,mem_le_rxbuf + 1 
-0x58b7 014758 fetch 1 ,mem_le_rxbuf 
-0x58b8 014759 compare 2 ,pdata ,3 
-0x58b9 014760 branch le_parse_l2cap ,true 
-0x58ba 014761 fetch 1 ,mem_le_rxbuf + 2 
-0x58bb 014762 store 1 ,mem_le_rx_ll_opcode 
-0x58bc 014763 copy pdata ,regc 
-0x58bd 014764 set1 mark_ext_patch ,mark 
-0x58be 014765 bpatch patch2d_3 ,mem_patch2d 
-0x58bf 014766 copy regc ,pdata 
-0x58c0 014767 beq ll_connection_update_req ,le_parse_connection_update_req 
-0x58c1 014768 beq ll_channel_map_req ,le_parse_channel_map_req 
-0x58c2 014769 beq ll_terminate_ind ,le_parse_terminate_ind 
-0x58c3 014770 beq ll_enc_req ,le_parse_enc_req 
-0x58c4 014771 beq ll_enc_rsp ,le_parse_enc_rsp 
-0x58c5 014772 beq ll_start_enc_req ,le_parse_start_enc_req 
-0x58c6 014773 beq ll_start_enc_rsp ,le_parse_start_enc_rsp 
-0x58c7 014774 beq ll_unknown_rsp ,le_parse_unknown_rsp 
-0x58c8 014775 beq ll_feature_req ,le_parse_feature_req 
-0x58c9 014776 beq ll_feature_rsp ,le_parse_feature_rsp 
-0x58ca 014777 beq ll_pause_enc_req ,le_parse_pause_enc_req 
-0x58cb 014778 beq ll_pause_enc_rsp ,le_parse_pause_enc_rsp 
-0x58cc 014779 beq ll_version_ind ,le_parse_version_ind 
-0x58cd 014780 beq ll_reject_ind ,le_parse_reject_ind 
-0x58ce 014781 branch assert 
-:      014783 le_parse_l2cap:
-0x58cf 014784 fetch 1 ,mem_le_rxbuf + 1 
-0x58d0 014785 and pdata ,0x1f ,pdata 
-0x58d1 014786 rtn blank 
-0x58d2 014787 fetch 1 ,mem_device_option 
-0x58d3 014788 beq dvc_op_hci ,le_acl_upgoing 
-0x58d4 014789 fetch 2 ,mem_le_rxbuf + 4 
-0x58d5 014790 beq le_l2cap_cid_att ,le_parse_att 
-0x58d6 014791 beq le_l2cap_cid_smp ,le_parse_smp 
-0x58d7 014792 rtn 
-:      014794 le_acl_upgoing:
-0x58d8 014795 set1 mark_ext_patch ,mark 
-0x58d9 014796 bpatch patch2d_4 ,mem_patch2d 
-0x58da 014797 call hci_get_packet_ptr 
-0x58db 014798 fetch 1 ,mem_le_conn_handle 
-0x58dc 014799 fetcht 1 ,mem_le_rxbuf 
-0x58dd 014800 and_into 3 ,temp 
-0x58de 014801 lshift8 temp ,temp 
-0x58df 014802 lshift4 temp ,temp 
-0x58e0 014803 ior temp ,pdata 
-0x58e1 014804 istore 2 ,contwu 
-0x58e2 014805 fetcht 1 ,mem_le_rxbuf + 1 
-0x58e3 014806 and temp ,0x1f ,temp 
-0x58e4 014807 istoret 2 ,contwu 
-0x58e5 014808 copy temp ,loopcnt 
-0x58e6 014809 call uart_copy_tx_bytes 
-0x58e7 014810 add temp ,4 ,loopcnt 
-0x58e8 014811 call h4_send_packet_acl 
-0x58e9 014812 branch h4_send_acl_trigger 
-:      014814 le_acl_downgoing:
-0x58ea 014815 set1 mark_ext_patch ,mark 
-0x58eb 014816 bpatch patch2d_5 ,mem_patch2d 
-0x58ec 014817 arg 0x2 ,type 
-0x58ed 014818 ifetch 2 ,contru 
-0x58ee 014819 ifetch 2 ,contru 
-0x58ef 014820 branch assert ,blank 
-0x58f0 014821 copy pdata ,loopcnt 
-0x58f1 014822 arg mem_le_txpayload ,contw 
-0x58f2 014823 call uart_copy_rx_bytes 
-0x58f3 014824 branch le_send_autolen 
-:      014826 le_parse_smp:
-0x58f4 014827 set1 mark_ext_patch ,mark 
-0x58f5 014828 bpatch patch2d_6 ,mem_patch2d 
-0x58f6 014829 ifetch 1 ,contr 
-0x58f7 014830 beq smp_pairing_request ,le_parse_smp_pairing_request 
-0x58f8 014831 beq smp_pairing_response ,le_parse_smp_pairing_response 
-0x58f9 014832 beq smp_pairing_confirm ,le_parse_smp_pairing_confirm 
-0x58fa 014833 beq smp_pairing_random ,le_parse_smp_pairing_random 
-0x58fb 014834 beq smp_pairing_failed ,le_parse_smp_pairing_failed 
-0x58fc 014835 beq smp_encryption_information ,le_parse_smp_encryption_information 
-0x58fd 014836 beq smp_master_identification ,le_parse_smp_master_identification 
-0x58fe 014837 beq smp_identity_information ,le_parse_smp_identity_information 
-0x58ff 014838 beq smp_identity_address_information ,le_parse_smp_identity_address_information 
-0x5900 014839 beq smp_signing_information ,le_parse_smp_signing_information 
-0x5901 014840 beq smp_security_request ,le_parse_smp_security_request 
-0x5902 014841 branch assert 
-:      014843 le_parse_att:
-0x5903 014844 set1 mark_ext_patch ,mark 
-0x5904 014845 bpatch patch2d_7 ,mem_patch2d 
-0x5905 014846 ifetch 3 ,contr 
-0x5906 014847 store 3 ,mem_le_att_opcode 
-:      014848 le_parse_att_p:
-0x5907 014849 beq attop_error_response ,le_parse_att_error_response 
-0x5908 014850 beq attop_exchange_mtu_request ,le_parse_att_exchange_mtu_request 
-0x5909 014851 beq attop_exchange_mtu_response ,le_parse_att_exchange_mtu_response 
-0x590a 014852 beq attop_find_information_request ,le_parse_att_find_information_request 
-0x590b 014853 beq attop_find_information_response ,le_parse_att_find_information_response 
-0x590c 014854 beq attop_find_by_type_value_request ,le_parse_att_find_by_type_value_request 
-0x590d 014855 beq attop_find_by_type_value_response ,le_parse_att_find_by_type_value_response 
-0x590e 014856 beq attop_read_by_type_request ,le_parse_att_read_by_type_request 
-0x590f 014857 beq attop_read_by_type_response ,le_parse_att_read_by_type_response 
-0x5910 014858 beq attop_read_request ,le_parse_att_read_request 
-0x5911 014859 beq attop_read_response ,le_parse_att_read_response 
-0x5912 014860 beq attop_read_blob_request ,le_parse_att_read_blob_request 
-0x5913 014861 beq attop_read_blob_response ,le_parse_att_read_blob_response 
-0x5914 014862 beq attop_read_multiple_request ,le_parse_att_read_multiple_request 
-0x5915 014863 beq attop_read_multiple_response ,le_parse_att_read_multiple_response 
-0x5916 014864 beq attop_read_by_group_type_request ,le_parse_att_read_by_group_type_request 
-0x5917 014865 beq attop_read_by_group_type_response ,le_parse_att_read_by_group_type_response 
-0x5918 014866 beq attop_write_request ,le_parse_att_write_request 
-0x5919 014867 beq attop_write_response ,le_parse_att_write_response 
-0x591a 014868 beq attop_prepare_write_request ,le_parse_att_prepare_write_request 
-0x591b 014869 beq attop_prepare_write_response ,le_parse_att_prepare_write_response 
-0x591c 014870 beq attop_execute_write_request ,le_parse_att_execute_write_request 
-0x591d 014871 beq attop_execute_write_response ,le_parse_att_execute_write_response 
-0x591e 014872 beq attop_handle_value_notification ,le_parse_att_handle_value_notification 
-0x591f 014873 beq attop_handle_value_indication ,le_parse_att_handle_value_indication 
-0x5920 014874 beq attop_handle_value_confirmation ,le_parse_att_handle_value_confirmation 
-0x5921 014875 beq attop_write_command ,le_parse_att_write_command 
-0x5922 014876 beq attop_signed_write_command ,le_parse_att_signed_write_command 
-0x5923 014877 branch assert 
-:      014880 le_parse_connection_update_req:
-0x5924 014881 ifetch 9 ,contr 
-0x5925 014882 store 9 ,mem_le_new_param 
-0x5926 014883 ifetch 2 ,contr 
-0x5927 014884 store 2 ,mem_le_instant 
-0x5928 014885 fetch 1 ,mem_le_state 
-0x5929 014886 set1 lestate_update_param ,pdata 
-0x592a 014887 store 1 ,mem_le_state 
-0x592b 014888 rtn 
-:      014890 le_parse_channel_map_req:
-0x592c 014891 ifetch 5 ,contr 
-0x592d 014892 store 5 ,mem_le_new_map 
-0x592e 014893 ifetch 2 ,contr 
-0x592f 014894 store 2 ,mem_le_instant 
-0x5930 014895 fetch 1 ,mem_le_state 
-0x5931 014896 set1 lestate_update_map ,pdata 
-0x5932 014897 store 1 ,mem_le_state 
-0x5933 014898 rtn 
-:      014900 le_parse_terminate_ind:
-0x5934 014901 fetch 1 ,mem_le_op 
-0x5935 014902 set1 op_disconn ,pdata 
-0x5936 014903 store 1 ,mem_le_op 
-0x5937 014904 rtn 
-:      014906 le_parse_enc_req:
-0x5938 014907 increase 10 ,contr 
-0x5939 014908 ifetch 8 ,contr 
-0x593a 014909 store 8 ,mem_le_skdm 
-0x593b 014910 ifetch 4 ,contr 
-0x593c 014911 store 4 ,mem_le_ivm 
-0x593d 014912 jam xt_ll_enc_rsp ,mem_fifo_temp 
-0x593e 014913 branch le_xtype_fifo_in 
-:      014915 le_parse_enc_rsp:
-0x593f 014916 ifetch 8 ,contr 
-0x5940 014917 store 8 ,mem_le_skds 
-0x5941 014918 ifetch 4 ,contr 
-0x5942 014919 store 4 ,mem_le_ivs 
-0x5943 014920 branch generate_sk 
-:      014922 le_parse_start_enc_req:
-0x5944 014923 fetch 1 ,mem_le_state 
-0x5945 014924 set1 lestate_encryption ,pdata 
-0x5946 014925 store 1 ,mem_le_state 
-0x5947 014926 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
-0x5948 014927 branch le_xtype_fifo_in 
-:      014929 le_parse_start_enc_rsp:
-0x5949 014930 rtn master 
-0x594a 014931 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
-0x594b 014932 branch le_xtype_fifo_in 
-:      014934 le_parse_unknown_rsp:
-0x594c 014935 rtn 
-:      014937 le_parse_feature_req:
-0x594d 014938 jam xt_ll_feature_rsp ,mem_fifo_temp 
-0x594e 014939 branch le_xtype_fifo_in 
-:      014941 le_parse_feature_rsp:
-0x594f 014942 rtn 
-:      014944 le_parse_pause_enc_req:
-0x5950 014945 rtn 
-:      014947 le_parse_pause_enc_rsp:
-0x5951 014948 rtn 
-:      014950 le_parse_version_ind:
-0x5952 014951 rtn master 
-0x5953 014952 jam xt_ll_version_ind ,mem_fifo_temp 
-0x5954 014953 branch le_xtype_fifo_in 
-:      014955 le_parse_reject_ind:
-0x5955 014956 rtn 
-:      014959 le_parse_smp_pairing_request:
-0x5956 014960 store 1 ,mem_le_preq 
-0x5957 014961 ifetch 6 ,contr 
-0x5958 014962 istore 6 ,contw 
-0x5959 014963 jam xt_smp_pairing_response ,mem_fifo_temp 
-0x595a 014964 branch le_xtype_fifo_in 
-:      014966 le_parse_smp_pairing_response:
-0x595b 014967 store 1 ,mem_le_pres 
-0x595c 014968 ifetch 6 ,contr 
-0x595d 014969 istore 6 ,contw 
-0x595e 014970 jam xt_smp_pairing_confirm ,mem_fifo_temp 
-0x595f 014971 branch le_xtype_fifo_in 
-:      014973 le_parse_smp_pairing_confirm:
-0x5960 014974 arg mem_le_rconfirm ,contw 
-0x5961 014975 call memcpy16 
-0x5962 014976 jam xt_smp_pairing_random ,mem_fifo_temp 
-0x5963 014977 branch le_xtype_fifo_in ,master 
-0x5964 014978 jam xt_smp_pairing_confirm ,mem_fifo_temp 
-0x5965 014979 branch le_xtype_fifo_in 
-:      014981 le_parse_smp_pairing_random:
-0x5966 014982 call authenticate_rconfirm 
-0x5967 014983 branch le_parse_smp_pairing_random_success ,zero 
-0x5968 014984 jam xt_smp_pairing_failed ,mem_fifo_temp 
-0x5969 014985 branch le_xtype_fifo_in 
-:      014987 le_parse_smp_pairing_random_success:
-0x596a 014988 call generate_stk 
-0x596b 014989 jam xt_ll_enc_req ,mem_fifo_temp 
-0x596c 014990 branch le_xtype_fifo_in ,master 
-0x596d 014991 jam xt_smp_pairing_random ,mem_fifo_temp 
-0x596e 014992 branch le_xtype_fifo_in 
-:      014994 le_parse_smp_pairing_failed:
-0x596f 014995 rtn 
-:      014997 le_parse_smp_encryption_information:
-0x5970 014998 arg mem_le_peer_ltk ,contw 
-0x5971 014999 branch memcpy16 
-:      015001 le_parse_smp_master_identification:
-0x5972 015002 rtn 
-:      015004 le_parse_smp_identity_information:
-0x5973 015005 rtn 
-:      015007 le_parse_smp_identity_address_information:
-0x5974 015008 rtn 
-:      015010 le_parse_smp_signing_information:
-0x5975 015011 rtn 
-:      015013 le_parse_smp_security_request:
-0x5976 015014 rtn 
-:      015016 le_parse_att_error_response:
-0x5977 015017 increase -2 ,contr 
-0x5978 015018 ifetcht 1 ,contr 
-0x5979 015019 setarg attop_find_by_type_value_request 
-0x597a 015020 isub temp ,null 
-0x597b 015021 branch le_parse_att_error_res_find_by_type_value ,zero 
-0x597c 015022 setarg attop_find_information_request 
-0x597d 015023 isub temp ,null 
-0x597e 015024 branch le_parse_att_error_res_find_info ,zero 
-0x597f 015025 setarg attop_read_by_type_request 
-0x5980 015026 isub temp ,null 
-0x5981 015027 branch le_parse_att_error_res_read_by_type ,zero 
-0x5982 015028 setarg attop_read_blob_request 
-0x5983 015029 isub temp ,null 
-0x5984 015030 branch le_parse_att_error_res_read_blob ,zero 
-0x5985 015031 setarg attop_read_multiple_request 
-0x5986 015032 isub temp ,null 
-0x5987 015033 branch le_parse_att_error_res_read_multiple ,zero 
-0x5988 015034 rtn 
-:      015036 le_parse_att_error_res_find_by_type_value:
-0x5989 015037 rtn 
-:      015039 le_parse_att_error_res_find_info:
-0x598a 015040 rtn 
-:      015042 le_parse_att_error_res_read_by_type:
-0x598b 015043 rtn 
-:      015045 le_parse_att_error_res_read_blob:
-0x598c 015046 rtn 
-:      015048 le_parse_att_error_res_read_multiple:
-0x598d 015049 rtn 
-:      015052 le_parse_att_exchange_mtu_request:
-0x598e 015053 jam attop_exchange_mtu_response ,mem_fifo_temp 
-0x598f 015054 branch le_xtype_fifo_in 
-:      015056 le_parse_att_exchange_mtu_response:
-0x5990 015057 rtn 
-:      015059 le_parse_att_find_information_request:
-0x5991 015060 rshift8 pdata ,pdata 
-0x5992 015061 store 2 ,mem_le_search_handle_start 
-0x5993 015062 ifetch 2 ,contr 
-0x5994 015063 store 2 ,mem_le_search_handle_end 
-0x5995 015064 jam attop_find_information_response ,mem_fifo_temp 
-0x5996 015065 branch le_xtype_fifo_in 
-:      015067 le_parse_att_find_information_response:
-0x5997 015068 rtn 
-:      015070 le_parse_att_find_info_res_multi:
-0x5998 015071 rtn 
-:      015073 le_parse_att_find_info_res_error:
-0x5999 015074 rtn 
-:      015076 le_parse_att_find_by_type_value_request:
-0x599a 015077 rshift8 pdata ,pdata 
-0x599b 015078 store 2 ,mem_le_search_handle_start 
-0x599c 015079 ifetch 2 ,contr 
-0x599d 015080 store 2 ,mem_le_search_handle_end 
-0x599e 015081 ifetch 2 ,contr 
-0x599f 015082 store 2 ,mem_le_uuid 
-0x59a0 015083 ifetch 2 ,contr 
-0x59a1 015084 store 2 ,mem_le_search_att_type 
-0x59a2 015085 jam attop_find_by_type_value_response ,mem_fifo_temp 
-0x59a3 015086 branch le_xtype_fifo_in 
-:      015089 le_parse_att_find_by_type_value_response:
-0x59a4 015090 rtn 
-:      015092 le_parse_att_read_by_type_request:
-0x59a5 015093 rshift8 pdata ,pdata 
-0x59a6 015094 store 2 ,mem_le_search_handle_start 
-0x59a7 015095 ifetch 2 ,contr 
-0x59a8 015096 store 2 ,mem_le_search_handle_end 
-0x59a9 015097 ifetch 2 ,contr 
-0x59aa 015098 store 2 ,mem_le_search_att_type 
-0x59ab 015099 jam attop_read_by_type_response ,mem_fifo_temp 
-0x59ac 015100 branch le_xtype_fifo_in 
-:      015102 le_parse_att_read_by_type_response:
-0x59ad 015103 rtn 
-:      015105 le_parse_att_read_request:
-0x59ae 015106 fetch 2 ,mem_le_rxbuf + 7 
-0x59af 015107 store 2 ,mem_le_att_handle 
-0x59b0 015108 jam attop_read_response ,mem_fifo_temp 
-0x59b1 015109 branch le_xtype_fifo_in 
-:      015111 le_parse_att_read_response:
-0x59b2 015112 rtn 
-:      015114 le_send_att_read_res_end:
-0x59b3 015115 rtn 
-:      015117 le_prepare_descriptor:
-0x59b4 015118 rtn 
-:      015121 le_parse_att_read_blob_request:
-0x59b5 015122 ifetch 2 ,contr 
-0x59b6 015123 store 2 ,mem_le_att_offset 
-0x59b7 015124 jam attop_read_blob_response ,mem_fifo_temp 
-0x59b8 015125 branch le_xtype_fifo_in 
-:      015127 le_parse_att_read_blob_response:
-0x59b9 015128 rtn 
-:      015130 le_parse_att_read_multiple_request:
-0x59ba 015131 fetch 1 ,mem_le_rxbuf + 1 
-0x59bb 015132 increase -5 ,pdata 
-0x59bc 015133 rshift pdata ,pdata 
-0x59bd 015134 store 1 ,mem_le_temp 
-0x59be 015135 jam attop_read_multiple_response ,mem_fifo_temp 
-0x59bf 015136 branch le_xtype_fifo_in 
-:      015138 le_parse_att_read_multiple_response:
-0x59c0 015139 rtn 
-:      015141 le_parse_att_read_by_group_type_request:
-0x59c1 015142 rshift8 pdata ,pdata 
-0x59c2 015143 store 2 ,mem_le_search_handle_start 
-0x59c3 015144 ifetch 2 ,contr 
-0x59c4 015145 store 2 ,mem_le_search_handle_end 
-0x59c5 015146 ifetch 2 ,contr 
-0x59c6 015147 store 2 ,mem_le_search_att_type 
-0x59c7 015148 jam attop_read_by_group_type_response ,mem_fifo_temp 
-0x59c8 015149 branch le_xtype_fifo_in 
-:      015151 le_parse_att_read_by_group_type_response:
-0x59c9 015152 rtn 
-:      015154 le_parse_att_write_request:
-0x59ca 015155 fetch 1 ,mem_le_rxbuf + 1 
-0x59cb 015156 increase -7 ,pdata 
-0x59cc 015157 icopy loopcnt 
-0x59cd 015158 fetcht 2 ,mem_le_att_handle 
-0x59ce 015159 call le_att_get_handle_ptr 
-0x59cf 015160 branch le_parse_att_write_request_fail ,blank 
-0x59d0 015161 ifetch 1 ,contr 
-0x59d1 015162 isub loopcnt ,null 
-0x59d2 015163 nbranch le_parse_att_write_request_fail ,positive 
-0x59d3 015164 copy contr ,contw 
-0x59d4 015166 arg mem_le_rxbuf + 9 ,contr 
-0x59d5 015167 call memcpy 
-0x59d6 015168 jam bt_evt_le_write_request ,mem_fifo_temp 
-0x59d7 015169 call ui_ipc_send_event 
-:      015170 le_parse_att_write_request_fail:
-0x59d8 015171 jam attop_write_response ,mem_fifo_temp 
-0x59d9 015172 branch le_xtype_fifo_in 
-:      015174 le_parse_att_write_response:
-0x59da 015175 fetch 1 ,mem_le_conn_sm 
-0x59db 015176 rtn 
-:      015178 le_parse_att_prepare_write_request:
-0x59dc 015179 rtn 
-:      015181 le_parse_att_prepare_write_response:
-0x59dd 015182 rtn 
-:      015184 le_parse_att_execute_write_request:
-0x59de 015185 rtn 
-:      015187 le_parse_att_execute_write_response:
-0x59df 015188 rtn 
-:      015190 le_parse_att_handle_value_notification:
-0x59e0 015197 ifetch 5 ,contr 
-0x59e1 015198 store 5 ,mem_mouse_data 
-0x59e2 015199 jam send_mouse_data_cmd ,mem_mcmd 
-0x59e3 015201 call usb_isr 
-0x59e4 015202 rtn 
-:      015203 le_kb_handle_value_notification:
-0x59e5 015204 copy rega ,contr 
-0x59e6 015205 ifetch 8 ,contr 
-0x59e7 015206 store 8 ,mem_mouse_data 
-0x59e8 015207 jam send_kb_data_cmd ,mem_mcmd 
-0x59e9 015208 call usb_isr 
-0x59ea 015209 rtn 
-:      015211 le_parse_att_handle_value_indication:
-0x59eb 015212 rtn 
-:      015214 le_parse_att_handle_value_confirmation:
-0x59ec 015215 rtn 
-:      015217 le_parse_att_write_command:
-0x59ed 015218 fetch 1 ,mem_le_rxbuf + 1 
-0x59ee 015219 increase -7 ,pdata 
-0x59ef 015220 icopy loopcnt 
-0x59f0 015221 fetcht 2 ,mem_le_att_handle 
-0x59f1 015222 call le_att_get_handle_ptr 
-0x59f2 015223 branch le_parse_att_write_command_fail ,blank 
-0x59f3 015224 ifetch 1 ,contr 
-0x59f4 015225 isub loopcnt ,null 
-0x59f5 015226 nbranch le_parse_att_write_command_fail ,positive 
-0x59f6 015227 copy contr ,contw 
-0x59f7 015228 copy contr ,rega 
-0x59f8 015229 copy loopcnt ,regb 
-0x59f9 015230 arg mem_le_rxbuf + 9 ,contr 
-0x59fa 015231 call memcpy 
-0x59fb 015232 jam prcp_le ,mem_prcp 
-0x59fc 015233 call le_writeatt_cb 
-:      015234 le_parse_att_write_command_fail:
-0x59fd 015235 rtn 
-:      015238 le_writeatt_cb:
-0x59fe 015239 fetch 2 ,mem_cb_att_write 
-0x59ff 015240 rtn blank 
-0x5a00 015241 iforce pc 
-:      015244 le_parse_att_signed_write_command:
-0x5a01 015245 rtn 
-:      015247 le_supervision_update:
-0x5a02 015248 fetcht 4 ,mem_le_supervision_timer 
-0x5a03 015249 call get_clkbt 
-0x5a04 015250 isub temp ,timeup 
-0x5a05 015251 deposit timeup 
-0x5a06 015252 fetcht 2 ,mem_le_superto 
-0x5a07 015253 lshift4 temp ,temp 
-0x5a08 015254 lshift temp ,temp 
-0x5a09 015255 isub temp ,pdata 
-0x5a0a 015256 rtn 
-:      015258 le_supervision_flush:
-0x5a0b 015259 call get_clkbt 
-0x5a0c 015260 store 4 ,mem_le_supervision_timer 
-0x5a0d 015261 rtn 
-:      015265 le_adv:
-0x5a0e 015266 set1 mark_ext_patch ,mark 
-0x5a0f 015267 bpatch patch2e_0 ,mem_patch2e 
-0x5a10 015268 fetch 1 ,mem_le_adv_enable 
-0x5a11 015269 rtn blank 
-0x5a12 015270 arg le_adv_interval_timer ,queue 
-0x5a13 015271 call timer_check 
-0x5a14 015272 nrtn blank 
-0x5a15 015273 disable master 
-0x5a16 015274 enable swfine 
-0x5a17 015275 call le_init_adv 
-0x5a18 015276 call le_next_adv_channel 
-0x5a19 015277 call le_send_adv_ind 
-0x5a1a 015278 nbranch le_adv_not_match ,match 
-0x5a1b 015279 set1 mark_ext_patch ,mark 
-0x5a1c 015280 bpatch patch2e_1 ,mem_patch2e 
-0x5a1d 015281 fetch 1 ,mem_le_req_rcv 
-0x5a1e 015282 increase 1 ,pdata 
-0x5a1f 015283 store 1 ,mem_le_req_rcv 
-0x5a20 015284 fetch 1 ,mem_le_rxbuf 
-0x5a21 015285 and pdata ,0x0f ,pdata 
-0x5a22 015286 beq scan_req ,le_send_scan_response 
-0x5a23 015287 beq connect_req ,parse_connect_req 
-:      015288 le_adv_not_match:
-0x5a24 015289 nop 10000 
-0x5a25 015290 fetch 1 ,mem_le_ch_mapped 
-0x5a26 015291 bne 39 ,le_adv 
-0x5a27 015292 call le_ledoff 
-0x5a28 015293 arg le_adv_interval_timer ,queue 
-0x5a29 015294 fetch 2 ,mem_le_adv_interval_max 
-0x5a2a 015295 branch timer_init 
-:      015298 le_receive_window_size:
-0x5a2b 015299 set1 mark_ext_patch ,mark 
-0x5a2c 015300 bpatch patch2e_2 ,mem_patch2e 
-0x5a2d 015301 fetch 1 ,mem_le_peer_sca 
-0x5a2e 015302 call le_sca_map 
-0x5a2f 015303 fetch 2 ,mem_le_tsniff 
-0x5a30 015304 imul32 temp ,pdata 
-0x5a31 015305 arg 375 ,temp 
-0x5a32 015306 imul32 temp ,pdata 
-0x5a33 015307 arg 100000 ,temp 
-0x5a34 015308 idiv temp 
-0x5a35 015309 fetch 1 ,mem_le_window_size 
-0x5a36 015310 arg 20000 ,temp 
-0x5a37 015311 imul32 temp ,pdata 
-0x5a38 015312 store 4 ,mem_le_transmit_window 
-0x5a39 015313 set1 mark_ext_patch ,mark 
-0x5a3a 015314 bpatch patch2e_3 ,mem_patch2e 
-0x5a3b 015315 fetch 2 ,mem_rx_window_sniff 
-0x5a3c 015316 call wait_div_end 
-0x5a3d 015317 quotient temp 
-0x5a3e 015318 iadd temp ,pdata 
-0x5a3f 015319 store 2 ,mem_le_receive_window 
-0x5a40 015320 rtn 
-:      015322 parse_connect_req:
-0x5a41 015323 set1 mark_ext_patch ,mark 
-0x5a42 015324 bpatch patch2e_4 ,mem_patch2e 
-0x5a43 015325 fetch 6 ,mem_le_rxbuf + 8 
-0x5a44 015326 fetcht 6 ,mem_le_lap 
-0x5a45 015327 isub temp ,null 
-0x5a46 015328 nrtn zero 
-0x5a47 015329 call le_scan_check_sender_addr_type 
-0x5a48 015330 copy rega ,pdata 
-0x5a49 015331 store 1 ,mem_le_conn_peer_addr_type 
-0x5a4a 015332 fetch 7 ,mem_le_rxbuf + 21 
-0x5a4b 015333 store 7 ,mem_tmp_buffer 
-0x5a4c 015334 ifetch 8 ,contr 
-0x5a4d 015335 istore 8 ,contw 
-0x5a4e 015336 fetch 6 ,mem_le_rxbuf + 2 
-0x5a4f 015337 store 6 ,mem_le_plap 
-0x5a50 015338 set1 mark_ext_patch ,mark 
-0x5a51 015339 bpatch patch2e_5 ,mem_patch2e 
-0x5a52 015340 increase 6 ,contr 
-0x5a53 015341 ifetch 8 ,contr 
-0x5a54 015342 store 8 ,mem_le_access 
-0x5a55 015343 ifetcht 2 ,contr 
-0x5a56 015344 lshift2 temp ,temp 
-0x5a57 015345 ifetch 2 ,contr 
-0x5a58 015346 lshift2 pdata ,pdata 
-0x5a59 015347 store 2 ,mem_le_tsniff 
-0x5a5a 015348 store 4 ,mem_le_anchor 
-0x5a5b 015349 isub temp ,pdata 
-0x5a5c 015350 add pdata ,-2 ,clke_bt 
-0x5a5d 015351 ifetch 9 ,contr 
-0x5a5e 015352 store 9 ,mem_le_slave_latency 
-0x5a5f 015353 set1 mark_ext_patch ,mark 
-0x5a60 015354 bpatch patch2e_6 ,mem_patch2e 
-0x5a61 015355 ifetch 1 ,contr 
-0x5a62 015356 rshift4 pdata ,temp 
-0x5a63 015357 rshift temp ,temp 
-0x5a64 015358 storet 1 ,mem_le_peer_sca 
-0x5a65 015359 and_into 0x1f ,pdata 
-0x5a66 015360 store 1 ,mem_le_hop 
-0x5a67 015361 call le_receive_window_size 
-0x5a68 015362 call le_calc_channel_map 
-0x5a69 015363 call le_init_slave 
-0x5a6a 015364 call context_new 
-0x5a6b 015365 nrtn zero 
-0x5a6c 015366 set1 mark_ext_patch ,mark 
-0x5a6d 015367 bpatch patch2e_7 ,mem_patch2e 
-0x5a6e 015368 arg 0 ,temp 
-0x5a6f 015369 call hci_send_le_conn_complete 
-0x5a70 015370 call calc_clke_offset 
-0x5a71 015371 jam bt_evt_le_connected ,mem_fifo_temp 
-0x5a72 015372 call ui_ipc_send_event 
-0x5a73 015374 branch context_save 
-:      015377 le_init_attlist_search:
-0x5a74 015378 set1 mark_ext_patch ,mark 
-0x5a75 015379 bpatch patch2f_0 ,mem_patch2f 
-0x5a76 015380 fetch 2 ,mem_le_search_handle_start 
-0x5a77 015381 iforce regb 
-0x5a78 015382 fetch 2 ,mem_le_search_handle_end 
-0x5a79 015383 iforce regc 
-0x5a7a 015384 arg mem_le_att_list ,contr 
-0x5a7b 015385 enable user 
-0x5a7c 015386 rtn 
-:      015389 le_att_handle_inrange:
-0x5a7d 015390 ifetch 2 ,contr 
-0x5a7e 015391 rtn blank 
-0x5a7f 015392 isub regb ,null 
-0x5a80 015393 nrtn positive 
-0x5a81 015394 isub regc ,null 
-0x5a82 015395 rtn zero 
-0x5a83 015396 branch le_att_handle_blank ,positive 
-0x5a84 015397 force 1 ,null 
-0x5a85 015398 rtn 
-:      015399 le_att_handle_blank:
-0x5a86 015400 force 0 ,pdata 
-0x5a87 015401 rtn 
-:      015404 le_att_get_handle_ptr:
-0x5a88 015405 arg mem_le_att_list ,contr 
-:      015406 le_att_get_handle_loop:
-0x5a89 015407 ifetch 2 ,contr 
-0x5a8a 015408 rtn blank 
-0x5a8b 015409 increase 2 ,contr 
-0x5a8c 015410 isub temp ,null 
-0x5a8d 015411 rtn zero 
-0x5a8e 015412 ifetch 1 ,contr 
-0x5a8f 015413 iadd contr ,contr 
-0x5a90 015414 branch le_att_get_handle_loop 
-:      015416 le_data_send_write_req:
-0x5a91 015417 jam 0x2 ,mem_le_handle_data_len 
-0x5a92 015418 setarg 0x0001 
-0x5a93 015419 store 2 ,mem_le_handle_data 
-0x5a94 015420 jam conn_sm_wait_write_res ,mem_le_conn_sm 
-0x5a95 015421 jam attop_write_request ,mem_fifo_temp 
-0x5a96 015422 branch le_xtype_fifo_in 
-:      015424 le_data_wait_write_res:
-0x5a97 015425 rtn 
-:      015426 le_data_wait_write_res1:
-0x5a98 015427 rtn 
-:      015428 le_conn_sm_master:
-0x5a99 015429 set1 mark_ext_patch ,mark 
-0x5a9a 015430 bpatch patch2f_1 ,mem_patch2f 
-0x5a9b 015431 fetch 1 ,mem_device_option 
-0x5a9c 015432 rtnne dvc_op_dongle 
-0x5a9d 015433 fetch 1 ,mem_le_conn_sm 
-0x5a9e 015434 beq conn_sm_send_write_req ,le_data_send_write_req 
-0x5a9f 015435 beq conn_sm_wait_write_res ,le_data_wait_write_res 
-0x5aa0 015436 beq conn_sm_wait_write_res1 ,le_data_wait_write_res1 
-0x5aa1 015437 rtn 
-:      015439 le_ukey_init:
-0x5aa2 015440 setarg le_ukey 
-0x5aa3 015441 store 2 ,mem_cb_le_process 
-0x5aa4 015442 hjam uart_ctrl_normal ,core_uart_ctrl 
-0x5aa5 015443 setarg uart_baud_115200 
-0x5aa6 015444 hstore uart_baud_len ,core_uart_baud 
-0x5aa7 015445 hjam uartclk_dpll ,core_uart_clksel 
-0x5aa8 015446 hjam 0x4 ,core_gpio_sel1 
-0x5aa9 015447 setarg le_ukey_wcb 
-0x5aaa 015448 store 2 ,mem_cb_att_write 
-0x5aab 015449 call le_init_att 
-0x5aac 015450 rtn wake 
-0x5aad 015451 branch eeprom_load_reconn_info 
-:      015454 le_ukey:
-0x5aae 015455 fetch 1 ,mem_le_mode 
-0x5aaf 015456 compare lemode_slave ,pdata ,0xff 
-0x5ab0 015457 setarg 5 
-0x5ab1 015458 call set_pwm_steadyon ,true 
-0x5ab2 015459 ncall set_pwm_blink ,true 
-0x5ab3 015460 call uartd_prepare_rx 
-0x5ab4 015461 branch le_ukey_senddata ,blank 
-0x5ab5 015462 fetch 2 ,mem_le_notify_attr_start 
-0x5ab6 015463 iforce contw 
-0x5ab7 015464 sub loopcnt ,20 ,null 
-0x5ab8 015465 branch le_ukey_loop ,positive 
-0x5ab9 015466 force 20 ,loopcnt 
-:      015467 le_ukey_loop:
-0x5aba 015468 ifetch 1 ,contru 
-0x5abb 015469 istore 1 ,contw 
-0x5abc 015470 loop le_ukey_loop 
-0x5abd 015471 call uartd_rxdone 
-:      015472 le_ukey_senddata:
-0x5abe 015473 jam notify_handle ,mem_le_notify_handle 
-0x5abf 015474 fetcht 2 ,mem_le_notify_attr_start 
-0x5ac0 015475 ifetch 1 ,temp 
-0x5ac1 015476 rtn blank 
-0x5ac2 015477 call le_xtype_fifo_is_full 
-0x5ac3 015478 nrtn blank 
-0x5ac4 015479 jam attop_handle_value_notification ,mem_fifo_temp 
-0x5ac5 015480 branch le_xtype_fifo_in 
-:      015482 le_ukey_wcb:
-0x5ac6 015483 copy regb ,temp 
-0x5ac7 015484 call uartd_prepare_tx 
-0x5ac8 015485 copy rega ,contr 
-0x5ac9 015486 copy regb ,loopcnt 
-:      015487 le_writeatt_cb_loop:
-0x5aca 015488 ifetch 1 ,contr 
-0x5acb 015489 istore 1 ,contwu 
-0x5acc 015490 loop le_writeatt_cb_loop 
-0x5acd 015491 branch uartd_send 
-:      015493 le_clear_notify_att:
-0x5ace 015494 fetch 1 ,mem_device_option 
-0x5acf 015495 rtnne dvc_op_ukey 
-0x5ad0 015496 fetch 2 ,mem_le_notify_handle 
-0x5ad1 015497 rtnne notify_handle 
-0x5ad2 015498 fetcht 2 ,mem_le_notify_attr_start 
-0x5ad3 015499 setarg 0 
-0x5ad4 015500 istore 9 ,temp 
-0x5ad5 015501 istore 9 ,contw 
-0x5ad6 015502 istore 2 ,contw 
-0x5ad7 015503 rtn 
-:      015506 le_ledoff:
-0x5ad8 015507 fetcht 1 ,mem_le_adv_led 
-0x5ad9 015508 setflip gpio_active_bit ,temp 
-0x5ada 015509 branch gpio_out 
-:      015512 le_modified_name:
-0x5adb 015513 set1 mark_ext_patch ,mark 
-0x5adc 015514 bpatch patch2f_2 ,mem_patch2f 
-0x5add 015515 call le_modified_name_att_list 
-0x5ade 015516 branch le_modified_name_adv 
-:      015518 le_modified_name_att_list:
-0x5adf 015519 fetch 1 ,mem_le_name_len 
-0x5ae0 015520 copy pdata ,loopcnt 
-0x5ae1 015521 arg uuid_chrctr_device_name ,temp 
-0x5ae2 015522 call le_att_get_uuid_ptr 
-0x5ae3 015523 increase 1 ,contr 
-0x5ae4 015524 copy contr ,contw 
-0x5ae5 015525 arg mem_le_name ,contr 
-0x5ae6 015526 call memcpy 
-0x5ae7 015527 fetch 1 ,mem_le_name_len 
-0x5ae8 015528 sub pdata ,max_name_len ,loopcnt 
-0x5ae9 015529 copy loopcnt ,temp 
-0x5aea 015530 copy loopcnt ,pdata 
-0x5aeb 015531 ncall memcpy_empty ,blank 
-0x5aec 015532 rtn 
-:      015534 le_modified_name_adv:
-0x5aed 015535 fetch 1 ,mem_le_adv_data_len 
-0x5aee 015536 fetcht 1 ,mem_le_adv_data 
-0x5aef 015537 isub temp ,pdata 
-0x5af0 015538 copy pdata ,loopcnt 
-0x5af1 015539 copy pdata ,rega 
-0x5af2 015540 fetch 1 ,mem_le_adv_data 
-0x5af3 015541 increase 1 ,pdata 
-0x5af4 015542 arg mem_le_adv_data ,contr 
-0x5af5 015543 iadd contr ,contr 
-0x5af6 015544 arg mem_le_adv_temp ,contw 
-0x5af7 015545 call memcpy 
-0x5af8 015546 set1 mark_ext_patch ,mark 
-0x5af9 015547 bpatch patch2f_3 ,mem_patch2f 
-0x5afa 015548 fetch 1 ,mem_le_name_len 
-0x5afb 015549 copy pdata ,loopcnt 
-0x5afc 015550 increase 1 ,pdata 
-0x5afd 015551 store 1 ,mem_le_adv_data 
-0x5afe 015552 arg mem_le_adv_data + 2 ,contw 
-0x5aff 015553 arg mem_le_name ,contr 
-0x5b00 015554 call memcpy 
-0x5b01 015555 copy rega ,loopcnt 
-0x5b02 015556 arg mem_le_adv_temp ,contr 
-0x5b03 015557 call memcpy 
-0x5b04 015558 fetch 1 ,mem_le_adv_data 
-0x5b05 015559 iadd rega ,pdata 
-0x5b06 015560 store 1 ,mem_le_adv_data_len 
-0x5b07 015561 rtn 
-:      015564 le_get_device_name:
-0x5b08 015565 set1 mark_ext_patch ,mark 
-0x5b09 015566 bpatch patch2f_4 ,mem_patch2f 
-0x5b0a 015567 arg uuid_chrctr_device_name ,temp 
-0x5b0b 015568 branch le_att_get_uuid_ptr 
-:      015571 le_att_get_uuid_ptr:
-0x5b0c 015572 arg mem_le_att_list ,contr 
-:      015573 le_att_get_uuid_loop:
-0x5b0d 015574 ifetch 2 ,contr 
-0x5b0e 015575 branch assert ,blank 
-0x5b0f 015576 ifetch 2 ,contr 
-0x5b10 015577 isub temp ,null 
-0x5b11 015578 rtn zero 
-0x5b12 015579 ifetch 1 ,contr 
-0x5b13 015580 iadd contr ,contr 
-0x5b14 015581 branch le_att_get_uuid_loop 
-:      015584 memcpy_empty:
-0x5b15 015585 setarg space 
-0x5b16 015586 istore 1 ,contw 
-0x5b17 015587 loop memcpy_empty 
-0x5b18 015588 rtn 
-:      015591 le_lpm_set_mult:
-0x5b19 015592 set1 mark_ext_patch ,mark 
-0x5b1a 015593 bpatch patch2f_5 ,mem_patch2f 
-0x5b1b 015594 disable wake 
-0x5b1c 015595 branch le_lpm_set_mult_attempt ,attempt 
-0x5b1d 015596 nbranch le_lpm_lost ,match 
-:      015597 le_lpm_set_mult_attempt:
-0x5b1e 015598 call lpm_match 
-0x5b1f 015599 fetch 2 ,mem_rx_window_sniff 
-0x5b20 015600 store 2 ,mem_le_receive_window 
-0x5b21 015601 fetch 1 ,mem_le_rxbuf 
-0x5b22 015602 compare 1 ,pdata ,3 
-0x5b23 015603 nbranch lpm_mult_short ,true 
-0x5b24 015604 fetch 1 ,mem_le_txheader 
-0x5b25 015605 compare 1 ,pdata ,3 
-0x5b26 015606 nbranch lpm_mult_short ,true 
-0x5b27 015607 fetch 1 ,mem_le_state 
-0x5b28 015608 bbit1 lestate_update_param ,lpm_mult_short 
-0x5b29 015609 branch lpm_mult_wait_timeout 
-:      015611 le_lpm_lost:
-0x5b2a 015612 fetcht 2 ,mem_rx_window_sniff 
-0x5b2b 015613 rshift temp ,temp 
-0x5b2c 015614 fetch 2 ,mem_le_receive_window 
-0x5b2d 015615 iadd temp ,pdata 
-0x5b2e 015616 store 2 ,mem_le_receive_window 
-0x5b2f 015617 branch lpm_lost 
-:      015619 le_clean_att_list_handle_enable:
-0x5b30 015620 set1 mark_ext_patch ,mark 
-0x5b31 015621 bpatch patch2f_6 ,mem_patch2f 
-0x5b32 015622 jam 0 ,mem_le_switch_send_data 
-0x5b33 015623 fetcht 2 ,mem_le_notify_handle 
-0x5b34 015624 call le_att_check_notification_enable 
-0x5b35 015625 copy rega ,contw 
-0x5b36 015626 setarg 0 
-0x5b37 015627 istore 1 ,contw 
-0x5b38 015628 rtn 
-:      015629 le_scan_addr_to_uart:
-0x5b39 015630 fetch 1 ,mem_device_option 
-0x5b3a 015631 rtnne dvc_op_module 
-0x5b3b 015632 call get_uart_twptr 
-0x5b3c 015633 arg mem_le_plap ,rega 
-0x5b3d 015634 call adss_hex2string_to_uart 
-0x5b3e 015635 setarg 0x2c 
-0x5b3f 015636 istore 1 ,contwu 
-0x5b40 015637 call at_rssi_result 
-0x5b41 015638 branch uartd_send 
-:      015641 prcp_le_tx:
-0x5b42 015642 arg prcp_tx_le ,temp 
-0x5b43 015643 call le_att_check_notification_enable 
-0x5b44 015644 rtnbit0 0 
-0x5b45 015645 call le_xtype_fifo_is_full 
-0x5b46 015646 nrtn blank 
-0x5b47 015647 arg prcp_tx_le ,temp 
-0x5b48 015648 storet 2 ,mem_le_notify_handle 
-0x5b49 015649 call le_att_get_handle_ptr 
-0x5b4a 015650 branch assert ,blank 
-0x5b4b 015651 add contr ,1 ,contw 
-0x5b4c 015652 arg prcp_tx_data_len ,loopcnt 
-0x5b4d 015653 arg mem_prcp_data ,contr 
-0x5b4e 015654 call memcpy 
-0x5b4f 015655 jam attop_handle_value_notification ,mem_fifo_temp 
-0x5b50 015656 branch le_xtype_fifo_in 
-:      015657 prcp_tx:
-0x5b51 015658 rtn 
-:      015661 le_search_adtype:
-0x5b52 015662 set1 mark_ext_patch ,mark 
-0x5b53 015663 bpatch patch2f_7 ,mem_patch2f 
-0x5b54 015664 fetch 1 ,mem_le_rxbuf + 1 
-0x5b55 015665 arg mem_le_rxbuf + 8 ,contr 
-0x5b56 015666 iadd contr ,loopcnt 
-:      015667 le_search_adtype_loop:
-0x5b57 015668 ifetcht 1 ,contr 
-0x5b58 015669 ifetch 1 ,contr 
-0x5b59 015670 isub rega ,null 
-0x5b5a 015671 rtn zero 
-0x5b5b 015672 add temp ,-1 ,pdata 
-0x5b5c 015673 iadd contr ,contr 
-0x5b5d 015674 deposit loopcnt 
-0x5b5e 015675 isub contr ,null 
-0x5b5f 015676 branch le_search_adtype_loop ,positive 
-0x5b60 015677 force 1 ,null 
-0x5b61 015678 rtn 
-:      015685 init_lmp:
-0x5b62 015686 rtn wake 
-:      015687 init_lmp_work:
-0x5b63 015688 setarg 0 
-0x5b64 015689 store 1 ,mem_lmp_to_send 
-0x5b65 015690 store 1 ,mem_conn_sm 
-0x5b66 015691 store 1 ,mem_lmo_opcode1 
-0x5b67 015692 store 1 ,mem_lmo_opcode2 
-0x5b68 015693 store 1 ,mem_esco_addr 
-0x5b69 015694 store 1 ,mem_auth_enable 
-0x5b6a 015695 store 1 ,mem_connection_options 
-0x5b6b 015696 store 1 ,mem_pairing_auth 
-0x5b6c 015697 jam switch_flag_init ,mem_switch_flag 
-0x5b6d 015698 jam 0 ,mem_switch_fail_master_count 
-0x5b6e 015699 jam null_encryp ,mem_wait_encryption 
-:      015700 init_lmp_reinit:
-0x5b6f 015701 set1 mark_ext_patch ,mark 
-0x5b70 015702 bpatch patch3c_0 ,mem_patch3c 
-0x5b71 015703 jam 0 ,mem_pairing_auth 
-0x5b72 015704 jam 0 ,mem_sp_localsm 
-0x5b73 015705 jam 0 ,mem_lmp_conn_state 
-0x5b74 015706 fetch 1 ,mem_device_option 
-0x5b75 015707 rtnne dvc_op_hci ,pdata 
-0x5b76 015708 jam 0 ,mem_link_key_exists 
-:      015710 parse_rx_done:
-0x5b77 015711 rtn 
-:      015713 parse_lmp:
-0x5b78 015714 set1 mark_ext_patch ,mark 
-0x5b79 015715 bpatch patch3c_1 ,mem_patch3c 
-0x5b7a 015716 call setlocalsm_master ,master 
-0x5b7b 015717 ncall setlocalsm_slave ,master 
-0x5b7c 015718 fetch 1 ,mem_lmo_opcode2 
-0x5b7d 015719 ncall lmo_fifo_process ,blank 
-0x5b7e 015720 fetch 1 ,mem_lmo_opcode2 
-0x5b7f 015721 nrtn blank 
-0x5b80 015722 fetch 1 ,mem_state_map 
-0x5b81 015723 rtnbit0 smap_rxlmp 
-0x5b82 015724 set0 smap_rxlmp ,pdata 
-0x5b83 015725 set0 mark_rxbuf_inuse ,mark 
-0x5b84 015726 store 1 ,mem_state_map 
-0x5b85 015727 fetch 1 ,mem_rxbuf 
-0x5b86 015728 fetcht 1 ,mem_state_map 
-0x5b87 015729 isolate1 smap_lmptidinit ,pdata 
-0x5b88 015730 setflag true ,smap_lmptid ,temp 
-0x5b89 015731 storet 1 ,mem_state_map 
-0x5b8a 015732 and_into 0x2 ,temp 
-0x5b8b 015733 storet 1 ,mem_lmo_tid2 
-0x5b8c 015734 fetcht 1 ,mem_state_map 
-0x5b8d 015735 rshift pdata ,pdata 
-0x5b8e 015736 store 1 ,mem_lmi_opcode2 
-0x5b8f 015737 set1 mark_ext_patch ,mark 
-0x5b90 015738 bpatch patch3c_2 ,mem_patch3c 
-0x5b91 015739 fetch 1 ,mem_lmi_opcode2 
-0x5b92 015740 beq lmp_escape ,parse_lmp_escape 
-0x5b93 015741 beq lmp_accepted ,parse_lmp_accepted 
-0x5b94 015742 beq lmp_not_accepted ,parse_lmp_not_accepted 
-0x5b95 015743 beq lmp_set_afh ,parse_lmp_set_afh 
-0x5b96 015744 beq lmp_clkoffset_req ,parse_lmp_clkoffset_req 
-0x5b97 015745 beq lmp_encryption_mode_req ,parse_lmp_encryption_mode_req 
-0x5b98 015746 beq lmp_encryption_key_size_req ,parse_lmp_crypt_key 
-0x5b99 015747 beq lmp_auto_rate ,parse_lmp_auto_rate 
-0x5b9a 015748 beq lmp_test_control ,parse_lmp_test_control 
-0x5b9b 015749 beq lmp_test_activate ,parse_lmp_test_activate 
-0x5b9c 015750 beq lmp_setup_complete ,parse_lmp_setup_complete 
-0x5b9d 015751 beq lmp_supervision_timeout ,parse_lmp_supervision_timeout 
-0x5b9e 015752 beq lmp_features_req ,parse_lmp_features_req 
-0x5b9f 015753 beq lmp_host_connection_req ,parse_lmp_conn_req 
-0x5ba0 015754 beq lmp_version_req ,parse_lmp_version_req 
-0x5ba1 015755 beq lmp_version_res ,parse_lmp_version_res 
-0x5ba2 015756 beq lmp_detach ,parse_lmp_detach 
-0x5ba3 015757 beq lmp_max_slot ,parse_lmp_max_slot 
-0x5ba4 015758 beq lmp_max_slot_req ,parse_lmp_max_slot_req 
-0x5ba5 015759 beq lmp_name_req ,parse_lmp_name_req 
-0x5ba6 015760 beq lmp_name_res ,parse_lmp_name_res 
-0x5ba7 015761 beq lmp_features_res ,parse_lmp_features_res 
-0x5ba8 015762 beq lmp_comb_key ,parse_lmp_comb_key 
-0x5ba9 015763 beq lmp_au_rand ,parse_lmp_au_rand 
-0x5baa 015764 beq lmp_in_rand ,parse_lmp_in_rand 
-0x5bab 015765 beq lmp_sres ,parse_lmp_sres 
-0x5bac 015766 beq lmp_incr_power_req ,parse_lmp_incr_power 
-0x5bad 015767 beq lmp_decr_power_req ,parse_lmp_decr_power 
-0x5bae 015768 beq lmp_max_power ,parse_lmp_max_power 
-0x5baf 015769 beq lmp_min_power ,parse_lmp_min_power 
-0x5bb0 015770 beq lmp_page_mode_req ,parse_lmp_page_mode_req 
-0x5bb1 015771 beq lmp_page_scan_mode_req ,parse_lmp_page_scan_mode_req 
-0x5bb2 015772 beq lmp_preferred_rate ,parse_lmp_preferred_rate 
-0x5bb3 015773 beq lmp_remove_sco_link_req ,parse_lmp_remove_sco_link_req 
-0x5bb4 015774 beq lmp_sco_link_req ,parse_lmp_sco_link_req 
-0x5bb5 015775 beq lmp_slot_offset ,parse_lmp_slot_offset 
-0x5bb6 015776 beq lmp_sniff_req ,parse_lmp_sniff_req 
-0x5bb7 015777 beq lmp_start_encryption_req ,parse_lmp_start_encryption_req 
-0x5bb8 015778 beq lmp_stop_encryption_req ,parse_lmp_stop_encryption_req 
-0x5bb9 015779 beq lmp_switch_req ,parse_lmp_switch_req 
-0x5bba 015780 beq lmp_temp_rand ,parse_lmp_temp_rand 
-0x5bbb 015781 beq lmp_temp_key ,parse_lmp_temp_key 
-0x5bbc 015782 beq lmp_timing_accuracy_req ,parse_lmp_timing_accuracy_req 
-0x5bbd 015783 beq lmp_timing_accuracy_res ,parse_lmp_timing_accuracy_res 
-0x5bbe 015784 beq lmp_unit_key ,parse_lmp_unit_key 
-0x5bbf 015785 beq lmp_unsniff_req ,parse_lmp_unsniff_req 
-0x5bc0 015786 beq lmp_use_semi_permanent_key ,parse_lmp_use_semi_permanend_key 
-0x5bc1 015787 beq lmp_encapsulated_header ,parse_lmp_encapsulated_header 
-0x5bc2 015788 beq lmp_encapsulated_payload ,parse_lmp_encapsulated_payload 
-0x5bc3 015789 beq lmp_simple_pairing_confirm ,parse_simple_pairing_confirm 
-0x5bc4 015790 beq lmp_simple_pairing_number ,parse_lmp_simple_pairing_number 
-0x5bc5 015791 beq lmp_dhkey_check ,parse_dhkey_check 
-0x5bc6 015792 beq lmp_clkoffset_res ,parse_lmp_clkoffset_res 
-0x5bc7 015793 beq lmp_enc_key_size_mask_req ,parse_enc_key_size_mask_req 
-:      015796 reject_unknown_packet:
-0x5bc8 015797 jam unknown_lmp_pdu ,mem_lmo_reason2 
-:      015798 reject_lmp_packet:
-0x5bc9 015799 jam lmp_not_accepted ,mem_lmo_opcode2 
-0x5bca 015800 rtn 
-:      015802 parse_lmp_clkoffset_req:
-0x5bcb 015803 jam lmp_clkoffset_res ,mem_lmo_opcode2 
-0x5bcc 015804 rtn 
-:      015806 parse_enc_key_size_mask_req:
-0x5bcd 015807 jam lmp_enc_key_size_mask_res ,mem_lmo_opcode2 
-0x5bce 015808 rtn 
-:      015810 parse_lmp_set_afh:
-0x5bcf 015811 fetch 4 ,mem_rxbuf + 1 
-0x5bd0 015812 lshift pdata ,pdata 
-0x5bd1 015813 store 4 ,mem_afh_instant 
-0x5bd2 015814 fetch 1 ,mem_rxbuf + 5 
-0x5bd3 015815 store 1 ,mem_afh_new_mod 
-0x5bd4 015816 fetch 5 ,mem_rxbuf + 6 
-0x5bd5 015817 store 5 ,mem_afh_map_new 
-0x5bd6 015818 fetch 5 ,mem_rxbuf + 11 
-0x5bd7 015819 istore 5 ,contw 
-0x5bd8 015820 fetch 1 ,mem_mode 
-0x5bd9 015821 set1 afh_change ,pdata 
-0x5bda 015822 store 1 ,mem_mode 
-0x5bdb 015823 rtn 
-:      015824 parse_lmp_escape:
-0x5bdc 015825 fetch 1 ,mem_rxbuf + 1 
-0x5bdd 015826 set1 7 ,pdata 
-0x5bde 015827 store 1 ,mem_lmi_opcode2 
-0x5bdf 015828 beq lmp_ext_accepted ,parse_lmpext_accepted 
-0x5be0 015829 beq lmp_not_accepted_ext ,parse_lmpext_not_accepted 
-0x5be1 015830 beq lmp_sniff_subrating_req ,parse_lmp_sniff_subrating_req 
-0x5be2 015831 beq lmp_sniff_subrating_res ,parse_lmp_sniff_subrating_res 
-0x5be3 015832 beq lmp_packet_type_table_req ,parse_lmpext_packet_type_table_req 
-0x5be4 015833 beq lmp_ext_features_req ,parse_lmpext_features_req 
-0x5be5 015834 beq lmp_ext_features_res ,parse_lmpext_features_res 
-0x5be6 015835 beq lmp_ext_chn_classification_req ,parse_lmpext_chn_classification_req 
-0x5be7 015836 beq lmp_pause_encryption_req ,parse_lmpext_pause_encrypt 
-0x5be8 015837 beq lmp_resume_encryption_req ,parse_lmpext_resume_encrypt 
-0x5be9 015838 beq lmp_io_cap_req ,parse_lmpext_iocap_req 
-0x5bea 015839 beq lmp_io_cap_res ,parse_lmpext_iocap_res 
-0x5beb 015840 beq lmp_ext_remove_esco_req ,parse_lmpext_remove_esco_req 
-0x5bec 015841 beq lmp_ext_esco_link_req ,parse_lmpext_esco_link_req 
-0x5bed 015842 rtneq lmp_ext_features_res 
-:      015845 reject_unknown_ext_packet:
-0x5bee 015846 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
-0x5bef 015847 jam unknown_lmp_pdu ,mem_lmo_reason2 
-0x5bf0 015849 rtn 
-:      015850 parse_lmpext_chn_classification_req:
-0x5bf1 015851 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
-0x5bf2 015852 jam not_support_chn_classification ,mem_lmo_reason2 
-0x5bf3 015853 rtn 
-:      015855 parse_lmpext_esco_link_req:
-0x5bf4 015856 fetch 1 ,mem_rxbuf + 2 
-0x5bf5 015857 store 1 ,mem_sco_handle 
-0x5bf6 015858 fetch 1 ,mem_rxbuf + 3 
-0x5bf7 015859 store 1 ,mem_esco_addr 
-0x5bf8 015860 fetch 1 ,mem_rxbuf + 5 
-0x5bf9 015861 store 1 ,mem_esco_desco 
-0x5bfa 015862 fetch 1 ,mem_rxbuf + 9 
-0x5bfb 015863 store 1 ,mem_esco_type 
-0x5bfc 015864 fetch 1 ,mem_rxbuf + 14 
-0x5bfd 015865 store 1 ,mem_air_mode 
-0x5bfe 015866 bmark1 mark_esco ,check_esco_prarm 
-0x5bff 015867 set1 mark_esco ,mark 
-0x5c00 015868 call push_tid_follow 
-0x5c01 015869 store 1 ,mem_accptsco_tid 
-0x5c02 015870 force 0 ,temp 
-0x5c03 015871 branch hci_send_conn_req_event 
-:      015873 parse_lmpext_esco_link_req_change_param:
-0x5c04 015874 jam lmp_ext_esco_link_req ,mem_lmo_opcode2 
-0x5c05 015875 jam prarm_neogotiation ,mem_neogotiation_state 
-0x5c06 015876 branch cmd_exit 
-:      015878 check_esco_prarm:
-0x5c07 015879 fetch 1 ,mem_esco_type 
-0x5c08 015880 bne type_hv3 ,reject_esco_prarm 
-0x5c09 015881 jam lmp_ext_accepted ,mem_lmo_opcode2 
-0x5c0a 015882 branch esco_prarm_common 
-:      015883 reject_esco_prarm:
-0x5c0b 015884 set0 mark_esco ,mark 
-0x5c0c 015885 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
-0x5c0d 015886 force hci_error_unknown_hci_command ,temp 
-0x5c0e 015887 call hci_send_sco_complete 
-:      015888 esco_prarm_common:
-0x5c0f 015889 jam lmp_ext_esco_link_req ,mem_lmi_opcode2 
-0x5c10 015890 rtn 
-:      015893 parse_lmpext_remove_esco_req:
-0x5c11 015894 jam lmp_ext_accepted ,mem_lmo_opcode2 
-0x5c12 015895 jam lmp_ext_remove_esco_req ,mem_lmi_opcode2 
-0x5c13 015896 branch stop_esco 
-:      015898 parse_lmpext_iocap_req:
-0x5c14 015899 call iocap_lmpext_load 
-0x5c15 015900 fetch 1 ,mem_device_option 
-0x5c16 015901 beq dvc_op_hci ,iocap_lmpext_hci 
-0x5c17 015902 jam lmp_io_cap_res ,mem_lmo_opcode2 
-0x5c18 015903 rtn 
-:      015905 parse_lmpext_iocap_res:
-0x5c19 015906 call iocap_lmpext_load 
-0x5c1a 015907 fetch 1 ,mem_device_option 
-0x5c1b 015908 beq dvc_op_hci ,iocap_lmpext_hci 
-0x5c1c 015909 branch iocap_lmpext_common 
-:      015911 iocap_lmpext_load:
-0x5c1d 015912 arg mem_sp_iocap_remote ,contw 
-0x5c1e 015913 fetch 3 ,mem_rxbuf + 2 
-0x5c1f 015914 istore 3 ,contw 
-0x5c20 015915 rtn 
-:      015917 iocap_lmpext_hci:
-0x5c21 015918 call hci_send_io_cap_response_event 
-:      015919 iocap_lmpext_common:
-0x5c22 015920 call check_localsm 
-0x5c23 015921 ncall hci_send_io_cap_req_event ,true 
-0x5c24 015922 branch master_set_mem_master_sp_flag ,true 
-0x5c25 015923 rtn 
-:      015924 parse_lmpext_accepted:
-0x5c26 015925 fetch 1 ,mem_rxbuf + 3 
-0x5c27 015926 set1 7 ,pdata 
-0x5c28 015927 store 1 ,mem_lmi_accepted_opcode 
-0x5c29 015928 beq lmp_packet_type_table_req ,parse_lmpext_accepted_ptt 
-0x5c2a 015929 beq lmp_ext_esco_link_req ,play_sco 
-0x5c2b 015930 beq lmp_ext_remove_esco_req ,parse_lmpext_stop_esco 
-0x5c2c 015931 rtn 
-:      015933 parse_lmpext_stop_esco:
-0x5c2d 015934 branch stop_esco 
-:      015936 parse_lmpext_not_accepted:
-0x5c2e 015937 fetch 1 ,mem_rxbuf + 3 
-0x5c2f 015938 set1 7 ,pdata 
-0x5c30 015939 store 1 ,mem_lmi_accepted_opcode 
-0x5c31 015940 beq lmp_packet_type_table_req ,parse_lmpext_not_accepted_ptt 
-0x5c32 015941 beq lmp_ext_esco_link_req ,parse_lmpext_not_accepted_esco 
-0x5c33 015942 rtn 
-:      015944 parse_lmpext_not_accepted_esco:
-0x5c34 015945 set0 mark_esco ,mark 
-0x5c35 015946 rtn 
-:      015948 parse_lmpext_accepted_ptt:
-0x5c36 015949 fetch 1 ,mem_ptt 
-0x5c37 015950 fetcht 1 ,mem_state_map 
-0x5c38 015951 nsetflag blank ,smap_edr ,temp 
-0x5c39 015952 storet 1 ,mem_state_map 
-:      015953 parse_lmpext_not_accepted_ptt:
-0x5c3a 015954 fetch 1 ,mem_state 
-0x5c3b 015955 rtnbit0 state_init_seq 
-0x5c3c 015956 set0 state_init_seq ,pdata 
-0x5c3d 015957 store 1 ,mem_state 
-0x5c3e 015958 fetch 1 ,mem_auth_enable 
-0x5c3f 015959 nbranch hci_send_linkkey_req ,blank 
-0x5c40 015960 jam lmp_setup_complete ,mem_lmo_opcode2 
-0x5c41 015961 rtn 
-:      015963 parse_lmpext_pause_encrypt:
-0x5c42 015964 nbranch parse_lmpext_pause_encrypt_slave ,master 
-0x5c43 015965 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
-0x5c44 015966 branch tid_reply 
-:      015968 parse_lmpext_pause_encrypt_slave:
-0x5c45 015969 jam lmp_pause_encryption_req ,mem_lmo_opcode2 
-0x5c46 015970 rtn 
-:      015972 parse_lmpext_resume_encrypt:
-0x5c47 015975 call tid_reply 
-0x5c48 015976 branch lmp_start_encryption 
-:      015978 parse_lmpext_features_req:
-0x5c49 015979 jam lmp_ext_features_res ,mem_lmo_opcode2 
-0x5c4a 015980 rtn 
-:      015982 parse_lmpext_features_res:
-0x5c4b 015983 fetcht 1 ,mem_rxbuf + 4 
-0x5c4c 015984 and temp ,0x1 ,temp 
-0x5c4d 015985 storet 1 ,mem_remote_sppcap 
-0x5c4e 015986 fetch 1 ,mem_hci_cmd 
-0x5c4f 015987 bne hci_cmd_wait_remote_ext_feature ,parse_lmpext_features_res_not_hci 
-0x5c50 015988 jam 0 ,mem_hci_cmd 
-0x5c51 015989 call hci_send_remote_ext_features_event 
-:      015990 parse_lmpext_features_res_not_hci:
-0x5c52 015991 fetch 1 ,mem_conn_sm 
-0x5c53 015992 rtnne conn_sm_wait_features_ext 
-0x5c54 015993 jam conn_sm_send_conn_req ,mem_conn_sm 
-0x5c55 015994 branch process_conn_sm 
-:      015996 parse_lmp_accepted:
-0x5c56 015997 fetch 1 ,mem_rxbuf + 1 
-0x5c57 015998 store 1 ,mem_lmi_accepted_opcode 
-0x5c58 015999 beq lmp_host_connection_req ,parse_lmp_accepted_hostconn 
-0x5c59 016000 beq lmp_in_rand ,parse_lmp_accepted_inrand 
-0x5c5a 016001 beq lmp_encryption_mode_req ,parse_lmp_accepted_enc_mode 
-0x5c5b 016002 beq lmp_encryption_key_size_req ,parse_lmp_accepted_enc_keysize 
-0x5c5c 016003 beq lmp_start_encryption_req ,parse_lmp_accepted_start_enc 
-0x5c5d 016004 beq lmp_stop_encryption_req ,parse_lmp_accepted_stop_enc 
-0x5c5e 016005 beq lmp_unsniff_req ,parse_lmp_accepted_unsniff_req 
-0x5c5f 016006 beq lmp_sniff_req ,parse_lmp_accepted_sniff_req 
-0x5c60 016007 beq lmp_sco_link_req ,play_sco 
-0x5c61 016009 beq lmp_switch_req ,parse_lmp_accepted_switch 
-0x5c62 016011 beq lmp_encapsulated_header ,parse_lmp_accepted_encapsulated_header 
-0x5c63 016012 beq lmp_encapsulated_payload ,parse_lmp_accepted_encapsulated_payload 
-0x5c64 016013 beq lmp_simple_pairing_number ,parse_lmp_accepted_simple_pairing_number 
-0x5c65 016014 beq lmp_dhkey_check ,parse_lmp_accepted_dhkey_check 
-0x5c66 016015 rtn 
-:      016017 parse_lmp_not_accepted:
-0x5c67 016018 fetch 1 ,mem_rxbuf + 1 
-0x5c68 016019 store 1 ,mem_lmi_accepted_opcode 
-0x5c69 016020 beq lmp_name_req ,parse_lmp_not_accepted_name_req 
-0x5c6a 016021 beq lmp_host_connection_req ,parse_lmp_not_accepted_hostconn 
-0x5c6b 016022 beq lmp_au_rand ,parse_lmp_not_accepted_aurand 
-0x5c6c 016023 beq lmp_sco_link_req ,parse_lmp_not_accepted_sco_link_req 
-0x5c6d 016024 beq lmp_in_rand ,parse_lmp_not_accepted_inrand 
-0x5c6e 016025 beq lmp_switch_req ,parse_lmp_not_accepted_switch 
-0x5c6f 016027 beq lmp_simple_pairing_number ,parse_lmp_not_accepted_simple_pairing_number 
-0x5c70 016028 beq lmp_dhkey_check ,parse_lmp_not_accepted_dhkey_check 
-0x5c71 016029 beq lmp_unsniff_req ,parse_lmp_not_accepted_unsniff_req 
-0x5c72 016030 beq lmp_sniff_req ,parse_lmp_not_acdcept_sniff_req 
-0x5c73 016031 rtn 
-:      016033 parse_lmp_accepted_switch:
-0x5c74 016034 jam bt_evt_switch_accept ,mem_fifo_temp 
-0x5c75 016035 call ui_ipc_send_event 
-0x5c76 016036 branch role_switch_prepare0 
-:      016037 parse_lmp_not_accepted_switch:
-0x5c77 016038 jam bt_evt_switch_not_accept ,mem_fifo_temp 
-0x5c78 016039 call ui_ipc_send_event 
-0x5c79 016040 jam switch_flag_not_accept ,mem_switch_flag 
-0x5c7a 016041 setarg timer_switch_waite 
-0x5c7b 016042 arg switch_wait_timer ,queue 
-0x5c7c 016043 branch timer_init 
-:      016046 parse_lmp_accepted_hostconn:
-0x5c7d 016049 fetch 1 ,mem_lmp_conn_state 
-0x5c7e 016050 set1 received_conn_req ,pdata 
-0x5c7f 016051 store 1 ,mem_lmp_conn_state 
-0x5c80 016052 jam bt_evt_bb_connected ,mem_fifo_temp 
-0x5c81 016053 call ui_ipc_send_event 
-0x5c82 016054 jam lmp_packet_type_table_req ,mem_lmo_opcode2 
-:      016056 parse_lmp_accepted_hostconn_ctn:
-0x5c83 016058 fetch 1 ,mem_conn_sm 
-0x5c84 016059 bne conn_sm_wait_conn_accept ,parse_rx_done 
-0x5c85 016062 jam conn_sm_auth_pair ,mem_conn_sm 
-0x5c86 016063 rtn 
-:      016071 parse_lmp_not_accepted_hostconn:
-0x5c87 016072 jam acl_connection_already_exists ,mem_disconn_reason_send 
-0x5c88 016073 jam lmp_detach ,mem_lmo_opcode2 
-0x5c89 016074 force hci_error_host_timeout ,temp 
-0x5c8a 016075 call hci_send_connection_error 
-0x5c8b 016077 jam conn_sm_standby ,mem_conn_sm 
-0x5c8c 016079 branch parse_rx_done ,true 
-0x5c8d 016080 rtn 
-:      016082 parse_lmp_not_accepted_sco_link_req:
-0x5c8e 016083 jam lmp_sco_link_req ,mem_lmo_opcode2 
-0x5c8f 016084 rtn 
-:      016087 parse_lmp_accepted_inrand:
-0x5c90 016088 fetch 1 ,mem_link_key_exists 
-0x5c91 016089 nrtn blank 
-0x5c92 016090 call clear_linkkey 
-0x5c93 016091 call lmp_generate_key 
-0x5c94 016092 rtn master 
-0x5c95 016093 set1 mark_slave_in_rand_accepted ,mark 
-0x5c96 016094 rtn 
-:      016096 parse_lmp_accepted_enc_mode:
-0x5c97 016097 nrtn master 
-0x5c98 016098 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
-0x5c99 016099 fetch 1 ,mem_state_map 
-0x5c9a 016100 rtnbit0 smap_encryption 
-0x5c9b 016101 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
-0x5c9c 016102 rtn 
-:      016104 parse_lmp_accepted_enc_keysize:
-0x5c9d 016105 branch lmp_start_encryption 
-:      016107 parse_lmp_accepted_start_enc:
-0x5c9e 016108 call send_create_conn_start_l2cap_timer_sm 
-0x5c9f 016109 fetch 1 ,mem_state 
-0x5ca0 016110 rtnbit1 state_conn_comp 
-0x5ca1 016111 jam lmp_setup_complete ,mem_lmo_opcode2 
-0x5ca2 016112 fetch 1 ,mem_conn_sm 
-0x5ca3 016113 rtnne conn_sm_encrypt_wait 
-0x5ca4 016114 jam conn_sm_encrypt_wait_clear ,mem_conn_sm 
-0x5ca5 016115 rtn 
-:      016117 parse_lmp_accepted_stop_enc:
-0x5ca6 016125 rtn 
-:      016127 parse_lmp_not_accepted_aurand:
-0x5ca7 016128 fetch 1 ,mem_device_option 
-0x5ca8 016129 bne dvc_op_hci ,parse_lmp_not_accepted_aurand_send_detach 
-0x5ca9 016130 fetch 1 ,mem_link_key_exists 
-0x5caa 016131 rtn blank 
-0x5cab 016132 fetcht 1 ,mem_conn_sm 
-0x5cac 016133 jam 0 ,mem_conn_sm 
-0x5cad 016134 jam 0 ,mem_link_key_exists 
-0x5cae 016135 fetch 1 ,mem_rxbuf + 2 
-0x5caf 016136 rtnne key_missing 
-0x5cb0 016137 storet 1 ,mem_conn_sm 
-0x5cb1 016138 jam local_statemachine ,mem_sp_localsm 
-0x5cb2 016139 fetch 2 ,mem_lmpext_ssp_enable 
-0x5cb3 016140 fetcht 1 ,mem_remote_sppcap 
-0x5cb4 016141 iand temp ,pdata 
-0x5cb5 016142 branch cmd_pair ,blank 
-0x5cb6 016143 branch cmd_ssp 
-:      016145 parse_lmp_not_accepted_aurand_send_detach:
-0x5cb7 016146 jam lmp_detach ,mem_lmo_opcode2 
-0x5cb8 016147 jam other_end_terminated ,mem_disconn_reason_send 
-0x5cb9 016148 rtn 
-:      016150 parse_lmp_not_accepted_inrand:
-0x5cba 016151 fetch 1 ,mem_rxbuf + 2 
-0x5cbb 016152 beq key_missing ,parse_lmp_inrand_key_missing 
-0x5cbc 016153 rtnne pairing_not_allowed 
-0x5cbd 016154 jam pairing_not_allowed ,mem_disconn_reason_send 
-0x5cbe 016155 jam lmp_detach ,mem_lmo_opcode2 
-0x5cbf 016156 rtn 
-:      016157 parse_lmp_inrand_key_missing:
-0x5cc0 016158 jam key_missing ,mem_disconn_reason_send 
-0x5cc1 016159 jam lmp_detach ,mem_lmo_opcode2 
-0x5cc2 016160 rtn 
-:      016162 parse_lmp_not_accepted_name_req:
-0x5cc3 016163 rtn 
-:      016165 parse_lmp_not_accepted_simple_pairing_number:
-0x5cc4 016166 jam sp_stat_null ,mem_sp_state 
-0x5cc5 016167 jam lmp_detach ,mem_lmo_opcode2 
-0x5cc6 016168 branch parse_rx_done 
-:      016170 parse_lmp_not_accepted_dhkey_check:
-0x5cc7 016171 jam sp_stat_null ,mem_sp_state 
-0x5cc8 016172 jam lmp_detach ,mem_lmo_opcode2 
-0x5cc9 016173 branch parse_rx_done 
-:      016174 parse_lmp_not_accepted_unsniff_req:
-0x5cca 016175 jam bt_evt_unsniff_not_accept ,mem_fifo_temp 
-0x5ccb 016176 branch ui_ipc_send_event 
-:      016178 parse_lmp_accepted_unsniff_req:
-0x5ccc 016179 jam bt_evt_unsniff_accept ,mem_fifo_temp 
-0x5ccd 016180 call ui_ipc_send_event 
-0x5cce 016181 call sniff_exit 
-0x5ccf 016182 force 0 ,temp 
-0x5cd0 016183 branch hci_send_mode_change 
-:      016185 parse_lmp_accepted_sniff_req:
-0x5cd1 016186 jam bt_evt_sniff_accept ,mem_fifo_temp 
-0x5cd2 016187 call ui_ipc_send_event 
-0x5cd3 016188 force 0x02 ,temp 
-0x5cd4 016189 call hci_send_mode_change 
-0x5cd5 016190 setarg 0 
-0x5cd6 016191 store 2 ,mem_dsniff 
-0x5cd7 016192 fetch 2 ,mem_sniff_param_interval 
-0x5cd8 016193 lshift pdata ,pdata 
-0x5cd9 016194 store 2 ,mem_tsniff 
-0x5cda 016195 fetch 1 ,mem_sniff_param_attempt 
-0x5cdb 016196 store 1 ,mem_sniff_attempt 
-0x5cdc 016197 fetch 1 ,mem_sniff_param_timeout 
-0x5cdd 016198 store 1 ,mem_sniff_timeout 
-0x5cde 016199 branch sniff_init 
-:      016201 parse_lmp_not_acdcept_sniff_req:
-0x5cdf 016202 jam bt_evt_sniff_not_accept ,mem_fifo_temp 
-0x5ce0 016203 branch ui_ipc_send_event 
-:      016205 parse_lmp_crypt_key:
-0x5ce1 016206 fetcht 1 ,mem_rxbuf + 1 
-0x5ce2 016207 storet 1 ,mem_key_size 
-0x5ce3 016208 branch accept_lmp_msg 
-:      016210 parse_lmp_setup_complete:
-0x5ce4 016211 fetch 1 ,mem_lmp_conn_state 
-0x5ce5 016212 set1 received_setup_complete ,pdata 
-0x5ce6 016213 store 1 ,mem_lmp_conn_state 
-0x5ce7 016214 rtnbit1 sent_setup_complete 
-0x5ce8 016215 jam lmp_setup_complete ,mem_lmo_opcode2 
-0x5ce9 016216 branch parse_rx_done 
-:      016218 parse_lmp_max_slot:
-0x5cea 016221 rtn 
-:      016223 parse_lmp_max_slot_req:
-0x5ceb 016224 fetch 1 ,mem_max_slot 
-0x5cec 016225 fetcht 1 ,mem_rxbuf + 1 
-0x5ced 016226 isub temp ,null 
-0x5cee 016228 branch accept_lmp_msg ,positive 
-0x5cef 016229 jam lmp_not_accepted ,mem_lmo_opcode2 
-0x5cf0 016230 jam unspecified_error ,mem_lmo_reason2 
-0x5cf1 016231 jam lmp_max_slot_req ,mem_lmi_opcode2 
-0x5cf2 016232 rtn 
-:      016234 parse_lmp_detach:
-0x5cf3 016235 call prepare_disconnect 
-0x5cf4 016236 branch accept_lmp_msg 
-:      016238 accept_lmp_msg:
-0x5cf5 016239 jam lmp_accepted ,mem_lmo_opcode2 
-0x5cf6 016240 rtn 
-:      016242 parse_lmp_incr_power:
-0x5cf7 016243 jam lmp_max_power ,mem_lmo_opcode2 
-0x5cf8 016244 rtn 
-:      016246 parse_lmp_decr_power:
-0x5cf9 016247 jam lmp_min_power ,mem_lmo_opcode2 
-0x5cfa 016248 rtn 
-:      016250 parse_lmp_version_res:
-0x5cfb 016251 fetch 1 ,mem_conn_sm 
-0x5cfc 016252 rtneq conn_sm_wait_version 
-0x5cfd 016254 jam conn_sm_send_features ,mem_conn_sm 
-0x5cfe 016256 rtn 
-:      016259 parse_lmp_auto_rate:
-0x5cff 016260 rtn 
-:      016262 parse_lmp_in_rand:
-0x5d00 016263 call lmp_copy_rand 
-0x5d01 016264 jam pincode_state_wait_pincode ,mem_pincode_state 
-0x5d02 016265 fetch 1 ,mem_device_option 
-0x5d03 016266 beq dvc_op_hci ,parse_lmp_in_rand_hci 
-0x5d04 016267 jam bt_evt_pincode_req ,mem_fifo_temp 
-0x5d05 016268 call ui_ipc_send_event 
-:      016269 parse_lmp_in_rand_hci:
-0x5d06 016270 call hci_send_pincode_req 
-0x5d07 016271 call tid_check 
-0x5d08 016272 nbranch lmp_accept_inrand ,true 
-0x5d09 016273 nbranch parse_lmp_inrand_res ,master 
-0x5d0a 016274 jam lmp_not_accepted ,mem_lmo_opcode2 
-0x5d0b 016275 jam lmp_in_rand ,mem_lmi_opcode2 
-0x5d0c 016276 jam transaction_collision ,mem_lmo_reason2 
-0x5d0d 016277 rtn 
-:      016278 parse_lmp_inrand_res:
-0x5d0e 016279 fetch 1 ,mem_op 
-0x5d0f 016280 set1 op_inrand_req ,pdata 
-0x5d10 016281 store 1 ,mem_op 
-0x5d11 016282 rtn 
-:      016285 pop_tid_follow:
-0x5d12 016286 fetcht 1 ,mem_state_map 
-0x5d13 016287 nsetflag blank ,smap_lmptid ,temp 
-0x5d14 016288 storet 1 ,mem_state_map 
-0x5d15 016289 rtn 
-:      016292 push_tid_follow:
-0x5d16 016293 fetch 1 ,mem_lmo_tid2 
-0x5d17 016294 rshift pdata ,pdata 
-0x5d18 016295 and_into 1 ,pdata 
-0x5d19 016296 rtn 
-:      016298 parse_lmp_au_rand:
-0x5d1a 016299 call push_tid_follow 
-0x5d1b 016300 store 1 ,mem_sres_tid 
-0x5d1c 016301 call lmp_copy_rand 
-0x5d1d 016302 jam lmp_sres ,mem_lmo_opcode2 
-0x5d1e 016303 fetch 1 ,mem_link_key_exists 
-0x5d1f 016304 nrtn blank 
-0x5d20 016305 fetch 1 ,mem_state 
-0x5d21 016306 rtnbit1 state_combkey 
-0x5d22 016307 jam key_missing ,mem_lmo_reason2 
-0x5d23 016308 fetch 1 ,mem_device_option 
-0x5d24 016309 bne dvc_op_hci ,reject_lmp_packet 
-0x5d25 016310 fetch 1 ,mem_auth_enable 
-0x5d26 016311 nbranch reject_lmp_packet ,blank 
-0x5d27 016312 jam 0 ,mem_lmo_opcode2 
-:      016313 parse_lmp_inrand_sres:
-0x5d28 016314 fetch 1 ,mem_op 
-0x5d29 016315 set1 op_send_sres ,pdata 
-0x5d2a 016316 store 1 ,mem_op 
-0x5d2b 016317 branch hci_send_linkkey_req 
-:      016319 parse_lmp_sres:
-0x5d2c 016320 arg mem_plap ,rega 
-0x5d2d 016321 call function_e1 
-0x5d2e 016322 fetch 4 ,mem_rxbuf + 1 
-0x5d2f 016323 fetcht 4 ,mem_input_store 
-0x5d30 016324 isub temp ,null 
-0x5d31 016325 branch authentication_ok ,zero 
-0x5d32 016326 jam lmp_detach ,mem_lmo_opcode2 
-0x5d33 016327 jam authentication_failure_error ,mem_disconn_reason_send 
-0x5d34 016328 rtn 
-:      016329 authentication_ok:
-0x5d35 016330 call copy_aco 
-0x5d36 016331 call linkkey_ready 
-0x5d37 016332 fetch 1 ,mem_op 
-0x5d38 016333 isolate1 op_auth_req ,pdata 
-0x5d39 016334 set0 op_auth_req ,pdata 
-0x5d3a 016335 store 1 ,mem_op 
-0x5d3b 016336 call hci_send_auth_complete ,true 
-0x5d3c 016337 fetch 1 ,mem_conn_sm 
-0x5d3d 016338 beq conn_sm_auth_wait ,authentication_ok_conn_sm 
-0x5d3e 016339 beq conn_sm_pairing_wait ,authentication_ok_conn_sm 
-0x5d3f 016340 rtn 
-:      016341 authentication_ok_conn_sm:
-0x5d40 016342 fetch 1 ,mem_pairing_auth 
-0x5d41 016343 rtnne defalt_pairing_auth 
-0x5d42 016344 fetch 1 ,mem_state_map 
-0x5d43 016345 rtnbit1 smap_encryption 
-0x5d44 016346 branch host_create_conn_encrypt 
-:      016348 parse_lmp_comb_key:
-0x5d45 016349 arg mem_rxbuf + 1 ,rega 
-0x5d46 016350 arg mem_kinit ,regb 
-0x5d47 016351 arg mem_random_number ,contw 
-0x5d48 016352 call xor16 
-0x5d49 016353 arg mem_plap ,rega 
-0x5d4a 016354 call generate_linkkey 
-0x5d4b 016355 jam lmp_au_rand ,mem_lmo_opcode2 
-0x5d4c 016356 fetch 1 ,mem_state 
-0x5d4d 016357 bbit0 state_combkey ,lmp_generate_key 
-0x5d4e 016358 rtn 
-:      016360 parse_lmp_name_res:
-0x5d4f 016361 fetch 2 ,mem_len 
-0x5d50 016362 add pdata ,-3 ,loopcnt 
-0x5d51 016363 fetcht 1 ,mem_rxbuf + 1 
-0x5d52 016364 setarg mem_tmp_buffer 
-0x5d53 016365 iadd temp ,contw 
-0x5d54 016366 arg mem_rxbuf + 3 ,contr 
-0x5d55 016367 call memcpy 
-0x5d56 016368 fetcht 1 ,mem_name_offset 
-0x5d57 016369 fetch 1 ,mem_rxbuf + 2 
-0x5d58 016370 isub temp ,pdata 
-0x5d59 016371 sub pdata ,14 ,null 
-0x5d5a 016372 branch parse_lmp_name_res_end ,positive 
-0x5d5b 016373 add temp ,14 ,pdata 
-0x5d5c 016374 store 1 ,mem_name_offset 
-0x5d5d 016375 jam lmp_name_req ,mem_lmo_opcode2 
-0x5d5e 016376 rtn 
-:      016377 parse_lmp_name_res_end:
-0x5d5f 016378 fetch 1 ,mem_state_map 
-0x5d60 016379 set1 smap_name_res ,pdata 
-0x5d61 016380 store 1 ,mem_state_map 
-0x5d62 016381 bbit1 smap_name_req ,lmp_disconnect 
-0x5d63 016384 rtn 
-:      016385 parse_lmp_name_req:
-0x5d64 016386 fetch 1 ,mem_rxbuf + 1 
-0x5d65 016387 store 1 ,mem_lmi_opcode2 
-0x5d66 016388 jam lmp_name_res ,mem_lmo_opcode2 
-0x5d67 016389 rtn 
-:      016391 parse_lmp_conn_req:
-0x5d68 016392 fetch 1 ,mem_device_option 
-0x5d69 016393 bne dvc_op_hci ,accept_lmp_msg 
-0x5d6a 016394 force 1 ,temp 
-0x5d6b 016395 branch hci_send_conn_req_event 
-:      016397 parse_lmp_timing_accuracy_req:
-0x5d6c 016398 jam lmp_timing_accuracy_res ,mem_lmo_opcode2 
-0x5d6d 016399 rtn 
-:      016401 parse_lmp_features_req:
-0x5d6e 016402 jam lmp_features_res ,mem_lmo_opcode2 
-0x5d6f 016403 rtn 
-:      016405 parse_lmp_version_req:
-0x5d70 016406 jam lmp_version_res ,mem_lmo_opcode2 
-0x5d71 016407 rtn 
-:      016409 parse_lmp_supervision_timeout:
-0x5d72 016412 rtn 
-:      016416 parse_lmp_sniff_subrating_req:
-0x5d73 016417 fetch 2 ,mem_tsniff 
-0x5d74 016418 iforce temp 
-0x5d75 016419 fetch 1 ,mem_rxbuf + 2 
-0x5d76 016420 store 1 ,mem_subsniff_rate 
-0x5d77 016421 imul32 temp ,temp 
-0x5d78 016422 fetch 2 ,mem_rxbuf + 3 
-0x5d79 016423 lshift pdata ,pdata 
-0x5d7a 016424 store 2 ,mem_subsniff_tcmax 
-0x5d7b 016425 fetch 4 ,mem_rxbuf + 5 
-0x5d7c 016426 lshift pdata ,pdata 
-0x5d7d 016427 store 4 ,mem_subsniff_instant 
-0x5d7e 016429 deposit temp 
-0x5d7f 016430 store 2 ,mem_subsniff_tsniff 
-0x5d80 016431 rtn 
-:      016432 parse_lmpext_packet_type_table_req:
-0x5d81 016433 fetcht 1 ,mem_ptt 
-0x5d82 016434 fetch 1 ,mem_rxbuf + 2 
-0x5d83 016435 ixor temp ,null 
-0x5d84 016436 nbranch reject_unknown_ext_packet ,zero 
-0x5d85 016437 isolate1 0 ,pdata 
-0x5d86 016438 fetch 1 ,mem_state_map 
-0x5d87 016439 setflag true ,smap_edr ,pdata 
-0x5d88 016440 store 1 ,mem_state_map 
-0x5d89 016441 jam lmp_ext_accepted ,mem_lmo_opcode2 
-0x5d8a 016442 jam lmp_packet_type_table_req ,mem_lmi_opcode2 
-0x5d8b 016443 rtn 
-:      016446 parse_lmp_sniff_subrating_res:
-0x5d8c 016447 rtn 
-:      016449 parse_lmp_max_power:
-0x5d8d 016450 rtn 
-:      016451 parse_lmp_min_power:
-0x5d8e 016452 rtn 
-:      016453 parse_lmp_page_mode_req:
-0x5d8f 016455 branch accept_lmp_msg 
-:      016456 parse_lmp_page_scan_mode_req:
-0x5d90 016459 branch accept_lmp_msg 
-:      016460 parse_lmp_preferred_rate:
-0x5d91 016461 rtn 
-:      016462 parse_lmp_remove_sco_link_req:
-0x5d92 016463 call stop_sco 
-0x5d93 016464 jam lmp_remove_sco_link_req ,mem_lmi_opcode2 
-0x5d94 016465 branch accept_lmp_msg 
-:      016468 parse_lmp_sco_link_req:
-0x5d95 016469 fetch 1 ,mem_rxbuf + 1 
-0x5d96 016470 store 1 ,mem_sco_handle 
-0x5d97 016471 fetch 1 ,mem_rxbuf + 3 
-0x5d98 016472 store 1 ,mem_esco_desco 
-0x5d99 016473 fetch 1 ,mem_rxbuf + 6 
-0x5d9a 016474 store 1 ,mem_air_mode 
-0x5d9b 016475 call push_tid_follow 
-0x5d9c 016476 store 1 ,mem_accptsco_tid 
-0x5d9d 016477 force 0 ,temp 
-0x5d9e 016478 branch hci_send_conn_req_event 
-:      016480 parse_lmp_slot_offset:
-0x5d9f 016481 fetch 2 ,mem_rxbuf + 1 
-0x5da0 016482 store 2 ,mem_slot_offset 
-0x5da1 016483 rtn 
-:      016485 parse_lmp_sniff_req:
-0x5da2 016486 fetch 1 ,mem_state 
-0x5da3 016487 bbit1 state_insniff ,lmp_reject_sniff 
-0x5da4 016488 fetch 2 ,mem_rxbuf + 2 
-0x5da5 016489 lshift pdata ,pdata 
-0x5da6 016490 store 2 ,mem_dsniff 
-0x5da7 016491 fetch 2 ,mem_rxbuf + 4 
-0x5da8 016492 lshift pdata ,pdata 
-0x5da9 016493 store 2 ,mem_tsniff 
-0x5daa 016494 fetch 2 ,mem_rxbuf + 6 
-0x5dab 016495 store 1 ,mem_sniff_attempt 
-0x5dac 016496 iforce temp 
-0x5dad 016497 fetch 2 ,mem_rxbuf + 8 
-0x5dae 016498 store 1 ,mem_sniff_timeout 
-0x5daf 016499 isub temp ,null 
-0x5db0 016500 nbranch set_big_value_to_attempt ,positive 
-0x5db1 016501 store 1 ,mem_sniff_attempt 
-:      016502 set_big_value_to_attempt:
-0x5db2 016504 jam lmp_accepted ,mem_lmo_opcode2 
-0x5db3 016505 jam lmp_sniff_req ,mem_lmi_opcode2 
-0x5db4 016506 rtn 
-:      016508 lmp_reject_sniff:
-0x5db5 016509 jam pdu_not_allowed ,mem_lmo_reason2 
-0x5db6 016510 branch reject_lmp_packet 
-:      016512 parse_lmp_start_encryption_req:
-0x5db7 016513 call accept_lmp_msg 
-0x5db8 016514 call lmp_copy_rand 
-0x5db9 016515 call function_e3 
-0x5dba 016516 branch start_encryption 
-:      016518 parse_lmp_stop_encryption_req:
-0x5dbb 016519 call accept_lmp_msg 
-0x5dbc 016520 branch stop_encryption 
-:      016523 parse_lmp_switch_req:
-0x5dbd 016524 fetch 4 ,mem_rxbuf + 1 
-0x5dbe 016525 lshift pdata ,pdata 
-0x5dbf 016527 branch parse_lmp_switch_accept ,master 
-0x5dc0 016528 fetcht 1 ,mem_link_key_exists 
-0x5dc1 016529 nbranch parse_lmp_switch_req_clear_mark ,blank 
-:      016530 parse_lmp_switch_req_not_accept:
-0x5dc2 016531 jam lmp_not_accepted ,mem_lmo_opcode2 
-0x5dc3 016532 jam lmp_switch_req ,mem_lmi_opcode2 
-0x5dc4 016533 jam pdu_not_allowed ,mem_lmo_reason2 
-0x5dc5 016534 rtn 
-:      016535 parse_lmp_switch_req_clear_mark:
-0x5dc6 016536 jam lmp_slot_offset ,mem_lmo_opcode2 
-0x5dc7 016537 jam 0 ,mem_conn_sm 
-0x5dc8 016538 branch role_switch_prepare 
-:      016540 parse_lmp_switch_accept:
-0x5dc9 016541 call role_switch_prepare 
-0x5dca 016542 set1 mark_reconn_recieve_switch ,mark 
-0x5dcb 016543 fetch 1 ,mem_connection_options 
-0x5dcc 016544 set0 connection_switch ,pdata 
-0x5dcd 016545 store 1 ,mem_connection_options 
-0x5dce 016546 branch accept_lmp_msg 
-:      016550 parse_lmp_temp_rand:
-0x5dcf 016551 rtn 
-:      016552 parse_lmp_temp_key:
-0x5dd0 016553 rtn 
-:      016554 parse_lmp_timing_accuracy_res:
-0x5dd1 016555 rtn 
-:      016557 parse_lmp_unit_key:
-0x5dd2 016559 rtn 
-:      016562 parse_lmp_unsniff_req:
-0x5dd3 016563 jam lmp_accepted ,mem_lmo_opcode2 
-0x5dd4 016564 jam lmp_unsniff_req ,mem_lmi_opcode2 
-0x5dd5 016565 jam bt_evt_remote_unsniff ,mem_fifo_temp 
-0x5dd6 016566 call ui_ipc_send_event 
-0x5dd7 016567 force 0 ,temp 
-0x5dd8 016568 call hci_send_mode_change 
-0x5dd9 016569 branch sniff_exit 
-:      016570 parse_lmp_use_semi_permanend_key:
-0x5dda 016571 rtn 
-:      016573 parse_lmp_encapsulated_header:
-0x5ddb 016574 fetch 1 ,mem_rxbuf + 1 
-0x5ddc 016575 bne encapsulated_major_type_p192 ,parse_lmp_encapsulated_header_reject 
-0x5ddd 016576 fetch 1 ,mem_rxbuf + 2 
-0x5dde 016577 bne encapsulated_minor_type_p192 ,parse_lmp_encapsulated_header_reject 
-0x5ddf 016578 fetch 1 ,mem_rxbuf + 3 
-0x5de0 016579 bne encapsulated_len_p192 ,parse_lmp_encapsulated_header_reject 
-0x5de1 016580 call check_localsm 
-0x5de2 016581 branch parse_lmp_encapsulated_header_master ,true 
-0x5de3 016582 jam sp_stat_key_recv ,mem_sp_state 
-:      016583 parse_lmp_encapsulated_header_master:
-0x5de4 016584 jam lmp_accepted ,mem_lmo_opcode2 
-0x5de5 016585 jam lmp_encapsulated_header ,mem_lmi_opcode2 
-0x5de6 016586 branch parse_rx_done 
-:      016588 parse_lmp_encapsulated_header_reject:
-0x5de7 016589 jam pdu_not_allowed ,mem_lmo_reason2 
-0x5de8 016590 branch reject_lmp_packet 
-:      016592 parse_lmp_accepted_encapsulated_header:
-0x5de9 016595 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
-0x5dea 016597 rtn 
-:      016598 parse_lmp_accepted_simple_pairing_number:
-0x5deb 016599 call check_localsm 
-0x5dec 016600 rtn true 
-0x5ded 016601 jam sp_stat_confirm_recv ,mem_sp_state 
-0x5dee 016602 rtn 
-:      016604 parse_lmp_accepted_dhkey_check:
-0x5def 016606 call check_localsm 
-0x5df0 016607 ncall g_noninit ,true 
-0x5df1 016608 call g_init ,true 
-0x5df2 016609 call hci_send_user_confirmation_req 
-0x5df3 016610 call hci_send_ssp_complete 
-0x5df4 016611 call check_localsm 
-0x5df5 016612 rtn true 
-0x5df6 016613 jam sp_stat_link_key_calc ,mem_sp_state 
-0x5df7 016614 jam sp_flag_commit ,mem_sp_flag 
-0x5df8 016615 rtn 
-:      016617 parse_simple_pairing_confirm:
-0x5df9 016618 arg mem_sp_confirm_remote ,contw 
-0x5dfa 016619 fetch 8 ,mem_rxbuf + 1 
-0x5dfb 016620 istore 8 ,contw 
-0x5dfc 016621 fetch 8 ,mem_rxbuf + 9 
-0x5dfd 016622 istore 8 ,contw 
-0x5dfe 016623 branch master_set_mem_master_sp_flag 
-:      016625 parse_lmp_encapsulated_payload:
-0x5dff 016626 fetch 1 ,mem_master_sp_state 
-0x5e00 016627 beq sp_stat_random_send ,parse_encapsulated_payload_master 
-0x5e01 016628 fetch 1 ,mem_sp_state 
-0x5e02 016629 bne sp_stat_key_recv ,parse_lmp_encapsulated_payload_reject 
-:      016630 parse_encapsulated_payload_master:
-0x5e03 016631 fetch 1 ,mem_sp_remote_key_recv_count 
-0x5e04 016632 sub pdata ,0x20 ,contw 
-0x5e05 016633 nbranch parse_lmp_encapsulated_payload_reject ,positive 
-0x5e06 016634 arg mem_sp_pubkey_remote ,contw 
-0x5e07 016635 iadd contw ,contw 
-0x5e08 016636 fetch 8 ,mem_rxbuf + 1 
-0x5e09 016637 istore 8 ,contw 
-0x5e0a 016638 fetch 8 ,mem_rxbuf + 9 
-0x5e0b 016639 istore 8 ,contw 
-0x5e0c 016640 fetch 1 ,mem_sp_remote_key_recv_count 
-0x5e0d 016641 increase 16 ,pdata 
-0x5e0e 016642 store 1 ,mem_sp_remote_key_recv_count 
-0x5e0f 016643 bne encapsulated_len_p192 ,accept_lmp_msg 
-:      016644 parse_lmp_encapsulated_payload_completed:
-0x5e10 016645 call check_localsm 
-0x5e11 016646 branch accept_lmp_msg ,true 
-0x5e12 016647 jam sp_key_valid ,mem_sp_remote_key_invalid 
-0x5e13 016648 jam sp_stat_key_generate ,mem_sp_state 
-0x5e14 016649 jam sp_flag_commit ,mem_sp_flag 
-0x5e15 016650 branch accept_lmp_msg 
-:      016651 parse_lmp_encapsulated_payload_reject:
-0x5e16 016652 jam pdu_not_allowed ,mem_lmo_reason2 
-0x5e17 016653 branch reject_lmp_packet 
-:      016654 parse_lmp_accepted_encapsulated_payload:
-0x5e18 016655 fetch 1 ,mem_sp_local_key_send_count 
-0x5e19 016656 beq encapsulated_len_p192 ,parse_lmp_encapsulated_payload_all_accepted 
-0x5e1a 016657 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
-0x5e1b 016658 branch parse_rx_done 
-:      016659 parse_lmp_encapsulated_payload_all_accepted:
-0x5e1c 016660 call check_localsm 
-0x5e1d 016661 branch parse_lmp_encapsulated_payload_all_accepted_master ,true 
-0x5e1e 016662 jam sp_flag_commit ,mem_sp_flag 
-0x5e1f 016663 jam sp_stat_commit_calc ,mem_sp_state 
-0x5e20 016664 branch parse_rx_done 
-:      016665 parse_lmp_encapsulated_payload_all_accepted_master:
-0x5e21 016667 branch parse_rx_done 
-:      016669 parse_lmp_simple_pairing_number:
-0x5e22 016670 fetch 1 ,mem_master_sp_state 
-0x5e23 016671 beq sp_stat_random_send ,parse_lmp_simple_pairing_number_master 
-0x5e24 016672 fetch 1 ,mem_sp_state 
-0x5e25 016673 bne sp_stat_random_recv ,parse_lmp_simple_pairing_number_reject 
-:      016674 parse_lmp_simple_pairing_number_master:
-0x5e26 016675 arg mem_sp_random_remote ,contw 
-0x5e27 016676 fetch 8 ,mem_rxbuf + 1 
-0x5e28 016677 istore 8 ,contw 
-0x5e29 016678 fetch 8 ,mem_rxbuf + 9 
-0x5e2a 016679 istore 8 ,contw 
-0x5e2b 016680 call check_localsm 
-0x5e2c 016681 branch parse_lmp_simple_pairing_number_master0 ,true 
-0x5e2d 016682 jam sp_stat_random_send ,mem_sp_state 
-0x5e2e 016683 jam sp_flag_commit ,mem_sp_flag 
-0x5e2f 016684 branch accept_lmp_msg 
-:      016685 parse_lmp_simple_pairing_number_master0:
-0x5e30 016686 jam sp_stat_commit_calc ,mem_master_sp_state 
-0x5e31 016687 branch master_set_mem_master_sp_flag 
-:      016690 parse_lmp_simple_pairing_number_reject:
-0x5e32 016691 jam pdu_not_allowed ,mem_lmo_reason2 
-0x5e33 016692 branch reject_lmp_packet 
-:      016694 parse_dhkey_check:
-0x5e34 016695 fetch 1 ,mem_master_sp_state 
-0x5e35 016696 beq sp_stat_confirm_send ,parse_dhkey_check_master 
-0x5e36 016697 fetch 1 ,mem_sp_state 
-0x5e37 016698 bne sp_stat_confirm_recv ,parse_lmp_dhkey_check_reject 
-:      016699 parse_dhkey_check_master:
-0x5e38 016700 arg mem_sp_check_result ,contw 
-0x5e39 016701 fetch 8 ,mem_rxbuf + 1 
-0x5e3a 016702 istore 8 ,contw 
-0x5e3b 016703 fetch 8 ,mem_rxbuf + 9 
-0x5e3c 016704 istore 8 ,contw 
-0x5e3d 016705 call check_localsm 
-0x5e3e 016706 branch parse_dhkey_check_master0 ,true 
-0x5e3f 016707 jam sp_stat_confirm_check ,mem_sp_state 
-0x5e40 016708 jam sp_flag_commit ,mem_sp_flag 
-0x5e41 016709 branch parse_rx_done 
-:      016710 parse_dhkey_check_master0:
-0x5e42 016711 jam sp_stat_confirm_check ,mem_master_sp_state 
-0x5e43 016712 jam sp_flag_commit ,mem_master_sp_flag 
-0x5e44 016713 branch parse_rx_done 
-:      016714 parse_lmp_dhkey_check_reject:
-0x5e45 016715 jam pdu_not_allowed ,mem_lmo_reason2 
-0x5e46 016716 branch reject_lmp_packet 
-:      016718 parse_lmp_clkoffset_res:
-0x5e47 016719 branch parse_rx_done 
-:      016721 parse_lmp_encryption_mode_req:
-0x5e48 016722 fetch 1 ,mem_connection_options 
-0x5e49 016723 set0 connection_encrypt 
-0x5e4a 016724 store 1 ,mem_connection_options 
-0x5e4b 016725 call accept_lmp_msg 
-0x5e4c 016726 nrtn master 
-0x5e4d 016727 fetch 1 ,mem_rxbuf + 1 
-0x5e4e 016728 fetcht 1 ,mem_op 
-0x5e4f 016729 setflag blank ,op_stop_enc ,temp 
-0x5e50 016730 nsetflag blank ,op_start_enc ,temp 
-0x5e51 016731 storet 1 ,mem_op 
-0x5e52 016732 rtn 
-:      016734 parse_lmp_features_res:
-0x5e53 016735 fetcht 8 ,mem_rxbuf + 1 
-0x5e54 016736 fetch 1 ,mem_hci_cmd 
-0x5e55 016737 bne hci_cmd_wait_remote_feature ,parse_lmp_features_res_not_hci 
-0x5e56 016738 jam 0 ,mem_hci_cmd 
-0x5e57 016739 call hci_send_remote_features 
-:      016740 parse_lmp_features_res_not_hci:
-0x5e58 016741 fetch 1 ,mem_conn_sm 
-0x5e59 016742 rtnne conn_sm_wait_features_res 
-0x5e5a 016743 fetch 1 ,mem_device_option 
-0x5e5b 016744 beq dvc_op_hci ,parse_lmp_feature_ext_sm 
-0x5e5c 016745 fetch 1 ,mem_connection_options 
-0x5e5d 016746 bbit0 connection_feature_ext ,parse_lmp_send_conn 
-:      016747 parse_lmp_feature_ext_sm:
-0x5e5e 016748 jam conn_sm_send_features_ext ,mem_conn_sm 
-0x5e5f 016749 rtn 
-:      016750 parse_lmp_send_conn:
-0x5e60 016751 jam conn_sm_send_conn_req ,mem_conn_sm 
-0x5e61 016752 rtn 
-:      016753 parse_lmp_test_activate:
-0x5e62 016754 fetch 1 ,mem_debug_config 
-0x5e63 016755 store 1 ,mem_test_mode_old_debug_config 
-0x5e64 016756 jam lmp_accepted ,mem_lmo_opcode2 
-0x5e65 016757 jam lmp_test_activate ,mem_lmi_opcode2 
-0x5e66 016758 rtn 
-:      016759 parse_lmp_test_control:
-0x5e67 016762 jam lmp_accepted ,mem_lmo_opcode2 
-0x5e68 016763 jam lmp_test_control ,mem_lmi_opcode2 
-0x5e69 016764 force 9 ,loopcnt 
-0x5e6a 016765 arg mem_rxbuf + 1 ,contr 
-0x5e6b 016766 arg mem_temp_payload ,contw 
-:      016767 parse_lmp_test_xor:
-0x5e6c 016768 ifetch 1 ,contr 
-0x5e6d 016769 xor_into 0x55 ,pdata 
-0x5e6e 016770 istore 1 ,contw 
-0x5e6f 016771 loop parse_lmp_test_xor 
-0x5e70 016772 fetch 1 ,test_mode_scenario 
-0x5e71 016773 fetcht 1 ,mem_tester_emulate 
-0x5e72 016774 set0 tester_no_whitening ,temp 
-0x5e73 016775 set0 tester_pattern_test ,temp 
-0x5e74 016776 beq exit_test_mode ,parse_lmp_test_control_exit 
-0x5e75 016777 beq pause_test_mode ,parse_lmp_test_control_pause 
-0x5e76 016778 beq closed_loop_back_acl ,parse_lmp_test_control_loopback 
-0x5e77 016779 beq acl_without_whitening ,parse_lmp_test_control_loopback_nowhite 
-0x5e78 016780 beq closed_loop_back_sco ,parse_lmp_test_control_loopback 
-0x5e79 016781 beq sco_without_whitening ,parse_lmp_test_control_loopback_nowhite 
-0x5e7a 016782 beq zero_pattern ,parse_lmp_test_control_pattern 
-0x5e7b 016783 beq one_pattern ,parse_lmp_test_control_pattern 
-0x5e7c 016784 beq alt_pattern ,parse_lmp_test_control_pattern 
-0x5e7d 016785 beq alt2_pattern ,parse_lmp_test_control_pattern 
-0x5e7e 016786 beq pseudorandom ,parse_lmp_test_control_pattern 
-0x5e7f 016787 rtn 
-:      016788 parse_lmp_test_control_exit:
-0x5e80 016790 fetch 1 ,mem_tester_emulate 
-0x5e81 016791 set1 tester_exit ,pdata 
-0x5e82 016792 set1 tester_change ,pdata 
-0x5e83 016793 store 1 ,mem_tester_emulate 
-0x5e84 016794 rtn 
-:      016795 parse_lmp_test_control_pattern:
-0x5e85 016796 set1 tester_pattern_test ,temp 
-0x5e86 016797 jam 5 ,mem_lch_code 
-0x5e87 016798 fetch 2 ,test_mode_data_length 
-0x5e88 016799 iforce loopcnt 
-0x5e89 016800 store 2 ,mem_len 
-0x5e8a 016801 arg mem_rxbuf ,contw 
-0x5e8b 016802 call pn9 
-:      016803 parse_lmp_test_control_loopback_nowhite:
-0x5e8c 016804 set1 tester_no_whitening ,temp 
-:      016805 parse_lmp_test_control_loopback:
-0x5e8d 016806 set1 tester_change ,temp 
-0x5e8e 016807 force 0 ,pdata 
-0x5e8f 016808 store 1 ,mem_slave_rcvcnt 
-0x5e90 016809 store 2 ,mem_tst_pktcnt_crc 
-0x5e91 016810 store 2 ,mem_tst_pktcnt_dmh 
-0x5e92 016811 store 2 ,mem_tst_pktcnt_hec 
-0x5e93 016812 store 2 ,mem_tst_pktcnt_sync 
-0x5e94 016813 fetch 1 ,test_mode_hopping_mode 
-0x5e95 016814 compare fixed_freq ,pdata ,0xff 
-0x5e96 016815 setflag true ,tester_fixed_freq ,temp 
-0x5e97 016816 storet 1 ,mem_tester_emulate 
-0x5e98 016817 rtn 
-:      016819 parse_lmp_test_control_pause:
-0x5e99 016820 set0 mark_testmode ,mark 
-0x5e9a 016821 jam 0 ,mem_tester_emulate 
-0x5e9b 016822 fetch 1 ,mem_debug_config 
-0x5e9c 016823 set0 debug_tx_pattern ,pdata 
-0x5e9d 016824 store 1 ,mem_debug_config 
-0x5e9e 016825 rtn 
-:      016827 check_test_cond:
-0x5e9f 016828 fetch 1 ,mem_tester_emulate 
-0x5ea0 016829 rtnbit0 tester_change 
-0x5ea1 016830 fetch 1 ,mem_tester_cnt 
-0x5ea2 016831 increase 1 ,pdata 
-0x5ea3 016832 store 1 ,mem_tester_cnt 
-0x5ea4 016833 rtnne 5 
-0x5ea5 016834 jam 0 ,mem_tester_cnt 
-0x5ea6 016835 fetch 1 ,mem_tester_emulate 
-0x5ea7 016836 set0 tester_change ,pdata 
-0x5ea8 016837 store 1 ,mem_tester_emulate 
-0x5ea9 016838 bbit1 tester_exit ,check_test_exit 
-0x5eaa 016839 isolate1 tester_no_whitening ,pdata 
-0x5eab 016840 call test_no_white ,true 
-0x5eac 016841 ncall test_enable_white ,true 
-0x5ead 016842 fetch 1 ,test_mode_packet_type 
-0x5eae 016843 compare 0x20 ,pdata ,0x30 
-0x5eaf 016844 fetch 1 ,mem_state_map 
-0x5eb0 016845 setflag true ,smap_edr ,pdata 
-0x5eb1 016846 store 1 ,mem_state_map 
-0x5eb2 016847 fetch 1 ,mem_tester_emulate 
-0x5eb3 016848 fetcht 1 ,mem_debug_config 
-0x5eb4 016849 isolate1 tester_pattern_test ,pdata 
-0x5eb5 016850 setflag true ,debug_tx_pattern ,temp 
-0x5eb6 016851 isolate1 tester_fixed_freq ,pdata 
-0x5eb7 016852 setflag true ,debug_tx_fixed_freq ,temp 
-0x5eb8 016853 setflag true ,debug_rx_fixed_freq ,temp 
-0x5eb9 016854 storet 1 ,mem_debug_config 
-0x5eba 016855 fetch 1 ,test_mode_tx_freq 
-0x5ebb 016856 store 1 ,mem_tx_fixed_freq 
-0x5ebc 016857 fetch 1 ,test_mode_rx_freq 
-0x5ebd 016858 store 1 ,mem_rx_fixed_freq 
-0x5ebe 016859 set1 mark_testmode ,mark 
-0x5ebf 016860 rtn 
-:      016862 check_test_exit:
-0x5ec0 016863 set0 mark_testmode ,mark 
-0x5ec1 016864 jam 0 ,mem_tester_emulate 
-0x5ec2 016865 fetch 1 ,mem_test_mode_old_debug_config 
-0x5ec3 016866 store 1 ,mem_debug_config 
-0x5ec4 016867 hfetch 1 ,core_config 
-0x5ec5 016868 and_into 0xfb ,pdata 
-0x5ec6 016869 hstore 1 ,core_config 
-0x5ec7 016870 rtn 
-:      016873 lmp_copy_rand:
-0x5ec8 016874 arg mem_rxbuf + 1 ,contr 
-0x5ec9 016875 arg mem_random_number ,contw 
-0x5eca 016876 branch memcpy16 
-:      016878 lmp_generate_key:
-0x5ecb 016879 jam lmp_comb_key ,mem_lmo_opcode2 
-0x5ecc 016880 rtn 
-:      016882 lmp_start_encryption:
-0x5ecd 016883 nrtn master 
-0x5ece 016884 jam lmp_start_encryption_req ,mem_lmo_opcode2 
-0x5ecf 016885 rtn 
-:      016887 lmp_accept_inrand:
-0x5ed0 016888 arg mem_lap ,rega 
-0x5ed1 016889 call generate_kinit 
-0x5ed2 016890 jam lmp_accepted ,mem_lmo_opcode2 
-0x5ed3 016891 jam lmp_in_rand ,mem_lmi_opcode2 
-0x5ed4 016892 rtn 
-:      016894 lmp_disconnect:
-0x5ed5 016895 jam 10 ,mem_conn_timer 
-0x5ed6 016896 jam lmp_detach ,mem_lmo_opcode2 
-0x5ed7 016897 jam local_host ,mem_disconn_reason_send 
-0x5ed8 016898 rtn 
-:      016904 send_lmp:
-0x5ed9 016905 set1 mark_ext_patch ,mark 
-0x5eda 016906 bpatch patch3c_3 ,mem_patch3c 
-0x5edb 016907 disable user 
-0x5edc 016908 call lmo_fifo_process 
-0x5edd 016909 fetch 1 ,mem_lmp_to_send 
-0x5ede 016910 rtn blank 
-0x5edf 016915 bbit1 7 ,send_lmp_escape 
-0x5ee0 016916 beq lmp_name_req ,send_lmp_name_req 
-0x5ee1 016917 beq lmp_name_res ,send_lmp_name_res 
-0x5ee2 016918 beq lmp_accepted ,send_lmp_accepted 
-0x5ee3 016919 beq lmp_not_accepted ,send_lmp_not_accepted 
-0x5ee4 016920 beq lmp_features_req ,send_lmp_features_req 
-0x5ee5 016921 beq lmp_features_res ,send_lmp_features_res 
-0x5ee6 016922 beq lmp_timing_accuracy_res ,send_lmp_timing_accuracy_res 
-0x5ee7 016923 beq lmp_version_req ,send_lmp_version_req 
-0x5ee8 016924 beq lmp_version_res ,send_lmp_version_res 
-0x5ee9 016925 beq lmp_setup_complete ,send_lmp_setup_complete 
-0x5eea 016926 beq lmp_supervision_timeout ,send_lmp_superto 
-0x5eeb 016927 beq lmp_host_connection_req ,send_lmp_no_payload 
-0x5eec 016928 beq lmp_in_rand ,send_lmp_inrand 
-0x5eed 016929 beq lmp_comb_key ,send_lmp_comb_key 
-0x5eee 016930 beq lmp_au_rand ,send_lmp_aurand 
-0x5eef 016931 beq lmp_sres ,send_lmp_sres 
-0x5ef0 016932 beq lmp_encryption_mode_req ,send_lmp_encryption_mode_req 
-0x5ef1 016933 beq lmp_encryption_key_size_req ,send_lmp_encryption_key_size_req 
-0x5ef2 016934 beq lmp_start_encryption_req ,send_lmp_start_encryption 
-0x5ef3 016935 beq lmp_detach ,send_lmp_detach 
-0x5ef4 016936 beq lmp_quality_of_service_req ,send_lmp_quality_of_service_req 
-0x5ef5 016937 beq lmp_unit_key ,send_lmp_unit_key 
-0x5ef6 016939 beq lmp_sco_link_req ,send_lmp_sco_link_req 
-0x5ef7 016940 beq lmp_clkoffset_res ,send_lmp_clkoffset_res 
-0x5ef8 016941 beq lmp_max_power ,send_lmp_nopayload_reply 
-0x5ef9 016942 beq lmp_max_slot ,send_lmp_max_slot 
-0x5efa 016943 beq lmp_max_slot_req ,send_lmp_max_slot_req 
-0x5efb 016944 beq lmp_min_power ,send_lmp_nopayload_reply 
-0x5efc 016945 beq lmp_remove_sco_link_req ,send_lmp_remove_sco_link_req 
-0x5efd 016946 beq lmp_slot_offset ,send_lmp_slot_offset 
-0x5efe 016947 beq lmp_switch_req ,send_lmp_switch_req 
-0x5eff 016948 beq lmp_sniff_req ,send_lmp_sniff_req 
-0x5f00 016949 beq lmp_stop_encryption_req ,send_lmp_stop_encryption_req 
-0x5f01 016950 beq lmp_timing_accuracy_req ,send_lmp_timing_accuracy_req 
-0x5f02 016951 beq lmp_unsniff_req ,send_lmp_unsniff_req 
-0x5f03 016952 beq lmp_encapsulated_header ,send_lmp_encapsulated_header 
-0x5f04 016953 beq lmp_encapsulated_payload ,send_lmp_encapsulated_payload 
-0x5f05 016954 beq lmp_simple_pairing_confirm ,send_lmp_simple_pairing_comfirm 
-0x5f06 016955 beq lmp_simple_pairing_number ,send_lmp_simple_pairing_number 
-0x5f07 016956 beq lmp_dhkey_check ,send_lmp_dhkey_check 
-0x5f08 016957 beq lmp_auto_rate ,send_lmp_auto_rate 
-0x5f09 016958 beq lmp_enc_key_size_mask_res ,send_lmp_enc_key_size_mask_res 
-0x5f0a 016960 beq lmp_clkoffset_req ,send_lmp_clkoffset_req 
-0x5f0b 016961 beq lmp_quality_of_service ,send_lmp_quality_of_service 
-0x5f0c 016962 beq lmp_test_activate ,send_lmp_test_activate 
-0x5f0d 016963 beq lmp_test_control ,send_lmp_test_control 
-:      016964 send_lmp_error:
-0x5f0e 016965 branch assert 
-0x5f0f 016966 rtn 
-:      016967 send_lmp_escape:
-0x5f10 016968 beq lmp_ext_esco_link_req ,send_lmpext_esco_req 
-0x5f11 016969 beq lmp_ext_remove_esco_req ,send_lmpext_remove_esco 
-0x5f12 016970 beq lmp_ext_accepted ,send_lmpext_accepted 
-0x5f13 016971 beq lmp_ext_features_res ,send_lmpext_features_res 
-0x5f14 016972 beq lmp_not_accepted_ext ,send_lmpext_not_accepted 
-0x5f15 016973 beq lmp_ext_features_req ,send_lmpext_features_req 
-0x5f16 016974 beq lmp_packet_type_table_req ,send_lmpext_packet_type_table_req 
-0x5f17 016975 beq lmp_pause_encryption_req ,send_lmpext_pause_encryption_req 
-0x5f18 016976 beq lmp_io_cap_req ,send_lmp_io_cap_req 
-0x5f19 016977 beq lmp_io_cap_res ,send_lmpext_io_cap_res 
-0x5f1a 016978 beq lmp_sniff_subrating_req ,send_lmpext_sniff_subrating_req 
-0x5f1b 016979 beq lmp_sniff_subrating_res ,send_lmpext_sniff_subrating_res 
-0x5f1c 016980 branch assert 
-:      016986 send_lmp_accepted:
-0x5f1d 016987 force 2 ,pdata 
-0x5f1e 016988 call msg_send_lmp 
-0x5f1f 016989 fetch 1 ,mem_lmi_opcode 
-0x5f20 016990 istore 1 ,contw 
-0x5f21 016991 beq lmp_sco_link_req ,send_lmp_accptsco 
-0x5f22 016992 call send_lmp_follow 
-0x5f23 016993 fetch 1 ,mem_lmi_opcode 
-0x5f24 016994 beq lmp_in_rand ,send_lmp_accepted_inrand 
-0x5f25 016995 beq lmp_encryption_mode_req ,send_lmp_accepted_enc_mode 
-0x5f26 016996 beq lmp_encryption_key_size_req ,send_lmp_accepted_enc_key 
-0x5f27 016997 beq lmp_sniff_req ,send_lmp_accept_sniff_req 
-0x5f28 016998 beq lmp_host_connection_req ,send_lmp_accepted_connection 
-0x5f29 016999 beq lmp_remove_sco_link_req ,send_lmp_accept_remove_sco_link_req 
-0x5f2a 017000 beq lmp_dhkey_check ,send_lmp_accept_dhkey_check 
-0x5f2b 017001 beq lmp_start_encryption_req ,send_create_conn_start_l2cap_timer_sm 
-0x5f2c 017002 rtn 
-:      017004 send_create_conn_start_l2cap_timer_sm:
-0x5f2d 017005 fetch 1 ,mem_conn_sm 
-0x5f2e 017006 rtn blank 
-0x5f2f 017007 jam conn_sm_wait_done ,mem_conn_sm 
-0x5f30 017008 setarg timer_enpt_waite 
-0x5f31 017009 arg enpt_delay_timer ,queue 
-0x5f32 017010 branch timer_init 
-:      017012 send_lmp_accept_sniff_req:
-0x5f33 017013 force 0x02 ,temp 
-0x5f34 017014 call hci_send_mode_change 
-0x5f35 017015 branch sniff_init 
-:      017016 send_lmp_not_accepted:
-0x5f36 017017 force 3 ,pdata 
-0x5f37 017018 call msg_send_lmp 
-0x5f38 017019 fetch 1 ,mem_lmi_opcode 
-0x5f39 017020 beq lmp_au_rand ,send_not_accept_aurand 
-0x5f3a 017021 istore 1 ,contw 
-0x5f3b 017022 fetch 1 ,mem_lmo_reason 
-0x5f3c 017023 istore 1 ,contw 
-0x5f3d 017024 branch send_lmp_follow 
-:      017026 send_not_accept_aurand:
-0x5f3e 017027 istore 1 ,contw 
-0x5f3f 017028 fetch 1 ,mem_lmo_reason 
-0x5f40 017029 istore 1 ,contw 
-0x5f41 017030 arg mem_sres_tid ,temp 
-0x5f42 017031 branch special_tid_store 
-:      017033 send_lmpext_accepted:
-0x5f43 017034 force 4 ,queue 
-0x5f44 017035 call send_lmpext 
-0x5f45 017036 setarg lmp_escape 
-0x5f46 017037 istore 1 ,contw 
-0x5f47 017038 fetch 1 ,mem_lmi_opcode 
-0x5f48 017039 set0 7 ,pdata 
-0x5f49 017040 istore 1 ,contw 
-0x5f4a 017041 fetch 1 ,mem_lmi_opcode 
-0x5f4b 017042 beq lmp_ext_esco_link_req ,send_lmp_accptsco 
-0x5f4c 017043 call send_lmp_follow 
-0x5f4d 017044 fetch 1 ,mem_lmi_opcode 
-0x5f4e 017045 beq lmp_ext_remove_esco_req ,send_lmp_accept_remove_sco_link_req 
-0x5f4f 017046 rtn 
-:      017048 send_lmpext_not_accepted:
-0x5f50 017049 force 5 ,queue 
-0x5f51 017050 call send_lmpext 
-0x5f52 017051 setarg lmp_escape 
-0x5f53 017052 istore 1 ,contw 
-0x5f54 017053 fetch 1 ,mem_lmi_opcode 
-0x5f55 017054 set0 7 ,pdata 
-0x5f56 017055 istore 1 ,contw 
-0x5f57 017056 fetch 1 ,mem_lmo_reason 
-0x5f58 017057 istore 1 ,contw 
-0x5f59 017058 branch send_lmp_follow 
-:      017060 send_lmp_accptsco:
-0x5f5a 017061 call play_sco 
-0x5f5b 017062 arg mem_accptsco_tid ,temp 
-0x5f5c 017063 branch special_tid_store 
-:      017066 send_lmp_accepted_inrand:
-0x5f5d 017067 call clear_linkkey 
-0x5f5e 017068 call tid_check 
-0x5f5f 017069 rtn true 
-0x5f60 017070 branch lmp_generate_key 
-:      017072 send_lmp_accepted_enc_mode:
-0x5f61 017073 fetch 1 ,mem_op 
-0x5f62 017074 bbit1 op_start_enc ,send_lmp_accepted_enc_start 
-0x5f63 017075 rtnbit0 op_stop_enc 
-0x5f64 017076 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
-0x5f65 017077 set0 op_stop_enc ,pdata 
-0x5f66 017078 call tid_reply 
-0x5f67 017079 branch send_lmp_accepted_enc_exit 
-:      017080 send_lmp_accepted_enc_start:
-0x5f68 017081 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
-0x5f69 017082 set0 op_start_enc ,pdata 
-:      017083 send_lmp_accepted_enc_exit:
-0x5f6a 017084 store 1 ,mem_op 
-0x5f6b 017085 rtn 
-:      017087 send_lmp_accepted_enc_key:
-0x5f6c 017088 call check_localsm 
-0x5f6d 017089 branch lmp_start_encryption ,true 
-0x5f6e 017090 rtn 
-:      017092 send_lmp_accepted_connection:
-0x5f6f 017094 fetch 1 ,mem_lmp_conn_state 
-0x5f70 017095 set1 received_conn_req ,pdata 
-0x5f71 017096 store 1 ,mem_lmp_conn_state 
-0x5f72 017097 jam bt_evt_bb_connected ,mem_fifo_temp 
-0x5f73 017098 branch ui_ipc_send_event 
-:      017101 send_lmp_accept_remove_sco_link_req:
-0x5f74 017102 rtn 
-:      017104 send_lmp_accept_dhkey_check:
-0x5f75 017105 rtn 
-:      017109 send_lmpext_features_res:
-0x5f76 017110 force 12 ,queue 
-0x5f77 017111 call send_lmpext 
-0x5f78 017112 setarg 0x01 
-0x5f79 017113 istore 1 ,contw 
-0x5f7a 017114 fetch 2 ,mem_lmpext_ssp_enable 
-0x5f7b 017115 istore 2 ,contw 
-0x5f7c 017116 setarg 0 
-0x5f7d 017117 istore 3 ,contw 
-0x5f7e 017118 setarg 0x00 
-0x5f7f 017119 istore 4 ,contw 
-0x5f80 017120 branch send_lmp_reply 
-:      017121 send_lmpext_io_cap_res:
-0x5f81 017123 force 5 ,queue 
-0x5f82 017124 call send_lmpext 
-0x5f83 017125 fetch 1 ,mem_device_option 
-0x5f84 017126 beq dvc_op_hci ,send_lmpext_io_cap_res_hci 
-0x5f85 017127 setarg 0x040003 
-0x5f86 017128 istore 3 ,contw 
-0x5f87 017129 store 3 ,mem_sp_iocap_local 
-0x5f88 017130 branch send_lmp_reply 
-:      017131 send_lmpext_io_cap_res_hci:
-0x5f89 017132 fetch 3 ,mem_sp_iocap_local 
-0x5f8a 017133 istore 3 ,contw 
-0x5f8b 017134 branch send_lmp_reply 
-:      017136 send_lmp_io_cap_req:
-0x5f8c 017137 force 5 ,queue 
-0x5f8d 017138 call send_lmpext 
-0x5f8e 017139 fetch 3 ,mem_sp_iocap_local 
-0x5f8f 017140 istore 3 ,contw 
-0x5f90 017141 branch send_lmp_request 
-:      017144 send_lmpext_sniff_subrating_req:
-0x5f91 017146 rtn 
-:      017147 send_lmpext_sniff_subrating_res:
-0x5f92 017148 force 9 ,queue 
-0x5f93 017149 call send_lmpext 
-0x5f94 017150 fetch 1 ,mem_subsniff_rate 
-0x5f95 017151 istore 1 ,contw 
-0x5f96 017152 fetch 2 ,mem_subsniff_tcmax 
-0x5f97 017153 istore 2 ,contw 
-0x5f98 017154 fetch 4 ,mem_subsniff_instant 
-0x5f99 017155 istore 4 ,contw 
-0x5f9a 017156 branch send_lmp_reply 
-:      017158 send_lmp_name_res:
-0x5f9b 017159 force 17 ,pdata 
-0x5f9c 017160 call msg_send_lmp 
-0x5f9d 017161 fetch 1 ,mem_lmi_opcode 
-0x5f9e 017162 copy pdata ,temp 
-0x5f9f 017163 beq 0x00 ,send_lmp_name_res_offset_ok 
-0x5fa0 017164 beq 0x0e ,send_lmp_name_res_offset_ok 
-0x5fa1 017165 beq 0x1c ,send_lmp_name_res_offset_ok 
-0x5fa2 017166 rtn 
-:      017167 send_lmp_name_res_offset_ok:
-0x5fa3 017168 istore 1 ,contw 
-0x5fa4 017169 fetch 1 ,mem_local_name_length 
-0x5fa5 017170 istore 1 ,contw 
-0x5fa6 017171 copy pdata ,loopcnt 
-0x5fa7 017172 setarg mem_local_name 
-0x5fa8 017173 iadd temp ,contr 
-0x5fa9 017174 call memcpy 
-0x5faa 017175 branch send_lmp_reply 
-:      017178 send_lmp_timing_accuracy_res:
-0x5fab 017179 force 3 ,pdata 
-0x5fac 017180 call msg_send_lmp 
-0x5fad 017181 setarg 0x0114 
-0x5fae 017182 istore 2 ,contw 
-0x5faf 017183 branch send_lmp_reply 
-:      017185 send_lmp_clkoffset_res:
-0x5fb0 017187 force 3 ,pdata 
-0x5fb1 017188 call msg_send_lmp 
-0x5fb2 017189 fetch 4 ,mem_clke_bt 
-0x5fb3 017190 isub clkn_bt ,pdata 
-0x5fb4 017191 branch send_lmp_clkoffset_res_master ,master 
-0x5fb5 017192 sub pdata ,0 ,pdata 
-:      017193 send_lmp_clkoffset_res_master:
-0x5fb6 017195 rshift2 pdata ,pdata 
-0x5fb7 017196 set0 15 ,pdata 
-0x5fb8 017197 istore 2 ,contw 
-0x5fb9 017198 branch send_lmp_reply 
-:      017200 send_lmp_version_res:
-0x5fba 017201 force 6 ,pdata 
-0x5fbb 017202 call msg_send_lmp 
-0x5fbc 017203 fetch 5 ,mem_lmp_version 
-0x5fbd 017204 istore 5 ,contw 
-0x5fbe 017205 branch send_lmp_reply 
-:      017207 send_lmp_features_res:
-0x5fbf 017208 force 9 ,pdata 
-0x5fc0 017209 call msg_send_lmp 
-0x5fc1 017210 fetch 8 ,mem_features 
-0x5fc2 017211 istore 8 ,contw 
-0x5fc3 017212 branch send_lmp_reply 
-:      017218 send_lmpext_esco_req:
-0x5fc4 017219 branch send_lmpext_esco_req_master ,master 
-0x5fc5 017222 branch send_lmpext_esco_req_slave 
-:      017223 send_lmpext_esco_req_master:
-0x5fc6 017224 jam 0x07 ,mem_esco_addr 
-:      017225 send_lmpext_esco_req_slave:
-0x5fc7 017226 jam 0 ,mem_esco_desco 
-0x5fc8 017227 force 16 ,queue 
-0x5fc9 017228 call send_lmpext 
-0x5fca 017229 fetch 1 ,mem_sco_handle 
-0x5fcb 017230 istore 1 ,contw 
-0x5fcc 017231 fetch 1 ,mem_esco_addr 
-0x5fcd 017232 istore 1 ,contw 
-0x5fce 017233 setarg 0 
-0x5fcf 017234 istore 1 ,contw 
-0x5fd0 017235 fetch 1 ,mem_esco_desco 
-0x5fd1 017236 istore 1 ,contw 
-0x5fd2 017237 setarg 6 
-0x5fd3 017238 istore 1 ,contw 
-0x5fd4 017239 setarg 2 
-0x5fd5 017240 istore 1 ,contw 
-0x5fd6 017241 setarg 7 
-0x5fd7 017242 istore 1 ,contw 
-0x5fd8 017243 istore 1 ,contw 
-0x5fd9 017244 setarg 30 
-0x5fda 017245 istore 2 ,contw 
-0x5fdb 017246 istore 2 ,contw 
-0x5fdc 017247 fetch 1 ,mem_air_mode 
-0x5fdd 017248 istore 1 ,contw 
-0x5fde 017249 fetch 1 ,mem_neogotiation_state 
-0x5fdf 017250 istore 1 ,contw 
-0x5fe0 017251 nbranch send_lmp_reply ,blank 
-0x5fe1 017252 branch send_lmp_reply ,master 
-0x5fe2 017253 branch send_lmp_request 
-:      017255 send_lmpext_remove_esco:
-0x5fe3 017256 force 4 ,queue 
-0x5fe4 017257 call send_lmpext 
-0x5fe5 017258 fetch 1 ,mem_sco_handle 
-0x5fe6 017259 istore 1 ,contw 
-0x5fe7 017260 fetch 1 ,mem_disconn_reason_send 
-0x5fe8 017261 istore 1 ,contw 
-0x5fe9 017262 fetch 1 ,mem_esco_saved_arq 
-0x5fea 017263 store 1 ,mem_arq 
-0x5feb 017264 branch send_lmp_request 
-:      017267 send_lmpext_features_req:
-0x5fec 017268 force 12 ,queue 
-0x5fed 017269 call send_lmpext 
-0x5fee 017270 setarg 0x01 
-0x5fef 017271 istore 1 ,contw 
-0x5ff0 017272 fetch 2 ,mem_lmpext_ssp_enable 
-0x5ff1 017273 istore 2 ,contw 
-0x5ff2 017274 setarg 0 
-0x5ff3 017275 istore 3 ,contw 
-0x5ff4 017276 setarg 0x00 
-0x5ff5 017277 istore 4 ,contw 
-0x5ff6 017278 branch send_lmp_request 
-:      017280 send_lmpext_packet_type_table_req:
-0x5ff7 017281 force 3 ,queue 
-0x5ff8 017282 call send_lmpext 
-0x5ff9 017283 fetch 1 ,mem_ptt 
-0x5ffa 017284 istore 1 ,contw 
-0x5ffb 017285 disable user 
-0x5ffc 017286 call send_lmp_request 
-0x5ffd 017287 nrtn user 
-0x5ffe 017288 nrtn master 
-0x5fff 017289 fetch 1 ,mem_afh_cfg 
-0x6000 017290 rtnbit0 afh_cfg_on 
-0x6001 017291 call afh_init 
-0x6002 017292 branch afh_open_all_channels 
-:      017295 ssp_enable:
-0x6003 017296 fetch 1 ,mem_features + 6 
-0x6004 017297 set1 param_featrue_ssp ,pdata 
-0x6005 017298 store 1 ,mem_features + 6 
-0x6006 017299 setarg param_lmpext_ssp_enable 
-0x6007 017300 store 2 ,mem_lmpext_ssp_enable 
-0x6008 017301 rtn 
-:      017303 ssp_disable:
-0x6009 017304 fetch 1 ,mem_features + 6 
-0x600a 017305 set0 param_featrue_ssp ,pdata 
-0x600b 017306 store 1 ,mem_features + 6 
-0x600c 017307 setarg 0 
-0x600d 017308 store 2 ,mem_lmpext_ssp_enable 
-0x600e 017309 rtn 
-:      017311 afh_init:
-0x600f 017312 jam 0x3 ,mem_afh_cfg 
-0x6010 017313 setarg 0 
-0x6011 017314 store 4 ,mem_afh_timer 
-0x6012 017315 arg mem_afh_map_lo ,contw 
-0x6013 017316 call afh_reset_map 
-0x6014 017317 arg mem_afh_map_new ,contw 
-0x6015 017318 call afh_reset_map 
-0x6016 017319 arg mem_afh_classify_channel_map ,contw 
-0x6017 017320 call afh_reset_map 
-0x6018 017321 branch afh_clear_error_counter 
-:      017322 afh_open_all_channels:
-0x6019 017323 arg mem_afh_map_new ,contw 
-0x601a 017324 call afh_reset_map 
-0x601b 017325 call afh_clear_error_counter 
-0x601c 017326 branch afh_set_send_flag 
-:      017329 afh_open_classify_map:
-0x601d 017330 fetch 5 ,mem_afh_classify_channel_map 
-0x601e 017331 store 5 ,mem_afh_map_new 
-0x601f 017332 ifetch 5 ,contr 
-0x6020 017333 istore 5 ,contw 
-0x6021 017334 call afh_clear_error_counter 
-0x6022 017335 branch afh_set_send_flag 
-:      017337 afh_reset_map:
-0x6023 017338 setarg 0xffffff 
-0x6024 017339 istore 3 ,contw 
-0x6025 017340 istore 3 ,contw 
-0x6026 017341 istore 3 ,contw 
-0x6027 017342 setarg 0x7f 
-0x6028 017343 istore 1 ,contw 
-0x6029 017344 rtn 
-:      017345 afh_clear_error_counter:
-0x602a 017346 setarg 0 
-0x602b 017347 store 2 ,mem_afh_error_total 
-0x602c 017348 rtn 
-:      017349 afh_set_send_flag:
-0x602d 017350 fetch 1 ,mem_afh_cfg 
-0x602e 017351 set1 send_lmp_set_afh ,pdata 
-0x602f 017352 store 1 ,mem_afh_cfg 
-0x6030 017353 rtn 
-:      017354 send_set_afh:
-0x6031 017355 nrtn master 
-0x6032 017356 force 16 ,pdata 
-0x6033 017357 call msg_send_lmp 
-0x6034 017358 deposit clkn_bt 
-0x6035 017359 arg 476 ,temp 
-0x6036 017360 iadd temp ,pdata 
-0x6037 017361 rshift pdata ,pdata 
-0x6038 017362 increase 1 ,pdata 
-0x6039 017363 set0 0 ,pdata 
-0x603a 017364 istore 4 ,contw 
-0x603b 017365 copy pdata ,temp 
-0x603c 017366 setarg 1 
-0x603d 017367 istore 1 ,contw 
-0x603e 017368 fetch 5 ,mem_afh_map_new 
-0x603f 017369 istore 5 ,contw 
-0x6040 017370 ifetch 5 ,contr 
-0x6041 017371 istore 5 ,contw 
-0x6042 017372 lshift temp ,temp 
-0x6043 017373 storet 4 ,mem_afh_instant 
-0x6044 017374 call send_lmp_request 
-0x6045 017375 fetch 1 ,mem_mode 
-0x6046 017376 set1 afh_change ,pdata 
-0x6047 017377 store 1 ,mem_mode 
-0x6048 017378 jam 1 ,mem_afh_new_mod 
-0x6049 017379 fetch 4 ,mem_afh_instant 
-0x604a 017380 arg timer_one_minute ,temp 
-0x604b 017381 iadd temp ,pdata 
-0x604c 017382 store 4 ,mem_afh_timer 
-0x604d 017383 fetch 1 ,mem_afh_cfg 
-0x604e 017384 rtnbit1 afh_cfg_master_sent_req 
-0x604f 017385 jam lmp_ext_chn_classification_req ,mem_lmo_opcode2 
-0x6050 017386 rtn 
-:      017389 send_lmpext_pause_encryption_req:
-0x6051 017390 force 2 ,queue 
-0x6052 017391 call send_lmpext 
-0x6053 017392 nbranch send_lmp_reply ,master 
-0x6054 017394 branch send_lmp_request 
-:      017398 send_lmp_detach:
-0x6055 017399 force 2 ,pdata 
-0x6056 017400 call msg_send_lmp 
-0x6057 017401 fetch 1 ,mem_disconn_reason_send 
-0x6058 017402 istore 1 ,contw 
-0x6059 017403 call send_lmp_request 
-:      017404 prepare_disconnect:
-0x605a 017405 fetch 1 ,mem_op 
-0x605b 017406 set1 op_disconn ,pdata 
-0x605c 017407 store 1 ,mem_op 
-0x605d 017408 jam 50 ,mem_conn_timer 
-0x605e 017409 rtn 
-:      017412 send_lmp_no_payload:
-0x605f 017413 force 1 ,pdata 
-0x6060 017414 call msg_send_lmp 
-0x6061 017415 branch send_lmp_request 
-:      017416 send_lmp_nopayload_reply:
-0x6062 017417 force 1 ,pdata 
-0x6063 017418 call msg_send_lmp 
-0x6064 017419 branch send_lmp_reply 
-:      017422 send_lmp_encryption_mode_req:
-0x6065 017423 force 2 ,pdata 
-0x6066 017424 call msg_send_lmp 
-0x6067 017425 fetch 1 ,mem_state_map 
-0x6068 017426 isolate0 smap_encryption ,pdata 
-0x6069 017427 setflag true ,0 ,pdata 
-0x606a 017428 and_into 1 ,pdata 
-0x606b 017429 istore 1 ,contw 
-0x606c 017430 branch send_lmp_request 
-:      017433 send_lmp_superto:
-0x606d 017434 force 3 ,pdata 
-0x606e 017435 call msg_send_lmp 
-0x606f 017436 fetch 2 ,mem_supervision_to 
-0x6070 017437 istore 2 ,contw 
-0x6071 017438 branch send_lmp_request 
-:      017440 send_lmp_name_req:
-0x6072 017441 jam 250 ,mem_conn_timer 
-0x6073 017442 force 2 ,pdata 
-0x6074 017443 call msg_send_lmp 
-0x6075 017444 fetch 1 ,mem_name_offset 
-0x6076 017445 istore 1 ,contw 
-0x6077 017446 branch send_lmp_request 
-:      017448 send_lmp_test_control:
-0x6078 017449 force 10 ,pdata 
-0x6079 017450 call msg_send_lmp 
-0x607a 017451 arg mem_temp_payload ,contr 
-0x607b 017452 force 9 ,loopcnt 
-:      017453 send_lmp_test_control_loop:
-0x607c 017454 ifetch 1 ,contr 
-0x607d 017455 xor_into 0x55 ,pdata 
-0x607e 017456 istore 1 ,contw 
-0x607f 017457 loop send_lmp_test_control_loop 
-0x6080 017458 branch send_lmp_request 
-:      017460 send_lmp_quality_of_service_req:
-0x6081 017461 branch send_lmp_request 
-:      017462 send_lmp_unit_key:
-0x6082 017463 branch send_lmp_request 
-:      017465 send_lmp_slot_offset:
-0x6083 017466 rtn master 
-0x6084 017467 call calc_slot_offset 
-0x6085 017468 force 9 ,pdata 
-0x6086 017469 call msg_send_lmp 
-0x6087 017470 fetch 2 ,mem_slot_offset 
-0x6088 017471 istore 2 ,contw 
-0x6089 017472 fetch 3 ,mem_lap 
-0x608a 017473 istore 3 ,contw 
-0x608b 017474 fetch 1 ,mem_uap 
-0x608c 017475 istore 1 ,contw 
-0x608d 017476 fetch 2 ,mem_nap 
-0x608e 017477 istore 2 ,contw 
-0x608f 017478 bmark0 mark_switch_initiated ,send_lmp_slot_offset_reply 
-0x6090 017479 set0 mark_switch_initiated ,mark 
-0x6091 017480 call send_lmp_request 
-0x6092 017481 jam lmp_switch_req ,mem_lmo_opcode2 
-0x6093 017482 rtn 
-:      017483 send_lmp_slot_offset_reply:
-0x6094 017484 call send_lmp_reply 
-0x6095 017485 jam lmp_accepted ,mem_lmo_opcode2 
-0x6096 017486 jam lmp_switch_req ,mem_lmi_opcode2 
-0x6097 017487 rtn 
-:      017489 send_lmp_switch_req:
-0x6098 017490 arg 0x200 ,temp 
-0x6099 017491 branch switch_on_native ,master 
-0x609a 017492 deposit clke_bt 
-0x609b 017493 branch switch_slack 
-:      017494 switch_on_native:
-0x609c 017495 deposit clkn_bt 
-:      017496 switch_slack:
-0x609d 017497 deposit bt_clk 
-0x609e 017498 iadd temp ,pdata 
-0x609f 017499 and_into 0x1fc ,pdata 
-0x60a0 017500 store 4 ,mem_sniff_anchor 
-0x60a1 017501 force 5 ,pdata 
-0x60a2 017502 call msg_send_lmp 
-0x60a3 017503 fetch 4 ,mem_sniff_anchor 
-0x60a4 017504 rshift pdata ,pdata 
-0x60a5 017505 istore 4 ,contw 
-0x60a6 017506 branch send_lmp_request 
-:      017508 send_lmp_sniff_req:
-0x60a7 017509 force 10 ,pdata 
-0x60a8 017510 call msg_send_lmp 
-0x60a9 017511 arg mem_sniff_payload ,contr 
-0x60aa 017512 ifetch 9 ,contr 
-0x60ab 017513 istore 9 ,contw 
-0x60ac 017514 branch send_lmp_request 
-:      017517 send_lmp_timing_accuracy_req:
-0x60ad 017519 force 3 ,pdata 
-0x60ae 017520 call msg_send_lmp 
-0x60af 017521 setarg 0x0114 
-0x60b0 017522 istore 2 ,contw 
-0x60b1 017523 branch send_lmp_request 
-:      017525 send_lmp_unsniff_req:
-0x60b2 017527 force 1 ,pdata 
-0x60b3 017528 call msg_send_lmp 
-0x60b4 017537 branch send_lmp_request 
-:      017539 send_lmp_sco_link_req:
-0x60b5 017540 branch send_lmp_sco_link_master ,master 
-0x60b6 017541 jam 0x00 ,mem_sco_handle 
-0x60b7 017542 fetch 1 ,mem_mode 
-0x60b8 017543 set1 send_sco_when_slave ,pdata 
-0x60b9 017544 store 1 ,mem_mode 
-:      017545 send_lmp_sco_link_master:
-0x60ba 017546 jam 0 ,mem_esco_desco 
-0x60bb 017547 force 7 ,pdata 
-0x60bc 017548 call msg_send_lmp 
-0x60bd 017549 fetch 1 ,mem_sco_handle 
-0x60be 017550 istore 1 ,contw 
-0x60bf 017551 setarg 0x00 
-0x60c0 017552 istore 1 ,contw 
-0x60c1 017553 fetch 1 ,mem_esco_desco 
-0x60c2 017554 istore 1 ,contw 
-0x60c3 017555 setarg 0x06 
-0x60c4 017556 istore 1 ,contw 
-0x60c5 017557 setarg 0x02 
-0x60c6 017558 istore 1 ,contw 
-0x60c7 017559 fetch 1 ,mem_air_mode 
-0x60c8 017560 istore 1 ,contw 
-0x60c9 017561 branch send_lmp_reply ,master 
-0x60ca 017562 branch send_lmp_tid 
-:      017564 send_lmp_remove_sco_link_req:
-0x60cb 017566 force 3 ,pdata 
-0x60cc 017567 call msg_send_lmp 
-0x60cd 017568 fetch 1 ,mem_sco_handle 
-0x60ce 017569 istore 1 ,contw 
-0x60cf 017570 force other_end_terminated ,pdata 
-0x60d0 017571 istore 1 ,contw 
-0x60d1 017572 branch send_lmp_request 
-:      017574 send_lmp_max_slot:
-0x60d2 017575 force 2 ,pdata 
-0x60d3 017576 call msg_send_lmp 
-0x60d4 017577 fetch 1 ,mem_max_slot 
-0x60d5 017578 istore 1 ,contw 
-0x60d6 017579 branch send_lmp_request 
-:      017582 send_lmp_max_slot_req:
-0x60d7 017583 force 2 ,pdata 
-0x60d8 017584 call msg_send_lmp 
-0x60d9 017585 setarg 0x05 
-0x60da 017586 istore 1 ,contw 
-0x60db 017587 branch send_lmp_request 
-:      017589 send_lmp_setup_complete:
-0x60dc 017590 fetch 1 ,mem_state 
-0x60dd 017591 set1 state_conn_comp ,pdata 
-0x60de 017592 store 1 ,mem_state 
-0x60df 017593 copy clkn_bt ,pdata 
-0x60e0 017594 store 4 ,mem_aurand_send_delay_time 
-0x60e1 017595 fetch 1 ,mem_lmp_conn_state 
-0x60e2 017596 bbit1 sent_setup_complete ,send_lmp_setup_complete_has_sent 
-0x60e3 017597 set1 sent_setup_complete ,pdata 
-0x60e4 017598 store 1 ,mem_lmp_conn_state 
-0x60e5 017599 jam bt_evt_setup_complete ,mem_fifo_temp 
-0x60e6 017600 call ui_ipc_send_event 
-0x60e7 017601 call hci_send_connection_complete 
-0x60e8 017602 force 1 ,pdata 
-0x60e9 017603 call msg_send_lmp 
-0x60ea 017604 branch send_lmp_request 
-:      017605 send_lmp_setup_complete_has_sent:
-0x60eb 017606 jam 0 ,mem_lmp_to_send 
-0x60ec 017607 rtn 
-:      017609 send_lmp_version_req:
-0x60ed 017610 force 6 ,pdata 
-0x60ee 017611 call msg_send_lmp 
-0x60ef 017612 fetch 5 ,mem_lmp_version 
-0x60f0 017613 istore 5 ,contw 
-0x60f1 017614 branch send_lmp_request 
-:      017616 send_lmp_features_req:
-0x60f2 017617 force 9 ,pdata 
-0x60f3 017618 call msg_send_lmp 
-0x60f4 017619 fetch 8 ,mem_features 
-0x60f5 017620 istore 8 ,contw 
-0x60f6 017621 branch send_lmp_request 
-:      017623 sp_master_send_io_cap_get:
-0x60f7 017624 call hci_send_io_cap_req_event 
-0x60f8 017625 fetch 1 ,mem_device_option 
-0x60f9 017626 beq dvc_op_hci ,sp_master_send_io_cap_get_hci 
-0x60fa 017627 jam sp_flag_commit ,mem_master_sp_flag 
-0x60fb 017628 fetch 1 ,mem_sp_local_key_invalid 
-0x60fc 017629 rtnne sp_key_valid 
-:      017630 sp_master_send_io_cap_get_hci:
-0x60fd 017631 jam sp_master_stat_start_done ,mem_master_sp_state 
-0x60fe 017632 rtn 
-:      017634 sp_master_send_io_cap_send:
-0x60ff 017635 call tid_initiate 
-0x6100 017636 jam lmp_io_cap_req ,mem_lmo_opcode2 
-0x6101 017637 jam sp_stat_key_send ,mem_master_sp_state 
-0x6102 017638 rtn 
-:      017641 sp_master_send_lmp_encapsulated_header:
-0x6103 017642 call tid_initiate 
-0x6104 017643 jam lmp_encapsulated_header ,mem_lmo_opcode2 
-0x6105 017644 jam sp_stat_random_send ,mem_master_sp_state 
-0x6106 017645 rtn 
-:      017647 sp_master_commitment_compare:
-0x6107 017648 arg mem_sp_calc_result_high ,rega 
-0x6108 017649 arg mem_sp_confirm_remote ,regb 
-0x6109 017650 arg 16 ,loopcnt 
-0x610a 017651 call string_compare 
-0x610b 017652 branch sp_master_commitment_compare_success ,zero 
-0x610c 017653 jam sp_stat_null ,mem_master_sp_state 
-0x610d 017654 call master_clear_mem_master_sp_flag 
-0x610e 017655 jam pdu_not_allowed ,mem_lmo_reason2 
-0x610f 017656 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
-0x6110 017657 branch reject_lmp_packet 
-:      017658 sp_master_commitment_compare_success:
-0x6111 017659 jam sp_stat_confirm_calc ,mem_master_sp_state 
-0x6112 017660 call master_set_mem_master_sp_flag 
-0x6113 017661 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
-0x6114 017662 branch accept_lmp_msg 
-:      017666 sp_master_send_lmp_simple_pairing_number:
-0x6115 017667 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
-0x6116 017668 rtn 
-:      017672 sp_send_lmp_encapsulated_header:
-0x6117 017675 jam lmp_encapsulated_header ,mem_lmo_opcode2 
-0x6118 017677 rtn 
-:      017683 send_lmp_encapsulated_header:
-0x6119 017684 jam 0 ,mem_sp_local_key_send_count 
-0x611a 017685 force 4 ,pdata 
-0x611b 017686 call msg_send_lmp 
-0x611c 017687 force encapsulated_major_type_p192 ,pdata 
-0x611d 017688 istore 1 ,contw 
-0x611e 017689 force encapsulated_minor_type_p192 ,pdata 
-0x611f 017690 istore 1 ,contw 
-0x6120 017691 force encapsulated_len_p192 ,pdata 
-0x6121 017692 istore 1 ,contw 
-0x6122 017693 call check_localsm 
-0x6123 017694 branch send_lmp_request ,true 
-0x6124 017695 branch send_lmp_reply 
-:      017697 send_lmp_encapsulated_payload:
-0x6125 017699 force 17 ,pdata 
-0x6126 017700 call msg_send_lmp 
-0x6127 017701 fetch 1 ,mem_sp_local_key_send_count 
-0x6128 017702 arg mem_sp_pubkey_local ,contr 
-0x6129 017703 iadd contr ,contr 
-0x612a 017704 ifetch 8 ,contr 
-0x612b 017705 istore 8 ,contw 
-0x612c 017706 ifetch 8 ,contr 
-0x612d 017707 istore 8 ,contw 
-0x612e 017708 fetch 1 ,mem_sp_local_key_send_count 
-0x612f 017709 increase 16 ,pdata 
-0x6130 017710 store 1 ,mem_sp_local_key_send_count 
-0x6131 017711 call check_localsm 
-0x6132 017712 branch send_lmp_request ,true 
-0x6133 017713 branch send_lmp_reply 
-:      017716 sp_send_lmp_simple_pairing_comfirm:
-0x6134 017717 jam sp_stat_random_recv ,mem_sp_state 
-0x6135 017718 jam lmp_simple_pairing_confirm ,mem_lmo_opcode2 
-0x6136 017719 rtn 
-:      017720 send_lmp_simple_pairing_comfirm:
-0x6137 017723 force 17 ,pdata 
-0x6138 017724 call msg_send_lmp 
-0x6139 017725 arg mem_sp_calc_result_high ,contr 
-0x613a 017726 ifetch 8 ,contr 
-0x613b 017727 istore 8 ,contw 
-0x613c 017728 ifetch 8 ,contr 
-0x613d 017729 istore 8 ,contw 
-0x613e 017730 branch send_lmp_reply 
-:      017732 sp_send_lmp_simple_pairing_number:
-0x613f 017733 call lmo_fifo_process 
-0x6140 017735 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
-0x6141 017736 rtn 
-:      017738 send_lmp_simple_pairing_number:
-0x6142 017740 call check_localsm 
-0x6143 017741 call sp_local_random_key_generator ,true 
-0x6144 017742 force 17 ,pdata 
-0x6145 017743 call msg_send_lmp 
-0x6146 017744 arg mem_sp_random_local ,contr 
-0x6147 017745 ifetch 8 ,contr 
-0x6148 017746 istore 8 ,contw 
-0x6149 017747 ifetch 8 ,contr 
-0x614a 017748 istore 8 ,contw 
-0x614b 017749 call check_localsm 
-0x614c 017750 nbranch send_lmp_reply ,true 
-0x614d 017751 branch send_lmp_request ,true 
-:      017753 master_sp_sm_end:
-0x614e 017755 jam sp_stat_done ,mem_master_sp_state 
-:      017756 sp_aurand_send:
-0x614f 017757 call tid_initiate 
-0x6150 017758 jam lmp_au_rand ,mem_lmo_opcode2 
-0x6151 017759 call check_localsm_master 
-0x6152 017760 branch sp_master_key_prarm_push ,true 
-0x6153 017761 branch sp_link_key_prarm_push 
-:      017762 master_sp_send_lmp_dhkey_check:
-0x6154 017763 call tid_reply 
-:      017764 sp_send_lmp_dhkey_check:
-0x6155 017765 jam lmp_dhkey_check ,mem_lmo_opcode2 
-0x6156 017766 rtn 
-:      017767 send_lmp_dhkey_check:
-0x6157 017769 force 17 ,pdata 
-0x6158 017770 call msg_send_lmp 
-0x6159 017771 arg mem_sp_calc_result_high ,contr 
-0x615a 017772 ifetch 8 ,contr 
-0x615b 017773 istore 8 ,contw 
-0x615c 017774 ifetch 8 ,contr 
-0x615d 017775 istore 8 ,contw 
-0x615e 017776 call check_localsm 
-0x615f 017777 nbranch send_lmp_reply ,true 
-0x6160 017778 branch send_lmp_request ,true 
-:      017780 send_lmp_enc_key_size_mask_res:
-0x6161 017781 force 3 ,pdata 
-0x6162 017782 call msg_send_lmp 
-0x6163 017783 setarg 0xfffe 
-0x6164 017784 istore 2 ,contw 
-0x6165 017785 branch send_lmp_reply 
-:      017787 send_lmp_auto_rate:
-0x6166 017788 branch send_lmp_request 
-:      017789 send_lmp_clkoffset_req:
-0x6167 017790 branch send_lmp_request 
-:      017791 send_lmp_quality_of_service:
-0x6168 017792 branch send_lmp_request 
-:      017793 send_lmp_test_activate:
-0x6169 017794 branch send_lmp_request 
-:      017799 send_lmp_comb_key:
-0x616a 017800 call generate_random_number 
-0x616b 017801 arg mem_lap ,rega 
-0x616c 017802 call generate_linkkey 
-0x616d 017803 force 17 ,pdata 
-0x616e 017804 call msg_send_lmp 
-0x616f 017805 arg mem_kinit ,rega 
-0x6170 017806 arg mem_random_number ,regb 
-0x6171 017807 call xor16 
-0x6172 017808 nbranch send_lmp_follow ,master 
-0x6173 017809 branch send_lmp_tid 
-:      017811 send_lmp_inrand:
-0x6174 017812 call generate_random_number 
-0x6175 017813 arg mem_plap ,rega 
-0x6176 017814 call generate_kinit 
-:      017815 send_lmp_rand:
-0x6177 017816 force 17 ,pdata 
-0x6178 017817 call msg_send_lmp 
-0x6179 017818 arg mem_random_number ,contr 
-0x617a 017819 call memcpy16 
-0x617b 017820 fetch 1 ,mem_conn_sm 
-0x617c 017821 beq conn_sm_auth_wait ,send_lmp_request 
-0x617d 017822 beq conn_sm_pairing_wait ,send_lmp_request 
-0x617e 017823 branch send_lmp_tid 
-:      017825 send_lmp_aurand:
-0x617f 017826 fetch 1 ,mem_pairing_auth 
-0x6180 017827 branch send_lmp_aurand_notpairing ,blank 
-0x6181 017828 call check_localsm 
-0x6182 017829 call tid_initiate ,true 
-0x6183 017830 ncall tid_reply ,true 
-0x6184 017831 branch send_lmp_aurand_common 
-:      017832 send_lmp_aurand_notpairing:
-0x6185 017833 call tid_initiate 
-:      017834 send_lmp_aurand_common:
-0x6186 017835 call generate_random_number 
-0x6187 017836 branch send_lmp_rand 
-:      017838 send_lmp_sres:
-0x6188 017839 arg mem_lap ,rega 
-0x6189 017840 call function_e1 
-0x618a 017841 force 5 ,pdata 
-0x618b 017842 call msg_send_lmp 
-0x618c 017843 fetch 4 ,mem_input_store 
-0x618d 017844 istore 4 ,contw 
-0x618e 017845 arg mem_sres_tid ,temp 
-0x618f 017846 call special_tid_store 
-0x6190 017847 call copy_aco 
-0x6191 017848 call check_localsm 
-0x6192 017849 branch send_lmp_sres_master ,true 
-0x6193 017850 jam done_encryp ,mem_wait_encryption 
-0x6194 017851 fetch 1 ,mem_pairing_auth 
-0x6195 017852 rtn blank 
-0x6196 017853 jam lmp_au_rand ,mem_lmo_opcode2 
-:      017854 send_lmp_sres_master:
-0x6197 017855 fetch 1 ,mem_link_key_exists 
-0x6198 017856 rtn blank 
-0x6199 017857 call check_localsm 
-0x619a 017858 call hci_send_linkkey_notification ,true 
-:      017859 send_lmp_sres_startenc:
-0x619b 017860 call check_localsm 
-0x619c 017861 nbranch send_lmp_sres_startenc_slave ,true 
-0x619d 017862 fetch 1 ,mem_auth_enable 
-0x619e 017863 rtn blank 
-0x619f 017864 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
-0x61a0 017865 rtn 
-:      017866 send_lmp_sres_startenc_slave:
-0x61a1 017867 rtnmark0 mark_slave_in_rand_accepted 
-0x61a2 017868 set0 mark_slave_in_rand_accepted ,mark 
-0x61a3 017869 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
-0x61a4 017870 rtn 
-:      017874 send_lmp_start_encryption:
-0x61a5 017875 call generate_random_number 
-0x61a6 017876 call function_e3 
-0x61a7 017877 force 17 ,pdata 
-0x61a8 017878 call msg_send_lmp 
-0x61a9 017879 arg mem_random_number ,contr 
-0x61aa 017880 call memcpy16 
-0x61ab 017881 branch send_lmp_tid 
-:      017883 send_lmp_stop_encryption_req:
-0x61ac 017884 force 1 ,pdata 
-0x61ad 017885 call msg_send_lmp 
-0x61ae 017886 branch send_lmp_tid 
-:      017888 send_lmp_encryption_key_size_req:
-0x61af 017889 force 2 ,pdata 
-0x61b0 017890 call msg_send_lmp 
-0x61b1 017891 force 16 ,pdata 
-0x61b2 017892 istore 1 ,contw 
-0x61b3 017893 store 1 ,mem_key_size 
-0x61b4 017894 branch send_lmp_tid 
-:      017896 msg_send_lmp:
-0x61b5 017898 lshift3 pdata ,pdata 
-0x61b6 017899 or_into 0x07 ,pdata 
-0x61b7 017900 store 1 ,mem_lmo_header_length 
-0x61b8 017901 arg 17 ,loopcnt 
-0x61b9 017902 arg mem_lmo_payload ,contw 
-0x61ba 017903 call clear_mem 
-0x61bb 017904 arg mem_lmo_payload ,contw 
-0x61bc 017905 rtn 
-:      017907 send_lmpext:
-0x61bd 017908 and pdata ,0x7f ,rega 
-0x61be 017909 jam lmp_escape ,mem_lmp_to_send 
-0x61bf 017910 deposit queue 
-0x61c0 017911 call msg_send_lmp 
-0x61c1 017912 deposit rega 
-0x61c2 017913 istore 1 ,contw 
-0x61c3 017914 rtn 
-:      017916 send_lmp_follow:
-0x61c4 017917 fetch 1 ,mem_lmp_to_send 
-0x61c5 017918 lshift pdata ,pdata 
-0x61c6 017919 fetcht 1 ,mem_state_map 
-0x61c7 017920 isolate1 smap_lmptid ,temp 
-0x61c8 017921 setflag true ,0 ,pdata 
-0x61c9 017922 branch send_lmp_exit 
-:      017925 send_lmp_tid:
-0x61ca 017926 fetcht 1 ,mem_state_map 
-0x61cb 017927 and_into 1 ,temp 
-0x61cc 017928 branch send_lmp_end 
-:      017930 send_lmp_reply:
-0x61cd 017931 force 0 ,temp 
-0x61ce 017932 branch send_lmp_end 
-:      017934 send_lmp_request:
-0x61cf 017935 force 1 ,temp 
-:      017936 send_lmp_end:
-0x61d0 017937 fetch 1 ,mem_lmp_to_send 
-0x61d1 017938 lshift pdata ,pdata 
-0x61d2 017939 setflag master ,0 ,pdata 
-0x61d3 017940 ixor temp ,pdata 
-:      017941 send_lmp_exit:
-0x61d4 017942 store 1 ,mem_lmo_header_opcode 
-0x61d5 017943 jam 0 ,mem_lmp_to_send 
-0x61d6 017944 call lmo_fifo_process_lmo0empty 
-0x61d7 017945 enable user 
-0x61d8 017946 rtn 
-:      017948 lmo_fifo_process:
-0x61d9 017949 set1 mark_ext_patch ,mark 
-0x61da 017950 bpatch patch3c_4 ,mem_patch3c 
-0x61db 017951 fetch 1 ,mem_lmp_to_send 
-0x61dc 017952 branch lmo_fifo_process_lmo0empty ,blank 
-0x61dd 017953 fetch 1 ,mem_lmo_opcode1 
-0x61de 017954 nrtn blank 
-0x61df 017955 branch lmo_fifo_process_lmo2to1 
-:      017956 lmo_fifo_process_lmo0empty:
-0x61e0 017957 fetch 1 ,mem_lmo_opcode1 
-0x61e1 017958 branch lmo_fifo_process_lmo1_empty ,blank 
-0x61e2 017959 fetch 3 ,mem_lmo_opcode1 
-0x61e3 017960 store 3 ,mem_lmp_to_send 
-0x61e4 017961 fetcht 1 ,mem_lmo_tid1 
-0x61e5 017962 fetch 1 ,mem_state_map 
-0x61e6 017963 set0 smap_lmptid ,pdata 
-0x61e7 017964 ior temp ,pdata 
-0x61e8 017965 store 1 ,mem_state_map 
-0x61e9 017966 jam 0 ,mem_lmo_opcode1 
-:      017967 lmo_fifo_process_lmo2to1:
-0x61ea 017968 fetch 1 ,mem_lmo_opcode2 
-0x61eb 017969 rtn blank 
-0x61ec 017970 fetch 4 ,mem_lmo_opcode2 
-0x61ed 017971 store 4 ,mem_lmo_opcode1 
-0x61ee 017972 jam 0 ,mem_lmo_opcode2 
-0x61ef 017973 rtn 
-:      017974 lmo_fifo_process_lmo1_empty:
-0x61f0 017975 fetch 1 ,mem_lmo_opcode2 
-0x61f1 017976 rtn blank 
-0x61f2 017977 fetch 3 ,mem_lmo_opcode2 
-0x61f3 017978 store 3 ,mem_lmp_to_send 
-0x61f4 017979 fetcht 1 ,mem_lmo_tid2 
-0x61f5 017980 fetch 1 ,mem_state_map 
-0x61f6 017981 set0 smap_lmptid ,pdata 
-0x61f7 017982 ior temp ,pdata 
-0x61f8 017983 store 1 ,mem_state_map 
-0x61f9 017984 jam 0 ,mem_lmo_opcode2 
-0x61fa 017985 rtn 
-:      017988 special_tid_store:
-0x61fb 017989 set1 mark_ext_patch ,mark 
-0x61fc 017990 bpatch patch3c_5 ,mem_patch3c 
-0x61fd 017991 fetch 1 ,mem_state_map 
-0x61fe 017992 copy pdata ,regc 
-0x61ff 017993 ifetch 1 ,temp 
-0x6200 017994 call pop_tid_follow 
-0x6201 017995 call send_lmp_follow 
-0x6202 017996 copy regc ,pdata 
-0x6203 017997 store 1 ,mem_state_map 
-0x6204 017998 rtn 
-:      018000 tid_reply:
-0x6205 018001 fetcht 1 ,mem_state_map 
-0x6206 018002 set0 smap_lmptidinit ,temp 
-0x6207 018003 storet 1 ,mem_state_map 
-0x6208 018004 rtn 
-:      018006 tid_initiate:
-0x6209 018007 fetcht 1 ,mem_state_map 
-0x620a 018008 set1 smap_lmptidinit ,temp 
-0x620b 018009 storet 1 ,mem_state_map 
-0x620c 018010 rtn 
-:      018013 tid_check:
-0x620d 018014 nsetflag master ,smap_lmptid ,pdata 
-0x620e 018015 fetcht 1 ,mem_state_map 
-0x620f 018016 ixor temp ,pdata 
-0x6210 018017 isolate1 smap_lmptid ,pdata 
-0x6211 018018 rtn 
-:      018021 tid_set_reply:
-0x6212 018022 fetch 1 ,mem_state_map 
-0x6213 018023 setflag master ,smap_lmptid ,pdata 
-0x6214 018024 store 1 ,mem_state_map 
-0x6215 018025 rtn 
-:      018028 check_localsm:
-0x6216 018029 fetch 1 ,mem_sp_localsm 
-0x6217 018030 compare local_statemachine ,pdata ,0x7f 
-0x6218 018031 rtn 
-:      018032 setlocalsm_master:
-0x6219 018033 fetch 1 ,mem_sp_localsm 
-0x621a 018034 set1 7 ,pdata 
-0x621b 018035 store 1 ,mem_sp_localsm 
-0x621c 018036 rtn 
-:      018037 setlocalsm_slave:
-0x621d 018038 fetch 1 ,mem_sp_localsm 
-0x621e 018039 set0 7 ,pdata 
-0x621f 018040 store 1 ,mem_sp_localsm 
-0x6220 018041 rtn 
-:      018042 check_localsm_master:
-0x6221 018043 fetch 1 ,mem_sp_localsm 
-0x6222 018044 isolate1 7 ,pdata 
-0x6223 018045 store 1 ,mem_sp_localsm 
-0x6224 018046 rtn 
-:      018048 generate_random_number:
-0x6225 018050 arg mem_random_number ,contw 
-:      018051 generate_random:
-0x6226 018052 force 16 ,loopcnt 
-:      018053 generate_random_another:
-:      018054 generate_random_loop:
-0x6227 018055 random pdata 
-0x6228 018056 istore 1 ,contw 
-0x6229 018057 loop generate_random_another 
-0x622a 018058 rtn 
-:      018060 generate_linkkey:
-0x622b 018061 call function_e21 
-0x622c 018062 arg mem_link_key ,rega 
-0x622d 018063 arg mem_input_store ,regb 
-0x622e 018064 ifetch 8 ,rega 
-0x622f 018065 fetcht 1 ,mem_state 
-0x6230 018066 nsetflag blank ,state_combkey ,temp 
-0x6231 018067 storet 1 ,mem_state 
-0x6232 018068 copy rega ,contw 
-0x6233 018069 call xor16 
-0x6234 018070 branch generate_linkkey_continue 
-:      018076 process_conn_sm:
-0x6235 018078 set1 mark_ext_patch ,mark 
-0x6236 018079 bpatch patch3c_6 ,mem_patch3c 
-0x6237 018080 fetch 1 ,mem_lmo_opcode2 
-0x6238 018081 branch process_conn_sm_continue ,blank 
-0x6239 018082 call lmo_fifo_process 
-0x623a 018083 fetch 1 ,mem_lmo_opcode2 
-0x623b 018084 nrtn blank 
-:      018085 process_conn_sm_continue:
-0x623c 018086 fetch 1 ,mem_conn_sm 
-0x623d 018087 rtn blank 
-0x623e 018091 beq conn_sm_send_conn_req ,host_create_conn_send_conn_req 
-0x623f 018092 beq conn_sm_wait_conn_accept ,host_create_conn_wait_accept 
-0x6240 018093 beq conn_sm_send_features ,host_create_conn_send_features 
-0x6241 018094 beq conn_sm_wait_features_res ,host_create_conn_waiting 
-0x6242 018095 beq conn_sm_send_switch ,host_create_conn_send_switch 
-0x6243 018096 beq conn_sm_auth_pair ,host_create_conn_auth_pair 
-0x6244 018097 beq conn_sm_auth_pair_wait ,host_create_conn_auth_pair_wait 
-0x6245 018098 beq conn_sm_encrypt ,host_create_conn_encrypt 
-0x6246 018099 beq conn_sm_encrypt_wait ,host_create_conn_encrypt_wait 
-0x6247 018100 beq conn_sm_encrypt_wait_clear ,host_create_conn_encrypt_wait_clear 
-0x6248 018101 beq conn_sm_send_setup_complete ,host_create_conn_send_setup_complete 
-0x6249 018102 beq conn_sm_wait_setup_complete ,host_create_conn_wait_setup_complete 
-0x624a 018103 beq conn_sm_detach_delay ,host_create_conn_master_detach 
-0x624b 018104 beq conn_sm_send_version ,host_create_conn_send_version 
-0x624c 018105 beq conn_sm_wait_version ,host_create_conn_waiting 
-0x624d 018106 beq conn_sm_wait_switch_after_host_connection ,host_creat_conn_wait_switch 
-0x624e 018107 beq conn_sm_send_features_ext ,host_creat_conn_send_feat_ext 
-0x624f 018108 beq conn_sm_wait_features_ext ,host_create_conn_waiting 
-0x6250 018109 beq conn_sm_pairing ,host_create_conn_pairing 
-0x6251 018110 beq conn_sm_pairing_wait ,host_create_conn_pairing_wait 
-0x6252 018111 beq conn_sm_auth ,host_create_conn_auth 
-0x6253 018112 beq conn_sm_auth_wait ,host_create_conn_auth_wait 
-0x6254 018113 beq conn_sm_done ,host_create_conn_done 
-0x6255 018114 beq conn_sm_wait_done ,host_create_conn_done_wait 
-0x6256 018115 jam conn_sm_standby ,mem_conn_sm 
-0x6257 018117 rtn 
-:      018118 host_create_conn_done:
-0x6258 018119 fetch 1 ,mem_lmp_conn_state 
-0x6259 018120 rtnbit0 received_setup_complete 
-0x625a 018121 rtnbit0 sent_setup_complete 
-0x625b 018122 jam conn_sm_standby ,mem_conn_sm 
-0x625c 018123 call host_conn_judge_encrypt 
-0x625d 018124 branch scheduler_start_upper_sm 
-:      018126 host_conn_judge_encrypt:
-0x625e 018127 fetch 1 ,mem_connection_options 
-0x625f 018128 rtnbit0 connection_encrypt 
-0x6260 018129 jam conn_sm_encrypt_wait ,mem_conn_sm 
-0x6261 018130 rtn 
-:      018132 host_create_conn_done_wait:
-0x6262 018133 arg enpt_delay_timer ,queue 
-0x6263 018134 call timer_check 
-0x6264 018135 nrtn blank 
-0x6265 018136 jam conn_sm_done ,mem_conn_sm 
-0x6266 018137 rtn 
-:      018139 host_create_conn_auth:
-0x6267 018140 fetch 1 ,mem_connection_options 
-0x6268 018141 set0 connection_auth ,pdata 
-0x6269 018142 store 1 ,mem_connection_options 
-0x626a 018143 jam conn_sm_auth_wait ,mem_conn_sm 
-0x626b 018144 jam lmp_au_rand ,mem_lmo_opcode2 
-0x626c 018145 rtn 
-:      018146 host_create_conn_auth_wait:
-0x626d 018147 rtn 
-:      018148 host_create_conn_pairing:
-0x626e 018149 fetch 1 ,mem_pincode_state 
-0x626f 018150 rtnne pincode_state_pincode_ready 
-0x6270 018151 call host_auth 
-0x6271 018152 jam conn_sm_pairing_wait ,mem_conn_sm 
-0x6272 018153 rtn 
-:      018155 host_create_conn_pairing_wait:
-0x6273 018156 rtn 
-:      018157 host_creat_conn_send_feat_ext:
-0x6274 018158 jam conn_sm_wait_features_ext ,mem_conn_sm 
-0x6275 018159 jam lmp_ext_features_req ,mem_lmo_opcode2 
-0x6276 018160 rtn 
-:      018161 host_create_conn_send_version:
-0x6277 018162 jam conn_sm_wait_version ,mem_conn_sm 
-0x6278 018163 jam lmp_version_req ,mem_lmo_opcode2 
-0x6279 018164 rtn 
-:      018166 host_creat_conn_wait_switch:
-0x627a 018167 fetch 1 ,mem_switch_flag 
-0x627b 018168 rtneq switch_flag_init 
-0x627c 018169 beq switch_flag_accept ,host_create_conn_switch_accept 
-0x627d 018170 arg switch_wait_timer ,queue 
-0x627e 018171 call timer_check 
-0x627f 018172 nrtn blank 
-0x6280 018173 jam switch_flag_init ,mem_switch_flag 
-0x6281 018174 branch host_create_conn_switch 
-:      018175 host_create_conn_switch_accept:
-0x6282 018176 rtn master 
-0x6283 018177 branch host_create_conn_auth_pair 
-:      018179 host_create_conn_send_features:
-0x6284 018180 jam conn_sm_wait_features_res ,mem_conn_sm 
-0x6285 018181 jam lmp_features_req ,mem_lmo_opcode2 
-0x6286 018182 rtn 
-:      018183 host_create_conn_send_switch:
-0x6287 018184 jam lmp_switch_req ,mem_lmo_opcode2 
-0x6288 018185 set1 mark_switch_initiated ,mark 
-0x6289 018186 jam conn_sm_wait_conn_accept ,mem_conn_sm 
-0x628a 018187 setarg 0x1ff 
-0x628b 018188 store 2 ,mem_soft_timer 
-0x628c 018189 rtn 
-:      018190 host_create_conn_send_conn_req:
-0x628d 018191 jam conn_sm_wait_conn_accept ,mem_conn_sm 
-0x628e 018192 jam 0xff ,mem_soft_timer 
-0x628f 018193 set0 mark_reconn_recieve_switch ,mark 
-0x6290 018194 jam lmp_host_connection_req ,mem_lmo_opcode2 
-0x6291 018195 branch init_lmp_reinit 
-:      018196 host_create_conn_wait_accept:
-0x6292 018197 rtnmark1 mark_reconn_recieve_switch 
-0x6293 018198 fetch 2 ,mem_soft_timer 
-0x6294 018199 sub pdata ,1 ,pdata 
-0x6295 018200 branch host_create_conn_resend ,zero 
-0x6296 018201 store 2 ,mem_soft_timer 
-0x6297 018202 rtn 
-:      018203 host_create_conn_resend:
-0x6298 018204 jam conn_sm_send_switch ,mem_conn_sm 
-0x6299 018205 rtn 
-:      018206 host_create_conn_waiting:
-0x629a 018208 rtn 
-:      018210 host_create_conn_switch:
-0x629b 018211 fetch 1 ,mem_lmp_conn_state 
-0x629c 018212 rtnbit0 sent_setup_complete 
-0x629d 018213 rtnbit0 received_setup_complete 
-0x629e 018214 fetch 1 ,mem_connection_options 
-0x629f 018215 set0 connection_switch ,pdata 
-0x62a0 018216 store 1 ,mem_connection_options 
-0x62a1 018217 jam lmp_switch_req ,mem_lmo_opcode2 
-0x62a2 018218 jam conn_sm_wait_switch_after_host_connection ,mem_conn_sm 
-0x62a3 018219 rtn 
-:      018221 host_create_conn_send_setup_complete:
-0x62a4 018222 jam conn_sm_wait_setup_complete ,mem_conn_sm 
-0x62a5 018223 jam lmp_setup_complete ,mem_lmo_opcode2 
-0x62a6 018224 rtn 
-:      018226 host_create_conn_wait_setup_complete:
-0x62a7 018227 fetch 1 ,mem_lmp_conn_state 
-0x62a8 018228 rtnbit0 received_setup_complete 
-0x62a9 018229 jam conn_sm_standby ,mem_conn_sm 
-0x62aa 018231 rtn 
-:      018232 host_create_conn_wait_setup_complete_rtn:
-0x62ab 018233 jam conn_sm_auth_pair ,mem_conn_sm 
-0x62ac 018234 rtn 
-:      018236 host_create_conn_master_detach:
-0x62ad 018237 fetch 1 ,mem_soft_timer 
-0x62ae 018238 increase -1 ,pdata 
-0x62af 018239 branch host_create_conn_send_detach ,blank 
-0x62b0 018240 store 1 ,mem_soft_timer 
-0x62b1 018241 rtn 
-:      018242 host_create_conn_send_detach:
-0x62b2 018243 jam lmp_detach ,mem_lmo_opcode2 
-0x62b3 018244 jam local_host ,mem_disconn_reason_send 
-0x62b4 018245 jam 0 ,mem_conn_sm 
-0x62b5 018246 rtn 
-:      018247 host_create_conn_auth_pair:
-0x62b6 018249 fetch 1 ,mem_connection_options 
-0x62b7 018250 bbit1 connection_switch ,host_create_conn_switch 
-0x62b8 018251 bbit1 connection_auth ,host_create_conn_auth_pair_true 
-:      018252 host_create_conn_sm_done:
-0x62b9 018253 jam conn_sm_done ,mem_conn_sm 
-0x62ba 018254 rtn 
-:      018255 host_create_conn_auth_pair_true:
-0x62bb 018256 fetch 1 ,mem_link_key_exists 
-0x62bc 018257 branch host_create_conn_auth_pair_nokey ,blank 
-0x62bd 018258 fetch 1 ,mem_lmp_conn_state 
-0x62be 018259 rtnbit0 sent_setup_complete 
-0x62bf 018260 rtnbit0 received_setup_complete 
-0x62c0 018261 fetch 4 ,mem_aurand_send_delay_time 
-0x62c1 018262 arg 100 ,temp 
-0x62c2 018263 iadd temp ,temp 
-0x62c3 018264 copy clkn_bt ,pdata 
-0x62c4 018265 isub temp ,null 
-0x62c5 018266 nrtn positive 
-0x62c6 018267 branch host_create_conn_auth 
-:      018271 host_create_conn_auth_pair_nokey:
-0x62c7 018272 jam conn_sm_pairing ,mem_conn_sm 
-0x62c8 018273 jam 4 ,mem_pin_length 
-0x62c9 018274 setarg 0x3030 
-0x62ca 018275 store 2 ,mem_pin 
-0x62cb 018276 istore 2 ,contw 
-0x62cc 018277 jam pincode_state_pincode_ready ,mem_pincode_state 
-0x62cd 018278 branch host_create_conn_pairing 
-:      018280 host_create_conn_auth_pair_wait:
-0x62ce 018281 rtn 
-:      018282 host_create_conn_encrypt:
-0x62cf 018283 fetch 1 ,mem_connection_options 
-0x62d0 018284 bbit1 connection_encrypt ,host_create_conn_encrypt_start 
-0x62d1 018285 jam conn_sm_done ,mem_conn_sm 
-0x62d2 018286 rtn 
-:      018288 host_create_conn_encrypt_start:
-0x62d3 018289 fetch 1 ,mem_connection_options 
-0x62d4 018290 set0 connection_encrypt ,pdata 
-0x62d5 018291 store 1 ,mem_connection_options 
-0x62d6 018292 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
-0x62d7 018293 rtn 
-:      018295 host_create_conn_encrypt_wait:
-0x62d8 018296 fetch 1 ,mem_wait_encryption 
-0x62d9 018297 rtn blank 
-0x62da 018298 jam conn_sm_standby ,mem_conn_sm 
-0x62db 018299 branch host_create_conn_encrypt_start 
-:      018301 host_create_conn_encrypt_wait_clear:
-0x62dc 018302 jam conn_sm_send_setup_complete ,mem_conn_sm 
-0x62dd 018303 rtn 
-:      018305 host_auth:
-0x62de 018306 fetch 1 ,mem_op 
-0x62df 018307 bbit1 op_inrand_req ,remote_auth 
-0x62e0 018308 call tid_initiate 
-0x62e1 018309 jam lmp_in_rand ,mem_lmo_opcode2 
-0x62e2 018310 branch cmd_exit 
-:      018311 remote_auth:
-0x62e3 018312 fetch 1 ,mem_op 
-0x62e4 018313 set0 op_inrand_req ,pdata 
-0x62e5 018314 store 1 ,mem_op 
-0x62e6 018315 call lmp_accept_inrand 
-0x62e7 018316 call tid_set_reply 
-0x62e8 018317 branch cmd_exit 
-:      018319 pincode_reinit:
-0x62e9 018320 setarg 4 
-0x62ea 018321 store 1 ,mem_pin_length 
-0x62eb 018322 setarg 0x3030 
-0x62ec 018323 istore 2 ,contw 
-0x62ed 018324 istore 2 ,contw 
-0x62ee 018325 rtn 
-:      018333 module_init:
-0x62ef 018334 rtn wake 
-0x62f0 018335 jam 0 ,mem_module_task 
-0x62f1 018336 call module_gpio_init 
-0x62f2 018337 call module_init_static_string 
-0x62f3 018338 setarg module_process_idle 
-0x62f4 018339 store 2 ,mem_cb_idle_process 
-0x62f5 018340 setarg module_conn_process 
-0x62f6 018341 store 2 ,mem_cb_bt_process 
-0x62f7 018342 setarg module_process_bb_event 
-0x62f8 018343 store 2 ,mem_cb_bb_event_process 
-0x62f9 018344 setarg module_le_rx 
-0x62fa 018345 store 2 ,mem_cb_att_write 
-0x62fb 018346 setarg module_conn_process 
-0x62fc 018347 store 2 ,mem_cb_le_process 
-0x62fd 018348 set1 mark_ext_patch ,mark 
-0x62fe 018349 bpatch patch30_0 ,mem_patch30 
-0x62ff 018350 setarg module_lpm_lock 
-0x6300 018351 store 2 ,mem_cb_check_wakelock 
-0x6301 018352 setarg module_le_tx_update_data 
-0x6302 018353 store 2 ,mem_cb_update_notify_value 
-0x6303 018354 setarg 0 
-0x6304 018355 store 4 ,mem_last_uart_clock 
-0x6305 018356 store 2 ,mem_module_prepare_tx_len 
-0x6306 018357 call module_hardware_init 
-0x6307 018358 call init_module_environment 
-0x6308 018359 call check_module_disabled 
-0x6309 018360 branch eeprom_load_reconn_info 
-:      018362 module_hardware_init:
-0x630a 018363 rtn wake 
-0x630b 018364 setarg uart_baud_115200 
-0x630c 018365 store uart_baud_len ,mem_baud 
-:      018366 module_lpm_uart_init:
-0x630d 018367 call init_filter_ram 
-0x630e 018368 setarg mem_module_rx_buf 
-0x630f 018369 hstore 2 ,core_uart_rsaddr 
-0x6310 018370 setarg mem_module_rx_buf_end 
-0x6311 018371 hstore 2 ,core_uart_readdr 
-0x6312 018372 setarg mem_module_tx_buf 
-0x6313 018373 hstore 2 ,core_uart_tsaddr 
-0x6314 018374 setarg mem_module_tx_buf_end 
-0x6315 018375 hstore 2 ,core_uart_teaddr 
-0x6316 018376 hjam 0x4 ,core_gpio_sel1 
-0x6317 018377 jam 0xff ,mem_ucode_id_local 
-0x6318 018378 hjam 0x0 ,core_uart_ctrl 
-0x6319 018379 setarg mem_module_tx_buf 
-0x631a 018380 hstore 2 ,core_uart_twptr 
-0x631b 018381 hstore 2 ,core_uart_trptrp 
-0x631c 018382 setarg mem_module_rx_buf 
-0x631d 018383 hstore 2 ,core_uart_rrptr 
-0x631e 018384 branch hci_init_common 
-:      018387 module_lpm_init:
-0x631f 018388 call module_lpm_uart_init 
-0x6320 018389 branch module_gpio_init 
-:      018391 module_gpio_init:
-0x6321 018393 call ui_led_init 
-0x6322 018394 call app_led_start_blink 
-0x6323 018396 fetcht 1 ,mem_module_connect_state_gpio 
-0x6324 018397 call gpio_config_output 
-0x6325 018398 call module_set_conn_pin_low 
-0x6326 018400 fetcht 1 ,mem_module_wake_up_gpio 
-0x6327 018401 call gpio_config_input 
-0x6328 018402 fetcht 1 ,mem_at_gpio 
-0x6329 018403 branch gpio_config_input_without_wake 
-:      018405 module_lpm_lock:
-0x632a 018406 fetcht 1 ,mem_module_wake_up_gpio 
-0x632b 018407 call gpio_get_bit 
-0x632c 018408 nbranch app_put_lpm_wake_lock ,true 
-0x632d 018409 branch app_get_lpm_wake_lock 
-:      018413 module_process_idle:
-0x632e 018414 branch module_app_dispatch 
-:      018415 module_conn_process:
-0x632f 018416 branch module_app_dispatch 
-:      018417 module_app_dispatch:
-0x6330 018418 set1 mark_ext_patch ,mark 
-0x6331 018419 bpatch patch30_1 ,mem_patch30 
-0x6332 018420 call module_control_air_flow 
-0x6333 018421 call module_uart_set 
-0x6334 018422 call l2cap_malloc_is_fifo_full 
-0x6335 018423 nrtn blank 
-0x6336 018424 branch module_process 
-:      018425 module_process_bb_event:
-0x6337 018426 copy regc ,pdata 
-0x6338 018427 beq bt_evt_pincode_req ,module_process_evt_pincode_req 
-0x6339 018428 beq bt_evt_reconn_failed ,module_reconn_fail 
-0x633a 018429 beq bt_evt_reconn_page_timeout ,module_page_time_out 
-0x633b 018430 beq bt_evt_bb_disconnected ,module_process_bb_event_disconned 
-0x633c 018431 beq bt_evt_switch_not_accept ,module_process_switch_not_accept 
-0x633d 018432 beq bt_evt_switch_accept ,module_process_switch_accept 
-0x633e 018433 beq bt_evt_sniff_accept ,module_process_sniff_accept 
-0x633f 018434 beq bt_evt_sniff_not_accept ,module_process_sniff_not_accept 
-0x6340 018435 beq bt_evt_unsniff_accept ,module_process_unsniff_accept 
-0x6341 018436 beq bt_evt_unsniff_not_accept ,module_process_unsniff_not_accept 
-0x6342 018437 beq bt_evt_le_connected ,module_process_le_conn 
-0x6343 018438 beq bt_evt_bb_connected ,module_process_bb_conn 
-0x6344 018439 beq bt_evt_le_disconnected ,module_process_bb_even_le_disconn 
-0x6345 018440 beq bt_evt_setup_complete ,module_process_setup_complete 
-0x6346 018441 beq bt_evt_enter_sniff ,module_sniff_param_check 
-0x6347 018442 beq bt_evt_exit_sniff ,app_lpm_mult_disable 
-0x6348 018443 and pdata ,0x0f ,temp 
-0x6349 018444 and_into bt_evt_timer_mask ,pdata 
-0x634a 018445 beq bt_evt_timer_init ,module_bb_event_timer 
-0x634b 018446 rtn 
-:      018448 module_process_bb_event_disconned:
-0x634c 018449 call module_disconn_start 
-0x634d 018450 fetch app_disc_rsn_size ,mem_app_disconn_reason 
-0x634e 018451 rtnbit0 app_disc_after_setup_done 
-0x634f 018452 arg 3 ,loopcnt 
-0x6350 018453 arg mem_prarm_dis ,contr 
-0x6351 018454 branch send_mem_to_uart 
-:      018456 module_sniff_param_check:
-0x6352 018459 fetch 2 ,mem_context + coffset_tsniff 
-0x6353 018460 rshift pdata ,pdata 
-0x6354 018461 fetcht 2 ,mem_sniff_param_interval 
-0x6355 018462 isub temp ,null 
-0x6356 018463 nbranch module_sniff_param_check_unsniff ,zero 
-0x6357 018464 branch app_lpm_mult_enable 
-:      018465 module_sniff_param_check_unsniff:
-0x6358 018466 fetch 1 ,mem_module_task 
-0x6359 018467 rtnbit1 at_task_unsinff 
-0x635a 018468 hfetch 2 ,core_uart_rxitems 
-0x635b 018469 ncall at_set_unsniff_task_flag ,blank 
-0x635c 018470 branch app_bt_sniff_exit 
-:      018472 module_process_setup_complete:
-0x635d 018473 call module_conn_start 
-0x635e 018474 call module_check_cmode 
-0x635f 018475 branch module_uart_send_conn ,zero 
-0x6360 018476 branch app_bt_disconnect 
-:      018477 module_uart_send_conn:
-0x6361 018478 arg 4 ,loopcnt 
-0x6362 018479 arg mem_prarm_conn ,contr 
-0x6363 018480 branch send_mem_to_uart 
-:      018482 module_process_bb_even_le_disconn:
-0x6364 018483 call module_disconn_start 
-0x6365 018484 arg 5 ,loopcnt 
-0x6366 018485 arg mem_prarm_bledis ,contr 
-0x6367 018486 branch send_mem_to_uart 
-:      018488 module_process_evt_pincode_req:
-0x6368 018489 call at_restore_pin_code 
-0x6369 018490 branch app_bt_set_pincode 
-:      018491 module_process_switch_not_accept:
-0x636a 018492 fetch 1 ,mem_module_task 
-0x636b 018493 rtnbit0 at_task_switch 
-0x636c 018494 set0 at_task_switch ,pdata 
-0x636d 018495 store 1 ,mem_module_task 
-0x636e 018496 branch at_error_rev_end 
-:      018498 module_process_switch_accept:
-0x636f 018499 fetch 1 ,mem_module_task 
-0x6370 018500 rtnbit0 at_task_switch 
-0x6371 018501 set0 at_task_switch ,pdata 
-0x6372 018502 store 1 ,mem_module_task 
-0x6373 018503 branch at_nomal_rev_end 
-:      018505 module_process_sniff_accept:
-0x6374 018506 rtn 
-:      018508 module_process_sniff_not_accept:
-0x6375 018509 rtn 
-:      018511 module_process_unsniff_accept:
-0x6376 018512 fetch 1 ,mem_module_task 
-0x6377 018513 bbit0 at_task_unsinff ,app_bt_enter_sniff 
-0x6378 018514 branch at_clear_unsniff_task_flag 
-:      018516 module_process_unsniff_not_accept:
-0x6379 018517 rtn 
-:      018519 module_process_le_conn:
-0x637a 018520 call module_conn_start 
-0x637b 018521 arg mem_le_plap ,regb 
-0x637c 018522 call module_check_cmode 
-0x637d 018523 branch module_uart_send_leconn ,zero 
-0x637e 018524 branch app_ble_disconnect 
-:      018525 module_uart_send_leconn:
-0x637f 018526 arg 6 ,loopcnt 
-0x6380 018527 arg mem_prarm_bleconn ,contr 
-0x6381 018528 branch send_mem_to_uart 
-:      018530 module_process_bb_conn:
-0x6382 018531 rtn 
-:      018534 module_reconn_fail:
-0x6383 018535 arg 7 ,loopcnt 
-0x6384 018536 arg mem_prarm_recfail ,contr 
-0x6385 018537 call send_mem_to_uart 
-0x6386 018538 branch module_disconn_start 
-:      018539 module_page_time_out:
-0x6387 018540 arg 7 ,loopcnt 
-0x6388 018541 arg mem_prarm_pageout ,contr 
-0x6389 018542 call send_mem_to_uart 
-:      018543 module_disconn_start:
-0x638a 018544 call module_start_adv_discovery 
-0x638b 018545 branch module_set_conn_pin_high 
-:      018547 module_start_adv_discovery:
-0x638c 018548 fetch 1 ,mem_module_state 
-0x638d 018549 isolate1 at_state_set30 ,pdata 
-0x638e 018550 call app_bt_start_discovery ,true 
-0x638f 018551 fetch 1 ,mem_module_state 
-0x6390 018552 isolate1 at_state_set40 ,pdata 
-0x6391 018553 call app_ble_start_adv ,true 
-0x6392 018554 rtn 
-:      018555 module_set_conn_pin_high:
-0x6393 018556 fetcht 1 ,mem_module_connect_state_gpio 
-0x6394 018557 branch gpio_out_active 
-:      018559 module_conn_start:
-0x6395 018560 call module_stop_adv_discovery 
-0x6396 018561 branch module_set_conn_pin_low 
-:      018563 module_stop_adv_discovery:
-0x6397 018564 fetch 1 ,mem_module_state 
-0x6398 018565 isolate1 at_state_set30 ,pdata 
-0x6399 018566 call app_bt_stop_discovery ,true 
-0x639a 018567 fetch 1 ,mem_module_state 
-0x639b 018568 isolate1 at_state_set40 ,pdata 
-0x639c 018569 call app_ble_stop_adv ,true 
-0x639d 018570 rtn 
-:      018571 module_set_conn_pin_low:
-0x639e 018572 fetcht 1 ,mem_module_connect_state_gpio 
-0x639f 018573 branch gpio_out_inactive 
-:      018578 module_process:
-0x63a0 018579 fetch 1 ,mem_device_option 
-0x63a1 018580 rtnne dvc_op_module 
-0x63a2 018581 hfetch 2 ,core_uart_rxitems 
-0x63a3 018582 rtn blank 
-0x63a4 018583 store 2 ,mem_current_packet_length 
-0x63a5 018585 call spp_mode 
-0x63a6 018586 branch at_process ,true 
-0x63a7 018587 call at_ckeck_send_buff 
-0x63a8 018588 branch module_tx_packet 
-:      018591 spp_mode:
-0x63a9 018592 fetcht 1 ,mem_at_gpio 
-0x63aa 018593 branch gpio_get_bit 
-:      018596 module_exit_sniff:
-0x63ab 018597 fetch 1 ,mem_module_task 
-0x63ac 018598 rtnbit1 at_task_unsinff 
-0x63ad 018599 call at_set_unsniff_task_flag 
-0x63ae 018600 branch app_bt_sniff_exit 
-:      018602 module_tx_packet:
-0x63af 018603 fetch 1 ,mem_context 
-0x63b0 018604 bbit0 state_inconn ,spp_send_end 
-0x63b1 018605 fetch 1 ,mem_context + coffset_mode 
-0x63b2 018606 bbit1 mode_le ,modle_le_tx 
-0x63b3 018607 call app_check_sniff 
-0x63b4 018608 branch module_exit_sniff ,true 
-0x63b5 018609 branch spp_tx_rfcomm_packet 
-:      018611 module_le_rx:
-0x63b6 018612 call le_att_get_handle_ptr 
-0x63b7 018613 ifetch 1 ,contr 
-0x63b8 018614 copy contr ,rega 
-0x63b9 018615 call get_uart_twptr 
-0x63ba 018616 copy regb ,loopcnt 
-0x63bb 018617 copy rega ,contr 
-0x63bc 018618 call uart_copy_tx_bytes 
-0x63bd 018619 branch uartd_send 
-:      018622 module_le_tx_update_data:
-0x63be 018624 fetch 2 ,mem_module_prepare_tx_len 
-0x63bf 018625 rtn blank 
-0x63c0 018626 arg dm_le_buff_len ,temp 
-0x63c1 018627 call not_greater_than 
-0x63c2 018628 store 2 ,mem_module_temp_len 
-0x63c3 018630 copy pdata ,temp 
-0x63c4 018631 fetch 2 ,mem_module_prepare_tx_len 
-0x63c5 018632 isub temp ,pdata 
-0x63c6 018633 store 2 ,mem_module_prepare_tx_len 
-0x63c7 018634 nbranch assert ,positive 
-0x63c8 018636 arg prcp_tx_le ,temp 
-0x63c9 018637 storet 2 ,mem_le_notify_handle 
-0x63ca 018638 call le_att_get_handle_ptr 
-0x63cb 018639 branch assert ,blank 
-0x63cc 018640 add contr ,1 ,contw 
-0x63cd 018642 fetch 2 ,mem_module_temp_len 
-0x63ce 018643 copy pdata ,loopcnt 
-0x63cf 018645 call get_uart_rrptr 
-0x63d0 018647 call uart_copy_rx_bytes 
-0x63d1 018649 fetch 2 ,mem_module_temp_len 
-0x63d2 018650 store 2 ,mem_current_packet_length 
-0x63d3 018651 store 2 ,mem_le_notify_len 
-0x63d4 018652 branch spp_send_end 
-:      018655 modle_le_tx:
-0x63d5 018656 rtnmark0 mark_context 
-0x63d6 018657 call modle_le_tx_once 
-0x63d7 018658 call modle_le_tx_once 
-:      018659 modle_le_tx_once:
-0x63d8 018660 call le_xtype_fifo_is_near_full 
-0x63d9 018661 nrtn blank 
-0x63da 018662 hfetch 2 ,core_uart_rxitems 
-0x63db 018663 rtn blank 
-0x63dc 018664 fetcht 2 ,mem_module_prepare_tx_len 
-0x63dd 018665 isub temp ,pdata 
-0x63de 018666 nbranch assert ,positive 
-0x63df 018667 store 2 ,mem_current_packet_length 
-0x63e0 018668 rtn blank 
-0x63e1 018669 call at_ckeck_send_buff_le 
-0x63e2 018670 fetch 2 ,mem_module_prepare_tx_len 
-0x63e3 018671 fetcht 2 ,mem_current_packet_length 
-0x63e4 018672 iadd temp ,pdata 
-0x63e5 018673 store 2 ,mem_module_prepare_tx_len 
-0x63e6 018674 fetcht 2 ,mem_module_prepare_tx_len 
-0x63e7 018675 hfetch 2 ,core_uart_rxitems 
-0x63e8 018676 isub temp ,rega 
-0x63e9 018677 nbranch assert ,positive 
-0x63ea 018678 jam attop_handle_value_notification ,mem_fifo_temp 
-0x63eb 018679 branch le_xtype_fifo_in 
-:      018681 module_bb_event_timer:
-0x63ec 018682 storet 1 ,mem_app_evt_timer_count 
-:      018683 module_bb_event_100ms_loop:
-0x63ed 018684 fetch 1 ,mem_app_evt_timer_count 
-0x63ee 018685 rtn blank 
-0x63ef 018686 increase -1 ,pdata 
-0x63f0 018687 store 1 ,mem_app_evt_timer_count 
-0x63f1 018688 call module_bb_event_hud_ms 
-0x63f2 018689 branch module_bb_event_100ms_loop 
-:      018691 module_bb_event_hud_ms:
-0x63f3 018692 fetch 2 ,mem_at_scan_time 
-0x63f4 018693 rtn blank 
-0x63f5 018694 increase -1 ,pdata 
-0x63f6 018695 store 2 ,mem_at_scan_time 
-0x63f7 018696 nrtn blank 
-0x63f8 018697 fetch 1 ,mem_at_using_flag 
-0x63f9 018698 jam 0 ,mem_at_using_flag 
-0x63fa 018699 bbit1 at_flag_leinq ,modue_le_inq 
-0x63fb 018700 bbit1 at_flag_inq ,module_inq 
-0x63fc 018701 branch assert 
-:      018702 modue_le_inq:
-0x63fd 018703 branch app_ble_stop_scan 
-:      018704 module_inq:
-0x63fe 018705 jam hci_cmd_inquiry_cancel ,mem_hci_cmd 
-0x63ff 018706 rtn 
-:      018708 at_ckeck_send_buff:
-0x6400 018709 fetch 1 ,mem_context + coffset_mode 
-0x6401 018710 bbit1 mode_le ,at_ckeck_send_buff_le 
-0x6402 018711 fetch 2 ,mem_current_packet_length 
-0x6403 018712 arg dm_refcom_buff_len ,temp 
-0x6404 018714 call not_greater_than 
-0x6405 018715 store 2 ,mem_current_packet_length 
-0x6406 018716 rtn 
-:      018717 at_ckeck_send_buff_le:
-0x6407 018718 fetch 2 ,mem_current_packet_length 
-0x6408 018719 arg dm_le_buff_len ,temp 
-0x6409 018720 call not_greater_than 
-0x640a 018721 store 2 ,mem_current_packet_length 
-0x640b 018722 rtn 
-:      018724 at_set_unsniff_task_flag:
-0x640c 018725 fetch 1 ,mem_module_task 
-0x640d 018726 set1 at_task_unsinff ,pdata 
-0x640e 018727 store 1 ,mem_module_task 
-0x640f 018728 rtn 
-:      018730 at_clear_unsniff_task_flag:
-0x6410 018731 fetch 1 ,mem_module_task 
-0x6411 018732 set0 at_task_unsinff ,pdata 
-0x6412 018733 store 1 ,mem_module_task 
-0x6413 018734 rtn 
-:      018736 at_set_cmd_task_flag:
-0x6414 018737 fetch 1 ,mem_module_task 
-0x6415 018738 set1 at_task_cmd_flag ,pdata 
-0x6416 018739 store 1 ,mem_module_task 
-0x6417 018740 rtn 
-:      018742 at_clear_cmd_task_flag:
-0x6418 018743 fetch 1 ,mem_module_task 
-0x6419 018744 set0 at_task_cmd_flag ,pdata 
-0x641a 018745 store 1 ,mem_module_task 
-0x641b 018746 rtn 
-:      018748 module_control_air_flow:
-0x641c 018749 set1 mark_ext_patch ,mark 
-0x641d 018750 bpatch patch30_2 ,mem_patch30 
-0x641e 018751 call check_uart_tx_buff 
-0x641f 018752 branch app_l2cap_flow_control_enable ,positive 
-0x6420 018753 branch app_l2cap_flow_control_disable 
-:      018755 module_uart_set:
-0x6421 018756 call spp_mode 
-0x6422 018757 branch module_set_baud_115200 ,true 
-0x6423 018758 hfetcht uart_baud_len ,core_uart_baud 
-0x6424 018759 fetch 2 ,mem_baud 
-0x6425 018760 isub temp ,null 
-0x6426 018761 rtn zero 
-0x6427 018762 branch uart_set_baud_by_mem 
-:      018765 module_set_baud_115200:
-0x6428 018766 hfetcht uart_baud_len ,core_uart_baud 
-0x6429 018767 setarg at_baud_115200 
-0x642a 018768 isub temp ,null 
-0x642b 018769 rtn zero 
-0x642c 018770 hstore uart_baud_len ,core_uart_baud 
-0x642d 018771 rtn 
-:      018773 module_check_cmode:
-0x642e 018774 set1 mark_ext_patch ,mark 
-0x642f 018775 bpatch patch30_3 ,mem_patch30 
-0x6430 018776 fetch 1 ,mem_module_state 
-0x6431 018777 isolate0 at_state_cmode ,pdata 
-0x6432 018778 branch module_check_cmode_close ,true 
-0x6433 018779 arg mem_cmode_addr ,rega 
-0x6434 018780 arg 6 ,loopcnt 
-0x6435 018781 branch string_compare 
-:      018782 module_check_cmode_close:
-0x6436 018783 force 0 ,null 
-0x6437 018784 rtn 
-:      018786 module_init_static_string:
-0x6438 018787 set1 mark_ext_patch ,mark 
-0x6439 018788 bpatch patch30_4 ,mem_patch30 
-0x643a 018789 arg mem_prarm_pswd ,contw 
-0x643b 018790 setsect 0 ,0x35350 
-0x643c 018791 setsect 1 ,0x15115 
-0x643d 018792 setsect 2 ,0x12415 
-0x643e 018793 setsect 3 ,0x10951 
-0x643f 018794 istore 9 ,contw 
-0x6440 018795 setsect 0 ,0x2454c 
-0x6441 018796 setsect 1 ,0x35053 
-0x6442 018797 setsect 2 ,0x2454 
-0x6443 018798 setsect 3 ,0x11531 
-0x6444 018799 istore 9 ,contw 
-0x6445 018800 setsect 0 ,0x34441 
-0x6446 018801 setsect 1 ,0x194d4 
-0x6447 018802 setsect 2 ,0x12455 
-0x6448 018803 setsect 3 ,0x10d4d 
-0x6449 018804 istore 9 ,contw 
-0x644a 018805 setsect 0 ,0x3414c 
-0x644b 018806 setsect 1 ,0xd4d4 
-0x644c 018807 setsect 2 ,0x124c4 
-0x644d 018808 setsect 3 ,0x13119 
-0x644e 018809 istore 9 ,contw 
-0x644f 018810 setsect 0 ,0x15247 
-0x6450 018811 setsect 1 ,0x3d0d1 
-0x6451 018812 setsect 2 ,0xe4e4 
-0x6452 018813 setsect 3 ,0x11531 
-0x6453 018814 istore 9 ,contw 
-0x6454 018815 setsect 0 ,0x34944 
-0x6455 018816 setsect 1 ,0x114d4 
-0x6456 018817 setsect 2 ,0xe535 
-0x6457 018818 setsect 3 ,0x15105 
-0x6458 018819 istore 9 ,contw 
-0x6459 018820 setsect 0 ,0x14c2b 
-0x645a 018821 setsect 1 ,0x114d2 
-0x645b 018822 setsect 2 ,0xf525 
-0x645c 018823 setsect 3 ,0x11531 
-0x645d 018824 istore 9 ,contw 
-0x645e 018825 setsect 0 ,0x14e53 
-0x645f 018826 setsect 1 ,0x19192 
-0x6460 018827 setsect 2 ,0x44c4 
-0x6461 018828 setsect 3 ,0x15915 
-0x6462 018829 istore 9 ,contw 
-0x6463 018830 setsect 0 ,0x35352 
-0x6464 018831 setsect 1 ,0xd254 
-0x6465 018832 setsect 2 ,0x5444 
-0x6466 018833 setsect 3 ,0x10959 
-0x6467 018834 istore 9 ,contw 
-0x6468 018835 setsect 0 ,0x1454c 
-0x6469 018836 setsect 1 ,0x5392 
-0x646a 018837 setsect 2 ,0x3525 
-0x646b 018838 setsect 3 ,0x13d35 
-0x646c 018839 istore 9 ,contw 
-0x646d 018840 setsect 0 ,0x14544 
-0x646e 018841 setsect 1 ,0x113d3 
-0x646f 018842 setsect 2 ,0x4454 
-0x6470 018843 setsect 3 ,0x14d35 
-0x6471 018844 istore 9 ,contw 
-0x6472 018845 setsect 0 ,0x4154 
-0x6473 018846 setsect 1 ,0x11155 
-0x6474 018847 setsect 2 ,0x13494 
-0x6475 018848 setsect 3 ,0x13d0d 
-0x6476 018849 istore 9 ,contw 
-0x6477 018850 setsect 0 ,0x4f56 
-0x6478 018851 setsect 1 ,0x31055 
-0x6479 018852 setsect 2 ,0x3454 
-0x647a 018853 setsect 3 ,0x1393d 
-0x647b 018854 istore 9 ,contw 
-0x647c 018855 setsect 0 ,0x1504e 
-0x647d 018856 setsect 1 ,0x151d0 
-0x647e 018857 setsect 2 ,0x154f4 
-0x647f 018858 setsect 3 ,0x14951 
-0x6480 018859 istore 9 ,contw 
-0x6481 018860 setsect 0 ,0x24345 
-0x6482 018861 setsect 1 ,0x25051 
-0x6483 018862 setsect 2 ,0x4c4 
-0x6484 018863 istore 6 ,contw 
-0x6485 018864 rtn 
-:      018868 mouse_init:
-0x6486 018869 setarg le_mouse 
-0x6487 018870 store 2 ,mem_cb_le_process 
-0x6488 018871 setarg mouse_send_process 
-0x6489 018872 store 2 ,mem_cb_bt_process 
-0x648a 018873 setarg mouse_process_lpm_before 
-0x648b 018874 store 2 ,mem_cb_before_lpm 
-0x648c 018875 setarg mouse_priority_bb_event 
-0x648d 018876 store 2 ,mem_cb_bb_event_process 
-0x648e 018877 setarg mouse_idle 
-0x648f 018878 store 2 ,mem_cb_idle_process 
-0x6490 018879 setarg mouse_le_notify_update_data 
-0x6491 018880 store 2 ,mem_cb_update_notify_value 
-0x6492 018881 jam 0 ,mem_sp_flag 
-0x6493 018882 jam 0 ,mem_master_sp_flag 
-0x6494 018883 set0 mark_ext_patch ,mark 
-0x6495 018884 bpatch patch18_0 ,mem_patch18 
-0x6496 018885 call mouse_init_common 
-0x6497 018886 rtn wake 
-0x6498 018887 call mouse_init_environment 
-0x6499 018888 call mouse_dpi_init 
-0x649a 018889 setarg mouse_before_hibernate 
-0x649b 018890 store 2 ,mem_cb_before_hibernate 
-0x649c 018891 fetch 2 ,mem_ui_state_map 
-0x649d 018892 bbit1 ui_state_btn_down ,mouse_start_discovery 
-0x649e 018893 branch mouse_check_reconn_target 
-:      018895 mouse_init_environment:
-0x649f 018896 call app_initflag_check 
-0x64a0 018897 branch mouse_load_eeprom_param ,zero 
-0x64a1 018898 call eeprom_store_le_local_addr 
-0x64a2 018899 call eeprom_store_mouse_dpi 
-0x64a3 018900 branch app_initflag_store 
-:      018901 mouse_load_eeprom_param:
-0x64a4 018902 call eeprom_load_reconn_info 
-0x64a5 018903 call eeprom_load_le_loacal_addr 
-0x64a6 018904 branch eeprom_load_mouse_dpi 
-:      018906 mouse_dpi_init:
-0x64a7 018907 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
-0x64a8 018908 branch mouse_modified_dpi 
-:      018910 mouse_idle:
-0x64a9 018911 call ui_check_paring_button 
-0x64aa 018912 call mouse_check_dpi 
-0x64ab 018913 branch mouse_wheel_check 
-:      018915 mouse_check_dpi:
-0x64ac 018916 fetcht 1 ,mem_dpi_button_gpio 
-0x64ad 018917 call gpio_get_bit 
-0x64ae 018918 nbranch mouse_dpi_up ,true 
-:      018919 mouse_dpi_down:
-0x64af 018920 fetch 1 ,mem_mouse_dpi_button_state 
-0x64b0 018921 rtneq dpi_button_state_down 
-0x64b1 018922 jam dpi_button_state_down ,mem_mouse_dpi_button_state 
-0x64b2 018923 rtn 
-:      018924 mouse_dpi_up:
-0x64b3 018925 fetch 1 ,mem_mouse_dpi_button_state 
-0x64b4 018926 rtneq dpi_button_state_up 
-0x64b5 018927 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
-0x64b6 018928 fetch 1 ,mem_mouse_dpi 
-0x64b7 018929 increase 1 ,pdata 
-0x64b8 018930 and pdata ,0x03 ,pdata 
-0x64b9 018931 store 1 ,mem_mouse_dpi 
-0x64ba 018932 branch mouse_modified_dpi 
-:      018933 mouse_modified_dpi:
-0x64bb 018934 setarg mouse_dpi_address 
-0x64bc 018935 call twspi_read 
-0x64bd 018936 and pdata ,0xfc ,temp 
-0x64be 018937 fetch 1 ,mem_mouse_dpi 
-0x64bf 018938 iadd temp ,pdata 
-0x64c0 018939 lshift8 pdata ,pdata 
-0x64c1 018940 add pdata ,mouse_dpi_address ,pdata 
-0x64c2 018941 call twspi_write 
-0x64c3 018942 branch eeprom_store_mouse_dpi 
-:      018944 mouse_init_common:
-0x64c4 018945 call mouse_init_sunt 
-0x64c5 018946 call mouse_gpio_init 
-0x64c6 018947 hfetch 2 ,core_clkoff 
-0x64c7 018948 set0 clock_off_qdecoder ,pdata 
-0x64c8 018949 hstore 2 ,core_clkoff 
-0x64c9 018950 rtn 
-:      018952 mouse_gpio_init:
-0x64ca 018953 call lpm_disable_exen_output 
-0x64cb 018954 fetcht 1 ,mem_whee_a_data_gpio 
-0x64cc 018955 call gpio_config_input 
-0x64cd 018956 fetcht 1 ,mem_whee_b_data_gpio 
-0x64ce 018957 call gpio_config_input 
-0x64cf 018958 fetcht 1 ,mem_lbutton_gpio 
-0x64d0 018959 call gpio_config_input 
-0x64d1 018960 fetcht 1 ,mem_rbutton_gpio 
-0x64d2 018961 call gpio_config_input 
-0x64d3 018962 fetcht 1 ,mem_mbutton_gpio 
-0x64d4 018963 call gpio_config_input 
-0x64d5 018964 fetcht 1 ,mem_sensor_data_gpio 
-0x64d6 018965 call gpio_config_input 
-0x64d7 018966 fetcht 1 ,mem_dpi_button_gpio 
-0x64d8 018967 call gpio_config_input 
-0x64d9 018968 hfetch 1 ,core_gpio_pu3 
-0x64da 018969 or_into 0x18 ,pdata 
-0x64db 018970 hstore 1 ,core_gpio_pu3 
-0x64dc 018971 hfetch 1 ,core_gpio_pd2 + 1 
-0x64dd 018972 and_into 0xe7 ,pdata 
-0x64de 018973 hstore 1 ,core_gpio_pd2 + 1 
-0x64df 018974 rtn 
-:      018977 mouse_before_hibernate:
-0x64e0 018978 setarg 0xbc05 
-0x64e1 018979 call twspi_write 
-0x64e2 018980 jam 1 ,mem_lpm_current_mult 
-:      018982 mouse_process_lpm_before:
-0x64e3 018983 call mouse_wheel_check 
-0x64e4 018984 arg 25 ,temp 
-0x64e5 018985 call gpio_config_output 
-0x64e6 018986 hjam 0 ,core_gpio_sel1 
-0x64e7 018987 fetcht 1 ,mem_whee_a_data_gpio 
-0x64e8 018988 call gpio_set_wake_by_current_state 
-0x64e9 018989 fetcht 1 ,mem_whee_b_data_gpio 
-0x64ea 018990 call gpio_set_wake_by_current_state 
-0x64eb 018991 fetcht 1 ,mem_lbutton_gpio 
-0x64ec 018992 call gpio_set_wake_by_current_state 
-0x64ed 018993 fetcht 1 ,mem_rbutton_gpio 
-0x64ee 018994 call gpio_set_wake_by_current_state 
-0x64ef 018995 fetcht 1 ,mem_mbutton_gpio 
-0x64f0 018996 call gpio_set_wake_by_current_state 
-0x64f1 018997 fetcht 1 ,mem_sensor_data_gpio 
-0x64f2 018998 call gpio_set_wake 
-0x64f3 018999 fetch 1 ,mem_lpm_current_mult 
-0x64f4 019000 nrtn blank 
-0x64f5 019001 branch gpio_clr_wake 
-:      019003 mouse_wheel_check:
-0x64f6 019004 set0 mark_ext_patch ,mark 
-0x64f7 019005 bpatch patch18_1 ,mem_patch18 
-0x64f8 019006 arg 0 ,rega 
-0x64f9 019007 fetcht 1 ,mem_whee_a_data_gpio 
-0x64fa 019008 call gpio_get_bit 
-0x64fb 019009 setflag true ,0 ,rega 
-0x64fc 019010 fetcht 1 ,mem_whee_b_data_gpio 
-0x64fd 019011 call gpio_get_bit 
-0x64fe 019012 setflag true ,1 ,rega 
-0x64ff 019013 copy rega ,pdata 
-0x6500 019015 and_into 0x3 ,pdata 
-0x6501 019016 fetcht 1 ,mem_mouse_z_now 
-0x6502 019017 store 1 ,mem_mouse_z_now 
-0x6503 019018 isub temp ,null 
-0x6504 019019 branch mouse_wheel_clear ,zero 
-0x6505 019020 fetch 1 ,mem_mouse_z_before 
-0x6506 019021 store 1 ,mem_mouse_z_last 
-0x6507 019022 storet 1 ,mem_mouse_z_before 
-0x6508 019023 fetch 1 ,mem_mouse_z_now 
-0x6509 019024 lshift4 pdata ,pdata 
-0x650a 019025 fetcht 1 ,mem_mouse_z_before 
-0x650b 019026 lshift2 temp ,temp 
-0x650c 019027 iadd temp ,pdata 
-0x650d 019028 fetcht 1 ,mem_mouse_z_last 
-0x650e 019029 iadd temp ,pdata 
-0x650f 019030 beq 0x38 ,mouse_wheel_forward 
-0x6510 019031 beq 0x34 ,mouse_wheel_back 
-0x6511 019032 beq 0x0b ,mouse_wheel_back 
-0x6512 019033 beq 0x07 ,mouse_wheel_forward 
-0x6513 019034 rtn 
-:      019036 mouse_wheel_clear:
-0x6514 019037 rtn 
-:      019039 mouse_wheel_forward:
-0x6515 019040 fetch 1 ,mem_mouse_z_data 
-0x6516 019041 increase 1 ,pdata 
-0x6517 019042 store 1 ,mem_mouse_z_data 
-0x6518 019043 rtn 
-:      019045 mouse_wheel_back:
-0x6519 019046 fetch 1 ,mem_mouse_z_data 
-0x651a 019047 increase -1 ,pdata 
-0x651b 019048 store 1 ,mem_mouse_z_data 
-0x651c 019049 rtn 
-:      019051 mouse_process_ble:
-0x651d 019053 rtn 
-:      019054 mouse_sleep_sensor:
-0x651e 019055 setarg 0xB805 
-0x651f 019056 branch twspi_write 
-:      019058 mouse_bb_connected:
-0x6520 019059 rtn 
-:      019061 le_mouse_bb_event_write_request:
-0x6521 019062 call app_ble_store_reconn_info 
-0x6522 019063 jam mouse_mode_state_ble ,mem_mouse_mode_state 
-0x6523 019064 call app_lpm_mult_enable 
-:      019065 le_mouse_bb_event_enc_info:
-0x6524 019066 branch app_ble_start_write 
-:      019068 le_hibernate_timer:
-0x6525 019069 fetch 2 ,mem_le_hibernate_timer 
-0x6526 019070 rtn blank 
-0x6527 019071 increase -1 ,pdata 
-0x6528 019072 store 2 ,mem_le_hibernate_timer 
-0x6529 019073 nrtn blank 
-0x652a 019074 branch app_enter_hibernate 
-:      019076 mouse_hid_connected:
-0x652b 019077 setarg hid_handshake_timeout 
-0x652c 019078 store 1 ,mem_hid_handshake_timer_count 
-0x652d 019079 rtn 
-:      019081 mouse_send_process:
-0x652e 019082 fetch 1 ,mem_app_handshake_flag 
-0x652f 019083 rtn blank 
-0x6530 019084 call l2cap_malloc_is_fifo_nearly_full 
-0x6531 019085 nrtn blank 
-0x6532 019086 call mouse_motion 
-0x6533 019087 nrtn user 
-0x6534 019088 call mouse_no_data_timer_init 
-0x6535 019089 call mouse_send_blank_packet_timer_init 
-:      019090 mouse_send_data:
-0x6536 019091 arg 8 ,rega 
-0x6537 019092 call hid_malloc_tx_buff 
-0x6538 019093 fetch 2 ,mem_hid_int_remote_cid 
-0x6539 019094 istore 2 ,contw 
-0x653a 019095 setarg 0x02a1 
-0x653b 019096 istore 2 ,contw 
-0x653c 019097 fetch 1 ,mem_mouse_key 
-0x653d 019098 istore 1 ,contw 
-0x653e 019099 fetch 2 ,mem_mouse_x 
-0x653f 019100 arg 0xfff ,temp 
-0x6540 019101 iand temp ,pdata 
-0x6541 019102 fetcht 2 ,mem_mouse_y 
-0x6542 019103 lshift4 temp ,temp 
-0x6543 019104 lshift8 temp ,temp 
-0x6544 019105 ior temp ,pdata 
-0x6545 019106 istore 3 ,contw 
-0x6546 019107 fetch 1 ,mem_mouse_z 
-0x6547 019108 istore 1 ,contw 
-0x6548 019109 setarg 0 
-0x6549 019110 istore 1 ,contw 
-0x654a 019111 jam 8 ,mem_ui_data_txbuff_length 
-0x654b 019112 rtn 
-:      019115 mouse_send_blank_packet_timer:
-0x654c 019116 set0 mark_ext_patch ,mark 
-0x654d 019117 bpatch patch18_2 ,mem_patch18 
-0x654e 019118 fetch 1 ,mem_mouse_send_blank_timer 
-0x654f 019119 rtn blank 
-0x6550 019120 increase -1 ,pdata 
-0x6551 019121 store 1 ,mem_mouse_send_blank_timer 
-0x6552 019122 nrtn blank 
-0x6553 019123 call l2cap_malloc_is_fifo_empty 
-0x6554 019124 nrtn blank 
-0x6555 019125 setarg 0 
-0x6556 019126 store 5 ,mem_mouse_x 
-0x6557 019127 call mouse_send_data 
-0x6558 019128 jam mouse_send_blank_timer ,mem_mouse_send_blank_timer 
-0x6559 019129 rtn 
-:      019130 mouse_send_blank_packet_timer_init:
-0x655a 019131 fetch 2 ,mem_mouse_blank_data_timeout 
-0x655b 019132 store 2 ,mem_mouse_blank_data_timer 
-0x655c 019133 jam mouse_send_blank_timer ,mem_mouse_send_blank_timer 
-0x655d 019134 rtn 
-:      019136 mouse_no_data_timer_init:
-0x655e 019137 fetch 2 ,mem_mouse_no_data_timeout 
-0x655f 019138 store 2 ,mem_mouse_no_data_timer 
-0x6560 019139 rtn 
-:      019142 mouse_le_notify_update_data:
-0x6561 019143 fetcht 2 ,mem_le_notify_handle 
-0x6562 019144 call le_att_get_handle_ptr 
-0x6563 019145 ifetch 1 ,contr 
-0x6564 019146 store 1 ,mem_le_notify_len 
-0x6565 019147 rtn 
-:      019150 mouse_fill_data_le:
-0x6566 019151 set0 mark_ext_patch ,mark 
-0x6567 019152 bpatch patch18_3 ,mem_patch18 
-0x6568 019153 fetcht 2 ,mem_le_notify_handle 
-0x6569 019154 call le_att_get_handle_ptr 
-0x656a 019155 add contr ,1 ,contw 
-:      019156 mouse_fill_data:
-0x656b 019157 fetch 1 ,mem_mouse_key 
-0x656c 019158 istore 1 ,contw 
-0x656d 019159 fetch 2 ,mem_mouse_x 
-0x656e 019160 arg 0xfff ,temp 
-0x656f 019161 iand temp ,pdata 
-0x6570 019162 fetcht 2 ,mem_mouse_y 
-0x6571 019163 lshift4 temp ,temp 
-0x6572 019164 lshift8 temp ,temp 
-0x6573 019165 ior temp ,pdata 
-0x6574 019166 istore 3 ,contw 
-0x6575 019167 fetch 1 ,mem_mouse_z 
-0x6576 019168 istore 1 ,contw 
-0x6577 019169 rtn 
-:      019171 mouse_motion:
-0x6578 019172 set0 mark_ext_patch ,mark 
-0x6579 019173 bpatch patch18_4 ,mem_patch18 
-0x657a 019174 disable user 
-0x657b 019175 setarg 0 
-0x657c 019176 store 5 ,mem_mouse_x 
-0x657d 019177 call p3204_motion 
-0x657e 019178 call p3204_sdio_low 
-0x657f 019179 call mouse_zwheel 
-0x6580 019180 branch mouse_key 
-:      019182 p3204_motion:
-0x6581 019183 fetch 1 ,mem_sensor_type 
-0x6582 019184 rtnne sensor_type_p3204 
-0x6583 019185 fetch 1 ,mem_mouse_move_flag 
-0x6584 019186 call p3204_clear_data ,blank 
-0x6585 019187 jam 1 ,mem_mouse_move_flag 
-0x6586 019188 disable user 
-0x6587 019189 fetcht 1 ,mem_sensor_data_gpio 
-0x6588 019190 call gpio_get_bit 
-0x6589 019191 nrtn true 
-0x658a 019192 setarg 0 
-0x658b 019193 call twspi_read 
-0x658c 019194 bne p3204_id ,twspi_reset 
-0x658d 019195 setarg 2 
-0x658e 019196 call twspi_read 
-0x658f 019197 rtnbit0 7 
-0x6590 019198 setarg 3 
-0x6591 019199 call twspi_read 
-0x6592 019200 call extsign 
-0x6593 019201 store 2 ,mem_mouse_x 
-0x6594 019202 setarg 4 
-0x6595 019203 call twspi_read 
-0x6596 019204 call extsign 
-0x6597 019205 sub pdata ,0 ,pdata 
-0x6598 019206 store 2 ,mem_mouse_y 
-0x6599 019207 fetch 4 ,mem_mouse_x 
-0x659a 019208 enable user 
-0x659b 019209 rtn 
-:      019210 mouse_zwheel:
-0x659c 019211 fetch 1 ,mem_mouse_z_data 
-0x659d 019212 rtn blank 
-0x659e 019213 store 1 ,mem_mouse_z 
-0x659f 019214 jam 0 ,mem_mouse_z_data 
-0x65a0 019215 enable user 
-0x65a1 019216 rtn 
-:      019217 mouse_key:
-0x65a2 019218 arg 0 ,rega 
-0x65a3 019219 fetcht 1 ,mem_lbutton_gpio 
-0x65a4 019220 call gpio_get_bit 
-0x65a5 019221 setflag true ,0 ,rega 
-0x65a6 019222 fetcht 1 ,mem_rbutton_gpio 
-0x65a7 019223 call gpio_get_bit 
-0x65a8 019224 setflag true ,1 ,rega 
-0x65a9 019225 fetcht 1 ,mem_mbutton_gpio 
-0x65aa 019226 call gpio_get_bit 
-0x65ab 019227 setflag true ,2 ,rega 
-0x65ac 019228 deposit rega 
-0x65ad 019229 fetcht 1 ,mem_mouse_key 
-0x65ae 019230 store 1 ,mem_mouse_key 
-0x65af 019231 ixor temp ,pdata 
-0x65b0 019232 sub pdata ,0 ,null 
-0x65b1 019233 rtn zero 
-0x65b2 019234 enable user 
-0x65b3 019235 rtn 
-:      019240 p3204_sdio_low:
-0x65b4 019241 arg 26 ,temp 
-0x65b5 019242 call gpio_get_bit 
-0x65b6 019243 rtn true 
-0x65b7 019244 setarg 0 
-0x65b8 019245 call twspi_read 
-0x65b9 019246 branch p3204_sdio_low 
-:      019248 p3204_clear_data:
-0x65ba 019249 arg 0 ,loopcnt 
-:      019250 p3204_clear_data_loop:
-0x65bb 019251 setarg 2 
-0x65bc 019252 call twspi_read 
-0x65bd 019253 nop 100 
-0x65be 019254 increase 1 ,loopcnt 
-0x65bf 019255 fetcht 1 ,mem_sensor_data_gpio 
-0x65c0 019256 call gpio_get_bit 
-0x65c1 019257 branch p3204_clear_data_loop ,true 
-0x65c2 019258 deposit loopcnt 
-0x65c3 019259 store 2 ,mem_init_cnt 
-0x65c4 019260 rtn 
-:      019261 mouse_init_sunt:
-0x65c5 019262 call spid_init 
-0x65c6 019263 rtn wake 
-:      019265 mouse_init_p3204:
-0x65c7 019266 setarg 0 
-0x65c8 019267 call twspi_read 
-0x65c9 019268 store 1 ,mem_sensor_id 
-0x65ca 019269 beq p3204_id ,mouse_init_p3204_cont 
-0x65cb 019270 call twspi_reset 
-0x65cc 019271 nop 10000 
-0x65cd 019272 branch mouse_init_p3204 
-:      019273 mouse_init_p3204_cont:
-0x65ce 019274 setarg 0x8006 
-0x65cf 019275 call twspi_write 
-0x65d0 019276 nop 1000 
-0x65d1 019277 jam sensor_type_p3204 ,mem_sensor_type 
-0x65d2 019278 rtn 
-:      019282 extsign:
-0x65d3 019283 rtnbit0 7 
-0x65d4 019284 arg 0xff00 ,temp 
-0x65d5 019285 ior temp ,pdata 
-0x65d6 019286 rtn 
-:      019290 le_mouse:
-0x65d7 019291 call le_xtype_fifo_is_near_full 
-0x65d8 019292 nrtn blank 
-0x65d9 019293 fetcht 2 ,mem_le_notify_handle 
-0x65da 019294 call le_att_check_notification_enable 
-0x65db 019295 rtnbit0 0 
-0x65dc 019296 fetch 1 ,mem_le_switch_send_data 
-0x65dd 019297 rtnbit0 0 
-0x65de 019298 call mouse_motion 
-0x65df 019300 nrtn user 
-0x65e0 019301 call mouse_no_data_timer_init 
-0x65e1 019303 jam attop_handle_value_notification ,mem_fifo_temp 
-0x65e2 019304 call le_xtype_fifo_in 
-0x65e3 019305 branch mouse_fill_data_le 
-:      019307 mouse_test:
-0x65e4 019308 rtn user 
-0x65e5 019309 fetch 1 ,mem_mouse_test_cnt 
-0x65e6 019310 increase 1 ,pdata 
-0x65e7 019311 store 1 ,mem_mouse_test_cnt 
-0x65e8 019312 arg 1 ,temp 
-0x65e9 019313 bbit0 7 ,mouse_test_pos 
-0x65ea 019314 arg 0xffff ,temp 
-:      019315 mouse_test_pos:
-0x65eb 019316 storet 5 ,mem_mouse_x 
-0x65ec 019317 enable user 
-0x65ed 019318 rtn 
-:      019320 mouse_check_mode_state:
-0x65ee 019321 disable user 
-0x65ef 019322 fetch 1 ,mem_mouse_mode_state 
-0x65f0 019323 rtneq mouse_mode_state_ble 
-0x65f1 019324 enable user 
-0x65f2 019325 rtn 
-:      019327 mouse_priority_bb_event:
-0x65f3 019328 copy regc ,pdata 
-0x65f4 019329 beq bt_evt_le_connected ,le_mouse_bb_event_connected 
-0x65f5 019330 beq bt_evt_bb_connected ,mouse_stop_discovery 
-0x65f6 019331 beq bt_evt_le_disconnected ,mouse_bb_disconnected 
-0x65f7 019332 beq bt_evt_bb_disconnected ,mouse_bb_disconnected 
-0x65f8 019333 beq bt_evt_setup_complete ,mouse_bt_event_setup_complete 
-0x65f9 019334 beq bt_evt_button_long_pressed ,mouse_bb_event_discovery_btn 
-0x65fa 019335 beq bt_evt_hid_handshake ,mouse_bt_hid_handshake 
-0x65fb 019336 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
-0x65fc 019337 beq bt_evt_le_write_request ,le_mouse_bb_event_write_request 
-0x65fd 019338 beq bt_evt_le_enc_info ,le_mouse_bb_event_enc_info 
-0x65fe 019339 beq bt_evt_reconn_failed ,mouse_bb_event_reconn_failed 
-0x65ff 019340 beq bt_evt_reconn_page_timeout ,mouse_bb_event_reconn_failed 
-0x6600 019341 beq bt_evt_pincode_req ,mouse_bb_event_pincode 
-0x6601 019342 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
-0x6602 019343 and pdata ,0x0f ,temp 
-0x6603 019344 and_into bt_evt_timer_mask ,pdata 
-0x6604 019345 beq bt_evt_timer_init ,mouse_bb_event_timer 
-0x6605 019346 rtn 
-:      019348 le_mouse_bb_event_connected:
-0x6606 019349 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x6607 019350 set0 app_disc_by_button ,pdata 
-0x6608 019351 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
-0x6609 019352 setarg 0 
-0x660a 019353 store 2 ,mem_mouse_direct_timer 
-0x660b 019354 fetch 1 ,mem_conn_cnt 
-0x660c 019355 increase 1 ,pdata 
-0x660d 019356 store 1 ,mem_conn_cnt 
-0x660e 019357 branch mouse_stop_discovery 
-:      019359 mouse_bb_event_pincode:
-0x660f 019360 call pincode_reinit 
-0x6610 019361 branch app_bt_set_pincode 
-:      019363 mouse_bb_event_reconn_failed:
-0x6611 019364 fetch 2 ,mem_ui_state_map 
-0x6612 019365 bbit1 ui_state_btn_down ,mouse_start_discovery 
-0x6613 019366 branch app_bb_hibernate 
-:      019369 mouse_bt_hid_connected:
-0x6614 019370 call mouse_hid_connected 
-0x6615 019371 rtn 
-:      019372 mouse_bt_event_setup_complete:
-0x6616 019373 rtn 
-:      019375 mouse_bb_disconnected:
-0x6617 019376 set0 mark_ext_patch ,mark 
-0x6618 019377 bpatch patch18_5 ,mem_patch18 
-0x6619 019378 call mouse_bb_discon_clear_stack 
-0x661a 019379 fetch app_disc_rsn_size ,mem_app_disconn_reason 
-0x661b 019380 bbit1 app_disc_ble ,mouse4_0_event_bb_disconn 
-0x661c 019381 bbit1 app_disc_by_button ,app_disconn_reason_clear 
-0x661d 019382 bbit1 app_disc_after_pairing ,mouse_event_light_state_pairing 
-0x661e 019383 bbit1 app_disc_after_reconn ,mouse_event_light_state_hibernate 
-0x661f 019384 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
-0x6620 019385 branch mouse_start_discovery 
-:      019386 mouse_bb_discon_clear_stack:
-0x6621 019387 setarg 0 
-0x6622 019388 store 4 ,mem_mouse_z_last 
-0x6623 019389 jam 0 ,mem_mouse_send_blank_timer 
-0x6624 019390 jam 0 ,mem_mouse_move_flag 
-0x6625 019391 jam app_handshake_null ,mem_app_handshake_flag 
-0x6626 019392 jam 0 ,mem_ltk_exists 
-0x6627 019393 jam 0 ,mem_mouse_mode_state 
-0x6628 019394 jam 0 ,mem_reconnect_timeout 
-0x6629 019395 rtn 
-:      019397 mouse_event_light_state_pairing:
-0x662a 019398 bbit1 app_disc_after_handshake ,mouse_event_light_state_hibernate 
-0x662b 019399 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
-0x662c 019400 branch mouse_start_discovery 
-:      019401 mouse_event_light_state_hibernate:
-0x662d 019402 fetch 2 ,mem_ui_state_map 
-0x662e 019403 bbit1 ui_state_btn_down ,mouse_start_discovery 
-0x662f 019404 branch app_bb_hibernate 
-:      019406 mouse4_0_event_bb_disconn:
-0x6630 019407 call le_clean_att_list_handle_enable 
-0x6631 019408 fetch app_disc_rsn_size ,mem_app_disconn_reason 
-0x6632 019409 bbit1 app_disc_by_button ,app_disconn_reason_clear 
-0x6633 019410 branch app_bb_hibernate 
-:      019412 mouse_bb_event_timer:
-0x6634 019413 set0 mark_ext_patch ,mark 
-0x6635 019414 bpatch patch18_6 ,mem_patch18 
-0x6636 019415 storet 1 ,mem_app_evt_timer_count 
-:      019416 mouse_bb_event_100ms_loop:
-0x6637 019417 fetch 1 ,mem_app_evt_timer_count 
-0x6638 019418 rtn blank 
-0x6639 019419 increase -1 ,pdata 
-0x663a 019420 store 1 ,mem_app_evt_timer_count 
-0x663b 019423 call mouse_check_hid_handshake_timer 
-0x663c 019424 call mouse_check_discovery_timeout_timer 
-0x663d 019425 call mouse_check_direct_timeout_timer 
-0x663e 019426 call mouse_check_no_data_timeout_timer 
-0x663f 019428 fetch 1 ,mem_mouse_mode_state 
-0x6640 019429 compare mouse_mode_state_ble ,pdata ,0xff 
-0x6641 019430 call mouse4_0_bb_event_100ms ,true 
-0x6642 019431 fetch 1 ,mem_mouse_mode_state 
-0x6643 019432 compare mouse_mode_state_bt ,pdata ,0xff 
-0x6644 019433 call mouse3_0_bb_event_100ms ,true 
-0x6645 019434 branch mouse_bb_event_100ms_loop 
-:      019436 mouse3_0_bb_event_100ms:
-0x6646 019438 call mouse_check_blank_data_timeout_timer 
-0x6647 019439 branch mouse_send_blank_packet_timer 
-:      019441 mouse4_0_bb_event_100ms:
-0x6648 019443 rtn 
-:      019445 mouse_check_hid_handshake_timer:
-0x6649 019446 fetch 1 ,mem_hid_handshake_timer_count 
-0x664a 019447 rtn blank 
-0x664b 019448 increase -1 ,pdata 
-0x664c 019449 store 1 ,mem_hid_handshake_timer_count 
-0x664d 019450 nrtn blank 
-0x664e 019451 branch mouse_bt_hid_handshake 
-:      019453 mouse_check_discovery_timeout_timer:
-0x664f 019454 fetch 2 ,mem_mouse_discovery_timer 
-0x6650 019455 rtn blank 
-0x6651 019456 increase -1 ,pdata 
-0x6652 019457 store 2 ,mem_mouse_discovery_timer 
-0x6653 019458 nrtn blank 
-0x6654 019459 call mouse_stop_discovery 
-0x6655 019460 branch app_enter_hibernate 
-:      019462 mouse_check_direct_timeout_timer:
-0x6656 019463 fetch 2 ,mem_mouse_direct_timer 
-0x6657 019464 rtn blank 
-0x6658 019465 increase -1 ,pdata 
-0x6659 019466 store 2 ,mem_mouse_direct_timer 
-0x665a 019467 nrtn blank 
-0x665b 019468 call app_ble_stop_direct_adv 
-0x665c 019469 branch app_enter_hibernate 
-:      019471 mouse_check_blank_data_timeout_timer:
-0x665d 019472 fetch 2 ,mem_mouse_blank_data_timer 
-0x665e 019473 rtn blank 
-0x665f 019474 increase -1 ,pdata 
-0x6660 019475 store 2 ,mem_mouse_blank_data_timer 
-0x6661 019476 nrtn blank 
-0x6662 019477 jam 0 ,mem_mouse_send_blank_timer 
-0x6663 019478 rtn 
-:      019480 mouse_check_no_data_timeout_timer:
-0x6664 019481 fetch 2 ,mem_mouse_no_data_timer 
-0x6665 019482 rtn blank 
-0x6666 019483 increase -1 ,pdata 
-0x6667 019484 store 2 ,mem_mouse_no_data_timer 
-0x6668 019485 nrtn blank 
-0x6669 019486 branch mouse_disconnect 
-:      019488 mouse_bb_event_discovery_btn:
-0x666a 019489 set0 mark_ext_patch ,mark 
-0x666b 019490 bpatch patch18_7 ,mem_patch18 
-0x666c 019491 jam 0 ,mem_mouse_send_blank_timer 
-0x666d 019492 jam 1 ,mem_reconnect_timeout 
-0x666e 019493 setarg 0 
-0x666f 019494 store 2 ,mem_mouse_direct_timer 
-0x6670 019495 call mouse_disconnect 
-0x6671 019496 fetch 1 ,mem_device_option 
-0x6672 019497 isolate1 mode_4_mouse ,pdata 
-0x6673 019498 call mouse4_0_bb_event_discovery_btn ,true 
-0x6674 019499 fetch 1 ,mem_device_option 
-0x6675 019500 isolate1 mode_3_mouse ,pdata 
-0x6676 019501 call mouse3_0_bb_event_discovery_btn ,true 
-0x6677 019502 call app_lpm_mult_disable 
-0x6678 019503 branch mouse_start_discovery 
-:      019507 mouse3_0_check_reconn_target:
-0x6679 019508 fetch 6 ,mem_hci_plap 
-0x667a 019509 branch app_bt_start_discovery_short ,blank 
-0x667b 019510 branch app_bt_start_reconnect 
-:      019512 mouse4_0_check_reconn_target:
-0x667c 019513 fetch 6 ,mem_hci_plap 
-0x667d 019514 branch mouse4_0_no_reconn_target ,blank 
-0x667e 019515 fetch 2 ,mem_mouse_direct_timeout 
-0x667f 019516 store 2 ,mem_mouse_direct_timer 
-0x6680 019517 call app_lpm_mult_enable 
-0x6681 019518 branch app_ble_start_direct_adv 
-:      019519 mouse4_0_no_reconn_target:
-0x6682 019520 call app_led_start_blink 
-0x6683 019521 branch app_ble_start_adv 
-:      019523 mouse3_0_bb_event_discovery_btn:
-0x6684 019524 fetch 2 ,mem_ui_state_map 
-0x6685 019525 isolate1 ui_state_bt_reconnect ,pdata 
-0x6686 019526 call app_bt_reconnect_cancel ,true 
-0x6687 019527 rtn 
-:      019528 mouse4_0_bb_event_discovery_btn:
-0x6688 019529 call le_clean_att_list_handle_enable 
-0x6689 019530 rtn 
-:      019532 mouse_bt_hid_handshake:
-0x668a 019533 jam app_handshake_done ,mem_app_handshake_flag 
-0x668b 019534 call app_lpm_mult_enable 
-0x668c 019535 call app_bt_store_reconn_info 
-0x668d 019536 jam mouse_mode_state_bt ,mem_mouse_mode_state 
-0x668e 019537 setarg 0 
-0x668f 019538 store 2 ,mem_discovery_timeout_timer_count 
-0x6690 019539 store 1 ,mem_hid_handshake_timer_count 
-0x6691 019540 call app_bt_enter_sniff 
-0x6692 019541 branch mouse_send_blank_packet_timer_init 
-:      019543 mouse_check_reconn_target:
-0x6693 019544 fetch 1 ,mem_xrecord_mode 
-0x6694 019545 beq rec_3_mode ,mouse3_0_check_reconn_target 
-0x6695 019546 beq rec_4_mode ,mouse4_0_check_reconn_target 
-0x6696 019547 branch mouse_start_discovery 
-:      019549 mouse_start_discovery:
-0x6697 019550 set0 mark_ext_patch ,mark 
-0x6698 019551 bpatch patch19_0 ,mem_patch19 
-0x6699 019552 fetch 1 ,mem_le_lap 
-0x669a 019553 increase 1 ,pdata 
-0x669b 019554 store 1 ,mem_le_lap 
-0x669c 019555 call app_lpm_mult_disable 
-0x669d 019556 fetch 2 ,mem_discovery_timeout 
-0x669e 019557 store 2 ,mem_mouse_discovery_timer 
-0x669f 019558 fetch 1 ,mem_device_option 
-0x66a0 019559 isolate1 mode_4_mouse ,pdata 
-0x66a1 019560 call app_ble_start_adv ,true 
-0x66a2 019561 fetch 1 ,mem_device_option 
-0x66a3 019562 isolate1 mode_3_mouse ,pdata 
-0x66a4 019563 call app_bt_start_discovery ,true 
-0x66a5 019564 branch app_led_start_blink 
-:      019566 mouse_stop_discovery:
-0x66a6 019567 set0 mark_ext_patch ,mark 
-0x66a7 019568 bpatch patch19_1 ,mem_patch19 
-0x66a8 019569 setarg 0 
-0x66a9 019570 store 2 ,mem_mouse_discovery_timer 
-0x66aa 019571 fetch 1 ,mem_device_option 
-0x66ab 019572 isolate1 mode_4_mouse ,pdata 
-0x66ac 019573 call app_ble_stop_adv ,true 
-0x66ad 019574 fetch 1 ,mem_device_option 
-0x66ae 019575 isolate1 mode_3_mouse ,pdata 
-0x66af 019576 call app_bt_stop_discovery ,true 
-0x66b0 019577 branch app_led_stop_blink 
-:      019579 mouse_disconnect:
-0x66b1 019580 set0 mark_ext_patch ,mark 
-0x66b2 019581 bpatch patch19_2 ,mem_patch19 
-0x66b3 019582 setarg 0 
-0x66b4 019583 store 2 ,mem_mouse_no_data_timer 
-0x66b5 019584 fetch 2 ,mem_ui_state_map 
-0x66b6 019585 bbit1 ui_state_ble_connected ,app_ble_disconnect 
-0x66b7 019586 fetch 2 ,mem_ui_state_map 
-0x66b8 019587 bbit1 ui_state_bt_connected ,app_bt_disconnect 
-0x66b9 019588 rtn 
-:      019590 eeprom_store_mouse_dpi:
-0x66ba 019591 set0 mark_ext_patch ,mark 
-0x66bb 019592 bpatch patch19_3 ,mem_patch19 
-0x66bc 019593 arg 1 ,temp 
-0x66bd 019594 arg mem_mouse_dpi ,rega 
-0x66be 019595 arg mouse_dpi_eeprom_addr ,regb 
-0x66bf 019596 branch iicd_write_eep_data 
-:      019598 eeprom_load_mouse_dpi:
-0x66c0 019599 set0 mark_ext_patch ,mark 
-0x66c1 019600 bpatch patch19_4 ,mem_patch19 
-0x66c2 019601 arg 1 ,temp 
-0x66c3 019602 arg mem_mouse_dpi ,rega 
-0x66c4 019603 arg mouse_dpi_eeprom_addr ,regb 
-0x66c5 019604 branch iicd_read_eep_data 
-:      019612 twspi_reset:
-0x66c6 019613 set0 mark_ext_patch ,mark 
-0x66c7 019614 bpatch patch1f_6 ,mem_patch1f 
-0x66c8 019615 hfetch 1 ,core_gpio_oe3 
-0x66c9 019616 arg 0x06 ,temp 
-0x66ca 019617 ior temp ,pdata 
-0x66cb 019618 hstore 1 ,core_gpio_oe3 
-0x66cc 019619 hfetch 1 ,core_gpio_out3 
-0x66cd 019620 ior temp ,pdata 
-0x66ce 019621 hstore 1 ,core_gpio_out3 
-0x66cf 019622 hjam 0 ,core_gpio_sel1 
-0x66d0 019623 hfetch 1 ,core_gpio_out3 
-0x66d1 019624 set0 1 ,pdata 
-0x66d2 019625 set0 2 ,pdata 
-0x66d3 019626 hstore 1 ,core_gpio_out3 
-0x66d4 019627 nop 30 
-0x66d5 019628 hjam 1 ,core_gpio_sel1 
-0x66d6 019629 rtn 
-:      019630 twspi_write:
-0x66d7 019631 branch spid_write_reg 
-:      019633 twspi_read:
-0x66d8 019634 branch spid_read_reg 
-:      019641 read_function_aes:
-0x66d9 019642 nbranch read_function ,user 
-0x66da 019643 hfetch 1 ,core_gpio_key2 
-0x66db 019644 or_into 0x20 ,pdata 
-0x66dc 019645 hstore 1 ,core_gpio_key2 
-:      019646 read_function:
-0x66dd 019647 copy temp ,null 
-0x66de 019648 branch read_fuction_zero ,zero 
-0x66df 019649 copy regc ,pc 
-:      019650 read_fuction_zero:
-0x66e0 019651 isolate0 0 ,null 
-0x66e1 019652 branch set_ucode_status 
-:      019655 get_block_header:
-0x66e2 019656 force 4 ,temp 
-:      019657 get_block_header0:
-0x66e3 019658 arg mem_ucode_buf ,rega 
-0x66e4 019659 hfetch 1 ,core_gpio_key2 
-0x66e5 019660 and_into 0xdf ,pdata 
-0x66e6 019661 hstore 1 ,core_gpio_key2 
-0x66e7 019662 call read_function 
-0x66e8 019663 arg 0x55aa ,rega 
-0x66e9 019664 fetch 2 ,mem_ucode_buf 
-0x66ea 019665 ifetcht 2 ,contr 
-0x66eb 019666 isub rega ,null 
-0x66ec 019667 rtn 
-:      019669 read_first_block:
-0x66ed 019670 arg 2 ,temp 
-0x66ee 019671 arg mem_ucode_ptr ,rega 
-0x66ef 019672 call read_function 
-0x66f0 019673 fetch 2 ,mem_ucode_ptr 
-0x66f1 019674 store 2 ,mem_addr_mi 
-0x66f2 019675 call get_iv ,user 
-0x66f3 019676 rtn 
-:      019678 get_iv:
-0x66f4 019679 arg 16 ,temp 
-0x66f5 019680 arg mem_ucode_keybuf ,rega 
-0x66f6 019681 hfetch 1 ,core_gpio_key2 
-0x66f7 019682 and_into 0xdf ,pdata 
-0x66f8 019683 hstore 1 ,core_gpio_key2 
-0x66f9 019684 call read_function 
-0x66fa 019685 arg mem_ucode_keybuf ,contr 
-0x66fb 019686 arg 16 ,loopcnt 
-0x66fc 019687 call aes_load_data 
-0x66fd 019688 call aes_init 
-0x66fe 019689 call aes_clear_data 
-0x66ff 019690 branch do_aes_cbc 
-:      019692 load_storage:
-0x6700 019693 disable match 
-0x6701 019694 call get_block_header 
-0x6702 019695 nrtn zero 
-0x6703 019696 enable match 
-0x6704 019697 hjam 0x80 ,core_ucode_ctrl 
-0x6705 019698 hjam 0 ,core_ucode_hi 
-0x6706 019699 hjam 0 ,core_ucode_low 
-0x6707 019700 arg core_ucode_data ,rega 
-0x6708 019701 call read_function_aes 
-0x6709 019702 hjam 0x0 ,core_ucode_ctrl 
-0x670a 019703 call get_block_header 
-0x670b 019704 nrtn zero 
-0x670c 019705 force 0 ,pdata 
-0x670d 019706 hstore 2 ,core_docd_paddr 
-0x670e 019707 arg core_docd_pdata ,rega 
-0x670f 019708 call read_function_aes 
-:      019709 load_storage_loop:
-0x6710 019710 arg 6 ,temp 
-0x6711 019711 call get_block_header0 
-0x6712 019712 nrtn zero 
-0x6713 019713 ifetch 2 ,contr 
-0x6714 019714 iforce rega 
-0x6715 019715 call read_function 
-0x6716 019716 branch load_storage_loop 
-:      019722 reload_eeprom:
-0x6717 019723 call clean_mem 
-0x6718 019724 setarg 0x1000 
-0x6719 019725 store 2 ,mem_addr_mi 
-0x671a 019726 arg iicd_read_eep ,regc 
-0x671b 019727 arg 2 ,loopcnt 
-:      019728 reload_eeprom_loop:
-0x671c 019729 call get_block_header 
-0x671d 019730 nrtn zero 
-0x671e 019731 fetch 2 ,mem_addr_mi 
-0x671f 019732 byteswap pdata ,pdata 
-0x6720 019733 iadd temp ,pdata 
-0x6721 019734 byteswap pdata ,pdata 
-0x6722 019735 store 2 ,mem_addr_mi 
-0x6723 019736 loop reload_eeprom_loop 
-0x6724 019737 branch load_storage_loop 
-:      019739 loadcode:
-0x6725 019740 hjam 0x25 ,core_clkoff 
-0x6726 019741 hjam 5 ,core_docd_ctrl 
-0x6727 019742 call clean_mem 
-:      019743 loadcode_lpm:
-0x6728 019744 disable user 
-0x6729 019745 call otp_enable_chgpump 
-0x672a 019746 setarg otp_ucode_flag 
-0x672b 019747 arg mem_otp_ucode_flag ,rega 
-0x672c 019748 arg 2 ,temp 
-0x672d 019749 call otpd_read_data 
-0x672e 019750 fetch 2 ,mem_otp_ucode_flag 
-0x672f 019751 bbit0 otp_uflag_aes ,loadcode_otp 
-0x6730 019752 setarg otp_ucode_aeskey 
-0x6731 019753 arg mem_ucode_keybuf ,rega 
-0x6732 019754 arg 16 ,temp 
-0x6733 019755 call otpd_read_data 
-0x6734 019756 hjam lock_otp ,core_misc_ctrl 
-0x6735 019757 arg mem_ucode_keybuf ,contr 
-0x6736 019758 call load_key 
-0x6737 019759 enable user 
-:      019760 loadcode_otp:
-0x6738 019761 fetch 2 ,mem_otp_ucode_flag 
-0x6739 019762 byteswap pdata ,pdata 
-0x673a 019763 arg 0x7ff ,temp 
-0x673b 019764 iand temp ,pdata 
-0x673c 019765 branch loadcode_spi ,zero 
-0x673d 019766 call otp_set_addr 
-0x673e 019767 arg otpd_read_code ,regc 
-0x673f 019768 call get_iv ,user 
-0x6740 019769 call load_storage 
-0x6741 019770 fetch 1 ,mem_ucode_status 
-0x6742 019771 compare 3 ,pdata ,3 
-0x6743 019772 nbranch loadcode_otp ,true 
-:      019773 loadcode_spi:
-0x6744 019774 call otp_disable_chgpump 
-0x6745 019775 fetch 1 ,mem_otp_ucode_flag 
-0x6746 019776 bbit1 otp_uflag_skip_flash ,loadcode_iic 
-0x6747 019777 setarg 0x0 
-0x6748 019778 store 3 ,mem_addr_hi 
-0x6749 019779 call spid_init_flash 
-0x674a 019780 arg spid_read_flash ,regc 
-0x674b 019781 call read_first_block 
-0x674c 019782 call load_storage 
-0x674d 019783 nbranch loadcode_iic ,match 
-0x674e 019784 fetch 1 ,mem_ucode_status 
-0x674f 019785 compare 3 ,pdata ,3 
-0x6750 019786 nbranch loadcode_spi ,true 
-:      019787 loadcode_iic:
-0x6751 019788 fetch 1 ,mem_otp_ucode_flag 
-0x6752 019789 bbit1 otp_uflag_skip_eep ,loadcode_hci 
-0x6753 019790 setarg 0x0 
-0x6754 019791 store 2 ,mem_addr_mi 
-0x6755 019792 arg iicd_read_eep ,regc 
-0x6756 019793 call iicd_init_12m 
-0x6757 019794 call read_first_block 
-0x6758 019795 call load_storage 
-0x6759 019796 nbranch loadcode_hci ,match 
-0x675a 019797 fetch 1 ,mem_ucode_status 
-0x675b 019798 compare 3 ,pdata ,3 
-0x675c 019799 nbranch loadcode_iic ,true 
-:      019800 loadcode_hci:
-0x675d 019801 hjam 0x21 ,core_clkoff 
-0x675e 019802 fetch 1 ,mem_otp_ucode_flag 
-0x675f 019803 rtnbit0 otp_uflag_hci 
-0x6760 019804 call hci_init 
-:      019805 loadcode_hci_loop:
-0x6761 019806 call hci_rx_packet 
-0x6762 019807 branch loadcode_hci_loop 
-:      019810 set_ucode_status:
-0x6763 019811 fetch 1 ,mem_ucode_status 
-0x6764 019812 lshift pdata ,pdata 
-0x6765 019813 setflag true ,0 ,pdata 
-0x6766 019814 isolate0 15 ,rega 
-0x6767 019815 rtn true 
-0x6768 019816 store 1 ,mem_ucode_status 
-0x6769 019817 rtn 
-:      019820 decrypt_code:
-0x676a 019821 hfetch 1 ,core_gpio_key2 
-0x676b 019822 rtnbit0 5 
-0x676c 019823 branch decrypt_code_skip 
-:      019824 decrypt_code_loop:
-0x676d 019825 hfetch 1 ,core_dma_status 
-0x676e 019826 qisolate1 pdata 
-0x676f 019827 rtn true 
-:      019828 decrypt_code_skip:
-0x6770 019829 hfetch 1 ,core_misc_status 
-0x6771 019830 bbit0 1 ,decrypt_code_loop 
-0x6772 019831 call do_aes_cbc 
-0x6773 019832 branch decrypt_code_loop 
-:      019836 save_ucode:
-0x6774 019837 copy loopcnt ,temp 
-0x6775 019838 storet 2 ,mem_patch_len 
-0x6776 019839 hjam 0x80 ,core_ucode_ctrl 
-0x6777 019840 hjam 0 ,core_ucode_hi 
-0x6778 019841 hjam 0 ,core_ucode_low 
-0x6779 019842 store 2 ,mem_patch_ptr 
-0x677a 019843 iforce contw 
-0x677b 019844 lshift2 loopcnt ,loopcnt 
-:      019845 save_ucode_loop:
-0x677c 019846 hfetch 1 ,core_ucode_data 
-0x677d 019847 istore 1 ,contw 
-0x677e 019848 loop save_ucode_loop 
-0x677f 019849 hjam 0x0 ,core_ucode_ctrl 
-0x6780 019850 rtn 
-:      019852 load_ucode:
-0x6781 019853 fetch 2 ,mem_patch_ptr 
-0x6782 019854 rtn blank 
-0x6783 019855 hjam 0x80 ,core_ucode_ctrl 
-0x6784 019856 hjam 0 ,core_ucode_hi 
-0x6785 019857 hjam 0 ,core_ucode_low 
-0x6786 019858 fetcht 2 ,mem_patch_len 
-0x6787 019859 lshift2 temp ,loopcnt 
-0x6788 019860 iforce contr 
-:      019861 load_ucode_loop:
-0x6789 019862 ifetch 1 ,contr 
-0x678a 019863 hstore 1 ,core_ucode_data 
-0x678b 019864 loop load_ucode_loop 
-0x678c 019865 hjam 0x0 ,core_ucode_ctrl 
-0x678d 019866 rtn 
-:      019871 spid_init:
-0x678e 019872 set0 mark_ext_patch ,mark 
-0x678f 019873 bpatch patch1f_7 ,mem_patch1f 
-0x6790 019874 hjam 0x75 ,core_spid_ctrl 
-0x6791 019875 hjam 10 ,core_spid_delay 
-0x6792 019876 setarg mem_spid_tbuf 
-0x6793 019877 hstore 2 ,core_spid_txaddr 
-0x6794 019878 setarg mem_spid_rbuf 
-0x6795 019879 hstore 2 ,core_spid_rxaddr 
-0x6796 019880 hfetch 1 ,core_gpio_sel1 
-0x6797 019881 set1 0 ,pdata 
-0x6798 019882 set0 1 ,pdata 
-0x6799 019883 hstore 1 ,core_gpio_sel1 
-0x679a 019884 rtn 
-:      019886 spid_reset:
-0x679b 019887 hfetch 1 ,core_spid_ctrl 
-0x679c 019888 set1 7 ,pdata 
-0x679d 019889 hstore 1 ,core_spid_ctrl 
-0x679e 019890 set0 7 ,pdata 
-0x679f 019891 hstore 1 ,core_spid_ctrl 
-0x67a0 019892 rtn 
-:      019896 spid_write_reg:
-0x67a1 019897 set1 7 ,pdata 
-0x67a2 019898 store 2 ,mem_spid_tbuf 
-0x67a3 019899 set1 mark_ext_patch ,mark 
-0x67a4 019900 bpatch patch20_0 ,mem_patch20 
-0x67a5 019901 hjam 2 ,core_spid_txlen 
-0x67a6 019902 hjam 0 ,core_spid_rxlen 
-0x67a7 019903 hjam spid_start ,core_misc_ctrl 
-0x67a8 019904 branch wait_spid_done 
-:      019907 spid_read_reg:
-0x67a9 019908 force 1 ,temp 
-:      019910 spid_read_regs:
-0x67aa 019912 store 1 ,mem_spid_tbuf 
-0x67ab 019913 set1 mark_ext_patch ,mark 
-0x67ac 019914 bpatch patch20_1 ,mem_patch20 
-0x67ad 019915 hjam 1 ,core_spid_txlen 
-0x67ae 019916 hstoret 2 ,core_spid_rxlen 
-0x67af 019917 hjam spid_start ,core_misc_ctrl 
-0x67b0 019918 call wait_spid_done 
-0x67b1 019919 fetch 1 ,mem_spid_rbuf 
-0x67b2 019920 rtn 
-:      019922 wait_spid_done:
-0x67b3 019923 fetch 2 ,mem_afh_error_total 
-0x67b4 019924 increase 1 ,pdata 
-0x67b5 019925 store 2 ,mem_afh_error_total 
-0x67b6 019926 hfetch 1 ,core_dma_status 
-0x67b7 019927 bbit0 spid_done ,wait_spid_done 
-0x67b8 019928 rtn 
-:      019930 spid_init_flash:
-0x67b9 019931 hjam 0x40 ,core_spid_ctrl 
-0x67ba 019932 hjam 0x0 ,core_spid_delay 
-0x67bb 019933 hfetch 1 ,core_gpio_sel1 
-0x67bc 019934 set0 0 ,pdata 
-0x67bd 019935 set1 1 ,pdata 
-0x67be 019936 hstore 1 ,core_gpio_sel1 
-0x67bf 019937 setarg 0 
-0x67c0 019938 store 4 ,mem_spid_tbuf 
-0x67c1 019939 rtn 
-:      019941 spid_unlock_flash:
-0x67c2 019942 setarg 0 
-0x67c3 019943 hstore 2 ,core_spid_rxlen 
-0x67c4 019944 setarg 1 
-0x67c5 019945 hstore 1 ,core_spid_txlen 
-0x67c6 019946 setarg mem_spid_tbuf 
-0x67c7 019947 hstore 2 ,core_spid_txaddr 
-0x67c8 019948 jam 6 ,mem_spid_tbuf 
-0x67c9 019949 hjam spid_start ,core_misc_ctrl 
-0x67ca 019950 branch wait_spid_done 
-:      019954 spid_write_flash:
-0x67cb 019955 increase 4 ,temp 
-0x67cc 019956 hstoret 2 ,core_spid_txlen 
-0x67cd 019957 increase -4 ,rega 
-0x67ce 019958 arg 2 ,temp 
-0x67cf 019959 istoret 1 ,rega 
-0x67d0 019960 rshift16 pdata ,temp 
-0x67d1 019961 istoret 1 ,contw 
-0x67d2 019962 rshift8 pdata ,temp 
-0x67d3 019963 istoret 1 ,contw 
-0x67d4 019964 istore 1 ,contw 
-0x67d5 019965 deposit rega 
-0x67d6 019966 hstore 2 ,core_spid_txaddr 
-0x67d7 019967 setarg 0 
-0x67d8 019968 hstore 2 ,core_spid_rxlen 
-0x67d9 019969 hjam spid_start ,core_misc_ctrl 
-0x67da 019970 branch wait_spid_done 
-:      019974 spid_read_flash:
-0x67db 019975 hstoret 2 ,core_spid_rxlen 
-0x67dc 019976 setarg 4 
-0x67dd 019977 hstore 2 ,core_spid_txlen 
-0x67de 019978 jam 3 ,mem_spid_tbuf 
-0x67df 019979 setarg mem_spid_tbuf 
-0x67e0 019980 hstore 2 ,core_spid_txaddr 
-0x67e1 019981 deposit rega 
-0x67e2 019982 hstore 2 ,core_spid_rxaddr 
-0x67e3 019983 hfetch 1 ,core_spid_ctrl 
-0x67e4 019984 isolate0 15 ,rega 
-0x67e5 019985 setflag true ,6 ,pdata 
-0x67e6 019986 hstore 1 ,core_spid_ctrl 
-0x67e7 019987 hjam spid_start ,core_misc_ctrl 
-:      019988 spi_read_flash_wait:
-0x67e8 019989 hfetch 1 ,core_dma_status 
-0x67e9 019990 bbit1 7 ,spi_read_flash_wait 
-0x67ea 019991 arg spid_done ,queue 
-0x67eb 019992 call decrypt_code 
-0x67ec 019993 call wait_spid_done 
-0x67ed 019994 isolate1 spid_crcok ,pdata 
-0x67ee 019995 call set_ucode_status 
-0x67ef 019996 fetch 1 ,mem_addr_hi 
-0x67f0 019997 lshift16 pdata ,regb 
-0x67f1 019998 fetch 1 ,mem_addr_mi 
-0x67f2 019999 lshift8 pdata ,pdata 
-0x67f3 020000 ior regb ,regb 
-0x67f4 020001 fetch 1 ,mem_addr_lo 
-0x67f5 020002 ior regb ,pdata 
-0x67f6 020003 iadd temp ,pdata 
-0x67f7 020004 store 1 ,mem_addr_lo 
-0x67f8 020005 rshift8 pdata ,pdata 
-0x67f9 020006 store 1 ,mem_addr_mi 
-0x67fa 020007 rshift8 pdata ,pdata 
-0x67fb 020008 store 1 ,mem_addr_hi 
-0x67fc 020009 rtn 
-:      020013 iicd_init_5m:
-0x67fd 020014 hjam 0xa ,core_clksel 
-0x67fe 020015 hjam 2 ,core_iicd_scl_low 
-0x67ff 020016 hjam 3 ,core_iicd_scl_high 
-0x6800 020017 hjam 3 ,core_iicd_start_setup 
-0x6801 020018 hjam 3 ,core_iicd_start_hold 
-0x6802 020019 hjam 3 ,core_iicd_stop_setup 
-0x6803 020020 hjam 2 ,core_iicd_data_setup 
-0x6804 020021 rtn 
-:      020023 iicd_init_12m:
-0x6805 020024 hjam 5 ,core_iicd_scl_low 
-0x6806 020025 hjam 7 ,core_iicd_scl_high 
-0x6807 020026 hjam 7 ,core_iicd_start_setup 
-0x6808 020027 hjam 7 ,core_iicd_start_hold 
-0x6809 020028 hjam 7 ,core_iicd_stop_setup 
-0x680a 020029 hjam 5 ,core_iicd_data_setup 
-0x680b 020030 rtn 
-:      020034 wait_iicd_done:
-0x680c 020035 hfetch 1 ,core_dma_status 
-0x680d 020036 bbit0 iicd_done ,wait_iicd_done 
-0x680e 020037 rtn 
-:      020040 iicd_read_data:
-0x680f 020041 store 1 ,mem_iicd_tbuf 
-0x6810 020042 setarg mem_iicd_tbuf 
-0x6811 020043 hstore 2 ,core_iicd_txaddr 
-0x6812 020044 setarg 1 
-0x6813 020045 hstore 2 ,core_iicd_txlen 
-0x6814 020046 hstoret 2 ,core_iicd_rxlen 
-0x6815 020047 deposit rega 
-0x6816 020048 hstore 2 ,core_iicd_rxaddr 
-0x6817 020049 hjam 1 ,core_iicd_ctrl 
-0x6818 020050 hjam iicd_start ,core_misc_ctrl 
-0x6819 020051 branch wait_iicd_done 
-:      020053 byteswap_addr_mi:
-0x681a 020054 byteswap pdata ,pdata 
-0x681b 020055 store 2 ,mem_addr_mi 
-0x681c 020056 rtn 
-:      020062 iicd_read_eep_data:
-0x681d 020063 set1 mark_ext_patch ,mark 
-0x681e 020064 bpatch patch20_2 ,mem_patch20 
-0x681f 020065 fetch 2 ,mem_eeprom_base 
-0x6820 020066 iadd regb ,pdata 
-:      020069 iicd_read_eep_adr:
-0x6821 020070 byteswap pdata ,pdata 
-0x6822 020071 store 2 ,mem_addr_mi 
-:      020074 iicd_read_eep:
-0x6823 020075 set1 mark_ext_patch ,mark 
-0x6824 020076 bpatch patch20_3 ,mem_patch20 
-0x6825 020077 setarg 4 
-0x6826 020078 hstore 2 ,core_iicd_txlen 
-0x6827 020079 jam 0xa0 ,mem_iicd_tbuf 
-0x6828 020080 jam 0xa1 ,mem_iicd_tbuf + 3 
-0x6829 020081 setarg mem_iicd_tbuf 
-0x682a 020082 hstore 2 ,core_iicd_txaddr 
-0x682b 020083 hstoret 2 ,core_iicd_rxlen 
-0x682c 020084 deposit rega 
-0x682d 020085 hstore 2 ,core_iicd_rxaddr 
-0x682e 020086 setarg 2 
-0x682f 020087 isolate0 15 ,rega 
-0x6830 020088 setflag true ,0 ,pdata 
-0x6831 020089 hstore 1 ,core_iicd_ctrl 
-0x6832 020090 hjam iicd_start ,core_misc_ctrl 
-0x6833 020091 arg iicd_done ,queue 
-0x6834 020092 call decrypt_code 
-0x6835 020093 call wait_iicd_done 
-0x6836 020094 isolate1 iicd_crcok ,pdata 
-0x6837 020095 call set_ucode_status 
-0x6838 020096 fetch 2 ,mem_addr_mi 
-0x6839 020097 byteswap pdata ,pdata 
-0x683a 020098 iadd temp ,pdata 
-0x683b 020099 byteswap pdata ,pdata 
-0x683c 020100 store 2 ,mem_addr_mi 
-0x683d 020101 rtn 
-:      020107 iicd_write_eep_data:
-0x683e 020108 set1 mark_ext_patch ,mark 
-0x683f 020109 bpatch patch20_4 ,mem_patch20 
-0x6840 020110 fetch 2 ,mem_eeprom_base 
-0x6841 020111 iadd regb ,pdata 
-:      020114 iicd_write_ota_data:
-0x6842 020115 store 2 ,mem_pdatatemp 
-0x6843 020116 set1 mark_ext_patch ,mark 
-0x6844 020117 bpatch patch20_5 ,mem_patch20 
-0x6845 020118 storet 2 ,mem_temp 
-0x6846 020119 copy rega ,pdata 
-0x6847 020120 store 2 ,mem_contr 
-:      020121 iicd_write_eep_loop:
-0x6848 020122 call iicd_eep_transparency 
-0x6849 020124 fetcht 2 ,mem_regb 
-0x684a 020125 fetch 2 ,mem_contr 
-0x684b 020126 copy pdata ,rega 
-0x684c 020127 fetch 2 ,mem_pdatatemp 
-0x684d 020129 call iicd_write_eep 
-0x684e 020131 fetch 2 ,mem_regb 
-0x684f 020132 fetcht 2 ,mem_contr 
-0x6850 020133 iadd temp ,temp 
-0x6851 020134 storet 2 ,mem_contr 
-0x6852 020135 fetcht 2 ,mem_pdatatemp 
-0x6853 020136 iadd temp ,temp 
-0x6854 020137 storet 2 ,mem_pdatatemp 
-0x6855 020138 fetch 2 ,mem_temp 
-0x6856 020139 nbranch iicd_write_eep_loop ,blank 
-0x6857 020140 rtn 
-:      020148 iicd_eep_transparency:
-0x6858 020149 set1 mark_ext_patch ,mark 
-0x6859 020150 bpatch patch20_6 ,mem_patch20 
-0x685a 020151 fetch 2 ,mem_eeprom_block_size 
-0x685b 020152 increase -1 ,pdata 
-0x685c 020153 fetcht 2 ,mem_pdatatemp 
-0x685d 020154 ior temp ,pdata 
-0x685e 020155 increase 1 ,pdata 
-0x685f 020156 store 3 ,mem_regc 
-0x6860 020158 fetch 2 ,mem_temp 
-0x6861 020159 iadd temp ,pdata 
-0x6862 020161 fetcht 3 ,mem_regc 
-0x6863 020162 isub temp ,pdata 
-0x6864 020163 nbranch iicd_eep_deal_short_packet ,positive 
-0x6865 020164 store 2 ,mem_temp 
-0x6866 020165 fetch 3 ,mem_regc 
-0x6867 020166 fetcht 2 ,mem_pdatatemp 
-0x6868 020167 isub temp ,pdata 
-0x6869 020168 store 2 ,mem_regb 
-0x686a 020169 rtn 
-:      020170 iicd_eep_deal_short_packet:
-0x686b 020171 fetch 2 ,mem_temp 
-0x686c 020172 store 2 ,mem_regb 
-0x686d 020173 setarg 0 
-0x686e 020174 store 2 ,mem_temp 
-0x686f 020175 rtn 
-:      020180 iicd_write_eep:
-0x6870 020181 copy pdata ,regb 
-0x6871 020182 set1 mark_ext_patch ,mark 
-0x6872 020183 bpatch patch20_7 ,mem_patch20 
-0x6873 020184 copy regb ,pdata 
-0x6874 020185 increase 3 ,temp 
-0x6875 020186 hstoret 2 ,core_iicd_txlen 
-0x6876 020187 increase -3 ,rega 
-0x6877 020188 ifetcht 3 ,rega 
-0x6878 020189 copy temp ,regb 
-0x6879 020190 arg 0xa0 ,temp 
-0x687a 020191 istoret 1 ,rega 
-0x687b 020192 byteswap pdata ,pdata 
-0x687c 020193 istore 2 ,contw 
-0x687d 020194 deposit rega 
-0x687e 020195 hstore 2 ,core_iicd_txaddr 
-0x687f 020196 setarg 0 
-0x6880 020197 hstore 2 ,core_iicd_rxlen 
-0x6881 020198 hjam 1 ,core_iicd_ctrl 
-0x6882 020199 hjam iicd_start ,core_misc_ctrl 
-0x6883 020200 call wait_iicd_done 
-0x6884 020201 copy regb ,pdata 
-0x6885 020202 istore 3 ,rega 
-0x6886 020203 nop 10000 
-0x6887 020204 nop 10000 
-0x6888 020205 nop 10000 
-0x6889 020206 rtn 
-:      020210 otp_enable_chgpump:
-0x688a 020211 hjam 0x70 ,rfen_chgpump 
-0x688b 020212 nop param_chgpump_delay 
-0x688c 020213 rtn 
-:      020215 otp_disable_chgpump:
-0x688d 020216 hjam 0x30 ,rfen_chgpump 
-0x688e 020217 rtn 
-:      020219 otp_set_addr:
-0x688f 020220 lshift3 pdata ,pdata 
-0x6890 020221 hstore 2 ,core_otp_addr 
-0x6891 020222 hjam 0 ,core_otpd_ctrl 
-0x6892 020223 rtn 
-:      020226 otp_write:
-0x6893 020227 call otp_set_addr 
-0x6894 020228 call otp_ce 
-:      020229 otp_program:
-0x6895 020230 ifetcht 1 ,rega 
-0x6896 020231 increase 1 ,rega 
-0x6897 020232 force 0 ,queue 
-:      020233 otp_program_bit:
-0x6898 020234 qisolate0 temp 
-0x6899 020235 branch otp_skip_0 ,true 
-0x689a 020236 hfetch 1 ,core_otp_din 
-0x689b 020237 set1 6 ,pdata 
-0x689c 020238 set1 7 ,pdata 
-0x689d 020239 hstore 1 ,core_otp_din 
-0x689e 020240 hjam 0x02 ,core_otp_ctrl 
-0x689f 020241 hjam 0x82 ,core_otp_ctrl 
-0x68a0 020242 set0 7 ,pdata 
-0x68a1 020243 hstore 1 ,core_otp_din 
-0x68a2 020244 hjam 0x8a ,core_otp_ctrl 
-0x68a3 020245 nop 11 
-0x68a4 020246 hjam 0xca ,core_otp_ctrl 
-0x68a5 020247 nop 33 
-0x68a6 020248 hjam 0x4a ,core_otp_ctrl 
-0x68a7 020249 nop 44 
-0x68a8 020250 hjam 0xca ,core_otp_ctrl 
-0x68a9 020251 nop 22 
-0x68aa 020252 hjam 0x8a ,core_otp_ctrl 
-0x68ab 020253 nop 33 
-0x68ac 020254 hjam 0x82 ,core_otp_ctrl 
-0x68ad 020255 nop 1 
-0x68ae 020256 hjam 0x92 ,core_otp_ctrl 
-0x68af 020257 nop 10 
-0x68b0 020258 hjam 0xb2 ,core_otp_ctrl 
-0x68b1 020259 hfetch 1 ,core_otp_rdata 
-0x68b2 020260 hjam 0x92 ,core_otp_ctrl 
-0x68b3 020261 nop 1 
-0x68b4 020262 hjam 0x82 ,core_otp_ctrl 
-0x68b5 020263 qisolate0 pdata 
-0x68b6 020264 branch otp_program_bit ,true 
-:      020265 otp_skip_0:
-0x68b7 020266 hfetch 2 ,core_otp_addr 
-0x68b8 020267 increase 1 ,pdata 
-0x68b9 020268 hstore 2 ,core_otp_addr 
-0x68ba 020269 increase 1 ,queue 
-0x68bb 020270 compare 8 ,queue ,0xf 
-0x68bc 020271 nbranch otp_program_bit ,true 
-0x68bd 020272 loop otp_program 
-0x68be 020273 hjam 0x83 ,core_otp_ctrl 
-0x68bf 020274 rtn 
-:      020276 otp_ce:
-0x68c0 020277 hjam 0x82 ,core_otp_ctrl 
-0x68c1 020278 nop 12 
-0x68c2 020279 hjam 0x80 ,core_otp_ctrl 
-0x68c3 020280 hjam 0x82 ,core_otp_ctrl 
-0x68c4 020281 nop 150 
-0x68c5 020282 rtn 
-:      020285 otpd_read_init:
-0x68c6 020286 call otp_ce 
-:      020287 otpd_read_special:
-0x68c7 020288 hjam 0xa2 ,core_otp_ctrl 
-0x68c8 020289 deposit rega 
-0x68c9 020290 hstore 2 ,core_otpd_addr 
-0x68ca 020291 set1 11 ,temp 
-0x68cb 020292 isolate0 15 ,pdata 
-0x68cc 020293 setflag true ,15 ,temp 
-0x68cd 020294 hstoret 2 ,core_otpd_len 
-0x68ce 020295 hjam otpd_start ,core_misc_ctrl 
-0x68cf 020296 rtn 
-:      020298 otpd_wait_end:
-0x68d0 020299 hfetch 1 ,core_dma_status 
-0x68d1 020300 bbit0 otpd_done ,otpd_wait_end 
-0x68d2 020301 rtn 
-:      020304 otpd_read_data:
-0x68d3 020305 call otp_set_addr 
-0x68d4 020306 call otpd_read_init 
-0x68d5 020307 call otpd_wait_end 
-0x68d6 020308 hjam 0x83 ,core_otp_ctrl 
-0x68d7 020309 rtn 
-:      020314 otpd_read_code:
-0x68d8 020315 hfetch 2 ,core_current_otp_addr 
-0x68d9 020316 hstore 2 ,core_otp_addr 
-0x68da 020317 call otpd_read_init 
-0x68db 020318 arg otpd_done ,queue 
-0x68dc 020319 call decrypt_code 
-0x68dd 020320 call otpd_wait_end 
-0x68de 020321 isolate1 otpd_crcok ,pdata 
-0x68df 020322 call set_ucode_status 
-0x68e0 020323 hjam 0x83 ,core_otp_ctrl 
-0x68e1 020324 rtn 
-:      020327 uartd_rx_cnt_got_first_byte:
-0x68e2 020328 jam 1 ,mem_uartd_rxitems_got_data 
-0x68e3 020329 force uart_rx_timer ,queue 
-0x68e4 020330 fetch 2 ,mem_uartd_rx_timeout 
-0x68e5 020331 branch timer_init 
-:      020332 uartd_rx_cnt_with_threshold:
-0x68e6 020333 hfetch 2 ,core_uart_rxitems 
-0x68e7 020334 rtn blank 
-0x68e8 020335 fetcht 1 ,mem_uartd_rxitems_threshold 
-0x68e9 020336 isub temp ,null 
-0x68ea 020337 branch uartd_rx_cnt_rtn_value ,positive 
-0x68eb 020338 fetch 1 ,mem_uartd_rxitems_got_data 
-0x68ec 020339 branch uartd_rx_cnt_got_first_byte ,blank 
-0x68ed 020340 arg uart_rx_timer ,queue 
-0x68ee 020341 call timer_check 
-0x68ef 020342 branch uartd_rx_cnt_rtn_value ,blank 
-0x68f0 020343 setarg 0 
-0x68f1 020344 rtn 
-:      020345 uartd_rx_cnt_rtn_value:
-0x68f2 020346 force uart_rx_timer ,queue 
-0x68f3 020347 call timer_stop 
-0x68f4 020348 jam 0 ,mem_uartd_rxitems_got_data 
-0x68f5 020349 hfetch 2 ,core_uart_rxitems 
-0x68f6 020350 rtn 
-:      020357 uartd_prepare_tx:
-0x68f7 020358 hfetch 2 ,core_uart_twptr 
-0x68f8 020359 iforce contwu 
-0x68f9 020360 rtn 
-:      020362 uartd_send:
-0x68fa 020363 deposit contwu 
-0x68fb 020364 hstore 2 ,core_uart_twptr 
-0x68fc 020365 rtn 
-:      020367 uartd_prepare_rx:
-0x68fd 020368 hfetch 2 ,core_uart_rxitems 
-0x68fe 020369 rtn blank 
-0x68ff 020370 iforce loopcnt 
-0x6900 020371 hfetch 2 ,core_uart_rrptr 
-0x6901 020372 iforce contru 
-0x6902 020373 rtn 
-:      020376 uartd_rxdone_by_len:
-0x6903 020377 hfetch 2 ,core_uart_rrptr 
-0x6904 020378 iadd temp ,pdata 
-0x6905 020379 copy pdata ,contru 
-:      020380 uartd_rxdone:
-0x6906 020381 deposit contru 
-0x6907 020382 hstore 2 ,core_uart_rrptr 
-0x6908 020383 rtn 
-:      020385 uart_set_baud_by_mem:
-0x6909 020386 fetch uart_baud_len ,mem_baud 
-0x690a 020387 hstore uart_baud_len ,core_uart_baud 
-0x690b 020388 rtn 
-:      020392 eeprom_store_le_reconn_info:
-0x690c 020393 fetch 6 ,mem_le_plap 
-0x690d 020394 store 6 ,mem_temp_lap 
-0x690e 020395 jam rec_4_mode ,mem_record_bt_mode 
-0x690f 020396 branch eeprom_store_reconn_info 
-:      020397 eeprom_store_bd_reconn_info:
-0x6910 020398 fetch 6 ,mem_plap 
-0x6911 020399 store 6 ,mem_temp_lap 
-0x6912 020400 jam rec_3_mode ,mem_record_bt_mode 
-:      020401 eeprom_store_reconn_info:
-0x6913 020402 set1 mark_ext_patch ,mark 
-0x6914 020403 bpatch patch21_0 ,mem_patch21 
-0x6915 020404 call eeprom_store_remote_bdaddr 
-0x6916 020405 call eeprom_store_last_record_index 
-0x6917 020406 fetch 1 ,mem_record_bt_mode 
-0x6918 020407 beq rec_4_mode ,eeprom_store_rec_4_mode 
-0x6919 020408 beq rec_3_mode ,eeprom_store_link_key 
-0x691a 020409 rtn 
-:      020410 eeprom_store_rec_4_mode:
-0x691b 020411 call eeprom_store_le_ltl 
-0x691c 020412 branch eeprom_store_le_local_addr 
-:      020415 eeprom_load_reconn_info:
-0x691d 020416 set1 mark_ext_patch ,mark 
-0x691e 020417 bpatch patch21_1 ,mem_patch21 
-0x691f 020418 call eeprom_load_reconn_bdaddr 
-0x6920 020419 fetch 1 ,mem_select_list_item 
-0x6921 020420 rtneq 0xff 
-0x6922 020421 fetch 6 ,mem_temp_lap 
-0x6923 020422 store 6 ,mem_hci_plap 
-0x6924 020423 fetch 1 ,mem_record_bt_mode 
-0x6925 020424 store 1 ,mem_xrecord_mode 
-0x6926 020425 beq rec_3_mode ,eeprom_load_rec_3_mode 
-0x6927 020426 beq rec_4_mode ,eeprom_load_rec_4_mode 
-0x6928 020427 rtn 
-:      020428 eeprom_load_reconn_bdaddr:
-0x6929 020429 call eeprom_load_last_record_index 
-0x692a 020430 fetch 1 ,mem_select_list_item 
-0x692b 020431 rtneq 0xff 
-0x692c 020432 branch eeprom_load_remote_bdaddr 
-:      020433 eeprom_load_rec_3_mode:
-0x692d 020434 call eeprom_load_link_key 
-0x692e 020435 branch check_link_key_load 
-:      020436 eeprom_load_rec_4_mode:
-0x692f 020437 call eeprom_load_ltk_key 
-0x6930 020438 branch check_ltk_load 
-:      020439 eeprom_clear_bd_reconn_info:
-0x6931 020440 call eeprom_load_bdaddr_list 
-0x6932 020441 disable user 
-0x6933 020442 call find_addr_from_bd_list 
-0x6934 020443 nbranch at_error_rev_end ,user 
-:      020444 eeprom_clear_reconn_info_common:
-0x6935 020445 fetcht 2 ,mem_list_item_ptr 
-0x6936 020446 increase -1 ,temp 
-0x6937 020447 setarg 0 
-0x6938 020448 istore 7 ,temp 
-0x6939 020449 arg 28 ,temp 
-0x693a 020450 arg mem_bdaddr_list_buff + 7 ,rega 
-0x693b 020451 arg eeprom_bdaddr_list ,regb 
-0x693c 020452 branch iicd_write_eep_data 
-:      020454 eeprom_clear_all_reconn_info:
-0x693d 020455 set1 mark_ext_patch ,mark 
-0x693e 020456 bpatch patch21_2 ,mem_patch21 
-0x693f 020457 arg mem_bdaddr_list_buff ,contw 
-0x6940 020458 force 4 ,loopcnt 
-0x6941 020459 call memset0 
-0x6942 020460 arg 28 ,temp 
-0x6943 020461 arg mem_bdaddr_list_buff ,rega 
-0x6944 020462 arg eeprom_bdaddr_list ,regb 
-0x6945 020463 branch iicd_write_eep_data 
-:      020465 eeprom_erase_reconn_info:
-0x6946 020466 set1 mark_ext_patch ,mark 
-0x6947 020467 bpatch patch21_3 ,mem_patch21 
-0x6948 020468 setarg 0x0 
-0x6949 020469 store 3 ,mem_plap 
-0x694a 020470 istore 3 ,contw 
-0x694b 020471 branch eeprom_store_remote_bdaddr 
-:      020473 eeprom_load_last_record_index:
-0x694c 020474 arg 1 ,temp 
-0x694d 020475 arg mem_select_list_item ,rega 
-0x694e 020476 arg eeprom_last_record ,regb 
-0x694f 020477 branch iicd_read_eep_data 
-:      020479 eeprom_store_last_record_index:
-0x6950 020480 arg 1 ,temp 
-0x6951 020481 arg mem_select_list_item ,rega 
-0x6952 020482 arg eeprom_last_record ,regb 
-0x6953 020483 branch iicd_write_eep_data 
-:      020486 eeprom_store_remote_bdaddr:
-0x6954 020487 set1 mark_ext_patch ,mark 
-0x6955 020488 bpatch patch21_4 ,mem_patch21 
-0x6956 020489 call eeprom_load_bdaddr_list 
-0x6957 020490 disable user 
-0x6958 020491 call find_addr_from_bd_list 
-0x6959 020492 rtn user 
-:      020493 eeprom_store_remote_addr_unfind:
-0x695a 020494 jam 0 ,mem_select_list_item 
-0x695b 020495 fetch 6 ,mem_temp_lap 
-0x695c 020496 store 6 ,mem_bdaddr_list_buff + 1 
-0x695d 020497 fetch 1 ,mem_record_bt_mode 
-0x695e 020498 store 1 ,mem_bdaddr_list_buff 
-0x695f 020499 arg 28 ,temp 
-0x6960 020500 arg mem_bdaddr_list_buff ,rega 
-0x6961 020501 arg eeprom_bdaddr_list ,regb 
-0x6962 020502 branch iicd_write_eep_data 
-:      020505 eeprom_store_le_local_addr:
-0x6963 020506 arg 6 ,temp 
-0x6964 020507 arg mem_le_lap ,rega 
-0x6965 020508 arg eeprom_le_reconn_local_addr ,regb 
-0x6966 020509 branch iicd_write_eep_data 
-:      020511 eeprom_load_le_loacal_addr:
-0x6967 020512 arg 6 ,temp 
-0x6968 020513 arg mem_le_lap ,rega 
-0x6969 020514 arg eeprom_le_reconn_local_addr ,regb 
-0x696a 020515 branch iicd_read_eep_data 
-:      020518 eeprom_load_remote_bdaddr:
-0x696b 020519 set1 mark_ext_patch ,mark 
-0x696c 020520 bpatch patch21_5 ,mem_patch21 
-0x696d 020521 arg 7 ,temp 
-0x696e 020522 arg mem_temp_reconn_record ,rega 
-0x696f 020523 arg eeprom_bdaddr_list ,regb 
-0x6970 020524 fetch 1 ,mem_select_list_item 
-0x6971 020525 mul32 pdata ,7 ,pdata 
-0x6972 020526 iadd regb ,regb 
-0x6973 020527 branch iicd_read_eep_data 
-:      020529 eeprom_linkkey_addr:
-0x6974 020530 arg 0x10 ,temp 
-0x6975 020531 arg eeprom_linkkey_list ,regb 
-0x6976 020532 fetch 1 ,mem_select_list_item 
-0x6977 020533 lshift4 pdata ,pdata 
-0x6978 020534 iadd regb ,regb 
-0x6979 020535 rtn 
-:      020537 eeprom_store_le_ltl:
-0x697a 020538 arg mem_le_ltk ,rega 
-0x697b 020539 branch eeprom_store_link_key_common 
-:      020540 eeprom_store_link_key:
-0x697c 020541 arg mem_link_key ,rega 
-:      020542 eeprom_store_link_key_common:
-0x697d 020543 set1 mark_ext_patch ,mark 
-0x697e 020544 bpatch patch21_6 ,mem_patch21 
-0x697f 020545 call eeprom_linkkey_addr 
-0x6980 020546 branch iicd_write_eep_data 
-:      020548 eeprom_load_ltk_key:
-0x6981 020549 arg mem_le_ltk ,rega 
-0x6982 020550 branch eeprom_load_link_key_common 
-:      020551 eeprom_load_link_key:
-0x6983 020552 arg mem_link_key ,rega 
-:      020553 eeprom_load_link_key_common:
-0x6984 020554 set1 mark_ext_patch ,mark 
-0x6985 020555 bpatch patch21_7 ,mem_patch21 
-0x6986 020556 call eeprom_linkkey_addr 
-0x6987 020557 branch iicd_read_eep_data 
-:      020561 eeprom_load_bdaddr_list:
-0x6988 020562 arg 28 ,temp 
-0x6989 020563 arg mem_bdaddr_list_buff + 7 ,rega 
-0x698a 020564 arg eeprom_bdaddr_list ,regb 
-0x698b 020565 branch iicd_read_eep_data 
-:      020567 find_addr_from_bd_list:
-0x698c 020568 set1 mark_ext_patch ,mark 
-0x698d 020569 bpatch patch22_0 ,mem_patch22 
-0x698e 020570 setarg mem_bdaddr_list_buff + 7 
-0x698f 020571 store 2 ,mem_list_item_ptr 
-0x6990 020572 jam 0 ,mem_select_list_item 
-0x6991 020573 arg 4 ,loopcnt 
-:      020574 find_addr_from_list:
-0x6992 020575 copy loopcnt ,pdata 
-0x6993 020576 store 1 ,mem_pdatatemp 
-0x6994 020577 fetch 2 ,mem_list_item_ptr 
-0x6995 020578 copy pdata ,rega 
-0x6996 020579 call find_addr_from_list_compare 
-0x6997 020580 rtn user 
-0x6998 020581 fetch 2 ,mem_list_item_ptr 
-0x6999 020582 increase 7 ,pdata 
-0x699a 020583 store 2 ,mem_list_item_ptr 
-0x699b 020584 fetch 1 ,mem_select_list_item 
-0x699c 020585 increase 1 ,pdata 
-0x699d 020586 store 1 ,mem_select_list_item 
-0x699e 020587 fetch 1 ,mem_pdatatemp 
-0x699f 020588 copy pdata ,loopcnt 
-0x69a0 020589 loop find_addr_from_list 
-0x69a1 020590 rtn 
-:      020592 check_link_key_load:
-0x69a2 020593 fetch 8 ,mem_link_key 
-0x69a3 020594 fetcht 8 ,mem_link_key + 8 
-0x69a4 020595 ior temp ,pdata 
-0x69a5 020596 rtn blank 
-0x69a6 020597 jam 1 ,mem_link_key_exists 
-0x69a7 020598 rtn 
-:      020599 check_ltk_load:
-0x69a8 020600 fetch 6 ,mem_hci_plap 
-0x69a9 020601 rtn blank 
-0x69aa 020602 jam 1 ,mem_ltk_exists 
-0x69ab 020603 rtn 
-:      020605 find_addr_from_list_compare:
-0x69ac 020606 arg mem_temp_reconn_record ,regb 
-0x69ad 020607 arg 7 ,loopcnt 
-0x69ae 020608 call string_compare 
-0x69af 020609 branch enable_usr ,zero 
-0x69b0 020610 rtn 
-:      020611 enable_usr:
-0x69b1 020612 enable user 
-0x69b2 020613 rtn 
-:      020614 le_eeprom_load_reconn_info:
-0x69b3 020615 branch assert 
-:      020622 gpio_set_wake_by_current_state:
-0x69b4 020623 set1 mark_ext_patch ,mark 
-0x69b5 020624 bpatch patch22_1 ,mem_patch22 
-0x69b6 020625 set1 7 ,temp 
-0x69b7 020626 call gpio_get_bit 
-0x69b8 020627 nsetflag true ,7 ,temp 
-:      020632 gpio_set_wake:
-0x69b9 020633 set1 mark_ext_patch ,mark 
-0x69ba 020634 bpatch patch22_2 ,mem_patch22 
-0x69bb 020635 isolate0 7 ,temp 
-0x69bc 020636 and temp ,0x1f ,queue 
-0x69bd 020637 fetch 4 ,mem_gpio_wakeup_low 
-0x69be 020638 qsetflag true ,pdata 
-0x69bf 020639 store 4 ,mem_gpio_wakeup_low 
-0x69c0 020640 fetch 4 ,mem_gpio_wakeup_high 
-0x69c1 020641 nqsetflag true ,pdata 
-0x69c2 020642 store 4 ,mem_gpio_wakeup_high 
-0x69c3 020643 rtn 
-:      020646 gpio_clr_wake:
-0x69c4 020647 set1 mark_ext_patch ,mark 
-0x69c5 020648 bpatch patch22_3 ,mem_patch22 
-0x69c6 020649 isolate0 7 ,temp 
-0x69c7 020650 and temp ,0x1f ,queue 
-0x69c8 020651 fetch 4 ,mem_gpio_wakeup_low 
-0x69c9 020652 qset0 pdata 
-0x69ca 020653 store 4 ,mem_gpio_wakeup_low 
-0x69cb 020654 fetch 4 ,mem_gpio_wakeup_high 
-0x69cc 020655 qset0 pdata 
-0x69cd 020656 store 4 ,mem_gpio_wakeup_high 
-0x69ce 020657 rtn 
-:      020660 gpio_config_input_nowake:
-0x69cf 020661 call gpio_clr_wake 
-0x69d0 020662 branch gpio_config_input_without_wake 
-:      020665 gpio_config_input:
-0x69d1 020666 ncall gpio_set_wake ,wake 
-:      020668 gpio_config_input_without_wake:
-0x69d2 020669 arg core_gpio_pd0 ,contw 
-0x69d3 020670 call gpio_set_bit 
-0x69d4 020671 setflip gpio_active_bit ,temp 
-0x69d5 020672 arg core_gpio_pu0 ,contw 
-0x69d6 020673 call gpio_set_bit 
-0x69d7 020674 set0 gpio_active_bit ,temp 
-0x69d8 020675 arg core_gpio_oe0 ,contw 
-0x69d9 020676 branch gpio_set_bit 
-:      020679 gpio_config_output:
-0x69da 020680 setflip gpio_active_bit ,temp 
-0x69db 020681 call gpio_out 
-0x69dc 020682 set1 gpio_active_bit ,temp 
-0x69dd 020683 arg core_gpio_oe0 ,contw 
-0x69de 020684 branch gpio_set_bit 
-:      020686 gpio_common:
-0x69df 020687 and temp ,0x07 ,queue 
-0x69e0 020688 rshift3 temp ,pdata 
-0x69e1 020689 and_into 3 ,pdata 
-0x69e2 020690 iadd contw ,contw 
-0x69e3 020691 ifetch 1 ,contw 
-0x69e4 020692 rtn 
-:      020696 gpio_get_bit:
-0x69e5 020697 arg core_gpio_in ,contw 
-0x69e6 020698 call gpio_common 
-0x69e7 020699 isolate1 gpio_active_bit ,temp 
-0x69e8 020700 branch gpio_get_bit_reverse ,true 
-0x69e9 020701 qisolate0 pdata 
-0x69ea 020702 rtn 
-:      020703 gpio_get_bit_reverse:
-0x69eb 020704 qisolate1 pdata 
-0x69ec 020705 rtn 
-:      020707 gpio_out_inactive:
-0x69ed 020708 isolate1 7 ,null 
-0x69ee 020709 branch gpio_out_flag 
-:      020711 gpio_out_active:
-0x69ef 020712 isolate0 7 ,null 
-:      020715 gpio_out_flag:
-0x69f0 020716 setarg 0 
-0x69f1 020717 nsetflag true ,gpio_active_bit ,pdata 
-0x69f2 020718 ixor temp ,temp 
-:      020721 gpio_out:
-0x69f3 020722 arg core_gpio_out0 ,contw 
-:      020725 gpio_set_bit:
-0x69f4 020726 call gpio_common 
-0x69f5 020727 isolate1 gpio_active_bit ,temp 
-0x69f6 020728 qsetflag true ,pdata 
-0x69f7 020729 istore 1 ,contw 
-0x69f8 020730 rtn 
-:      020732 gpio_test:
-0x69f9 020733 fetch 1 ,mem_seqi 
-0x69fa 020734 rtneq 0x7f 
-0x69fb 020735 hjam 0 ,core_gpio_out3 
-0x69fc 020736 nop 30 
-0x69fd 020737 hjam 8 ,core_gpio_out3 
-0x69fe 020738 rtn 
-:      020743 set_pwm_blink:
-0x69ff 020744 lshift8 pdata ,pdata 
-0x6a00 020745 lshift4 pdata ,pdata 
-0x6a01 020746 hstore 2 ,core_pwm_ncnt0 
-0x6a02 020747 hstore 2 ,core_pwm_pcnt0 
-0x6a03 020748 rtn 
-:      020750 set_pwm_steadyon:
-0x6a04 020751 setarg 0 
-0x6a05 020752 hstore 2 ,core_pwm_ncnt0 
-0x6a06 020753 setarg 1 
-0x6a07 020754 hstore 2 ,core_pwm_pcnt0 
-0x6a08 020755 rtn 
-:      020757 set_pwm_off:
-0x6a09 020758 setarg 0 
-0x6a0a 020759 hstore 2 ,core_pwm_ncnt0 
-0x6a0b 020760 hstore 2 ,core_pwm_pcnt0 
-0x6a0c 020761 rtn 
-:      020766 init_filter_ram:
-0x6a0d 020767 arg 0x8800 ,contw 
-0x6a0e 020768 arg 0x20 ,loopcnt 
-0x6a0f 020769 call memset0 
-0x6a10 020770 setarg 0x4f9 
-0x6a11 020771 hstore 2 ,0x8848 
-0x6a12 020772 hstore 2 ,0x884a 
-0x6a13 020773 hstore 2 ,0x884c 
-0x6a14 020774 hstore 2 ,0x886c 
-0x6a15 020775 hstore 2 ,0x888c 
-0x6a16 020776 hstore 2 ,0x88ac 
-0x6a17 020777 setarg 0x204 
-0x6a18 020778 hstore 2 ,0x88ae 
-0x6a19 020779 setarg 0x0506 
-0x6a1a 020780 hstore 2 ,0x88b0 
-0x6a1b 020781 setarg 0x0504 
-0x6a1c 020782 hstore 2 ,0x88b2 
-0x6a1d 020783 setarg 0x0200 
-0x6a1e 020784 hstore 2 ,0x88b4 
-0x6a1f 020785 setarg 0xFEFB 
-0x6a20 020786 hstore 2 ,0x88b6 
-0x6a21 020787 setarg 0xFAF9 
-0x6a22 020788 hstore 2 ,0x88b8 
-0x6a23 020789 setarg 0xFAFB 
-0x6a24 020790 hstore 2 ,0x88ba 
-0x6a25 020791 setarg 0xFD00 
-0x6a26 020792 hstore 2 ,0x88bc 
-0x6a27 020793 setarg 0x0408 
-0x6a28 020794 hstore 2 ,0x88be 
-0x6a29 020795 setarg 0x0A0C 
-0x6a2a 020796 hstore 2 ,0x88c0 
-0x6a2b 020797 setarg 0x0B09 
-0x6a2c 020798 hstore 2 ,0x88c2 
-0x6a2d 020799 setarg 0x0500 
-0x6a2e 020800 hstore 2 ,0x88c4 
-0x6a2f 020801 setarg 0xF8F1 
-0x6a30 020802 hstore 2 ,0x88c6 
-0x6a31 020803 setarg 0xECE8 
-0x6a32 020804 hstore 2 ,0x88c8 
-0x6a33 020805 setarg 0xE9EB 
-0x6a34 020806 hstore 2 ,0x88ca 
-0x6a35 020807 setarg 0xF500 
-0x6a36 020808 hstore 2 ,0x88cc 
-0x6a37 020809 setarg 0x1223 
-0x6a38 020810 hstore 2 ,0x88ce 
-0x6a39 020811 setarg 0x374B 
-0x6a3a 020812 hstore 2 ,0x88d0 
-0x6a3b 020813 setarg 0x5E71 
-0x6a3c 020814 hstore 2 ,0x88d2 
-0x6a3d 020815 setarg 0x787F 
-0x6a3e 020816 hstore 2 ,0x88d4 
-0x6a3f 020817 rtn 
-:      020819 enable_pcm:
-0x6a40 020820 set1 mark_ext_patch ,mark 
-0x6a41 020821 bpatch patch22_4 ,mem_patch22 
-0x6a42 020822 hfetch 2 ,core_clkoff 
-0x6a43 020823 set0 clock_off_codec ,pdata 
-0x6a44 020824 hstore 2 ,core_clkoff 
-0x6a45 020825 hjam 0x11 ,core_enc_ctrl 
-0x6a46 020826 hjam 0x1 ,core_cvsd_ctrl 
-0x6a47 020827 hjam 0x1 ,core_codec_ctrl 
-0x6a48 020828 hjam 0x11 ,core_dec_ctrl 
-0x6a49 020829 rtn 
-:      020831 disable_pcm:
-0x6a4a 020832 set1 mark_ext_patch ,mark 
-0x6a4b 020833 bpatch patch22_5 ,mem_patch22 
-0x6a4c 020834 hfetch 2 ,core_clkoff 
-0x6a4d 020835 set1 clock_off_codec ,pdata 
-0x6a4e 020836 hstore 2 ,core_clkoff 
-0x6a4f 020837 hjam 0x4 ,core_enc_ctrl 
-0x6a50 020838 hjam 0x4 ,core_dec_ctrl 
-0x6a51 020839 hjam 0x0 ,core_cvsd_ctrl 
-0x6a52 020840 hjam 0x0 ,core_codec_ctrl 
-0x6a53 020841 rtn 
-:      020845 get_sco_data:
-0x6a54 020846 fetch 1 ,mem_state 
-0x6a55 020847 rtnbit0 state_insco 
-0x6a56 020848 arg mem_sco_obuf ,contw 
-0x6a57 020849 arg 30 ,loopcnt 
-:      020850 get_sco_data_loop:
-0x6a58 020851 hfetch 1 ,core_pcminfifo 
-0x6a59 020852 istore 1 ,contw 
-0x6a5a 020853 loop get_sco_data_loop 
-0x6a5b 020854 rtn 
-:      020857 process_sco_data:
-0x6a5c 020858 fetch 1 ,mem_state 
-0x6a5d 020859 rtnbit0 state_insco 
-0x6a5e 020860 arg mem_sco_ibuf ,contr 
-0x6a5f 020861 force 30 ,loopcnt 
-:      020862 process_sco_loop:
-0x6a60 020863 ifetch 1 ,contr 
-0x6a61 020864 hstore 1 ,core_pcmoutfifo 
-0x6a62 020865 loop process_sco_loop 
-0x6a63 020866 rtn 
-:      020868 init_sched:
-0x6a64 020869 rtn 
-:      020874 gpio_cfg_uart_tx_output:
-0x6a65 020875 call gpio_uart2gpio 
-0x6a66 020876 arg uart_wakeup_tx ,temp 
-0x6a67 020877 branch gpio_config_output 
-:      020879 gpio_pu_uart_tx:
-0x6a68 020880 call gpio_cfg_uart_tx_output 
-0x6a69 020881 arg uart_wakeup_tx ,temp 
-0x6a6a 020882 branch gpio_out_inactive 
-:      020884 gpio_pd_uart_tx:
-0x6a6b 020885 call gpio_cfg_uart_tx_output 
-0x6a6c 020886 arg uart_wakeup_tx ,temp 
-0x6a6d 020887 branch gpio_out_active 
-:      020889 gpio_cfg_uart_rx_output:
-0x6a6e 020890 call gpio_uart2gpio 
-0x6a6f 020891 arg uart_wakeup_rx ,temp 
-0x6a70 020892 branch gpio_config_output 
-:      020894 gpio_pu_uart_rx:
-0x6a71 020895 call gpio_cfg_uart_rx_output 
-0x6a72 020896 arg uart_wakeup_rx ,temp 
-0x6a73 020897 branch gpio_out_inactive 
-:      020899 gpio_pd_uart_rx:
-0x6a74 020900 call gpio_cfg_uart_rx_output 
-0x6a75 020901 arg uart_wakeup_rx ,temp 
-0x6a76 020902 branch gpio_out_active 
-:      020904 gpio_tx_config_input_with_pu:
-0x6a77 020905 call gpio_uart2gpio 
-0x6a78 020906 hfetch 1 ,core_gpio_pu0 
-0x6a79 020907 set1 uart_wakeup_tx ,pdata 
-0x6a7a 020908 hstore 1 ,core_gpio_pu0 
-0x6a7b 020909 arg uart_wakeup_tx ,temp 
-0x6a7c 020910 branch gpio_config_input 
-:      020912 gpio_rx_config_input_with_pu:
-0x6a7d 020913 call gpio_uart2gpio 
-0x6a7e 020914 hfetch 1 ,core_gpio_pu0 
-0x6a7f 020915 set1 uart_wakeup_rx ,pdata 
-0x6a80 020916 hstore 1 ,core_gpio_pu0 
-0x6a81 020917 arg uart_wakeup_rx ,temp 
-0x6a82 020918 branch gpio_config_input 
-:      020920 gpio_gpio2uart:
-0x6a83 020921 hfetch 1 ,core_gpio_sel1 
-0x6a84 020922 or_into 0x04 ,pdata 
-0x6a85 020923 hstore 1 ,core_gpio_sel1 
-0x6a86 020924 rtn 
-:      020926 gpio_uart2gpio:
-0x6a87 020927 hfetch 1 ,core_gpio_sel1 
-0x6a88 020928 and_into 0xfb ,pdata 
-0x6a89 020929 hstore 1 ,core_gpio_sel1 
-0x6a8a 020930 rtn 
-:      020932 gpio_check_uart_state:
-0x6a8b 020933 hfetch 1 ,core_gpio_sel1 
-0x6a8c 020934 isolate1 2 ,pdata 
-0x6a8d 020935 rtn 
-:      020938 prcp_init:
-0x6a8e 020939 setarg prcp_process 
-0x6a8f 020940 store 2 ,mem_cb_att_write 
-0x6a90 020941 rtn 
-:      020942 prcp_process:
-0x6a91 020943 call clear_prcp_sendbuff 
-0x6a92 020944 fetch 1 ,mem_prcp 
-0x6a93 020945 beq prcp_le ,le_prcp 
-0x6a94 020946 beq prcp_ssp ,prcp 
-0x6a95 020947 branch assert 
-:      020948 le_prcp:
-0x6a96 020949 arg prcp_rx_le ,temp 
-0x6a97 020950 storet 2 ,mem_le_notify_handle 
-0x6a98 020951 call le_att_get_handle_ptr 
-0x6a99 020952 ifetch 1 ,contr 
-0x6a9a 020953 call prcp_parse 
-0x6a9b 020954 branch prcp_le_tx 
-:      020955 prcp:
-0x6a9c 020956 call prcp_parse 
-0x6a9d 020957 branch prcp_tx 
-:      020958 prcp_parse:
-0x6a9e 020959 copy contr ,rega 
-0x6a9f 020960 set1 mark_ext_patch ,mark 
-0x6aa0 020961 bpatch patch26_1 ,mem_patch26 
-0x6aa1 020962 ifetch 1 ,contr 
-0x6aa2 020963 beq common_res ,prcp_parse_common_res 
-0x6aa3 020964 beq read_registers_req ,prcp_parse_read_registers_req 
-0x6aa4 020965 beq read_registers_res ,prcp_parse_read_registers_res 
-0x6aa5 020966 beq write_registers_req ,prcp_parse_write_registers_req 
-0x6aa6 020967 beq i2c_config_req ,prcp_parse_i2c_config_req 
-0x6aa7 020968 beq i2c_read_req ,prcp_parse_i2c_read_req 
-0x6aa8 020969 beq i2c_read_res ,prcp_parse_i2c_read_res 
-0x6aa9 020970 beq i2c_write_req ,prcp_parse_i2c_write_req 
-0x6aaa 020971 beq spi_config_req ,prcp_parse_spi_config_req 
-0x6aab 020972 beq spi_read_req ,prcp_parse_spi_read_req 
-0x6aac 020973 beq spi_read_res ,prcp_parse_spi_read_res 
-0x6aad 020974 beq spi_write_req ,prcp_parse_spi_write_req 
-0x6aae 020975 beq pwm_config_req ,prcp_parse_pwm_config_req 
-0x6aaf 020976 beq pwm_write_req ,prcp_parse_pwm_write_req 
-0x6ab0 020977 beq gpio_config_req ,prcp_parse_gpio_config_req 
-0x6ab1 020978 beq gpio_read_req ,prcp_parse_gpio_read_req 
-0x6ab2 020979 beq gpio_read_res ,prcp_parse_gpio_read_res 
-0x6ab3 020980 beq gpio_write_req ,prcp_parse_gpio_write_req 
-0x6ab4 020981 beq ota_write_req ,prcp_parse_ota_write_req 
-0x6ab5 020982 beq ota_end_cmd ,prcp_parse_ota_end_cmd 
-0x6ab6 020983 rtn 
-:      020986 prcp_parse_common_res:
-0x6ab7 020987 copy rega ,contr 
-0x6ab8 020988 ifetch 1 ,contr 
-0x6ab9 020989 lshift8 pdata ,pdata 
-0x6aba 020990 store 3 ,mem_prcp_data 
-0x6abb 020991 rtn 
-:      020992 prcp_parse_read_registers_req:
-0x6abc 020993 rtn 
-:      020994 prcp_parse_read_registers_res:
-0x6abd 020995 rtn 
-:      020996 prcp_parse_write_registers_req:
-0x6abe 020997 rtn 
-:      021001 prcp_parse_spi_config_req:
-0x6abf 021002 rtn 
-:      021003 prcp_parse_spi_read_req:
-0x6ac0 021004 rtn 
-:      021005 prcp_parse_spi_read_res:
-0x6ac1 021006 rtn 
-:      021007 prcp_parse_spi_write_req:
-0x6ac2 021008 rtn 
-:      021012 prcp_parse_pwm_config_req:
-0x6ac3 021013 ifetch 4 ,contr 
-0x6ac4 021014 hstore 1 ,core_gpio_sel2 
-0x6ac5 021015 rshift8 pdata ,pdata 
-0x6ac6 021016 hfetcht 1 ,core_gpio_sel1 
-0x6ac7 021017 and_into 0x7f ,temp 
-0x6ac8 021018 ior temp ,temp 
-0x6ac9 021019 hstoret 1 ,core_gpio_sel1 
-0x6aca 021020 rshift8 pdata ,pdata 
-0x6acb 021021 hfetcht 1 ,core_clkoff + 1 
-0x6acc 021022 and_into 0xdf ,temp 
-0x6acd 021023 ior temp ,temp 
-0x6ace 021024 hstoret 1 ,core_clkoff + 1 
-0x6acf 021025 rshift8 pdata ,pdata 
-0x6ad0 021026 hfetcht 1 ,core_clksel 
-0x6ad1 021027 and_into 0x3f ,temp 
-0x6ad2 021028 ior temp ,temp 
-0x6ad3 021029 hstoret 1 ,core_clksel 
-0x6ad4 021030 branch prcp_parse_common_res 
-:      021031 prcp_parse_pwm_write_req:
-0x6ad5 021032 ifetch 9 ,contr 
-0x6ad6 021033 hfetcht 1 ,core_gpio_key2 
-0x6ad7 021034 and_into 0x3f ,temp 
-0x6ad8 021035 ior temp ,temp 
-0x6ad9 021036 hstoret 1 ,core_gpio_key2 
-0x6ada 021037 rshift8 pdata ,pdata 
-0x6adb 021038 hstore 2 ,core_pwm_pcnt0 
-0x6adc 021039 rshift16 pdata ,pdata 
-0x6add 021040 hstore 2 ,core_pwm_ncnt0 
-0x6ade 021041 rshift16 pdata ,pdata 
-0x6adf 021042 hstore 2 ,core_pwm_pcnt1 
-0x6ae0 021043 rshift16 pdata ,pdata 
-0x6ae1 021044 hstore 2 ,core_pwm_ncnt1 
-0x6ae2 021045 branch prcp_parse_common_res 
-:      021049 prcp_parse_gpio_config_req:
-0x6ae3 021050 ifetch 4 ,contr 
-0x6ae4 021051 hstore 4 ,core_gpio_oe0 
-0x6ae5 021052 ifetch 4 ,contr 
-0x6ae6 021053 hstore 4 ,core_gpio_pu0 
-0x6ae7 021054 ifetch 4 ,contr 
-0x6ae8 021055 hstore 4 ,core_gpio_pd0 
-0x6ae9 021056 ifetch 1 ,contr 
-0x6aea 021057 hstore 1 ,core_gpio_sel 
-0x6aeb 021058 ifetch 1 ,contr 
-0x6aec 021059 hstore 1 ,core_gpio_sel1 
-0x6aed 021060 ifetch 1 ,contr 
-0x6aee 021061 hstore 1 ,core_gpio_sel2 
-0x6aef 021062 branch prcp_parse_common_res 
-:      021063 prcp_parse_gpio_read_req:
-0x6af0 021064 branch prcp_parse_gpio_read_res 
-:      021065 prcp_parse_gpio_read_res:
-0x6af1 021066 jam 0x10 ,mem_prcp_data 
-0x6af2 021067 arg mem_prcp_data + 1 ,contw 
-0x6af3 021068 hfetch 4 ,core_gpio_out0 
-0x6af4 021069 istore 4 ,contw 
-0x6af5 021070 hfetch 4 ,core_gpio_in 
-0x6af6 021071 istore 4 ,contw 
-0x6af7 021072 rtn 
-:      021073 prcp_parse_gpio_write_req:
-0x6af8 021074 ifetcht 1 ,contr 
-0x6af9 021075 ifetch 1 ,contr 
-0x6afa 021076 lshift3 pdata ,pdata 
-0x6afb 021077 lshift4 pdata ,pdata 
-0x6afc 021078 ior temp ,temp 
-0x6afd 021079 call gpio_out 
-0x6afe 021080 branch prcp_parse_common_res 
-:      021085 prcp_parse_i2c_read_req:
-0x6aff 021086 ifetcht 1 ,contr 
-0x6b00 021087 hstoret 1 ,iic_slave_addr 
-0x6b01 021088 ifetch 1 ,contr 
-0x6b02 021089 compare 1 ,pdata ,0xff 
-0x6b03 021090 ifetch 1 ,contr 
-0x6b04 021091 hstore 1 ,iic_fifo 
-0x6b05 021092 branch iic_read_data_len ,true 
-0x6b06 021093 ifetch 1 ,contr 
-0x6b07 021094 hstore 1 ,iic_fifo 
-:      021095 iic_read_data_len:
-0x6b08 021096 ifetch 1 ,contr 
-0x6b09 021097 copy pdata ,loopcnt 
-0x6b0a 021098 increase -1 ,pdata 
-0x6b0b 021099 or_into 0x90 ,pdata 
-0x6b0c 021100 hstore 1 ,iic_ctr 
-0x6b0d 021101 hjam 2 ,iic_cr 
-0x6b0e 021102 nop 1 
-0x6b0f 021104 arg mem_prcp_data ,contw 
-:      021105 iic_read_loop:
-0x6b10 021106 hfetch 1 ,iic_fifo 
-0x6b11 021107 istore 1 ,contw 
-0x6b12 021108 loop iic_read_loop 
-0x6b13 021109 rtn 
-:      021111 clear_prcp_sendbuff:
-0x6b14 021112 setarg 0 
-0x6b15 021113 store 4 ,mem_prcp_data 
-0x6b16 021114 istore 8 ,contw 
-0x6b17 021115 istore 8 ,contw 
-0x6b18 021116 rtn 
-:      021122 prcp_parse_ota_write_req:
-0x6b19 021123 copy rega ,pdata 
-0x6b1a 021124 increase 1 ,pdata 
-0x6b1b 021125 store 2 ,rx_buf_data_ptr 
-0x6b1c 021126 fetch 2 ,mem_eeprom_ota_base_addr 
-0x6b1d 021127 beq 0x0000 ,prcp_parse_ota_start1 
-:      021128 prcp_parse_ota_load:
-0x6b1e 021129 fetch 2 ,mem_eeprom_ota_base_addr 
-0x6b1f 021130 fetcht 2 ,rx_buf_data_ptr 
-0x6b20 021131 ifetcht 2 ,temp 
-0x6b21 021132 iadd temp ,pdata 
-0x6b22 021133 fetcht 2 ,rx_buf_data_ptr 
-0x6b23 021134 increase 2 ,temp 
-0x6b24 021135 copy temp ,contr 
-0x6b25 021136 ifetcht 1 ,contr 
-0x6b26 021137 copy contr ,rega 
-0x6b27 021138 branch iicd_write_ota_data 
-:      021140 prcp_parse_ota_start1:
-0x6b28 021141 setarg 0x0002 
-0x6b29 021142 byteswap pdata ,pdata 
-0x6b2a 021143 store 2 ,mem_addr_mi 
-0x6b2b 021144 arg iicd_read_eep ,regc 
-0x6b2c 021145 arg 0x2 ,loopcnt 
-:      021146 prcp_parse_ota_loop1:
-0x6b2d 021147 call get_block_header 
-0x6b2e 021148 nbranch prcp_parse_ota_start2 ,zero 
-0x6b2f 021149 fetch 2 ,mem_addr_mi 
-0x6b30 021150 byteswap pdata ,pdata 
-0x6b31 021151 iadd temp ,pdata 
-0x6b32 021152 store 2 ,mem_eeprom_ota_base_addr 
-0x6b33 021153 byteswap pdata ,pdata 
-0x6b34 021154 store 2 ,mem_addr_mi 
-0x6b35 021155 loop prcp_parse_ota_loop1 
-:      021156 prcp_parse_ota_start2:
-0x6b36 021157 fetch 2 ,mem_eeprom_ota_base_addr 
-0x6b37 021158 byteswap pdata ,pdata 
-0x6b38 021159 store 2 ,mem_addr_mi 
-0x6b39 021160 arg iicd_read_eep ,regc 
-0x6b3a 021161 arg 0xffff ,loopcnt 
-:      021162 prcp_parse_ota_loop2:
-0x6b3b 021163 call get_block_header 
-0x6b3c 021164 nbranch prcp_parse_ota_load ,zero 
-0x6b3d 021165 fetch 2 ,mem_addr_mi 
-0x6b3e 021166 byteswap pdata ,pdata 
-0x6b3f 021167 iadd temp ,pdata 
-0x6b40 021168 increase 2 ,pdata 
-0x6b41 021169 store 2 ,mem_eeprom_ota_base_addr 
-0x6b42 021170 byteswap pdata ,pdata 
-0x6b43 021171 store 2 ,mem_addr_mi 
-0x6b44 021172 loop prcp_parse_ota_loop2 
-:      021174 prcp_parse_ota_end_cmd:
-0x6b45 021175 fetch 2 ,mem_eeprom_ota_base_addr 
-0x6b46 021176 increase 2 ,pdata 
-0x6b47 021177 byteswap pdata ,pdata 
-0x6b48 021178 store 2 ,mem_eeprom_ota_base_addr 
-0x6b49 021179 arg mem_eeprom_ota_base_addr ,rega 
-0x6b4a 021180 arg 0x02 ,temp 
-0x6b4b 021181 arg 0x0000 ,pdata 
-0x6b4c 021182 call iicd_write_ota_data 
-0x6b4d 021183 setarg 0x0000 
-0x6b4e 021184 store 2 ,mem_eeprom_ota_base_addr 
-0x6b4f 021185 rtn 
-:      021187 prcp_parse_i2c_config_req:
-0x6b50 021188 rtn 
-:      021189 prcp_parse_i2c_read_res:
-0x6b51 021190 rtn 
-:      021191 prcp_parse_i2c_write_req:
-0x6b52 021192 rtn 
-:      021197 rfcomm_init:
-0x6b53 021198 rtn wake 
-0x6b54 021199 jam 0 ,mem_rfcomm_send_more_pkt 
-0x6b55 021200 jam bits9600 ,memremoterpnbitrate 
-0x6b56 021201 jam databits8 ,memremoteprndatabits 
-0x6b57 021202 jam 0x11 ,memremoteprnxon 
-0x6b58 021203 jam 0x13 ,memremoteprnxoff 
-0x6b59 021204 setarg 0 
-0x6b5a 021205 store 3 ,memremoteprnstopbit 
-0x6b5b 021206 store 1 ,mem_spp_state 
-0x6b5c 021207 jam 0 ,memui_reconnect_mode 
-:      021209 rfcomm_init_spp:
-0x6b5d 021210 set1 mark_ext_patch ,mark 
-0x6b5e 021211 bpatch patch37_7 ,mem_patch37 
-0x6b5f 021212 setarg 0 
-0x6b60 021213 store 1 ,mem_spp_state 
-0x6b61 021214 store 1 ,mem_remote_spp_channel 
-0x6b62 021215 store 1 ,mem_pn_dlci 
-0x6b63 021216 jam 0x50 ,mem_credit_given 
-0x6b64 021217 rtn 
-:      021219 set_cr_bit:
-0x6b65 021220 or_into 0x02 ,temp 
-0x6b66 021221 rtn 
-:      021233 rfcomm_calculate_fcs_sabm:
-0x6b67 021234 copy temp ,pdata 
-0x6b68 021235 reverse pdata ,pdata 
-0x6b69 021236 store 1 ,memfcstemp3 
-0x6b6a 021237 force ini_tx_sabm ,pdata 
-0x6b6b 021238 reverse pdata ,pdata 
-0x6b6c 021239 store 1 ,memfcstemp2 
-0x6b6d 021240 force 0x01 ,pdata 
-0x6b6e 021241 reverse pdata ,pdata 
-0x6b6f 021242 store 1 ,memfcstemp1 
-0x6b70 021243 call caculate_fcs 
-0x6b71 021244 copy temp ,pdata 
-0x6b72 021245 rtn 
-:      021246 rfcomm_calculate_fcs_ua:
-0x6b73 021247 reverse pdata ,pdata 
-0x6b74 021248 store 1 ,memfcstemp3 
-0x6b75 021249 force rsp_tx_ua ,pdata 
-0x6b76 021250 reverse pdata ,pdata 
-0x6b77 021251 store 1 ,memfcstemp2 
-0x6b78 021252 force 0x01 ,pdata 
-0x6b79 021253 reverse pdata ,pdata 
-0x6b7a 021254 store 1 ,memfcstemp1 
-0x6b7b 021255 branch caculate_fcs 
-:      021257 rfcomm_calculate_fcs_dlci0:
-0x6b7c 021258 fetch 1 ,mem_rfcomm_initiator 
-0x6b7d 021259 branch rfcomm_calculate_fcs_dlci0_res ,blank 
-0x6b7e 021260 setarg 0x70 
-0x6b7f 021261 rtn 
-:      021262 rfcomm_calculate_fcs_dlci0_res:
-0x6b80 021263 setarg 0xaa 
-0x6b81 021264 rtn 
-:      021266 rfcomm_save_fcs_uih:
-0x6b82 021267 reverse pdata ,pdata 
-0x6b83 021268 store 1 ,memfcstemp3 
-0x6b84 021269 force rsp_rx_uih ,pdata 
-0x6b85 021270 call caculate_uihdata_fcs 
-0x6b86 021271 fetcht 2 ,mem_contw_temp 
-0x6b87 021272 copy temp ,contw 
-0x6b88 021273 istore 1 ,contw 
-0x6b89 021274 copy contw ,temp 
-0x6b8a 021275 storet 2 ,mem_contw_temp 
-0x6b8b 021276 force rsp_rx_uih_wdata ,pdata 
-0x6b8c 021277 call caculate_uihdata_fcs 
-0x6b8d 021278 fetcht 2 ,mem_contw_temp 
-0x6b8e 021279 copy temp ,contw 
-0x6b8f 021280 istore 1 ,contw 
-0x6b90 021281 rtn 
-:      021290 caculate_uihdata_fcs:
-0x6b91 021291 reverse pdata ,pdata 
-0x6b92 021292 store 1 ,memfcstemp2 
-0x6b93 021293 fetch 2 ,memfcstemp2 
-0x6b94 021294 lshift8 pdata ,pdata 
-0x6b95 021295 store 3 ,mem_mod2div_temp 
-0x6b96 021296 arg 0x107 ,rega 
-0x6b97 021297 arg 0xf ,regb 
-0x6b98 021298 call mod2div 
-0x6b99 021299 xor_into 0xd7 ,pdata 
-0x6b9a 021300 invert pdata ,pdata 
-0x6b9b 021301 reverse pdata ,pdata 
-0x6b9c 021302 rtn 
-:      021312 caculate_fcs:
-0x6b9d 021313 fetch 3 ,memfcstemp1 
-0x6b9e 021314 store 3 ,mem_mod2div_temp 
-0x6b9f 021315 arg 0x107 ,rega 
-0x6ba0 021316 arg 0xf ,regb 
-0x6ba1 021317 call mod2div 
-0x6ba2 021318 lshift8 pdata ,pdata 
-0x6ba3 021319 arg 0x7 ,regb 
-0x6ba4 021320 call mod2div 
-0x6ba5 021321 xor_into 0x2b ,pdata 
-0x6ba6 021322 invert pdata ,pdata 
-0x6ba7 021323 reverse pdata ,pdata 
-0x6ba8 021324 copy pdata ,temp 
-0x6ba9 021325 rtn 
-:      021327 mod2div:
-0x6baa 021328 arg 0 ,regc 
-0x6bab 021329 copy regb ,loopcnt 
-0x6bac 021330 call right_shift_n 
-0x6bad 021331 icopy temp 
-:      021332 mod2div_loop:
-0x6bae 021337 copy temp ,pdata 
-0x6baf 021338 lshift regc ,regc 
-0x6bb0 021339 bbit0 8 ,mod2div_not_enough_reduction 
-0x6bb1 021340 ixor rega ,temp 
-0x6bb2 021341 increase 1 ,regc 
-:      021342 mod2div_not_enough_reduction:
-0x6bb3 021343 lshift temp ,temp 
-0x6bb4 021344 fetch 3 ,mem_mod2div_temp 
-0x6bb5 021345 increase -1 ,regb 
-0x6bb6 021346 compare 0xff ,regb ,0xff 
-0x6bb7 021347 branch mod2div_end ,true 
-0x6bb8 021348 copy regb ,loopcnt 
-0x6bb9 021349 call right_shift_n 
-0x6bba 021350 isolate1 0 ,pdata 
-0x6bbb 021351 setflag true ,0 ,temp 
-0x6bbc 021352 branch mod2div_loop 
-:      021353 mod2div_end:
-0x6bbd 021355 rshift temp ,pdata 
-0x6bbe 021356 rtn 
-:      021358 get_rfcomm_snd_adss:
-0x6bbf 021359 fetcht 1 ,mem_pn_dlci 
-:      021360 dlci_to_address_cmd:
-0x6bc0 021362 lshift2 temp ,temp 
-0x6bc1 021363 set1 rfcomm_address_ext_len ,temp 
-0x6bc2 021364 fetch 1 ,mem_rfcomm_initiator 
-0x6bc3 021365 ncall set_cr_bit ,blank 
-0x6bc4 021366 storet 1 ,mem_rfcomm_send_adss 
-0x6bc5 021367 rtn 
-:      021369 dlci_to_address_res:
-0x6bc6 021371 lshift2 temp ,temp 
-0x6bc7 021372 set1 rfcomm_address_ext_len ,temp 
-0x6bc8 021373 fetch 1 ,mem_rfcomm_initiator 
-0x6bc9 021374 call set_cr_bit ,blank 
-0x6bca 021375 rtn 
-:      021376 channel_to_dlci:
-0x6bcb 021378 lshift temp ,temp 
-0x6bcc 021379 fetch 1 ,mem_rfcomm_initiator 
-0x6bcd 021380 setflag blank ,0 ,temp 
-0x6bce 021382 rtn 
-:      021383 rfcomm_rx_process_dlci0_sabm:
-0x6bcf 021384 fetcht 1 ,mem_current_channel 
-0x6bd0 021385 jam 0xd7 ,mem_current_fcs 
-0x6bd1 021386 call rfcomm_send_ua 
-0x6bd2 021387 fetch 1 ,mem_rfcomm_state 
-0x6bd3 021388 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
-0x6bd4 021389 set1 l2cap_channel_rfcomm_only_ua ,pdata 
-0x6bd5 021390 store 1 ,mem_rfcomm_state 
-0x6bd6 021391 jam 0 ,mem_rfcomm_initiator 
-0x6bd7 021392 branch rfcomm_rx_process_end 
-:      021393 rfcomm_rx_process_dlci0_ua:
-0x6bd8 021394 fetch 1 ,mem_rfcomm_state 
-0x6bd9 021395 set1 l2cap_channel_rfcomm_only_ua ,pdata 
-0x6bda 021396 store 1 ,mem_rfcomm_state 
-0x6bdb 021397 branch rfcomm_rx_process_end 
-:      021400 rfcomm_rx_process:
-0x6bdc 021401 set1 mark_ext_patch ,mark 
-0x6bdd 021402 bpatch patch38_0 ,mem_patch38 
-0x6bde 021403 fetch 1 ,memui_reconnect_mode 
-0x6bdf 021404 beq no_reconnection ,rfcomm_rx_process_remote_page 
-0x6be0 021405 branch rfcomm_rx_process_reconn 
-:      021407 rfcomm_rx_process_remote_page:
-0x6be1 021408 fetch 2 ,mem_l2cap_payload_ptr 
-0x6be2 021409 copy pdata ,contr 
-0x6be3 021410 call get_rfcomm_head_struct 
-0x6be4 021411 fetch 1 ,mem_current_channel 
-0x6be5 021412 beq 0 ,parse_dlci0_rp 
-0x6be6 021413 branch parse_uih_rp 
-:      021414 parse_dlci0_rp:
-0x6be7 021415 set1 mark_ext_patch ,mark 
-0x6be8 021416 bpatch patch38_1 ,mem_patch38 
-0x6be9 021417 fetch 1 ,mem_current_frame_type 
-0x6bea 021418 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
-0x6beb 021419 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
-0x6bec 021420 beq rfcomm_frame_type_uih ,parse_dlci0_rp_uih 
-0x6bed 021421 rtneq rfcomm_frame_type_disconn 
-0x6bee 021422 branch assert 
-:      021425 parse_dlci0_rp_uih:
-0x6bef 021426 fetch 2 ,mem_rfcomm_uih_payload_ptr 
-0x6bf0 021427 copy pdata ,contr 
-0x6bf1 021428 call get_rfcomm_uih_head_struct 
-0x6bf2 021429 fetch 1 ,mem_uih_cmd_type 
-0x6bf3 021430 beq uih_param_neg_cmd ,parse_dlci0_rp_uih_pn_cmd 
-0x6bf4 021431 beq uih_param_neg_res ,parse_dlci0_rp_uih_pn_res 
-0x6bf5 021432 beq uih_modem_status_cmd ,parse_dlci0_rp_uih_ms_cmd 
-0x6bf6 021433 beq uih_modem_status_res ,parse_dlci0_rp_uih_ms_res 
-0x6bf7 021434 branch rfcomm_rx_process_end 
-:      021436 parse_dlci0_rp_uih_pn_cmd:
-0x6bf8 021437 call parse_dlci0_rp_uih_pn_res_common 
-0x6bf9 021438 fetch 1 ,mem_pn_dlci 
-0x6bfa 021439 rshift pdata ,pdata 
-0x6bfb 021440 sub pdata ,spp_slave_channel ,null 
-0x6bfc 021441 branch parse_dlci0_rp_uih_pn_cmd_spp ,zero 
-0x6bfd 021442 branch assert 
-:      021443 parse_dlci0_rp_uih_pn_cmd_spp:
-0x6bfe 021444 fetch 1 ,mem_spp_state 
-0x6bff 021445 set1 rfcomm_channel_state_pn_cmd ,pdata 
-0x6c00 021446 set1 rfcomm_channel_state_pn_res ,pdata 
-0x6c01 021447 store 1 ,mem_spp_state 
-0x6c02 021448 call rfcomm_send_param_neg_res 
-0x6c03 021449 branch rfcomm_rx_process_end 
-:      021451 parse_dlci0_rp_uih_pn_res:
-0x6c04 021452 call parse_dlci0_rp_uih_pn_res_common 
-0x6c05 021453 branch rfcomm_rx_process_end 
-:      021455 parse_dlci0_rp_uih_pn_res_common:
-0x6c06 021456 call get_param_payload_ptr 
-0x6c07 021457 branch get_rfcomm_prarmer_negotiation 
-:      021459 get_rfcomm_param_modem_status:
-0x6c08 021460 call get_param_payload_ptr 
-0x6c09 021461 ifetch 1 ,contr 
-0x6c0a 021462 rshift3 pdata ,pdata 
-0x6c0b 021463 store 1 ,mem_ms_channel 
-0x6c0c 021464 ifetch 1 ,contr 
-0x6c0d 021465 store 1 ,mem_ms_param 
-0x6c0e 021466 rtn 
-:      021469 get_rfcomm_head_struct:
-0x6c0f 021470 ifetch 1 ,contr 
-0x6c10 021471 store 1 ,mem_current_adss 
-0x6c11 021472 rshift3 pdata ,pdata 
-0x6c12 021473 store 1 ,mem_current_channel 
-0x6c13 021474 ifetch 1 ,contr 
-0x6c14 021475 store 1 ,mem_current_frame_type 
-:      021476 get_rfcomm_current_length:
-0x6c15 021477 call get_rfcomm_length_common 
-0x6c16 021478 storet 2 ,mem_current_length 
-0x6c17 021479 copy contr ,pdata 
-0x6c18 021480 store 2 ,mem_rfcomm_uih_payload_ptr 
-0x6c19 021481 rtn 
-:      021483 get_rfcomm_uih_head_struct:
-0x6c1a 021484 ifetch 1 ,contr 
-0x6c1b 021485 rshift pdata ,pdata 
-0x6c1c 021486 store 1 ,mem_uih_cmd_type 
-0x6c1d 021487 call get_rfcomm_length_common 
-0x6c1e 021488 storet 2 ,mem_uih_length 
-0x6c1f 021489 copy contr ,pdata 
-0x6c20 021490 store 2 ,mem_param_payload_ptr 
-0x6c21 021491 rtn 
-:      021494 get_param_payload_ptr:
-0x6c22 021495 fetch 2 ,mem_param_payload_ptr 
-0x6c23 021496 copy pdata ,contr 
-0x6c24 021497 rtn 
-:      021499 get_rfcomm_param_length_common:
-0x6c25 021500 fetch 2 ,mem_param_payload_ptr 
-0x6c26 021501 copy pdata ,contr 
-:      021502 get_rfcomm_length_common:
-0x6c27 021503 ifetch 1 ,contr 
-0x6c28 021504 copy pdata ,temp 
-0x6c29 021505 rshift temp ,temp 
-0x6c2a 021506 rtnbit1 0 
-0x6c2b 021507 ifetch 1 ,contr 
-0x6c2c 021508 lshift3 pdata ,pdata 
-0x6c2d 021509 lshift4 pdata ,pdata 
-0x6c2e 021510 iadd temp ,temp 
-0x6c2f 021511 rtn 
-:      021513 get_rfcomm_prarmer_negotiation:
-0x6c30 021514 ifetch 1 ,contr 
-0x6c31 021515 store 1 ,mem_pn_dlci 
-0x6c32 021516 ifetch 1 ,contr 
-0x6c33 021517 store 1 ,mem_pn_credit_flow_type_info 
-0x6c34 021518 ifetch 1 ,contr 
-0x6c35 021519 store 1 ,mem_pn_priority 
-0x6c36 021520 ifetch 1 ,contr 
-0x6c37 021521 store 1 ,mem_pn_acknowledg_timer 
-0x6c38 021522 ifetch 2 ,contr 
-0x6c39 021523 store 2 ,mem_pn_max_frame_size 
-0x6c3a 021524 ifetch 1 ,contr 
-0x6c3b 021525 store 1 ,mem_pn_max_retrans 
-0x6c3c 021526 ifetch 1 ,contr 
-0x6c3d 021527 store 1 ,mem_remote_credits 
-0x6c3e 021528 rtn 
-:      021531 parse_dlci0_rp_uih_ms_cmd:
-0x6c3f 021532 call get_rfcomm_param_modem_status 
-0x6c40 021533 fetch 1 ,mem_ms_channel 
-0x6c41 021534 sub pdata ,1 ,null 
-0x6c42 021535 branch parse_dlci0_rp_uih_ms_cmd_spp ,zero 
-0x6c43 021536 branch assert 
-:      021537 parse_dlci0_rp_uih_ms_cmd_spp:
-0x6c44 021538 fetch 1 ,mem_spp_state 
-0x6c45 021539 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
-0x6c46 021540 set1 rfcomm_channel_state_snd_ms_res ,pdata 
-0x6c47 021541 store 1 ,mem_spp_state 
-0x6c48 021542 fetcht 1 ,mem_pn_dlci 
-0x6c49 021543 lshift2 temp ,temp 
-0x6c4a 021544 or_into 3 ,temp 
-0x6c4b 021545 call rfcomm_send_modem_status_res 
-0x6c4c 021546 jam more_pkt_msc_cmd_spp ,mem_rfcomm_send_more_pkt 
-0x6c4d 021547 branch rfcomm_rx_process_end 
-:      021549 parse_dlci0_rp_uih_ms_res:
-0x6c4e 021550 call get_rfcomm_param_modem_status 
-0x6c4f 021551 fetch 1 ,mem_ms_channel 
-0x6c50 021552 sub pdata ,1 ,null 
-0x6c51 021553 branch parse_dlci0_rp_uih_ms_res_spp ,zero 
-0x6c52 021554 branch assert 
-:      021555 parse_dlci0_rp_uih_ms_res_spp:
-0x6c53 021556 fetch 1 ,mem_spp_state 
-0x6c54 021557 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
-0x6c55 021558 store 1 ,mem_spp_state 
-0x6c56 021559 branch rfcomm_rx_process_end 
-:      021561 parse_uih_rp:
-0x6c57 021562 fetch 1 ,mem_current_channel 
-0x6c58 021563 sub pdata ,spp_slave_channel ,null 
-0x6c59 021564 branch parse_uih_rp_spp ,zero 
-0x6c5a 021565 branch assert 
-:      021566 parse_uih_rp_spp:
-0x6c5b 021567 fetch 1 ,mem_current_frame_type 
-0x6c5c 021568 beq rfcomm_frame_type_ua ,parse_uih_rp_spp_ua 
-0x6c5d 021569 beq rfcomm_frame_type_sabm ,parse_uih_rp_spp_sabm 
-0x6c5e 021570 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
-0x6c5f 021571 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
-0x6c60 021572 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn 
-0x6c61 021573 branch assert 
-:      021574 parse_uih_rp_spp_ua:
-0x6c62 021575 fetch 1 ,mem_spp_state 
-0x6c63 021576 set1 rfcomm_channel_state_ua ,pdata 
-0x6c64 021577 store 1 ,mem_spp_state 
-0x6c65 021578 branch rfcomm_rx_process_end 
-:      021579 parse_uih_rp_spp_sabm:
-0x6c66 021580 fetch 1 ,mem_spp_state 
-0x6c67 021581 set1 rfcomm_channel_state_ua ,pdata 
-0x6c68 021582 set1 rfcomm_channel_state_sabm ,pdata 
-0x6c69 021583 store 1 ,mem_spp_state 
-0x6c6a 021584 fetch 1 ,mem_current_adss 
-0x6c6b 021585 call rfcomm_calculate_fcs_ua 
-0x6c6c 021586 store 1 ,mem_current_fcs 
-0x6c6d 021587 call rfcomm_send_ua 
-0x6c6e 021588 fetch 1 ,mem_current_adss 
-0x6c6f 021589 rshift2 pdata ,pdata 
-0x6c70 021590 store 1 ,mem_pn_dlci 
-0x6c71 021591 lshift2 pdata ,pdata 
-0x6c72 021592 set0 rfcomm_address_cr ,pdata 
-0x6c73 021593 set1 rfcomm_address_ext_len ,pdata 
-0x6c74 021594 arg mem_hiufcs_spp ,temp 
-0x6c75 021595 storet 2 ,mem_contw_temp 
-0x6c76 021596 call rfcomm_save_fcs_uih 
-0x6c77 021597 branch rfcomm_rx_process_end 
-:      021599 parse_uih_spp_uih_credits:
-0x6c78 021600 fetch 2 ,mem_rfcomm_uih_payload_ptr 
-0x6c79 021601 copy pdata ,contr 
-0x6c7a 021602 increase 1 ,pdata 
-0x6c7b 021603 store 2 ,mem_rfcomm_uih_payload_ptr 
-0x6c7c 021604 ifetch 1 ,contr 
-0x6c7d 021605 fetcht 1 ,mem_remote_credits 
-0x6c7e 021606 iadd temp ,pdata 
-0x6c7f 021607 store 1 ,mem_remote_credits 
-:      021608 parse_uih_spp_uih:
-0x6c80 021609 call rfcomm_increase_credit_given 
-:      021610 parse_uih_spp_uih_cont:
-0x6c81 021611 call get_rfcomm_snd_adss 
-0x6c82 021612 call rfcomm_send_uih_without_payload 
-0x6c83 021613 call spp_process_rx_data 
-0x6c84 021614 branch rfcomm_rx_process_end 
-:      021616 parse_uih_rp_spp_disconn:
-0x6c85 021617 call rfcomm_init_spp 
-0x6c86 021618 fetch 1 ,mem_current_adss 
-0x6c87 021619 call rfcomm_calculate_fcs_ua 
-0x6c88 021620 store 1 ,mem_current_fcs 
-0x6c89 021621 call rfcomm_send_ua 
-0x6c8a 021622 branch rfcomm_rx_process_end 
-:      021627 rfcomm_rx_process_reconn:
-0x6c8b 021628 fetch 2 ,mem_l2cap_payload_ptr 
-0x6c8c 021629 copy pdata ,contr 
-0x6c8d 021630 call get_rfcomm_head_struct 
-0x6c8e 021631 fetch 1 ,mem_current_channel 
-0x6c8f 021632 beq 0 ,parse_dlci0_reconn 
-0x6c90 021633 branch parse_uih_reconn 
-:      021635 parse_dlci0_reconn:
-0x6c91 021636 set1 mark_ext_patch ,mark 
-0x6c92 021637 bpatch patch38_2 ,mem_patch38 
-0x6c93 021638 fetch 1 ,mem_current_frame_type 
-0x6c94 021639 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
-0x6c95 021640 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
-0x6c96 021641 beq rfcomm_frame_type_uih ,parse_dlci0_reconn_uih 
-0x6c97 021642 branch rfcomm_rx_process_end 
-:      021643 parse_dlci0_reconn_uih:
-0x6c98 021644 fetch 2 ,mem_rfcomm_uih_payload_ptr 
-0x6c99 021645 copy pdata ,contr 
-0x6c9a 021646 call get_rfcomm_uih_head_struct 
-0x6c9b 021647 fetch 1 ,mem_uih_cmd_type 
-0x6c9c 021648 beq uih_param_neg_cmd ,parse_dlci0_reconn_uih_pn_cmd 
-0x6c9d 021649 beq uih_param_neg_res ,parse_dlci0_reconn_uih_pn_cmd 
-0x6c9e 021650 beq uih_modem_status_cmd ,parse_dlci0_reconn_uih_ms_cmd 
-0x6c9f 021651 beq uih_modem_status_res ,parse_dlci0_reconn_uih_ms_res 
-0x6ca0 021652 branch rfcomm_rx_process_end 
-:      021654 parse_dlci0_reconn_uih_pn_cmd:
-0x6ca1 021655 call parse_dlci0_rp_uih_pn_res_common 
-0x6ca2 021656 fetch 1 ,mem_pn_dlci 
-0x6ca3 021657 rshift pdata ,pdata 
-0x6ca4 021658 fetcht 1 ,mem_remote_spp_channel 
-0x6ca5 021659 isub temp ,null 
-0x6ca6 021660 branch parse_dlci0_reconn_uih_pn_cmd_spp ,zero 
-0x6ca7 021661 branch assert 
-:      021662 parse_dlci0_reconn_uih_pn_cmd_spp:
-0x6ca8 021663 fetch 1 ,mem_spp_state 
-0x6ca9 021664 set1 rfcomm_channel_state_pn_res ,pdata 
-0x6caa 021665 store 1 ,mem_spp_state 
-0x6cab 021666 branch rfcomm_rx_process_end 
-:      021668 parse_dlci0_reconn_uih_ms_cmd:
-0x6cac 021669 call get_rfcomm_param_modem_status 
-0x6cad 021670 fetch 1 ,mem_ms_channel 
-0x6cae 021671 fetcht 1 ,mem_remote_spp_channel 
-0x6caf 021672 isub temp ,null 
-0x6cb0 021673 branch parse_dlci0_reconn_uih_ms_cmd_spp ,zero 
-0x6cb1 021674 branch assert 
-0x6cb2 021675 branch rfcomm_rx_process_end 
-:      021676 parse_dlci0_reconn_uih_ms_cmd_spp:
-0x6cb3 021677 fetch 1 ,mem_spp_state 
-0x6cb4 021678 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
-0x6cb5 021679 set1 rfcomm_channel_state_snd_ms_res ,pdata 
-0x6cb6 021680 store 1 ,mem_spp_state 
-0x6cb7 021681 fetcht 1 ,mem_pn_dlci 
-0x6cb8 021682 lshift2 temp ,temp 
-0x6cb9 021683 or_into 3 ,temp 
-0x6cba 021684 call rfcomm_send_modem_status_res 
-0x6cbb 021685 branch rfcomm_rx_process_end 
-:      021687 parse_dlci0_reconn_uih_ms_res:
-0x6cbc 021688 call get_rfcomm_param_modem_status 
-0x6cbd 021689 fetch 1 ,mem_ms_channel 
-0x6cbe 021690 fetcht 1 ,mem_remote_spp_channel 
-0x6cbf 021691 isub temp ,null 
-0x6cc0 021692 branch parse_dlci0_reconn_uih_ms_res_spp ,zero 
-0x6cc1 021693 branch assert 
-:      021694 parse_dlci0_reconn_uih_ms_res_spp:
-0x6cc2 021695 fetch 1 ,mem_spp_state 
-0x6cc3 021696 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
-0x6cc4 021697 store 1 ,mem_spp_state 
-0x6cc5 021698 branch rfcomm_rx_process_end 
-:      021700 parse_uih_reconn:
-0x6cc6 021701 fetch 1 ,mem_current_channel 
-0x6cc7 021702 fetcht 1 ,mem_remote_spp_channel 
-0x6cc8 021703 isub temp ,null 
-0x6cc9 021704 branch parse_uih_reconn_spp ,zero 
-0x6cca 021705 branch assert 
-0x6ccb 021706 branch rfcomm_rx_process_end 
-:      021708 parse_uih_reconn_spp:
-0x6ccc 021709 fetch 1 ,mem_current_frame_type 
-0x6ccd 021710 beq rfcomm_frame_type_ua ,parse_uih_reconn_spp_ua 
-0x6cce 021711 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
-0x6ccf 021712 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
-0x6cd0 021713 beq rfcomm_frame_type_disconn ,parse_uih_reconn_spp_disconn 
-:      021714 parse_uih_reconn_spp_ua:
-0x6cd1 021715 fetch 1 ,mem_spp_state 
-0x6cd2 021716 set1 rfcomm_channel_state_ua ,pdata 
-0x6cd3 021717 store 1 ,mem_spp_state 
-0x6cd4 021718 branch rfcomm_rx_process_end 
-:      021719 parse_uih_reconn_spp_sabm:
-0x6cd5 021720 branch parse_uih_reconn_spp_sabm 
-:      021721 parse_uih_reconn_spp_disconn:
-0x6cd6 021722 branch parse_uih_rp_spp_disconn 
-:      021723 rfcomm_rx_process_end:
-0x6cd7 021724 rtn 
-:      021726 rfcomm_send_more_pkt:
-0x6cd8 021727 fetch 1 ,mem_rfcomm_send_more_pkt 
-0x6cd9 021728 rtn blank 
-0x6cda 021729 beq more_pkt_msc_cmd_spp ,rfcomm_send_more_pkt_msc_cmd_spp 
-0x6cdb 021730 branch assert 
-:      021732 rfcomm_send_more_pkt_msc_cmd_spp:
-0x6cdc 021733 jam 0 ,mem_rfcomm_send_more_pkt 
-0x6cdd 021734 call l2cap_malloc_rfcomm_channel 
-0x6cde 021735 arg spp_slave_channel ,temp 
-0x6cdf 021736 lshift3 temp ,temp 
-:      021737 rfcomm_send_more_pkt_msc_cmd_spp0:
-0x6ce0 021738 or_into 0x03 ,temp 
-0x6ce1 021739 arg 0xaa ,rega 
-0x6ce2 021740 call rfcomm_send_modem_status_cmd 
-0x6ce3 021741 call l2cap_get_rfcomm_tx_buff 
-0x6ce4 021742 copy contw ,contr 
-0x6ce5 021743 ifetch 2 ,contr 
-0x6ce6 021744 branch assert ,blank 
-0x6ce7 021745 rtn 
-:      021747 rfcomm_send_sabm:
-0x6ce8 021748 set1 mark_ext_patch ,mark 
-0x6ce9 021749 bpatch patch38_3 ,mem_patch38 
-0x6cea 021750 call l2cap_get_rfcomm_tx_buff 
-0x6ceb 021751 setarg 0x0004 
-0x6cec 021752 istore 2 ,contw 
-0x6ced 021753 fetch 2 ,mem_rfcomm_remote_cid 
-0x6cee 021754 istore 2 ,contw 
-0x6cef 021755 fetch 1 ,mem_current_adss 
-0x6cf0 021756 istore 1 ,contw 
-0x6cf1 021757 setarg 0x013f 
-0x6cf2 021758 istore 2 ,contw 
-0x6cf3 021759 fetch 1 ,mem_current_fcs 
-0x6cf4 021760 istore 1 ,contw 
-0x6cf5 021761 rtn 
-:      021762 rfcomm_send_ua:
-0x6cf6 021763 set1 mark_ext_patch ,mark 
-0x6cf7 021764 bpatch patch38_4 ,mem_patch38 
-0x6cf8 021765 call l2cap_malloc_rfcomm_channel 
-0x6cf9 021766 call l2cap_get_rfcomm_tx_buff 
-0x6cfa 021767 setarg 0x0004 
-0x6cfb 021768 istore 2 ,contw 
-0x6cfc 021769 fetch 2 ,mem_rfcomm_remote_cid 
-0x6cfd 021770 istore 2 ,contw 
-0x6cfe 021771 fetch 1 ,mem_current_adss 
-0x6cff 021772 istore 1 ,contw 
-0x6d00 021773 setarg 0x0173 
-0x6d01 021774 istore 2 ,contw 
-0x6d02 021775 fetch 1 ,mem_current_fcs 
-0x6d03 021776 istore 1 ,contw 
-0x6d04 021777 rtn 
-:      021778 rfcomm_send_param_neg_cmd:
-0x6d05 021779 set1 mark_ext_patch ,mark 
-0x6d06 021780 bpatch patch38_5 ,mem_patch38 
-0x6d07 021781 call l2cap_get_rfcomm_tx_buff 
-0x6d08 021782 setarg 0x000e 
-0x6d09 021783 istore 2 ,contw 
-0x6d0a 021784 fetch 2 ,mem_rfcomm_remote_cid 
-0x6d0b 021785 istore 2 ,contw 
-0x6d0c 021786 fetch 1 ,mem_rfcomm_initiator 
-0x6d0d 021787 lshift pdata ,pdata 
-0x6d0e 021788 set1 0 ,pdata 
-0x6d0f 021789 istore 1 ,contw 
-0x6d10 021790 setarg 0x15ef 
-0x6d11 021791 istore 2 ,contw 
-0x6d12 021792 setarg 0x1183 
-0x6d13 021793 istore 2 ,contw 
-0x6d14 021794 copy temp ,pdata 
-0x6d15 021795 istore 1 ,contw 
-0x6d16 021796 setarg 0x0000f0 
-0x6d17 021797 istore 3 ,contw 
-0x6d18 021798 setarg rfcomm_max_frame_size 
-0x6d19 021799 istore 2 ,contw 
-0x6d1a 021800 setarg 0 
-0x6d1b 021801 istore 1 ,contw 
-0x6d1c 021802 setarg 0x01 
-0x6d1d 021803 istore 1 ,contw 
-0x6d1e 021804 call rfcomm_calculate_fcs_dlci0 
-0x6d1f 021805 istore 1 ,contw 
-0x6d20 021806 jam 0x10 ,mem_credit_given 
-0x6d21 021807 rtn 
-:      021808 rfcomm_send_param_neg_res:
-0x6d22 021809 set1 mark_ext_patch ,mark 
-0x6d23 021810 bpatch patch38_6 ,mem_patch38 
-0x6d24 021811 call l2cap_malloc_rfcomm_channel 
-0x6d25 021812 call l2cap_get_rfcomm_tx_buff 
-0x6d26 021813 setarg 0x000e 
-0x6d27 021814 istore 2 ,contw 
-0x6d28 021815 fetch 2 ,mem_rfcomm_remote_cid 
-0x6d29 021816 istore 2 ,contw 
-0x6d2a 021817 fetch 1 ,mem_rfcomm_initiator 
-0x6d2b 021818 lshift pdata ,pdata 
-0x6d2c 021819 set1 0 ,pdata 
-0x6d2d 021820 istore 1 ,contw 
-0x6d2e 021821 setarg 0x15ef 
-0x6d2f 021822 istore 2 ,contw 
-0x6d30 021823 setarg 0x1181 
-0x6d31 021824 istore 2 ,contw 
-0x6d32 021825 fetch 1 ,mem_pn_dlci 
-0x6d33 021826 istore 1 ,contw 
-0x6d34 021827 setarg 0x0000e0 
-0x6d35 021828 istore 3 ,contw 
-0x6d36 021829 setarg rfcomm_max_frame_size 
-0x6d37 021830 istore 2 ,contw 
-0x6d38 021831 setarg 0x00 
-0x6d39 021832 istore 1 ,contw 
-0x6d3a 021833 setarg 0x07 
-0x6d3b 021834 istore 1 ,contw 
-0x6d3c 021835 call rfcomm_calculate_fcs_dlci0 
-0x6d3d 021836 istore 1 ,contw 
-0x6d3e 021837 rtn 
-:      021838 rfcomm_send_modem_status_cmd:
-0x6d3f 021839 set1 mark_ext_patch ,mark 
-0x6d40 021840 bpatch patch38_7 ,mem_patch38 
-0x6d41 021841 call l2cap_get_rfcomm_tx_buff 
-0x6d42 021842 setarg 0x0008 
-0x6d43 021843 istore 2 ,contw 
-0x6d44 021844 fetch 2 ,mem_rfcomm_remote_cid 
-0x6d45 021845 istore 2 ,contw 
-0x6d46 021846 fetch 1 ,mem_rfcomm_initiator 
-0x6d47 021847 lshift pdata ,pdata 
-0x6d48 021848 set1 0 ,pdata 
-0x6d49 021849 istore 1 ,contw 
-0x6d4a 021850 setarg 0x09ef 
-0x6d4b 021851 istore 2 ,contw 
-0x6d4c 021852 setarg 0x05e3 
-0x6d4d 021853 istore 2 ,contw 
-0x6d4e 021854 copy temp ,pdata 
-0x6d4f 021855 istore 1 ,contw 
-0x6d50 021856 setarg 0x8d 
-0x6d51 021857 istore 1 ,contw 
-0x6d52 021858 call rfcomm_calculate_fcs_dlci0 
-0x6d53 021859 istore 1 ,contw 
-0x6d54 021860 rtn 
-:      021862 rfcomm_send_modem_status_res:
-0x6d55 021863 set1 mark_ext_patch ,mark 
-0x6d56 021864 bpatch patch39_0 ,mem_patch39 
-0x6d57 021865 call l2cap_malloc_rfcomm_channel 
-0x6d58 021866 call l2cap_get_rfcomm_tx_buff 
-0x6d59 021867 setarg 0x0008 
-0x6d5a 021868 istore 2 ,contw 
-0x6d5b 021869 fetch 2 ,mem_rfcomm_remote_cid 
-0x6d5c 021870 istore 2 ,contw 
-0x6d5d 021871 copy temp ,timeup 
-0x6d5e 021872 fetch 1 ,mem_rfcomm_initiator 
-0x6d5f 021873 lshift pdata ,pdata 
-0x6d60 021874 set1 0 ,pdata 
-0x6d61 021875 istore 1 ,contw 
-0x6d62 021876 setarg 0x09ef 
-0x6d63 021877 istore 2 ,contw 
-0x6d64 021878 setarg 0x05e1 
-0x6d65 021879 istore 2 ,contw 
-0x6d66 021880 copy timeup ,pdata 
-0x6d67 021881 istore 1 ,contw 
-0x6d68 021882 setarg 0x8d 
-0x6d69 021883 istore 1 ,contw 
-0x6d6a 021884 call rfcomm_calculate_fcs_dlci0 
-0x6d6b 021885 istore 1 ,contw 
-0x6d6c 021886 rtn 
-:      021888 rfcomm_send_uih_without_payload:
-0x6d6d 021889 set1 mark_ext_patch ,mark 
-0x6d6e 021890 bpatch patch39_1 ,mem_patch39 
-0x6d6f 021891 fetch 1 ,mem_credit_given 
-0x6d70 021892 rtn blank 
-0x6d71 021893 hfetch 2 ,core_uart_rxitems 
-0x6d72 021894 nrtn blank 
-0x6d73 021895 copy rega ,pdata 
-0x6d74 021896 store 1 ,mem_pdatatemp + 1 
-0x6d75 021897 storet 1 ,mem_pdatatemp 
-0x6d76 021898 call l2cap_malloc_is_fifo_full 
-0x6d77 021899 nrtn blank 
-0x6d78 021900 call l2cap_malloc_rfcomm_channel 
-0x6d79 021901 call l2cap_get_rfcomm_tx_buff 
-0x6d7a 021902 setarg 0x05 
-0x6d7b 021903 istore 2 ,contw 
-0x6d7c 021904 fetch 2 ,mem_rfcomm_remote_cid 
-0x6d7d 021905 istore 2 ,contw 
-0x6d7e 021906 fetch 1 ,mem_rfcomm_send_adss 
-0x6d7f 021907 istore 1 ,contw 
-0x6d80 021908 setarg 0x01ff 
-0x6d81 021909 istore 2 ,contw 
-0x6d82 021910 fetch 1 ,mem_credit_given 
-0x6d83 021911 istore 1 ,contw 
-0x6d84 021912 fetch 1 ,mem_hiufcs_spp_wcredits 
-0x6d85 021913 istore 1 ,contw 
-0x6d86 021914 jam 0 ,mem_credit_given 
-0x6d87 021915 rtn 
-:      021917 rfcomm_increase_credit_given:
-0x6d88 021918 fetch 2 ,mem_current_length 
-0x6d89 021919 rtn blank 
-0x6d8a 021920 fetch 1 ,mem_credit_given 
-0x6d8b 021921 increase 1 ,pdata 
-0x6d8c 021922 store 1 ,mem_credit_given 
-0x6d8d 021923 rtn 
-:      021925 spp_process_rx_data:
-0x6d8e 021926 set1 mark_ext_patch ,mark 
-0x6d8f 021927 bpatch patch39_2 ,mem_patch39 
-0x6d90 021928 fetch 2 ,mem_current_length 
-0x6d91 021929 copy pdata ,loopcnt 
-0x6d92 021930 call uartd_prepare_tx 
-0x6d93 021931 fetch 2 ,mem_rfcomm_uih_payload_ptr 
-0x6d94 021932 copy pdata ,contr 
-0x6d95 021933 call uart_copy_tx_bytes 
-0x6d96 021934 branch uartd_send 
-:      021936 spp_tx_rfcomm_packet:
-0x6d97 021937 set1 mark_ext_patch ,mark 
-0x6d98 021938 bpatch patch39_3 ,mem_patch39 
-0x6d99 021940 fetch 1 ,mem_remote_credits 
-0x6d9a 021941 rtn blank 
-0x6d9b 021942 increase -1 ,pdata 
-0x6d9c 021943 store 1 ,mem_remote_credits 
-0x6d9d 021944 fetch 2 ,mem_pn_max_frame_size 
-0x6d9e 021945 fetcht 2 ,mem_current_packet_length 
-0x6d9f 021946 isub temp ,null 
-0x6da0 021947 branch spp_tx_rfcomm_from_uart ,positive 
-0x6da1 021948 store 2 ,mem_current_packet_length 
-:      021949 spp_tx_rfcomm_from_uart:
-0x6da2 021950 fetch 1 ,mem_credit_given 
-0x6da3 021951 branch spp_tx_rfcomm_from_uart_without_credit ,blank 
-0x6da4 021952 jam 1 ,mem_rfcomm_send_offset 
-0x6da5 021953 fetch 1 ,mem_hiufcs_spp_wcredits 
-0x6da6 021954 store 1 ,mem_rfcomm_send_fcs 
-0x6da7 021955 setarg rsp_rx_uih_wdata 
-0x6da8 021956 store 1 ,mem_rfcomm_send_frame_type 
-0x6da9 021957 branch spp_tx_rfcomm_from_uart_common 
-:      021958 spp_tx_rfcomm_from_uart_without_credit:
-0x6daa 021959 jam 0 ,mem_rfcomm_send_offset 
-0x6dab 021960 fetch 1 ,mem_hiufcs_spp 
-0x6dac 021961 store 1 ,mem_rfcomm_send_fcs 
-0x6dad 021962 setarg rsp_tx_uih 
-0x6dae 021963 store 1 ,mem_rfcomm_send_frame_type 
-:      021964 spp_tx_rfcomm_from_uart_common:
-0x6daf 021965 set1 mark_ext_patch ,mark 
-0x6db0 021966 bpatch patch39_4 ,mem_patch39 
-0x6db1 021967 fetch 1 ,mem_current_packet_length 
-0x6db2 021968 sub pdata ,127 ,null 
-0x6db3 021969 branch spp_tx_rfcomm_from_uart_common0 ,positive 
-0x6db4 021970 fetch 1 ,mem_rfcomm_send_offset 
-0x6db5 021971 increase 1 ,pdata 
-0x6db6 021972 store 1 ,mem_rfcomm_send_offset 
-:      021973 spp_tx_rfcomm_from_uart_common0:
-0x6db7 021974 call get_rfcomm_snd_adss 
-0x6db8 021975 fetch 2 ,mem_current_packet_length 
-0x6db9 021976 increase 8 ,pdata 
-0x6dba 021977 fetcht 1 ,mem_rfcomm_send_offset 
-0x6dbb 021978 iadd temp ,rega 
-0x6dbc 021980 call l2cap_malloc 
-0x6dbd 021981 store 2 ,mem_rfcomm_tx_buff_ptr 
-0x6dbe 021982 increase 4 ,pdata 
-0x6dbf 021983 store 2 ,mem_rfcomm_tx_payload_ptr 
-0x6dc0 021984 copy pdata ,contw 
-0x6dc1 021985 fetch 1 ,mem_rfcomm_send_adss 
-0x6dc2 021986 istore 1 ,contw 
-0x6dc3 021987 fetch 1 ,mem_rfcomm_send_frame_type 
-0x6dc4 021988 istore 1 ,contw 
-0x6dc5 021989 call spp_tx_write_length 
-0x6dc6 021990 call spp_tx_write_given_credit 
-0x6dc7 021991 call get_uart_rrptr 
-0x6dc8 021992 fetch 1 ,mem_current_packet_length 
-0x6dc9 021993 copy pdata ,loopcnt 
-0x6dca 021994 call uart_copy_rx_bytes 
-0x6dcb 021995 fetch 1 ,mem_rfcomm_send_fcs 
-0x6dcc 021996 istore 1 ,contw 
-0x6dcd 021997 fetch 2 ,mem_rfcomm_tx_buff_ptr 
-0x6dce 021998 copy pdata ,contw 
-0x6dcf 021999 fetch 2 ,mem_current_packet_length 
-0x6dd0 022000 fetcht 1 ,mem_rfcomm_send_offset 
-0x6dd1 022001 iadd temp ,pdata 
-0x6dd2 022002 increase 4 ,pdata 
-0x6dd3 022003 istore 2 ,contw 
-0x6dd4 022004 fetch 2 ,mem_rfcomm_remote_cid 
-0x6dd5 022005 istore 2 ,contw 
-0x6dd6 022006 jam 0 ,mem_credit_given 
-0x6dd7 022007 branch spp_send_end 
-:      022009 spp_tx_write_length:
-0x6dd8 022010 fetch 2 ,mem_current_packet_length 
-0x6dd9 022011 sub pdata ,0x7f ,null 
-0x6dda 022012 nbranch spp_tx_write_long_packet ,positive 
-0x6ddb 022013 lshift pdata ,pdata 
-0x6ddc 022014 set1 0 ,pdata 
-0x6ddd 022015 istore 1 ,contw 
-0x6dde 022016 rtn 
-:      022017 spp_tx_write_long_packet:
-0x6ddf 022018 fetch 2 ,mem_current_packet_length 
-0x6de0 022019 rshift3 pdata ,pdata 
-0x6de1 022020 rshift4 pdata ,temp 
-0x6de2 022021 and_into 0x7f ,pdata 
-0x6de3 022022 lshift pdata ,pdata 
-0x6de4 022023 set0 0 ,pdata 
-0x6de5 022024 istore 1 ,contw 
-0x6de6 022025 istoret 1 ,contw 
-0x6de7 022026 rtn 
-:      022027 spp_tx_write_given_credit:
-0x6de8 022028 fetch 1 ,mem_credit_given 
-0x6de9 022029 rtn blank 
-0x6dea 022030 istore 1 ,contw 
-0x6deb 022031 rtn 
-:      022036 scheduler_process:
-0x6dec 022037 set1 mark_ext_patch ,mark 
-0x6ded 022038 bpatch patch33_5 ,mem_patch33 
-0x6dee 022039 call check_51cmd 
-0x6def 022040 call app_process_bb_event 
-0x6df0 022041 call process_conn_sm 
-0x6df1 022043 set1 mark_ext_patch ,mark 
-0x6df2 022044 bpatch patch33_6 ,mem_patch33 
-0x6df3 022045 call sp_calc_sequence 
-0x6df4 022046 call simple_pairing_sequence 
-0x6df5 022047 call master_simple_paring_sequence 
-0x6df6 022049 set1 mark_ext_patch ,mark 
-0x6df7 022050 bpatch patch33_7 ,mem_patch33 
-0x6df8 022051 fetch 1 ,mem_device_option 
-0x6df9 022052 rtneq dvc_op_hci 
-0x6dfa 022054 call l2cap_malloc_is_fifo_full 
-0x6dfb 022055 nrtn blank 
-0x6dfc 022057 call l2cap_call_proc_sigal_pending 
-:      022058 scheduler_process1:
-0x6dfd 022059 call l2cap_malloc_is_fifo_full 
-0x6dfe 022060 nrtn blank 
-0x6dff 022061 set1 mark_ext_patch ,mark 
-0x6e00 022062 bpatch patch34_0 ,mem_patch34 
-0x6e01 022064 call process_upper_sm 
-0x6e02 022065 call l2cap_send_config_req 
-0x6e03 022066 call rfcomm_send_more_pkt 
-:      022067 scheduler_process0:
-0x6e04 022068 call scheduler_tx_disconnect_hid 
-0x6e05 022069 set1 mark_ext_patch ,mark 
-0x6e06 022070 bpatch patch34_1 ,mem_patch34 
-0x6e07 022071 call l2cap_malloc_is_fifo_full 
-0x6e08 022072 nrtn blank 
-0x6e09 022073 branch app_process_bt 
-:      022075 scheduler_tx_disconnect_hid:
-0x6e0a 022076 set1 mark_ext_patch ,mark 
-0x6e0b 022077 bpatch patch34_2 ,mem_patch34 
-0x6e0c 022078 fetch 1 ,mem_control_tasks 
-0x6e0d 022079 bbit1 l2cap_disconnect_interrupt ,l2cap_disconnect_interrupt_req 
-0x6e0e 022080 bbit1 l2cap_disconnect_control ,l2cap_disconnect_control_req 
-0x6e0f 022081 rtn 
-:      022083 scheduler_tx_l2cap_pkt:
-0x6e10 022084 set1 mark_ext_patch ,mark 
-0x6e11 022085 bpatch patch34_3 ,mem_patch34 
-0x6e12 022086 call l2cap_malloc_is_fifo_empty 
-0x6e13 022087 rtn blank 
-0x6e14 022088 fetch 1 ,mem_op 
-0x6e15 022089 rtnbit1 op_txl2cap 
-0x6e16 022090 call l2cap_malloc_fifo_out 
-0x6e17 022091 store 2 ,mem_txptr 
-0x6e18 022092 copy pdata ,contr 
-0x6e19 022093 ifetch 2 ,contr 
-0x6e1a 022094 increase 4 ,pdata 
-0x6e1b 022095 store 2 ,mem_tx_len 
-0x6e1c 022096 jam 6 ,mem_tx_lch 
-0x6e1d 022097 set1 mark_ext_patch ,mark 
-0x6e1e 022098 bpatch patch34_4 ,mem_patch34 
-0x6e1f 022099 fetch 2 ,mem_l2cap_tx_multi_offset 
-0x6e20 022100 branch scheduler_tx_l2cap_start_pkt ,blank 
-0x6e21 022101 fetch 1 ,mem_op 
-0x6e22 022102 rtnbit0 op_pkt_comp 
-0x6e23 022103 set0 op_pkt_comp ,pdata 
-0x6e24 022104 store 1 ,mem_op 
-0x6e25 022105 jam 5 ,mem_tx_lch 
-0x6e26 022106 fetcht 2 ,mem_l2cap_tx_multi_offset 
-0x6e27 022107 fetch 2 ,mem_txptr 
-0x6e28 022108 iadd temp ,pdata 
-0x6e29 022109 store 2 ,mem_txptr 
-0x6e2a 022110 fetch 2 ,mem_tx_len 
-0x6e2b 022111 isub temp ,pdata 
-0x6e2c 022112 store 2 ,mem_tx_len 
-:      022113 scheduler_tx_l2cap_start_pkt:
-0x6e2d 022114 set1 mark_ext_patch ,mark 
-0x6e2e 022115 bpatch patch34_5 ,mem_patch34 
-0x6e2f 022116 fetch 2 ,mem_tx_len 
-0x6e30 022117 branch assert ,blank 
-0x6e31 022118 arg l2cap_max_pkt_len ,temp 
-0x6e32 022119 isub temp ,pdata 
-0x6e33 022120 nbranch scheduler_tx_l2cap_last_pkt ,positive 
-0x6e34 022121 set1 mark_ext_patch ,mark 
-0x6e35 022122 bpatch patch34_6 ,mem_patch34 
-0x6e36 022123 storet 2 ,mem_tx_len 
-0x6e37 022124 fetch 2 ,mem_l2cap_tx_multi_offset 
-0x6e38 022125 iadd temp ,pdata 
-0x6e39 022126 store 2 ,mem_l2cap_tx_multi_offset 
-0x6e3a 022127 branch scheduler_tx_l2cap_pkt_end 
-:      022128 scheduler_tx_l2cap_last_pkt:
-0x6e3b 022129 setarg 0 
-0x6e3c 022130 store 2 ,mem_l2cap_tx_multi_offset 
-:      022131 scheduler_tx_l2cap_pkt_end:
-0x6e3d 022132 fetch 1 ,mem_op 
-0x6e3e 022133 set1 op_txl2cap ,pdata 
-0x6e3f 022134 store 1 ,mem_op 
-0x6e40 022135 rtn 
-:      022137 scheduler_start_upper_sm:
-0x6e41 022138 fetch 1 ,mem_ui_profile_supported 
-0x6e42 022139 bbit1 support_hid ,scheduler_start_upper_sm_hid 
-0x6e43 022140 jam uppersm_reconn_sdp_conn ,mem_upper_sm_reconn 
-0x6e44 022141 rtn 
-:      022142 scheduler_start_upper_sm_hid:
-0x6e45 022143 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
-0x6e46 022144 rtn 
-:      022146 process_upper_sm:
-0x6e47 022147 fetch 1 ,memui_reconnect_mode 
-0x6e48 022148 nbranch process_upper_sm_reconn ,blank 
-:      022149 process_upper_sm_remote_page:
-0x6e49 022150 fetch 1 ,mem_upper_sm_remote_page 
-0x6e4a 022152 rtn blank 
-0x6e4b 022154 jam 0 ,mem_upper_sm_remote_page 
-:      022155 process_upper_sm_rp_wait:
-0x6e4c 022156 rtn 
-:      022159 process_upper_sm_reconn:
-0x6e4d 022160 set1 mark_ext_patch ,mark 
-0x6e4e 022161 bpatch patch34_7 ,mem_patch34 
-0x6e4f 022162 fetch 1 ,mem_upper_sm_reconn 
-0x6e50 022163 rtn blank 
-0x6e51 022164 beq uppersm_reconn_sdp_conn ,process_upper_sm_reconn_sdp_conn 
-0x6e52 022165 beq uppersm_reconn_sdp_conn_wait ,process_upper_sm_reconn_sdp_conn_wait 
-0x6e53 022166 beq uppersm_reconn_sdp_cfg ,process_upper_sm_reconn_sdp_cfg 
-0x6e54 022167 beq uppersm_reconn_sdp_cfg_wait ,process_upper_sm_reconn_sdp_cfg_wait 
-0x6e55 022168 beq uppersm_reconn_ss_spp ,process_upper_sm_reconn_ss_spp 
-0x6e56 022169 beq uppersm_reconn_ss_spp_wait ,process_upper_sm_reconn_ss_spp_wait 
-0x6e57 022170 beq uppersm_reconn_sdp_disconn ,process_upper_sm_reconn_sdp_disconn 
-0x6e58 022171 beq uppersm_reconn_sdp_disconn_wait ,process_upper_sm_reconn_sdp_disconn_wait 
-0x6e59 022172 beq uppersm_reconn_hid_ctrl_conn ,process_upper_sm_reconn_hid_ctrl_conn 
-0x6e5a 022173 beq uppersm_reconn_hid_ctrl_conn_wait ,process_upper_sm_reconn_hid_ctrl_conn_wait 
-0x6e5b 022174 beq uppersm_reconn_hid_ctrl_cfg ,process_upper_sm_reconn_hid_ctrl_cfg 
-0x6e5c 022175 beq uppersm_reconn_hid_ctrl_cfg_wait ,process_upper_sm_reconn_hid_ctrl_cfg_wait 
-0x6e5d 022176 beq uppersm_reconn_hid_int_conn ,process_upper_sm_reconn_hid_int_conn 
-0x6e5e 022177 beq uppersm_reconn_hid_int_conn_wait ,process_upper_sm_reconn_hid_int_conn_wait 
-0x6e5f 022178 beq uppersm_reconn_hid_int_cfg ,process_upper_sm_reconn_hid_int_cfg 
-0x6e60 022179 beq uppersm_reconn_hid_int_cfg_wait ,process_upper_sm_reconn_hid_int_cfg_wait 
-0x6e61 022180 beq uppersm_reconn_rfcomm_conn ,process_upper_sm_reconn_rfcomm_conn 
-0x6e62 022181 beq uppersm_reconn_rfcomm_conn_wait ,process_upper_sm_reconn_rfcomm_conn_wait 
-0x6e63 022182 beq uppersm_reconn_rfcomm_cfg ,process_upper_sm_reconn_rfcomm_cfg 
-0x6e64 022183 beq uppersm_reconn_rfcomm_cfg_wait ,process_upper_sm_reconn_rfcomm_cfg_wait 
-0x6e65 022184 beq uppersm_reconn_rfcomm_sabm ,process_upper_sm_reconn_rfcomm_sabm 
-0x6e66 022185 beq uppersm_reconn_rfcomm_sabm_wait ,process_upper_sm_reconn_rfcomm_sabm_wait 
-0x6e67 022186 beq uppersm_reconn_spp_cmd_pn ,process_upper_sm_reconn_spp_cmd_pn 
-0x6e68 022187 beq uppersm_reconn_spp_cmd_pn_wait ,process_upper_sm_reconn_spp_cmd_pn_wait 
-0x6e69 022188 beq uppersm_reconn_spp_sabm ,process_upper_sm_reconn_spp_sabm 
-0x6e6a 022189 beq uppersm_reconn_spp_sabm_wait ,process_upper_sm_reconn_spp_sabm_wait 
-0x6e6b 022190 beq uppersm_reconn_spp_cmd_ms ,process_upper_sm_reconn_spp_cmd_ms 
-0x6e6c 022191 beq uppersm_reconn_spp_cmd_ms_wait ,process_upper_sm_reconn_spp_cmd_ms_wait 
-:      022192 process_upper_sm_reconn_wait:
-0x6e6d 022193 rtn 
-:      022194 process_upper_sm_reconn_sdp_conn:
-0x6e6e 022195 call upper_sm_send_sdp_conn 
-0x6e6f 022196 jam uppersm_reconn_sdp_conn_wait ,mem_upper_sm_reconn 
-0x6e70 022197 fetch 1 ,mem_sdp_state 
-0x6e71 022198 set1 l2cap_channel_state_conn_req ,pdata 
-0x6e72 022199 store 1 ,mem_sdp_state 
-0x6e73 022200 rtn 
-:      022201 process_upper_sm_reconn_sdp_cfg:
-0x6e74 022202 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
-0x6e75 022203 fetch 1 ,mem_sdp_state 
-0x6e76 022204 rtnbit1 l2cap_channel_state_snd_cfg_req 
-0x6e77 022205 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
-0x6e78 022206 call upper_sm_send_sdp_cfg 
-0x6e79 022207 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
-0x6e7a 022208 fetch 1 ,mem_sdp_state 
-0x6e7b 022209 set1 l2cap_channel_state_snd_cfg_req ,pdata 
-0x6e7c 022210 store 1 ,mem_sdp_state 
-0x6e7d 022211 rtn 
-:      022212 process_upper_sm_reconn_ss_spp:
-0x6e7e 022213 call l2cap_malloc_is_fifo_empty 
-0x6e7f 022214 nrtn blank 
-0x6e80 022215 call upper_sm_send_ss_spp 
-0x6e81 022216 jam uppersm_reconn_ss_spp_wait ,mem_upper_sm_reconn 
-0x6e82 022217 rtn 
-:      022218 process_upper_sm_reconn_sdp_disconn:
-0x6e83 022219 call upper_sm_send_sdp_disconn 
-0x6e84 022220 jam uppersm_reconn_sdp_disconn_wait ,mem_upper_sm_reconn 
-0x6e85 022221 rtn 
-:      022222 process_upper_sm_reconn_hid_ctrl_conn:
-0x6e86 022223 call upper_sm_send_hid_ctrl_conn 
-0x6e87 022224 jam uppersm_reconn_hid_ctrl_conn_wait ,mem_upper_sm_reconn 
-0x6e88 022225 fetch 1 ,mem_hid_control_state 
-0x6e89 022226 set1 l2cap_channel_state_conn_req ,pdata 
-0x6e8a 022227 store 1 ,mem_hid_control_state 
-0x6e8b 022228 rtn 
-:      022229 process_upper_sm_reconn_hid_ctrl_cfg:
-0x6e8c 022230 call upper_sm_send_hid_ctrl_cfg 
-0x6e8d 022231 jam uppersm_reconn_hid_ctrl_cfg_wait ,mem_upper_sm_reconn 
-0x6e8e 022232 fetch 1 ,mem_hid_control_state 
-0x6e8f 022233 set1 l2cap_channel_state_snd_cfg_req ,pdata 
-0x6e90 022234 store 1 ,mem_hid_control_state 
-0x6e91 022235 rtn 
-:      022236 process_upper_sm_reconn_hid_int_conn:
-0x6e92 022237 call upper_sm_send_hid_int_conn 
-0x6e93 022238 jam uppersm_reconn_hid_int_conn_wait ,mem_upper_sm_reconn 
-0x6e94 022239 fetch 1 ,mem_hid_interrupt_state 
-0x6e95 022240 set1 l2cap_channel_state_conn_req ,pdata 
-0x6e96 022241 store 1 ,mem_hid_interrupt_state 
-0x6e97 022242 rtn 
-:      022243 process_upper_sm_reconn_hid_int_cfg:
-0x6e98 022244 call upper_sm_send_hid_int_cfg 
-0x6e99 022245 jam uppersm_reconn_hid_int_cfg_wait ,mem_upper_sm_reconn 
-0x6e9a 022246 fetch 1 ,mem_hid_interrupt_state 
-0x6e9b 022247 set1 l2cap_channel_state_snd_cfg_req ,pdata 
-0x6e9c 022248 store 1 ,mem_hid_interrupt_state 
-0x6e9d 022249 rtn 
-:      022250 process_upper_sm_reconn_rfcomm_conn:
-0x6e9e 022251 call upper_sm_send_rfcomm_conn 
-0x6e9f 022252 jam uppersm_reconn_rfcomm_conn_wait ,mem_upper_sm_reconn 
-0x6ea0 022253 fetch 1 ,mem_rfcomm_state 
-0x6ea1 022254 set1 l2cap_channel_state_conn_req ,pdata 
-0x6ea2 022255 store 1 ,mem_rfcomm_state 
-0x6ea3 022256 rtn 
-:      022257 process_upper_sm_reconn_rfcomm_cfg:
-0x6ea4 022258 call upper_sm_send_rfcomm_cfg 
-0x6ea5 022259 jam uppersm_reconn_rfcomm_cfg_wait ,mem_upper_sm_reconn 
-0x6ea6 022260 fetch 1 ,mem_rfcomm_state 
-0x6ea7 022261 set1 l2cap_channel_state_snd_cfg_req ,pdata 
-0x6ea8 022262 store 1 ,mem_rfcomm_state 
-0x6ea9 022263 rtn 
-:      022264 process_upper_sm_reconn_rfcomm_sabm:
-0x6eaa 022265 call upper_sm_send_rfcomm_sabm 
-0x6eab 022266 jam uppersm_reconn_rfcomm_sabm_wait ,mem_upper_sm_reconn 
-0x6eac 022267 fetch 1 ,mem_rfcomm_state 
-0x6ead 022268 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
-0x6eae 022269 store 1 ,mem_rfcomm_state 
-0x6eaf 022270 rtn 
-:      022271 process_upper_sm_reconn_spp_cmd_pn:
-0x6eb0 022272 call upper_sm_send_spp_cmd_pn 
-0x6eb1 022273 fetch 1 ,mem_spp_state 
-0x6eb2 022274 set1 rfcomm_channel_state_pn_cmd 
-0x6eb3 022275 store 1 ,mem_spp_state 
-0x6eb4 022276 jam uppersm_reconn_spp_cmd_pn_wait ,mem_upper_sm_reconn 
-0x6eb5 022277 rtn 
-:      022278 process_upper_sm_reconn_spp_sabm:
-0x6eb6 022279 call upper_sm_send_spp_sabm 
-0x6eb7 022280 fetch 1 ,mem_spp_state 
-0x6eb8 022281 set1 rfcomm_channel_state_sabm 
-0x6eb9 022282 store 1 ,mem_spp_state 
-0x6eba 022283 jam uppersm_reconn_spp_sabm_wait ,mem_upper_sm_reconn 
-0x6ebb 022284 fetch 1 ,mem_remote_spp_channel 
-0x6ebc 022285 lshift3 pdata ,pdata 
-0x6ebd 022286 or_into 3 ,pdata 
-0x6ebe 022287 arg mem_hiufcs_spp ,temp 
-0x6ebf 022288 storet 2 ,mem_contw_temp 
-0x6ec0 022289 branch rfcomm_save_fcs_uih 
-:      022290 process_upper_sm_reconn_spp_cmd_ms:
-0x6ec1 022291 call upper_sm_send_spp_cmd_ms 
-0x6ec2 022292 fetch 1 ,mem_spp_state 
-0x6ec3 022293 set1 rfcomm_channel_state_snd_ms_cmd 
-0x6ec4 022294 store 1 ,mem_spp_state 
-0x6ec5 022295 jam uppersm_reconn_spp_cmd_ms_wait ,mem_upper_sm_reconn 
-0x6ec6 022296 rtn 
-:      022298 process_upper_sm_reconn_sdp_conn_wait:
-0x6ec7 022299 fetch 1 ,mem_sdp_state 
-0x6ec8 022300 rtnbit0 l2cap_channel_state_conn_res 
-0x6ec9 022301 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
-0x6eca 022302 branch process_upper_sm_reconn 
-:      022303 process_upper_sm_reconn_sdp_cfg_wait:
-0x6ecb 022304 fetch 1 ,mem_sdp_state 
-0x6ecc 022305 rtnne l2cap_channel_setup_complete 
-0x6ecd 022306 jam uppersm_reconn_ss_spp ,mem_upper_sm_reconn 
-:      022307 process_upper_sm_reconn_ss_spp_wait:
-0x6ece 022308 fetch 1 ,mem_message_to_uppersm 
-0x6ecf 022309 rtnne recieve_ss_reasult_hf 
-0x6ed0 022310 jam 0 ,mem_message_to_uppersm 
-0x6ed1 022311 jam uppersm_reconn_sdp_disconn ,mem_upper_sm_reconn 
-0x6ed2 022312 branch process_upper_sm_reconn 
-:      022313 process_upper_sm_reconn_sdp_disconn_wait:
-0x6ed3 022314 fetch 1 ,mem_sdp_state 
-0x6ed4 022315 nrtn blank 
-0x6ed5 022316 fetch 1 ,mem_ui_profile_supported 
-0x6ed6 022317 bbit1 support_hid ,process_upper_sm_reconn_setup_hid 
-0x6ed7 022318 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
-0x6ed8 022319 branch process_upper_sm_reconn_termination 
-:      022320 process_upper_sm_reconn_hid_ctrl_conn_wait:
-0x6ed9 022321 fetch 1 ,mem_hid_control_state 
-0x6eda 022322 rtnbit0 l2cap_channel_state_conn_res 
-0x6edb 022323 jam uppersm_reconn_hid_ctrl_cfg ,mem_upper_sm_reconn 
-0x6edc 022324 branch process_upper_sm_reconn 
-:      022325 process_upper_sm_reconn_hid_ctrl_cfg_wait:
-0x6edd 022326 fetch 1 ,mem_hid_control_state 
-0x6ede 022327 rtnne l2cap_channel_setup_complete 
-0x6edf 022328 jam uppersm_reconn_hid_int_conn ,mem_upper_sm_reconn 
-0x6ee0 022329 branch process_upper_sm_reconn 
-:      022330 process_upper_sm_reconn_hid_int_conn_wait:
-0x6ee1 022331 fetch 1 ,mem_hid_interrupt_state 
-0x6ee2 022332 rtnbit0 l2cap_channel_state_conn_res 
-0x6ee3 022333 jam uppersm_reconn_hid_int_cfg ,mem_upper_sm_reconn 
-0x6ee4 022334 branch process_upper_sm_reconn 
-:      022335 process_upper_sm_reconn_hid_int_cfg_wait:
-0x6ee5 022336 fetch 1 ,mem_hid_interrupt_state 
-0x6ee6 022337 rtnne l2cap_channel_setup_complete 
-0x6ee7 022338 fetch 1 ,mem_ui_profile_supported 
-0x6ee8 022339 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
-0x6ee9 022340 branch process_upper_sm_reconn_termination 
-:      022341 process_upper_sm_reconn_rfcomm_conn_wait:
-0x6eea 022342 fetch 1 ,mem_rfcomm_state 
-0x6eeb 022343 rtnbit0 l2cap_channel_state_conn_res 
-0x6eec 022344 jam uppersm_reconn_rfcomm_cfg ,mem_upper_sm_reconn 
-0x6eed 022345 branch process_upper_sm_reconn 
-:      022346 process_upper_sm_reconn_rfcomm_cfg_wait:
-0x6eee 022347 fetch 1 ,mem_rfcomm_state 
-0x6eef 022348 rtnne l2cap_channel_setup_complete 
-0x6ef0 022349 jam uppersm_reconn_rfcomm_sabm ,mem_upper_sm_reconn 
-0x6ef1 022350 branch process_upper_sm_reconn 
-:      022351 process_upper_sm_reconn_rfcomm_sabm_wait:
-0x6ef2 022352 fetch 1 ,mem_rfcomm_state 
-0x6ef3 022353 rtnne l2cap_channel_rfcomm_dlci0_opened 
-0x6ef4 022354 fetch 1 ,mem_ui_profile_supported 
-0x6ef5 022355 bbit1 support_spp ,process_upper_sm_reconn_setup_spp 
-0x6ef6 022356 branch process_upper_sm_reconn_termination 
-:      022357 process_upper_sm_reconn_spp_cmd_pn_wait:
-0x6ef7 022358 fetch 1 ,mem_spp_state 
-0x6ef8 022359 rtnbit0 rfcomm_channel_state_pn_res 
-0x6ef9 022360 jam uppersm_reconn_spp_sabm ,mem_upper_sm_reconn 
-0x6efa 022361 branch process_upper_sm_reconn 
-:      022362 process_upper_sm_reconn_spp_sabm_wait:
-0x6efb 022363 fetch 1 ,mem_spp_state 
-0x6efc 022364 rtnbit0 rfcomm_channel_state_ua 
-0x6efd 022365 jam uppersm_reconn_spp_cmd_ms ,mem_upper_sm_reconn 
-0x6efe 022366 branch process_upper_sm_reconn 
-:      022367 process_upper_sm_reconn_spp_cmd_ms_wait:
-0x6eff 022368 fetch 1 ,mem_spp_state 
-0x6f00 022369 rtnne rfcomm_channel_setup_complete 
-0x6f01 022370 branch process_upper_sm_reconn_termination 
-:      022372 process_upper_sm_reconn_setup_hid:
-0x6f02 022373 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
-0x6f03 022374 branch process_upper_sm_reconn 
-:      022376 process_upper_sm_reconn_setup_rfcomm:
-0x6f04 022377 jam uppersm_reconn_rfcomm_conn ,mem_upper_sm_reconn 
-0x6f05 022378 branch process_upper_sm_reconn 
-:      022379 process_upper_sm_reconn_setup_spp:
-0x6f06 022380 jam uppersm_reconn_spp_cmd_pn ,mem_upper_sm_reconn 
-0x6f07 022381 branch process_upper_sm_reconn 
-:      022385 process_upper_sm_reconn_termination:
-0x6f08 022386 jam 0 ,mem_upper_sm_reconn 
-0x6f09 022387 rtn 
-:      022388 upper_sm_send_sdp_conn:
-0x6f0a 022389 set1 mark_ext_patch ,mark 
-0x6f0b 022390 bpatch patch35_0 ,mem_patch35 
-0x6f0c 022391 call l2cap_malloc_signal_channel 
-0x6f0d 022392 setarg psm_sdp 
-0x6f0e 022393 copy pdata ,temp 
-0x6f0f 022394 setarg l2cap_sdp_channel 
-0x6f10 022395 copy pdata ,timeup 
-0x6f11 022396 branch ml2cap_send_signal_connect_req 
-:      022398 upper_sm_send_sdp_cfg:
-0x6f12 022399 set1 mark_ext_patch ,mark 
-0x6f13 022400 bpatch patch35_1 ,mem_patch35 
-0x6f14 022401 call l2cap_malloc_signal_channel 
-0x6f15 022402 fetch 2 ,mem_sdp_remote_cid 
-0x6f16 022403 copy pdata ,temp 
-0x6f17 022404 branch ml2cap_send_signal_config_req 
-:      022406 upper_sm_send_sdp_disconn:
-0x6f18 022407 set1 mark_ext_patch ,mark 
-0x6f19 022408 bpatch patch35_2 ,mem_patch35 
-0x6f1a 022409 call l2cap_malloc_signal_channel 
-0x6f1b 022410 fetch 2 ,mem_sdp_remote_cid 
-0x6f1c 022411 copy pdata ,temp 
-0x6f1d 022412 arg l2cap_sdp_channel ,timeup 
-0x6f1e 022413 call ml2cap_send_signal_disconn_req 
-0x6f1f 022414 fetch 1 ,mem_sdp_state 
-0x6f20 022415 set0 l2cap_channel_state_rcv_cfg_res ,pdata 
-0x6f21 022416 store 1 ,mem_sdp_state 
-0x6f22 022417 rtn 
-:      022419 upper_sm_send_ss_spp:
-0x6f23 022420 set1 mark_ext_patch ,mark 
-0x6f24 022421 bpatch patch35_3 ,mem_patch35 
-0x6f25 022422 call l2cap_malloc_sdp_channel 
-0x6f26 022423 call sdp_send_spp_request 
-0x6f27 022424 branch msdp_send_req_done 
-:      022426 upper_sm_send_rfcomm_conn:
-0x6f28 022427 set1 mark_ext_patch ,mark 
-0x6f29 022428 bpatch patch35_4 ,mem_patch35 
-0x6f2a 022429 call l2cap_malloc_signal_channel 
-0x6f2b 022430 setarg psm_rfcomm 
-0x6f2c 022431 copy pdata ,temp 
-0x6f2d 022432 setarg l2cap_rfcomm_channel 
-0x6f2e 022433 copy pdata ,timeup 
-0x6f2f 022434 branch ml2cap_send_signal_connect_req 
-:      022436 upper_sm_send_rfcomm_cfg:
-0x6f30 022437 set1 mark_ext_patch ,mark 
-0x6f31 022438 bpatch patch35_5 ,mem_patch35 
-0x6f32 022439 call l2cap_malloc_signal_channel 
-0x6f33 022440 fetch 2 ,mem_rfcomm_remote_cid 
-0x6f34 022441 copy pdata ,temp 
-0x6f35 022442 branch ml2cap_send_signal_config_req 
-:      022444 upper_sm_send_hid_ctrl_conn:
-0x6f36 022445 set1 mark_ext_patch ,mark 
-0x6f37 022446 bpatch patch35_6 ,mem_patch35 
-0x6f38 022447 call l2cap_malloc_signal_channel 
-0x6f39 022448 setarg psm_hid_control 
-0x6f3a 022449 copy pdata ,temp 
-0x6f3b 022450 setarg l2cap_hid_control_channel 
-0x6f3c 022451 copy pdata ,timeup 
-0x6f3d 022452 branch ml2cap_send_signal_connect_req 
-:      022454 upper_sm_send_hid_ctrl_cfg:
-0x6f3e 022455 set1 mark_ext_patch ,mark 
-0x6f3f 022456 bpatch patch35_7 ,mem_patch35 
-0x6f40 022457 call l2cap_malloc_signal_channel 
-0x6f41 022458 fetch 2 ,mem_hid_ctrl_remote_cid 
-0x6f42 022459 copy pdata ,temp 
-0x6f43 022460 branch ml2cap_send_signal_config_req 
-:      022462 upper_sm_send_hid_int_conn:
-0x6f44 022463 set1 mark_ext_patch ,mark 
-0x6f45 022464 bpatch patch36_0 ,mem_patch36 
-0x6f46 022465 call l2cap_malloc_signal_channel 
-0x6f47 022466 setarg psm_hid_interrupt 
-0x6f48 022467 copy pdata ,temp 
-0x6f49 022468 setarg l2cap_hid_interrupt_channel 
-0x6f4a 022469 copy pdata ,timeup 
-0x6f4b 022470 branch ml2cap_send_signal_connect_req 
-:      022472 upper_sm_send_hid_int_cfg:
-0x6f4c 022473 set1 mark_ext_patch ,mark 
-0x6f4d 022474 bpatch patch36_1 ,mem_patch36 
-0x6f4e 022475 call l2cap_malloc_signal_channel 
-0x6f4f 022476 fetch 2 ,mem_hid_int_remote_cid 
-0x6f50 022477 copy pdata ,temp 
-0x6f51 022478 branch ml2cap_send_signal_config_req 
-:      022480 upper_sm_send_rfcomm_sabm:
-0x6f52 022481 set1 mark_ext_patch ,mark 
-0x6f53 022482 bpatch patch36_2 ,mem_patch36 
-0x6f54 022483 call l2cap_malloc_rfcomm_channel 
-0x6f55 022485 jam 3 ,mem_current_adss 
-0x6f56 022486 jam 0x1c ,mem_current_fcs 
-0x6f57 022487 call rfcomm_send_sabm 
-0x6f58 022488 jam 1 ,mem_rfcomm_initiator 
-0x6f59 022489 rtn 
-:      022491 upper_sm_send_spp_cmd_pn:
-0x6f5a 022492 set1 mark_ext_patch ,mark 
-0x6f5b 022493 bpatch patch36_3 ,mem_patch36 
-0x6f5c 022494 call l2cap_malloc_rfcomm_channel 
-0x6f5d 022495 fetcht 1 ,mem_remote_spp_channel 
-0x6f5e 022496 call channel_to_dlci 
-0x6f5f 022497 storet 1 ,mem_pn_dlci 
-0x6f60 022498 branch rfcomm_send_param_neg_cmd 
-:      022500 upper_sm_send_spp_sabm:
-0x6f61 022501 set1 mark_ext_patch ,mark 
-0x6f62 022502 bpatch patch36_4 ,mem_patch36 
-0x6f63 022503 call l2cap_malloc_rfcomm_channel 
-0x6f64 022504 fetcht 1 ,mem_pn_dlci 
-0x6f65 022505 call dlci_to_address_cmd 
-0x6f66 022506 call rfcomm_calculate_fcs_sabm 
-0x6f67 022507 store 1 ,mem_current_fcs 
-0x6f68 022508 fetcht 1 ,mem_pn_dlci 
-0x6f69 022509 call dlci_to_address_cmd 
-0x6f6a 022510 storet 1 ,mem_current_adss 
-0x6f6b 022511 branch rfcomm_send_sabm 
-:      022513 upper_sm_send_spp_cmd_ms:
-0x6f6c 022514 set1 mark_ext_patch ,mark 
-0x6f6d 022515 bpatch patch36_5 ,mem_patch36 
-0x6f6e 022516 call l2cap_malloc_rfcomm_channel 
-0x6f6f 022517 fetcht 1 ,mem_pn_dlci 
-0x6f70 022518 call dlci_to_address_cmd 
-0x6f71 022519 branch rfcomm_send_modem_status_cmd 
-:      022532 sdp_process:
-0x6f72 022533 set1 mark_ext_patch ,mark 
-0x6f73 022534 bpatch patch3c_7 ,mem_patch3c 
-0x6f74 022535 fetch 2 ,mem_l2cap_payload_ptr 
-0x6f75 022536 iforce contr 
-0x6f76 022537 ifetch 1 ,contr 
-0x6f77 022538 copy pdata ,regb 
-0x6f78 022539 store 1 ,mem_sdp_pduid 
-0x6f79 022540 ifetch 2 ,contr 
-0x6f7a 022541 store 2 ,mem_sdp_transactionid 
-0x6f7b 022542 ifetch 1 ,contr 
-0x6f7c 022543 lshift8 pdata ,timeup 
-0x6f7d 022544 ifetch 1 ,contr 
-0x6f7e 022545 iadd timeup ,timeup 
-0x6f7f 022546 set1 mark_ext_patch ,mark 
-0x6f80 022547 bpatch patch3d_0 ,mem_patch3d 
-0x6f81 022548 deposit regb 
-0x6f82 022549 beq sdp_service_search_request ,servicesearch_req 
-0x6f83 022550 beq sdp_service_attribute_request ,serviceattribute_req 
-0x6f84 022551 beq sdp_service_search_attribute_request ,servicesearchattribute_req 
-0x6f85 022552 beq sdp_service_search_attribute_response ,servicesearchattribute_res 
-0x6f86 022553 branch sdp_insufficient_resource 
-:      022564 servicesearch_req:
-0x6f87 022565 call ask_serviceclassid 
-0x6f88 022566 compare 1 ,temp ,0xff 
-0x6f89 022567 branch empth_sa_rsp ,true 
-0x6f8a 022568 compare 0xff ,temp ,0xff 
-0x6f8b 022569 branch sdp_invalid_reqest_syntax ,true 
-0x6f8c 022571 ifetch 2 ,contr 
-0x6f8d 022572 store 2 ,mem_sdp_record_maxcnt 
-0x6f8e 022573 increase -2 ,timeup 
-0x6f8f 022575 increase -1 ,timeup 
-0x6f90 022576 nbranch sdp_invalid_pdu_size ,zero 
-0x6f91 022577 arg mem_uuid_search_pat ,timeup 
-0x6f92 022578 ifetch 2 ,timeup 
-0x6f93 022579 rtn blank 
-0x6f94 022580 increase 2 ,timeup 
-0x6f95 022581 call search_uuid 
-0x6f96 022582 call l2cap_get_sdp_tx_payload 
-0x6f97 022583 force 3 ,pdata 
-0x6f98 022584 istore 1 ,contw 
-0x6f99 022585 fetch 2 ,mem_sdp_transactionid 
-0x6f9a 022586 istore 2 ,contw 
-0x6f9b 022587 lshift2 queue ,pdata 
-0x6f9c 022588 add pdata ,5 ,pdata 
-0x6f9d 022589 add pdata ,5 ,regc 
-0x6f9e 022590 byteswap pdata ,pdata 
-0x6f9f 022591 istore 2 ,contw 
-0x6fa0 022592 deposit queue 
-0x6fa1 022593 byteswap pdata ,pdata 
-0x6fa2 022594 istore 2 ,contw 
-0x6fa3 022595 istore 2 ,contw 
-0x6fa4 022596 arg mem_handle_list ,contr 
-0x6fa5 022597 copy queue ,loopcnt 
-0x6fa6 022598 branch servicesearch_req_blank ,zero 
-:      022599 servicesearch_req_loop:
-0x6fa7 022600 ifetch 4 ,contr 
-0x6fa8 022601 istore 4 ,contw 
-0x6fa9 022602 loop servicesearch_req_loop 
-:      022603 servicesearch_req_blank:
-0x6faa 022604 force 0 ,pdata 
-0x6fab 022605 istore 1 ,contw 
-0x6fac 022606 deposit regc 
-0x6fad 022607 store 1 ,mem_sdp_tx_pkt_length 
-0x6fae 022608 branch assert ,blank 
-0x6faf 022609 rtn 
-:      022620 serviceattribute_req:
-0x6fb0 022621 ifetch 4 ,contr 
-0x6fb1 022622 store 4 ,mem_sdp_record_handle 
-0x6fb2 022623 increase -4 ,timeup 
-0x6fb3 022624 iforce temp 
-0x6fb4 022625 ifetch 2 ,contr 
-0x6fb5 022626 byteswap pdata ,pdata 
-0x6fb6 022627 increase -18 ,pdata 
-0x6fb7 022628 store 2 ,mem_sdp_attribute_maxbyte 
-0x6fb8 022629 increase -2 ,timeup 
-0x6fb9 022630 call dataelementtype6 
-0x6fba 022631 branch sdp_invalid_reqest_syntax ,zero 
-0x6fbb 022632 compare 5 ,rega ,0xff 
-0x6fbc 022634 branch serviceattribute_judge_wholerangle ,true 
-:      022635 serviceattribute_isnot_wholerangle:
-0x6fbd 022636 arg mem_attrib_list ,contw 
-0x6fbe 022637 force 0 ,queue 
-0x6fbf 022638 branch serviceattribute_req_loop 
-:      022639 serviceattribute_judge_wholerangle:
-0x6fc0 022640 ifetch 1 ,contr 
-0x6fc1 022641 bne 0xa ,sdp_invalid_reqest_syntax 
-0x6fc2 022642 ifetch 2 ,contr 
-0x6fc3 022643 nbranch serviceattribute_judge_wholerangle_false1 ,blank 
-0x6fc4 022644 ifetch 1 ,contr 
-0x6fc5 022645 bne 0xff ,serviceattribute_judge_wholerangle_false2 
-0x6fc6 022646 ifetch 1 ,contr 
-0x6fc7 022647 bne 0xff ,serviceattribute_judge_wholerangle_false3 
-0x6fc8 022648 increase -5 ,contr 
-0x6fc9 022649 branch serviceattribute_req_all 
-:      022650 serviceattribute_judge_wholerangle_false3:
-0x6fca 022651 increase -5 ,contr 
-0x6fcb 022652 branch serviceattribute_isnot_wholerangle 
-:      022653 serviceattribute_judge_wholerangle_false2:
-0x6fcc 022654 increase -4 ,contr 
-0x6fcd 022655 branch serviceattribute_isnot_wholerangle 
-:      022656 serviceattribute_judge_wholerangle_false1:
-0x6fce 022657 increase -3 ,contr 
-0x6fcf 022658 branch serviceattribute_isnot_wholerangle 
-:      022659 serviceattribute_req_loop:
-0x6fd0 022660 ifetch 1 ,contr 
-0x6fd1 022661 beq 0x09 ,serviceattribute_req_one_id 
-0x6fd2 022662 beq 0x0a ,serviceattribute_req_range_id 
-:      022663 serviceattribute_req_range_id:
-0x6fd3 022664 ifetch 2 ,contr 
-0x6fd4 022665 istore 2 ,contw 
-0x6fd5 022666 increase 1 ,queue 
-0x6fd6 022667 byteswap pdata ,regb 
-0x6fd7 022668 ifetch 2 ,contr 
-0x6fd8 022669 byteswap pdata ,pdata 
-:      022670 serviceattribute_req_range_id_increase:
-0x6fd9 022671 increase 1 ,regb 
-0x6fda 022672 isub regb ,null 
-0x6fdb 022673 nbranch serviceattribute_req_range_id_finish ,positive 
-0x6fdc 022674 copy pdata ,regc 
-0x6fdd 022675 byteswap regb ,pdata 
-0x6fde 022676 istore 2 ,contw 
-0x6fdf 022677 increase 1 ,queue 
-0x6fe0 022678 copy regc ,pdata 
-0x6fe1 022679 branch serviceattribute_req_range_id_increase 
-:      022680 serviceattribute_req_range_id_finish:
-0x6fe2 022681 increase -5 ,timeup 
-0x6fe3 022682 increase -5 ,rega 
-0x6fe4 022683 branch serviceattribute_req_check_next_id 
-:      022684 serviceattribute_req_one_id:
-0x6fe5 022685 ifetch 2 ,contr 
-0x6fe6 022686 istore 2 ,contw 
-0x6fe7 022687 increase 1 ,queue 
-0x6fe8 022688 increase -3 ,timeup 
-0x6fe9 022689 increase -3 ,rega 
-:      022690 serviceattribute_req_check_next_id:
-0x6fea 022691 nbranch sdp_invalid_reqest_syntax ,positive 
-0x6feb 022692 nbranch serviceattribute_req_loop ,zero 
-0x6fec 022693 increase -1 ,timeup 
-0x6fed 022694 nbranch sdp_invalid_reqest_syntax ,zero 
-0x6fee 022696 call l2cap_get_sdp_tx_payload 
-0x6fef 022697 increase 10 ,contw 
-0x6ff0 022698 arg mem_attrib_list ,rega 
-:      022699 answer_handle_attributelist_next:
-0x6ff1 022700 copy queue ,pdata 
-0x6ff2 022701 branch answer_handle_attributelist_end ,blank 
-0x6ff3 022702 ifetch 2 ,rega 
-0x6ff4 022703 branch answer_handle_attributelist_end ,blank 
-0x6ff5 022704 iforce regb 
-0x6ff6 022705 fetch 4 ,mem_sdp_record_handle 
-0x6ff7 022706 iforce temp 
-0x6ff8 022707 call search_handle_attrib 
-0x6ff9 022708 branch answer_handle_attributelist_notfound ,blank 
-0x6ffa 022709 increase -3 ,contr 
-0x6ffb 022710 ifetch 3 ,contr 
-0x6ffc 022711 istore 3 ,contw 
-0x6ffd 022712 call sdp_data_len_obs 
-0x6ffe 022713 branch answer_handle_attributelist_notfound ,blank 
-0x6fff 022714 iforce loopcnt 
-0x7000 022715 call memcpy 
-:      022716 answer_handle_attributelist_notfound:
-0x7001 022717 increase 2 ,rega 
-0x7002 022718 increase -1 ,queue 
-0x7003 022719 branch answer_handle_attributelist_next 
-:      022721 answer_handle_attributelist_end:
-0x7004 022722 force 0 ,pdata 
-0x7005 022723 istore 1 ,contw 
-0x7006 022724 increase -1 ,contw 
-0x7007 022725 fetcht 2 ,mem_sdp_tx_payload_ptr 
-0x7008 022726 add temp ,10 ,pdata 
-0x7009 022727 isub contw ,pdata 
-0x700a 022728 sub pdata ,0 ,rega 
-0x700b 022729 byteswap rega ,pdata 
-0x700c 022730 add temp ,8 ,regb 
-0x700d 022731 istore 2 ,regb 
-0x700e 022732 increase 3 ,rega 
-0x700f 022733 byteswap rega ,pdata 
-0x7010 022734 add temp ,5 ,regb 
-0x7011 022735 istore 2 ,regb 
-0x7012 022736 increase 3 ,rega 
-0x7013 022737 byteswap rega ,pdata 
-0x7014 022738 add temp ,3 ,regb 
-0x7015 022739 istore 2 ,regb 
-0x7016 022740 increase 5 ,rega 
-0x7017 022741 copy rega ,pdata 
-0x7018 022742 store 2 ,mem_sdp_tx_pkt_length 
-0x7019 022743 setarg 0x36 
-0x701a 022744 add temp ,7 ,regb 
-0x701b 022745 istore 1 ,regb 
-0x701c 022746 setarg 5 
-0x701d 022747 istore 1 ,temp 
-0x701e 022748 fetch 2 ,mem_sdp_transactionid 
-0x701f 022749 add temp ,1 ,regb 
-0x7020 022750 istore 2 ,regb 
-0x7021 022751 rtn 
-:      022752 serviceattribute_req_all:
-0x7022 022753 ifetch 1 ,contr 
-0x7023 022754 bne 0xa ,sdp_invalid_reqest_syntax 
-0x7024 022755 ifetch 2 ,contr 
-0x7025 022756 nbranch sdp_invalid_reqest_syntax ,blank 
-0x7026 022757 ifetch 1 ,contr 
-0x7027 022758 bne 0xff ,sdp_invalid_reqest_syntax 
-0x7028 022759 ifetch 1 ,contr 
-0x7029 022760 bne 0xff ,sdp_invalid_reqest_syntax 
-0x702a 022761 increase -5 ,timeup 
-0x702b 022762 ifetch 1 ,contr 
-0x702c 022763 beq 0 ,continue_zero 
-0x702d 022764 beq 1 ,continue_one_byte 
-0x702e 022765 beq 2 ,continue_two_byte 
-:      022766 continue_zero:
-0x702f 022767 store 2 ,mem_sdp_continue_byte 
-0x7030 022768 increase -1 ,timeup 
-0x7031 022769 branch continue_end 
-:      022770 continue_one_byte:
-0x7032 022771 ifetch 1 ,contr 
-0x7033 022772 store 2 ,mem_sdp_continue_byte 
-0x7034 022773 increase -2 ,timeup 
-0x7035 022774 branch continue_end 
-:      022775 continue_two_byte:
-0x7036 022776 ifetch 2 ,contr 
-0x7037 022777 byteswap pdata ,pdata 
-0x7038 022778 store 2 ,mem_sdp_continue_byte 
-0x7039 022779 increase -3 ,timeup 
-:      022780 continue_end:
-0x703a 022781 nbranch sdp_invalid_pdu_size ,zero 
-0x703b 022782 call search_handle 
-0x703c 022783 nbranch sdp_invalid_service_record_handle ,zero 
-0x703d 022784 copy contr ,rega 
-0x703e 022785 call l2cap_get_sdp_tx_payload 
-0x703f 022786 copy rega ,contr 
-0x7040 022787 increase 3 ,contw 
-0x7041 022788 copy contr ,timeup 
-0x7042 022789 call sdp_get_data 
-0x7043 022790 copy pdata ,rega 
-0x7044 022791 fetch 2 ,mem_sdp_continue_byte 
-0x7045 022792 copy pdata ,regb 
-0x7046 022793 copy rega ,pdata 
-0x7047 022794 isub regb ,regb 
-0x7048 022795 fetch 2 ,mem_sdp_attribute_maxbyte 
-0x7049 022796 isub regb ,null 
-0x704a 022797 nbranch fragment_sdp ,positive 
-0x704b 022799 disable user 
-0x704c 022800 fetch 2 ,mem_sdp_continue_byte 
-0x704d 022801 branch fisrt_fragment ,blank 
-0x704e 022802 iadd timeup ,contr 
-0x704f 022803 increase 3 ,regb 
-0x7050 022804 copy regb ,loopcnt 
-0x7051 022805 copy loopcnt ,pdata 
-0x7052 022806 increase 3 ,pdata 
-0x7053 022807 byteswap pdata ,pdata 
-0x7054 022808 istore 2 ,contw 
-0x7055 022809 copy loopcnt ,pdata 
-0x7056 022810 byteswap pdata ,pdata 
-0x7057 022811 istore 2 ,contw 
-0x7058 022812 branch answer_attributelist_full_loop 
-:      022813 fisrt_fragment:
-0x7059 022814 add rega ,6 ,loopcnt 
-0x705a 022815 branch parlength_continue_byte ,user 
-0x705b 022816 byteswap loopcnt ,pdata 
-0x705c 022817 branch parlength_continue_byte_end 
-:      022818 parlength_continue_byte:
-0x705d 022819 copy loopcnt ,pdata 
-0x705e 022820 increase 2 ,pdata 
-0x705f 022821 byteswap pdata ,pdata 
-:      022822 parlength_continue_byte_end:
-0x7060 022823 istore 2 ,contw 
-0x7061 022824 increase -3 ,loopcnt 
-0x7062 022825 byteswap loopcnt ,pdata 
-0x7063 022826 istore 2 ,contw 
-0x7064 022827 copy timeup ,contr 
-0x7065 022828 branch answer_attributelist_full_loop 
-:      022829 fragment_sdp:
-0x7066 022830 enable user 
-0x7067 022831 fetch 2 ,mem_sdp_attribute_maxbyte 
-0x7068 022832 copy pdata ,rega 
-0x7069 022833 copy pdata ,loopcnt 
-0x706a 022834 fetch 2 ,mem_sdp_continue_byte 
-0x706b 022835 branch fisrt_fragment ,blank 
-0x706c 022836 iadd timeup ,contr 
-0x706d 022837 copy rega ,pdata 
-0x706e 022838 increase 5 ,pdata 
-0x706f 022839 byteswap pdata ,pdata 
-0x7070 022840 istore 2 ,contw 
-0x7071 022841 copy rega ,pdata 
-0x7072 022842 byteswap pdata ,pdata 
-0x7073 022843 istore 2 ,contw 
-:      022844 answer_attributelist_full_loop:
-0x7074 022845 ifetch 1 ,contr 
-0x7075 022846 istore 1 ,contw 
-0x7076 022847 loop answer_attributelist_full_loop 
-0x7077 022848 nbranch last_frag_continue ,user 
-0x7078 022849 force 2 ,pdata 
-0x7079 022850 istore 1 ,contw 
-0x707a 022851 copy contr ,pdata 
-0x707b 022852 isub timeup ,pdata 
-0x707c 022853 byteswap pdata ,pdata 
-0x707d 022854 istore 2 ,contw 
-0x707e 022855 branch sdp_frag_end 
-:      022856 last_frag_continue:
-0x707f 022857 force 0 ,pdata 
-0x7080 022858 istore 1 ,contw 
-:      022859 sdp_frag_end:
-0x7081 022860 fetch 2 ,mem_sdp_tx_payload_ptr 
-0x7082 022861 isub contw ,pdata 
-0x7083 022862 sub pdata ,0 ,pdata 
-0x7084 022863 store 2 ,mem_sdp_tx_pkt_length 
-0x7085 022864 call l2cap_get_sdp_tx_payload 
-0x7086 022865 setarg 5 
-0x7087 022866 istore 1 ,contw 
-0x7088 022867 fetch 2 ,mem_sdp_transactionid 
-0x7089 022868 istore 2 ,contw 
-0x708a 022869 rtn 
-:      022879 servicesearchattribute_req:
-0x708b 022882 call ask_serviceclassid 
-0x708c 022883 compare 0xff ,temp ,0xff 
-0x708d 022884 branch servicesearchattribute_req_all ,true 
-0x708e 022885 ifetch 2 ,contr 
-0x708f 022886 store 2 ,mem_sdp_attribute_maxbyte 
-0x7090 022887 increase -2 ,timeup 
-0x7091 022888 call dataelementtype6 
-0x7092 022889 arg mem_attrib_list ,contw 
-0x7093 022890 force 0 ,queue 
-:      022891 servicesearchattribute_req_loop:
-0x7094 022892 ifetch 3 ,contr 
-0x7095 022893 bne 0x09 ,servicesearchattribute_req_all 
-:      022894 servicesearchattribute_req_uuid:
-0x7096 022895 rshift8 pdata ,pdata 
-0x7097 022896 istore 2 ,contw 
-0x7098 022897 increase 1 ,queue 
-0x7099 022898 increase -3 ,timeup 
-0x709a 022899 increase -3 ,rega 
-0x709b 022900 nbranch sdp_invalid_reqest_syntax ,positive 
-0x709c 022901 nbranch servicesearchattribute_req_loop ,zero 
-0x709d 022902 increase -1 ,timeup 
-0x709e 022903 nbranch sdp_invalid_reqest_syntax ,zero 
-:      022904 servicesearchattribute_req_search:
-0x709f 022905 call l2cap_get_sdp_tx_payload 
-0x70a0 022906 increase 13 ,contw 
-0x70a1 022907 fetch 2 ,mem_uuid_search_pat 
-0x70a2 022908 iforce regc 
-0x70a3 022909 arg mem_attrib_list ,rega 
-:      022910 answer_attributelist_next:
-0x70a4 022911 ifetch 4 ,rega 
-0x70a5 022912 branch answer_attributelist_end ,blank 
-0x70a6 022913 ifetch 2 ,rega 
-0x70a7 022914 iforce regb 
-0x70a8 022915 call search_attrib 
-0x70a9 022916 branch answer_attributelist_notfound ,blank 
-0x70aa 022917 increase -3 ,contr 
-0x70ab 022918 ifetch 3 ,contr 
-0x70ac 022919 istore 3 ,contw 
-0x70ad 022920 call sdp_data_len_obs 
-0x70ae 022921 iforce loopcnt 
-:      022922 answer_attributelist_attrib_loop:
-0x70af 022923 ifetch 1 ,contr 
-0x70b0 022924 istore 1 ,contw 
-0x70b1 022925 loop answer_attributelist_attrib_loop 
-:      022926 answer_attributelist_notfound:
-0x70b2 022927 increase 2 ,rega 
-0x70b3 022928 branch answer_attributelist_next 
-:      022929 servicesearchattribute_req_all:
-0x70b4 022933 ifetch 1 ,contr 
-0x70b5 022935 ifetch 1 ,contr 
-0x70b6 022937 increase -5 ,timeup 
-0x70b7 022938 increase -5 ,rega 
-0x70b8 022939 nbranch sdp_invalid_reqest_syntax ,positive 
-0x70b9 022940 arg mem_uuid_search_pat ,timeup 
-0x70ba 022941 ifetch 2 ,timeup 
-0x70bb 022943 increase 2 ,timeup 
-0x70bc 022944 call search_uuid 
-0x70bd 022945 deposit queue 
-0x70be 022946 store 1 ,mem_handle_humber 
-0x70bf 022947 branch empty_ssa_rsp ,blank 
-0x70c0 022948 arg 0 ,queue 
-0x70c1 022949 call l2cap_get_sdp_tx_payload 
-0x70c2 022950 increase 10 ,contw 
-0x70c3 022951 branch servicesearchattribute_req_next_handle 
-:      022952 answer_attributelist_end:
-0x70c4 022953 force 0 ,pdata 
-0x70c5 022954 istore 1 ,contw 
-0x70c6 022955 increase -1 ,contw 
-0x70c7 022956 fetcht 2 ,mem_sdp_tx_payload_ptr 
-0x70c8 022957 add temp ,13 ,pdata 
-0x70c9 022958 isub contw ,pdata 
-0x70ca 022959 branch no_attribute_return ,zero 
-0x70cb 022960 sub pdata ,0 ,pdata 
-0x70cc 022961 add temp ,12 ,regb 
-0x70cd 022962 istore 1 ,regb 
-0x70ce 022963 increase 3 ,pdata 
-0x70cf 022964 add temp ,9 ,regb 
-0x70d0 022965 istore 1 ,regb 
-0x70d1 022966 increase 3 ,pdata 
-0x70d2 022967 byteswap pdata ,pdata 
-0x70d3 022968 add temp ,5 ,regb 
-0x70d4 022969 istore 2 ,regb 
-0x70d5 022970 rshift8 pdata ,pdata 
-0x70d6 022971 increase 3 ,pdata 
-0x70d7 022972 byteswap pdata ,pdata 
-0x70d8 022973 add temp ,3 ,regb 
-0x70d9 022974 istore 2 ,regb 
-0x70da 022975 rshift8 pdata ,pdata 
-0x70db 022976 increase 5 ,pdata 
-0x70dc 022977 store 1 ,mem_sdp_tx_pkt_length 
-0x70dd 022979 fetch 2 ,mem_sdp_transactionid 
-0x70de 022980 add temp ,1 ,regb 
-0x70df 022981 istore 2 ,regb 
-0x70e0 022982 setarg 7 
-0x70e1 022983 istore 1 ,temp 
-0x70e2 022988 setarg 0x0036 
-0x70e3 022989 add temp ,7 ,regb 
-0x70e4 022990 istore 2 ,regb 
-0x70e5 022991 add temp ,10 ,regb 
-0x70e6 022992 istore 2 ,regb 
-0x70e7 022993 rtn 
-:      022994 no_attribute_return:
-0x70e8 022995 jam 10 ,mem_sdp_tx_pkt_length 
-0x70e9 022996 call l2cap_get_sdp_tx_payload 
-0x70ea 022998 setarg 7 
-0x70eb 022999 istore 1 ,contw 
-0x70ec 023000 fetch 2 ,mem_sdp_transactionid 
-0x70ed 023001 istore 2 ,contw 
-0x70ee 023005 setarg 0x0500 
-0x70ef 023006 istore 2 ,contw 
-0x70f0 023009 setarg 0x0200 
-0x70f1 023010 istore 2 ,contw 
-0x70f2 023014 setarg 0x000035 
-0x70f3 023015 istore 3 ,contw 
-0x70f4 023016 rtn 
-:      023018 servicesearchattribute_req_attributelist_loop:
-0x70f5 023019 ifetch 1 ,contr 
-0x70f6 023020 istore 1 ,contw 
-0x70f7 023021 increase 1 ,regb 
-0x70f8 023022 increase -1 ,rega 
-0x70f9 023023 branch servicesearchattribute_req_check_next_ctn ,zero 
-0x70fa 023024 loop servicesearchattribute_req_attributelist_loop 
-:      023025 servicesearchattribute_req_check_next_ctn:
-0x70fb 023026 copy contw ,timeup 
-0x70fc 023027 copy regb ,pdata 
-0x70fd 023028 store 2 ,mem_sdp_continue_byte 
-0x70fe 023029 copy rega ,pdata 
-0x70ff 023030 store 2 ,mem_sdp_attribute_maxbyte 
-0x7100 023031 branch answer_attributelist_with_ctn_bytes ,blank 
-0x7101 023032 branch answer_attributelist_with_ctn_end ,user 
-0x7102 023033 copy timeup ,contw 
-:      023034 servicesearchattribute_req_check_handle:
-0x7103 023035 increase 1 ,queue 
-0x7104 023036 fetch 1 ,mem_handle_humber 
-0x7105 023037 isub queue ,null 
-0x7106 023038 nbranch servicesearchattribute_req_next_handle ,zero 
-0x7107 023039 branch answer_attributelist_end_long 
-:      023040 servicesearchattribute_req_next_handle:
-0x7108 023041 arg mem_handle_list ,contr 
-0x7109 023042 lshift2 queue ,pdata 
-0x710a 023043 iadd contr ,contr 
-0x710b 023044 ifetch 4 ,contr 
-0x710c 023045 iforce temp 
-0x710d 023046 call search_handle 
-0x710e 023047 copy contr ,timeup 
-0x710f 023048 call sdp_get_data 
-0x7110 023049 add pdata ,3 ,loopcnt 
-0x7111 023050 fetch 2 ,mem_sdp_attribute_maxbyte 
-0x7112 023051 copy pdata ,rega 
-0x7113 023052 fetch 2 ,mem_sdp_continue_byte 
-0x7114 023053 copy pdata ,regb 
-0x7115 023054 copy timeup ,contr 
-0x7116 023055 branch servicesearchattribute_req_attributelist_loop 
-:      023056 answer_attributelist_with_ctn_bytes:
-0x7117 023057 arg 0 ,queue 
-0x7118 023058 arg 0 ,regb 
-:      023059 answer_attributelist_calc_attribute_length:
-0x7119 023060 arg mem_handle_list ,contr 
-0x711a 023061 lshift2 queue ,pdata 
-0x711b 023062 iadd contr ,contr 
-0x711c 023063 ifetch 4 ,contr 
-0x711d 023064 iforce temp 
-0x711e 023065 call search_handle 
-0x711f 023066 call sdp_get_data 
-0x7120 023067 add pdata ,3 ,pdata 
-0x7121 023068 iadd regb ,regb 
-0x7122 023069 increase 1 ,queue 
-0x7123 023070 fetch 1 ,mem_handle_humber 
-0x7124 023071 isub queue ,null 
-0x7125 023072 nbranch answer_attributelist_calc_attribute_length ,zero 
-0x7126 023074 copy timeup ,contw 
-0x7127 023075 force 2 ,pdata 
-0x7128 023076 istore 1 ,contw 
-0x7129 023077 fetch 2 ,mem_sdp_continue_byte 
-0x712a 023078 byteswap pdata ,pdata 
-0x712b 023079 istore 2 ,contw 
-0x712c 023080 increase -3 ,contw 
-0x712d 023081 fetcht 2 ,mem_sdp_tx_payload_ptr 
-0x712e 023082 add temp ,10 ,pdata 
-0x712f 023083 isub contw ,pdata 
-0x7130 023084 sub pdata ,0 ,pdata 
-0x7131 023085 iforce rega 
-0x7132 023087 deposit regb 
-0x7133 023088 add temp ,9 ,regb 
-0x7134 023089 istore 1 ,regb 
-0x7135 023090 rshift8 pdata ,pdata 
-0x7136 023091 add temp ,8 ,regb 
-0x7137 023092 istore 1 ,regb 
-0x7138 023093 increase 3 ,rega 
-0x7139 023094 deposit rega 
-0x713a 023095 add temp ,6 ,regb 
-0x713b 023096 istore 1 ,regb 
-0x713c 023097 rshift8 pdata ,pdata 
-0x713d 023098 add temp ,5 ,regb 
-0x713e 023099 istore 1 ,regb 
-0x713f 023100 increase 5 ,rega 
-0x7140 023101 deposit rega 
-0x7141 023102 add temp ,4 ,regb 
-0x7142 023103 istore 1 ,regb 
-0x7143 023104 rshift8 pdata ,pdata 
-0x7144 023105 add temp ,3 ,regb 
-0x7145 023106 istore 1 ,regb 
-0x7146 023107 increase 5 ,rega 
-0x7147 023108 deposit rega 
-0x7148 023109 store 2 ,mem_sdp_tx_pkt_length 
-0x7149 023110 setarg 7 
-0x714a 023111 istore 1 ,temp 
-0x714b 023112 setarg 0x36 
-0x714c 023113 add temp ,7 ,regb 
-0x714d 023114 istore 1 ,regb 
-0x714e 023115 add temp ,1 ,regb 
-0x714f 023116 fetch 2 ,mem_sdp_transactionid 
-0x7150 023117 istore 2 ,regb 
-0x7151 023118 rtn 
-:      023119 answer_attributelist_with_ctn_end:
-0x7152 023120 copy timeup ,contw 
-0x7153 023121 force 0 ,pdata 
-0x7154 023122 istore 1 ,contw 
-0x7155 023123 increase -1 ,contw 
-0x7156 023124 fetcht 2 ,mem_sdp_tx_payload_ptr 
-0x7157 023125 add temp ,7 ,pdata 
-0x7158 023126 isub contw ,pdata 
-0x7159 023127 sub pdata ,0 ,pdata 
-0x715a 023128 iforce rega 
-0x715b 023130 deposit rega 
-0x715c 023131 add temp ,6 ,regb 
-0x715d 023132 istore 1 ,regb 
-0x715e 023133 rshift8 pdata ,pdata 
-0x715f 023134 add temp ,5 ,regb 
-0x7160 023135 istore 1 ,regb 
-0x7161 023136 increase 3 ,rega 
-0x7162 023137 deposit rega 
-0x7163 023138 add temp ,4 ,regb 
-0x7164 023139 istore 1 ,regb 
-0x7165 023140 rshift8 pdata ,pdata 
-0x7166 023141 add temp ,3 ,regb 
-0x7167 023142 istore 1 ,regb 
-0x7168 023143 increase 5 ,rega 
-0x7169 023144 deposit rega 
-0x716a 023145 store 2 ,mem_sdp_tx_pkt_length 
-0x716b 023147 setarg 7 
-0x716c 023148 istore 1 ,temp 
-0x716d 023150 fetch 2 ,mem_sdp_transactionid 
-0x716e 023151 add temp ,1 ,regb 
-0x716f 023152 istore 2 ,regb 
-0x7170 023153 rtn 
-:      023155 answer_attributelist_end_long:
-0x7171 023156 force 0 ,pdata 
-0x7172 023157 istore 1 ,contw 
-0x7173 023158 increase -1 ,contw 
-0x7174 023159 fetcht 2 ,mem_sdp_tx_payload_ptr 
-0x7175 023160 add temp ,10 ,pdata 
-0x7176 023161 isub contw ,pdata 
-0x7177 023162 sub pdata ,0 ,pdata 
-0x7178 023163 iforce rega 
-0x7179 023165 deposit rega 
-0x717a 023166 add temp ,9 ,regb 
-0x717b 023167 istore 1 ,regb 
-0x717c 023168 rshift8 pdata ,pdata 
-0x717d 023169 add temp ,8 ,regb 
-0x717e 023170 istore 1 ,regb 
-0x717f 023172 increase 3 ,rega 
-0x7180 023173 deposit rega 
-0x7181 023174 add temp ,6 ,regb 
-0x7182 023175 istore 1 ,regb 
-0x7183 023176 rshift8 pdata ,pdata 
-0x7184 023177 add temp ,5 ,regb 
-0x7185 023178 istore 1 ,regb 
-0x7186 023179 increase 3 ,rega 
-0x7187 023180 deposit rega 
-0x7188 023181 add temp ,4 ,regb 
-0x7189 023182 istore 1 ,regb 
-0x718a 023183 rshift8 pdata ,pdata 
-0x718b 023184 add temp ,3 ,regb 
-0x718c 023185 istore 1 ,regb 
-0x718d 023186 increase 5 ,rega 
-0x718e 023187 deposit rega 
-0x718f 023188 store 2 ,mem_sdp_tx_pkt_length 
-0x7190 023189 setarg 0x36 
-0x7191 023190 add temp ,7 ,regb 
-0x7192 023191 istore 1 ,regb 
-0x7193 023192 setarg 7 
-0x7194 023193 istore 1 ,temp 
-0x7195 023194 fetch 2 ,mem_sdp_transactionid 
-0x7196 023195 add temp ,1 ,regb 
-0x7197 023196 istore 2 ,regb 
-0x7198 023197 rtn 
-:      023198 sdp_data_len_obs:
-0x7199 023199 copy contr ,timeup 
-0x719a 023200 ifetch 1 ,contr 
-0x719b 023201 and pdata ,0x07 ,loopcnt 
-0x719c 023202 rshift3 pdata ,pdata 
-0x719d 023203 beq 6 ,sdp_data_len_6_obs 
-0x719e 023204 beq 1 ,sdp_data_len_1 
-0x719f 023205 beq 4 ,sdp_data_len_6 
-0x71a0 023206 beq 5 ,sdp_data_len_5 
-0x71a1 023207 branch sdp_data_len_rtn 
-:      023208 sdp_data_len_6_obs:
-0x71a2 023209 call sdp_get_data_6_obs 
-0x71a3 023210 branch sdp_data_len_rtn 
-:      023211 sdp_get_data_6_obs:
-0x71a4 023212 deposit loopcnt 
-0x71a5 023213 beq 5 ,sdp_get_data_6_8bit_obs 
-0x71a6 023214 beq 6 ,sdp_get_data_6_16bit_obs 
-0x71a7 023215 force 3 ,loopcnt 
-0x71a8 023216 branch sdp_get_data_1 
-:      023217 sdp_get_data_6_8bit_obs:
-0x71a9 023218 ifetch 1 ,contr 
-0x71aa 023219 increase 2 ,pdata 
-0x71ab 023220 rtn 
-:      023221 sdp_get_data_6_16bit_obs:
-0x71ac 023222 ifetch 2 ,contr 
-0x71ad 023223 byteswap pdata ,pdata 
-0x71ae 023224 increase 3 ,pdata 
-0x71af 023225 rtn 
-:      023227 sdp_send_spp_request:
-0x71b0 023228 call l2cap_get_sdp_tx_payload 
-0x71b1 023229 copy pdata ,contw 
-0x71b2 023230 setarg 6 
-0x71b3 023231 istore 1 ,contw 
-0x71b4 023232 setarg sdp_tid_spp 
-0x71b5 023233 istore 2 ,contw 
-0x71b6 023234 setarg 0x0f00 
-0x71b7 023235 istore 2 ,contw 
-0x71b8 023236 setarg 0x1a0535 
-0x71b9 023237 istore 3 ,contw 
-0x71ba 023238 setarg 0x0111 
-0x71bb 023239 lshift16 pdata ,pdata 
-0x71bc 023240 istore 4 ,contw 
-0x71bd 023241 setarg 0x2600 
-0x71be 023242 istore 2 ,contw 
-0x71bf 023243 setarg 0x0335 
-0x71c0 023244 istore 2 ,contw 
-0x71c1 023245 setarg 0x0009 
-0x71c2 023246 istore 2 ,contw 
-0x71c3 023247 setarg 0x0004 
-0x71c4 023248 istore 2 ,contw 
-0x71c5 023249 jam 0x14 ,mem_sdp_tx_pkt_length 
-0x71c6 023250 rtn 
-:      023260 servicesearchattribute_res:
-0x71c7 023261 copy contr ,temp 
-0x71c8 023262 fetch 2 ,mem_sdp_transactionid 
-0x71c9 023263 beq sdp_tid_spp ,servicesearchattribute_res_spp 
-0x71ca 023266 branch srchfail 
-:      023268 servicesearchattribute_res_spp:
-0x71cb 023269 copy temp ,contr 
-0x71cc 023270 increase -3 ,timeup 
-0x71cd 023271 copy timeup ,pdata 
-0x71ce 023272 beq 2 ,srchfail 
-0x71cf 023273 call find_rfcomm_channel_number 
-0x71d0 023274 rtn user 
-0x71d1 023275 store 1 ,mem_remote_spp_channel 
-0x71d2 023276 jam recieve_ss_reasult_hf ,mem_message_to_uppersm 
-0x71d3 023277 rtn 
-:      023279 srchfail:
-0x71d4 023280 rtn 
-:      023286 find_rfcomm_channel_number:
-0x71d5 023287 enable user 
-0x71d6 023288 copy pdata ,loopcnt 
-0x71d7 023289 arg 0x0400 ,temp 
-:      023290 find_rfcomm_channel_number_loop:
-0x71d8 023291 ifetch 2 ,contr 
-0x71d9 023292 isub temp ,null 
-0x71da 023293 branch find_rfcomm_channel_number_find_adl ,zero 
-0x71db 023294 increase -1 ,contr 
-0x71dc 023295 loop find_rfcomm_channel_number_loop 
-0x71dd 023296 rtn 
-:      023297 find_rfcomm_channel_number_find_adl:
-0x71de 023298 arg 0x0300 ,temp 
-:      023299 find_rfcomm_channel_number_loop2:
-0x71df 023300 ifetch 2 ,contr 
-0x71e0 023301 isub temp ,null 
-0x71e1 023302 branch find_rfcomm_channel_number_find_rfcomm ,zero 
-0x71e2 023303 increase -1 ,contr 
-0x71e3 023304 loop find_rfcomm_channel_number_loop2 
-0x71e4 023305 rtn 
-:      023306 find_rfcomm_channel_number_find_rfcomm:
-0x71e5 023307 ifetch 1 ,contr 
-0x71e6 023308 ifetch 1 ,contr 
-0x71e7 023309 disable user 
-0x71e8 023310 rtn 
-:      023321 attribute_reading:
-0x71e9 023322 call dataelementtype6 
-0x71ea 023323 branch rdnortn ,zero 
-0x71eb 023324 force 0 ,regb 
-0x71ec 023325 ifetch 1 ,contr 
-0x71ed 023326 increase -1 ,rega 
-0x71ee 023327 increase -1 ,timeup 
-0x71ef 023328 compare 0x18 ,pdata ,0xf8 
-0x71f0 023329 nbranch rduuid3 ,true 
-0x71f1 023330 compare 0x04 ,pdata ,0x07 
-0x71f2 023331 nbranch is032 ,true 
-0x71f3 023332 force 1 ,regb 
-:      023333 skp2bytes:
-0x71f4 023334 increase 2 ,contr 
-0x71f5 023335 increase -2 ,rega 
-0x71f6 023336 increase -2 ,timeup 
-0x71f7 023337 branch rduuid1 
-:      023338 is032:
-0x71f8 023339 compare 0x02 ,pdata ,0x07 
-0x71f9 023340 nbranch is016 ,true 
-0x71fa 023341 branch skp2bytes 
-:      023342 is016:
-0x71fb 023343 compare 0x01 ,pdata ,0x07 
-0x71fc 023344 nbranch rduuid3 ,true 
-:      023345 rduuid1:
-0x71fd 023346 ifetch 1 ,contr 
-0x71fe 023347 increase -1 ,rega 
-0x71ff 023348 increase -1 ,timeup 
-0x7200 023349 bne 0x01 ,rduuid2 
-0x7201 023350 ifetch 1 ,contr 
-0x7202 023351 increase -1 ,rega 
-0x7203 023352 increase -1 ,timeup 
-0x7204 023353 bne 0x00 ,rduuid3 
-0x7205 023354 jam 0xff ,mem_sdp_lacap_found 
-0x7206 023355 branch rduuid3 
-:      023356 rduuid2:
-0x7207 023357 bne 0x00 ,rduuid3 
-0x7208 023358 ifetch 1 ,contr 
-0x7209 023359 increase -1 ,rega 
-0x720a 023360 increase -1 ,timeup 
-0x720b 023361 bne 0x03 ,rduuid3 
-0x720c 023362 copy regb ,null 
-0x720d 023363 branch not16by ,zero 
-0x720e 023364 increase -12 ,contr 
-0x720f 023365 increase -12 ,timeup 
-:      023366 not16by:
-0x7210 023367 force 0xff ,pdata 
-0x7211 023368 store 1 ,mem_sdp_rfcomm_found 
-0x7212 023369 ifetch 1 ,contr 
-0x7213 023370 increase -1 ,rega 
-0x7214 023371 increase -1 ,timeup 
-0x7215 023372 compare 0x08 ,pdata ,0xf8 
-0x7216 023373 nbranch rduuid3 ,true 
-0x7217 023374 compare 0x00 ,pdata ,0x07 
-0x7218 023375 branch unsign1 ,true 
-0x7219 023376 compare 0x01 ,pdata ,0x07 
-0x721a 023377 branch unsign2 ,true 
-0x721b 023378 compare 0x02 ,pdata ,0x07 
-0x721c 023379 branch unsign4 ,true 
-0x721d 023380 compare 0x03 ,pdata ,0x07 
-0x721e 023381 branch unsign8 ,true 
-0x721f 023382 compare 0x04 ,pdata ,0x07 
-0x7220 023383 nbranch rduuid3 ,true 
-0x7221 023384 increase 8 ,contr 
-0x7222 023385 increase -8 ,rega 
-0x7223 023386 increase -8 ,timeup 
-:      023387 unsign8:
-0x7224 023388 increase 4 ,contr 
-0x7225 023389 increase -4 ,rega 
-0x7226 023390 increase -4 ,timeup 
-:      023391 unsign4:
-0x7227 023392 increase 2 ,contr 
-0x7228 023393 increase -2 ,rega 
-0x7229 023394 increase -2 ,timeup 
-:      023395 unsign2:
-0x722a 023396 increase 1 ,contr 
-0x722b 023397 increase -1 ,rega 
-0x722c 023398 increase -1 ,timeup 
-:      023399 unsign1:
-0x722d 023400 ifetch 1 ,contr 
-0x722e 023401 increase -1 ,rega 
-0x722f 023402 increase -1 ,timeup 
-:      023403 rduuid3:
-0x7230 023404 increase -1 ,timeup 
-0x7231 023405 increase -1 ,rega 
-0x7232 023406 branch rduuid3 ,positive 
-0x7233 023407 increase 1 ,timeup 
-0x7234 023408 force 0x01 ,pdata 
-0x7235 023409 rtn ,
-:      023410 rdnortn:
-0x7236 023411 force 0x00 ,pdata 
-0x7237 023412 rtn ,
-:      023414 sdp_invalid_service_record_handle:
-0x7238 023415 setarg 0x0200 
-0x7239 023416 store 2 ,mem_sdp_error_code 
-0x723a 023417 branch sdp_error_rsp 
-:      023418 sdp_invalid_pdu_size:
-0x723b 023419 setarg 0x0400 
-0x723c 023420 store 2 ,mem_sdp_error_code 
-0x723d 023421 branch sdp_error_rsp 
-:      023422 sdp_insufficient_resource:
-0x723e 023423 setarg 0x0600 
-0x723f 023424 store 2 ,mem_sdp_error_code 
-0x7240 023425 branch sdp_error_rsp 
-:      023426 sdp_invalid_reqest_syntax:
-0x7241 023427 setarg 0x0300 
-0x7242 023428 store 2 ,mem_sdp_error_code 
-:      023429 sdp_error_rsp:
-0x7243 023430 call l2cap_get_sdp_tx_payload 
-0x7244 023431 istore 1 ,contw 
-0x7245 023432 fetch 2 ,mem_sdp_transactionid 
-0x7246 023433 istore 2 ,contw 
-0x7247 023434 setarg 0x0200 
-0x7248 023435 istore 2 ,contw 
-0x7249 023436 fetch 2 ,mem_sdp_error_code 
-0x724a 023437 istore 2 ,contw 
-0x724b 023438 jam 7 ,mem_sdp_tx_pkt_length 
-0x724c 023439 rtn 
-:      023441 ask_serviceclassid:
-0x724d 023442 force 0 ,temp 
-0x724e 023443 arg mem_uuid_search_pat ,contw 
-0x724f 023444 call dataelementtype6 
-0x7250 023445 branch asksrv_error ,zero 
-:      023446 classidloop:
-0x7251 023447 ifetch 1 ,contr 
-0x7252 023448 increase -1 ,rega 
-0x7253 023449 increase -1 ,timeup 
-0x7254 023450 compare 0x18 ,pdata ,0xf8 
-0x7255 023451 nbranch asksrv_error ,true 
-0x7256 023452 compare 0x04 ,pdata ,0x07 
-0x7257 023453 nbranch cmp032 ,true 
-0x7258 023454 force 1 ,temp 
-:      023455 skip2bytes:
-0x7259 023456 ifetch 1 ,contr 
-0x725a 023457 increase -1 ,rega 
-0x725b 023458 increase -1 ,timeup 
-0x725c 023459 bne 0x00 ,frstbwrong 
-0x725d 023460 ifetch 1 ,contr 
-0x725e 023461 increase -1 ,rega 
-0x725f 023462 increase -1 ,timeup 
-0x7260 023463 beq 0x00 ,cmpuuid 
-0x7261 023464 branch scndbwrong 
-:      023465 frstbwrong:
-0x7262 023466 increase 1 ,contr 
-0x7263 023467 increase -1 ,rega 
-0x7264 023468 increase -1 ,timeup 
-:      023469 scndbwrong:
-0x7265 023470 increase 2 ,contr 
-0x7266 023471 increase -2 ,rega 
-0x7267 023472 increase -2 ,timeup 
-0x7268 023473 compare 0x00 ,temp ,0xff 
-0x7269 023474 branch loopornot ,true 
-0x726a 023475 increase 12 ,contr 
-0x726b 023476 increase -12 ,rega 
-0x726c 023477 increase -12 ,timeup 
-0x726d 023478 branch loopornot 
-:      023479 cmp032:
-0x726e 023480 compare 0x02 ,pdata ,0x07 
-0x726f 023481 nbranch cmp016 ,true 
-0x7270 023482 branch skip2bytes 
-:      023483 cmp016:
-0x7271 023484 compare 0x01 ,pdata ,0x07 
-0x7272 023485 nbranch asksrv_error ,true 
-:      023486 cmpuuid:
-0x7273 023487 ifetch 2 ,contr 
-0x7274 023488 increase -2 ,rega 
-0x7275 023489 increase -2 ,timeup 
-0x7276 023490 istore 2 ,contw 
-:      023491 uuidsize:
-0x7277 023492 compare 0x00 ,temp ,0xff 
-0x7278 023493 branch loopornot ,true 
-0x7279 023494 copy contr ,temp 
-0x727a 023495 ifetch 1 ,contr 
-0x727b 023496 bne 0x00 ,wrong12b 
-0x727c 023497 ifetch 1 ,contr 
-0x727d 023498 bne 0x00 ,wrong12b 
-0x727e 023499 ifetch 1 ,contr 
-0x727f 023500 bne 0x10 ,wrong12b 
-0x7280 023501 ifetch 1 ,contr 
-0x7281 023502 bne 0x00 ,wrong12b 
-0x7282 023503 ifetch 1 ,contr 
-0x7283 023504 bne 0x80 ,wrong12b 
-0x7284 023505 ifetch 1 ,contr 
-0x7285 023506 bne 0x00 ,wrong12b 
-0x7286 023507 ifetch 1 ,contr 
-0x7287 023508 bne 0x00 ,wrong12b 
-0x7288 023509 ifetch 1 ,contr 
-0x7289 023510 bne 0x80 ,wrong12b 
-0x728a 023511 ifetch 1 ,contr 
-0x728b 023512 bne 0x5f ,wrong12b 
-0x728c 023513 ifetch 1 ,contr 
-0x728d 023514 bne 0x9b ,wrong12b 
-0x728e 023515 ifetch 1 ,contr 
-0x728f 023516 bne 0x34 ,wrong12b 
-0x7290 023517 ifetch 1 ,contr 
-0x7291 023518 beq 0xfb ,chck12dn 
-:      023519 wrong12b:
-0x7292 023520 copy temp ,contr 
-:      023521 wrong12b1:
-0x7293 023522 increase 12 ,contr 
-0x7294 023523 force 0x00 ,queue 
-0x7295 023524 force 0x00 ,temp 
-0x7296 023525 branch chck12dn 
-:      023526 noclass:
-0x7297 023527 ifetch 1 ,contr 
-0x7298 023528 increase -1 ,rega 
-0x7299 023529 increase -1 ,timeup 
-0x729a 023530 branch uuidsize 
-:      023531 chck12dn:
-0x729b 023532 increase -12 ,timeup 
-0x729c 023533 increase -12 ,rega 
-:      023534 loopornot:
-0x729d 023535 compare 0x00 ,rega ,0xff 
-0x729e 023536 nbranch classidloop ,true 
-0x729f 023537 force 0 ,pdata 
-0x72a0 023538 istore 2 ,contw 
-0x72a1 023539 rtn ,
-:      023540 asksrv_error:
-0x72a2 023541 arg 0xff ,temp 
-0x72a3 023542 rtn 
-:      023552 dataelementtype6:
-0x72a4 023553 ifetch 1 ,contr 
-0x72a5 023554 increase -1 ,timeup 
-0x72a6 023555 compare 0x30 ,pdata ,0xf8 
-0x72a7 023556 nbranch dsize_error ,true 
-0x72a8 023557 compare 0x07 ,pdata ,0x07 
-0x72a9 023558 branch dsize32 ,true 
-0x72aa 023559 compare 0x06 ,pdata ,0x07 
-0x72ab 023560 branch dsize16 ,true 
-0x72ac 023561 compare 0x05 ,pdata ,0x07 
-0x72ad 023562 nbranch dsize_error ,true 
-0x72ae 023563 ifetch 1 ,contr 
-0x72af 023564 copy pdata ,rega 
-0x72b0 023565 increase -1 ,timeup 
-0x72b1 023566 branch dsize 
-:      023567 dsize32:
-0x72b2 023568 increase 2 ,contr 
-0x72b3 023569 increase -2 ,timeup 
-:      023570 dsize16:
-0x72b4 023571 ifetch 2 ,contr 
-0x72b5 023572 byteswap pdata ,rega 
-0x72b6 023573 increase -2 ,timeup 
-:      023574 set_nblank:
-:      023575 dsize:
-0x72b7 023576 force 0x01 ,pdata 
-0x72b8 023577 rtn 
-:      023578 set_blank:
-:      023579 dsize_error:
-0x72b9 023580 force 0x00 ,pdata 
-0x72ba 023581 rtn 
-:      023591 empth_sa_rsp:
-0x72bb 023592 setarg 0x03 
-0x72bc 023593 store 1 ,mem_sdp_pduid 
-0x72bd 023594 branch empty_response 
-:      023595 empty_ssa_rsp:
-0x72be 023596 setarg 0x07 
-0x72bf 023597 store 1 ,mem_sdp_pduid 
-:      023598 empty_response:
-0x72c0 023599 call l2cap_get_sdp_tx_payload 
-0x72c1 023600 fetch 1 ,mem_sdp_pduid 
-0x72c2 023601 istore 1 ,contw 
-0x72c3 023602 copy pdata ,regb 
-0x72c4 023603 fetch 2 ,mem_sdp_transactionid 
-0x72c5 023604 istore 2 ,contw 
-0x72c6 023606 setarg 0x0500 
-0x72c7 023607 istore 2 ,contw 
-0x72c8 023608 compare 0x05 ,regb ,0xff 
-0x72c9 023609 branch fullsearch ,true 
-0x72ca 023610 compare 0x07 ,regb ,0xff 
-0x72cb 023611 branch fullsearch ,true 
-0x72cc 023612 setarg 0x000000 
-0x72cd 023613 istore 3 ,contw 
-0x72ce 023614 istore 2 ,contw 
-0x72cf 023615 branch outempty 
-:      023617 fullsearch:
-0x72d0 023624 setarg 0x350200 
-0x72d1 023625 istore 3 ,contw 
-0x72d2 023630 setarg 0 
-0x72d3 023631 istore 2 ,contw 
-:      023632 outempty:
-0x72d4 023633 jam 10 ,mem_sdp_tx_pkt_length 
-0x72d5 023634 rtn 
-:      023636 sdp_data_len:
-0x72d6 023637 copy contr ,timeup 
-0x72d7 023638 ifetch 1 ,contr 
-0x72d8 023639 and pdata ,0x7 ,loopcnt 
-0x72d9 023640 rshift3 pdata ,pdata 
-0x72da 023641 beq 6 ,sdp_data_len_6 
-0x72db 023642 beq 1 ,sdp_data_len_1 
-0x72dc 023643 beq 4 ,sdp_data_len_6 
-0x72dd 023644 beq 5 ,sdp_data_len_5 
-:      023645 sdp_data_len_rtn:
-0x72de 023646 copy timeup ,contr 
-0x72df 023647 rtn 
-:      023648 sdp_data_len_1:
-0x72e0 023649 call sdp_data_size 
-0x72e1 023650 increase 1 ,pdata 
-0x72e2 023651 branch sdp_data_len_rtn 
-:      023652 sdp_data_len_5:
-0x72e3 023653 force 2 ,pdata 
-0x72e4 023654 branch sdp_data_len_rtn 
-:      023655 sdp_data_len_6:
-0x72e5 023656 call sdp_get_data_6 
-0x72e6 023657 increase 2 ,pdata 
-0x72e7 023658 branch sdp_data_len_rtn 
-:      023660 sdp_get_data:
-0x72e8 023661 ifetch 1 ,contr 
-0x72e9 023662 and pdata ,0x7 ,loopcnt 
-0x72ea 023663 rshift3 pdata ,pdata 
-0x72eb 023664 beq 6 ,sdp_get_data_6 
-0x72ec 023665 beq 1 ,sdp_get_data_1 
-0x72ed 023666 beq 5 ,sdp_get_data_6_8bit 
-0x72ee 023667 rtn 
-:      023668 sdp_get_data_1:
-0x72ef 023669 call sdp_data_size 
-0x72f0 023670 iforce loopcnt 
-0x72f1 023671 force 0 ,temp 
-:      023672 sdp_get_data_1_loop:
-0x72f2 023673 lshift8 temp ,temp 
-0x72f3 023674 ifetch 1 ,contr 
-0x72f4 023675 ior temp ,temp 
-0x72f5 023676 loop sdp_get_data_1_loop 
-0x72f6 023677 rtn 
-:      023678 sdp_get_data_6:
-0x72f7 023679 deposit loopcnt 
-0x72f8 023680 beq 5 ,sdp_get_data_6_8bit 
-0x72f9 023681 beq 6 ,sdp_get_data_6_16bit 
-0x72fa 023682 force 3 ,loopcnt 
-0x72fb 023683 branch sdp_get_data_1 
-:      023684 sdp_get_data_6_8bit:
-0x72fc 023685 ifetch 1 ,contr 
-0x72fd 023686 rtn 
-:      023687 sdp_get_data_6_16bit:
-0x72fe 023688 ifetch 2 ,contr 
-0x72ff 023689 byteswap pdata ,pdata 
-0x7300 023690 rtn 
-:      023693 sdp_data_size:
-0x7301 023694 force 1 ,pdata 
-0x7302 023695 copy loopcnt ,null 
-0x7303 023696 rtn zero 
-:      023697 sdp_data_size_loop:
-0x7304 023698 lshift pdata ,pdata 
-0x7305 023699 loop sdp_data_size_loop 
-0x7306 023700 rtn 
-:      023705 search_uuid:
-0x7307 023706 iforce regc 
-0x7308 023707 set1 mark_ext_patch ,mark 
-0x7309 023708 bpatch patch3d_1 ,mem_patch3d 
-0x730a 023709 force 0 ,queue 
-0x730b 023710 fetch 2 ,memui_uuid_table 
-0x730c 023711 iforce contr 
-0x730d 023712 arg mem_handle_list ,contw 
-:      023713 search_uuid_next:
-0x730e 023714 disable user 
-0x730f 023715 ifetch 1 ,contr 
-0x7310 023716 rtn blank 
-0x7311 023717 iforce loopcnt 
-:      023718 search_uuid_loop:
-0x7312 023719 ifetch 2 ,contr 
-0x7313 023720 isub regc ,null 
-0x7314 023721 nbranch search_uuid_not_found ,zero 
-0x7315 023722 enable user 
-:      023723 search_uuid_not_found:
-0x7316 023724 loop search_uuid_loop 
-0x7317 023725 ifetch 4 ,contr 
-0x7318 023726 nbranch search_uuid_nomatch ,user 
-0x7319 023727 istore 4 ,contw 
-0x731a 023728 increase 1 ,queue 
-:      023729 search_uuid_nomatch:
-0x731b 023730 call sdp_get_data 
-0x731c 023731 iadd contr ,contr 
-0x731d 023732 branch search_uuid_next 
-:      023735 search_handle:
-0x731e 023736 fetch 2 ,memui_uuid_table 
-0x731f 023737 iforce contr 
-:      023738 search_handle_loop:
-0x7320 023739 ifetch 1 ,contr 
-0x7321 023740 rtn blank 
-0x7322 023741 lshift pdata ,pdata 
-0x7323 023742 iadd contr ,contr 
-0x7324 023743 ifetch 4 ,contr 
-0x7325 023744 isub temp ,null 
-0x7326 023745 rtn zero 
-0x7327 023746 call sdp_get_data 
-0x7328 023747 iadd contr ,contr 
-0x7329 023748 branch search_handle_loop 
-:      023755 search_attrib:
-0x732a 023756 set1 mark_ext_patch ,mark 
-0x732b 023757 bpatch patch3d_2 ,mem_patch3d 
-0x732c 023758 fetch 2 ,memui_uuid_table 
-0x732d 023759 iforce contr 
-:      023760 search_attrib_next:
-0x732e 023761 ifetch 1 ,contr 
-0x732f 023762 branch search_attrib_end ,blank 
-0x7330 023763 iforce loopcnt 
-:      023764 search_attrib_loop:
-0x7331 023765 ifetch 2 ,contr 
-0x7332 023766 isub regc ,null 
-0x7333 023767 branch search_attrib_found_uuid ,zero 
-0x7334 023768 loop search_attrib_loop 
-0x7335 023769 increase 4 ,contr 
-0x7336 023770 call sdp_get_data 
-0x7337 023771 iadd contr ,contr 
-0x7338 023772 branch search_attrib_next 
-:      023773 search_attrib_found_uuid:
-0x7339 023774 increase -1 ,loopcnt 
-0x733a 023775 lshift loopcnt ,pdata 
-0x733b 023776 iadd contr ,contr 
-0x733c 023777 increase 4 ,contr 
-0x733d 023778 call sdp_get_data 
-0x733e 023779 iadd contr ,temp 
-:      023780 search_attrib_loop_attribs:
-0x733f 023781 increase 1 ,contr 
-0x7340 023782 ifetch 2 ,contr 
-0x7341 023783 isub regb ,timeup 
-0x7342 023785 setflag zero ,0 ,pdata 
-0x7343 023786 copy timeup ,timeup 
-0x7344 023787 rtn zero 
-0x7345 023788 call sdp_data_len 
-0x7346 023789 iadd contr ,contr 
-0x7347 023790 deposit temp 
-0x7348 023791 isub contr ,null 
-0x7349 023792 branch search_attrib_end ,zero 
-0x734a 023793 branch search_attrib_loop_attribs 
-:      023794 search_attrib_end:
-0x734b 023795 force 0 ,contr 
-0x734c 023796 force 0 ,pdata 
-0x734d 023797 rtn 
-:      023803 search_handle_attrib:
-0x734e 023804 set1 mark_ext_patch ,mark 
-0x734f 023805 bpatch patch3d_3 ,mem_patch3d 
-0x7350 023806 fetch 2 ,memui_uuid_table 
-0x7351 023807 iforce contr 
-:      023808 search_handle_attrib_next:
-0x7352 023809 ifetch 1 ,contr 
-0x7353 023810 branch search_handle_attrib_end ,blank 
-0x7354 023811 lshift pdata ,pdata 
-0x7355 023812 iadd contr ,contr 
-0x7356 023813 ifetch 4 ,contr 
-0x7357 023814 isub temp ,null 
-0x7358 023815 branch search_handl_attrib_found_handle ,zero 
-0x7359 023816 call sdp_get_data 
-0x735a 023817 iadd contr ,contr 
-0x735b 023818 branch search_handle_attrib_next 
-:      023819 search_handl_attrib_found_handle:
-0x735c 023820 call sdp_get_data 
-0x735d 023821 iadd contr ,temp 
-:      023822 search_handle_attrib_loop_attribs:
-0x735e 023823 increase 1 ,contr 
-0x735f 023824 ifetch 2 ,contr 
-0x7360 023825 isub regb ,null 
-0x7361 023826 rtn zero 
-0x7362 023827 call sdp_data_len 
-0x7363 023828 iadd contr ,contr 
-0x7364 023829 deposit temp 
-0x7365 023830 isub contr ,null 
-0x7366 023831 branch search_handle_attrib_end ,zero 
-0x7367 023832 branch search_handle_attrib_loop_attribs 
-:      023833 search_handle_attrib_end:
-0x7368 023834 force 0 ,contr 
-0x7369 023835 rtn 
-:      023838 generate_kinit:
-0x736a 023839 call function_e22 
-0x736b 023840 arg mem_input_store ,contr 
-0x736c 023841 arg mem_kinit ,contw 
-0x736d 023842 branch memcpy16 
-:      023845 function_e21:
-0x736e 023846 disable user 
-0x736f 023847 call function_expand 
-0x7370 023848 arg mem_random_number ,contr 
-0x7371 023849 arg mem_x ,contw 
-0x7372 023850 force 15 ,loopcnt 
-0x7373 023851 call memcpy 
-0x7374 023852 ifetch 1 ,contr 
-0x7375 023853 xor_into 6 ,pdata 
-0x7376 023854 istore 1 ,contw 
-0x7377 023855 setarg mem_y 
-0x7378 023856 store 2 ,memp_ar_input 
-0x7379 023857 setarg mem_x 
-0x737a 023858 store 2 ,memp_ar_key 
-0x737b 023859 set1 mark_ar2 ,mark 
-0x737c 023860 branch function_ar 
-:      023864 function_e22:
-0x737d 023865 fetcht 1 ,mem_pin_length 
-0x737e 023866 force 16 ,regb 
-0x737f 023867 add temp ,6 ,regc 
-0x7380 023868 sub regc ,16 ,null 
-0x7381 023869 branch function_e22_pin_init ,positive 
-0x7382 023870 force 16 ,regc 
-:      023871 function_e22_pin_init:
-0x7383 023872 arg mem_x ,contw 
-:      023873 function_e22_genx_pin:
-0x7384 023874 arg mem_pin ,contr 
-0x7385 023875 copy temp ,loopcnt 
-0x7386 023876 disable user 
-:      023877 function_e22_genx_loop:
-0x7387 023878 ifetch 1 ,contr 
-0x7388 023879 istore 1 ,contw 
-0x7389 023880 increase -1 ,regb 
-0x738a 023881 branch function_e22_genx_end ,zero 
-0x738b 023882 loop function_e22_genx_loop 
-0x738c 023883 branch function_e22_genx_pin ,user 
-0x738d 023884 enable user 
-0x738e 023885 force 6 ,loopcnt 
-0x738f 023886 copy rega ,contr 
-0x7390 023887 branch function_e22_genx_loop 
-:      023888 function_e22_genx_end:
-0x7391 023889 arg mem_random_number ,contr 
-0x7392 023890 arg mem_y ,contw 
-0x7393 023891 call memcpy16 
-0x7394 023892 fetch 1 ,mem_y15 
-0x7395 023893 ixor regc ,pdata 
-0x7396 023894 store 1 ,mem_y15 
-0x7397 023895 setarg mem_y 
-0x7398 023896 store 2 ,memp_ar_input 
-0x7399 023897 setarg mem_x 
-0x739a 023898 store 2 ,memp_ar_key 
-0x739b 023899 set1 mark_ar2 ,mark 
-0x739c 023900 branch function_ar 
-:      023905 function_e1:
-0x739d 023906 disable user 
-0x739e 023907 call function_expand 
-0x739f 023908 branch function_hash 
-:      023910 function_e3:
-0x73a0 023911 arg mem_aco ,rega 
-0x73a1 023912 enable user 
-0x73a2 023913 call function_expand 
-0x73a3 023914 call function_hash 
-0x73a4 023915 arg mem_input_store ,contr 
-0x73a5 023916 arg mem_kc ,contw 
-0x73a6 023917 branch memcpy16 
-:      023920 function_hash:
-0x73a7 023921 setarg mem_random_number 
-0x73a8 023922 store 2 ,memp_ar_input 
-0x73a9 023923 setarg mem_link_key 
-0x73aa 023924 store 2 ,memp_ar_key 
-0x73ab 023925 set0 mark_ar2 ,mark 
-0x73ac 023926 call function_ar 
-0x73ad 023927 arg mem_input_store ,rega 
-0x73ae 023928 arg mem_random_number ,regb 
-0x73af 023929 arg mem_x ,contw 
-0x73b0 023930 call xor16 
-0x73b1 023931 arg mem_x ,rega 
-0x73b2 023932 arg mem_y ,regb 
-0x73b3 023933 copy regb ,contw 
-0x73b4 023934 enable user 
-0x73b5 023935 call add16 
-0x73b6 023936 call key_offset 
-0x73b7 023937 setarg mem_y 
-0x73b8 023938 store 2 ,memp_ar_input 
-0x73b9 023939 setarg mem_x 
-0x73ba 023940 store 2 ,memp_ar_key 
-0x73bb 023941 set1 mark_ar2 ,mark 
-0x73bc 023942 branch function_ar 
-:      023946 function_ar:
-0x73bd 023947 jam 0 ,mem_ar_hround 
-0x73be 023948 fetch 2 ,memp_ar_key 
-0x73bf 023949 iforce contr 
-0x73c0 023950 arg mem_key_store ,contw 
-0x73c1 023951 call memcpy16 
-0x73c2 023952 fetch 2 ,memp_ar_input 
-0x73c3 023953 iforce contr 
-0x73c4 023954 arg mem_input_store ,contw 
-0x73c5 023955 call memcpy16 
-:      023957 function_ar_loop:
-0x73c6 023958 call key_scheduling 
-0x73c7 023959 disable user 
-0x73c8 023960 bmark0 mark_ar2 ,function_ar_original 
-0x73c9 023961 fetch 1 ,mem_ar_hround 
-0x73ca 023962 bne 4 ,function_ar_original 
-0x73cb 023963 fetch 2 ,memp_ar_input 
-0x73cc 023964 iforce regb 
-0x73cd 023965 call xor_mod32_ar2 
-:      023966 function_ar_original:
-0x73ce 023967 call xor_mod32 
-0x73cf 023968 call el_boxes 
-0x73d0 023969 fetch 1 ,mem_ar_hround 
-0x73d1 023970 increase 1 ,pdata 
-0x73d2 023971 store 1 ,mem_ar_hround 
-0x73d3 023973 call key_scheduling 
-0x73d4 023974 enable user 
-0x73d5 023975 call xor_mod32 
-0x73d6 023976 call pht 
-0x73d7 023977 call permute 
-0x73d8 023978 call pht 
-0x73d9 023979 call permute 
-0x73da 023980 call pht 
-0x73db 023981 call permute 
-0x73dc 023982 call pht 
-0x73dd 023983 fetch 1 ,mem_ar_hround 
-0x73de 023984 increase 1 ,pdata 
-0x73df 023985 store 1 ,mem_ar_hround 
-0x73e0 023986 bne 16 ,function_ar_loop 
-0x73e1 023987 call key_scheduling 
-0x73e2 023988 disable user 
-0x73e3 023989 branch xor_mod32 
-:      023993 key_scheduling:
-0x73e4 023994 fetch 1 ,mem_ar_hround 
-0x73e5 023995 arg mem_key_store ,contr 
-0x73e6 023996 branch key_sched_zero ,blank 
-0x73e7 023997 iforce regb 
-0x73e8 023998 force 17 ,loopcnt 
-0x73e9 023999 copy contr ,contw 
-:      024000 key_rotateloop:
-0x73ea 024001 ifetch 1 ,contr 
-0x73eb 024002 lshift3 pdata ,temp 
-0x73ec 024003 rshift2 pdata ,pdata 
-0x73ed 024004 rshift3 pdata ,pdata 
-0x73ee 024005 ior temp ,pdata 
-0x73ef 024006 istore 1 ,contw 
-0x73f0 024007 loop key_rotateloop 
-0x73f1 024008 setarg mem_key_store 
-0x73f2 024009 iadd regb ,contr 
-0x73f3 024010 force 16 ,loopcnt 
-0x73f4 024011 arg mem_round_key ,contw 
-:      024012 key_select_octet_loop:
-0x73f5 024013 ifetch 1 ,contr 
-0x73f6 024014 istore 1 ,contw 
-0x73f7 024015 compare mem_key_store_end ,contr ,0xff 
-0x73f8 024016 nbranch key_select_octet_nwrap ,true 
-0x73f9 024017 increase -17 ,contr 
-:      024018 key_select_octet_nwrap:
-0x73fa 024019 loop key_select_octet_loop 
-0x73fb 024020 force 0 ,rega 
-0x73fc 024021 add regb ,-1 ,regc 
-0x73fd 024022 lshift2 regc ,regc 
-0x73fe 024023 lshift2 regc ,regc 
-0x73ff 024024 call enable_authrom 
-0x7400 024025 setarg mem_b_box 
-0x7401 024026 iadd regc ,regc 
-0x7402 024027 arg mem_round_key ,contw 
-0x7403 024028 force 16 ,loopcnt 
-:      024029 bias_round_key_loop:
-0x7404 024030 ifetcht 1 ,regc 
-0x7405 024031 ifetch 1 ,contw 
-0x7406 024032 iadd temp ,pdata 
-0x7407 024033 istore 1 ,contw 
-0x7408 024034 increase 1 ,regc 
-0x7409 024035 loop bias_round_key_loop 
-0x740a 024036 branch disable_authrom 
-:      024038 key_sched_zero:
-0x740b 024039 force 16 ,loopcnt 
-0x740c 024040 force 0 ,temp 
-:      024041 create_byte_16_loop:
-0x740d 024042 ifetch 1 ,contr 
-0x740e 024043 ixor temp ,temp 
-0x740f 024044 loop create_byte_16_loop 
-0x7410 024045 deposit temp 
-0x7411 024046 istore 1 ,contr 
-0x7412 024047 arg mem_key_store ,contr 
-0x7413 024048 arg mem_round_key ,contw 
-0x7414 024049 branch memcpy16 
-:      024051 xor_mod32:
-0x7415 024052 arg mem_round_key ,regb 
-:      024053 xor_mod32_ar2:
-0x7416 024054 force 16 ,loopcnt 
-0x7417 024055 arg mem_input_store ,rega 
-0x7418 024056 copy rega ,contw 
-:      024057 xor_mod32_loop:
-0x7419 024058 ifetcht 1 ,rega 
-0x741a 024059 ifetch 1 ,regb 
-0x741b 024060 ixor temp ,alarm 
-0x741c 024061 and loopcnt ,3 ,regc 
-0x741d 024062 nbranch xor_mod32_invert ,user 
-0x741e 024063 xor_into 3 ,regc 
-:      024064 xor_mod32_invert:
-0x741f 024065 sub regc ,1 ,regc 
-0x7420 024066 branch xor_even ,positive 
-0x7421 024067 iadd temp ,alarm 
-:      024068 xor_even:
-0x7422 024069 deposit alarm 
-0x7423 024070 istore 1 ,contw 
-0x7424 024071 increase 1 ,rega 
-0x7425 024072 increase 1 ,regb 
-0x7426 024073 loop xor_mod32_loop 
-0x7427 024074 rtn 
-:      024076 el_boxes:
-0x7428 024077 call enable_authrom 
-0x7429 024078 force 16 ,loopcnt 
-0x742a 024079 arg mem_input_store ,rega 
-:      024080 el_box_loop:
-0x742b 024081 ifetch 1 ,rega 
-0x742c 024082 arg mem_e_box ,contr 
-0x742d 024083 and loopcnt ,3 ,regc 
-0x742e 024084 sub regc ,1 ,null 
-0x742f 024085 branch e_boxes ,positive 
-0x7430 024086 arg mem_l_box ,contr 
-:      024087 e_boxes:
-0x7431 024088 iadd contr ,contr 
-0x7432 024089 ifetch 1 ,contr 
-0x7433 024090 istore 1 ,rega 
-0x7434 024091 increase 1 ,rega 
-0x7435 024092 loop el_box_loop 
-0x7436 024093 branch disable_authrom 
-:      024095 pht:
-0x7437 024096 force 8 ,loopcnt 
-0x7438 024097 arg mem_input_store ,contr 
-0x7439 024098 copy contr ,contw 
-:      024099 pht_loop:
-0x743a 024100 ifetch 1 ,contr 
-0x743b 024101 iforce rega 
-0x743c 024102 ifetch 1 ,contr 
-0x743d 024103 iforce regb 
-0x743e 024104 lshift rega ,pdata 
-0x743f 024105 iadd regb ,pdata 
-0x7440 024106 istore 1 ,contw 
-0x7441 024107 deposit rega 
-0x7442 024108 iadd regb ,pdata 
-0x7443 024109 istore 1 ,contw 
-0x7444 024110 loop pht_loop 
-0x7445 024111 rtn 
-:      024114 permute:
-0x7446 024115 setarg 0x8ae42c 
-0x7447 024116 iforce temp 
-0x7448 024117 force 7 ,loopcnt 
-0x7449 024118 call permute_exchange 
-0x744a 024119 setarg 0xd751b 
-0x744b 024120 iforce temp 
-0x744c 024121 force 5 ,loopcnt 
-0x744d 024122 call permute_exchange 
-0x744e 024123 fetch 1 ,mem_input_store + 15 
-0x744f 024124 iforce rega 
-0x7450 024125 fetch 1 ,mem_input_store + 3 
-0x7451 024126 store 1 ,mem_input_store + 15 
-0x7452 024127 deposit rega 
-0x7453 024128 store 1 ,mem_input_store + 3 
-0x7454 024129 rtn 
-:      024131 permute_exchange:
-0x7455 024132 and temp ,0xf ,regb 
-:      024133 permute_loop:
-0x7456 024134 and temp ,0xf ,pdata 
-0x7457 024135 arg mem_input_store ,contw 
-0x7458 024136 iadd contw ,contw 
-0x7459 024137 ifetch 1 ,contw 
-0x745a 024138 iforce regc 
-0x745b 024139 deposit rega 
-0x745c 024140 istore 1 ,contw 
-0x745d 024141 copy regc ,rega 
-0x745e 024142 rshift4 temp ,temp 
-0x745f 024143 loop permute_loop 
-0x7460 024144 setarg mem_input_store 
-0x7461 024145 iadd regb ,contw 
-0x7462 024146 deposit rega 
-0x7463 024147 istore 1 ,contw 
-0x7464 024148 rtn 
-:      024150 add16:
-0x7465 024151 enable user 
-0x7466 024152 branch xor_add16 
-:      024154 xor16:
-0x7467 024155 disable user 
-:      024156 xor_add16:
-0x7468 024157 force 16 ,loopcnt 
-:      024158 xoradd_loop:
-0x7469 024159 ifetcht 1 ,rega 
-0x746a 024160 ifetch 1 ,regb 
-0x746b 024161 branch xoradd_add ,user 
-0x746c 024162 ixor temp ,pdata 
-0x746d 024163 branch xoradd_store 
-:      024164 xoradd_add:
-0x746e 024165 iadd temp ,pdata 
-:      024166 xoradd_store:
-0x746f 024167 istore 1 ,contw 
-0x7470 024168 increase 1 ,rega 
-0x7471 024169 increase 1 ,regb 
-0x7472 024170 loop xoradd_loop 
-0x7473 024171 rtn 
-:      024174 function_expand:
-0x7474 024175 arg mem_y ,contw 
-0x7475 024176 ifetch 6 ,rega 
-0x7476 024177 istore 6 ,contw 
-0x7477 024178 branch expand_12 ,user 
-0x7478 024179 ifetch 6 ,rega 
-0x7479 024180 branch expand_cont 
-:      024181 expand_12:
-0x747a 024182 ifetch 6 ,contr 
-:      024183 expand_cont:
-0x747b 024184 istore 6 ,contw 
-0x747c 024185 ifetch 4 ,rega 
-0x747d 024186 istore 4 ,contw 
-0x747e 024187 rtn 
-:      024189 key_offset:
-0x747f 024190 arg mem_link_key ,contr 
-0x7480 024191 arg mem_x ,contw 
-0x7481 024192 arg 0 ,temp 
-0x7482 024193 setarg 0x8395a7 
-0x7483 024194 call concatenate_temp24 
-0x7484 024195 setarg 0xb3c1df 
-0x7485 024196 call concatenate_temp24 
-0x7486 024197 setarg 0xe5e9 
-0x7487 024198 call concatenate_temp16 
-0x7488 024199 copy temp ,regab 
-0x7489 024200 disable user 
-0x748a 024201 call key_addxor 
-0x748b 024202 copy regab ,temp 
-0x748c 024203 enable user 
-0x748d 024204 branch key_addxor 
-:      024206 key_addxor:
-0x748e 024207 force 8 ,loopcnt 
-:      024208 key_addxor_loop:
-0x748f 024209 ifetch 1 ,contr 
-0x7490 024210 compare 1 ,loopcnt ,1 
-0x7491 024211 branch key_high ,user 
-0x7492 024212 branch key_xor ,true 
-:      024213 key_add:
-0x7493 024214 iadd temp ,pdata 
-0x7494 024215 branch key_store 
-:      024216 key_high:
-0x7495 024217 branch key_add ,true 
-:      024218 key_xor:
-0x7496 024219 ixor temp ,pdata 
-:      024220 key_store:
-0x7497 024221 istore 1 ,contw 
-0x7498 024222 rshift8 temp ,temp 
-0x7499 024223 loop key_addxor_loop 
-0x749a 024224 rtn 
-:      024226 copy_aco:
-0x749b 024227 fetch 6 ,mem_input_store + 4 
-0x749c 024228 store 6 ,mem_aco 
-0x749d 024229 ifetch 6 ,contr 
-0x749e 024230 istore 6 ,contw 
-0x749f 024231 rtn 
-:      024233 concatenate_temp24:
-0x74a0 024234 lshift8 temp ,temp 
-:      024235 concatenate_temp16:
-0x74a1 024236 lshift16 temp ,temp 
-0x74a2 024237 ior temp ,temp 
-0x74a3 024238 rtn 
-:      024241 loop1:
-0x74a4 024242 branch loop1 
-:      024246 generate_stk:
-0x74a5 024247 call function_s1 
-0x74a6 024248 arg mem_le_ltk ,contw 
-0x74a7 024249 branch store_aes_result 
-:      024252 authenticate_rconfirm:
-0x74a8 024253 arg mem_le_srand ,contw 
-0x74a9 024254 branch authenticate_mconfirm ,master 
-0x74aa 024255 arg mem_le_mrand ,contw 
-:      024256 authenticate_mconfirm:
-0x74ab 024257 copy contr ,rega 
-0x74ac 024258 call memcpy16 
-0x74ad 024259 call function_c1 
-0x74ae 024260 arg mem_le_rconfirm ,contr 
-0x74af 024261 branch compare_res 
-:      024263 generate_confirm:
-0x74b0 024264 arg mem_le_mrand ,rega 
-0x74b1 024265 branch generate_mrand ,master 
-0x74b2 024266 arg mem_le_srand ,rega 
-:      024267 generate_mrand:
-0x74b3 024268 copy rega ,contw 
-0x74b4 024269 call generate_random 
-0x74b5 024270 branch function_c1 
-:      024272 generate_sk:
-0x74b6 024273 arg mem_le_skdm ,contr 
-0x74b7 024274 call load_data128 
-0x74b8 024275 arg mem_le_ltk ,contr 
-0x74b9 024276 call load_regext 
-0x74ba 024277 force 0x38 ,aes_ctrl 
-0x74bb 024278 force 0x0 ,aes_ctrl 
-0x74bc 024279 call wait_aes 
-0x74bd 024280 arg mem_le_sk ,contw 
-0x74be 024281 branch store_aes_result 
-:      024284 first_block_counter:
-0x74bf 024285 force 0x49 ,pdata 
-0x74c0 024286 branch first_block 
-:      024287 first_block_data:
-0x74c1 024288 force 1 ,pdata 
-:      024289 first_block:
-0x74c2 024290 force regidx_data ,regext_index 
-0x74c3 024291 lshift8 temp ,regext 
-0x74c4 024292 ior regext ,regext 
-0x74c5 024293 increase 1 ,regext_index 
-0x74c6 024294 rshift8 temp ,regext 
-0x74c7 024295 rshift16 regext ,regext 
-0x74c8 024296 fetch 2 ,mem_le_ivm 
-0x74c9 024297 lshift16 ,pdata ,pdata 
-0x74ca 024298 ior regext ,regext 
-0x74cb 024299 increase 1 ,regext_index 
-0x74cc 024300 ifetch 4 ,contr 
-0x74cd 024301 iforce regext 
-0x74ce 024302 increase 1 ,regext_index 
-0x74cf 024303 ifetch 2 ,contr 
-0x74d0 024304 byteswap rega ,regext 
-0x74d1 024305 lshift16 regext ,regext 
-0x74d2 024306 ior regext ,regext 
-0x74d3 024307 increase 1 ,regext_index 
-0x74d4 024308 rtn 
-:      024312 generate_mic:
-0x74d5 024313 add regc ,1 ,contr 
-0x74d6 024314 ifetch 1 ,contr 
-0x74d7 024315 iforce rega 
-0x74d8 024316 call first_block_counter 
-0x74d9 024317 call do_aes_ocb 
-0x74da 024319 force regidx_data ,regext_index 
-0x74db 024320 ifetch 1 ,regc 
-0x74dc 024321 and_into 0x3 ,pdata 
-0x74dd 024322 lshift16 pdata ,regext 
-0x74de 024323 set1 8 ,regext 
-0x74df 024324 call clear_hidata 
-0x74e0 024325 call do_aes_cbc 
-0x74e1 024327 copy rega ,loopcnt 
-0x74e2 024328 add regc ,2 ,contr 
-0x74e3 024329 call padding_data 
-:      024330 generate_mic_loop:
-0x74e4 024331 call aes_load_data 
-0x74e5 024332 call do_aes_cbc 
-0x74e6 024333 deposit loopcnt 
-0x74e7 024334 branch generate_mic_end ,blank 
-0x74e8 024335 branch generate_mic_loop 
-:      024336 generate_mic_end:
-0x74e9 024337 force regidx_result ,regext_index 
-0x74ea 024338 deposit regext 
-0x74eb 024339 store 4 ,mem_le_mic 
-0x74ec 024340 rtn 
-:      024342 aes_crypt_data:
-0x74ed 024343 increase 1 ,rega 
-0x74ee 024344 call first_block_data 
-0x74ef 024345 copy regc ,contr 
-0x74f0 024346 call aes_load_xor 
-0x74f1 024347 call do_aes_ctr 
-0x74f2 024348 call store_enc_data 
-0x74f3 024349 increase 16 ,regc 
-0x74f4 024350 increase -16 ,regb 
-0x74f5 024351 branch aes_crypt_data ,positive 
-0x74f6 024352 rtn 
-:      024354 le_encrypt:
-0x74f7 024355 arg mem_le_txheader ,regc 
-0x74f8 024356 fetcht 5 ,mem_le_pcnt_tx 
-0x74f9 024357 call generate_mic 
-0x74fa 024358 force regidx_xor ,regext_index 
-0x74fb 024359 iforce regext 
-0x74fc 024360 force 0 ,rega 
-0x74fd 024361 call first_block_data 
-0x74fe 024362 call do_aes_ctr 
-0x74ff 024363 arg mem_le_txpayload ,regc 
-0x7500 024364 fetch 1 ,mem_le_txlen 
-0x7501 024365 add pdata ,-1 ,regb 
-0x7502 024366 iadd regc ,contw 
-0x7503 024367 force regidx_result ,regext_index 
-0x7504 024368 deposit regext 
-0x7505 024369 istore 4 ,contw 
-0x7506 024370 call aes_crypt_data 
-0x7507 024371 fetch 1 ,mem_le_txlen 
-0x7508 024372 increase 4 ,pdata 
-0x7509 024373 store 1 ,mem_le_txlen 
-0x750a 024374 fetcht 5 ,mem_le_pcnt_tx 
-0x750b 024375 increase 1 ,temp 
-0x750c 024376 storet 5 ,mem_le_pcnt_tx 
-0x750d 024377 rtn 
-:      024379 le_decrypt:
-0x750e 024380 fetch 1 ,mem_le_rxbuf + 1 
-0x750f 024381 sub pdata ,20 ,null 
-0x7510 024382 branch le_dec_cont ,positive 
-:      024383 le_dec_cont:
-0x7511 024384 arg mem_le_rxbuf + 2 ,regc 
-0x7512 024385 add pdata ,-1 ,regb 
-0x7513 024386 increase -4 ,pdata 
-0x7514 024387 store 1 ,mem_le_rxbuf + 1 
-0x7515 024388 iadd regc ,contr 
-0x7516 024389 ifetch 4 ,contr 
-0x7517 024390 force regidx_xor ,regext_index 
-0x7518 024391 iforce regext 
-0x7519 024392 force 0 ,rega 
-0x751a 024393 fetcht 5 ,mem_le_pcnt_rx 
-0x751b 024394 call first_block_data 
-0x751c 024395 call do_aes_ctr 
-0x751d 024396 force regidx_result ,regext_index 
-0x751e 024397 deposit regext 
-0x751f 024398 store 4 ,mem_le_peer_mic 
-0x7520 024399 call aes_crypt_data 
-0x7521 024400 arg mem_le_rxbuf ,regc 
-0x7522 024401 call generate_mic 
-0x7523 024402 fetcht 4 ,mem_le_peer_mic 
-0x7524 024403 isub temp ,pdata 
-0x7525 024404 nrtn blank 
-0x7526 024405 fetch 4 ,mem_le_last_mic 
-0x7527 024406 isub temp ,pdata 
-0x7528 024407 rtn blank 
-0x7529 024408 storet 4 ,mem_le_last_mic 
-0x752a 024409 fetch 5 ,mem_le_pcnt_rx 
-0x752b 024410 increase 1 ,pdata 
-0x752c 024411 store 5 ,mem_le_pcnt_rx 
-0x752d 024412 force 0 ,pdata 
-0x752e 024413 rtn 
-:      024415 wait_aes:
-0x752f 024416 nbranch wait_aes ,aes_ready 
-0x7530 024417 rtn 
-:      024419 do_aes_ocb:
-0x7531 024420 force 0x30 ,aes_ctrl 
-0x7532 024421 force 0x0 ,aes_ctrl 
-0x7533 024422 branch wait_aes 
-:      024424 do_aes_cbc:
-0x7534 024425 force 0x32 ,aes_ctrl 
-0x7535 024426 force 0x2 ,aes_ctrl 
-0x7536 024427 branch wait_aes 
-:      024429 do_aes_ctr:
-0x7537 024430 force 0x34 ,aes_ctrl 
-0x7538 024431 force 0x4 ,aes_ctrl 
-0x7539 024432 branch wait_aes 
-:      024434 do_aes_cfb:
-0x753a 024435 force 0x36 ,aes_ctrl 
-0x753b 024436 force 0x6 ,aes_ctrl 
-0x753c 024437 branch wait_aes 
-:      024439 aes_init:
-0x753d 024440 force 1 ,aes_ctrl 
-0x753e 024441 force 0 ,aes_ctrl 
-0x753f 024442 rtn 
-:      024443 function_s1:
-0x7540 024444 force regidx_data ,regext_index 
-0x7541 024445 fetch 4 ,mem_le_mrand 
-0x7542 024446 iforce regext 
-0x7543 024447 increase 1 ,regext_index 
-0x7544 024448 ifetch 4 ,contr 
-0x7545 024449 iforce regext 
-0x7546 024450 increase 1 ,regext_index 
-0x7547 024451 fetch 4 ,mem_le_srand 
-0x7548 024452 iforce regext 
-0x7549 024453 increase 1 ,regext_index 
-0x754a 024454 ifetch 4 ,contr 
-0x754b 024455 iforce regext 
-0x754c 024456 increase 1 ,regext_index 
-0x754d 024457 call aes_clear 
-0x754e 024458 force 0x38 ,aes_ctrl 
-0x754f 024459 force 0x8 ,aes_ctrl 
-0x7550 024460 branch wait_aes 
-:      024463 function_c1:
-0x7551 024464 fetch 6 ,mem_le_lap 
-0x7552 024465 fetcht 6 ,mem_le_plap 
-0x7553 024466 branch function_c1_master ,master 
-0x7554 024467 fetch 6 ,mem_le_plap 
-0x7555 024468 fetcht 6 ,mem_le_lap 
-:      024469 function_c1_master:
-0x7556 024470 force regidx_xor ,regext_index 
-0x7557 024471 copy temp ,regext 
-0x7558 024472 increase 1 ,regext_index 
-0x7559 024473 rshift32 temp ,regext 
-0x755a 024474 lshift16 pdata ,pdata 
-0x755b 024475 ior regext ,regext 
-0x755c 024476 increase 1 ,regext_index 
-0x755d 024477 rshift32 pdata ,regext 
-0x755e 024478 increase 1 ,regext_index 
-0x755f 024479 force 0 ,regext 
-0x7560 024480 force 0 ,pdata 
-0x7561 024481 fetch 1 ,mem_le_conn_peer_addr_type 
-0x7562 024482 fetcht 1 ,mem_le_adv_own_addr_type 
-0x7563 024483 nbranch function_c1_irat ,master 
-0x7564 024485 fetch 1 ,mem_le_conn_own_addr_type 
-0x7565 024486 fetcht 1 ,mem_le_conn_peer_addr_type 
-:      024487 function_c1_irat:
-0x7566 024488 store 1 ,mem_le_iat 
-0x7567 024489 storet 1 ,mem_le_rat 
-0x7568 024490 force regidx_data ,regext_index 
-0x7569 024491 arg mem_le_iat ,regb 
-0x756a 024492 force 4 ,loopcnt 
-:      024493 function_c1_loop1:
-0x756b 024494 ifetch 4 ,rega 
-0x756c 024495 ifetcht 4 ,regb 
-0x756d 024496 ixor temp ,regext 
-0x756e 024497 increase 1 ,regext_index 
-0x756f 024498 increase 4 ,rega 
-0x7570 024499 increase 4 ,regb 
-0x7571 024500 loop function_c1_loop1 
-0x7572 024501 call aes_clear 
-0x7573 024502 force 0x38 ,aes_ctrl 
-0x7574 024503 force 0xc ,aes_ctrl 
-0x7575 024504 call wait_aes 
-0x7576 024506 call aes_clear_data 
-0x7577 024507 force 0x3a ,aes_ctrl 
-0x7578 024508 force 0x8 ,aes_ctrl 
-0x7579 024509 branch wait_aes 
-:      024511 padding_data:
-0x757a 024512 compare 0 ,loopcnt ,3 
-0x757b 024513 rtn true 
-0x757c 024514 deposit contr 
-0x757d 024515 iadd loopcnt ,contw 
-0x757e 024516 force 0 ,pdata 
-:      024517 padding_loop:
-0x757f 024518 istore 1 ,contw 
-0x7580 024519 increase 1 ,loopcnt 
-0x7581 024520 compare 0 ,loopcnt ,3 
-0x7582 024521 rtn true 
-0x7583 024522 branch padding_loop 
-:      024524 aes_load_data:
-0x7584 024525 force regidx_data ,regext_index 
-:      024526 load_data_loop:
-0x7585 024527 deposit loopcnt 
-0x7586 024528 branch load_data_padding ,blank 
-0x7587 024529 ifetch 4 ,contr 
-0x7588 024530 increase -4 ,loopcnt 
-:      024531 load_data_padding:
-0x7589 024532 iforce regext 
-0x758a 024533 increase 1 ,regext_index 
-0x758b 024534 compare regidx_key ,regext_index ,0xf 
-0x758c 024535 rtn true 
-0x758d 024536 branch load_data_loop 
-:      024538 aes_load_xor:
-0x758e 024539 force regidx_xor ,regext_index 
-0x758f 024540 branch load_regext 
-:      024541 load_key:
-0x7590 024542 force regidx_key ,regext_index 
-0x7591 024543 branch load_regext 
-:      024544 load_data128:
-0x7592 024545 force regidx_data ,regext_index 
-:      024546 load_regext:
-0x7593 024547 force 4 ,loopcnt 
-:      024548 load_regext_loop:
-0x7594 024549 ifetch 4 ,contr 
-0x7595 024550 iforce regext 
-0x7596 024551 increase 1 ,regext_index 
-0x7597 024552 loop load_regext_loop 
-0x7598 024553 rtn 
-:      024555 load_sk:
-0x7599 024556 arg mem_le_sk ,contr 
-0x759a 024557 branch load_key 
-:      024559 clear_hidata:
-0x759b 024560 force 4 ,loopcnt 
-0x759c 024561 branch clear_data_rest 
-:      024563 aes_clear_data:
-0x759d 024564 force regidx_data ,regext_index 
-:      024565 aes_clear:
-0x759e 024566 force 4 ,loopcnt 
-:      024567 clear_loop:
-0x759f 024568 force 0 ,regext 
-:      024569 clear_data_rest:
-0x75a0 024570 increase 1 ,regext_index 
-0x75a1 024571 loop clear_loop 
-0x75a2 024572 rtn 
-:      024574 store_aes_result:
-0x75a3 024575 force regidx_result ,regext_index 
-0x75a4 024576 force 4 ,loopcnt 
-:      024577 send_aes_result_loop:
-0x75a5 024578 deposit regext 
-0x75a6 024579 istore 4 ,contw 
-0x75a7 024580 increase 1 ,regext_index 
-0x75a8 024581 loop send_aes_result_loop 
-0x75a9 024582 rtn 
-:      024584 store_enc_data:
-0x75aa 024585 force regidx_result ,regext_index 
-0x75ab 024586 copy regc ,contw 
-0x75ac 024587 add regb ,1 ,loopcnt 
-0x75ad 024588 sub loopcnt ,15 ,null 
-0x75ae 024589 branch store_enc_loop ,positive 
-0x75af 024590 force 16 ,loopcnt 
-:      024591 store_enc_loop:
-0x75b0 024592 deposit regext 
-0x75b1 024593 sub loopcnt ,3 ,null 
-0x75b2 024594 branch store_enc_byte ,positive 
-0x75b3 024595 istore 4 ,contw 
-0x75b4 024596 increase -4 ,loopcnt 
-0x75b5 024597 rtn zero 
-0x75b6 024598 increase 1 ,regext_index 
-0x75b7 024599 branch store_enc_loop 
-:      024600 store_enc_byte:
-0x75b8 024601 istore 1 ,contw 
-0x75b9 024602 rshift8 pdata ,pdata 
-0x75ba 024603 loop store_enc_byte 
-0x75bb 024604 rtn 
-:      024607 compare_res:
-0x75bc 024608 force regidx_result ,regext_index 
-0x75bd 024609 force 4 ,loopcnt 
-:      024610 compare_res_loop:
-0x75be 024611 ifetch 4 ,contr 
-0x75bf 024612 isub regext ,null 
-0x75c0 024613 nrtn zero 
-0x75c1 024614 increase 1 ,regext_index 
-0x75c2 024615 loop compare_res_loop 
-0x75c3 024616 force 0 ,null 
-0x75c4 024617 rtn 
-:      024619 enable_authrom:
-0x75c5 024620 hfetch 1 ,core_clkoff 
-0x75c6 024621 set0 clock_off_auth_rom ,pdata 
-0x75c7 024622 hstore 1 ,core_clkoff 
-0x75c8 024623 rtn 
-:      024625 disable_authrom:
-0x75c9 024626 hfetch 1 ,core_clkoff 
-0x75ca 024627 set1 clock_off_auth_rom ,pdata 
-0x75cb 024628 hstore 1 ,core_clkoff 
-0x75cc 024629 rtn 
-:      024631 init_memp:
-0x75cd 024632 arg mem_p ,contw 
-0x75ce 024633 setsect 0 ,0x3ffff 
-0x75cf 024634 setsect 1 ,0x3ffff 
-0x75d0 024635 setsect 2 ,0x3ffff 
-0x75d1 024636 setsect 3 ,0x3fbff 
-0x75d2 024637 istore 9 ,contw 
-0x75d3 024638 setsect 0 ,0x3ffff 
-0x75d4 024639 setsect 1 ,0x3ffff 
-0x75d5 024640 setsect 2 ,0x3ffff 
-0x75d6 024641 setsect 3 ,0x3ffff 
-0x75d7 024642 istore 9 ,contw 
-0x75d8 024643 setsect 0 ,0x3ffff 
-0x75d9 024644 setsect 1 ,0x3ffff 
-0x75da 024645 setsect 2 ,0x3cfff 
-0x75db 024646 setsect 3 ,0x3ffff 
-0x75dc 024647 istore 9 ,contw 
-0x75dd 024648 setsect 0 ,0x3ffff 
-0x75de 024649 setsect 1 ,0x3ffff 
-0x75df 024650 setsect 2 ,0x3ffef 
-0x75e0 024651 setsect 3 ,0x3ffff 
-0x75e1 024652 istore 9 ,contw 
-0x75e2 024653 setsect 0 ,0x3ffff 
-0x75e3 024654 setsect 1 ,0x3ffff 
-0x75e4 024655 setsect 2 ,0x3ffff 
-0x75e5 024656 setsect 3 ,0x3ffff 
-0x75e6 024657 istore 9 ,contw 
-0x75e7 024658 setsect 0 ,0x3ffff 
-0x75e8 024659 setsect 1 ,0x26c7f 
-0x75e9 024660 setsect 2 ,0x146b 
-0x75ea 024661 setsect 3 ,0x37bb3 
-0x75eb 024662 istore 9 ,contw 
-0x75ec 024663 setsect 0 ,0x1feb8 
-0x75ed 024664 setsect 1 ,0x10c12 
-0x75ee 024665 setsect 2 ,0x2b722 
-0x75ef 024666 setsect 3 ,0x29fa6 
-0x75f0 024667 istore 9 ,contw 
-0x75f1 024668 setsect 0 ,0xe70f 
-0x75f2 024669 setsect 1 ,0x16720 
-0x75f3 024670 setsect 2 ,0x519e 
-0x75f4 024671 setsect 3 ,0x19084 
-0x75f5 024672 istore 9 ,contw 
-0x75f6 024673 setsect 0 ,0x31012 
-0x75f7 024674 setsect 1 ,0x360bf 
-0x75f8 024675 setsect 2 ,0x3f0af 
-0x75f9 024676 setsect 3 ,0x3d3 
-0x75fa 024677 istore 9 ,contw 
-0x75fb 024678 setsect 0 ,0x3a188 
-0x75fc 024679 setsect 1 ,0x3ad0 
-0x75fd 024680 setsect 2 ,0x3cbf2 
-0x75fe 024681 setsect 3 ,0x243d9 
-0x75ff 024682 istore 9 ,contw 
-0x7600 024683 setsect 0 ,0x2b030 
-0x7601 024684 setsect 1 ,0x36a03 
-0x7602 024685 setsect 2 ,0x11188 
-0x7603 024686 setsect 3 ,0x1e520 
-0x7604 024687 istore 9 ,contw 
-0x7605 024688 setsect 0 ,0x3a11e 
-0x7606 024689 setsect 1 ,0xfe5d 
-0x7607 024690 setsect 2 ,0xdd57 
-0x7608 024691 setsect 3 ,0x1ac93 
-0x7609 024692 istore 9 ,contw 
-0x760a 024693 setsect 0 ,0x11ed 
-0x760b 024694 setsect 1 ,0x218c4 
-0x760c 024695 setsect 2 ,0x8da7 
-0x760d 024696 setsect 3 ,0x257ff 
-0x760e 024697 istore 9 ,contw 
-0x760f 024698 setsect 0 ,0x3192b 
-0x7610 024699 setsect 1 ,0x34641 
-0x7611 024700 setsect 2 ,0x1be0c 
-0x7612 024701 setsect 3 ,0x366ad 
-0x7613 024702 istore 9 ,contw 
-0x7614 024703 setsect 0 ,0x1f83 
-0x7615 024704 setsect 1 ,0x15a23 
-0x7616 024705 setsect 2 ,0x3f9b0 
-0x7617 024706 setsect 3 ,0x3949 
-0x7618 024707 istore 9 ,contw 
-0x7619 024708 setsect 0 ,0x13a51 
-0x761a 024709 setsect 1 ,0x153fd 
-0x761b 024710 setsect 2 ,0x3372a 
-0x761c 024711 setsect 3 ,0xf1bb 
-0x761d 024712 istore 9 ,contw 
-0x761e 024713 setsect 0 ,0x3ae85 
-0x761f 024714 setsect 1 ,0x1eed9 
-0x7620 024715 setsect 2 ,0x9e66 
-0x7621 024716 setsect 3 ,0x1a8 
-0x7622 024717 istore 8 ,contw 
-0x7623 024718 rtn 
-:      024722 shutter_init:
-0x7624 024723 setarg shutter_send_process 
-0x7625 024724 store 2 ,mem_cb_bt_process 
-0x7626 024725 setarg shutter_process_idle 
-0x7627 024726 store 2 ,mem_cb_idle_process 
-0x7628 024727 setarg shutter_process_bb_event 
-0x7629 024728 store 2 ,mem_cb_bb_event_process 
-0x762a 024729 setarg shutter_process_lpm_before 
-0x762b 024730 store 2 ,mem_cb_before_lpm 
-0x762c 024731 setarg shutter_discovery_timeout_sleep 
-0x762d 024732 store 2 ,mem_cb_discovry_timeout 
-0x762e 024733 set1 mark_ext_patch ,mark 
-0x762f 024734 bpatch patch3f_1 ,mem_patch3f 
-0x7630 024735 rtn wake 
-0x7631 024737 hjam 0x00 ,core_gpio_sel1 
-0x7632 024738 call shutter_key_and_wake_gpio_setup 
-0x7633 024740 setarg shutter_before_hibernate 
-0x7634 024741 store 2 ,mem_cb_before_hibernate 
-0x7635 024743 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
-0x7636 024744 jam 0 ,mem_shutter_key 
-0x7637 024745 jam flag_shutter_default ,mem_shutter_flag 
-0x7638 024746 setarg 0 
-0x7639 024747 store 4 ,mem_shutter_send_data 
-0x763a 024748 call app_check_reconn_target 
-0x763b 024749 branch app_bt_start_discovery_short ,blank 
-0x763c 024750 call app_led_on 
-0x763d 024751 call app_bt_stop_discovery 
-0x763e 024752 branch app_bt_start_reconnect 
-:      024754 shutter_key_and_wake_gpio_setup:
-0x763f 024755 fetcht 1 ,mem_shutter_iphonekey_gpio 
-0x7640 024756 call gpio_config_input 
-0x7641 024757 fetcht 1 ,mem_shutter_androidkey_gpio 
-0x7642 024758 branch gpio_config_input 
-:      024760 shutter_cancel_key_shake:
-0x7643 024761 set1 mark_ext_patch ,mark 
-0x7644 024762 bpatch patch3f_2 ,mem_patch3f 
-0x7645 024763 fetcht 4 ,mem_shutter_clkn_bt_last 
-0x7646 024764 deposit clkn_bt 
-0x7647 024765 store 4 ,mem_shutter_clkn_bt_last 
-0x7648 024766 isub temp ,pdata 
-0x7649 024767 nrtn positive 
-0x764a 024768 sub pdata ,200 ,pdata 
-0x764b 024769 rtn 
-:      024771 shutter_send_process:
-0x764c 024772 fetch 1 ,mem_hid_interrupt_state 
-0x764d 024773 rtnne 0x3f 
-:      024774 shutter_scan_key_start:
-0x764e 024775 set1 mark_ext_patch ,mark 
-0x764f 024776 bpatch patch3f_3 ,mem_patch3f 
-0x7650 024777 fetch 1 ,mem_device_option 
-0x7651 024778 rtnne dvc_op_shutter 
-0x7652 024779 disable user 
-0x7653 024780 call shutter_scan_key 
-0x7654 024781 nrtn user 
-0x7655 024782 disable user 
-0x7656 024783 fetch 1 ,mem_scan_mode 
-0x7657 024784 beq 0x03 ,shutter_reconnect_scan_2 
-0x7658 024786 fetch 1 ,mem_shutter_flag 
-0x7659 024787 beq flag_shutter_iphonekey_send ,shutter_iphonekey_release 
-0x765a 024788 beq flag_shutter_androidkey_send ,shutter_androidkey_release 
-0x765b 024789 call shutter_cancel_key_shake 
-0x765c 024790 branch shutter_send_process_end ,positive 
-0x765d 024792 fetch 1 ,mem_shutter_key 
-0x765e 024793 bbit1 flag_shutter_iphonekey_press ,shutter_iphonekey_press 
-0x765f 024794 bbit1 flag_shutter_androidkey_press ,shutter_androidkey_press 
-:      024796 shutter_send_process_end:
-0x7660 024797 jam 0 ,mem_shutter_key 
-0x7661 024798 jam flag_shutter_default ,mem_shutter_flag 
-0x7662 024799 rtn 
-:      024802 shutter_iphonekey_release:
-0x7663 024803 jam flag_shutter_default ,mem_shutter_flag 
-0x7664 024804 call ui_led_blink_stop 
-0x7665 024805 fetch 1 ,mem_shutter_key_number 
-0x7666 024806 beq flag_shutter_1key ,shutter_1key_iphonekey_release 
-:      024807 shutter_2key_iphonekey_release:
-:      024808 shutter_iphonekey_release_package:
-0x7667 024809 jam 0x05 ,mem_shutter_send_length 
-0x7668 024810 jam 0x03 ,mem_shutter_send_data 
-0x7669 024811 branch shutter_send_keydata 
-:      024812 shutter_1key_iphonekey_release:
-0x766a 024813 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
-0x766b 024814 branch shutter_1key_send_step1 
-:      024816 shutter_1key_send_step1:
-0x766c 024817 jam flag_shutter_1key_send_step2 ,mem_shutter_1key_send_sm 
-0x766d 024818 branch shutter_androidkey_press_package 
-:      024819 shutter_1key_send_step2:
-0x766e 024820 jam flag_shutter_1key_send_step3 ,mem_shutter_1key_send_sm 
-0x766f 024821 branch shutter_androidkey_release_package 
-:      024822 shutter_1key_send_step3:
-0x7670 024823 jam flag_shutter_1key_send_step4 ,mem_shutter_1key_send_sm 
-0x7671 024824 branch shutter_iphonekey_press_package 
-:      024825 shutter_1key_send_step4:
-0x7672 024826 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
-0x7673 024827 branch shutter_iphonekey_release_package 
-:      024829 shutter_iphonekey_press:
-0x7674 024830 jam flag_shutter_iphonekey_send ,mem_shutter_flag 
-0x7675 024831 call ui_led_on 
-0x7676 024832 fetch 1 ,mem_shutter_key_number 
-0x7677 024833 beq flag_shutter_1key ,shutter_1key_iphonekey_press 
-:      024834 shutter_2key_iphonekey_press:
-:      024835 shutter_iphonekey_press_package:
-0x7678 024836 jam 0x05 ,mem_shutter_send_length 
-0x7679 024837 setarg 0x20003 
-0x767a 024838 store 3 ,mem_shutter_send_data 
-0x767b 024839 branch shutter_send_keydata 
-:      024840 shutter_1key_iphonekey_press:
-0x767c 024841 rtn 
-:      024843 shutter_androidkey_release:
-0x767d 024844 jam flag_shutter_default ,mem_shutter_flag 
-0x767e 024845 call ui_led_blink_stop 
-:      024846 shutter_androidkey_release_package:
-0x767f 024847 jam 0x0a ,mem_shutter_send_length 
-0x7680 024848 jam 0x01 ,mem_shutter_send_data 
-0x7681 024849 branch shutter_send_keydata 
-:      024850 shutter_androidkey_press:
-0x7682 024851 jam flag_shutter_androidkey_send ,mem_shutter_flag 
-0x7683 024852 call ui_led_on 
-:      024853 shutter_androidkey_press_package:
-0x7684 024854 jam 0x0a ,mem_shutter_send_length 
-0x7685 024855 jam 0x01 ,mem_shutter_send_data 
-0x7686 024856 setarg 0x280000 
-0x7687 024857 store 3 ,mem_shutter_send_data + 1 
-:      024859 shutter_send_keydata:
-0x7688 024860 set1 mark_ext_patch ,mark 
-0x7689 024861 bpatch patch3f_4 ,mem_patch3f 
-0x768a 024862 fetch 1 ,mem_shutter_send_length 
-0x768b 024863 copy pdata ,rega 
-0x768c 024864 call hid_malloc_tx_buff 
-0x768d 024865 fetch 2 ,mem_hid_int_remote_cid 
-0x768e 024866 istore 2 ,contw 
-0x768f 024867 setarg 0xa1 
-0x7690 024868 istore 1 ,contw 
-0x7691 024869 fetcht 4 ,mem_shutter_send_data 
-0x7692 024870 istoret 8 ,contw 
-0x7693 024871 setarg 0 
-0x7694 024872 istore 1 ,contw 
-0x7695 024873 store 4 ,mem_shutter_send_data 
-0x7696 024875 fetch 1 ,mem_shutter_1key_send_sm 
-0x7697 024876 beq flag_shutter_1key_send_step2 ,shutter_1key_send_step2 
-0x7698 024877 beq flag_shutter_1key_send_step3 ,shutter_1key_send_step3 
-0x7699 024878 beq flag_shutter_1key_send_step4 ,shutter_1key_send_step4 
-0x769a 024879 rtn 
-:      024881 shutter_scan_key:
-0x769b 024882 fetcht 1 ,mem_shutter_iphonekey_gpio 
-0x769c 024883 call gpio_get_bit 
-0x769d 024884 setarg 0 
-0x769e 024885 setflag true ,flag_shutter_iphonekey_press ,pdata 
-0x769f 024886 store 1 ,mem_shutter_key_temp 
-0x76a0 024887 fetcht 1 ,mem_shutter_androidkey_gpio 
-0x76a1 024888 call gpio_get_bit 
-0x76a2 024889 setarg 0 
-0x76a3 024890 setflag true ,flag_shutter_androidkey_press ,pdata 
-0x76a4 024891 fetcht 1 ,mem_shutter_key_temp 
-0x76a5 024892 ior temp ,pdata 
-0x76a6 024893 fetcht 1 ,mem_shutter_key 
-0x76a7 024894 store 1 ,mem_shutter_key 
-0x76a8 024895 ixor temp ,null 
-0x76a9 024896 rtn zero 
-0x76aa 024897 enable user 
-0x76ab 024898 rtn 
-:      024900 shutter_process_bb_event:
-0x76ac 024901 copy regc ,pdata 
-0x76ad 024902 beq bt_evt_setup_complete ,shutter_bb_event_setup_complete 
-0x76ae 024903 beq bt_evt_hid_connected ,shutter_bb_event_hid_connected 
-0x76af 024904 beq bt_evt_hid_disconnected ,shutter_bb_event_hid_disconn 
-0x76b0 024905 beq bt_evt_virtual_cable_unplug ,shutter_bb_event_unplug 
-0x76b1 024906 beq bt_evt_bb_disconnected ,shutter_bb_event_bb_disconn 
-0x76b2 024907 beq bt_evt_reconn_failed ,shutter_bb_event_reconn_failed 
-0x76b3 024908 beq bt_evt_reconn_page_timeout ,shutter_bb_event_reconn_failed 
-0x76b4 024909 beq bt_evt_bb_connected ,shutter_process_bb_conn 
-0x76b5 024910 beq bt_evt_hid_handshake ,shutter_event_hid_handshake 
-0x76b6 024911 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
-0x76b7 024912 and pdata ,0x0f ,temp 
-0x76b8 024913 and_into bt_evt_timer_mask ,pdata 
-0x76b9 024914 beq bt_evt_timer_init ,shutter_bb_event_timer 
-0x76ba 024915 rtn 
-:      024917 shutter_hid_handshake_timer:
-0x76bb 024918 fetch 1 ,mem_hid_handshake_timer_count 
-0x76bc 024919 rtn blank 
-0x76bd 024920 increase -1 ,pdata 
-0x76be 024921 store 1 ,mem_hid_handshake_timer_count 
-0x76bf 024922 nrtn blank 
-:      024923 shutter_event_hid_handshake:
-0x76c0 024924 jam app_handshake_done ,mem_app_handshake_flag 
-0x76c1 024925 call app_lpm_mult_enable 
-0x76c2 024926 call app_bt_store_reconn_info 
-0x76c3 024927 call app_bt_stop_discovery 
-0x76c4 024928 call app_led_off 
-0x76c5 024929 branch app_bt_enter_sniff 
-:      024932 shutter_process_bb_conn:
-0x76c6 024933 jam 0 ,mem_shutter_hid_disconn_count 
-0x76c7 024934 jam 0 ,mem_shutter_cable_unplug_conut 
-0x76c8 024935 rtn 
-:      024937 shutter_bb_event_bb_disconn:
-0x76c9 024938 set1 mark_ext_patch ,mark 
-0x76ca 024939 bpatch patch3f_5 ,mem_patch3f 
-0x76cb 024940 jam 0 ,mem_unsniff2sniff_timer_count 
-0x76cc 024941 jam 0 ,mem_shutter_cable_unplug_conut 
-0x76cd 024942 jam 0 ,mem_shutter_hid_disconn_count 
-0x76ce 024943 fetch app_disc_rsn_size ,mem_app_disconn_reason 
-0x76cf 024944 bbit0 app_disc_after_sniff ,shutter_check_pairing 
-:      024945 shutter_bb_event_reconn_failed:
-0x76d0 024947 fetch 2 ,mem_discovery_timeout 
-0x76d1 024948 store 2 ,mem_discovery_timeout_timer_count 
-:      024949 shutter_discovery_on_not_renew_timer:
-0x76d2 024950 call app_disconn_reason_clear 
-0x76d3 024951 branch app_bt_start_discovery_led_blink 
-:      024953 shutter_check_pairing:
-0x76d4 024954 bbit0 app_disc_after_pairing ,shutter_check_reconn 
-0x76d5 024955 branch shutter_bb_event_reconn_failed 
-:      024957 shutter_check_reconn:
-0x76d6 024958 bbit0 app_disc_after_reconn ,shutter_discovery_on_not_renew_timer 
-0x76d7 024959 branch shutter_bb_event_reconn_failed 
-:      024962 shutter_bb_event_setup_complete:
-0x76d8 024963 call app_bt_stop_discovery 
-0x76d9 024964 branch app_led_stop_blink 
-:      024966 shutter_bb_event_hid_connected:
-0x76da 024967 setarg hid_handshake_timeout 
-0x76db 024968 store 1 ,mem_hid_handshake_timer_count 
-0x76dc 024969 rtn 
-:      024971 shutter_bb_event_hid_disconn:
-0x76dd 024972 jam 0 ,mem_shutter_cable_unplug_conut 
-0x76de 024973 setarg flag_shutter_hid_disconn_timeout 
-0x76df 024974 store 1 ,mem_shutter_hid_disconn_count 
-0x76e0 024975 rtn 
-:      024977 shutter_bb_event_unplug:
-0x76e1 024978 setarg flag_shutter_cable_unplug_timeout 
-0x76e2 024979 store 1 ,mem_shutter_cable_unplug_conut 
-0x76e3 024980 rtn 
-:      024982 shutter_bb_event_timer:
-0x76e4 024983 set1 mark_ext_patch ,mark 
-0x76e5 024984 bpatch patch3f_6 ,mem_patch3f 
-0x76e6 024985 storet 1 ,mem_app_evt_timer_count 
-:      024986 shutter_bb_event_100ms_loop:
-0x76e7 024987 fetch 1 ,mem_app_evt_timer_count 
-0x76e8 024988 rtn blank 
-0x76e9 024989 increase -1 ,pdata 
-0x76ea 024990 store 1 ,mem_app_evt_timer_count 
-0x76eb 024991 call shutter_check_unplug_timer 
-0x76ec 024992 call shutter_hid_handshake_timer 
-0x76ed 024993 call shutter_check_hid_disconn_timer 
-0x76ee 024994 branch shutter_bb_event_100ms_loop 
-:      024996 shutter_check_unplug_timer:
-0x76ef 024997 fetch 1 ,mem_shutter_cable_unplug_conut 
-0x76f0 024998 rtn blank 
-0x76f1 024999 fetch 1 ,mem_shutter_cable_unplug_conut 
-0x76f2 025000 increase -1 ,pdata 
-0x76f3 025001 store 1 ,mem_shutter_cable_unplug_conut 
-0x76f4 025002 nrtn blank 
-0x76f5 025003 fetch 1 ,mem_control_tasks 
-0x76f6 025004 set1 l2cap_disconnect_interrupt ,pdata 
-0x76f7 025005 set1 l2cap_disconnect_control ,pdata 
-0x76f8 025006 store 1 ,mem_control_tasks 
-0x76f9 025007 rtn 
-:      025009 shutter_check_hid_disconn_timer:
-0x76fa 025010 fetch 1 ,mem_shutter_hid_disconn_count 
-0x76fb 025011 rtn blank 
-0x76fc 025012 fetch 1 ,mem_shutter_hid_disconn_count 
-0x76fd 025013 increase -1 ,pdata 
-0x76fe 025014 store 1 ,mem_shutter_hid_disconn_count 
-0x76ff 025015 nrtn blank 
-0x7700 025016 branch app_bt_disconnect 
-:      025018 shutter_reconnect_scan:
-0x7701 025019 set1 mark_ext_patch ,mark 
-0x7702 025020 bpatch patch3f_7 ,mem_patch3f 
-0x7703 025021 fetch 1 ,mem_scan_mode 
-0x7704 025022 rtnne 0x03 
-0x7705 025023 branch shutter_scan_key_start 
-:      025024 shutter_reconnect_scan_2:
-0x7706 025025 call shutter_cancel_key_shake 
-0x7707 025026 rtn positive 
-0x7708 025027 fetch 1 ,mem_shutter_key 
-0x7709 025028 rtn blank 
-0x770a 025029 call app_check_reconn_target 
-0x770b 025030 branch app_bt_start_discovery_short ,blank 
-0x770c 025031 call app_led_on 
-0x770d 025032 call app_bt_stop_discovery 
-0x770e 025033 branch app_bt_start_reconnect 
-:      025036 shutter_process_idle:
-0x770f 025037 branch shutter_reconnect_scan 
-:      025040 shutter_process_lpm_before:
-0x7710 025041 fetcht 1 ,mem_shutter_iphonekey_gpio 
-0x7711 025042 call gpio_set_wake_by_current_state 
-0x7712 025043 fetch 1 ,mem_shutter_key_number 
-0x7713 025044 bne flag_shutter_1key ,shutter_process_lpm_before_key2 
-0x7714 025045 rtn 
-:      025046 shutter_process_lpm_before_key2:
-0x7715 025047 fetcht 1 ,mem_shutter_androidkey_gpio 
-0x7716 025048 branch gpio_set_wake_by_current_state 
-:      025050 shutter_before_hibernate:
-0x7717 025051 branch shutter_key_and_wake_gpio_setup 
-:      025054 shutter_discovery_timeout_sleep:
-0x7718 025055 branch app_enter_hibernate 
-:      025059 sp_initialize:
-0x7719 025060 set1 mark_ext_patch ,mark 
-0x771a 025061 bpatch patch3e_2 ,mem_patch3e 
-0x771b 025062 fetch 1 ,mem_ssp_enable 
-0x771c 025063 branch ssp_disable ,blank 
-0x771d 025064 call ssp_enable 
-0x771e 025065 setarg 0 
-0x771f 025066 store 8 ,mem_sp_state_start 
-0x7720 025067 store 4 ,mem_sp_flag_start 
-0x7721 025069 arg mem_sp_iocap_remote ,contw 
-0x7722 025070 istore 7 ,contw 
-0x7723 025071 jam default_statemachine ,mem_sp_localsm 
-0x7724 025072 branch sp_pubkey_calc 
-:      025074 sp_generate_local_key:
-0x7725 025075 jam sp_flag_commit ,mem_sp_flag 
-0x7726 025076 branch sp_generate_local_key0 
-:      025077 sp_master_generate_local_key:
-0x7727 025078 fetch 1 ,mem_sp_local_key_invalid 
-0x7728 025079 beq sp_key_valid ,sp_dhkey_calc 
-0x7729 025080 branch assert 
-:      025081 sp_generate_local_key0:
-0x772a 025082 fetch 1 ,mem_sp_local_key_invalid 
-0x772b 025083 beq sp_key_valid ,sp_start_send_pubkey 
-0x772c 025084 branch sp_pubkey_calc 
-:      025086 sp_start_send_pubkey:
-0x772d 025087 call sp_dhkey_calc 
-0x772e 025088 fetch 1 ,mem_master_sp_state 
-0x772f 025089 nrtn blank 
-0x7730 025090 jam sp_stat_key_send ,mem_sp_state 
-0x7731 025091 rtn 
-:      025093 sp_calculate_commitment:
-0x7732 025094 fetch 1 ,mem_sp_calc 
-0x7733 025095 bne sp_calc_standby ,sp_calculate_commitment_wait_dhkey_calc 
-0x7734 025096 call sp_local_random_key_generator 
-0x7735 025097 arg mem_sp_prarm_stack ,contw 
-0x7736 025098 setarg mem_sp_random_local_end 
-0x7737 025099 istore 2 ,contw 
-0x7738 025100 setarg mem_sp_pubkey_local_x_end 
-0x7739 025101 istore 2 ,contw 
-0x773a 025102 setarg mem_sp_pubkey_remote_x_end 
-0x773b 025103 istore 2 ,contw 
-0x773c 025104 branch sp_calculate_commitment0 
-:      025105 master_sp_calculate_commitment:
-0x773d 025106 arg mem_sp_prarm_stack ,contw 
-0x773e 025107 setarg mem_sp_random_remote_end 
-0x773f 025108 istore 2 ,contw 
-0x7740 025109 setarg mem_sp_pubkey_remote_x_end 
-0x7741 025110 istore 2 ,contw 
-0x7742 025111 setarg mem_sp_pubkey_local_x_end 
-0x7743 025112 istore 2 ,contw 
-:      025113 sp_calculate_commitment0:
-0x7744 025114 call function_f1 
-0x7745 025115 fetch 1 ,mem_master_sp_state 
-0x7746 025116 beq sp_stat_commit_calc ,master_sp_calculate_commitment0 
-0x7747 025117 jam sp_flag_commit ,mem_sp_flag 
-0x7748 025118 jam sp_stat_commit_send ,mem_sp_state 
-0x7749 025119 rtn 
-:      025120 master_sp_calculate_commitment0:
-0x774a 025121 jam sp_stat_commitment_compare ,mem_master_sp_state 
-0x774b 025122 call sp_master_generate_local_key 
-0x774c 025123 branch master_set_mem_master_sp_flag 
-:      025125 sp_local_random_key_generator:
-0x774d 025126 arg mem_sp_random_local ,contw 
-0x774e 025127 force 8 ,queue 
-0x774f 025128 branch random_generator 
-:      025130 sp_calculate_commitment_wait_dhkey_calc:
-0x7750 025131 jam sp_flag_commit ,mem_sp_flag 
-0x7751 025132 rtn 
-:      025134 sp_confirm_check:
-0x7752 025136 arg mem_addr_value ,contw 
-0x7753 025137 fetch 6 ,mem_lap 
-0x7754 025138 istore 6 ,contw 
-0x7755 025139 fetch 6 ,mem_plap 
-0x7756 025140 istore 6 ,contw 
-0x7757 025141 fetch 3 ,mem_sp_iocap_remote 
-0x7758 025142 istore 3 ,contw 
-0x7759 025144 call function_f3a 
-0x775a 025146 arg mem_sp_calc_result_high ,rega 
-0x775b 025147 arg mem_sp_check_result ,regb 
-0x775c 025148 force 4 ,queue 
-0x775d 025149 call compare4 
-0x775e 025150 nbranch sp_confirm_check_failed ,true 
-:      025152 sp_confirm_check_success:
-0x775f 025153 fetch 1 ,mem_master_sp_state 
-0x7760 025154 beq sp_stat_confirm_check ,sp_confirm_check_success_master 
-0x7761 025155 jam sp_stat_confirm_calc ,mem_sp_state 
-0x7762 025156 jam sp_flag_commit ,mem_sp_flag 
-0x7763 025157 jam lmp_accepted ,mem_lmo_opcode2 
-0x7764 025158 rtn 
-:      025159 sp_confirm_check_success_master:
-0x7765 025160 jam lmp_accepted ,mem_lmo_opcode2 
-0x7766 025161 jam sp_state_end ,mem_master_sp_state 
-0x7767 025162 branch master_set_mem_master_sp_flag 
-:      025165 sp_confirm_check_failed:
-0x7768 025166 fetch 1 ,mem_master_sp_state 
-0x7769 025167 beq sp_stat_confirm_check ,sp_confirm_check_failed_master 
-0x776a 025168 jam sp_stat_null ,mem_sp_state 
-0x776b 025169 jam lmp_not_accepted ,mem_lmo_opcode2 
-0x776c 025171 jam authentication_failure_error ,mem_lmo_reason2 
-0x776d 025172 rtn 
-:      025173 sp_confirm_check_failed_master:
-0x776e 025174 jam lmp_not_accepted ,mem_lmo_opcode2 
-0x776f 025175 jam sp_stat_null ,mem_master_sp_state 
-0x7770 025176 rtn 
-:      025178 sp_confirm_calc:
-0x7771 025179 fetch 1 ,mem_sp_dh_ready 
-0x7772 025180 beq sp_flag_commit ,sp_confirm_calc_ready 
-0x7773 025181 jam sp_stat_confirm_calc ,mem_master_sp_state 
-0x7774 025182 branch master_set_mem_master_sp_flag 
-:      025183 sp_confirm_calc_ready:
-0x7775 025184 arg mem_addr_value ,contw 
-0x7776 025185 fetch 6 ,mem_plap 
-0x7777 025186 istore 6 ,contw 
-0x7778 025187 fetch 6 ,mem_lap 
-0x7779 025188 istore 6 ,contw 
-0x777a 025189 fetch 3 ,mem_sp_iocap_local 
-0x777b 025190 istore 3 ,contw 
-0x777c 025192 call function_f3b 
-0x777d 025193 fetch 1 ,mem_master_sp_state 
-0x777e 025194 beq sp_stat_confirm_calc ,sp_confirm_calc_master 
-0x777f 025195 jam sp_stat_confirm_send ,mem_sp_state 
-0x7780 025196 jam sp_flag_commit ,mem_sp_flag 
-0x7781 025197 rtn 
-:      025198 sp_confirm_calc_master:
-0x7782 025199 jam sp_stat_confirm_send ,mem_master_sp_state 
-0x7783 025200 jam sp_flag_commit ,mem_master_sp_flag 
-0x7784 025201 rtn 
-:      025203 sp_master_key_prarm_push:
-0x7785 025204 arg mem_sp_prarm_stack ,contw 
-0x7786 025205 fetch 6 ,mem_plap 
-0x7787 025206 istore 6 ,contw 
-0x7788 025207 fetch 6 ,mem_lap 
-0x7789 025208 istore 6 ,contw 
-0x778a 025209 setarg mem_sp_random_local_end 
-0x778b 025210 istore 2 ,contw 
-0x778c 025211 setarg mem_sp_random_remote_end 
-0x778d 025212 istore 2 ,contw 
-0x778e 025213 branch sp_link_key_calc 
-:      025214 sp_link_key_prarm_push:
-0x778f 025215 jam sp_stat_done ,mem_sp_state 
-0x7790 025216 arg mem_sp_prarm_stack ,contw 
-0x7791 025217 fetch 6 ,mem_lap 
-0x7792 025218 istore 6 ,contw 
-0x7793 025219 fetch 6 ,mem_plap 
-0x7794 025220 istore 6 ,contw 
-0x7795 025221 setarg mem_sp_random_remote_end 
-0x7796 025222 istore 2 ,contw 
-0x7797 025223 setarg mem_sp_random_local_end 
-0x7798 025224 istore 2 ,contw 
-:      025225 sp_link_key_calc:
-0x7799 025227 arg mem_addr_value ,contw 
-0x779a 025228 fetch 6 ,mem_sp_prarm_stack 
-0x779b 025229 istore 6 ,contw 
-0x779c 025230 fetch 6 ,mem_sp_prarm_stack + 6 
-0x779d 025231 istore 6 ,contw 
-0x779e 025233 call function_f2 
-0x779f 025236 jam 1 ,mem_link_key_exists 
-0x77a0 025237 arg mem_link_key ,contw 
-0x77a1 025238 arg mem_sp_calc_result_high ,contr 
-0x77a2 025239 call memcpy16 
-0x77a3 025240 branch generate_linkkey_continue 
-:      025243 sp_pubkey_calc:
-0x77a4 025244 set1 mark_ext_patch ,mark 
-0x77a5 025245 bpatch patch3e_3 ,mem_patch3e 
-0x77a6 025246 fetch 1 ,mem_sp_local_key_invalid 
-0x77a7 025247 rtnne sp_key_invalid 
-0x77a8 025248 fetch 1 ,mem_sp_calc 
-0x77a9 025249 rtnne sp_calc_standby 
-0x77aa 025250 arg mem_sp_private_key ,contw 
-0x77ab 025251 force 11 ,queue 
-0x77ac 025252 call random_generator 
-0x77ad 025253 random pdata 
-0x77ae 025254 rshift pdata ,pdata 
-0x77af 025255 istore 2 ,contw 
-0x77b0 025257 arg mem_k ,contw 
-0x77b1 025258 arg mem_sp_private_key ,contr 
-0x77b2 025259 call memcpy24 
-0x77b3 025261 arg mem_ax ,contw 
-0x77b4 025262 arg mem_gx ,contr 
-0x77b5 025263 call memcpy48 
-0x77b6 025265 arg mem_az ,contw 
-0x77b7 025266 call bn_zero 
-0x77b8 025267 jam 1 ,mem_az 
-0x77b9 025269 call eckp_calc_init 
-0x77ba 025270 jam sp_calc_pubkey ,mem_sp_calc 
-0x77bb 025271 rtn 
-:      025273 sp_pubkey_generated:
-0x77bc 025274 arg mem_sp_pubkey_local ,contw 
-0x77bd 025275 arg mem_bx ,contr 
-0x77be 025276 call memcpy48 
-0x77bf 025277 jam sp_key_valid ,mem_sp_local_key_invalid 
-0x77c0 025278 jam sp_calc_standby ,mem_sp_calc 
-0x77c1 025279 rtn 
-:      025281 sp_dhkey_calc:
-0x77c2 025282 set1 mark_ext_patch ,mark 
-0x77c3 025283 bpatch patch3e_4 ,mem_patch3e 
-0x77c4 025284 fetch 1 ,mem_sp_dhkey_invalid 
-0x77c5 025285 rtnne sp_key_invalid 
-0x77c6 025286 fetch 1 ,mem_sp_calc 
-0x77c7 025287 rtnne sp_calc_standby 
-0x77c8 025289 arg mem_k ,contw 
-0x77c9 025290 arg mem_sp_private_key ,contr 
-0x77ca 025291 call memcpy24 
-0x77cb 025293 arg mem_ax ,contw 
-0x77cc 025294 arg mem_sp_pubkey_remote ,contr 
-0x77cd 025295 call memcpy48 
-0x77ce 025297 arg mem_az ,contw 
-0x77cf 025298 call bn_zero 
-0x77d0 025299 jam 1 ,mem_az 
-0x77d1 025301 call eckp_calc_init 
-0x77d2 025302 jam sp_calc_dhkey ,mem_sp_calc 
-0x77d3 025303 rtn 
-:      025305 sp_dhkey_generated:
-0x77d4 025306 jam sp_flag_commit ,mem_sp_dh_ready 
-0x77d5 025307 arg mem_sp_dhkey ,contw 
-0x77d6 025308 arg mem_bx ,contr 
-0x77d7 025309 call memcpy24 
-0x77d8 025310 jam sp_key_valid ,mem_sp_dhkey_invalid 
-0x77d9 025311 jam sp_calc_standby ,mem_sp_calc 
-0x77da 025312 rtn 
-:      025314 random_generator:
-0x77db 025315 increase -1 ,queue 
-0x77dc 025316 nrtn positive 
-0x77dd 025317 random pdata 
-0x77de 025318 istore 2 ,contw 
-0x77df 025319 branch random_generator 
-:      025320 compare4:
-0x77e0 025321 increase -1 ,queue 
-0x77e1 025322 nbranch compare4_success ,positive 
-0x77e2 025323 ifetch 4 ,rega 
-0x77e3 025324 copy pdata ,temp 
-0x77e4 025325 ifetch 4 ,regb 
-0x77e5 025326 iflip temp ,pdata 
-0x77e6 025327 nbranch compare4_failed ,zero 
-0x77e7 025328 increase 4 ,rega 
-0x77e8 025329 increase 4 ,regb 
-0x77e9 025330 branch compare4 
-:      025331 compare4_failed:
-0x77ea 025332 disable true 
-0x77eb 025333 rtn 
-:      025334 compare4_success:
-0x77ec 025335 enable true 
-0x77ed 025336 rtn 
-:      025343 simple_pairing_sequence:
-0x77ee 025344 set1 mark_ext_patch ,mark 
-0x77ef 025345 bpatch patch3e_5 ,mem_patch3e 
-0x77f0 025346 fetch 1 ,mem_sp_flag 
-0x77f1 025347 rtn blank 
-0x77f2 025348 jam sp_flag_standby ,mem_sp_flag 
-0x77f3 025349 fetch 1 ,mem_sp_state 
-0x77f4 025350 beq sp_stat_key_send ,sp_send_lmp_encapsulated_header 
-0x77f5 025351 beq sp_stat_commit_send ,sp_send_lmp_simple_pairing_comfirm 
-0x77f6 025352 beq sp_stat_random_send ,sp_send_lmp_simple_pairing_number 
-0x77f7 025353 beq sp_stat_confirm_send ,sp_send_lmp_dhkey_check 
-0x77f8 025354 beq sp_stat_key_generate ,sp_generate_local_key 
-0x77f9 025355 beq sp_stat_commit_calc ,sp_calculate_commitment 
-0x77fa 025356 beq sp_stat_confirm_check ,sp_confirm_check 
-0x77fb 025357 beq sp_stat_confirm_calc ,sp_confirm_calc 
-0x77fc 025358 beq sp_stat_link_key_calc ,sp_link_key_prarm_push 
-0x77fd 025360 rtn 
-:      025362 master_simple_paring_sequence:
-0x77fe 025363 set1 mark_ext_patch ,mark 
-0x77ff 025364 bpatch patch3e_6 ,mem_patch3e 
-0x7800 025365 fetch 1 ,mem_master_sp_flag 
-0x7801 025366 rtn blank 
-0x7802 025367 jam sp_flag_standby ,mem_master_sp_flag 
-0x7803 025368 fetch 1 ,mem_master_sp_state 
-0x7804 025369 beq sp_master_stat_start_skip ,sp_master_send_io_cap_get 
-0x7805 025370 beq sp_master_stat_start_done ,sp_master_send_io_cap_send 
-0x7806 025371 beq sp_stat_key_send ,sp_master_send_lmp_encapsulated_header 
-0x7807 025372 beq sp_stat_commit_calc ,master_sp_calculate_commitment 
-0x7808 025373 beq sp_stat_commitment_compare ,sp_master_commitment_compare 
-0x7809 025374 beq sp_stat_random_send ,sp_master_send_lmp_simple_pairing_number 
-0x780a 025375 beq sp_stat_confirm_calc ,sp_confirm_calc 
-0x780b 025376 beq sp_stat_confirm_send ,master_sp_send_lmp_dhkey_check 
-0x780c 025377 beq sp_stat_confirm_check ,sp_confirm_check 
-0x780d 025378 beq sp_state_end ,master_sp_sm_end 
-0x780e 025379 rtn 
-:      025381 master_set_mem_master_sp_flag:
-0x780f 025382 jam sp_flag_commit ,mem_master_sp_flag 
-0x7810 025383 rtn 
-:      025385 master_clear_mem_master_sp_flag:
-0x7811 025386 jam sp_flag_standby ,mem_master_sp_flag 
-0x7812 025387 rtn 
-:      025388 sp_calc_sequence:
-0x7813 025389 set1 mark_ext_patch ,mark 
-0x7814 025390 bpatch patch3e_7 ,mem_patch3e 
-0x7815 025391 fetch 1 ,mem_sp_calc 
-0x7816 025392 rtn blank 
-0x7817 025393 increase 0x80 ,pdata 
-0x7818 025394 store 1 ,mem_sp_calc 
-0x7819 025395 rtnbit1 7 
-0x781a 025396 fetch 1 ,mem_ec_loopc 
-0x781b 025397 branch sp_calc_sequence_done ,blank 
-0x781c 025398 branch eckp_calc 
-:      025400 sp_calc_sequence_done:
-0x781d 025401 call ecunmapz 
-0x781e 025402 fetch 1 ,mem_sp_calc 
-0x781f 025403 beq sp_calc_pubkey ,sp_pubkey_generated 
-0x7820 025404 beq sp_calc_dhkey ,sp_dhkey_generated 
-0x7821 025405 rtn 
-:      025408 bn_testbit:
-0x7822 025409 and pdata ,7 ,queue 
-0x7823 025410 rshift3 pdata ,pdata 
-0x7824 025411 iadd contr ,contr 
-0x7825 025412 ifetch 1 ,contr 
-0x7826 025413 qisolate0 pdata 
-0x7827 025414 rtn 
-:      025417 ec_copy:
-0x7828 025418 call memcpy24 
-0x7829 025419 call memcpy24 
-0x782a 025420 branch memcpy24 
-:      025423 bn_eq_zero:
-0x782b 025424 ifetch 8 ,contr 
-0x782c 025425 nrtn blank 
-0x782d 025426 ifetch 8 ,contr 
-0x782e 025427 nrtn blank 
-0x782f 025428 ifetch 8 ,contr 
-0x7830 025429 rtn 
-:      025433 bn_eq:
-0x7831 025434 force 6 ,loopcnt 
-:      025435 bn_eq_0:
-0x7832 025436 ifetch 4 ,rega 
-0x7833 025437 iforce temp 
-0x7834 025438 ifetch 4 ,regb 
-0x7835 025439 isub temp ,null 
-0x7836 025440 nrtn zero 
-0x7837 025441 increase 4 ,rega 
-0x7838 025442 increase 4 ,regb 
-0x7839 025443 loop bn_eq_0 
-0x783a 025444 rtn 
-:      025447 bn_bigeq:
-0x783b 025448 force 6 ,loopcnt 
-0x783c 025449 increase 20 ,rega 
-0x783d 025450 increase 20 ,regb 
-:      025451 bn_bigeq_0:
-0x783e 025452 ifetch 4 ,regb 
-0x783f 025453 iforce temp 
-0x7840 025454 ifetch 4 ,rega 
-0x7841 025455 isub temp ,pdata 
-0x7842 025456 nrtn positive 
-0x7843 025457 nrtn blank 
-0x7844 025458 increase -4 ,rega 
-0x7845 025459 increase -4 ,regb 
-0x7846 025460 loop bn_bigeq_0 
-0x7847 025461 rtn 
-:      025463 bn_add:
-0x7848 025464 force 6 ,loopcnt 
-0x7849 025465 force 0 ,regc 
-:      025466 bn_add_0:
-0x784a 025467 ifetch 4 ,rega 
-0x784b 025468 iforce temp 
-0x784c 025469 ifetch 4 ,regb 
-0x784d 025470 iadd temp ,pdata 
-0x784e 025471 iadd regc ,pdata 
-0x784f 025472 istore 4 ,contw 
-0x7850 025473 isolate1 32 ,pdata 
-0x7851 025474 setflag true ,0 ,regc 
-0x7852 025475 increase 4 ,rega 
-0x7853 025476 increase 4 ,regb 
-0x7854 025477 loop bn_add_0 
-0x7855 025478 rtn 
-:      025480 bn_sub:
-0x7856 025481 force 6 ,loopcnt 
-0x7857 025482 force 0 ,regc 
-:      025483 bn_sub_0:
-0x7858 025484 ifetch 4 ,regb 
-0x7859 025485 iforce temp 
-0x785a 025486 ifetch 4 ,rega 
-0x785b 025487 isub temp ,pdata 
-0x785c 025488 isub regc ,pdata 
-0x785d 025489 istore 4 ,contw 
-0x785e 025490 isolate1 32 ,pdata 
-0x785f 025491 setflag true ,0 ,regc 
-0x7860 025492 increase 4 ,rega 
-0x7861 025493 increase 4 ,regb 
-0x7862 025494 loop bn_sub_0 
-0x7863 025495 rtn 
-:      025497 bn_rshift6:
-0x7864 025498 force 6 ,loopcnt 
-0x7865 025499 increase 20 ,rega 
-:      025500 bn_rshift:
-0x7866 025501 force 0 ,regc 
-:      025502 bn_rshift_0:
-0x7867 025503 ifetch 4 ,rega 
-0x7868 025504 isolate1 0 ,pdata 
-0x7869 025505 setflag true ,1 ,regc 
-0x786a 025506 rshift pdata ,pdata 
-0x786b 025507 isolate1 0 ,regc 
-0x786c 025508 setflag true ,31 ,pdata 
-0x786d 025509 istore 4 ,rega 
-0x786e 025510 increase -4 ,rega 
-0x786f 025511 rshift regc ,regc 
-0x7870 025512 loop bn_rshift_0 
-0x7871 025513 rtn 
-:      025515 bn_lshift:
-0x7872 025516 force 6 ,loopcnt 
-0x7873 025517 force 0 ,regc 
-:      025518 bn_lshift_0:
-0x7874 025519 ifetch 4 ,rega 
-0x7875 025520 isolate1 31 ,pdata 
-0x7876 025521 setflag true ,1 ,regc 
-0x7877 025522 lshift pdata ,pdata 
-0x7878 025523 isolate1 0 ,regc 
-0x7879 025524 setflag true ,0 ,pdata 
-0x787a 025525 istore 4 ,rega 
-0x787b 025526 increase 4 ,rega 
-0x787c 025527 rshift regc ,regc 
-0x787d 025528 loop bn_lshift_0 
-0x787e 025529 rtn 
-:      025531 bn_lshiftmod:
-0x787f 025532 call bn_lshift 
-:      025533 bn_lshiftmod_ismod:
-0x7880 025534 isolate1 0 ,regc 
-0x7881 025535 branch bn_lshiftmod_0 ,true 
-0x7882 025536 arg mem_p ,regb 
-0x7883 025537 copy rega ,regc 
-0x7884 025538 increase -24 ,rega 
-0x7885 025539 call bn_bigeq 
-0x7886 025540 nrtn positive 
-0x7887 025541 copy regc ,rega 
-:      025542 bn_lshiftmod_0:
-0x7888 025543 increase -24 ,rega 
-0x7889 025544 arg mem_p ,regb 
-0x788a 025545 copy rega ,contw 
-0x788b 025546 branch bn_sub 
-:      025549 bn_addmod:
-0x788c 025550 call bn_add 
-0x788d 025551 copy contw ,rega 
-0x788e 025552 branch bn_lshiftmod_ismod 
-:      025554 bn_submod:
-0x788f 025555 call bn_sub 
-0x7890 025556 isolate0 0 ,regc 
-0x7891 025557 rtn true 
-0x7892 025558 arg mem_p ,regb 
-0x7893 025559 add contw ,-24 ,rega 
-0x7894 025560 copy rega ,contw 
-0x7895 025561 branch bn_add 
-:      025564 bn_p192mod:
-0x7896 025565 copy contw ,timeup 
-0x7897 025566 copy rega ,alarm 
-0x7898 025567 arg mem_tmp2 ,regb 
-0x7899 025568 copy regb ,contw 
-0x789a 025569 add rega ,24 ,contr 
-0x789b 025570 ifetch 8 ,contr 
-0x789c 025571 istore 8 ,contw 
-0x789d 025572 istore 8 ,contw 
-0x789e 025573 force 0 ,pdata 
-0x789f 025574 istore 8 ,contw 
-0x78a0 025575 copy timeup ,contw 
-0x78a1 025576 call bn_addmod 
-0x78a2 025577 arg mem_tmp2 ,regb 
-0x78a3 025578 copy regb ,contw 
-0x78a4 025579 force 0 ,pdata 
-0x78a5 025580 istore 8 ,contw 
-0x78a6 025581 add alarm ,32 ,contr 
-0x78a7 025582 ifetch 8 ,contr 
-0x78a8 025583 istore 8 ,contw 
-0x78a9 025584 istore 8 ,contw 
-0x78aa 025585 copy timeup ,rega 
-0x78ab 025586 copy rega ,contw 
-0x78ac 025587 call bn_addmod 
-0x78ad 025588 arg mem_tmp2 ,regb 
-0x78ae 025589 copy regb ,contw 
-0x78af 025590 add alarm ,40 ,contr 
-0x78b0 025591 ifetch 8 ,contr 
-0x78b1 025592 istore 8 ,contw 
-0x78b2 025593 istore 8 ,contw 
-0x78b3 025594 istore 8 ,contw 
-0x78b4 025595 copy timeup ,rega 
-0x78b5 025596 copy rega ,contw 
-0x78b6 025597 branch bn_addmod 
-:      025600 bn_load:
-0x78b7 025601 force 6 ,loopcnt 
-:      025602 bn_load_0:
-0x78b8 025603 ifetch 4 ,contr 
-0x78b9 025604 iforce regext 
-0x78ba 025605 increase 1 ,regext_index 
-0x78bb 025606 loop bn_load_0 
-0x78bc 025607 rtn 
-:      025611 bn_mulmod:
-0x78bd 025612 copy contw ,timeup 
-0x78be 025613 arg mem_tmp1 ,contw 
-0x78bf 025614 call bn_zero 
-0x78c0 025615 arg mem_tmp1 ,contw 
-0x78c1 025616 copy rega ,contr 
-0x78c2 025617 force 0 ,regext_index 
-0x78c3 025618 call bn_load 
-0x78c4 025619 copy regb ,contr 
-0x78c5 025620 call bn_load 
-0x78c6 025621 force 0 ,regb 
-:      025622 bn_mulmod_1:
-0x78c7 025623 force 0 ,temp 
-0x78c8 025624 force 6 ,regc 
-:      025625 bn_mulmod_0:
-0x78c9 025626 ifetch 4 ,contw 
-0x78ca 025627 iforce rega 
-0x78cb 025628 copy regb ,regext_index 
-0x78cc 025629 deposit regext 
-0x78cd 025630 copy regc ,regext_index 
-0x78ce 025631 imul32 regext ,pdata 
-0x78cf 025632 iadd rega ,pdata 
-0x78d0 025633 iadd temp ,pdata 
-0x78d1 025634 istore 4 ,contw 
-0x78d2 025635 rshift32 pdata ,temp 
-0x78d3 025636 increase 1 ,regc 
-0x78d4 025637 compare 12 ,regc ,0xff 
-0x78d5 025638 nbranch bn_mulmod_0 ,true 
-0x78d6 025639 deposit temp 
-0x78d7 025640 istore 4 ,contw 
-0x78d8 025641 increase -24 ,contw 
-0x78d9 025642 increase 1 ,regb 
-0x78da 025643 compare 6 ,regb ,0xff 
-0x78db 025644 nbranch bn_mulmod_1 ,true 
-0x78dc 025645 arg mem_tmp1 ,rega 
-0x78dd 025646 copy timeup ,contw 
-0x78de 025647 branch bn_p192mod 
-:      025650 bn_sqrmod:
-0x78df 025651 copy rega ,regb 
-0x78e0 025652 branch bn_mulmod 
-:      025654 bn_rshifteven:
-0x78e1 025655 copy rega ,alarm 
-:      025656 bn_rshifteven_1:
-0x78e2 025657 copy alarm ,rega 
-0x78e3 025658 ifetch 1 ,rega 
-0x78e4 025659 isolate1 0 ,pdata 
-0x78e5 025660 rtn true 
-0x78e6 025661 call bn_rshift6 
-0x78e7 025662 ifetch 1 ,regb 
-0x78e8 025663 isolate0 0 ,pdata 
-0x78e9 025664 branch bn_rshifteven_0 ,true 
-0x78ea 025665 arg mem_p ,rega 
-0x78eb 025666 copy regb ,contw 
-0x78ec 025667 call bn_add 
-0x78ed 025668 ifetch 1 ,regb 
-0x78ee 025669 iadd regc ,pdata 
-0x78ef 025670 istore 1 ,regb 
-0x78f0 025671 increase -24 ,regb 
-:      025672 bn_rshifteven_0:
-0x78f1 025673 add regb ,24 ,rega 
-0x78f2 025674 force 7 ,loopcnt 
-0x78f3 025675 call bn_rshift 
-0x78f4 025676 branch bn_rshifteven_1 
-:      025679 bn_invmod:
-0x78f5 025680 copy contw ,timeup 
-0x78f6 025681 arg mem_tmp0 ,contw 
-0x78f7 025682 call bn_zero 
-0x78f8 025683 force 0 ,pdata 
-0x78f9 025684 store 4 ,mem_tmp5 
-0x78fa 025685 store 4 ,mem_t2 
-0x78fb 025686 jam 1 ,mem_tmp0 
-0x78fc 025687 arg mem_tmp1 ,contw 
-0x78fd 025688 call bn_zero 
-0x78fe 025689 arg mem_p ,contr 
-0x78ff 025690 arg mem_tmp2 ,contw 
-0x7900 025691 call memcpy24 
-0x7901 025692 copy rega ,contr 
-0x7902 025693 arg mem_tmp3 ,contw 
-0x7903 025694 call memcpy24 
-:      025695 bn_invmod_2:
-0x7904 025696 arg mem_tmp3 ,contr 
-0x7905 025697 call bn_eq_zero 
-0x7906 025698 branch bn_invmod_0 ,blank 
-0x7907 025699 arg mem_tmp3 ,rega 
-0x7908 025700 arg mem_tmp0 ,regb 
-0x7909 025701 call bn_rshifteven 
-0x790a 025703 arg mem_tmp2 ,rega 
-0x790b 025704 arg mem_tmp1 ,regb 
-0x790c 025705 call bn_rshifteven 
-0x790d 025706 arg mem_tmp3 ,rega 
-0x790e 025707 arg mem_tmp2 ,regb 
-0x790f 025708 call bn_bigeq 
-0x7910 025709 branch bn_invmod_1 ,positive 
-0x7911 025710 arg mem_tmp2 ,rega 
-0x7912 025711 arg mem_tmp3 ,regb 
-0x7913 025712 copy rega ,contw 
-0x7914 025713 call bn_sub 
-0x7915 025714 arg mem_tmp0 ,rega 
-0x7916 025715 arg mem_tmp1 ,regb 
-0x7917 025716 copy regb ,contw 
-0x7918 025717 call bn_add 
-0x7919 025718 ifetch 1 ,rega 
-0x791a 025719 iadd regc ,regc 
-0x791b 025720 ifetch 1 ,regb 
-0x791c 025721 iadd regc ,pdata 
-0x791d 025722 istore 1 ,regb 
-0x791e 025723 branch bn_invmod_2 
-:      025724 bn_invmod_1:
-0x791f 025725 arg mem_tmp3 ,rega 
-0x7920 025726 arg mem_tmp2 ,regb 
-0x7921 025727 copy rega ,contw 
-0x7922 025728 call bn_sub 
-0x7923 025729 arg mem_tmp1 ,rega 
-0x7924 025730 arg mem_tmp0 ,regb 
-0x7925 025731 copy regb ,contw 
-0x7926 025732 call bn_add 
-0x7927 025733 ifetch 1 ,rega 
-0x7928 025734 iadd regc ,regc 
-0x7929 025735 ifetch 1 ,regb 
-0x792a 025736 iadd regc ,pdata 
-0x792b 025737 istore 1 ,regb 
-0x792c 025738 branch bn_invmod_2 
-:      025739 bn_invmod_0:
-0x792d 025740 arg mem_tmp0 ,contw 
-0x792e 025741 call bn_zero 
-0x792f 025742 fetch 1 ,mem_tmp5 
-0x7930 025743 store 1 ,mem_tmp0 
-0x7931 025744 store 1 ,mem_tmp0a 
-0x7932 025745 arg mem_tmp0 ,rega 
-0x7933 025746 arg mem_tmp1 ,regb 
-0x7934 025747 copy regb ,contw 
-0x7935 025748 call bn_addmod 
-0x7936 025749 arg mem_p ,rega 
-0x7937 025750 arg mem_tmp1 ,regb 
-0x7938 025751 copy timeup ,contw 
-0x7939 025752 branch bn_submod 
-:      025757 ecdbl:
-0x793a 025758 arg mem_cz ,rega 
-0x793b 025759 arg mem_t2 ,contw 
-0x793c 025760 call bn_sqrmod 
-0x793d 025761 arg mem_t2 ,rega 
-0x793e 025762 arg mem_t3 ,contw 
-0x793f 025763 call bn_sqrmod 
-0x7940 025764 arg mem_a ,rega 
-0x7941 025765 arg mem_t3 ,regb 
-0x7942 025766 arg mem_t3 ,contw 
-0x7943 025767 call bn_mulmod 
-0x7944 025768 arg mem_cx ,rega 
-0x7945 025769 arg mem_t2 ,contw 
-0x7946 025770 call bn_sqrmod 
-0x7947 025771 arg mem_t2 ,contr 
-0x7948 025772 arg mem_t1 ,contw 
-0x7949 025773 call memcpy24 
-0x794a 025774 arg mem_t1 ,rega 
-0x794b 025775 call bn_lshiftmod 
-0x794c 025776 arg mem_t2 ,rega 
-0x794d 025777 arg mem_t1 ,regb 
-0x794e 025778 arg mem_t2 ,contw 
-0x794f 025779 call bn_addmod 
-0x7950 025780 arg mem_t2 ,rega 
-0x7951 025781 arg mem_t3 ,regb 
-0x7952 025782 arg mem_t2 ,contw 
-0x7953 025783 call bn_addmod 
-0x7954 025784 arg mem_cx ,contr 
-0x7955 025785 arg mem_t1 ,contw 
-0x7956 025786 call memcpy24 
-0x7957 025787 arg mem_cy ,rega 
-0x7958 025788 arg mem_t3 ,contw 
-0x7959 025789 call bn_sqrmod 
-0x795a 025790 arg mem_t1 ,rega 
-0x795b 025791 call bn_lshiftmod 
-0x795c 025792 arg mem_t1 ,rega 
-0x795d 025793 call bn_lshiftmod 
-0x795e 025794 arg mem_t1 ,rega 
-0x795f 025795 arg mem_t3 ,regb 
-0x7960 025796 arg mem_t1 ,contw 
-0x7961 025797 call bn_mulmod 
-0x7962 025798 arg mem_t3 ,rega 
-0x7963 025799 arg mem_t0 ,contw 
-0x7964 025800 call bn_sqrmod 
-0x7965 025801 arg mem_t0 ,rega 
-0x7966 025802 call bn_lshiftmod 
-0x7967 025803 arg mem_t0 ,rega 
-0x7968 025804 call bn_lshiftmod 
-0x7969 025805 arg mem_t0 ,rega 
-0x796a 025806 call bn_lshiftmod 
-0x796b 025807 arg mem_cy ,contr 
-0x796c 025808 arg mem_t3 ,contw 
-0x796d 025809 call memcpy24 
-0x796e 025810 arg mem_t3 ,rega 
-0x796f 025811 call bn_lshiftmod 
-0x7970 025812 arg mem_t3 ,rega 
-0x7971 025813 arg mem_cz ,regb 
-0x7972 025814 arg mem_cz ,contw 
-0x7973 025815 call bn_mulmod 
-0x7974 025816 arg mem_t2 ,rega 
-0x7975 025817 arg mem_t3 ,contw 
-0x7976 025818 call bn_sqrmod 
-0x7977 025819 arg mem_t3 ,rega 
-0x7978 025820 arg mem_t1 ,regb 
-0x7979 025821 arg mem_t3 ,contw 
-0x797a 025822 call bn_submod 
-0x797b 025823 arg mem_t3 ,rega 
-0x797c 025824 arg mem_t1 ,regb 
-0x797d 025825 arg mem_cx ,contw 
-0x797e 025826 call bn_submod 
-0x797f 025827 arg mem_t1 ,rega 
-0x7980 025828 arg mem_cx ,regb 
-0x7981 025829 arg mem_t3 ,contw 
-0x7982 025830 call bn_submod 
-0x7983 025831 arg mem_t3 ,rega 
-0x7984 025832 arg mem_t2 ,regb 
-0x7985 025833 arg mem_t3 ,contw 
-0x7986 025834 call bn_mulmod 
-0x7987 025835 arg mem_t3 ,rega 
-0x7988 025836 arg mem_t0 ,regb 
-0x7989 025837 arg mem_cy ,contw 
-0x798a 025838 branch bn_submod 
-:      025842 ecadd:
-0x798b 025843 arg mem_az ,rega 
-0x798c 025844 arg mem_t7 ,contw 
-0x798d 025845 call bn_sqrmod 
-0x798e 025846 arg mem_cx ,rega 
-0x798f 025847 arg mem_t7 ,regb 
-0x7990 025848 arg mem_t0 ,contw 
-0x7991 025849 call bn_mulmod 
-0x7992 025850 arg mem_az ,rega 
-0x7993 025851 arg mem_t7 ,regb 
-0x7994 025852 arg mem_t7 ,contw 
-0x7995 025853 call bn_mulmod 
-0x7996 025854 arg mem_cy ,rega 
-0x7997 025855 arg mem_t7 ,regb 
-0x7998 025856 arg mem_t1 ,contw 
-0x7999 025857 call bn_mulmod 
-0x799a 025858 arg mem_cz ,rega 
-0x799b 025859 arg mem_t7 ,contw 
-0x799c 025860 call bn_sqrmod 
-0x799d 025861 arg mem_ax ,rega 
-0x799e 025862 arg mem_t7 ,regb 
-0x799f 025863 arg mem_t2 ,contw 
-0x79a0 025864 call bn_mulmod 
-0x79a1 025865 arg mem_cz ,rega 
-0x79a2 025866 arg mem_t7 ,regb 
-0x79a3 025867 arg mem_t7 ,contw 
-0x79a4 025868 call bn_mulmod 
-0x79a5 025869 arg mem_ay ,rega 
-0x79a6 025870 arg mem_t7 ,regb 
-0x79a7 025871 arg mem_t3 ,contw 
-0x79a8 025872 call bn_mulmod 
-0x79a9 025873 arg mem_t0 ,rega 
-0x79aa 025874 arg mem_t2 ,regb 
-0x79ab 025875 arg mem_t7 ,contw 
-0x79ac 025876 call bn_submod 
-0x79ad 025877 arg mem_t0 ,rega 
-0x79ae 025878 arg mem_t2 ,regb 
-0x79af 025879 arg mem_t0 ,contw 
-0x79b0 025880 call bn_addmod 
-0x79b1 025881 arg mem_t1 ,rega 
-0x79b2 025882 arg mem_t3 ,regb 
-0x79b3 025883 arg mem_t2 ,contw 
-0x79b4 025884 call bn_submod 
-0x79b5 025885 arg mem_t1 ,rega 
-0x79b6 025886 arg mem_t3 ,regb 
-0x79b7 025887 arg mem_t1 ,contw 
-0x79b8 025888 call bn_addmod 
-0x79b9 025889 arg mem_t1 ,rega 
-0x79ba 025890 arg mem_t7 ,regb 
-0x79bb 025891 arg mem_t1 ,contw 
-0x79bc 025892 call bn_mulmod 
-0x79bd 025893 arg mem_cz ,rega 
-0x79be 025894 arg mem_az ,regb 
-0x79bf 025895 arg mem_t3 ,contw 
-0x79c0 025896 call bn_mulmod 
-0x79c1 025897 arg mem_t3 ,rega 
-0x79c2 025898 arg mem_t7 ,regb 
-0x79c3 025899 arg mem_cz ,contw 
-0x79c4 025900 call bn_mulmod 
-0x79c5 025901 arg mem_t7 ,rega 
-0x79c6 025902 arg mem_t7 ,contw 
-0x79c7 025903 call bn_sqrmod 
-0x79c8 025904 arg mem_t7 ,rega 
-0x79c9 025905 arg mem_t0 ,regb 
-0x79ca 025906 arg mem_t3 ,contw 
-0x79cb 025907 call bn_mulmod 
-0x79cc 025908 arg mem_t7 ,rega 
-0x79cd 025909 arg mem_t1 ,regb 
-0x79ce 025910 arg mem_t1 ,contw 
-0x79cf 025911 call bn_mulmod 
-0x79d0 025912 arg mem_t2 ,rega 
-0x79d1 025913 arg mem_cx ,contw 
-0x79d2 025914 call bn_sqrmod 
-0x79d3 025915 arg mem_cx ,rega 
-0x79d4 025916 arg mem_t3 ,regb 
-0x79d5 025917 arg mem_cx ,contw 
-0x79d6 025918 call bn_submod 
-0x79d7 025919 arg mem_cx ,contr 
-0x79d8 025920 arg mem_t7 ,contw 
-0x79d9 025921 call memcpy24 
-0x79da 025922 arg mem_t7 ,rega 
-0x79db 025923 call bn_lshiftmod 
-0x79dc 025924 arg mem_t3 ,rega 
-0x79dd 025925 arg mem_t7 ,regb 
-0x79de 025926 arg mem_t3 ,contw 
-0x79df 025927 call bn_submod 
-0x79e0 025928 arg mem_t3 ,rega 
-0x79e1 025929 arg mem_t2 ,regb 
-0x79e2 025930 arg mem_t2 ,contw 
-0x79e3 025931 call bn_mulmod 
-0x79e4 025932 arg mem_t2 ,rega 
-0x79e5 025933 arg mem_t1 ,regb 
-0x79e6 025934 arg mem_cy ,contw 
-0x79e7 025935 call bn_submod 
-0x79e8 025936 arg mem_cy ,rega 
-0x79e9 025937 arg mem_p ,regb 
-0x79ea 025938 arg mem_cy ,contw 
-0x79eb 025939 force 0 ,regc 
-0x79ec 025940 fetch 1 ,mem_cy 
-0x79ed 025941 isolate1 0 ,pdata 
-0x79ee 025942 call bn_add ,true 
-0x79ef 025943 copy regc ,alarm 
-0x79f0 025944 arg mem_cy ,rega 
-0x79f1 025945 call bn_rshift6 
-0x79f2 025946 fetch 1 ,mem_cy5 
-0x79f3 025947 isolate1 0 ,alarm 
-0x79f4 025948 setflag true ,7 ,pdata 
-0x79f5 025949 store 1 ,mem_cy5 
-0x79f6 025950 rtn 
-:      025953 eckp:
-0x79f7 025954 jam 192 ,mem_ec_loopc 
-0x79f8 025955 jam 1 ,mem_ec_infinite 
-:      025956 eckp_0:
-0x79f9 025957 fetch 1 ,mem_ec_loopc 
-0x79fa 025958 increase -1 ,pdata 
-0x79fb 025959 nrtn positive 
-0x79fc 025960 store 1 ,mem_ec_loopc 
-0x79fd 025961 fetch 1 ,mem_ec_infinite 
-0x79fe 025962 call ecdbl ,blank 
-0x79ff 025963 fetch 1 ,mem_ec_loopc 
-0x7a00 025964 arg mem_k ,contr 
-0x7a01 025965 call bn_testbit 
-0x7a02 025966 branch eckp_0 ,true 
-0x7a03 025967 fetch 1 ,mem_ec_infinite 
-0x7a04 025968 nbranch eckp_1 ,blank 
-0x7a05 025969 call ecadd 
-0x7a06 025970 branch eckp_0 
-:      025971 eckp_1:
-0x7a07 025972 jam 0 ,mem_ec_infinite 
-0x7a08 025973 arg mem_ax ,contr 
-0x7a09 025974 arg mem_cx ,contw 
-0x7a0a 025975 call ec_copy 
-0x7a0b 025976 branch eckp_0 
-:      025979 ecunmapz:
-0x7a0c 025980 arg mem_cz ,rega 
-0x7a0d 025981 arg mem_t3 ,contw 
-0x7a0e 025982 call bn_invmod 
-0x7a0f 025983 arg mem_t3 ,rega 
-0x7a10 025984 arg mem_t1 ,contw 
-0x7a11 025985 call bn_sqrmod 
-0x7a12 025986 arg mem_cx ,rega 
-0x7a13 025987 arg mem_t1 ,regb 
-0x7a14 025988 arg mem_bx ,contw 
-0x7a15 025989 call bn_mulmod 
-0x7a16 025990 arg mem_t3 ,rega 
-0x7a17 025991 arg mem_t1 ,regb 
-0x7a18 025992 arg mem_t2 ,contw 
-0x7a19 025993 call bn_mulmod 
-0x7a1a 025994 arg mem_cy ,rega 
-0x7a1b 025995 arg mem_t2 ,regb 
-0x7a1c 025996 arg mem_by ,contw 
-0x7a1d 025997 branch bn_mulmod 
-:      026000 sha_endian_swap:
-0x7a1e 026001 force 16 ,loopcnt 
-:      026002 sha_endian_swap2:
-0x7a1f 026003 ifetch 4 ,contr 
-0x7a20 026004 force 4 ,rega 
-0x7a21 026005 increase 3 ,contw 
-:      026006 sha_endian_loop:
-0x7a22 026007 istore 1 ,contw 
-0x7a23 026008 rshift8 pdata ,pdata 
-0x7a24 026009 increase -2 ,contw 
-0x7a25 026010 increase -1 ,rega 
-0x7a26 026011 nbranch sha_endian_loop ,zero 
-0x7a27 026012 increase 5 ,contw 
-0x7a28 026013 loop sha_endian_swap2 
-0x7a29 026014 rtn 
-:      026017 sha_getw:
-0x7a2a 026018 lshift2 queue ,pdata 
-0x7a2b 026019 iadd timeup ,contr 
-0x7a2c 026020 ifetch 4 ,contr 
-0x7a2d 026021 rtn 
-:      026023 sha_r:
-0x7a2e 026024 force 16 ,alarm 
-0x7a2f 026025 arg memdat ,timeup 
-:      026026 sha_r_loop:
-0x7a30 026027 add alarm ,-7 ,queue 
-0x7a31 026028 call sha_getw 
-0x7a32 026029 iforce temp 
-0x7a33 026030 add alarm ,-16 ,queue 
-0x7a34 026031 call sha_getw 
-0x7a35 026032 iadd temp ,temp 
-0x7a36 026033 add alarm ,-2 ,queue 
-0x7a37 026034 call sha_getw 
-0x7a38 026035 shasx pdata ,1 ,pdata 
-0x7a39 026036 iadd temp ,temp 
-0x7a3a 026037 add alarm ,-15 ,queue 
-0x7a3b 026038 call sha_getw 
-0x7a3c 026039 shasx pdata ,0 ,pdata 
-0x7a3d 026040 iadd temp ,temp 
-0x7a3e 026041 lshift2 alarm ,pdata 
-0x7a3f 026042 iadd timeup ,contw 
-0x7a40 026043 istoret 4 ,contw 
-0x7a41 026044 increase 1 ,alarm 
-0x7a42 026045 compare 64 ,alarm ,0xff 
-0x7a43 026046 nbranch sha_r_loop ,true 
-0x7a44 026047 rtn 
-:      026050 sha_init:
-0x7a45 026051 arg memh0 ,contr 
-0x7a46 026052 force 7 ,regext_index 
-:      026053 sha_init_0:
-0x7a47 026054 ifetch 4 ,contr 
-0x7a48 026055 iforce regext 
-0x7a49 026056 increase -1 ,regext_index 
-0x7a4a 026057 branch sha_init_0 ,positive 
-0x7a4b 026058 rtn 
-:      026060 sha:
-0x7a4c 026061 set1 mark_ext_patch ,mark 
-0x7a4d 026062 bpatch patch3f_0 ,mem_patch3f 
-0x7a4e 026063 call sha_r 
-0x7a4f 026064 arg memahbak ,contw 
-0x7a50 026065 force 0 ,regext_index 
-:      026066 sha_0:
-0x7a51 026067 deposit regext 
-0x7a52 026068 istore 4 ,contw 
-0x7a53 026069 increase 1 ,regext_index 
-0x7a54 026070 compare 8 ,regext_index ,0xff 
-0x7a55 026071 nbranch sha_0 ,true 
-0x7a56 026072 call enable_authrom 
-0x7a57 026073 arg memk ,timeup 
-0x7a58 026074 arg memdat ,alarm 
-0x7a59 026075 force 64 ,loopcnt 
-:      026076 sha_loop:
-0x7a5a 026077 ifetcht 4 ,alarm 
-0x7a5b 026078 ifetch 4 ,timeup 
-0x7a5c 026079 increase 4 ,timeup 
-0x7a5d 026080 increase 4 ,alarm 
-0x7a5e 026081 iadd temp ,pdata 
-0x7a5f 026082 force 7 ,regext_index 
-0x7a60 026083 iadd regext ,temp 
-0x7a61 026084 force 4 ,regext_index 
-0x7a62 026085 shasx regext ,3 ,pdata 
-0x7a63 026086 iadd temp ,temp 
-0x7a64 026087 force 5 ,regext_index 
-0x7a65 026088 deposit regext 
-0x7a66 026089 force 6 ,regext_index 
-0x7a67 026090 ixor regext ,pdata 
-0x7a68 026091 force 4 ,regext_index 
-0x7a69 026092 iand regext ,pdata 
-0x7a6a 026093 force 6 ,regext_index 
-0x7a6b 026094 ixor regext ,pdata 
-0x7a6c 026095 iadd temp ,temp 
-0x7a6d 026096 force 7 ,regext_index 
-0x7a6e 026097 copy temp ,regext 
-0x7a6f 026098 force 3 ,regext_index 
-0x7a70 026099 deposit regext 
-0x7a71 026100 iadd temp ,regext 
-0x7a72 026101 force 0 ,regext_index 
-0x7a73 026102 deposit regext 
-0x7a74 026103 force 1 ,regext_index 
-0x7a75 026104 iand regext ,temp 
-0x7a76 026105 ior regext ,pdata 
-0x7a77 026106 force 2 ,regext_index 
-0x7a78 026107 iand regext ,pdata 
-0x7a79 026108 ior temp ,temp 
-0x7a7a 026109 force 0 ,regext_index 
-0x7a7b 026110 shasx regext ,2 ,pdata 
-0x7a7c 026111 iadd temp ,pdata 
-0x7a7d 026112 force 7 ,regext_index 
-0x7a7e 026113 iadd regext ,regext 
-0x7a7f 026114 regexrot 
-0x7a80 026115 loop sha_loop 
-0x7a81 026116 arg memahbak ,contr 
-0x7a82 026117 force 0 ,regext_index 
-:      026118 sha_1:
-0x7a83 026119 ifetch 4 ,contr 
-0x7a84 026120 iadd regext ,regext 
-0x7a85 026121 increase 1 ,regext_index 
-0x7a86 026122 compare 8 ,regext_index ,0xff 
-0x7a87 026123 nbranch sha_1 ,true 
-0x7a88 026124 branch disable_authrom 
-:      026127 sha_result:
-0x7a89 026128 arg memresult ,contw 
-0x7a8a 026129 force 7 ,regext_index 
-:      026130 sha_regext_save:
-0x7a8b 026131 deposit regext 
-0x7a8c 026132 istore 4 ,contw 
-0x7a8d 026133 increase -1 ,regext_index 
-0x7a8e 026134 branch sha_regext_save ,positive 
-0x7a8f 026135 rtn 
-:      026137 pad_xor:
-0x7a90 026139 arg memdat ,contw 
-0x7a91 026140 increase -4 ,contr 
-0x7a92 026141 sub loopcnt ,16 ,rega 
-:      026142 pad_xor_0:
-0x7a93 026143 ifetch 4 ,contr 
-0x7a94 026144 ixor temp ,pdata 
-0x7a95 026145 istore 4 ,contw 
-0x7a96 026146 increase -8 ,contr 
-0x7a97 026147 loop pad_xor_0 
-0x7a98 026148 copy rega ,loopcnt 
-0x7a99 026149 deposit temp 
-:      026150 pad_xor_1:
-0x7a9a 026151 istore 4 ,contw 
-0x7a9b 026152 loop pad_xor_1 
-0x7a9c 026153 rtn 
-:      026155 g_noninit:
-0x7a9d 026156 arg mem_sp_pubkey_remote_x_end ,contr 
-0x7a9e 026157 arg memdat ,contw 
-0x7a9f 026158 force 6 ,loopcnt 
-0x7aa0 026159 call memcpy_dword_swap 
-0x7aa1 026160 arg mem_sp_pubkey_local_x_end ,contr 
-0x7aa2 026161 force 6 ,loopcnt 
-0x7aa3 026162 call memcpy_dword_swap 
-0x7aa4 026163 arg mem_sp_random_remote_end ,contr 
-0x7aa5 026164 call memcpy_dword_swap4 
-0x7aa6 026165 call sha_init 
-0x7aa7 026166 call sha 
-0x7aa8 026167 arg mem_sp_random_local_end ,contr 
-0x7aa9 026168 arg memdat ,contw 
-0x7aaa 026169 branch g_common 
-:      026171 g_init:
-0x7aab 026172 arg mem_sp_pubkey_local_x_end ,contr 
-0x7aac 026173 arg memdat ,contw 
-0x7aad 026174 force 6 ,loopcnt 
-0x7aae 026175 call memcpy_dword_swap 
-0x7aaf 026176 arg mem_sp_pubkey_remote_x_end ,contr 
-0x7ab0 026177 force 6 ,loopcnt 
-0x7ab1 026178 call memcpy_dword_swap 
-0x7ab2 026179 arg mem_sp_random_local_end ,contr 
-0x7ab3 026180 call memcpy_dword_swap4 
-0x7ab4 026181 call sha_init 
-0x7ab5 026182 call sha 
-0x7ab6 026183 arg mem_sp_random_remote_end ,contr 
-0x7ab7 026184 arg memdat ,contw 
-:      026185 g_common:
-0x7ab8 026186 call memcpy_dword_swap4 
-0x7ab9 026187 setarg 0x800000 
-0x7aba 026188 lshift8 pdata ,pdata 
-0x7abb 026189 istore 4 ,contw 
-0x7abc 026190 force 5 ,loopcnt 
-0x7abd 026191 call memset0 
-0x7abe 026192 setarg 640 
-0x7abf 026193 istore 4 ,contw 
-0x7ac0 026194 call sha 
-0x7ac1 026196 fetch 4 ,memresult 
-0x7ac2 026198 arg 1000 ,rega 
-0x7ac3 026199 idiv rega 
-0x7ac4 026200 call wait_div_end 
-0x7ac5 026201 remainder pdata 
-0x7ac6 026202 store 4 ,mem_sp_gkey 
-0x7ac7 026203 quotient pdata 
-0x7ac8 026204 arg 1000 ,rega 
-0x7ac9 026205 idiv rega 
-0x7aca 026206 call wait_div_end 
-0x7acb 026207 remainder pdata 
-0x7acc 026208 arg 1000 ,rega 
-0x7acd 026209 imul32 rega ,pdata 
-0x7ace 026210 fetcht 4 ,mem_sp_gkey 
-0x7acf 026211 iadd temp ,pdata 
-0x7ad0 026212 store 4 ,mem_sp_gkey 
-0x7ad1 026213 rtn 
-:      026215 function_f1:
-0x7ad2 026216 setarg 0x363636 
-0x7ad3 026217 lshift8 pdata ,temp 
-0x7ad4 026218 or_into 0x36 ,temp 
-0x7ad5 026219 fetch 2 ,mem_sp_prarm_stack 
-0x7ad6 026220 copy pdata ,contr 
-0x7ad7 026221 force 4 ,loopcnt 
-0x7ad8 026222 call pad_xor 
-0x7ad9 026223 call sha_init 
-0x7ada 026224 call sha 
-0x7adb 026225 fetch 2 ,mem_sp_prarm_stack + 2 
-0x7adc 026226 copy pdata ,contr 
-0x7add 026227 arg memdat ,contw 
-0x7ade 026228 force 6 ,loopcnt 
-0x7adf 026229 call memcpy_dword_swap 
-0x7ae0 026230 fetch 2 ,mem_sp_prarm_stack + 4 
-0x7ae1 026231 copy pdata ,contr 
-0x7ae2 026232 force 6 ,loopcnt 
-0x7ae3 026233 call memcpy_dword_swap 
-0x7ae4 026234 setarg 0x800000 
-0x7ae5 026235 istore 3 ,contw 
-0x7ae6 026236 force 0 ,pdata 
-0x7ae7 026237 istore 1 ,contw 
-0x7ae8 026238 force 0 ,pdata 
-0x7ae9 026239 istore 8 ,contw 
-0x7aea 026240 setarg 0x0388 
-0x7aeb 026241 istore 4 ,contw 
-0x7aec 026242 call sha 
-0x7aed 026243 call sha_result 
-0x7aee 026244 arg memresult ,contr 
-0x7aef 026245 arg memahsave ,contw 
-0x7af0 026246 call memcpy32 
-0x7af1 026248 setarg 0x5c5c5c 
-0x7af2 026249 lshift8 pdata ,temp 
-0x7af3 026250 or_into 0x5c ,temp 
-0x7af4 026251 fetch 2 ,mem_sp_prarm_stack 
-0x7af5 026252 copy pdata ,contr 
-0x7af6 026253 force 4 ,loopcnt 
-0x7af7 026254 call pad_xor 
-0x7af8 026255 call sha_init 
-0x7af9 026256 call sha 
-0x7afa 026257 arg memahsave_end ,contr 
-0x7afb 026258 arg memdat ,contw 
-0x7afc 026259 force 8 ,loopcnt 
-0x7afd 026260 call memcpy_dword_swap 
-0x7afe 026261 setarg 0x800000 
-0x7aff 026262 lshift8 pdata ,pdata 
-0x7b00 026263 istore 4 ,contw 
-0x7b01 026264 call bn_zero 
-0x7b02 026265 setarg 0x0300 
-0x7b03 026266 istore 4 ,contw 
-0x7b04 026267 call sha 
-0x7b05 026268 branch sha_result 
-:      026271 function_f2:
-0x7b06 026272 setarg 0x363636 
-0x7b07 026273 lshift8 pdata ,temp 
-0x7b08 026274 or_into 0x36 ,temp 
-0x7b09 026275 arg mem_sp_dhkey_end ,contr 
-0x7b0a 026276 force 6 ,loopcnt 
-0x7b0b 026277 call pad_xor 
-0x7b0c 026278 call sha_init 
-0x7b0d 026279 call sha 
-0x7b0e 026280 fetch 2 ,mem_sp_prarm_stack + 12 
-0x7b0f 026281 copy pdata ,contr 
-0x7b10 026282 arg memdat ,contw 
-0x7b11 026283 call memcpy_dword_swap4 
-0x7b12 026284 fetch 2 ,mem_sp_prarm_stack + 14 
-0x7b13 026285 copy pdata ,contr 
-0x7b14 026286 call memcpy_dword_swap4 
-0x7b15 026288 setarg 0x62746c 
-0x7b16 026289 lshift8 pdata ,pdata 
-0x7b17 026290 or_into 0x6b ,pdata 
-0x7b18 026291 istore 4 ,contw 
-0x7b19 026292 arg mem_addr_value_end ,contr 
-0x7b1a 026293 force 3 ,loopcnt 
-0x7b1b 026294 call memcpy_dword_swap 
-0x7b1c 026296 setarg 0x800000 
-0x7b1d 026297 lshift8 pdata ,pdata 
-0x7b1e 026298 istore 4 ,contw 
-0x7b1f 026299 force 0 ,pdata 
-0x7b20 026300 istore 8 ,contw 
-0x7b21 026301 setarg 0x0380 
-0x7b22 026302 istore 4 ,contw 
-0x7b23 026303 call sha 
-0x7b24 026305 call sha_result 
-0x7b25 026306 arg memresult ,contr 
-0x7b26 026307 arg memahsave ,contw 
-0x7b27 026308 call memcpy32 
-0x7b28 026310 setarg 0x5c5c5c 
-0x7b29 026311 lshift8 pdata ,temp 
-0x7b2a 026312 or_into 0x5c ,temp 
-0x7b2b 026313 arg mem_sp_dhkey_end ,contr 
-0x7b2c 026314 force 6 ,loopcnt 
-0x7b2d 026315 call pad_xor 
-0x7b2e 026316 call sha_init 
-0x7b2f 026317 call sha 
-0x7b30 026318 arg memahsave_end ,contr 
-0x7b31 026319 arg memdat ,contw 
-0x7b32 026320 force 8 ,loopcnt 
-0x7b33 026321 call memcpy_dword_swap 
-0x7b34 026322 setarg 0x800000 
-0x7b35 026323 lshift8 pdata ,pdata 
-0x7b36 026324 istore 4 ,contw 
-0x7b37 026325 call bn_zero 
-0x7b38 026326 setarg 0x0300 
-0x7b39 026327 istore 4 ,contw 
-0x7b3a 026328 call sha 
-0x7b3b 026329 branch sha_result 
-:      026332 function_f3a:
-0x7b3c 026333 setarg 0x363636 
-0x7b3d 026334 lshift8 pdata ,temp 
-0x7b3e 026335 or_into 0x36 ,temp 
-0x7b3f 026336 arg mem_sp_dhkey_end ,contr 
-0x7b40 026337 force 6 ,loopcnt 
-0x7b41 026338 call pad_xor 
-0x7b42 026339 call sha_init 
-0x7b43 026340 call sha 
-0x7b44 026341 arg mem_sp_random_remote_end ,contr 
-0x7b45 026342 arg memdat ,contw 
-0x7b46 026343 call memcpy_dword_swap4 
-0x7b47 026344 arg mem_sp_random_local_end ,contr 
-0x7b48 026345 call memcpy_dword_swap4 
-0x7b49 026346 branch function_f3b_common 
-:      026348 function_f3b:
-0x7b4a 026349 setarg 0x363636 
-0x7b4b 026350 lshift8 pdata ,temp 
-0x7b4c 026351 or_into 0x36 ,temp 
-0x7b4d 026352 arg mem_sp_dhkey_end ,contr 
-0x7b4e 026353 force 6 ,loopcnt 
-0x7b4f 026354 call pad_xor 
-0x7b50 026355 call sha_init 
-0x7b51 026356 call sha 
-0x7b52 026358 arg mem_sp_random_local_end ,contr 
-0x7b53 026359 arg memdat ,contw 
-0x7b54 026360 call memcpy_dword_swap4 
-0x7b55 026361 arg mem_sp_random_remote_end ,contr 
-0x7b56 026362 call memcpy_dword_swap4 
-:      026363 function_f3b_common:
-0x7b57 026364 setarg 0x0 
-0x7b58 026365 istore 8 ,contw 
-0x7b59 026366 istore 8 ,contw 
-0x7b5a 026368 copy contw ,temp 
-0x7b5b 026369 jam 0x80 ,mem_addr_padding 
-0x7b5c 026370 copy temp ,contw 
-0x7b5d 026371 arg mem_addr_iocap_end ,contr 
-0x7b5e 026372 call memcpy_dword_swap4 
-0x7b5f 026374 call sha 
-0x7b60 026376 arg memdat ,contw 
-0x7b61 026377 force 7 ,loopcnt 
-0x7b62 026378 call memset0 
-0x7b63 026379 istore 4 ,contw 
-0x7b64 026380 setarg 0x03F8 
-0x7b65 026381 istore 4 ,contw 
-0x7b66 026382 call sha 
-0x7b67 026383 call sha_result 
-0x7b68 026385 arg memresult ,contr 
-0x7b69 026386 arg memahsave ,contw 
-0x7b6a 026387 call memcpy32 
-0x7b6b 026389 setarg 0x5c5c5c 
-0x7b6c 026390 lshift8 pdata ,temp 
-0x7b6d 026391 or_into 0x5c ,temp 
-0x7b6e 026392 arg mem_sp_dhkey_end ,contr 
-0x7b6f 026393 force 6 ,loopcnt 
-0x7b70 026394 call pad_xor 
-0x7b71 026395 call sha_init 
-0x7b72 026396 call sha 
-0x7b73 026397 arg memahsave_end ,contr 
-0x7b74 026398 arg memdat ,contw 
-0x7b75 026399 force 8 ,loopcnt 
-0x7b76 026400 call memcpy_dword_swap 
-0x7b77 026401 setarg 0x800000 
-0x7b78 026402 lshift8 pdata ,pdata 
-0x7b79 026403 istore 4 ,contw 
-0x7b7a 026404 call bn_zero 
-0x7b7b 026405 setarg 0x0300 
-0x7b7c 026406 istore 4 ,contw 
-0x7b7d 026407 call sha 
-0x7b7e 026408 branch sha_result 
-:      026415 eckp_calc_init:
-0x7b7f 026416 jam 192 ,mem_ec_loopc 
-:      026417 eckp_calc_init_1:
-0x7b80 026418 fetch 1 ,mem_ec_loopc 
-0x7b81 026419 rtn blank 
-0x7b82 026420 increase -1 ,pdata 
-0x7b83 026421 store 1 ,mem_ec_loopc 
-0x7b84 026422 arg mem_k ,contr 
-0x7b85 026423 call bn_testbit 
-0x7b86 026424 branch eckp_calc_init_1 ,true 
-0x7b87 026425 arg mem_ax ,contr 
-0x7b88 026426 arg mem_cx ,contw 
-0x7b89 026427 branch ec_copy 
-:      026429 eckp_calc:
-0x7b8a 026430 call ecdbl 
-0x7b8b 026431 fetch 1 ,mem_ec_loopc 
-0x7b8c 026432 increase -1 ,pdata 
-0x7b8d 026433 store 1 ,mem_ec_loopc 
-0x7b8e 026434 arg mem_k ,contr 
-0x7b8f 026435 call bn_testbit 
-0x7b90 026436 rtn true 
-0x7b91 026437 branch ecadd 
-:      026439 eckp_cp_1:
-0x7b92 026440 jam 0 ,mem_ec_infinite 
-0x7b93 026441 arg mem_ax ,contr 
-0x7b94 026442 arg mem_cx ,contw 
-0x7b95 026443 branch ec_copy 
-:      026445 memcpy_dword_swap4:
-0x7b96 026446 force 4 ,loopcnt 
-:      026447 memcpy_dword_swap:
-0x7b97 026448 increase -4 ,contr 
-:      026449 memcpy_dword_swap_loop:
-0x7b98 026450 ifetch 4 ,contr 
-0x7b99 026451 istore 4 ,contw 
-0x7b9a 026452 increase -8 ,contr 
-0x7b9b 026453 loop memcpy_dword_swap_loop 
-0x7b9c 026454 rtn 
-:      026457 ui_init:
-0x7b9d 026458 rtn wake 
-0x7b9e 026459 call ui_button_init 
-0x7b9f 026460 call ui_timer_init 
-0x7ba0 026461 branch ui_led_init 
-:      026463 ui_dispatch:
-0x7ba1 026464 fetch 1 ,mem_device_option 
-0x7ba2 026465 rtneq dvc_op_hci 
-0x7ba3 026466 call ui_led_blink_polling 
-0x7ba4 026468 branch ui_timer_check 
-:      026470 ui_button_init:
-0x7ba5 026471 fetch 1 ,mem_ui_button_gpio 
-0x7ba6 026472 rtneq ui_button_gpio_disable 
-0x7ba7 026473 iforce temp 
-0x7ba8 026474 call gpio_config_output 
-0x7ba9 026475 fetcht 1 ,mem_ui_button_gpio 
-0x7baa 026476 call gpio_out_inactive 
-0x7bab 026477 nop 100 
-0x7bac 026478 fetcht 1 ,mem_ui_button_gpio 
-0x7bad 026479 call gpio_config_input 
-0x7bae 026480 branch ui_button_polling 
-:      026482 ui_button_disable:
-0x7baf 026483 jam ui_button_gpio_disable ,mem_ui_button_gpio 
-0x7bb0 026484 rtn 
-:      026486 ui_button_polling:
-0x7bb1 026487 set1 mark_ext_patch ,mark 
-0x7bb2 026488 bpatch patch30_5 ,mem_patch30 
-0x7bb3 026489 fetch 1 ,mem_ui_button_gpio 
-0x7bb4 026490 rtneq ui_button_gpio_disable 
-0x7bb5 026491 copy pdata ,temp 
-0x7bb6 026492 call gpio_get_bit 
-0x7bb7 026493 nbranch ui_button_up ,true 
-:      026495 ui_button_down:
-0x7bb8 026496 call ui_button_check_long_press 
-0x7bb9 026497 fetch 2 ,mem_ui_state_map 
-0x7bba 026498 set1 ui_state_btn_down 
-0x7bbb 026499 store 2 ,mem_ui_state_map 
-0x7bbc 026500 fetch 1 ,mem_ui_button_last_state 
-0x7bbd 026501 rtneq ui_button_state_down 
-0x7bbe 026502 jam ui_button_state_down ,mem_ui_button_last_state 
-0x7bbf 026504 fetch 1 ,mem_ui_button_timeout 
-0x7bc0 026505 store 1 ,mem_ui_button_timer 
-0x7bc1 026506 call lpm_button_get_wake_lock 
-0x7bc2 026507 jam bt_evt_button_down ,mem_fifo_temp 
-0x7bc3 026508 branch ui_ipc_send_event 
-:      026509 ui_button_up:
-0x7bc4 026510 fetch 2 ,mem_ui_state_map 
-0x7bc5 026511 set0 ui_state_btn_down 
-0x7bc6 026512 store 2 ,mem_ui_state_map 
-0x7bc7 026513 fetch 1 ,mem_ui_button_last_state 
-0x7bc8 026514 rtneq ui_button_state_up 
-0x7bc9 026515 jam ui_button_state_up ,mem_ui_button_last_state 
-0x7bca 026517 jam 0 ,mem_ui_button_timer 
-0x7bcb 026518 call lpm_button_clean_wake_lock 
-0x7bcc 026519 jam bt_evt_button_up ,mem_fifo_temp 
-0x7bcd 026520 branch ui_ipc_send_event 
-:      026522 ui_button_check_long_press:
-0x7bce 026523 fetch 1 ,mem_ui_button_timer 
-0x7bcf 026524 rtn blank 
-0x7bd0 026525 increase -1 ,pdata 
-0x7bd1 026526 store 1 ,mem_ui_button_timer 
-0x7bd2 026527 nrtn blank 
-0x7bd3 026529 jam bt_evt_button_long_pressed ,mem_fifo_temp 
-0x7bd4 026530 branch ui_ipc_send_event 
-:      026532 lpm_button_get_wake_lock:
-0x7bd5 026533 arg wake_lock_button ,queue 
-0x7bd6 026534 branch lpm_get_wake_lock 
-:      026536 lpm_button_clean_wake_lock:
-0x7bd7 026537 arg wake_lock_button ,queue 
-0x7bd8 026538 branch lpm_put_wake_lock 
-:      026540 ui_led_init:
-0x7bd9 026541 fetch 1 ,mem_led_gpio 
-0x7bda 026542 rtneq ui_button_gpio_disable 
-0x7bdb 026543 iforce temp 
-0x7bdc 026544 call gpio_config_output 
-0x7bdd 026545 branch ui_led_off 
-:      026547 ui_led_blink_stop:
-0x7bde 026548 fetch 2 ,mem_ui_state_map 
-0x7bdf 026549 set0 ui_state_led_blink 
-0x7be0 026550 store 2 ,mem_ui_state_map 
-0x7be1 026551 jam ui_led_stop ,mem_led_switch 
-:      026552 ui_led_off:
-0x7be2 026553 fetch 2 ,mem_ui_state_map 
-0x7be3 026554 set0 ui_state_led_on 
-0x7be4 026555 store 2 ,mem_ui_state_map 
-0x7be5 026556 fetcht 1 ,mem_led_gpio 
-0x7be6 026557 branch gpio_out_inactive 
-:      026559 ui_led_on:
-0x7be7 026560 fetch 2 ,mem_ui_state_map 
-0x7be8 026561 set1 ui_state_led_on 
-0x7be9 026562 store 2 ,mem_ui_state_map 
-0x7bea 026563 jam ui_led_stop ,mem_led_switch 
-0x7beb 026564 fetcht 1 ,mem_led_gpio 
-0x7bec 026565 branch gpio_out_active 
-:      026567 ui_led_blink_start:
-0x7bed 026568 fetch 2 ,mem_ui_state_map 
-0x7bee 026569 set1 ui_state_led_blink 
-0x7bef 026570 store 2 ,mem_ui_state_map 
-0x7bf0 026571 jam ui_led_start ,mem_led_switch 
-0x7bf1 026572 rtn 
-:      026574 ui_led_blink_polling:
-0x7bf2 026575 set1 mark_ext_patch ,mark 
-0x7bf3 026576 bpatch patch30_6 ,mem_patch30 
-0x7bf4 026577 fetch 1 ,mem_led_switch 
-0x7bf5 026578 rtneq ui_led_stop 
-0x7bf6 026579 arg ui_led_blink ,queue 
-0x7bf7 026580 call timer_check 
-0x7bf8 026581 nrtn blank 
-0x7bf9 026582 fetch 1 ,mem_led_switch 
-0x7bfa 026583 beq ui_led_dark_time ,ui_led_blink_polling_dark 
-0x7bfb 026584 call ui_led_on 
-0x7bfc 026585 jam ui_led_dark_time ,mem_led_switch 
-0x7bfd 026586 fetch 2 ,mem_led_light_time 
-0x7bfe 026587 branch ui_led_blink_timer_start 
-:      026588 ui_led_blink_polling_dark:
-0x7bff 026589 call ui_led_off 
-0x7c00 026590 jam ui_led_light_time ,mem_led_switch 
-0x7c01 026591 fetch 2 ,mem_led_dark_time 
-:      026592 ui_led_blink_timer_start:
-0x7c02 026593 arg ui_led_blink ,queue 
-0x7c03 026594 branch timer_init 
-:      026597 ui_timer_check:
-0x7c04 026598 set1 mark_ext_patch ,mark 
-0x7c05 026599 bpatch patch30_7 ,mem_patch30 
-0x7c06 026600 arg 0 ,rega 
-0x7c07 026601 fetcht 4 ,mem_ui_timer_last_btclk 
-0x7c08 026602 copy clkn_bt ,regb 
-:      026604 ui_timer_check_loop:
-0x7c09 026605 copy regb ,pdata 
-0x7c0a 026606 increase 160 ,temp 
-0x7c0b 026607 increase 160 ,temp 
-0x7c0c 026608 isub temp ,null 
-0x7c0d 026609 nbranch ui_timer_check_end ,positive 
-0x7c0e 026610 increase 1 ,rega 
-0x7c0f 026611 and rega ,0x0f ,pdata 
-0x7c10 026612 nbranch ui_timer_check_loop ,blank 
-0x7c11 026613 arg 0 ,rega 
-0x7c12 026614 call ui_timer_check_send_evt 
-:      026615 ui_timer_init:
-0x7c13 026616 copy clkn_bt ,pdata 
-0x7c14 026617 store 4 ,mem_ui_timer_last_btclk 
-0x7c15 026618 rtn 
-:      026619 ui_timer_check_end:
-0x7c16 026620 set1 mark_ext_patch ,mark 
-0x7c17 026621 bpatch patch31_0 ,mem_patch31 
-0x7c18 026622 copy rega ,pdata 
-0x7c19 026623 rtn blank 
-0x7c1a 026624 increase -160 ,temp 
-0x7c1b 026625 increase -160 ,temp 
-0x7c1c 026626 storet 4 ,mem_ui_timer_last_btclk 
-:      026627 ui_timer_check_send_evt:
-0x7c1d 026628 increase bt_evt_timer_init ,pdata 
-0x7c1e 026629 store 1 ,mem_fifo_temp 
-0x7c1f 026630 branch ui_ipc_send_event 
-:      026636 ui_ipc_get_lock:
-0x7c20 026637 jam 1 ,mem_ipc_lock_bt 
-:      026638 ui_ipc_get_lock_wait:
-0x7c21 026639 fetch 1 ,mem_ipc_lock_c51 
-0x7c22 026640 nbranch ui_ipc_get_lock_wait ,blank 
-0x7c23 026641 rtn 
-:      026643 ui_ipc_put_lock:
-0x7c24 026644 jam 0 ,mem_ipc_lock_bt 
-0x7c25 026645 rtn 
-:      026647 ui_ipc_fifo_out:
-0x7c26 026648 branch fifo_out 
-:      026652 ui_ipc_send_event:
-0x7c27 026653 set1 mark_ext_patch ,mark 
-0x7c28 026654 bpatch patch31_1 ,mem_patch31 
-0x7c29 026655 fetch 1 ,mem_device_option 
-0x7c2a 026656 rtneq dvc_op_hci 
-0x7c2b 026657 call ui_ipc_get_lock 
-0x7c2c 026658 copy rega ,pdata 
-0x7c2d 026659 store 4 ,mem_ipc_rega_temp 
-0x7c2e 026660 arg mem_ipc_fifo_bt2c51 ,rega 
-0x7c2f 026661 call fifo_in 
-0x7c30 026662 fetch 4 ,mem_ipc_rega_temp 
-0x7c31 026663 copy pdata ,rega 
-0x7c32 026664 branch ui_ipc_put_lock 
-:      026666 ui_ipc_send_cmd:
-0x7c33 026667 set1 mark_ext_patch ,mark 
-0x7c34 026668 bpatch patch31_2 ,mem_patch31 
-0x7c35 026669 fetch 1 ,mem_device_option 
-0x7c36 026670 rtneq dvc_op_hci 
-0x7c37 026671 call ui_ipc_get_lock 
-0x7c38 026672 copy rega ,pdata 
-0x7c39 026673 store 4 ,mem_ipc_rega_temp 
-0x7c3a 026674 arg mem_ipc_fifo_c512bt ,rega 
-0x7c3b 026675 call fifo_in 
-0x7c3c 026676 fetch 4 ,mem_ipc_rega_temp 
-0x7c3d 026677 copy pdata ,rega 
-0x7c3e 026678 branch ui_ipc_put_lock 
-:      026680 ui_ipc_clean_all_fifo:
-0x7c3f 026681 set1 mark_ext_patch ,mark 
-0x7c40 026682 bpatch patch31_3 ,mem_patch31 
-0x7c41 026683 setarg 0 
-0x7c42 026684 store util_fifo_len ,mem_ipc_fifo_c512bt 
-0x7c43 026685 store util_fifo_len ,mem_ipc_fifo_bt2c51 
-0x7c44 026686 rtn 
-:      026688 check_51cmd:
-0x7c45 026689 set1 mark_ext_patch ,mark 
-0x7c46 026690 bpatch patch31_4 ,mem_patch31 
-0x7c47 026691 fetch 1 ,mem_hci_cmd 
-0x7c48 026692 nrtn blank 
-0x7c49 026693 arg mem_ipc_fifo_c512bt ,rega 
-0x7c4a 026694 call fifo_is_empty 
-0x7c4b 026695 rtn blank 
-0x7c4c 026696 jam ipc_continue_process ,mem_ipc_skip_continue_proc 
-0x7c4d 026697 call check_51cmd_once 
-0x7c4e 026698 fetch 1 ,mem_ipc_skip_continue_proc 
-0x7c4f 026699 branch check_51cmd ,blank 
-0x7c50 026700 rtn 
-:      026702 check_51cmd_once:
-0x7c51 026703 set1 mark_ext_patch ,mark 
-0x7c52 026704 bpatch patch31_5 ,mem_patch31 
-0x7c53 026705 call ui_ipc_get_lock 
-0x7c54 026706 arg mem_ipc_fifo_c512bt ,rega 
-0x7c55 026707 call fifo_out 
-0x7c56 026708 copy pdata ,temp 
-0x7c57 026709 call ui_ipc_put_lock 
-0x7c58 026710 copy temp ,pdata 
-0x7c59 026711 rtn blank 
-0x7c5a 026712 beq bt_cmd_start_discovery ,check_51cmd_start_discovery 
-0x7c5b 026713 beq bt_cmd_stop_discovery ,check_51cmd_stop_discovery 
-0x7c5c 026714 beq bt_cmd_reconnect ,check_51cmd_reconnect 
-0x7c5d 026715 beq bt_cmd_enter_sniff_subrating ,check_51cmd_enter_sniff_subrating 
-0x7c5e 026716 beq bt_cmd_exit_sniff_subrating ,check_51cmd_exit_sniff_subrating 
-0x7c5f 026717 beq bt_cmd_sniff_test ,check_51cmd_sniff_test 
-0x7c60 026718 beq bt_cmd_start_inquiry ,check_51cmd_inq 
-0x7c61 026719 beq bt_cmd_stop_inquiry ,check_51cmd_stop_inq 
-0x7c62 026720 beq bt_cmd_start_adv ,check_51cmd_adv 
-0x7c63 026721 beq bt_cmd_stop_adv ,check_51cmd_stop_adv 
-0x7c64 026722 beq bt_cmd_start_direct_adv ,check_51cmd_direct_adv 
-0x7c65 026723 beq bt_cmd_stop_direct_adv ,check_51cmd_stop_direct_adv 
-0x7c66 026724 beq bt_cmd_le_update_conn ,check_51cmd_le_update_conn 
-0x7c67 026725 beq bt_cmd_led_blink ,ui_led_blink_start 
-0x7c68 026726 beq bt_cmd_led_on ,ui_led_on 
-0x7c69 026727 beq bt_cmd_led_off ,ui_led_blink_stop 
-0x7c6a 026728 beq bt_cmd_le_start_conn ,check_51cmd_le_start_con 
-0x7c6b 026729 beq bt_cmd_le_start_scan ,check_51cmd_start_scan 
-0x7c6c 026730 beq bt_cmd_le_stop_scan ,check_51cmd_stop_scan 
-0x7c6d 026731 beq bt_cmd_enter_hibernate ,check_51cmd_hibernate 
-0x7c6e 026732 beq bt_cmd_le_smp_security_request ,check_51cmd_le_smp_sec_req 
-0x7c6f 026733 beq bt_cmd_le_start_write ,check_51cmd_le_start_write 
-0x7c70 026734 beq bt_cmd_bb_reconn_cancel ,check_51cmd_bb_reconn_cancel 
-0x7c71 026736 store 1 ,mem_fifo_temp 
-0x7c72 026737 set1 mark_ext_patch ,mark 
-0x7c73 026738 bpatch patch31_6 ,mem_patch31 
-0x7c74 026739 fetch 1 ,mem_lmo_opcode2 
-0x7c75 026740 branch check_51cmd_once_continue ,blank 
-0x7c76 026741 call lmo_fifo_process 
-0x7c77 026742 fetch 1 ,mem_lmo_opcode2 
-0x7c78 026743 nbranch check_51cmd_restore ,blank 
-:      026744 check_51cmd_once_continue:
-0x7c79 026745 fetch 1 ,mem_fifo_temp 
-0x7c7a 026746 bmark0 mark_context ,check_51cmd_check_idle 
-:      026747 check_51cmd_once_continue0:
-0x7c7b 026748 beq bt_cmd_enter_sniff ,cmd_in_sniff 
-0x7c7c 026749 beq bt_cmd_exit_sniff ,cmd_exit_sniff 
-0x7c7d 026750 beq bt_cmd_set_pin_code ,check_51cmd_pincode 
-0x7c7e 026751 beq bt_cmd_disconnect ,check_51cmd_disconnect 
-0x7c7f 026752 beq bt_cmd_le_disconnect ,check_51cmd_le_disconnect 
-0x7c80 026753 beq bt_cmd_role_switch ,check_51cmd_role_switch 
-0x7c81 026754 beq bt_cmd_store_reconn_info_le ,eeprom_store_le_reconn_info 
-0x7c82 026755 beq bt_cmd_store_reconn_info_bt ,eeprom_store_bd_reconn_info 
-0x7c83 026756 beq bt_cmd_le_update_conn ,bt_cmd_le_update_conn_1 
-0x7c84 026757 rtn 
-:      026760 bt_cmd_le_update_conn_1:
-0x7c85 026761 jam xt_ll_connection_param_req ,mem_fifo_temp 
-0x7c86 026762 branch le_xtype_fifo_in 
-:      026763 check_51cmd_check_idle:
-0x7c87 026764 store 1 ,mem_fifo_temp 
-0x7c88 026765 call context_check_idle 
-0x7c89 026766 branch check_51cmd_restore ,zero 
-0x7c8a 026767 call context_search_plap 
-0x7c8b 026768 nrtn zero 
-:      026769 check_51cmd_restore:
-0x7c8c 026770 jam ipc_skip_continue_process ,mem_ipc_skip_continue_proc 
-0x7c8d 026771 branch ui_ipc_send_cmd 
-:      026774 check_51cmd_role_switch:
-0x7c8e 026775 jam lmp_slot_offset ,mem_lmo_opcode2 
-0x7c8f 026776 set1 mark_switch_initiated ,mark 
-0x7c90 026777 nrtn master 
-0x7c91 026778 jam switch_flag_init ,mem_switch_flag 
-0x7c92 026779 jam lmp_switch_req ,mem_lmo_opcode2 
-0x7c93 026780 fetch 1 ,mem_connection_options 
-0x7c94 026781 set0 connection_switch ,pdata 
-0x7c95 026782 store 1 ,mem_connection_options 
-0x7c96 026783 rtn 
-:      026785 check_51cmd_start_discovery:
-0x7c97 026786 fetch 2 ,mem_ui_state_map 
-0x7c98 026787 set1 ui_state_bt_discovery 
-0x7c99 026788 store 2 ,mem_ui_state_map 
-0x7c9a 026789 jam 3 ,mem_scan_mode 
-0x7c9b 026790 rtn 
-:      026792 check_51cmd_stop_discovery:
-0x7c9c 026793 jam 0 ,mem_hid_handshake_timer_count 
-0x7c9d 026794 jam 0 ,mem_scan_mode 
-0x7c9e 026795 fetch 2 ,mem_ui_state_map 
-0x7c9f 026796 set0 ui_state_bt_discovery 
-0x7ca0 026797 store 2 ,mem_ui_state_map 
-0x7ca1 026798 rtn 
-:      026800 check_51cmd_reconnect:
-0x7ca2 026801 jam hci_cmd_create_conn ,mem_hci_cmd 
-0x7ca3 026802 rtn 
-:      026804 check_51cmd_disconnect:
-0x7ca4 026805 jam lmp_detach ,mem_lmo_opcode2 
-0x7ca5 026806 jam other_end_terminated ,mem_disconn_reason_send 
-0x7ca6 026807 rtn 
-:      026810 check_51cmd_enter_sniff_subrating:
-0x7ca7 026811 rtn 
-:      026813 check_51cmd_exit_sniff_subrating:
-0x7ca8 026814 rtn 
-:      026816 check_51cmd_sniff_test:
-0x7ca9 026817 rtn 
-:      026819 check_51cmd_pincode:
-0x7caa 026820 jam pincode_state_pincode_ready ,mem_pincode_state 
-0x7cab 026821 branch cmd_pair 
-:      026823 check_51cmd_inq:
-0x7cac 026824 rtn 
-:      026825 check_51cmd_stop_inq:
-0x7cad 026826 rtn 
-:      026827 check_51cmd_adv:
-0x7cae 026828 jam on ,mem_le_adv_enable 
-0x7caf 026829 jam adv_ind ,mem_le_adv_type 
-0x7cb0 026830 rtn 
-:      026831 check_51cmd_stop_adv:
-0x7cb1 026832 jam off ,mem_le_adv_enable 
-0x7cb2 026833 rtn 
-:      026834 check_51cmd_direct_adv:
-0x7cb3 026835 jam on ,mem_le_adv_enable 
-0x7cb4 026836 jam adv_direct_ind ,mem_le_adv_type 
-0x7cb5 026837 rtn 
-:      026838 check_51cmd_stop_direct_adv:
-0x7cb6 026839 jam off ,mem_le_adv_enable 
-0x7cb7 026840 rtn 
-:      026841 check_51cmd_le_disconnect:
-0x7cb8 026842 setarg 1 
-0x7cb9 026843 store 2 ,mem_le_superto 
-0x7cba 026844 rtn 
-:      026845 check_51cmd_le_update_conn:
-0x7cbb 026846 rtn 
-:      026847 check_51cmd_le_start_con:
-0x7cbc 026848 jam on ,mem_le_scan_enable 
-0x7cbd 026849 jam hci_cmd_le_create_conn ,mem_hci_cmd 
-0x7cbe 026850 fetch 6 ,mem_app_peer_addr 
-0x7cbf 026851 store 6 ,mem_le_conn_peer_addr 
-0x7cc0 026852 rtn 
-:      026853 check_51cmd_start_scan:
-0x7cc1 026854 jam on ,mem_le_scan_enable 
-0x7cc2 026855 rtn 
-:      026856 check_51cmd_stop_scan:
-0x7cc3 026857 jam off ,mem_le_scan_enable 
-0x7cc4 026858 jam 0 ,mem_hci_cmd 
-0x7cc5 026859 rtn 
-:      026860 check_51cmd_le_smp_sec_req:
-0x7cc6 026861 jam xt_smp_security_request ,mem_fifo_temp 
-0x7cc7 026862 branch le_xtype_fifo_in 
-:      026863 check_51cmd_hibernate:
-0x7cc8 026864 set1 mark_ext_patch ,mark 
-0x7cc9 026865 bpatch patch31_7 ,mem_patch31 
-0x7cca 026866 fetch 2 ,mem_cb_before_hibernate 
-0x7ccb 026867 call callback_func 
-0x7ccc 026868 fetch 1 ,mem_ui_button_gpio 
-0x7ccd 026869 beq ui_button_gpio_disable ,check_51cmd_hibernate_btn_disabled 
-0x7cce 026870 copy pdata ,temp 
-0x7ccf 026871 call gpio_config_input 
-:      026872 check_51cmd_hibernate_btn_disabled:
-0x7cd0 026873 call ui_led_off 
-0x7cd1 026874 call ui_ipc_clean_all_fifo 
-0x7cd2 026875 branch lpm_hibernate 
-:      026877 check_51cmd_le_start_write:
-0x7cd3 026878 jam 1 ,mem_le_switch_send_data 
-0x7cd4 026879 rtn 
-:      026881 check_51cmd_bb_reconn_cancel:
-0x7cd5 026882 force page_length_timer ,queue 
-0x7cd6 026883 branch timer_stop 
-:      026885 ui_check_paring_button:
-0x7cd7 026886 fetch 1 ,mem_ui_state_map 
-0x7cd8 026887 rtnbit0 ui_state_btn_down 
-0x7cd9 026888 rtnbit0 ui_state_bt_reconnect 
-0x7cda 026889 branch check_51cmd_bb_reconn_cancel 
-:      026893 usb_isr:
-0x7cdb 026894 set1 mark_ext_patch ,mark 
-0x7cdc 026895 bpatch patch3a_5 ,mem_patch3a 
-0x7cdd 026896 call usb_tx_test 
-0x7cde 026897 hfetch 1 ,core_usb_status 
-0x7cdf 026898 store 1 ,mem_usb_status 
-0x7ce0 026899 hfetch 1 ,core_usb_fifo_empty 
-0x7ce1 026900 store 1 ,mem_usb_fifo_empty 
-0x7ce2 026901 hjam 0xe0 ,core_usb_status 
-0x7ce3 026902 fetch 1 ,mem_usb_fifo_empty 
-0x7ce4 026903 compare 0x1 ,pdata ,0x1 
-0x7ce5 026904 call usb0_fifo_empty ,true 
-0x7ce6 026905 set1 mark_ext_patch ,mark 
-0x7ce7 026906 bpatch patch3a_6 ,mem_patch3a 
-0x7ce8 026907 fetch 1 ,mem_usb_status 
-0x7ce9 026908 compare 0x1 ,pdata ,0x1 
-0x7cea 026909 call usb_status1 ,true 
-0x7ceb 026910 fetch 1 ,mem_usb_state 
-0x7cec 026911 bne usb_connected ,usb_tx 
-0x7ced 026912 fetch 2 ,mem_usb_idle_cnt 
-0x7cee 026913 increase 1 ,pdata 
-0x7cef 026914 store 2 ,mem_usb_idle_cnt 
-0x7cf0 026915 fetcht 2 ,mem_usb_idle_timeout 
-0x7cf1 026916 isub temp ,null 
-0x7cf2 026917 branch usb_init ,positive 
-0x7cf3 026918 fetch 1 ,mem_usb_status 
-0x7cf4 026919 bbit0 usb_status_nak ,usb_tx 
-0x7cf5 026920 setarg 0 
-0x7cf6 026921 store 2 ,mem_usb_idle_cnt 
-0x7cf7 026922 branch usb_tx 
-:      026925 usb_status1:
-0x7cf8 026926 set1 mark_ext_patch ,mark 
-0x7cf9 026927 bpatch patch3a_7 ,mem_patch3a 
-0x7cfa 026928 hjam 0x11 ,core_usb_status 
-0x7cfb 026929 hfetch 1 ,core_usb_ep_len 
-0x7cfc 026930 store 1 ,mem_usb_read_len 
-0x7cfd 026931 copy pdata ,loopcnt 
-0x7cfe 026932 branch usb_rx_no_data ,blank 
-0x7cff 026933 arg mem_usb_setup ,contw 
-0x7d00 026934 call usb_rx_read 
-0x7d01 026935 fetch 1 ,mem_usb_read_len 
-0x7d02 026936 sub pdata ,7 ,null 
-0x7d03 026937 rtn positive 
-:      026938 usb_class_type:
-0x7d04 026939 set1 mark_ext_patch ,mark 
-0x7d05 026940 bpatch patch3b_0 ,mem_patch3b 
-0x7d06 026941 fetch 1 ,mem_usb_setup_bmrequesttype 
-0x7d07 026942 beq hci_class_request_type ,usb_hci_class_req_type 
-0x7d08 026943 beq hid_class_request_type ,usb_hid_class_req_type 
-0x7d09 026944 beq zero_class_request_type ,usb_zero_class_req_type 
-0x7d0a 026945 fetch 1 ,mem_usb_setup_brequest 
-0x7d0b 026946 beq set_address ,usb0_request_set_address 
-0x7d0c 026947 beq get_descriptor ,usb0_request_get_descriptor 
-0x7d0d 026948 beq set_configuration ,usb0_request_set_configuration 
-0x7d0e 026949 beq set_interface ,usb0_request_set_interface 
-0x7d0f 026950 branch usb0_force_stall 
-:      026952 usb_zero_class_req_type:
-0x7d10 026953 fetch 1 ,mem_usb_setup_brequest 
-0x7d11 026954 beq clear_feature ,usb0_request_clear_feature 
-0x7d12 026955 beq set_feature ,usb0_request_set_feature 
-0x7d13 026956 beq set_configuration ,usb0_reply_zerolen 
-0x7d14 026957 beq set_address ,usb0_request_set_address 
-0x7d15 026958 branch usb0_force_stall 
-:      026959 usb_hci_class_req_type:
-0x7d16 026960 call usb0_reply_zerolen 
-0x7d17 026961 rtn 
-:      026963 usb_rx_no_data:
-0x7d18 026964 fetch 1 ,mem_usb_status 
-0x7d19 026965 bbit1 usb_status_setup ,usb_class_type 
-0x7d1a 026966 rtn 
-:      026967 usb_set_protocol_req:
-0x7d1b 026968 fetch 1 ,mem_usb_set_protocol_count 
-0x7d1c 026969 increase 1 ,pdata 
-0x7d1d 026970 store 1 ,mem_usb_set_protocol_count 
-0x7d1e 026971 compare 2 ,pdata ,0xff 
-0x7d1f 026972 nbranch usb0_reply_zerolen ,true 
-0x7d20 026973 jam 1 ,mem_usb_desc 
-0x7d21 026974 branch usb0_reply_zerolen 
-:      026975 usb_hid_class_req_type:
-0x7d22 026976 fetch 1 ,mem_usb_setup_brequest 
-0x7d23 026977 beq set_idle ,usb_set_idle 
-0x7d24 026978 beq set_report ,usb_set_report 
-0x7d25 026979 beq set_protocol ,usb_set_protocol_req 
-0x7d26 026980 branch usb0_force_stall 
-:      026981 usb_set_idle:
-0x7d27 026982 fetch 1 ,mem_usb_state 
-0x7d28 026983 beq usb_setidle_1 ,usb_set_idle_connected 
-0x7d29 026984 bne usb_resume ,usb0_reply_zerolen 
-0x7d2a 026985 jam usb_setidle_1 ,mem_usb_state 
-0x7d2b 026986 branch usb0_reply_zerolen 
-:      026987 usb_set_idle_connected:
-0x7d2c 026988 jam usb_connected ,mem_usb_state 
-0x7d2d 026989 branch usb0_reply_zerolen 
-:      026991 usb_set_report:
-0x7d2e 026992 jam 1 ,mem_usb_desc 
-0x7d2f 026993 arg mem_usb_desc ,rega 
-0x7d30 026994 arg 1 ,regb 
-0x7d31 026995 branch usb0_respond 
-:      026996 usb0_force_stall:
-0x7d32 026997 hjam 1 ,core_usb_stall 
-0x7d33 026998 rtn 
-:      026999 usb0_reply_zerolen:
-0x7d34 027000 hjam 0x40 ,core_usb_clear 
-0x7d35 027001 rtn 
-:      027003 usb_rx_read:
-0x7d36 027004 hfetch 1 ,core_usb_ep 
-0x7d37 027005 istore 1 ,contw 
-0x7d38 027006 loop usb_rx_read 
-0x7d39 027007 rtn 
-:      027009 usb0_fifo_empty:
-0x7d3a 027010 hjam 0x1 ,core_usb_fifo_empty 
-0x7d3b 027011 call usb0_tx 
-0x7d3c 027012 rtn 
-:      027014 usb0_request_get_descriptor:
-0x7d3d 027015 set1 mark_ext_patch ,mark 
-0x7d3e 027016 bpatch patch3b_1 ,mem_patch3b 
-0x7d3f 027017 set0 mark_isstr ,mark 
-0x7d40 027018 fetch 1 ,mem_usb_setup_bvalueh 
-0x7d41 027019 beq dsc_device ,dsc_device_info 
-0x7d42 027020 beq dsc_config ,dsc_config_info 
-0x7d43 027021 beq dsc_string ,dsc_string_info 
-0x7d44 027022 beq dsc_hid ,dsc_hid_info 
-0x7d45 027023 beq dsc_hid_report ,dsc_hid_report_info 
-0x7d46 027024 rtn 
-:      027026 dsc_device_info:
-0x7d47 027027 arg mem_devicedesc ,rega 
-0x7d48 027028 branch usb0_respond_length 
-:      027029 dsc_config_info:
-0x7d49 027030 arg mem_confdesc ,rega 
-0x7d4a 027031 branch usb0_respond_length 
-:      027032 dsc_string_info:
-0x7d4b 027033 fetch 1 ,mem_usb_setup_bvalue 
-0x7d4c 027034 and_into 3 ,pdata 
-0x7d4d 027035 arg mem_string0 ,rega 
-0x7d4e 027036 beq 0 ,usb0_respond_length 
-0x7d4f 027037 set1 mark_isstr ,mark 
-0x7d50 027038 arg mem_string1 ,rega 
-0x7d51 027039 beq 1 ,usb0_respond_length 
-0x7d52 027040 arg mem_string2 ,rega 
-0x7d53 027041 beq 2 ,usb0_respond_length 
-0x7d54 027042 arg mem_string3 ,rega 
-0x7d55 027043 beq 3 ,usb0_respond_length 
-0x7d56 027044 branch assert 
-:      027045 dsc_hid_info:
-0x7d57 027046 arg mem_confdesc + 18 ,rega 
-0x7d58 027047 fetch 1 ,mem_confdesc + 18 
-0x7d59 027048 copy pdata ,regb 
-0x7d5a 027049 branch usb0_respond 
-:      027050 dsc_hid_report_info:
-0x7d5b 027051 fetch 2 ,mem_usb_setup_windex 
-0x7d5c 027052 beq 1 ,dsc_hid_report_info0 
-0x7d5d 027053 arg mem_hidreportdesc_kb ,rega 
-0x7d5e 027054 branch usb0_respond_length 
-:      027055 dsc_hid_report_info0:
-0x7d5f 027056 jam usb_got_report_req ,mem_usb_state 
-0x7d60 027057 arg mem_hidreportdesc_m ,rega 
-0x7d61 027058 branch usb0_respond_length 
-:      027060 usb0_respond_length:
-0x7d62 027061 ifetch 1 ,rega 
-0x7d63 027062 iforce regb 
-0x7d64 027063 increase 1 ,rega 
-:      027066 usb0_respond:
-0x7d65 027067 set1 mark_ext_patch ,mark 
-0x7d66 027068 bpatch patch3b_2 ,mem_patch3b 
-0x7d67 027069 bmark0 mark_isstr ,usb0_respond0 
-0x7d68 027070 add regb ,1 ,pdata 
-0x7d69 027071 lshift pdata ,pdata 
-0x7d6a 027072 hstore 1 ,core_usb_dfifo0 
-0x7d6b 027073 hjam 3 ,core_usb_dfifo0 
-0x7d6c 027074 fetch 1 ,mem_usb_setup_blength 
-0x7d6d 027075 increase -2 ,pdata 
-0x7d6e 027076 rshift pdata ,pdata 
-0x7d6f 027077 store 1 ,mem_usb_setup_blength 
-0x7d70 027078 beq 0 ,usb_no_respond_data 
-:      027079 usb0_respond0:
-0x7d71 027080 fetch 1 ,mem_usb_setup_blength 
-0x7d72 027081 isub regb ,null 
-0x7d73 027082 branch usb0_respond1 ,positive 
-0x7d74 027083 copy pdata ,regb 
-:      027084 usb0_respond1:
-0x7d75 027085 copy rega ,pdata 
-0x7d76 027086 store 2 ,mem_bufptr 
-0x7d77 027087 copy regb ,pdata 
-0x7d78 027088 store 1 ,mem_remain 
-0x7d79 027089 branch usb0_tx 
-:      027091 usb_no_respond_data:
-0x7d7a 027092 arg 0 ,queue 
-0x7d7b 027093 branch usb_trig 
-:      027097 usb0_tx:
-0x7d7c 027098 set1 mark_ext_patch ,mark 
-0x7d7d 027099 bpatch patch3b_3 ,mem_patch3b 
-0x7d7e 027100 fetch 1 ,mem_remain 
-0x7d7f 027101 rtn blank 
-0x7d80 027102 copy pdata ,loopcnt 
-0x7d81 027103 sub pdata ,ep0_packet_size ,null 
-0x7d82 027104 branch usb0_tx_info ,positive 
-0x7d83 027105 arg ep0_packet_size ,loopcnt 
-:      027106 usb0_tx_info:
-0x7d84 027107 fetch 1 ,mem_remain 
-0x7d85 027108 isub loopcnt ,pdata 
-0x7d86 027109 store 1 ,mem_remain 
-0x7d87 027110 fetch 2 ,mem_bufptr 
-0x7d88 027111 copy pdata ,contr 
-:      027112 usb0_tx0:
-0x7d89 027113 ifetch 1 ,contr 
-0x7d8a 027114 hstore 1 ,core_usb_dfifo0 
-0x7d8b 027115 bmark0 mark_isstr ,usb0_tx1 
-0x7d8c 027116 hjam 0 ,core_usb_dfifo0 
-:      027117 usb0_tx1:
-0x7d8d 027118 loop usb0_tx0 
-0x7d8e 027119 copy contr ,pdata 
-0x7d8f 027120 store 2 ,mem_bufptr 
-0x7d90 027121 arg 0 ,queue 
-0x7d91 027122 call usb_trig 
-0x7d92 027123 fetch 1 ,mem_remain 
-0x7d93 027124 nrtn blank 
-0x7d94 027125 fetch 1 ,mem_usb_state 
-0x7d95 027126 rtnne usb_got_report_req 
-0x7d96 027127 jam usb_connected ,mem_usb_state 
-0x7d97 027128 rtn 
-:      027131 usb0_request_set_configuration:
-0x7d98 027132 fetch 1 ,mem_usb_setup_bvalue 
-0x7d99 027133 sub pdata ,1 ,null 
-0x7d9a 027134 nbranch usb0_force_stall ,positive 
-:      027135 usb0_request_set_address:
-0x7d9b 027136 fetch 1 ,mem_usb_setup_bmrequesttype 
-0x7d9c 027137 bne in_device ,usb0_force_stall 
-0x7d9d 027138 fetch 2 ,mem_usb_setup_windex 
-0x7d9e 027139 bne 0 ,usb0_force_stall 
-0x7d9f 027140 fetch 1 ,mem_usb_setup_blength 
-0x7da0 027141 bne 0 ,usb0_force_stall 
-0x7da1 027142 branch usb0_reply_zerolen 
-:      027144 usb0_request_set_interface:
-0x7da2 027145 fetch 1 ,mem_usb_setup_bmrequesttype 
-0x7da3 027146 bne in_interface ,usb0_force_stall 
-0x7da4 027147 fetch 1 ,mem_usb_setup_bvalue 
-0x7da5 027148 bne 0 ,usb0_force_stall 
-0x7da6 027149 fetch 1 ,mem_usb_setup_bvalueh 
-0x7da7 027150 bne 0 ,usb0_force_stall 
-0x7da8 027151 fetch 1 ,mem_usb_setup_blength 
-0x7da9 027152 bne 0 ,usb0_force_stall 
-0x7daa 027153 branch usb0_reply_zerolen 
-:      027155 usb0_request_set_feature:
-0x7dab 027156 fetch 1 ,mem_usb_setup_bvalue 
-0x7dac 027157 bne 1 ,usb0_force_stall 
-0x7dad 027158 jam usb_sleep ,mem_usb_state 
-0x7dae 027159 branch usb0_reply_zerolen 
-:      027161 usb0_request_clear_feature:
-0x7daf 027162 fetch 1 ,mem_usb_setup_bvalue 
-0x7db0 027163 bne 1 ,usb0_force_stall 
-0x7db1 027164 branch usb0_reply_zerolen 
-:      027166 usb_init:
-0x7db2 027167 set1 mark_ext_patch ,mark 
-0x7db3 027168 bpatch patch3b_4 ,mem_patch3b 
-0x7db4 027169 hjam 0x00 ,core_usb_config 
-0x7db5 027170 nop 10000 
-0x7db6 027171 hjam 0xc0 ,core_usb_trig 
-0x7db7 027172 hfetch 2 ,core_clkoff 
-0x7db8 027173 set0 clock_off_usb ,pdata 
-0x7db9 027174 hstore 2 ,core_clkoff 
-0x7dba 027175 hjam 0x3c ,core_usb_config 
-0x7dbb 027176 hjam 0xff ,core_usb_status 
-0x7dbc 027177 hjam 0xff ,core_usb_fifo_empty 
-0x7dbd 027178 jam 0 ,mem_mcmd 
-0x7dbe 027179 jam 0 ,mem_usb_state 
-0x7dbf 027180 setarg 0 
-0x7dc0 027181 store 2 ,mem_usb_idle_cnt 
-0x7dc1 027182 rtn 
-:      027185 usb_tx:
-0x7dc2 027186 set1 mark_ext_patch ,mark 
-0x7dc3 027187 bpatch patch3b_5 ,mem_patch3b 
-0x7dc4 027188 fetch 1 ,mem_mcmd 
-0x7dc5 027189 rtn blank 
-0x7dc6 027190 fetch 1 ,mem_usb_state 
-0x7dc7 027191 beq usb_sleep ,usb_wakeup 
-0x7dc8 027192 rtnne usb_connected 
-0x7dc9 027193 fetch 1 ,mem_mcmd 
-0x7dca 027194 jam 0 ,mem_mcmd 
-0x7dcb 027195 arg 6 ,loopcnt 
-0x7dcc 027196 arg mem_mouse_data ,contr 
-0x7dcd 027197 beq send_kb_data_cmd ,usb_tx_ep1 
-0x7dce 027198 beq send_mouse_data_cmd ,usb_tx_ep2 
-0x7dcf 027199 branch assert 
-:      027201 usb_tx_ep1:
-0x7dd0 027202 arg core_usb_dfifo1 ,rega 
-0x7dd1 027203 arg 1 ,queue 
-:      027204 usb_tx_loop:
-0x7dd2 027205 ifetch 1 ,contr 
-0x7dd3 027206 istore 1 ,rega 
-0x7dd4 027207 loop usb_tx_loop 
-:      027208 usb_trig:
-0x7dd5 027209 set1 mark_ext_patch ,mark 
-0x7dd6 027210 bpatch patch3b_6 ,mem_patch3b 
-0x7dd7 027211 disable swfine 
-0x7dd8 027212 fetch 2 ,mem_usb_trig_timeout 
-0x7dd9 027213 iforce stop_watch 
-0x7dda 027214 hjam 0x40 ,core_usb_status 
-:      027215 usb_trig_waitnak_loop:
-0x7ddb 027216 hfetch 1 ,core_usb_status 
-0x7ddc 027217 branch usb_init ,timeout 
-0x7ddd 027218 bbit0 usb_status_nak ,usb_trig_waitnak_loop 
-0x7dde 027219 fetch 2 ,mem_usb_trig_timeout 
-0x7ddf 027220 iforce stop_watch 
-0x7de0 027221 arg 0 ,temp 
-0x7de1 027222 qset1 temp 
-0x7de2 027223 hstoret 1 ,core_usb_fifo_empty 
-:      027224 usb_trig_loop:
-0x7de3 027225 branch usb_init ,timeout 
-0x7de4 027226 hstoret 1 ,core_usb_trig 
-0x7de5 027227 hfetch 1 ,core_usb_fifo_empty 
-0x7de6 027228 qisolate0 pdata 
-0x7de7 027229 branch usb_trig_loop ,true 
-0x7de8 027230 rtn 
-:      027233 usb_tx_ep2:
-0x7de9 027234 arg 2 ,queue 
-0x7dea 027235 arg core_usb_dfifo2 ,rega 
-0x7deb 027236 branch usb_tx_loop 
-:      027239 usb_wakeup:
-0x7dec 027240 set1 mark_ext_patch ,mark 
-0x7ded 027241 bpatch patch3b_7 ,mem_patch3b 
-0x7dee 027242 hjam 0xfc ,core_usb_config 
-0x7def 027243 nop 10000 
-0x7df0 027244 hjam 0x3c ,core_usb_config 
-0x7df1 027245 jam usb_resume ,mem_usb_state 
-0x7df2 027246 rtn 
-:      027248 usb_tx_test:
-0x7df3 027249 fetch 1 ,mem_mcmd 
-0x7df4 027250 nrtn blank 
-0x7df5 027251 fetch 2 ,mem_usb_cnt 
-0x7df6 027252 rtn blank 
-0x7df7 027253 increase -1 ,pdata 
-0x7df8 027254 store 2 ,mem_usb_cnt 
-0x7df9 027255 jam send_mouse_data_cmd ,mem_mcmd 
-0x7dfa 027256 rtn 
-:      027259 right_shift_n:
-0x7dfb 027260 sub loopcnt ,0 ,null 
-0x7dfc 027261 rtn zero 
-:      027262 right_shift_n_loop:
-0x7dfd 027263 rshift pdata ,pdata 
-0x7dfe 027264 loop right_shift_n_loop 
-0x7dff 027265 rtn 
-:      027267 push_stack:
-0x7e00 027268 deposit contw 
-0x7e01 027269 store 2 ,mem_contw 
-0x7e02 027270 storet 8 ,mem_temp 
-0x7e03 027271 deposit timeup 
-0x7e04 027272 store 4 ,mem_timeup 
-0x7e05 027273 deposit rega 
-0x7e06 027274 store 4 ,mem_rega 
-0x7e07 027275 deposit regb 
-0x7e08 027276 store 4 ,mem_regb 
-0x7e09 027277 deposit regc 
-0x7e0a 027278 store 3 ,mem_regc 
-0x7e0b 027279 deposit contr 
-0x7e0c 027280 store 2 ,mem_contr 
-0x7e0d 027281 rtn 
-:      027282 pop_stack:
-0x7e0e 027283 fetcht 8 ,mem_temp 
-0x7e0f 027284 fetch 4 ,mem_timeup 
-0x7e10 027285 iforce timeup 
-0x7e11 027286 fetch 4 ,mem_rega 
-0x7e12 027287 iforce rega 
-0x7e13 027288 fetch 4 ,mem_regb 
-0x7e14 027289 iforce regb 
-0x7e15 027290 fetch 3 ,mem_regc 
-0x7e16 027291 iforce regc 
-0x7e17 027292 fetch 2 ,mem_contw 
-0x7e18 027293 iforce contw 
-0x7e19 027294 fetch 2 ,mem_contr 
-0x7e1a 027295 iforce contr 
-0x7e1b 027296 rtn 
-:      027302 save_cont_pointers:
-0x7e1c 027303 copy contw ,pdata 
-0x7e1d 027304 store 2 ,mem_hold_contw 
-0x7e1e 027305 copy contr ,pdata 
-0x7e1f 027306 store 2 ,mem_hold_contr 
-0x7e20 027307 rtn 
-:      027308 load_cont_pointers:
-0x7e21 027309 fetch 2 ,mem_hold_contw 
-0x7e22 027310 copy pdata ,contw 
-0x7e23 027311 fetch 2 ,mem_hold_contr 
-0x7e24 027312 copy pdata ,contr 
-0x7e25 027313 rtn 
-:      027317 delay_10ms:
-0x7e26 027318 copy clkn_bt ,pdata 
-0x7e27 027319 increase 16 ,pdata 
-0x7e28 027320 increase 16 ,pdata 
-:      027321 delay_ms_wait:
-0x7e29 027322 copy clkn_bt ,temp 
-0x7e2a 027323 isub temp ,null 
-0x7e2b 027324 branch delay_ms_wait ,positive 
-0x7e2c 027325 rtn 
-:      027327 memcpy48:
-0x7e2d 027328 ifetch 8 ,contr 
-0x7e2e 027329 istore 8 ,contw 
-0x7e2f 027330 ifetch 8 ,contr 
-0x7e30 027331 istore 8 ,contw 
-:      027332 memcpy32:
-0x7e31 027333 ifetch 8 ,contr 
-0x7e32 027334 istore 8 ,contw 
-:      027335 memcpy24:
-0x7e33 027336 ifetch 8 ,contr 
-0x7e34 027337 istore 8 ,contw 
-:      027338 memcpy16:
-0x7e35 027339 ifetch 8 ,contr 
-0x7e36 027340 istore 8 ,contw 
-0x7e37 027341 ifetch 8 ,contr 
-0x7e38 027342 istore 8 ,contw 
-0x7e39 027343 rtn 
-:      027345 bn_zero:
-0x7e3a 027346 force 3 ,loopcnt 
-:      027347 memset0:
-0x7e3b 027348 force 0 ,pdata 
-:      027349 memset8:
-0x7e3c 027350 istore 8 ,contw 
-0x7e3d 027351 loop memset8 
-0x7e3e 027352 rtn 
-:      027355 clear_mem:
-0x7e3f 027356 deposit loopcnt 
-0x7e40 027357 rtn blank 
-0x7e41 027358 setarg 0 
-:      027359 clear_mem_loop:
-0x7e42 027360 istore 1 ,contw 
-0x7e43 027361 loop clear_mem_loop 
-0x7e44 027362 rtn 
-:      027366 memcpy:
-0x7e45 027367 deposit loopcnt 
-0x7e46 027368 rtn blank 
-:      027369 memcpy_loop:
-0x7e47 027370 ifetch 1 ,contr 
-0x7e48 027371 istore 1 ,contw 
-0x7e49 027372 loop memcpy_loop 
-0x7e4a 027373 rtn 
-:      027375 timer_stop:
-0x7e4b 027376 setarg 0 
-:      027377 timer_init:
-0x7e4c 027378 arg mem_timers ,contw 
-0x7e4d 027379 iforce temp 
-0x7e4e 027380 lshift queue ,pdata 
-0x7e4f 027381 iadd contw ,contw 
-0x7e50 027382 istoret 2 ,contw 
-0x7e51 027383 rtn 
-:      027385 timer_reinit:
-0x7e52 027386 arg 0 ,queue 
-:      027387 timer_check:
-0x7e53 027388 set1 mark_ext_patch ,mark 
-0x7e54 027389 bpatch patch37_4 ,mem_patch37 
-0x7e55 027390 fetcht 4 ,mem_last_clkn 
-0x7e56 027391 rshift clkn_bt ,pdata 
-0x7e57 027392 store 4 ,mem_last_clkn 
-0x7e58 027393 isub temp ,timeup 
-0x7e59 027394 copy timeup ,temp 
-0x7e5a 027395 arg mem_timers ,contr 
-0x7e5b 027396 copy contr ,contw 
-0x7e5c 027397 arg 16 ,loopcnt 
-:      027398 timer_loop:
-0x7e5d 027399 ifetch 2 ,contr 
-0x7e5e 027400 isub temp ,pdata 
-0x7e5f 027401 branch timer_counting ,positive 
-0x7e60 027402 force 0 ,pdata 
-:      027403 timer_counting:
-0x7e61 027404 istore 2 ,contw 
-0x7e62 027405 loop timer_loop 
-0x7e63 027406 arg mem_timers ,contr 
-0x7e64 027407 lshift queue ,pdata 
-0x7e65 027408 iadd contr ,contr 
-0x7e66 027409 ifetch 2 ,contr 
-0x7e67 027410 rtn 
-:      027413 lshift8_queue:
-0x7e68 027414 increase 1 ,queue 
-:      027415 lshift8_queue_loop:
-0x7e69 027416 increase -1 ,queue 
-0x7e6a 027417 rtn zero 
-0x7e6b 027418 lshift8 pdata ,pdata 
-0x7e6c 027419 branch lshift8_queue_loop 
-:      027423 clk_add:
-0x7e6d 027424 iadd temp ,temp 
-0x7e6e 027425 copy temp ,loopcnt 
-0x7e6f 027426 setarg 3750 
-0x7e70 027427 isub loopcnt ,pdata 
-0x7e71 027428 rtn positive 
-0x7e72 027429 sub pdata ,0 ,pdata 
-0x7e73 027430 rshift16 temp ,temp 
-0x7e74 027431 increase 1 ,temp 
-0x7e75 027432 lshift16 temp ,temp 
-0x7e76 027433 ior temp ,temp 
-0x7e77 027434 rtn 
-:      027436 clk_diff_rt:
-0x7e78 027437 call clk_diff 
-0x7e79 027438 branch clk2rt 
-:      027441 clk_diff:
-0x7e7a 027442 disable user 
-0x7e7b 027443 isub temp ,pdata 
-0x7e7c 027444 branch clk_diff_pos ,positive 
-0x7e7d 027445 enable user 
-0x7e7e 027446 sub pdata ,0 ,pdata 
-:      027447 clk_diff_pos:
-0x7e7f 027448 rtnbit0 15 
-0x7e80 027449 arg -61786 ,temp 
-0x7e81 027450 iadd temp ,pdata 
-0x7e82 027451 set0 64 ,pdata 
-0x7e83 027452 rtn 
-:      027454 clk2rt:
-0x7e84 027455 iforce contr 
-0x7e85 027456 rshift16 pdata ,pdata 
-0x7e86 027457 arg 3750 ,temp 
-0x7e87 027458 imul32 temp ,pdata 
-0x7e88 027459 iadd contr ,pdata 
-0x7e89 027460 rtn 
-:      027463 clk2lpo:
-0x7e8a 027464 lshift8 pdata ,pdata 
-0x7e8b 027465 lshift4 pdata ,pdata 
-0x7e8c 027466 fetcht 3 ,mem_clks_per_lpo 
-0x7e8d 027467 idiv temp 
-0x7e8e 027468 call wait_div_end 
-0x7e8f 027469 quotient temp 
-0x7e90 027470 rtn 
-:      027473 clk2bt:
-0x7e91 027474 arg 3750 ,temp 
-0x7e92 027475 idiv temp 
-0x7e93 027476 call wait_div_end 
-0x7e94 027477 quotient pdata 
-0x7e95 027478 lshift16 pdata ,pdata 
-0x7e96 027479 remainder temp 
-0x7e97 027480 ior temp ,temp 
-0x7e98 027481 rtn 
-:      027484 mem3_hex2string_to_uart:
-0x7e99 027485 arg 3 ,loopcnt 
-0x7e9a 027486 branch hex2string_to_uart0 
-:      027487 mem2_hex2string_to_uart:
-0x7e9b 027488 arg 2 ,loopcnt 
-0x7e9c 027489 branch hex2string_to_uart0 
-:      027493 adss_hex2string_to_uart:
-0x7e9d 027494 arg 6 ,loopcnt 
-:      027495 hex2string_to_uart0:
-0x7e9e 027496 ifetch 1 ,rega 
-0x7e9f 027497 copy pdata ,temp 
-0x7ea0 027498 rshift4 pdata ,pdata 
-0x7ea1 027499 call dialog2uchar 
-0x7ea2 027500 istore 1 ,contwu 
-0x7ea3 027501 copy temp ,pdata 
-0x7ea4 027502 and pdata ,0xf ,pdata 
-0x7ea5 027503 call dialog2uchar 
-0x7ea6 027504 istore 1 ,contwu 
-0x7ea7 027505 increase 1 ,rega 
-0x7ea8 027506 loop hex2string_to_uart0 
-0x7ea9 027507 rtn 
-:      027508 dialog2uchar:
-0x7eaa 027509 sub pdata ,9 ,null 
-0x7eab 027510 branch dialog2uchar0to9 ,positive 
-0x7eac 027511 increase 87 ,pdata 
-0x7ead 027512 rtn 
-:      027513 dialog2uchar0to9:
-0x7eae 027514 add pdata ,0x30 ,pdata 
-0x7eaf 027515 rtn 
-:      027521 string2dec_from_uart:
-0x7eb0 027522 arg 0 ,temp 
-:      027523 string2dec_from_uart_done:
-0x7eb1 027524 copy temp ,regc 
-0x7eb2 027525 ifetch 1 ,contru 
-0x7eb3 027526 sub pdata ,at_comma ,null 
-0x7eb4 027527 rtn zero 
-0x7eb5 027528 call uchar2dialog 
-0x7eb6 027529 copy regc ,temp 
-0x7eb7 027530 call swap 
-0x7eb8 027531 arg 10 ,regb 
-0x7eb9 027532 imul32 regb ,pdata 
-0x7eba 027533 iadd temp ,pdata 
-0x7ebb 027534 copy pdata ,temp 
-0x7ebc 027535 branch string2dec_from_uart_done 
-:      027538 mem2_string2hex_from_uart:
-0x7ebd 027539 arg 2 ,loopcnt 
-0x7ebe 027540 branch string2hex_from_uart 
-:      027541 adss_string2hex_from_uart:
-0x7ebf 027542 arg 6 ,loopcnt 
-:      027546 string2hex_from_uart:
-0x7ec0 027547 ifetch 1 ,contru 
-0x7ec1 027548 call uchar2dialog 
-0x7ec2 027549 lshift4 pdata ,regc 
-0x7ec3 027550 ifetch 1 ,contru 
-0x7ec4 027551 call uchar2dialog 
-0x7ec5 027552 iadd regc ,pdata 
-0x7ec6 027553 istore 1 ,contw 
-0x7ec7 027554 loop string2hex_from_uart 
-0x7ec8 027555 rtn 
-:      027557 uchar2dialog:
-0x7ec9 027558 arg 0x3a ,temp 
-0x7eca 027559 isub temp ,null 
-0x7ecb 027560 nbranch uchar2dialog_number ,positive 
-0x7ecc 027561 arg 0x61 ,temp 
-0x7ecd 027562 isub temp ,null 
-0x7ece 027563 branch uchar2dialog_a2f ,positive 
-0x7ecf 027564 arg 0x37 ,temp 
-0x7ed0 027565 isub temp ,pdata 
-0x7ed1 027566 rtn 
-:      027567 uchar2dialog_number:
-0x7ed2 027568 arg 0x30 ,temp 
-0x7ed3 027569 isub temp ,pdata 
-0x7ed4 027570 rtn 
-:      027571 uchar2dialog_a2f:
-0x7ed5 027572 arg 0x57 ,temp 
-0x7ed6 027573 isub temp ,pdata 
-0x7ed7 027574 rtn 
-:      027576 pn9:
-0x7ed8 027577 copy temp ,alarm 
-0x7ed9 027578 setarg 0x1ff 
-0x7eda 027579 force 0 ,regb 
-:      027580 pn9_loop:
-0x7edb 027581 rshift3 pdata ,rega 
-0x7edc 027582 rshift rega ,rega 
-0x7edd 027583 ixor rega ,rega 
-0x7ede 027584 isolate1 0 ,rega 
-0x7edf 027585 setflag true ,9 ,pdata 
-0x7ee0 027586 rshift temp ,temp 
-0x7ee1 027587 isolate1 0 ,pdata 
-0x7ee2 027588 setflag true ,7 ,temp 
-0x7ee3 027589 rshift pdata ,pdata 
-0x7ee4 027590 increase 1 ,regb 
-0x7ee5 027591 compare 0 ,regb ,0x7 
-0x7ee6 027592 nbranch pn9_loop ,true 
-0x7ee7 027593 istoret 1 ,contw 
-0x7ee8 027594 loop pn9_loop 
-0x7ee9 027595 copy alarm ,temp 
-0x7eea 027596 rtn 
-:      027598 bcd_byte:
-0x7eeb 027599 div pdata ,10 
-0x7eec 027600 call wait_div_end 
-0x7eed 027601 quotient pdata 
-0x7eee 027602 lshift2 pdata ,rega 
-0x7eef 027603 lshift2 rega ,rega 
-0x7ef0 027604 remainder pdata 
-0x7ef1 027605 ior rega ,pdata 
-0x7ef2 027606 rtn 
-:      027608 bcd_pack:
-0x7ef3 027609 isolate1 0 ,rega 
-0x7ef4 027610 branch bcd_pack_hi ,true 
-0x7ef5 027611 iforce regb 
-0x7ef6 027612 rtn 
-:      027613 bcd_pack_hi:
-0x7ef7 027614 lshift2 pdata ,pdata 
-0x7ef8 027615 lshift2 pdata ,pdata 
-0x7ef9 027616 ior regb ,pdata 
-0x7efa 027617 istore 1 ,contw 
-0x7efb 027618 increase -2 ,contw 
-0x7efc 027619 rtn 
-:      027621 wait_div_end:
-0x7efd 027622 rtn modone 
-0x7efe 027623 branch wait_div_end 
-:      027626 bcd2:
-0x7eff 027627 store 8 ,mem_pdatatemp 
-0x7f00 027628 force 0x20 ,pdata 
-0x7f01 027629 force 8 ,loopcnt 
-0x7f02 027630 arg mem_bcd ,contw 
-:      027631 lpo_clear:
-0x7f03 027632 istore 1 ,contw 
-0x7f04 027633 loop lpo_clear 
-0x7f05 027634 arg mem_bcd ,contw 
-0x7f06 027635 increase 7 ,contw 
-0x7f07 027636 fetch 8 ,mem_pdatatemp 
-:      027637 bcd_loop:
-0x7f08 027638 div pdata ,10 
-0x7f09 027639 call wait_div_end 
-0x7f0a 027640 remainder pdata 
-0x7f0b 027641 or_into 0x30 ,pdata 
-0x7f0c 027642 istore 1 ,contw 
-0x7f0d 027643 increase -2 ,contw 
-0x7f0e 027644 quotient pdata 
-0x7f0f 027645 rtn blank 
-0x7f10 027646 branch bcd_loop 
-:      027651 bcd:
-0x7f11 027652 store 8 ,mem_pdatatemp 
-0x7f12 027653 force 0 ,pdata 
-0x7f13 027654 store 8 ,mem_bcd 
-0x7f14 027655 arg mem_bcd ,contw 
-0x7f15 027656 increase 7 ,contw 
-0x7f16 027657 fetch 8 ,mem_pdatatemp 
-0x7f17 027658 force 0 ,rega 
-:      027659 bcd_pack_loop:
-0x7f18 027660 div pdata ,10 
-0x7f19 027661 call wait_div_end 
-0x7f1a 027662 remainder pdata 
-0x7f1b 027663 call bcd_pack 
-0x7f1c 027664 increase 1 ,rega 
-0x7f1d 027665 quotient pdata 
-0x7f1e 027666 sub pdata ,9 ,null 
-0x7f1f 027667 nbranch bcd_pack_loop ,positive 
-0x7f20 027668 call bcd_pack 
-0x7f21 027669 isolate1 0 ,rega 
-0x7f22 027670 rtn true 
-0x7f23 027671 istore 1 ,contw 
-0x7f24 027672 rtn 
-:      027680 string_compare:
-0x7f25 027681 ifetch 1 ,rega 
-0x7f26 027682 ifetcht 1 ,regb 
-0x7f27 027683 isub temp ,null 
-0x7f28 027684 nrtn zero 
-0x7f29 027685 increase 1 ,rega 
-0x7f2a 027686 increase 1 ,regb 
-0x7f2b 027687 loop string_compare 
-0x7f2c 027688 force 0 ,null 
-0x7f2d 027689 rtn 
-:      027692 ceiling:
-0x7f2e 027693 isub temp ,null 
-0x7f2f 027694 nrtn positive 
-0x7f30 027695 deposit temp 
-0x7f31 027696 rtn 
-:      027698 swap:
-0x7f32 027699 iadd temp ,pdata 
-0x7f33 027700 isub temp ,temp 
-0x7f34 027701 isub temp ,pdata 
-0x7f35 027702 rtn 
-:      027704 clean_mem:
-0x7f36 027705 arg 0x200 ,loopcnt 
-0x7f37 027706 arg 0x4000 ,contw 
-0x7f38 027707 branch memset0 
-:      027709 slave_savelist:
-0x7f39 027710 fetch 5 ,mem_sync_clke 
-0x7f3a 027711 store 5 ,mem_pdatatemp 
-0x7f3b 027712 fetch 2 ,mem_clks_per_lpo 
-0x7f3c 027713 istore 2 ,contw 
-0x7f3d 027714 setarg 0 
-0x7f3e 027715 setflag match ,7 ,pdata 
-0x7f3f 027716 setflag wake ,6 ,pdata 
-0x7f40 027717 setflag sync ,5 ,pdata 
-0x7f41 027718 setflag attempt ,4 ,pdata 
-0x7f42 027719 istore 1 ,contw 
-0x7f43 027720 branch savelist_2 
-:      027723 le_savelist:
-0x7f44 027724 fetch 5 ,mem_sync_clke 
-0x7f45 027725 store 5 ,mem_pdatatemp 
-0x7f46 027726 fetch 1 ,mem_le_ch_mapped 
-0x7f47 027727 istore 1 ,contw 
-0x7f48 027728 fetch 2 ,mem_le_event_count 
-0x7f49 027729 arg 0x0fff ,contr 
-0x7f4a 027730 iand contr ,pdata 
-0x7f4b 027731 setflag match ,15 ,pdata 
-0x7f4c 027732 setflag wake ,14 ,pdata 
-0x7f4d 027733 setflag sync ,13 ,pdata 
-0x7f4e 027734 setflag attempt ,12 ,pdata 
-0x7f4f 027735 istore 2 ,contw 
-0x7f50 027736 branch savelist_2 
-:      027737 savelist:
-0x7f51 027738 store 8 ,mem_pdatatemp 
-:      027739 savelist_2:
-0x7f52 027740 fetch 1 ,mem_seqi 
-0x7f53 027741 rtneq 0x7f 
-0x7f54 027742 and_into 0x7f ,pdata 
-0x7f55 027743 lshift3 pdata ,pdata 
-0x7f56 027744 arg mem_savelist ,contw 
-0x7f57 027745 iadd contw ,contw 
-0x7f58 027746 fetch 8 ,mem_pdatatemp 
-0x7f59 027747 istore 8 ,contw 
-0x7f5a 027748 fetch 1 ,mem_seqi 
-0x7f5b 027749 isolate1 7 ,pdata 
-0x7f5c 027750 increase 1 ,pdata 
-0x7f5d 027751 and_into 0x7f ,pdata 
-0x7f5e 027752 setflag true ,7 ,pdata 
-0x7f5f 027753 store 1 ,mem_seqi 
-0x7f60 027754 fetch 8 ,mem_pdatatemp 
-0x7f61 027755 rtn 
-:      027757 dirty_mem:
-0x7f62 027758 arg 0x800 ,loopcnt 
-0x7f63 027759 arg 0 ,contw 
-0x7f64 027760 setarg 0x01010101 
-0x7f65 027761 branch memset8 
-:      027764 callback_func:
-0x7f66 027765 rtn blank 
-0x7f67 027766 copy pdata ,pc 
-:      027769 wait_uarttx:
-0x7f68 027770 hfetch 2 ,core_uart_txitems 
-0x7f69 027771 nbranch wait_uarttx ,blank 
-0x7f6a 027772 rtn 
-:      027774 get_uart_rrptr:
-0x7f6b 027775 hfetch 2 ,core_uart_rrptr 
-0x7f6c 027776 copy pdata ,contru 
-0x7f6d 027777 rtn 
-:      027779 get_uart_twptr:
-0x7f6e 027780 hfetch 2 ,core_uart_twptr 
-0x7f6f 027781 copy pdata ,contwu 
-0x7f70 027782 rtn 
-:      027784 send_mem_to_uart:
-0x7f71 027785 copy contr ,rega 
-0x7f72 027786 call get_uart_twptr 
-0x7f73 027787 copy rega ,contr 
-:      027788 send_mem_to_uart0:
-0x7f74 027789 call uart_copy_tx_bytes 
-0x7f75 027790 call uartd_send 
-0x7f76 027791 branch wait_uarttx 
-:      027793 ice_break:
-0x7f77 027794 hjam 0x1 ,core_ice_ctrl 
-0x7f78 027795 rtn 
-:      027797 ice_setbp:
-0x7f79 027798 hstore 2 ,core_ice_break0 
-0x7f7a 027799 hfetch 1 ,core_ice_ctrl 
-0x7f7b 027800 set1 4 ,pdata 
-0x7f7c 027801 hstore 1 ,core_ice_ctrl 
-0x7f7d 027802 rtn 
-:      027803 ice_setbp2:
-0x7f7e 027804 hstore 2 ,core_ice_break1 
-0x7f7f 027805 hfetch 1 ,core_ice_ctrl 
-0x7f80 027806 set1 6 ,pdata 
-0x7f81 027807 hstore 1 ,core_ice_ctrl 
-0x7f82 027808 rtn 
-:      027810 ice_set_write_bp:
-0x7f83 027811 hstore 2 ,core_ice_break0 
-0x7f84 027812 hjam 0x30 ,core_ice_ctrl 
-0x7f85 027813 rtn 
-:      027815 test_no_white:
-0x7f86 027816 hfetch 1 ,core_config 
-0x7f87 027817 set1 whiteoff_bit ,pdata 
-0x7f88 027818 hstore 1 ,core_config 
-0x7f89 027819 rtn 
-:      027821 test_enable_white:
-0x7f8a 027822 hfetch 1 ,core_config 
-0x7f8b 027823 set0 whiteoff_bit ,pdata 
-0x7f8c 027824 hstore 1 ,core_config 
-0x7f8d 027825 rtn 
-:      027827 check_uart_tx_buff:
-0x7f8e 027828 hfetch 2 ,core_uart_txitems 
-0x7f8f 027829 arg uart_air_control_threshold ,temp 
-:      027830 pdata_sub_temp:
-0x7f90 027831 isub temp ,null 
-0x7f91 027832 rtn 
-:      027838 fifo_in:
-0x7f92 027839 set1 mark_ext_patch ,mark 
-0x7f93 027840 bpatch patch37_5 ,mem_patch37 
-0x7f94 027841 ifetcht util_fifo_len ,rega 
-0x7f95 027842 and temp ,0xff ,pdata 
-0x7f96 027843 nbranch fifo_in_push ,blank 
-0x7f97 027844 rshift8 temp ,pdata 
-0x7f98 027845 istore util_fifo_len ,rega 
-:      027846 fifo_in_push:
-0x7f99 027847 increase util_fifo_len + util_fifo_offset ,rega 
-0x7f9a 027848 ifetch 1 ,rega 
-0x7f9b 027849 nbranch assert ,blank 
-0x7f9c 027850 fetch 1 ,mem_fifo_temp 
-0x7f9d 027851 istore 1 ,rega 
-0x7f9e 027852 rtn 
-:      027857 fifo_out:
-0x7f9f 027858 set1 mark_ext_patch ,mark 
-0x7fa0 027859 bpatch patch37_6 ,mem_patch37 
-0x7fa1 027860 arg util_fifo_len ,loopcnt 
-0x7fa2 027861 ifetch util_fifo_len ,rega 
-0x7fa3 027862 rtn blank 
-:      027863 fifo_out_loop:
-0x7fa4 027864 ifetch 1 ,rega 
-0x7fa5 027865 nbranch fifo_out_end ,blank 
-0x7fa6 027866 increase 1 ,rega 
-0x7fa7 027867 loop fifo_out_loop 
-0x7fa8 027868 branch assert 
-:      027869 fifo_out_end:
-0x7fa9 027870 arg 0 ,temp 
-0x7faa 027871 istoret 1 ,rega 
-0x7fab 027872 rtn 
-:      027877 fifo_is_empty:
-0x7fac 027878 ifetch util_fifo_len ,rega 
-0x7fad 027879 rtn 
-:      027884 fifo_is_full:
-0x7fae 027885 ifetch 1 ,rega 
-0x7faf 027886 rtn 
-:      027889 fifo_is_near_full:
-0x7fb0 027890 ifetch 2 ,rega 
-0x7fb1 027891 rtn 
-:      027895 fifo_content_count:
-0x7fb2 027896 arg 0 ,temp 
-:      027897 fifo_content_count_loop:
-0x7fb3 027898 fetch 1 ,contr 
-0x7fb4 027899 loop fifo_content_count_loop ,blank 
-0x7fb5 027900 increase 1 ,temp 
-0x7fb6 027901 loop fifo_content_count_loop 
-0x7fb7 027902 copy temp ,pdata 
-0x7fb8 027903 rtn 
-:      027905 not_greater_than:
-0x7fb9 027906 isub temp ,null 
-0x7fba 027907 nrtn positive 
-0x7fbb 027908 copy temp ,pdata 
-0x7fbc 027909 rtn 
+:      001367 start:
+0x3000 001368 call lpmstate 
+:      001371 soft_reset:
+0x3001 001372 set0 mark_ext_patch ,mark 
+0x3002 001373 bpatch patch00_0 ,mem_patch00 
+0x3003 001374 clear_stack 
+0x3004 001375 call initialize_radio 
+0x3005 001376 call iicd_init_12m 
+0x3006 001377 call init_param 
+0x3007 001378 call l2cap_init 
+0x3008 001379 set0 mark_ext_patch ,mark 
+0x3009 001380 bpatch patch00_1 ,mem_patch00 
+0x300a 001381 call rfcomm_init 
+0x300b 001382 call init_lmp 
+0x300c 001383 call ui_init 
+0x300d 001384 call app_init 
+0x300e 001385 set0 mark_ext_patch ,mark 
+0x300f 001386 bpatch patch00_2 ,mem_patch00 
+0x3010 001387 call app_lpm_init ,wake 
+0x3011 001388 call sp_initialize 
+0x3012 001389 call lpm_recover_clk ,wake 
+:      001390 main_loop:
+0x3013 001391 set0 mark_ext_patch ,mark 
+0x3014 001392 bpatch patch00_3 ,mem_patch00 
+0x3015 001393 call sp_calc_sequence 
+0x3016 001394 call le_dispatch 
+0x3017 001395 call hci_dispatch 
+0x3018 001396 set0 mark_ext_patch ,mark 
+0x3019 001397 bpatch patch00_4 ,mem_patch00 
+0x301a 001398 call idle_dispatch 
+0x301b 001399 call app_process_idle 
+0x301c 001400 call inquiry_dispatch 
+0x301d 001401 set0 mark_ext_patch ,mark 
+0x301e 001402 bpatch patch00_5 ,mem_patch00 
+0x301f 001403 call inquiry_scan_dispatch 
+0x3020 001404 call page_scan_dispatch 
+0x3021 001405 call connection_dispatch 
+0x3022 001406 call lpm_dispatch 
+0x3023 001407 branch main_loop 
+:      001409 connection_dispatch:
+0x3024 001410 call connection_incontext 
+0x3025 001411 rtnmark0 mark_context 
+0x3026 001412 set0 mark_context ,mark 
+0x3027 001413 call context_save 
+0x3028 001414 branch le_disable 
+:      001416 connection_incontext:
+0x3029 001417 set0 mark_ext_patch ,mark 
+0x302a 001418 bpatch patch00_6 ,mem_patch00 
+0x302b 001419 call context_search_insniff 
+0x302c 001420 nbranch connection_nosniff ,zero 
+0x302d 001421 call context_load 
+0x302e 001422 add rega ,coffset_mode ,contr 
+0x302f 001423 ifetch 1 ,contr 
+0x3030 001424 bbit1 mode_le ,le_conn_dispatch 
+0x3031 001425 bbit1 mode_master ,master_dispatch 
+0x3032 001426 branch slave_dispatch 
+:      001427 connection_nosniff:
+0x3033 001428 set0 mark_ext_patch ,mark 
+0x3034 001429 bpatch patch00_7 ,mem_patch00 
+0x3035 001430 call context_get_next 
+0x3036 001431 copy loopcnt ,null 
+0x3037 001432 rtn zero 
+0x3038 001433 call context_load 
+0x3039 001434 fetch 1 ,mem_state 
+0x303a 001435 bbit1 state_inpage ,master_page 
+0x303b 001436 fetch 1 ,mem_mode 
+0x303c 001437 bbit1 mode_master ,master_dispatch 
+0x303d 001438 branch slave_dispatch 
+:      001446 idle_dispatch:
+0x303e 001447 fetch 1 ,mem_hci_cmd 
+0x303f 001448 rtn blank 
+0x3040 001449 beq hci_cmd_inquiry ,idle_inquiry 
+0x3041 001450 beq hci_cmd_inquiry_cancel ,idle_inquiry_cancel 
+0x3042 001451 beq hci_cmd_remote_name_req ,idle_remote_name_req 
+0x3043 001452 beq hci_cmd_create_conn ,idle_create_conn 
+0x3044 001453 beq hci_cmd_le_create_conn ,idle_le_create_conn 
+0x3045 001454 call context_search_conn_handle 
+0x3046 001455 rtn zero 
+0x3047 001456 call context_search_plap 
+0x3048 001457 rtn zero 
+:      001458 idle_exit:
+0x3049 001459 jam 0 ,mem_hci_cmd 
+0x304a 001460 rtn 
+:      001462 idle_le_create_conn:
+0x304b 001463 jam hci_cmd_le_create_conn ,mem_cmd_le_create_conn 
+0x304c 001464 jam 0 ,mem_hci_cmd 
+0x304d 001465 rtn 
+:      001467 idle_inquiry:
+0x304e 001468 set1 mark_inquiry_on ,mark 
+0x304f 001469 set0 mark_inquiry_trainb ,mark 
+0x3050 001470 jam param_ninquiry ,mem_ninqy_index 
+0x3051 001471 jam 31 ,mem_nfreq_index_inq 
+0x3052 001472 branch idle_exit 
+:      001474 idle_inquiry_cancel:
+0x3053 001475 set0 mark_inquiry_on ,mark 
+0x3054 001476 force 0 ,stop_watch 
+0x3055 001477 branch idle_exit 
+:      001479 idle_remote_name_req:
+0x3056 001480 call context_search_plap 
+0x3057 001481 rtn zero 
+0x3058 001482 force lmp_name_req ,temp 
+0x3059 001483 jam 5 ,mem_nameres_cnt 
+0x305a 001484 branch idle_start_page 
+:      001486 idle_create_conn:
+0x305b 001487 set0 mark_ext_patch ,mark 
+0x305c 001488 bpatch patch01_0 ,mem_patch01 
+0x305d 001489 fetch 1 ,mem_device_option 
+0x305e 001490 beq dvc_op_hci ,idle_create_conn_hci 
+:      001491 idle_create_conn_device:
+0x305f 001492 fetch 6 ,mem_hci_plap 
+0x3060 001493 branch idle_exit ,blank 
+0x3061 001494 jam reconnect_hid ,memui_reconnect_mode 
+0x3062 001496 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x3063 001497 branch idle_create_conn_cont 
+:      001499 idle_create_conn_hci:
+0x3064 001500 fetch 6 ,mem_hci_plap 
+0x3065 001501 branch idle_exit ,blank 
+0x3066 001502 store 6 ,mem_plap 
+:      001503 idle_create_conn_cont:
+0x3067 001504 force lmp_version_req ,temp 
+:      001505 idle_start_page:
+0x3068 001506 set0 mark_ext_patch ,mark 
+0x3069 001507 bpatch patch01_1 ,mem_patch01 
+0x306a 001508 fetch 1 ,mem_page_mode 
+0x306b 001509 branch idle_page_mode_r0 ,blank 
+0x306c 001510 lshift3 pdata ,pdata 
+0x306d 001511 lshift4 pdata ,pdata 
+0x306e 001512 increase -1 ,pdata 
+:      001513 idle_page_mode_r0:
+0x306f 001514 store 1 ,mem_npage 
+0x3070 001515 store 1 ,mem_npage_index 
+0x3071 001516 jam 31 ,mem_nfreq_index_page 
+0x3072 001517 set0 mark_page_trainb ,mark 
+0x3073 001518 call context_new 
+0x3074 001519 nbranch idle_page_fail ,zero 
+0x3075 001520 call get_free_amaddr 
+0x3076 001521 store 1 ,mem_amaddr 
+0x3077 001522 storet 1 ,mem_lmo_opcode2 
+0x3078 001523 fetch 6 ,mem_hci_plap 
+0x3079 001524 store 6 ,mem_plap 
+0x307a 001525 set0 mark_ext_patch ,mark 
+0x307b 001526 bpatch patch01_2 ,mem_patch01 
+0x307c 001527 force 0 ,pdata 
+0x307d 001528 compare lmp_name_req ,temp ,0xff 
+0x307e 001529 nsetflag true ,state_init_seq ,pdata 
+0x307f 001530 set1 state_inpage ,pdata 
+0x3080 001531 store 1 ,mem_state 
+0x3081 001532 jam bt_evt_reconn_started ,mem_fifo_temp 
+0x3082 001533 call ui_ipc_send_event 
+0x3083 001534 force 0 ,pdata 
+0x3084 001535 setflag true ,smap_name_req ,pdata 
+0x3085 001536 store 1 ,mem_state_map 
+0x3086 001537 setarg 0 
+0x3087 001538 set1 mode_master ,pdata 
+0x3088 001539 store 1 ,mem_mode 
+0x3089 001540 enable master 
+0x308a 001541 call context_save 
+0x308b 001542 disable master 
+0x308c 001543 force page_length_timer ,queue 
+0x308d 001544 fetch 2 ,mem_page_to 
+0x308e 001545 call timer_init 
+0x308f 001546 branch idle_exit 
+:      001547 idle_page_fail:
+0x3090 001548 set0 mark_ext_patch ,mark 
+0x3091 001549 bpatch patch01_3 ,mem_patch01 
+0x3092 001550 fetch 6 ,mem_hci_plap 
+0x3093 001551 store 6 ,mem_plap 
+0x3094 001552 compare lmp_name_req ,temp ,0xff 
+0x3095 001553 branch idle_name_fail ,true 
+0x3096 001554 force hci_error_memory_full ,temp 
+0x3097 001555 call hci_send_connection_error 
+0x3098 001556 branch idle_exit 
+:      001557 idle_name_fail:
+0x3099 001558 arg mem_tmp_buffer ,contw 
+0x309a 001559 arg 8 ,loopcnt 
+0x309b 001560 call memset0 
+0x309c 001561 force hci_error_memory_full ,queue 
+0x309d 001562 call hci_send_name 
+0x309e 001563 jam bt_evt_reconn_failed ,mem_fifo_temp 
+0x309f 001564 call ui_ipc_send_event 
+0x30a0 001565 branch idle_exit 
+:      001572 inquiry_dispatch:
+0x30a1 001573 rtnmark0 mark_inquiry_on 
+0x30a2 001574 force inquiry_length_timer ,queue 
+0x30a3 001575 call timer_check 
+0x30a4 001576 nsetflag blank ,mark_inquiry_on ,mark 
+0x30a5 001577 nbranch inquiry_start ,blank 
+0x30a6 001578 rtn 
+:      001582 inquiry_start:
+0x30a7 001583 set0 mark_ext_patch ,mark 
+0x30a8 001584 bpatch patch01_4 ,mem_patch01 
+0x30a9 001585 fetcht 2 ,mem_inq_window 
+0x30aa 001586 force 4 ,queue 
+0x30ab 001587 call sniff_check_window 
+0x30ac 001588 rtn user 
+0x30ad 001589 call afh_clear 
+0x30ae 001590 force 0 ,freq_mode 
+:      001591 inquiry_restart:
+0x30af 001592 rtn timeout 
+0x30b0 001593 set0 mark_fhs_already_good ,mark 
+0x30b1 001594 set0 mark_fhs_eir ,mark 
+:      001595 inquiry_rx_restart:
+0x30b2 001596 add clkn_bt ,1 ,bt_clk 
+0x30b3 001597 isolate1 mark_inquiry_trainb ,mark 
+0x30b4 001598 setflag true ,2 ,freq_mode 
+0x30b5 001599 compare 0x00 ,bt_clk ,0x02 
+0x30b6 001600 nbranch inquiry_receive ,true 
+:      001602 inquiry_transmit:
+0x30b7 001603 set0 mark_ext_patch ,mark 
+0x30b8 001604 bpatch patch01_5 ,mem_patch01 
+0x30b9 001605 fetch 1 ,mem_inquiry_transmit 
+0x30ba 001606 increase 1 ,pdata 
+0x30bb 001607 store 1 ,mem_inquiry_transmit 
+0x30bc 001608 call fetch_giac 
+0x30bd 001609 call tx_radio_freq 
+0x30be 001610 call fetch_diac 
+0x30bf 001611 call start_transmitter 
+0x30c0 001612 call start_tx_native 
+0x30c1 001613 call send_access_word 
+0x30c2 001614 call end_of_packet 
+0x30c3 001615 call inquiry_check_train 
+0x30c4 001616 branch inquiry_restart 
+:      001618 inquiry_check_train:
+0x30c5 001619 set0 mark_ext_patch ,mark 
+0x30c6 001620 bpatch patch01_6 ,mem_patch01 
+0x30c7 001621 fetch 1 ,mem_nfreq_index_inq 
+0x30c8 001622 increase -1 ,pdata 
+0x30c9 001623 store 1 ,mem_nfreq_index_inq 
+0x30ca 001624 rtn positive 
+0x30cb 001625 jam 31 ,mem_nfreq_index_inq 
+0x30cc 001626 fetch 1 ,mem_ninqy_index 
+0x30cd 001627 increase -1 ,pdata 
+0x30ce 001628 store 1 ,mem_ninqy_index 
+0x30cf 001629 rtn positive 
+0x30d0 001630 setflip mark_inquiry_trainb ,mark 
+0x30d1 001631 jam param_ninquiry ,mem_ninqy_index 
+0x30d2 001632 rtn 
+:      001634 inquiry_receive:
+0x30d3 001635 set0 mark_ext_patch ,mark 
+0x30d4 001636 bpatch patch01_7 ,mem_patch01 
+0x30d5 001637 call fetch_giac 
+0x30d6 001638 call rx_radio_freq 
+0x30d7 001639 call fetch_diac 
+0x30d8 001640 call start_rx_native 
+0x30d9 001641 call start_receiver 
+0x30da 001642 call wait_access_clkn_rt 
+0x30db 001643 branch inquiry_sync ,sync 
+0x30dc 001644 call inquiry_check_train 
+0x30dd 001645 branch inquiry_rx_restart 
+:      001646 inquiry_sync:
+0x30de 001647 set0 mark_ext_patch ,mark 
+0x30df 001648 bpatch patch02_0 ,mem_patch02 
+0x30e0 001649 call save_rssi 
+0x30e1 001650 call scan_mode_whiten 
+0x30e2 001651 call receive_packet_whitened 
+0x30e3 001652 set0 mark_rxbuf_inuse ,mark 
+0x30e4 001653 rtnmark0 mark_fhs_already_good 
+:      001654 inquiry_receive_rtn:
+0x30e5 001655 set0 mark_ext_patch ,mark 
+0x30e6 001656 bpatch patch02_1 ,mem_patch02 
+0x30e7 001657 fetch 1 ,mem_at_using_flag 
+0x30e8 001658 bbit1 at_flag_inq ,at_inquiry_reply 
+0x30e9 001659 call hci_inquiry_reply 
+:      001660 inquiry_receive_eir_rtn:
+0x30ea 001661 fetch 1 ,mem_inquiry_rcv 
+0x30eb 001662 increase 1 ,pdata 
+0x30ec 001663 store 1 ,mem_inquiry_rcv 
+0x30ed 001664 rtn 
+:      001665 inquiry_receive_eir:
+0x30ee 001666 set0 mark_fhs_already_good ,mark 
+0x30ef 001667 call rf_setup_time_slave_slot_eir 
+0x30f0 001668 call fetch_giac 
+0x30f1 001669 call rx_radio_freq 
+0x30f2 001670 call init_rx_packet_flags 
+0x30f3 001671 call start_rx_native 
+0x30f4 001672 call start_receiver 
+0x30f5 001673 call wait_access_clkn_rt 
+0x30f6 001674 branch inquiry_receive_eir_packet ,sync 
+0x30f7 001675 rtn 
+:      001676 inquiry_receive_eir_packet:
+0x30f8 001677 call scan_mode_whiten 
+0x30f9 001678 call receive_packet_whitened 
+0x30fa 001679 set0 mark_rxbuf_inuse ,mark 
+0x30fb 001680 branch inquiry_receive_rtn ,crc_failed 
+0x30fc 001681 call hci_inquiry_reply_eir 
+0x30fd 001682 branch inquiry_receive_eir_rtn 
+:      001684 rf_setup_time_slave_slot_eir:
+0x30fe 001685 arg param_rf_setup ,timeup 
+:      001686 rf_setup_time_eir:
+0x30ff 001687 until clkn_rt ,meet 
+0x3100 001688 and clkn_bt ,3 ,pdata 
+0x3101 001689 bne 1 ,rf_setup_time_eir 
+0x3102 001690 rtn 
+:      001699 master_page:
+0x3103 001700 set0 mark_ext_patch ,mark 
+0x3104 001701 bpatch patch02_2 ,mem_patch02 
+0x3105 001702 enable master 
+0x3106 001703 enable clknt 
+0x3107 001704 fetch 2 ,mem_page_interval 
+0x3108 001705 branch master_page_no_interval ,blank 
+0x3109 001706 force page_interval_timer ,queue 
+0x310a 001707 call timer_check 
+0x310b 001708 nrtn blank 
+:      001709 master_page_no_interval:
+0x310c 001710 set0 mark_ext_patch ,mark 
+0x310d 001711 bpatch patch02_3 ,mem_patch02 
+0x310e 001712 fetcht 2 ,mem_page_window 
+0x310f 001713 force 40 ,queue 
+0x3110 001714 call sniff_check_window 
+0x3111 001715 branch page_exit ,user 
+0x3112 001716 force page_length_timer ,queue 
+0x3113 001717 call timer_check 
+0x3114 001718 nbranch page_start ,blank 
+0x3115 001719 fetch 1 ,mem_state_map 
+0x3116 001720 bbit1 smap_name_req ,master_npage_timeout 
+0x3117 001721 force hci_error_page_timeout ,temp 
+0x3118 001722 call hci_send_connection_error 
+0x3119 001723 branch master_page_timeout 
+:      001724 master_npage_timeout:
+0x311a 001725 arg mem_tmp_buffer ,contw 
+0x311b 001726 arg 8 ,loopcnt 
+0x311c 001727 call memset0 
+0x311d 001728 force hci_error_page_timeout ,queue 
+0x311e 001729 call hci_send_name 
+:      001730 master_page_timeout:
+0x311f 001731 set0 mark_ext_patch ,mark 
+0x3120 001732 bpatch patch02_4 ,mem_patch02 
+0x3121 001733 jam 0 ,mem_state 
+0x3122 001734 call init_lmp_work 
+0x3123 001735 jam 0 ,memui_reconnect_mode 
+0x3124 001736 jam bt_evt_reconn_page_timeout ,mem_fifo_temp 
+0x3125 001737 call ui_ipc_send_event 
+0x3126 001738 branch page_exit 
+:      001740 page_start:
+0x3127 001741 set0 mark_ext_patch ,mark 
+0x3128 001742 bpatch patch02_5 ,mem_patch02 
+0x3129 001743 force 0 ,timeup 
+0x312a 001744 until clkn_rt ,meet 
+0x312b 001745 fetch 1 ,mem_page_clk 
+0x312c 001746 increase -1 ,pdata 
+0x312d 001747 ixor clkn_bt ,pdata 
+0x312e 001748 compare 0 ,pdata ,3 
+0x312f 001749 nbranch page_start ,true 
+0x3130 001750 deposit am_addr 
+0x3131 001751 store 1 ,mem_fhs_am_addr 
+0x3132 001752 force 0 ,n_tx_slot 
+0x3133 001753 force 0 ,freq_mode 
+:      001755 page_restart:
+0x3134 001756 set0 mark_ext_patch ,mark 
+0x3135 001757 bpatch patch02_6 ,mem_patch02 
+0x3136 001758 branch page_exit ,timeout 
+0x3137 001759 call fetch_page_bt_adr 
+0x3138 001760 arg param_rf_setup ,timeup 
+0x3139 001761 until clkn_rt ,meet 
+:      001762 page_rx_restart:
+0x313a 001763 set0 mark_ext_patch ,mark 
+0x313b 001764 bpatch patch02_7 ,mem_patch02 
+0x313c 001765 fetch 4 ,mem_page_clk 
+0x313d 001766 iforce bt_clk 
+0x313e 001767 increase 1 ,pdata 
+0x313f 001768 store 4 ,mem_page_clk 
+0x3140 001769 isolate1 mark_page_trainb ,mark 
+0x3141 001770 setflag true ,2 ,freq_mode 
+0x3142 001771 compare 0x00 ,bt_clk ,0x02 
+0x3143 001772 nbranch page_receive ,true 
+0x3144 001773 fetch 1 ,mem_page_transmit 
+0x3145 001774 increase 1 ,pdata 
+0x3146 001775 store 1 ,mem_page_transmit 
+0x3147 001776 call tx_radio_freq 
+0x3148 001777 call start_transmitter 
+0x3149 001778 call start_tx_native 
+0x314a 001779 call send_access_word 
+0x314b 001780 call end_of_packet 
+0x314c 001781 call page_check_train 
+0x314d 001782 branch page_restart 
+:      001783 master_dispatch_exit:
+:      001784 page_exit:
+0x314e 001785 set0 mark_ext_patch ,mark 
+0x314f 001786 bpatch patch03_0 ,mem_patch03 
+0x3150 001787 disable master 
+0x3151 001788 fetch 2 ,mem_page_interval 
+0x3152 001789 rtn blank 
+0x3153 001790 force page_interval_timer ,queue 
+0x3154 001791 branch timer_init 
+:      001793 page_check_train:
+0x3155 001794 set0 mark_ext_patch ,mark 
+0x3156 001795 bpatch patch03_1 ,mem_patch03 
+0x3157 001796 fetch 1 ,mem_nfreq_index_page 
+0x3158 001797 increase -1 ,pdata 
+0x3159 001798 store 1 ,mem_nfreq_index_page 
+0x315a 001799 rtn positive 
+0x315b 001800 jam 31 ,mem_nfreq_index_page 
+0x315c 001801 fetch 1 ,mem_npage_index 
+0x315d 001802 increase -1 ,pdata 
+0x315e 001803 store 1 ,mem_npage_index 
+0x315f 001804 rtn positive 
+0x3160 001805 setflip mark_page_trainb ,mark 
+0x3161 001806 fetch 1 ,mem_npage 
+0x3162 001807 store 1 ,mem_npage_index 
+0x3163 001808 rtn 
+:      001810 page_receive:
+0x3164 001811 set0 mark_ext_patch ,mark 
+0x3165 001812 bpatch patch03_2 ,mem_patch03 
+0x3166 001813 call rx_radio_freq 
+0x3167 001814 call start_rx_native 
+0x3168 001815 call start_receiver 
+0x3169 001816 call wait_access_clkn_rt 
+0x316a 001817 branch page_sync ,sync 
+0x316b 001818 call page_check_train 
+0x316c 001819 branch page_rx_restart 
+:      001820 page_sync:
+0x316d 001821 call end_of_packet 
+0x316e 001822 fetch 1 ,mem_page_rcv 
+0x316f 001823 increase 1 ,pdata 
+0x3170 001824 store 1 ,mem_page_rcv 
+0x3171 001825 force 0 ,stop_watch 
+0x3172 001826 fetch 4 ,mem_page_clk 
+:      001827 page_send_fhs:
+0x3173 001828 set0 mark_ext_patch ,mark 
+0x3174 001829 bpatch patch03_3 ,mem_patch03 
+0x3175 001830 call rf_setup_time_master_slot 
+0x3176 001831 call fetch_page_bt_adr 
+0x3177 001832 increase 1 ,n_tx_slot 
+:      001833 page_send_fhs_continue:
+0x3178 001834 and_into 0x1fd ,bt_clk 
+0x3179 001835 and_into 0x1fc ,freq_mode 
+0x317a 001836 call tx_radio_freq 
+0x317b 001837 call start_transmitter 
+0x317c 001838 call start_tx_native 
+0x317d 001839 call send_access_word 
+0x317e 001840 deposit clkn_bt 
+0x317f 001841 store 4 ,mem_clkn_bt 
+0x3180 001842 force 0 ,am_addr 
+0x3181 001843 force type_fhs ,type 
+0x3182 001844 call scan_mode_whiten 
+0x3183 001845 call transmit_packet_whitened 
+:      001846 page_wait_fhs_reply:
+0x3184 001847 set0 mark_ext_patch ,mark 
+0x3185 001848 bpatch patch03_4 ,mem_patch03 
+0x3186 001849 call rf_setup_time_slave_slot 
+0x3187 001850 or_into 0x02 ,bt_clk 
+0x3188 001851 and_into 0x1fc ,freq_mode 
+0x3189 001852 call rx_radio_freq 
+0x318a 001853 call start_rx_native 
+0x318b 001854 call start_receiver 
+0x318c 001855 call wait_access_clkn_rt 
+0x318d 001856 call end_of_packet ,sync 
+0x318e 001857 branch page_wait_fhs_reply_ok ,sync 
+0x318f 001858 fetch 1 ,mem_fhs_wait_counter 
+0x3190 001859 branch page_restart ,blank 
+0x3191 001860 increase -1 ,pdata 
+0x3192 001861 store 1 ,mem_fhs_wait_counter 
+0x3193 001862 branch page_send_fhs 
+:      001864 page_wait_fhs_reply_ok:
+0x3194 001865 set0 mark_ext_patch ,mark 
+0x3195 001866 bpatch patch03_5 ,mem_patch03 
+0x3196 001867 fetch 1 ,mem_page_rcv_fhs 
+0x3197 001868 increase 1 ,pdata 
+0x3198 001869 store 1 ,mem_page_rcv_fhs 
+0x3199 001870 call prepare_newconn 
+:      001871 master_newconn_loop:
+0x319a 001872 call master_newconn_once 
+0x319b 001873 branch newconn_poll_responded ,sync 
+0x319c 001874 call new_conn_timeout 
+0x319d 001875 nbranch master_newconn_loop ,blank 
+0x319e 001876 branch page_restart 
+:      001878 newconn_poll_responded:
+0x319f 001879 set0 mark_ext_patch ,mark 
+0x31a0 001880 bpatch patch03_6 ,mem_patch03 
+0x31a1 001881 fetch 1 ,mem_state 
+0x31a2 001882 set0 state_inpage ,pdata 
+0x31a3 001883 store 1 ,mem_state 
+0x31a4 001884 call newconn_init 
+0x31a5 001885 disable master 
+0x31a6 001886 rtn 
+:      001889 master_dispatch:
+0x31a7 001890 set0 mark_ext_patch ,mark 
+0x31a8 001891 bpatch patch03_7 ,mem_patch03 
+0x31a9 001892 enable master 
+0x31aa 001893 enable clknt 
+0x31ab 001894 call role_switch_master 
+0x31ac 001895 rtn user 
+0x31ad 001896 call check_bt_disabled 
+0x31ae 001897 call rf_setup_time_master_slot 
+0x31af 001898 add clkn_bt ,1 ,bt_clk 
+0x31b0 001899 call fetch_self_bt_adr 
+0x31b1 001900 force 0x03 ,freq_mode 
+0x31b2 001901 call load_esco 
+0x31b3 001902 call get_sco_data 
+0x31b4 001903 call scheduler_tx_l2cap_pkt 
+0x31b5 001904 call prepare_tx 
+0x31b6 001905 call tx_radio_freq 
+0x31b7 001906 call start_transmitter 
+0x31b8 001907 call start_tx_native 
+0x31b9 001908 call send_access_word 
+0x31ba 001909 call transmit_packet 
+:      001910 master_loop:
+0x31bb 001911 set0 mark_ext_patch ,mark 
+0x31bc 001912 bpatch patch04_0 ,mem_patch04 
+0x31bd 001913 call parse_lmp 
+0x31be 001914 call process_cmd 
+0x31bf 001915 call hci_send_num_complete_packets 
+0x31c0 001916 call master_conn_recv_packet 
+0x31c1 001917 nbranch master_notmatch ,match 
+0x31c2 001918 call supervision_flush 
+0x31c3 001919 call parse_l2cap 
+0x31c4 001920 fetch 1 ,mem_master_rcvcnt 
+0x31c5 001921 increase 1 ,pdata 
+0x31c6 001922 store 1 ,mem_master_rcvcnt 
+:      001923 master_notmatch:
+0x31c7 001924 set0 mark_ext_patch ,mark 
+0x31c8 001925 bpatch patch04_1 ,mem_patch04 
+0x31c9 001926 call scheduler_process 
+0x31ca 001927 call check_master_disconnect 
+0x31cb 001928 nrtn master 
+0x31cc 001929 call check_attempt 
+0x31cd 001930 nbranch master_attempt ,blank 
+:      001931 master_exit:
+0x31ce 001932 call process_sco_data 
+0x31cf 001933 call restore_esco 
+0x31d0 001934 disable master 
+0x31d1 001935 rtn 
+:      001937 master_attempt:
+0x31d2 001938 call prepare_tx 
+0x31d3 001939 call master_conn_send_packet 
+0x31d4 001940 branch master_loop 
+:      001943 check_master_disconnect:
+0x31d5 001944 branch check_master_match ,match 
+0x31d6 001945 call supervision_update 
+0x31d7 001946 branch master_disconnect ,positive 
+:      001947 check_master_match:
+0x31d8 001948 call check_disconnect_timeout 
+0x31d9 001949 nbranch master_disconnect ,user 
+0x31da 001950 fetch 1 ,mem_state_map 
+0x31db 001951 rtnbit0 smap_name_req 
+0x31dc 001952 rtnbit1 smap_name_res 
+0x31dd 001953 fetch 1 ,mem_op 
+0x31de 001954 rtnbit1 op_disconn 
+0x31df 001955 call conn_timer_expired 
+0x31e0 001956 nrtn blank 
+0x31e1 001957 fetch 1 ,mem_nameres_cnt 
+0x31e2 001958 increase -1 ,pdata 
+0x31e3 001959 store 1 ,mem_nameres_cnt 
+0x31e4 001960 nrtn blank 
+0x31e5 001961 branch lmp_disconnect 
+:      001963 master_disconnect:
+0x31e6 001964 set0 mark_ext_patch ,mark 
+0x31e7 001965 bpatch patch04_2 ,mem_patch04 
+0x31e8 001966 call quit_connection 
+0x31e9 001967 disable master 
+0x31ea 001968 fetch 1 ,mem_state_map 
+0x31eb 001969 bbit1 smap_name_req ,master_name_disconnect 
+0x31ec 001970 fetch 1 ,mem_state 
+0x31ed 001971 bbit0 state_conn_comp ,master_disconnect_quiet 
+0x31ee 001972 fetcht 1 ,mem_conn_handle 
+0x31ef 001973 branch hci_send_disconn_complete 
+:      001974 master_disconnect_quiet:
+0x31f0 001975 force hci_error_connection_timeout ,temp 
+0x31f1 001976 branch hci_send_connection_error 
+:      001977 master_name_disconnect:
+0x31f2 001978 force hci_success ,queue 
+0x31f3 001979 fetch 1 ,mem_state_map 
+0x31f4 001980 bbit1 smap_name_res ,hci_send_name 
+:      001981 master_name_error:
+0x31f5 001982 force hci_error_page_timeout ,queue 
+0x31f6 001983 arg mem_tmp_buffer ,contw 
+0x31f7 001984 arg 8 ,loopcnt 
+0x31f8 001985 call memset0 
+0x31f9 001986 branch hci_send_name 
+:      001988 disconnect_stop_sco:
+0x31fa 001989 set0 mark_ext_patch ,mark 
+0x31fb 001990 bpatch patch04_3 ,mem_patch04 
+0x31fc 001991 fetch 1 ,mem_state 
+0x31fd 001992 rtnbit0 state_insco 
+0x31fe 001993 fetcht 1 ,mem_conn_handle 
+0x31ff 001994 fetch 1 ,mem_sco_asso_handle 
+0x3200 001995 isub temp ,null 
+0x3201 001996 nrtn zero 
+0x3202 001997 call stop_esco 
+0x3203 001998 branch restore_esco_check_no_mark 
+:      002000 check_disconnect_timeout:
+0x3204 002001 set0 mark_ext_patch ,mark 
+0x3205 002002 bpatch patch04_4 ,mem_patch04 
+0x3206 002003 enable user 
+0x3207 002004 fetch 1 ,mem_op 
+0x3208 002005 rtnbit0 op_disconn 
+0x3209 002006 call conn_timer_expired 
+0x320a 002007 nrtn blank 
+:      002008 disable_usr:
+0x320b 002009 disable user 
+0x320c 002010 rtn 
+:      002012 conn_timer_expired:
+0x320d 002013 fetch 1 ,mem_conn_timer 
+0x320e 002014 increase -1 ,pdata 
+0x320f 002015 store 1 ,mem_conn_timer 
+0x3210 002016 rtn 
+:      002018 linkkey_ready:
+0x3211 002019 set0 mark_ext_patch ,mark 
+0x3212 002020 bpatch patch04_5 ,mem_patch04 
+0x3213 002021 fetch 1 ,mem_state 
+0x3214 002022 bbit1 state_linkkey ,linkkey_set 
+0x3215 002023 fetch 1 ,mem_device_option 
+0x3216 002024 beq dvc_op_hci ,linkkey_send_hci 
+0x3217 002025 fetch 1 ,mem_pairing_auth 
+0x3218 002026 branch linkkey_set ,blank 
+0x3219 002027 jam defalt_pairing_auth ,mem_pairing_auth 
+0x321a 002028 jam bt_evt_linkkey_generate ,mem_fifo_temp 
+0x321b 002029 call ui_ipc_send_event 
+0x321c 002030 branch linkkey_set 
+:      002031 linkkey_send_hci:
+0x321d 002032 call check_localsm 
+0x321e 002033 ncall hci_send_linkkey_notification ,true 
+:      002034 linkkey_set:
+0x321f 002035 set0 mark_ext_patch ,mark 
+0x3220 002036 bpatch patch04_6 ,mem_patch04 
+0x3221 002037 call context_traverse_linkkey 
+0x3222 002038 fetch 1 ,mem_state 
+0x3223 002039 set1 state_linkkey ,pdata 
+0x3224 002040 store 1 ,mem_state 
+0x3225 002041 jam 1 ,mem_link_key_exists 
+0x3226 002042 fetch 1 ,mem_conn_sm 
+0x3227 002043 bne conn_sm_pairing ,linkkey_set_continue 
+:      002044 linkkey_set_continue:
+0x3228 002045 rtn 
+:      002047 generate_linkkey_continue:
+0x3229 002048 jam pairing_auth ,mem_pairing_auth 
+:      002049 clear_linkstate:
+0x322a 002050 fetch 1 ,mem_state 
+0x322b 002051 set0 state_linkkey ,pdata 
+0x322c 002052 store 1 ,mem_state 
+0x322d 002053 rtn 
+:      002057 role_switch_check:
+0x322e 002058 set0 mark_ext_patch ,mark 
+0x322f 002059 bpatch patch04_7 ,mem_patch04 
+0x3230 002060 disable user 
+0x3231 002061 fetch 1 ,mem_state 
+0x3232 002062 rtnbit0 state_insniff 
+0x3233 002063 fetch 2 ,mem_tsniff 
+0x3234 002064 nrtn blank 
+0x3235 002065 fetch 4 ,mem_sniff_anchor 
+0x3236 002066 branch role_switch_clkn ,clknt 
+0x3237 002067 isub clke_bt ,pdata 
+0x3238 002068 branch role_switch_clke 
+:      002069 role_switch_clkn:
+0x3239 002070 isub clkn_bt ,pdata 
+:      002071 role_switch_clke:
+0x323a 002072 sub pdata ,4 ,null 
+0x323b 002073 nrtn positive 
+0x323c 002074 fetch 1 ,mem_state 
+0x323d 002075 set0 state_insniff ,pdata 
+0x323e 002076 store 1 ,mem_state 
+0x323f 002077 enable user 
+0x3240 002078 rtn 
+:      002081 role_switch_prepare:
+0x3241 002082 copy pdata ,temp 
+0x3242 002083 set0 mark_ext_patch ,mark 
+0x3243 002084 bpatch patch05_0 ,mem_patch05 
+0x3244 002085 store 4 ,mem_sniff_anchor 
+:      002086 role_switch_prepare0:
+0x3245 002087 jam switch_flag_accept ,mem_switch_flag 
+0x3246 002088 fetch 1 ,mem_state 
+0x3247 002089 set1 state_insniff ,pdata 
+0x3248 002090 store 1 ,mem_state 
+0x3249 002091 force 0 ,pdata 
+0x324a 002092 store 2 ,mem_tsniff 
+0x324b 002093 jam 10 ,mem_current_sniff_attempt 
+0x324c 002094 jam 1 ,mem_sniff_attempt 
+0x324d 002095 rtn 
+:      002098 role_switch_master:
+0x324e 002099 set0 mark_ext_patch ,mark 
+0x324f 002100 bpatch patch05_1 ,mem_patch05 
+0x3250 002101 call role_switch_check 
+0x3251 002102 nrtn user 
+0x3252 002103 disable user 
+0x3253 002104 jam param_newconnto ,mem_newconnto_counter 
+0x3254 002105 set0 mark_fhs_already_good ,mark 
+:      002106 roles_waitfhs_loop:
+0x3255 002107 call rf_setup_time_master_slot 
+0x3256 002108 call master_recv_packet 
+0x3257 002109 bmark1 mark_fhs_already_good ,roles_replyto_fhs 
+0x3258 002110 call new_conn_timeout 
+0x3259 002111 nbranch roles_waitfhs_loop ,blank 
+:      002112 role_switch_fail_master:
+0x325a 002113 set0 mark_ext_patch ,mark 
+0x325b 002114 bpatch patch05_2 ,mem_patch05 
+0x325c 002115 disable user 
+0x325d 002116 deposit clkn_bt 
+0x325e 002117 store 4 ,mem_next_btclk 
+0x325f 002118 enable clknt 
+0x3260 002119 enable master 
+0x3261 002120 jam bt_evt_switch_fail_master ,mem_fifo_temp 
+0x3262 002121 branch ui_ipc_send_event 
+:      002123 roles_replyto_fhs:
+0x3263 002124 set0 mark_ext_patch ,mark 
+0x3264 002125 bpatch patch05_3 ,mem_patch05 
+0x3265 002126 call rf_setup_time_slave_slot 
+0x3266 002127 call master_send_packet 
+0x3267 002128 disable clknt 
+0x3268 002129 disable master 
+0x3269 002130 call apply_switch_clke 
+0x326a 002131 call prepare_newconn 
+:      002132 roles_newconns_loop:
+0x326b 002133 set0 mark_ext_patch ,mark 
+0x326c 002134 bpatch patch05_4 ,mem_patch05 
+0x326d 002135 call slave_newconn_once 
+0x326e 002136 branch roles_newconns_responded ,match 
+0x326f 002137 call new_conn_timeout 
+0x3270 002138 nbranch roles_newconns_loop ,blank 
+0x3271 002139 branch role_switch_fail_master 
+:      002140 roles_newconns_responded:
+0x3272 002141 force 1 ,temp 
+0x3273 002142 call hci_send_role_change 
+0x3274 002143 fetch 1 ,mem_mode 
+0x3275 002144 set0 mode_master ,pdata 
+0x3276 002145 store 1 ,mem_mode 
+0x3277 002146 call supervision_flush 
+0x3278 002147 call calc_clke_offset 
+0x3279 002148 enable user 
+0x327a 002149 jam bt_evt_switch_success_master ,mem_fifo_temp 
+0x327b 002150 branch ui_ipc_send_event 
+:      002153 load_esco:
+0x327c 002154 set0 mark_ext_patch ,mark 
+0x327d 002155 bpatch patch05_5 ,mem_patch05 
+0x327e 002156 rtnmark0 mark_esco 
+0x327f 002157 fetch 1 ,mem_state 
+0x3280 002158 rtnbit0 state_insco 
+:      002159 load_esco_do:
+0x3281 002160 call init_esco_ibuff 
+0x3282 002161 fetch 1 ,mem_esco_arq 
+0x3283 002162 fetcht 1 ,mem_arq 
+0x3284 002163 storet 1 ,mem_esco_saved_arq 
+0x3285 002164 store 1 ,mem_arq 
+0x3286 002165 deposit am_addr 
+0x3287 002166 store 1 ,mem_saved_amaddr 
+0x3288 002167 fetch 1 ,mem_esco_addr 
+0x3289 002168 iforce am_addr 
+0x328a 002169 set0 mark_esco_rxok ,mark 
+0x328b 002170 fetch 1 ,mem_last_type 
+0x328c 002171 store 1 ,mem_last_type_saved 
+0x328d 002172 fetch 1 ,mem_last_type_esco 
+0x328e 002173 store 1 ,mem_last_type 
+0x328f 002174 rtn 
+:      002176 restore_esco:
+0x3290 002177 set0 mark_ext_patch ,mark 
+0x3291 002178 bpatch patch05_6 ,mem_patch05 
+0x3292 002179 rtnmark0 mark_esco 
+:      002180 restore_esco_check_no_mark:
+0x3293 002181 call check_esco_amaddr 
+0x3294 002182 nrtn true 
+:      002183 restore_esco_do:
+0x3295 002184 call clear_got_tx 
+0x3296 002185 fetch 1 ,mem_esco_saved_arq 
+0x3297 002186 fetcht 1 ,mem_arq 
+0x3298 002187 store 1 ,mem_arq 
+0x3299 002188 storet 1 ,mem_esco_arq 
+0x329a 002189 fetch 1 ,mem_saved_amaddr 
+0x329b 002190 iforce am_addr 
+0x329c 002191 fetch 1 ,mem_last_type 
+0x329d 002192 store 1 ,mem_last_type_esco 
+0x329e 002193 fetch 1 ,mem_last_type_saved 
+0x329f 002194 store 1 ,mem_last_type 
+0x32a0 002195 setarg 0xffff 
+0x32a1 002196 store 2 ,mem_retransmission_cnt 
+0x32a2 002197 rtn 
+:      002202 context_load:
+0x32a3 002203 set0 mark_ext_patch ,mark 
+0x32a4 002204 bpatch patch05_7 ,mem_patch05 
+0x32a5 002205 set1 mark_context ,mark 
+0x32a6 002206 deposit rega 
+0x32a7 002207 store 2 ,mem_context_ptr 
+0x32a8 002208 force context_size ,loopcnt 
+0x32a9 002209 arg mem_le_state ,contw 
+0x32aa 002210 add rega ,coffset_mode ,contr 
+0x32ab 002211 ifetch 1 ,contr 
+0x32ac 002212 copy rega ,contr 
+0x32ad 002213 bbit1 mode_le ,memcpy 
+0x32ae 002214 arg mem_state ,contw 
+0x32af 002215 call memcpy 
+0x32b0 002216 disable attempt 
+0x32b1 002217 fetch 1 ,mem_amaddr 
+0x32b2 002218 iforce am_addr 
+0x32b3 002219 jam 1 ,mem_current_sniff_attempt 
+0x32b4 002220 branch context_load_master ,master 
+0x32b5 002221 jam 1 ,mem_current_sniff_attempt 
+:      002222 context_load_master:
+0x32b6 002223 fetch 1 ,mem_state 
+0x32b7 002224 rtnbit0 state_insniff 
+0x32b8 002225 fetch 1 ,mem_sniff_attempt 
+0x32b9 002226 store 1 ,mem_current_sniff_attempt 
+0x32ba 002227 fetch 1 ,mem_sniff_timeout 
+0x32bb 002228 store 1 ,mem_current_sniff_timeout 
+0x32bc 002229 rtn 
+:      002231 context_save:
+0x32bd 002232 set0 mark_ext_patch ,mark 
+0x32be 002233 bpatch patch06_0 ,mem_patch06 
+0x32bf 002234 fetch 2 ,mem_context_ptr 
+0x32c0 002235 iforce contw 
+0x32c1 002236 force context_size ,loopcnt 
+0x32c2 002237 arg mem_le_state ,contr 
+0x32c3 002238 branch memcpy ,le 
+0x32c4 002239 arg mem_state ,contr 
+0x32c5 002240 branch memcpy 
+:      002244 context_get_next:
+0x32c6 002245 fetcht 1 ,mem_current_context 
+0x32c7 002246 arg context_num ,loopcnt 
+:      002247 context_get_next_loop:
+0x32c8 002248 increase 1 ,temp 
+0x32c9 002249 compare context_num ,temp ,0xff 
+0x32ca 002250 nbranch context_get_next_cont ,true 
+0x32cb 002251 arg 0 ,temp 
+:      002252 context_get_next_cont:
+0x32cc 002253 storet 1 ,mem_current_context 
+0x32cd 002254 mul32 temp ,context_size ,pdata 
+0x32ce 002255 arg mem_context ,rega 
+0x32cf 002256 iadd rega ,rega 
+0x32d0 002257 ifetch 1 ,rega 
+0x32d1 002258 bbit1 state_insniff ,context_get_next_sniff 
+0x32d2 002259 rtnbit1 state_inconn 
+0x32d3 002260 rtnbit1 state_inpage 
+:      002261 context_get_next_sniff:
+0x32d4 002262 loop context_get_next_loop 
+0x32d5 002263 rtn 
+:      002265 context_new:
+0x32d6 002266 set0 mark_ext_patch ,mark 
+0x32d7 002267 bpatch patch06_1 ,mem_patch06 
+0x32d8 002268 arg context_search_empty ,regc 
+0x32d9 002269 call context_search 
+0x32da 002270 nrtn zero 
+0x32db 002271 deposit rega 
+0x32dc 002272 store 2 ,mem_context_ptr 
+0x32dd 002273 force 0 ,null 
+0x32de 002274 rtn 
+:      002278 context_check_all_wack:
+0x32df 002279 call check_esco_amaddr 
+0x32e0 002280 branch context_check_esco_wack ,true 
+0x32e1 002281 fetch 2 ,mem_context_ptr 
+0x32e2 002282 add pdata ,coffset_arq ,contw 
+0x32e3 002283 fetch 1 ,mem_arq 
+0x32e4 002284 istore 1 ,contw 
+0x32e5 002285 arg context_check_a_wack ,regc 
+0x32e6 002286 branch context_search 
+:      002288 context_check_esco_wack:
+0x32e7 002289 fetch 1 ,mem_arq 
+0x32e8 002290 isolate1 wack ,pdata 
+0x32e9 002291 branch context_esco_wack ,true 
+0x32ea 002292 force 1 ,null 
+0x32eb 002293 rtn 
+:      002294 context_esco_wack:
+0x32ec 002295 force 0 ,null 
+0x32ed 002296 rtn 
+:      002299 context_check_idle:
+0x32ee 002300 arg context_check_inconn ,regc 
+0x32ef 002301 branch context_search 
+:      002303 context_traverse_linkkey:
+0x32f0 002304 fetcht 2 ,mem_context_ptr 
+0x32f1 002305 arg context_traverse_clearkey ,regc 
+0x32f2 002306 branch context_search 
+:      002308 context_traverse_max_slot:
+0x32f3 002309 fetcht 2 ,mem_context_ptr 
+0x32f4 002310 arg context_traverse_mslot ,regc 
+0x32f5 002311 branch context_search 
+:      002314 context_search_conn_handle:
+0x32f6 002315 fetcht 1 ,mem_hci_conn_handle 
+:      002316 context_search_conn_handle2:
+0x32f7 002317 arg context_search_handle ,regc 
+0x32f8 002318 branch context_search 
+:      002320 context_search_plap:
+0x32f9 002321 set0 mark_ext_patch ,mark 
+0x32fa 002322 bpatch patch06_2 ,mem_patch06 
+0x32fb 002323 fetcht 6 ,mem_hci_plap 
+:      002324 context_search_plap2:
+0x32fc 002325 arg context_search_lap ,regc 
+0x32fd 002326 branch context_search 
+:      002328 context_search_insniff:
+0x32fe 002329 arg context_search_sniff ,regc 
+0x32ff 002330 branch context_search 
+:      002332 context_search_sniff_window:
+0x3300 002333 arg context_search_window ,regc 
+:      002334 context_search:
+0x3301 002335 set0 mark_ext_patch ,mark 
+0x3302 002336 bpatch patch06_3 ,mem_patch06 
+0x3303 002337 arg mem_context ,rega 
+0x3304 002338 force context_num ,loopcnt 
+:      002339 context_search_loop:
+0x3305 002340 ifetch 1 ,rega 
+0x3306 002341 copy regc ,pc 
+:      002342 context_search_next:
+0x3307 002343 increase context_size ,rega 
+0x3308 002344 loop context_search_loop 
+0x3309 002345 force 1 ,null 
+0x330a 002346 rtn 
+:      002348 context_search_empty:
+0x330b 002349 bbit1 state_inconn ,context_search_next 
+0x330c 002350 bbit1 state_inpage ,context_search_next 
+0x330d 002351 force 0 ,null 
+0x330e 002352 rtn 
+:      002354 context_search_lap:
+0x330f 002355 bbit1 state_inpage ,context_search_lap_cont 
+0x3310 002356 bbit0 state_inconn ,context_search_next 
+:      002357 context_search_lap_cont:
+0x3311 002358 add rega ,coffset_plap ,contr 
+0x3312 002359 ifetch 6 ,contr 
+0x3313 002360 isub temp ,null 
+0x3314 002361 rtn zero 
+0x3315 002362 branch context_search_next 
+:      002364 context_search_handle:
+0x3316 002365 bbit0 state_inconn ,context_search_next 
+0x3317 002366 add rega ,coffset_conn_handle ,contr 
+0x3318 002367 ifetch 1 ,contr 
+0x3319 002368 isub temp ,null 
+0x331a 002369 rtn zero 
+0x331b 002370 branch context_search_next 
+:      002372 context_search_sniff:
+0x331c 002373 bbit0 state_insniff ,context_search_next 
+:      002374 context_search_sniff_loop:
+0x331d 002375 call context_get_anchor 
+0x331e 002376 bbit1 27 ,context_search_sniff_cont 
+0x331f 002377 isolate0 27 ,temp 
+0x3320 002378 branch context_search_sniff_cont ,true 
+0x3321 002379 set1 28 ,pdata 
+:      002380 context_search_sniff_cont:
+0x3322 002381 isub temp ,pdata 
+0x3323 002382 increase 1 ,pdata 
+0x3324 002383 branch context_search_sniff_miss ,positive 
+0x3325 002384 increase 5 ,pdata 
+0x3326 002385 nbranch context_search_next ,positive 
+:      002386 context_search_meet:
+0x3327 002387 copy temp ,bt_clk 
+0x3328 002388 call context_next_anchor 
+0x3329 002389 force 0 ,null 
+0x332a 002390 rtn 
+:      002392 context_search_sniff_miss:
+0x332b 002393 iforce regb 
+0x332c 002394 add rega ,coffset_tsniff ,contr 
+0x332d 002395 ifetch 2 ,contr 
+0x332e 002396 branch context_search_meet ,blank 
+0x332f 002397 call context_next_anchor 
+0x3330 002398 branch context_search_sniff_loop 
+:      002400 context_check_inconn:
+0x3331 002401 bbit0 state_inconn ,context_search_next 
+0x3332 002402 force 0 ,null 
+0x3333 002403 rtn 
+:      002405 context_check_a_wack:
+0x3334 002406 bbit0 state_inconn ,context_search_next 
+0x3335 002407 add rega ,coffset_mode ,contr 
+0x3336 002408 ifetch 1 ,contr 
+0x3337 002409 bbit1 mode_le ,context_search_next 
+0x3338 002410 add rega ,coffset_arq ,contr 
+0x3339 002411 ifetch 1 ,contr 
+0x333a 002412 bbit0 wack ,context_search_next 
+0x333b 002413 force 0 ,null 
+0x333c 002414 rtn 
+:      002416 context_get_anchor:
+0x333d 002417 add rega ,coffset_mode ,contr 
+0x333e 002418 ifetcht 1 ,contr 
+0x333f 002419 deposit clkn_bt 
+0x3340 002420 isolate1 mode_master ,temp 
+0x3341 002421 add rega ,coffset_sniff_anchor ,contr 
+0x3342 002422 ifetcht 4 ,contr 
+0x3343 002423 rtn true 
+0x3344 002424 add rega ,coffset_clk_offset ,contr 
+0x3345 002425 ifetch 6 ,contr 
+0x3346 002426 call calc_clke2 
+0x3347 002427 deposit clke_bt 
+0x3348 002428 rtn 
+:      002430 context_next_anchor:
+0x3349 002431 add rega ,coffset_tsniff ,contr 
+0x334a 002432 add rega ,coffset_sniff_anchor ,contw 
+0x334b 002433 ifetch 2 ,contr 
+0x334c 002434 iadd temp ,timeup 
+0x334d 002435 deposit timeup 
+0x334e 002436 istore 4 ,contw 
+0x334f 002437 branch le_context_nexthop 
+:      002440 context_search_window:
+0x3350 002441 bbit0 state_insniff ,context_search_next 
+0x3351 002442 call context_get_anchor 
+0x3352 002443 iadd stop_watch ,pdata 
+0x3353 002444 iadd stop_watch ,pdata 
+0x3354 002445 iadd queue ,pdata 
+0x3355 002446 isub temp ,null 
+0x3356 002447 nbranch context_search_next ,positive 
+0x3357 002448 force 0 ,null 
+0x3358 002449 rtn 
+:      002451 context_traverse_mslot:
+0x3359 002452 bbit0 state_inconn ,context_search_next 
+0x335a 002453 deposit temp 
+0x335b 002454 isub rega ,null 
+0x335c 002455 branch context_search_next ,null 
+0x335d 002456 add rega ,coffset_mode ,contr 
+0x335e 002457 ifetch 1 ,contr 
+0x335f 002458 bbit1 mode_le ,context_search_next 
+0x3360 002459 add rega ,coffset_lmp_to_send ,contw 
+0x3361 002460 ifetch 1 ,contw 
+0x3362 002461 nbranch context_search_next ,blank 
+0x3363 002462 force lmp_max_slot ,pdata 
+0x3364 002463 istore 1 ,contw 
+0x3365 002464 branch context_search_next 
+:      002466 context_traverse_clearkey:
+0x3366 002467 bbit0 state_inconn ,context_search_next 
+0x3367 002468 deposit temp 
+0x3368 002469 isub rega ,null 
+0x3369 002470 branch context_search_next ,null 
+0x336a 002471 add rega ,coffset_mode ,contr 
+0x336b 002472 ifetch 1 ,contr 
+0x336c 002473 bbit1 mode_le ,context_search_next 
+0x336d 002474 ifetch 1 ,rega 
+0x336e 002475 set0 state_linkkey ,pdata 
+0x336f 002476 istore 1 ,rega 
+0x3370 002477 branch context_search_next 
+:      002480 master_conn_send_packet:
+0x3371 002481 set0 mark_ext_patch ,mark 
+0x3372 002482 bpatch patch06_4 ,mem_patch06 
+0x3373 002483 call rf_setup_time_master_slot 
+:      002484 master_send_packet:
+0x3374 002485 add clkn_bt ,1 ,bt_clk 
+0x3375 002486 call fetch_self_bt_adr 
+0x3376 002487 force 0x03 ,freq_mode 
+0x3377 002488 call tx_radio_freq 
+0x3378 002489 call start_transmitter 
+0x3379 002490 call start_tx_native 
+0x337a 002491 call send_access_word 
+0x337b 002492 branch transmit_packet 
+:      002494 master_conn_recv_packet:
+0x337c 002495 set0 mark_ext_patch ,mark 
+0x337d 002496 bpatch patch06_5 ,mem_patch06 
+0x337e 002497 call rf_setup_time_slave_slot 
+:      002498 master_recv_packet:
+0x337f 002499 add clkn_bt ,1 ,bt_clk 
+0x3380 002500 call fetch_self_bt_adr 
+0x3381 002501 force 0x03 ,freq_mode 
+0x3382 002502 call rx_radio_freq 
+0x3383 002503 call init_rx_packet_flags 
+0x3384 002504 call prep_crypt 
+0x3385 002505 call start_rx_native 
+0x3386 002506 call start_receiver 
+:      002507 master_rx_conn_finish_packet:
+0x3387 002508 call wait_access_clkn_rt 
+0x3388 002509 nrtn sync 
+0x3389 002510 call save_rssi 
+0x338a 002511 branch receive_packet 
+:      002515 master_newconn_once:
+0x338b 002516 set0 mark_ext_patch ,mark 
+0x338c 002517 bpatch patch06_6 ,mem_patch06 
+0x338d 002518 fetch 1 ,mem_fhs_am_addr 
+0x338e 002519 iforce am_addr 
+0x338f 002520 force type_poll ,type 
+0x3390 002521 call master_conn_send_packet 
+0x3391 002522 branch master_conn_recv_packet 
+:      002533 inquiry_scan_dispatch:
+0x3392 002534 fetch 1 ,mem_scan_mode 
+0x3393 002535 rtnbit0 inq_scan_mode 
+0x3394 002536 force iscan_interval_timer ,queue 
+0x3395 002537 call timer_check 
+0x3396 002538 nrtn blank 
+0x3397 002539 fetcht 2 ,mem_iscan_window 
+0x3398 002540 force 4 ,queue 
+0x3399 002541 call sniff_check_window 
+0x339a 002542 rtn user 
+0x339b 002543 call inquiry_scan_start 
+0x339c 002544 force iscan_interval_timer ,queue 
+0x339d 002545 fetch 2 ,mem_iscan_interval 
+0x339e 002546 nbranch timer_init ,sync 
+0x339f 002547 random pdata 
+0x33a0 002548 iand mask3ff ,pdata 
+0x33a1 002549 branch timer_init 
+:      002552 inquiry_scan_start:
+0x33a2 002553 set0 mark_ext_patch ,mark 
+0x33a3 002554 bpatch patch06_7 ,mem_patch06 
+0x33a4 002555 jam 0 ,mem_fhs_am_addr 
+0x33a5 002556 disable clknt 
+0x33a6 002557 disable attempt 
+0x33a7 002558 call afh_clear 
+0x33a8 002559 and clkn_bt ,0x1fc ,bt_clk 
+0x33a9 002560 force 0x01 ,freq_mode 
+0x33aa 002561 call fetch_giac 
+0x33ab 002562 call rx_radio_freq 
+0x33ac 002563 setflip mark_inquiry_state ,mark 
+0x33ad 002564 fetch 1 ,mem_inquiryscan_waitcnt 
+0x33ae 002565 increase 1 ,pdata 
+0x33af 002566 store 1 ,mem_inquiryscan_waitcnt 
+0x33b0 002567 call fetch_diac 
+0x33b1 002568 call start_receiver 
+0x33b2 002569 call wait_access_forever 
+0x33b3 002570 nrtn sync 
+0x33b4 002571 set0 mark_ext_patch ,mark 
+0x33b5 002572 bpatch patch07_0 ,mem_patch07 
+0x33b6 002573 force 0 ,stop_watch 
+0x33b7 002574 call shutdown_radio 
+0x33b8 002575 fetch 1 ,mem_inquiryscan_rcvcnt 
+0x33b9 002576 increase 1 ,pdata 
+0x33ba 002577 store 1 ,mem_inquiryscan_rcvcnt 
+0x33bb 002578 call fetch_giac 
+0x33bc 002579 call rf_setup_time_slave_slot 
+0x33bd 002580 or_into 0x002 ,bt_clk 
+0x33be 002581 force 0x01 ,freq_mode 
+0x33bf 002582 call tx_radio_freq 
+0x33c0 002583 call fetch_diac 
+0x33c1 002584 call start_transmitter 
+0x33c2 002585 call start_tx_external 
+0x33c3 002586 deposit clkn_bt 
+0x33c4 002587 store 4 ,mem_clkn_bt 
+0x33c5 002588 call send_access_word 
+0x33c6 002589 force type_fhs ,type 
+0x33c7 002590 force 0 ,am_addr 
+0x33c8 002591 call scan_mode_whiten 
+0x33c9 002592 call transmit_packet_whitened 
+0x33ca 002593 call send_eir 
+0x33cb 002594 and_into 0x1fd ,bt_clk 
+0x33cc 002595 increase 1 ,n_tx_slot 
+0x33cd 002596 rtn 
+:      002598 send_eir:
+0x33ce 002599 set0 mark_ext_patch ,mark 
+0x33cf 002600 bpatch patch07_1 ,mem_patch07 
+0x33d0 002601 fetch 1 ,mem_eir_enable 
+0x33d1 002602 rtn blank 
+0x33d2 002603 arg mem_eir ,contw 
+0x33d3 002604 fetch 1 ,mem_local_name_length 
+0x33d4 002605 copy pdata ,loopcnt 
+0x33d5 002606 increase 1 ,pdata 
+0x33d6 002607 istore 1 ,contw 
+0x33d7 002608 copy contw ,temp 
+0x33d8 002609 increase 1 ,pdata 
+0x33d9 002610 store 2 ,mem_tx_len 
+0x33da 002611 copy temp ,contw 
+0x33db 002612 setarg 0x09 
+0x33dc 002613 istore 1 ,contw 
+0x33dd 002614 arg mem_local_name ,contr 
+0x33de 002615 call memcpy 
+0x33df 002616 arg mem_all_uuid_128bits ,regc 
+0x33e0 002617 arg 4 ,loopcnt 
+0x33e1 002618 call get_all_uuid 
+0x33e2 002619 arg mem_all_uuid_16bits ,regc 
+0x33e3 002620 arg 1 ,loopcnt 
+0x33e4 002621 call get_all_uuid 
+0x33e5 002622 force type_dm3 ,type 
+0x33e6 002623 jam 2 ,mem_tx_lch 
+0x33e7 002624 setarg mem_eir 
+0x33e8 002625 store 2 ,mem_txptr 
+0x33e9 002626 call rf_setup_time_slave_slot 
+0x33ea 002627 call tx_radio_freq 
+0x33eb 002628 call start_transmitter 
+0x33ec 002629 call start_tx_external 
+0x33ed 002630 call send_access_word 
+0x33ee 002631 call scan_mode_whiten 
+0x33ef 002632 call transmit_packet_whitened 
+0x33f0 002633 rtn 
+:      002636 get_all_uuid:
+0x33f1 002637 copy contw ,temp 
+0x33f2 002638 copy regc ,contr 
+0x33f3 002639 ifetch 1 ,contr 
+0x33f4 002640 rtn blank 
+:      002641 lshift_loop:
+0x33f5 002642 lshift pdata ,pdata 
+0x33f6 002643 loop lshift_loop 
+0x33f7 002644 copy pdata ,rega 
+0x33f8 002645 increase 2 ,pdata 
+0x33f9 002646 copy pdata ,queue 
+0x33fa 002647 fetch 2 ,mem_tx_len 
+0x33fb 002648 iadd queue ,pdata 
+0x33fc 002649 store 2 ,mem_tx_len 
+0x33fd 002650 copy temp ,contw 
+0x33fe 002651 copy rega ,pdata 
+0x33ff 002652 increase 1 ,pdata 
+0x3400 002653 istore 1 ,contw 
+0x3401 002654 copy regc ,contr 
+0x3402 002655 ifetch 1 ,contr 
+0x3403 002656 ifetch 1 ,contr 
+0x3404 002657 istore 1 ,contw 
+0x3405 002658 copy rega ,loopcnt 
+0x3406 002659 branch memcpy 
+:      002665 page_scan_dispatch:
+0x3407 002666 fetch 1 ,mem_scan_mode 
+0x3408 002667 rtnbit0 page_scan_mode 
+0x3409 002668 force pscan_interval_timer ,queue 
+0x340a 002669 call timer_check 
+0x340b 002670 nrtn blank 
+0x340c 002671 fetcht 2 ,mem_pscan_window 
+0x340d 002672 force 40 ,queue 
+0x340e 002673 call sniff_check_window 
+0x340f 002674 rtn user 
+0x3410 002675 force 0 ,am_addr 
+0x3411 002676 jam param_pagerespto ,mem_fhs_wait_counter 
+0x3412 002677 set0 mark_fhs_already_good ,mark 
+0x3413 002678 call page_scan_start 
+0x3414 002679 force pscan_interval_timer ,queue 
+0x3415 002680 fetch 2 ,mem_pscan_interval 
+0x3416 002681 branch timer_init 
+:      002684 page_scan_start:
+0x3417 002685 set0 mark_ext_patch ,mark 
+0x3418 002686 bpatch patch07_2 ,mem_patch07 
+0x3419 002687 disable clknt 
+0x341a 002688 call afh_clear 
+0x341b 002689 fetch 1 ,mem_pagescan_waitcnt 
+0x341c 002690 increase 1 ,pdata 
+0x341d 002691 store 1 ,mem_pagescan_waitcnt 
+0x341e 002692 force 0 ,n_tx_slot 
+0x341f 002693 call fetch_self_bt_adr 
+0x3420 002694 add clkn_bt ,1 ,bt_clk 
+0x3421 002695 force 0x02 ,freq_mode 
+0x3422 002696 set0 mark_ext_patch ,mark 
+0x3423 002697 bpatch patch07_3 ,mem_patch07 
+0x3424 002698 call rx_radio_freq 
+0x3425 002699 call start_receiver 
+0x3426 002700 call wait_access_forever 
+0x3427 002701 nrtn sync 
+0x3428 002702 call shutdown_radio 
+0x3429 002703 fetch 1 ,mem_pagescan_rcvcnt 
+0x342a 002704 increase 1 ,pdata 
+0x342b 002705 store 1 ,mem_pagescan_rcvcnt 
+0x342c 002706 force 0 ,stop_watch 
+0x342d 002707 call rf_setup_time_slave_slot 
+0x342e 002708 or_into 0x002 ,bt_clk 
+0x342f 002709 force 0x01 ,freq_mode 
+0x3430 002710 call tx_radio_freq 
+0x3431 002711 call start_transmitter 
+0x3432 002712 call start_tx_external 
+0x3433 002713 call send_access_word 
+0x3434 002714 call end_of_packet 
+0x3435 002715 force 0 ,am_addr 
+0x3436 002716 arg param_rf_setup ,timeup 
+0x3437 002717 until clke_rt ,meet 
+0x3438 002718 or_into 0x03 ,clke_bt 
+0x3439 002719 and_into 0x1fd ,bt_clk 
+:      002720 page_scan_wait_fhs_restart:
+0x343a 002721 set0 mark_ext_patch ,mark 
+0x343b 002722 bpatch patch07_4 ,mem_patch07 
+0x343c 002723 increase 1 ,n_tx_slot 
+0x343d 002724 call rx_radio_freq 
+0x343e 002725 call start_receiver 
+0x343f 002726 call wait_access_mhalfbnd 
+0x3440 002727 nbranch page_scan_wait_fhs_again ,sync 
+0x3441 002728 call scan_mode_whiten 
+0x3442 002729 call receive_packet_whitened 
+0x3443 002730 bmark1 mark_fhs_already_good ,page_scan_reply_to_fhs 
+:      002731 page_scan_wait_fhs_again:
+0x3444 002732 set0 mark_ext_patch ,mark 
+0x3445 002733 bpatch patch07_5 ,mem_patch07 
+0x3446 002734 fetch 1 ,mem_fhs_wait_counter 
+0x3447 002735 rtn blank 
+0x3448 002736 increase -1 ,pdata 
+0x3449 002737 store 1 ,mem_fhs_wait_counter 
+0x344a 002738 call rf_setup_time_master_slot 
+0x344b 002739 branch page_scan_wait_fhs_restart 
+:      002742 page_scan_reply_to_fhs:
+0x344c 002743 set0 mark_ext_patch ,mark 
+0x344d 002744 bpatch patch07_6 ,mem_patch07 
+0x344e 002745 set0 1 ,clke_bt 
+0x344f 002746 set1 0 ,clke_bt 
+0x3450 002747 fetch 1 ,mem_pagescan_rcvfhscnt 
+0x3451 002748 increase 1 ,pdata 
+0x3452 002749 store 1 ,mem_pagescan_rcvfhscnt 
+0x3453 002750 call rf_setup_time_slave_slot 
+0x3454 002751 or_into 0x02 ,bt_clk 
+0x3455 002752 call tx_radio_freq 
+0x3456 002753 call start_transmitter 
+0x3457 002754 call start_tx_external 
+0x3458 002755 call send_access_word 
+0x3459 002756 call end_of_packet 
+:      002757 slave_apply_clke_bt:
+0x345a 002758 compare 0x03 ,clke_bt ,0x03 
+0x345b 002759 branch slave_apply_clke_bt_now ,true 
+0x345c 002760 until null ,mhalfbnd 
+0x345d 002761 branch slave_apply_clke_bt 
+:      002762 slave_apply_clke_bt_now:
+0x345e 002763 fetch 4 ,mem_clke_bt 
+0x345f 002764 or_into 0x03 ,pdata 
+0x3460 002765 icopy clke_bt 
+:      002767 start_slave_connection:
+0x3461 002768 set0 mark_ext_patch ,mark 
+0x3462 002769 bpatch patch07_7 ,mem_patch07 
+0x3463 002770 fetch 6 ,extm_lap 
+0x3464 002771 store 6 ,mem_plap 
+0x3465 002772 call prepare_newconn 
+:      002773 slave_newconn_loop:
+0x3466 002774 call slave_newconn_once 
+0x3467 002775 branch sconn_successful ,match 
+0x3468 002776 call new_conn_timeout 
+0x3469 002777 nbranch slave_newconn_loop ,blank 
+0x346a 002778 rtn 
+:      002781 sconn_successful:
+0x346b 002782 set0 mark_ext_patch ,mark 
+0x346c 002783 bpatch patch08_0 ,mem_patch08 
+0x346d 002784 call newconn_init 
+0x346e 002785 call context_new 
+0x346f 002786 nrtn zero 
+0x3470 002787 jam 0 ,mem_mode 
+0x3471 002788 call calc_clke_offset 
+0x3472 002789 branch context_save 
+:      002792 slave_dispatch:
+0x3473 002793 set0 mark_ext_patch ,mark 
+0x3474 002794 bpatch patch08_1 ,mem_patch08 
+0x3475 002795 call calc_clke 
+0x3476 002796 call role_switch_slave 
+0x3477 002797 rtn user 
+0x3478 002798 call load_esco 
+0x3479 002799 call get_sco_data 
+:      002800 slave_loop:
+0x347a 002801 set0 mark_ext_patch ,mark 
+0x347b 002802 bpatch patch08_2 ,mem_patch08 
+0x347c 002803 call check_bt_disabled 
+0x347d 002804 call scheduler_process 
+0x347e 002805 call slave_conn_recv_packet 
+0x347f 002806 call slave_savelist 
+0x3480 002807 nbranch slave_notmatch ,match 
+0x3481 002808 call supervision_flush 
+0x3482 002809 call parse_l2cap 
+0x3483 002810 call scheduler_tx_l2cap_pkt 
+0x3484 002811 call prepare_tx 
+0x3485 002812 call slave_conn_send_packet 
+0x3486 002813 call parse_lmp 
+0x3487 002814 call process_cmd 
+0x3488 002815 call hci_send_num_complete_packets 
+0x3489 002816 fetch 1 ,mem_slave_rcvcnt 
+0x348a 002817 increase 1 ,pdata 
+0x348b 002818 store 1 ,mem_slave_rcvcnt 
+0x348c 002819 call calc_clke_offset 
+:      002820 slave_notmatch:
+0x348d 002821 set0 mark_ext_patch ,mark 
+0x348e 002822 bpatch patch08_3 ,mem_patch08 
+0x348f 002823 call lpm_set_mult 
+0x3490 002824 call supervision_update 
+0x3491 002825 branch slave_disconnect ,positive 
+0x3492 002826 call check_disconnect_timeout 
+0x3493 002827 nbranch slave_disconnect ,user 
+0x3494 002828 call check_attempt 
+0x3495 002829 nbranch slave_loop ,blank 
+0x3496 002830 call process_sco_data 
+0x3497 002831 branch restore_esco 
+:      002834 slave_disconnect:
+0x3498 002835 set0 mark_ext_patch ,mark 
+0x3499 002836 bpatch patch08_4 ,mem_patch08 
+0x349a 002837 jam 0 ,mem_tester_emulate 
+0x349b 002838 jam 0 ,mem_debug_config 
+0x349c 002839 call quit_connection 
+0x349d 002840 set0 mark_testmode ,mark 
+0x349e 002841 call test_enable_white 
+0x349f 002842 fetch 1 ,mem_state 
+0x34a0 002843 bbit0 state_conn_comp ,slave_connection_fail 
+0x34a1 002844 fetcht 1 ,mem_conn_handle 
+0x34a2 002845 branch hci_send_disconn_complete 
+:      002847 slave_connection_fail:
+0x34a3 002848 force hci_error_key_missing ,temp 
+0x34a4 002849 branch hci_send_connection_error 
+:      002851 role_switch_slave:
+0x34a5 002852 set0 mark_ext_patch ,mark 
+0x34a6 002853 bpatch patch08_5 ,mem_patch08 
+0x34a7 002854 call role_switch_check 
+0x34a8 002855 nrtn user 
+0x34a9 002856 copy am_addr ,temp 
+0x34aa 002857 call get_free_amaddr 
+0x34ab 002858 store 1 ,mem_fhs_am_addr 
+0x34ac 002859 copy temp ,am_addr 
+0x34ad 002860 jam param_newconnto ,mem_newconnto_counter 
+:      002861 roles_sendfhs_loop:
+0x34ae 002862 set0 mark_ext_patch ,mark 
+0x34af 002863 bpatch patch08_6 ,mem_patch08 
+0x34b0 002864 call rf_setup_time_master_slot 
+0x34b1 002865 force type_fhs ,type 
+0x34b2 002866 call slave_send_access 
+0x34b3 002867 deposit clkn_bt 
+0x34b4 002868 store 4 ,mem_clkn_bt 
+0x34b5 002869 call transmit_packet 
+0x34b6 002870 call rf_setup_time_slave_slot 
+0x34b7 002871 enable user3 
+0x34b8 002872 call slave_receive_access 
+0x34b9 002873 branch roles_got_fhs_reply ,sync 
+0x34ba 002874 call shutdown_radio 
+0x34bb 002875 call new_conn_timeout 
+0x34bc 002876 nbranch roles_sendfhs_loop ,blank 
+0x34bd 002877 rtnmark0 mark_accept_switch 
+0x34be 002878 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x34bf 002879 set1 mark_switch_initiated ,mark 
+0x34c0 002880 rtn 
+:      002881 roles_got_fhs_reply:
+0x34c1 002882 enable clknt 
+0x34c2 002883 call prepare_newconn 
+0x34c3 002884 call afh_clear 
+:      002885 roles_newconn_loop:
+0x34c4 002886 set0 mark_ext_patch ,mark 
+0x34c5 002887 bpatch patch08_7 ,mem_patch08 
+0x34c6 002888 call master_newconn_once 
+0x34c7 002889 branch roles_newconn_responded ,sync 
+0x34c8 002890 call new_conn_timeout 
+0x34c9 002891 nbranch roles_newconn_loop ,blank 
+0x34ca 002892 disable clknt 
+0x34cb 002893 deposit clke_bt 
+0x34cc 002894 store 4 ,mem_next_btclk 
+0x34cd 002895 rtn 
+:      002896 roles_newconn_responded:
+0x34ce 002897 force 0 ,temp 
+0x34cf 002898 call hci_send_role_change 
+0x34d0 002899 enable master 
+0x34d1 002900 bmark0 mark_accept_switch ,roles_newconn_nolmp 
+0x34d2 002901 set0 mark_accept_switch ,mark 
+0x34d3 002902 jam lmp_accepted ,mem_lmo_opcode2 
+0x34d4 002903 jam lmp_host_connection_req ,mem_lmi_opcode2 
+0x34d5 002904 call tid_set_reply 
+:      002905 roles_newconn_nolmp:
+0x34d6 002906 deposit am_addr 
+0x34d7 002907 store 1 ,mem_amaddr 
+0x34d8 002908 force 0 ,pdata 
+0x34d9 002909 store 6 ,mem_clk_offset 
+0x34da 002910 fetch 1 ,mem_mode 
+0x34db 002911 set1 mode_master ,pdata 
+0x34dc 002912 store 1 ,mem_mode 
+0x34dd 002913 call supervision_flush 
+0x34de 002914 disable master 
+:      002915 enable_user:
+0x34df 002916 enable user 
+0x34e0 002917 rtn 
+:      002921 init_rx_packet_flags:
+0x34e1 002922 set0 mark_ext_patch ,mark 
+0x34e2 002923 bpatch patch09_0 ,mem_patch09 
+0x34e3 002924 disable match 
+0x34e4 002925 set0 mark_loopback ,mark 
+0x34e5 002926 set0 mark_am_addr_broadcast ,mark 
+0x34e6 002927 set0 mark_longpacket ,mark 
+0x34e7 002928 set0 mark_old_packet ,mark 
+0x34e8 002929 fetch 1 ,mem_arq 
+0x34e9 002930 set0 arqnx ,pdata 
+0x34ea 002931 set1 flowx ,pdata 
+0x34eb 002932 store 1 ,mem_arq 
+0x34ec 002933 rtn 
+:      002935 prepare_newconn:
+0x34ed 002936 set0 mark_ext_patch ,mark 
+0x34ee 002937 bpatch patch09_1 ,mem_patch09 
+0x34ef 002938 jam param_newconnto ,mem_newconnto_counter 
+0x34f0 002939 jam param_newconn_arq ,mem_arq 
+0x34f1 002940 fetch 2 ,mem_rx_window_init 
+0x34f2 002941 store 2 ,mem_rx_window 
+0x34f3 002942 deposit clkn_bt 
+0x34f4 002943 store 4 ,mem_next_btclk 
+0x34f5 002944 rtn clknt 
+0x34f6 002945 deposit clke_bt 
+0x34f7 002946 store 4 ,mem_next_btclk 
+0x34f8 002947 rtn 
+:      002949 newconn_init:
+0x34f9 002950 set0 mark_ext_patch ,mark 
+0x34fa 002951 bpatch patch09_2 ,mem_patch09 
+0x34fb 002952 call init_lmp_reinit 
+0x34fc 002953 call new_conn_handle 
+0x34fd 002954 store 1 ,mem_conn_handle 
+0x34fe 002955 setarg param_supervision_to 
+0x34ff 002956 store 2 ,mem_supervision_to 
+0x3500 002957 fetch 1 ,mem_state 
+0x3501 002958 set1 state_inconn ,pdata 
+0x3502 002959 store 1 ,mem_state 
+0x3503 002960 jam 0 ,mem_op 
+0x3504 002961 jam 0 ,mem_state_map 
+0x3505 002962 jam 0 ,mem_lpm_current_mult 
+0x3506 002963 branch supervision_flush 
+:      002966 clear_linkkey:
+0x3507 002967 set0 mark_ext_patch ,mark 
+0x3508 002968 bpatch patch09_3 ,mem_patch09 
+0x3509 002969 force 0 ,pdata 
+0x350a 002970 store 8 ,mem_link_key 
+0x350b 002971 istore 8 ,contw 
+0x350c 002972 call clear_linkstate 
+0x350d 002973 branch context_traverse_linkkey 
+:      002975 new_conn_timeout:
+0x350e 002976 fetch 1 ,mem_newconnto_counter 
+0x350f 002977 increase -1 ,pdata 
+0x3510 002978 store 1 ,mem_newconnto_counter 
+0x3511 002979 rtn 
+:      002981 new_conn_handle:
+0x3512 002982 fetch 1 ,mem_handle_num 
+0x3513 002983 increase 1 ,pdata 
+0x3514 002984 store 1 ,mem_handle_num 
+0x3515 002985 rtn 
+:      002988 quit_connection:
+0x3516 002989 set0 mark_ext_patch ,mark 
+0x3517 002990 bpatch patch09_4 ,mem_patch09 
+0x3518 002991 call disconnect_stop_sco 
+0x3519 002992 fetch 1 ,mem_hci_cmd 
+0x351a 002993 beq hci_cmd_remote_name_req ,quit_connection_name 
+0x351b 002994 fetch 1 ,mem_lmp_to_send 
+0x351c 002995 bne lmp_name_req ,quit_connection_cont 
+:      002996 quit_connection_name:
+0x351d 002997 call cmd_check_plap 
+0x351e 002998 nbranch quit_connection_cont ,zero 
+0x351f 002999 call master_name_error 
+0x3520 003000 jam 0 ,mem_hci_cmd 
+:      003001 quit_connection_cont:
+0x3521 003002 set0 mark_ext_patch ,mark 
+0x3522 003003 bpatch patch09_5 ,mem_patch09 
+0x3523 003004 call app_disconn_reason_collect_bt 
+0x3524 003005 call process_cmd 
+0x3525 003006 call sniff_exit 
+0x3526 003007 jam bt_evt_bb_disconnected ,mem_fifo_temp 
+0x3527 003008 call ui_ipc_send_event 
+0x3528 003009 call init_lmp_work 
+0x3529 003010 call l2cap_init_work 
+0x352a 003011 call sp_initialize 
+0x352b 003012 fetch 1 ,mem_state 
+0x352c 003013 set0 state_inconn 
+0x352d 003014 store 1 ,mem_state 
+0x352e 003015 jam 0 ,memui_reconnect_mode 
+0x352f 003017 fetch 1 ,mem_state_map 
+0x3530 003018 compare 0x0 ,pdata ,0xc0 
+0x3531 003019 branch quit_connection_not_clear_mark ,true 
+0x3532 003020 set0 mark_rxbuf_inuse ,mark 
+:      003021 quit_connection_not_clear_mark:
+0x3533 003022 fetch 1 ,mem_arq 
+0x3534 003023 bbit0 wack ,quit_connection_not_clear_tx 
+:      003024 quit_connection_not_clear_tx:
+0x3535 003025 fetch 1 ,mem_op 
+0x3536 003026 rtnbit0 op_txl2cap 
+0x3537 003027 set0 mark_tx_l2cap ,mark 
+0x3538 003028 rtn 
+:      003030 slave_newconn_once:
+0x3539 003031 set0 mark_ext_patch ,mark 
+0x353a 003032 bpatch patch09_6 ,mem_patch09 
+0x353b 003033 fetch 1 ,extm_newconn_am_addr 
+0x353c 003034 rtn blank 
+0x353d 003035 icopy am_addr 
+0x353e 003036 call slave_conn_recv_packet 
+0x353f 003037 nrtn match 
+0x3540 003038 force type_null ,type 
+0x3541 003039 call slave_conn_send_packet 
+0x3542 003040 deposit am_addr 
+0x3543 003041 store 1 ,mem_amaddr 
+0x3544 003042 force 0 ,pdata 
+0x3545 003043 store 1 ,extm_newconn_am_addr 
+0x3546 003044 rtn 
+:      003050 prepare_tx:
+0x3547 003051 set0 mark_ext_patch ,mark 
+0x3548 003052 bpatch patch09_7 ,mem_patch09 
+0x3549 003053 fetch 1 ,mem_state 
+0x354a 003054 bbit0 state_insco ,prepare_tx_not_sco 
+0x354b 003055 force type_hv3 ,type 
+0x354c 003056 bmark0 mark_esco ,prepare_tx_not_esco 
+0x354d 003057 call check_esco_amaddr 
+0x354e 003058 nbranch prepare_tx_not_sco ,true 
+0x354f 003059 branch prepare_tx_not_sco ,attempt 
+0x3550 003060 call set_wait_ack 
+0x3551 003061 setarg 2 
+0x3552 003062 store 2 ,mem_retransmission_cnt 
+0x3553 003063 rtn 
+:      003064 prepare_tx_not_esco:
+0x3554 003065 nrtn attempt 
+:      003066 prepare_tx_not_sco:
+0x3555 003067 set0 mark_ext_patch ,mark 
+0x3556 003068 bpatch patch0a_0 ,mem_patch0a 
+0x3557 003069 call context_check_all_wack 
+0x3558 003070 nbranch prepare_tx_no_retransmit ,zero 
+0x3559 003071 fetch 1 ,mem_arq 
+0x355a 003072 bbit0 wack ,prepare_tx_pollnull 
+:      003073 prepare_tx_retransmit:
+0x355b 003074 bmark1 mark_loopback ,prepare_tx_loopback 
+0x355c 003075 fetch 1 ,mem_debug_config 
+0x355d 003076 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+0x355e 003077 fetch 2 ,mem_retransmission_cnt 
+0x355f 003078 increase -1 ,pdata 
+0x3560 003079 store 2 ,mem_retransmission_cnt 
+0x3561 003080 branch prepare_tx_nomore_retransmit ,blank 
+0x3562 003081 fetch 1 ,mem_last_type 
+0x3563 003082 iforce type 
+0x3564 003083 rtn 
+:      003085 prepare_tx_nomore_retransmit:
+0x3565 003086 set0 mark_ext_patch ,mark 
+0x3566 003087 bpatch patch0a_1 ,mem_patch0a 
+0x3567 003088 call clear_got_tx 
+:      003089 prepare_tx_no_retransmit:
+0x3568 003090 call check_esco_amaddr 
+0x3569 003091 branch prepare_tx_pollnull ,true 
+0x356a 003092 call send_lmp 
+0x356b 003093 branch prepare_tx_sendlmp ,user 
+0x356c 003094 fetch 1 ,mem_op 
+0x356d 003095 bbit1 op_txl2cap ,prepare_tx_sendl2cap 
+0x356e 003096 bmark1 mark_loopback ,prepare_tx_loopback 
+0x356f 003097 fetch 1 ,mem_debug_config 
+0x3570 003098 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+:      003099 prepare_tx_pollnull:
+0x3571 003100 force type_poll ,type 
+0x3572 003101 rtn master 
+0x3573 003102 force type_null ,type 
+0x3574 003103 rtn 
+:      003104 prepare_tx_loopback:
+0x3575 003105 set0 mark_ext_patch ,mark 
+0x3576 003106 bpatch patch0a_2 ,mem_patch0a 
+0x3577 003107 fetch 1 ,mem_rx_type 
+0x3578 003108 iforce type 
+0x3579 003109 rtnne 1 
+0x357a 003110 force type_null ,type 
+0x357b 003111 rtn 
+:      003112 prepare_tx_txpat:
+0x357c 003113 fetch 1 ,test_mode_packet_type 
+0x357d 003114 and pdata ,0xf ,type 
+0x357e 003115 set1 mark_loopback ,mark 
+0x357f 003116 rtn 
+:      003117 prepare_tx_sendlmp:
+0x3580 003118 force type_lmp ,type 
+0x3581 003119 branch set_wait_ack 
+:      003120 prepare_tx_sendl2cap:
+0x3582 003121 call tx_l2cap_type 
+:      003123 set_wait_ack:
+0x3583 003124 set0 mark_ext_patch ,mark 
+0x3584 003125 bpatch patch0a_3 ,mem_patch0a 
+0x3585 003126 fetcht 1 ,mem_arq 
+0x3586 003127 set1 wack ,temp 
+0x3587 003128 storet 1 ,mem_arq 
+0x3588 003129 deposit type 
+0x3589 003130 store 1 ,mem_last_type 
+0x358a 003131 setarg 0xffff 
+0x358b 003132 store 2 ,mem_retransmission_cnt 
+0x358c 003133 rtn 
+:      003135 tx_l2cap_type:
+0x358d 003136 set0 mark_ext_patch ,mark 
+0x358e 003137 bpatch patch0a_4 ,mem_patch0a 
+0x358f 003138 fetch 1 ,mem_state_map 
+0x3590 003139 isolate1 smap_edr ,pdata 
+0x3591 003140 fetch 2 ,mem_tx_len 
+0x3592 003141 branch tx_l2cap_type_edr ,true 
+0x3593 003142 force type_dm1 ,type 
+0x3594 003143 sub pdata ,17 ,null 
+0x3595 003144 rtn positive 
+0x3596 003145 force type_dh1 ,type 
+0x3597 003146 sub pdata ,27 ,null 
+0x3598 003147 rtn positive 
+0x3599 003148 force type_dm3 ,type 
+0x359a 003149 sub pdata ,121 ,null 
+0x359b 003150 rtn positive 
+0x359c 003151 force type_dm5 ,type 
+0x359d 003152 sub pdata ,224 ,null 
+0x359e 003153 rtn positive 
+0x359f 003154 force type_dh5 ,type 
+0x35a0 003155 rtn 
+:      003156 tx_l2cap_type_edr:
+0x35a1 003157 force type_dm1 ,type 
+0x35a2 003158 sub pdata ,17 ,null 
+0x35a3 003159 rtn positive 
+0x35a4 003160 force type_dh1 ,type 
+0x35a5 003161 sub pdata ,54 ,null 
+0x35a6 003162 rtn positive 
+0x35a7 003163 force type_dm3 ,type 
+0x35a8 003164 arg 367 ,temp 
+0x35a9 003165 isub temp ,null 
+0x35aa 003166 nrtn positive 
+0x35ab 003167 force type_dm5 ,type 
+0x35ac 003168 arg 679 ,temp 
+0x35ad 003169 isub temp ,null 
+0x35ae 003170 nrtn positive 
+0x35af 003171 force type_dh5 ,type 
+0x35b0 003172 rtn 
+:      003181 slave_receive_master_slot:
+0x35b1 003182 fetch 1 ,mem_state 
+0x35b2 003183 bbit0 state_insniff ,slave_receive_notsniff 
+0x35b3 003184 fetch 2 ,mem_tsniff 
+0x35b4 003185 branch slave_receive_notsniff ,blank 
+0x35b5 003186 nbranch slave_receive_sniff ,attempt 
+:      003187 slave_receive_notsniff:
+0x35b6 003188 call rf_setup_time_master_slot 
+:      003189 slave_receive_access:
+0x35b7 003190 add clke_bt ,1 ,bt_clk 
+:      003191 slave_receive_sniff:
+0x35b8 003192 enable swfine 
+0x35b9 003193 fetch 2 ,mem_rx_window 
+0x35ba 003194 rshift pdata ,pdata 
+0x35bb 003195 arg param_pll_setup ,temp 
+0x35bc 003196 iadd temp ,pdata 
+0x35bd 003197 call ahead_window 
+0x35be 003198 call fetch_extm_bt_adr 
+0x35bf 003199 force 0x03 ,freq_mode 
+0x35c0 003200 call rx_radio_freq 
+0x35c1 003201 call init_rx_packet_flags 
+0x35c2 003202 call prep_crypt 
+0x35c3 003203 set0 mark_ext_patch ,mark 
+0x35c4 003204 bpatch patch0a_5 ,mem_patch0a 
+0x35c5 003205 fetch 2 ,mem_rx_window 
+0x35c6 003206 rshift pdata ,pdata 
+0x35c7 003207 call ahead_window 
+0x35c8 003208 call start_receiver 
+0x35c9 003209 enable decode_fec0 
+0x35ca 003210 fetch 2 ,mem_rx_window 
+0x35cb 003211 arg param_clke_cal ,temp 
+0x35cc 003212 iadd temp ,stop_watch 
+0x35cd 003213 correlate null ,timeout 
+0x35ce 003214 copy clke ,temp 
+0x35cf 003215 storet 6 ,mem_sync_clke 
+0x35d0 003216 disable decode_fec0 
+0x35d1 003217 nrtn sync 
+0x35d2 003218 arg param_clke_cal ,clke_rt 
+0x35d3 003219 copy bt_clk ,clke_bt 
+0x35d4 003220 branch lpm_adjust_clk ,wake 
+0x35d5 003221 rtn 
+:      003224 slave_conn_recv_packet:
+0x35d6 003225 set0 mark_ext_patch ,mark 
+0x35d7 003226 bpatch patch0a_6 ,mem_patch0a 
+0x35d8 003227 call slave_receive_master_slot 
+0x35d9 003228 nbranch shutdown_radio ,sync 
+0x35da 003229 call save_rssi 
+0x35db 003230 bmark0 mark_testmode ,receive_packet 
+0x35dc 003231 fetch 2 ,mem_tst_pktcnt_sync 
+0x35dd 003232 increase 1 ,pdata 
+0x35de 003233 store 2 ,mem_tst_pktcnt_sync 
+:      003234 receive_packet:
+0x35df 003235 rshift bt_clk ,temp 
+0x35e0 003236 or temp ,0x40 ,white_init 
+:      003237 receive_packet_whitened:
+0x35e1 003238 set0 mark_ext_patch ,mark 
+0x35e2 003239 bpatch patch0a_7 ,mem_patch0a 
+0x35e3 003240 enable enable_white 
+0x35e4 003241 enable enable_hec 
+0x35e5 003242 enable decode_fec1 
+0x35e6 003243 parse demod ,bucket ,3 
+0x35e7 003244 rshift8 pwindow ,pdata 
+0x35e8 003245 store 1 ,mem_temp_am_addr 
+0x35e9 003246 parse demod ,bucket ,4 
+0x35ea 003247 inject bucket ,7 
+0x35eb 003248 copy pwindow ,pdata 
+0x35ec 003249 store 1 ,mem_rx_type 
+0x35ed 003250 parse demod ,bucket ,3 
+0x35ee 003251 rshift8 pwindow ,pdata 
+0x35ef 003252 store 1 ,mem_temp_arq 
+0x35f0 003253 fetch 1 ,mem_rx_type 
+0x35f1 003254 sub pdata ,3 ,null 
+0x35f2 003255 branch receive_packet_noedr ,positive 
+0x35f3 003256 beq 7 ,receive_packet_noedr 
+0x35f4 003257 fetch 1 ,mem_state_map 
+0x35f5 003258 isolate1 smap_edr ,pdata 
+0x35f6 003259 setflag true ,psk ,radio_ctrl 
+:      003260 receive_packet_noedr:
+0x35f7 003261 set0 mark_ext_patch ,mark 
+0x35f8 003262 bpatch patch0b_0 ,mem_patch0b 
+0x35f9 003263 parse demod ,bucket ,8 
+0x35fa 003264 disable decode_fec1 
+0x35fb 003265 disable enable_hec 
+0x35fc 003266 branch error_header ,crc_failed 
+0x35fd 003267 bmark0 mark_testmode ,receive_packet_amchk 
+0x35fe 003268 fetch 2 ,mem_tst_pktcnt_hec 
+0x35ff 003269 increase 1 ,pdata 
+0x3600 003270 store 2 ,mem_tst_pktcnt_hec 
+:      003271 receive_packet_amchk:
+0x3601 003272 set0 mark_ext_patch ,mark 
+0x3602 003273 bpatch patch0b_1 ,mem_patch0b 
+0x3603 003274 fetch 1 ,mem_temp_am_addr 
+0x3604 003275 compare 0 ,pdata ,0x07 
+0x3605 003276 setflag true ,mark_am_addr_broadcast ,mark 
+0x3606 003277 branch am_addr_ok ,true 
+0x3607 003278 icompare 0x07 ,am_addr 
+0x3608 003279 branch am_addr_match ,true 
+0x3609 003280 bmark0 mark_esco ,end_of_packet 
+0x360a 003281 fetcht 1 ,mem_saved_amaddr 
+0x360b 003282 icompare 0x7 ,temp 
+0x360c 003283 nbranch end_of_packet ,true 
+0x360d 003284 call restore_esco 
+0x360e 003285 fetch 1 ,mem_arq 
+0x360f 003286 set0 arqnx ,pdata 
+0x3610 003287 set1 flowx ,pdata 
+0x3611 003288 store 1 ,mem_arq 
+:      003289 am_addr_match:
+0x3612 003290 enable match 
+:      003291 am_addr_ok:
+0x3613 003292 set0 mark_ext_patch ,mark 
+0x3614 003293 bpatch patch0b_2 ,mem_patch0b 
+0x3615 003294 fetch 1 ,mem_rx_type 
+0x3616 003295 icopy type 
+0x3617 003296 bmark1 mark_am_addr_broadcast ,arqn_bypass 
+0x3618 003297 fetcht 1 ,mem_temp_arq 
+0x3619 003298 fetch 1 ,mem_arq 
+0x361a 003299 set0 flow ,pdata 
+0x361b 003300 isolate1 flow ,temp 
+0x361c 003301 setflag true ,flow ,pdata 
+0x361d 003302 isolate1 arqn ,temp 
+0x361e 003303 setflag true ,arqn ,pdata 
+0x361f 003304 store 1 ,mem_arq 
+0x3620 003305 isolate0 arqn ,temp 
+0x3621 003306 branch arqn_bypass ,true 
+0x3622 003307 call clear_got_tx 
+:      003308 arqn_bypass:
+0x3623 003309 set0 mark_ext_patch ,mark 
+0x3624 003310 bpatch patch0b_3 ,mem_patch0b 
+0x3625 003311 arg 0 ,temp 
+0x3626 003312 call reserve_slot 
+0x3627 003313 and type ,0xf ,pdata 
+0x3628 003314 beq type_poll ,process_poll 
+0x3629 003315 beq type_null ,end_of_packet 
+0x362a 003316 beq type_fhs ,process_fhs 
+0x362b 003317 fetcht 1 ,mem_temp_arq 
+0x362c 003318 fetch 1 ,mem_arq 
+0x362d 003319 icompare 0x04 ,temp 
+0x362e 003320 nbranch rx_type_dispatch ,true 
+0x362f 003321 bmark0 mark_am_addr_broadcast ,failed_seqn 
+0x3630 003322 bbit0 bcast1 ,rx_type_dispatch 
+:      003323 failed_seqn:
+0x3631 003324 set1 mark_old_packet ,mark 
+:      003325 rx_type_dispatch:
+0x3632 003326 set0 mark_ext_patch ,mark 
+0x3633 003327 bpatch patch0b_4 ,mem_patch0b 
+0x3634 003328 deposit type 
+0x3635 003329 beq type_dm1 ,process_dm1 
+0x3636 003330 beq type_dh1 ,process_dh1 
+0x3637 003331 beq type_hv3 ,process_hev 
+0x3638 003332 beq type_3dh1 ,process_3dh1 
+0x3639 003333 arg 4 ,temp 
+0x363a 003334 call reserve_slot 
+0x363b 003335 beq type_dm3 ,process_dm3 
+0x363c 003336 beq type_dh3 ,process_dh3 
+0x363d 003337 arg 8 ,temp 
+0x363e 003338 call reserve_slot 
+0x363f 003339 beq type_dm5 ,process_dm5 
+0x3640 003340 beq type_dh5 ,process_dh5 
+0x3641 003341 rtn 
+:      003344 process_hev:
+0x3642 003345 set0 mark_ext_patch ,mark 
+0x3643 003346 bpatch patch0b_5 ,mem_patch0b 
+0x3644 003347 enable decode_fec0 
+0x3645 003348 enable enable_crc 
+0x3646 003349 enable encrypt 
+0x3647 003350 arg mem_sco_ibuf ,contw 
+0x3648 003351 force 30 ,loopcnt 
+:      003352 process_hev_loop:
+0x3649 003353 parse demod ,bucket ,8 
+0x364a 003354 rshift3 pwindow ,pdata 
+0x364b 003355 istore 1 ,contw 
+0x364c 003356 loop process_hev_loop 
+0x364d 003357 bmark0 mark_esco ,end_of_packet 
+0x364e 003358 parse demod ,bucket ,16 
+0x364f 003359 nsetflag crc_failed ,mark_esco_rxok ,mark 
+0x3650 003360 call test_esco ,crc_failed 
+0x3651 003361 branch error_payload ,crc_failed 
+0x3652 003362 branch ack_payload 
+:      003364 test_esco:
+0x3653 003365 deposit clke 
+0x3654 003366 store 6 ,mem_display 
+0x3655 003367 rtn 
+:      003369 process_poll:
+0x3656 003370 branch end_of_packet 
+:      003372 process_dm3:
+:      003373 process_dm5:
+0x3657 003374 set1 mark_longpacket ,mark 
+:      003375 process_dm1:
+0x3658 003376 enable decode_fec2 
+0x3659 003377 branch process_dmh 
+:      003379 process_dh3:
+:      003380 process_dh5:
+0x365a 003381 set1 mark_longpacket ,mark 
+:      003382 process_3dh1:
+0x365b 003383 set1 psk3m ,radio_ctrl 
+:      003384 process_dh1:
+0x365c 003385 enable decode_fec0 
+:      003386 process_dmh:
+0x365d 003387 set0 mark_ext_patch ,mark 
+0x365e 003388 bpatch patch0b_6 ,mem_patch0b 
+0x365f 003389 bmark1 mark_rxbuf_inuse ,end_of_packet 
+0x3660 003390 isolate0 psk ,radio_ctrl 
+0x3661 003391 branch process_dmh_noedr ,true 
+0x3662 003392 disable enable_white 
+0x3663 003393 enable decode_fec0 
+0x3664 003394 disable decode_fec2 
+0x3665 003395 add clkn_bt ,2 ,timeup 
+0x3666 003396 correlate clkn_bt ,meet 
+0x3667 003397 nbranch error_payload ,sync 
+0x3668 003398 set1 mark_longpacket ,mark 
+0x3669 003399 enable enable_white 
+:      003400 process_dmh_noedr:
+0x366a 003401 set0 mark_ext_patch ,mark 
+0x366b 003402 bpatch patch0b_7 ,mem_patch0b 
+0x366c 003403 enable encrypt 
+0x366d 003404 enable enable_crc 
+0x366e 003405 parse demod ,bucket ,3 
+0x366f 003406 rshift8 pwindow ,pdata 
+0x3670 003407 store 1 ,mem_lch_code 
+0x3671 003408 parse demod ,bucket ,5 
+0x3672 003409 bmark1 mark_longpacket ,process_dmh_long 
+0x3673 003410 rshift3 pwindow ,loopcnt 
+0x3674 003411 rshift3 loopcnt ,loopcnt 
+0x3675 003412 branch process_dmh_common 
+:      003413 process_dmh_long:
+0x3676 003414 parse demod ,bucket ,5 
+0x3677 003415 rshift pwindow ,loopcnt 
+0x3678 003416 parse demod ,bucket ,3 
+:      003417 process_dmh_common:
+0x3679 003418 set0 mark_ext_patch ,mark 
+0x367a 003419 bpatch patch0c_0 ,mem_patch0c 
+0x367b 003420 deposit loopcnt 
+0x367c 003421 store 2 ,mem_len 
+0x367d 003422 branch process_dmh_data_end ,blank 
+0x367e 003423 isub mask3ff ,null 
+0x367f 003424 branch error_payload ,positive 
+0x3680 003425 set0 mark_ext_patch ,mark 
+0x3681 003426 bpatch patch0c_1 ,mem_patch0c 
+0x3682 003427 set0 mark_fhs_eir ,mark 
+0x3683 003428 fetch 1 ,mem_lch_code 
+0x3684 003429 and_into 0x03 ,pdata 
+0x3685 003430 arg mem_rxbuf ,contw 
+0x3686 003431 beq llid_lmp ,process_lmp 
+0x3687 003432 bmark1 mark_testmode ,process_dmh_data 
+0x3688 003433 fetch 1 ,mem_device_option 
+0x3689 003434 beq dvc_op_hci ,process_dmh_acl 
+0x368a 003436 fetch 1 ,mem_lch_code 
+0x368b 003437 and_into 0x03 ,pdata 
+0x368c 003438 beq llid_l2cap_start ,process_dmh_data_l2cap_start_pkt 
+0x368d 003439 beq llid_l2cap_cont ,process_dmh_data_l2cap_continue_pkt 
+0x368e 003440 branch error_payload 
+:      003442 process_lmp:
+0x368f 003443 fetch 2 ,mem_len 
+0x3690 003444 sub pdata ,0x70 ,null 
+0x3691 003445 nbranch error_payload ,positive 
+0x3692 003446 bmark1 mark_old_packet ,ack_payload 
+0x3693 003447 branch process_dmh_data 
+:      003449 process_dmh_acl:
+0x3694 003450 set0 mark_ext_patch ,mark 
+0x3695 003451 bpatch patch0c_2 ,mem_patch0c 
+0x3696 003452 bmark1 mark_old_packet ,ack_payload 
+0x3697 003453 fetch 2 ,mem_len 
+0x3698 003454 branch error_payload ,blank 
+0x3699 003455 call hci_check_bcsp_protocol 
+0x369a 003456 nbranch process_dmh_acl_check_h4_buff ,true 
+:      003457 process_dmh_acl_bcsp:
+0x369b 003458 fetcht 2 ,mem_h5tx_free 
+0x369c 003459 increase 10 ,pdata 
+0x369d 003460 isub temp ,null 
+0x369e 003461 nbranch process_dmh_acl_packet ,positive 
+0x369f 003462 call hci_dispatch 
+0x36a0 003463 branch process_dmh_acl_bcsp 
+:      003464 process_dmh_acl_check_h4_buff:
+0x36a1 003465 hfetch 2 ,core_uart_txitems 
+0x36a2 003466 arg 300 ,temp 
+0x36a3 003467 isub temp ,null 
+0x36a4 003468 branch error_payload ,positive 
+0x36a5 003469 fetch 2 ,mem_acl_credits 
+0x36a6 003470 branch error_payload ,blank 
+:      003471 process_dmh_acl_packet:
+0x36a7 003472 set0 mark_ext_patch ,mark 
+0x36a8 003473 bpatch patch0c_3 ,mem_patch0c 
+0x36a9 003474 call hci_get_packet_ptr 
+0x36aa 003475 fetch 1 ,mem_conn_handle 
+0x36ab 003476 fetcht 1 ,mem_lch_code 
+0x36ac 003477 and_into 3 ,temp 
+0x36ad 003478 lshift8 temp ,temp 
+0x36ae 003479 lshift4 temp ,temp 
+0x36af 003480 ior temp ,pdata 
+0x36b0 003481 istore 2 ,contwu 
+0x36b1 003482 fetcht 2 ,mem_len 
+0x36b2 003483 copy temp ,loopcnt 
+0x36b3 003484 istoret 2 ,contwu 
+:      003485 process_dmh_acl_copy:
+0x36b4 003486 set0 mark_ext_patch ,mark 
+0x36b5 003487 bpatch patch0c_4 ,mem_patch0c 
+0x36b6 003488 parse demod ,bucket ,8 
+0x36b7 003489 rshift3 pwindow ,pdata 
+0x36b8 003490 istore 1 ,contwu 
+0x36b9 003491 loop process_dmh_acl_copy 
+0x36ba 003492 add temp ,4 ,loopcnt 
+0x36bb 003493 call hci_check_bcsp_protocol 
+0x36bc 003494 nbranch process_dmh_acl_send_h4 ,true 
+0x36bd 003495 set1 mark_h5tx_rp ,mark 
+0x36be 003496 force 6 ,queue 
+0x36bf 003497 call bcsp_send_packet 
+0x36c0 003498 branch process_dmh_data_end 
+:      003499 process_dmh_acl_send_h4:
+0x36c1 003500 call h4_send_packet_acl 
+0x36c2 003501 branch process_dmh_data_end 
+:      003503 process_dmh_data_l2cap_start_pkt:
+0x36c3 003504 set0 mark_ext_patch ,mark 
+0x36c4 003505 bpatch patch0c_5 ,mem_patch0c 
+0x36c5 003506 bmark1 mark_old_packet ,ack_payload 
+0x36c6 003507 fetch 2 ,mem_len 
+0x36c7 003508 arg 0x2e0 ,temp 
+0x36c8 003509 isub temp ,null 
+0x36c9 003510 branch error_payload ,positive 
+0x36ca 003511 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x36cb 003512 bbit0 l2cap_inuse_buff1 ,process_dmh_data_into_buff1 
+0x36cc 003513 bbit0 l2cap_inuse_buff2 ,process_dmh_data_into_buff2 
+0x36cd 003514 branch end_of_packet 
+:      003515 process_dmh_data_into_buff1:
+0x36ce 003516 jam 1 ,mem_l2cap_rxbuff_new 
+0x36cf 003517 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x36d0 003518 bne 0 ,end_of_packet 
+0x36d1 003519 arg mem_l2cap_rxbuff1 ,contw 
+0x36d2 003520 branch process_dmh_data 
+:      003521 process_dmh_data_into_buff2:
+0x36d3 003522 jam 2 ,mem_l2cap_rxbuff_new 
+0x36d4 003523 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x36d5 003524 bne 0 ,end_of_packet 
+0x36d6 003525 arg mem_l2cap_rxbuff2 ,contw 
+0x36d7 003526 branch process_dmh_data 
+:      003528 process_dmh_data_l2cap_continue_pkt:
+0x36d8 003529 set0 mark_ext_patch ,mark 
+0x36d9 003530 bpatch patch0c_6 ,mem_patch0c 
+0x36da 003531 bmark1 mark_old_packet ,ack_payload 
+0x36db 003532 fetch 2 ,mem_len 
+0x36dc 003533 arg 0x2e0 ,temp 
+0x36dd 003534 isub temp ,null 
+0x36de 003535 branch error_payload ,positive 
+0x36df 003536 fetch 1 ,mem_l2cap_rxbuff_new 
+0x36e0 003537 beq 1 ,process_dmh_data_l2cap_continue_pkt1 
+0x36e1 003538 beq 2 ,process_dmh_data_l2cap_continue_pkt2 
+0x36e2 003539 branch end_of_packet 
+:      003540 process_dmh_data_l2cap_continue_pkt1:
+0x36e3 003541 arg mem_l2cap_rxbuff1 ,contw 
+0x36e4 003542 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x36e5 003543 iadd contw ,contw 
+0x36e6 003544 branch process_dmh_data 
+:      003545 process_dmh_data_l2cap_continue_pkt2:
+0x36e7 003546 arg mem_l2cap_rxbuff2 ,contw 
+0x36e8 003547 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x36e9 003548 iadd contw ,contw 
+:      003549 process_dmh_data:
+0x36ea 003550 parse demod ,bucket ,8 
+0x36eb 003551 rshift3 pwindow ,pdata 
+0x36ec 003552 istore 1 ,contw 
+0x36ed 003553 loop process_dmh_data 
+:      003554 process_dmh_data_end:
+0x36ee 003555 set0 mark_ext_patch ,mark 
+0x36ef 003556 bpatch patch0c_7 ,mem_patch0c 
+0x36f0 003557 parse demod ,bucket ,16 
+0x36f1 003558 branch error_payload_crc ,crc_failed 
+0x36f2 003559 call lpm_hci_wake_dispatch 
+0x36f3 003560 fetch 1 ,mem_l2cap_flow_ctrl_flag 
+0x36f4 003561 beq l2cap_flow_ctrl_enable ,end_of_packet 
+0x36f5 003562 bmark1 mark_testmode ,process_dmh_cont 
+0x36f6 003563 bmark1 mark_old_packet ,redundant_payload 
+0x36f7 003564 fetch 1 ,mem_lch_code 
+0x36f8 003565 compare 3 ,pdata ,3 
+0x36f9 003566 branch process_dmh_cont ,true 
+0x36fa 003567 fetch 2 ,mem_len 
+0x36fb 003568 branch process_dmh_cont ,blank 
+0x36fc 003569 fetch 1 ,mem_device_option 
+0x36fd 003570 beq dvc_op_hci ,process_dmh_cont 
+0x36fe 003571 set0 mark_ext_patch ,mark 
+0x36ff 003572 bpatch patch0d_0 ,mem_patch0d 
+0x3700 003573 fetch 1 ,mem_l2cap_rxbuff_new 
+0x3701 003574 beq 1 ,process_l2cap_pass_crc_buff1 
+0x3702 003575 beq 2 ,process_l2cap_pass_crc_buff2 
+0x3703 003576 branch assert 
+:      003577 process_l2cap_pass_crc_buff1:
+0x3704 003578 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3705 003579 fetcht 2 ,mem_len 
+0x3706 003580 iadd temp ,pdata 
+0x3707 003581 store 2 ,mem_l2cap_rxbuff1_len 
+0x3708 003582 beq 0 ,assert 
+0x3709 003583 fetcht 2 ,mem_l2cap_rxbuff1 
+0x370a 003584 increase 4 ,temp 
+0x370b 003585 isub temp ,null 
+0x370c 003586 call l2cap_buff1_inuse ,zero 
+0x370d 003587 branch process_dmh_cont 
+:      003588 process_l2cap_pass_crc_buff2:
+0x370e 003589 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x370f 003590 fetcht 2 ,mem_len 
+0x3710 003591 iadd temp ,pdata 
+0x3711 003592 store 2 ,mem_l2cap_rxbuff2_len 
+0x3712 003593 beq 0 ,assert 
+0x3713 003594 fetcht 2 ,mem_l2cap_rxbuff2 
+0x3714 003595 add temp ,4 ,temp 
+0x3715 003596 isub temp ,null 
+0x3716 003597 call l2cap_buff2_inuse ,zero 
+0x3717 003598 branch process_dmh_cont 
+:      003599 process_dmh_cont:
+0x3718 003600 set0 mark_ext_patch ,mark 
+0x3719 003601 bpatch patch0d_1 ,mem_patch0d 
+0x371a 003602 fetcht 1 ,mem_state_map 
+0x371b 003603 fetch 1 ,mem_lch_code 
+0x371c 003604 compare 3 ,pdata ,0x03 
+0x371d 003605 setflag true ,smap_rxlmp ,temp 
+0x371e 003606 nsetflag true ,smap_rxl2cap ,temp 
+0x371f 003607 storet 1 ,mem_state_map 
+0x3720 003608 nbranch process_dmh_cont_rxbuf_not_use ,true 
+0x3721 003609 set1 mark_rxbuf_inuse ,mark 
+:      003610 process_dmh_cont_rxbuf_not_use:
+0x3722 003611 bmark0 mark_testmode ,ack_payload 
+0x3723 003612 isolate1 smap_rxlmp ,temp 
+0x3724 003613 branch ack_payload ,true 
+0x3725 003614 fetch 2 ,mem_tst_pktcnt_crc 
+0x3726 003615 increase 1 ,pdata 
+0x3727 003616 store 2 ,mem_tst_pktcnt_crc 
+0x3728 003617 set1 mark_loopback ,mark 
+0x3729 003618 set0 smap_rxl2cap ,temp 
+0x372a 003619 set0 mark_rxbuf_inuse ,mark 
+0x372b 003620 storet 1 ,mem_state_map 
+:      003621 ack_payload:
+0x372c 003622 set0 mark_ext_patch ,mark 
+0x372d 003623 bpatch patch0d_2 ,mem_patch0d 
+0x372e 003624 fetcht 1 ,mem_temp_arq 
+0x372f 003625 fetch 1 ,mem_arq 
+0x3730 003626 set1 arqnx ,pdata 
+0x3731 003627 isolate1 seqn ,temp 
+0x3732 003628 setflag true ,seqn ,pdata 
+0x3733 003629 isolate1 mark_am_addr_broadcast ,mark 
+0x3734 003630 setflag true ,bcast1 ,pdata 
+0x3735 003631 store 1 ,mem_arq 
+0x3736 003632 fetch 2 ,mem_len 
+0x3737 003633 nbranch end_of_packet ,blank 
+0x3738 003634 fetch 1 ,mem_state_map 
+0x3739 003635 set0 smap_rxl2cap ,pdata 
+0x373a 003636 store 1 ,mem_state_map 
+0x373b 003637 fetch 1 ,mem_lch_code 
+0x373c 003638 compare 0x01 ,pdata ,0x07 
+0x373d 003640 branch end_of_packet 
+:      003642 error_header:
+0x373e 003643 set0 mark_ext_patch ,mark 
+0x373f 003644 bpatch patch0d_3 ,mem_patch0d 
+0x3740 003645 disable match 
+0x3741 003646 fetch 2 ,mem_rx_hec_err 
+0x3742 003647 increase 1 ,pdata 
+0x3743 003648 store 2 ,mem_rx_hec_err 
+0x3744 003649 branch end_of_packet 
+:      003650 error_payload_crc:
+0x3745 003651 fetch 2 ,mem_rx_crc_err 
+0x3746 003652 increase 1 ,pdata 
+0x3747 003653 store 2 ,mem_rx_crc_err 
+0x3748 003654 call discard_pkt 
+0x3749 003655 bmark0 mark_testmode ,error_payload 
+0x374a 003656 set1 mark_loopback ,mark 
+:      003657 error_payload:
+0x374b 003658 branch end_of_packet 
+:      003660 discard_pkt:
+0x374c 003661 set0 mark_ext_patch ,mark 
+0x374d 003662 bpatch patch0d_4 ,mem_patch0d 
+0x374e 003663 fetch 1 ,mem_lch_code 
+0x374f 003664 compare 3 ,pdata ,0x03 
+0x3750 003665 nbranch discard_pkt_l2cap ,true 
+:      003666 discard_pkt_lmp:
+0x3751 003667 fetcht 1 ,mem_state_map 
+0x3752 003668 set0 smap_rxlmp ,temp 
+0x3753 003669 storet 1 ,mem_state_map 
+0x3754 003670 rtn 
+:      003671 discard_pkt_l2cap:
+0x3755 003674 fetcht 1 ,mem_state_map 
+0x3756 003675 set0 smap_rxl2cap ,temp 
+0x3757 003676 storet 1 ,mem_state_map 
+0x3758 003677 branch h4_send_acl_trigger_clear 
+:      003679 redundant_payload:
+0x3759 003680 fetch 1 ,mem_arq 
+0x375a 003681 set1 arqnx ,pdata 
+0x375b 003682 store 1 ,mem_arq 
+:      003683 end_of_packet:
+0x375c 003684 set0 mark_ext_patch ,mark 
+0x375d 003685 bpatch patch0d_5 ,mem_patch0d 
+0x375e 003686 disable encode_fec0 
+0x375f 003687 disable encode_fec2 
+0x3760 003688 disable decode_fec0 
+0x3761 003689 disable decode_fec2 
+0x3762 003690 disable enable_crc 
+0x3763 003691 disable encrypt 
+0x3764 003692 disable enable_white 
+0x3765 003693 branch shutdown_radio ,is_rx 
+0x3766 003694 until null ,tx_clear 
+0x3767 003695 nop 100 
+0x3768 003696 branch shutdown_radio 
+:      003698 process_fhs:
+0x3769 003699 set0 mark_ext_patch ,mark 
+0x376a 003700 bpatch patch0d_6 ,mem_patch0d 
+0x376b 003701 enable enable_crc 
+0x376c 003702 enable decode_fec2 
+0x376d 003703 parse demod ,bucket ,72 
+0x376e 003704 isolate1 58 ,pdata 
+0x376f 003705 setflag true ,mark_fhs_eir ,mark 
+0x3770 003706 copy bt_adr ,temp 
+0x3771 003707 ialigned bt_adr 
+0x3772 003708 ialigned fhs0 
+0x3773 003709 pulse recalc 
+0x3774 003710 setsect 2 ,0xfffff 
+0x3775 003711 setsect 3 ,0x0ffff 
+0x3776 003712 nop 32 
+0x3777 003713 iverify fhs_parity 
+0x3778 003714 deposit lap 
+0x3779 003715 store 3 ,extm_lap 
+0x377a 003716 deposit uap 
+0x377b 003717 store 1 ,extm_uap 
+0x377c 003718 copy temp ,bt_adr 
+0x377d 003719 branch fhs_parity_ok ,true 
+0x377e 003720 branch error_payload 
+:      003721 fhs_parity_ok:
+0x377f 003722 set0 mark_ext_patch ,mark 
+0x3780 003723 bpatch patch0d_7 ,mem_patch0d 
+0x3781 003724 parse demod ,bucket ,72 
+0x3782 003725 ialigned fhs1 
+0x3783 003726 ialigned am_addr 
+0x3784 003727 ialigned nap 
+0x3785 003728 ialigned regb 
+0x3786 003729 force 0 ,pdata 
+0x3787 003730 parse demod ,bucket ,16 
+0x3788 003731 branch error_payload ,crc_failed 
+0x3789 003732 setarg 0x0ffffffc 
+0x378a 003733 iand regb ,pdata 
+0x378b 003734 store 4 ,mem_clke_bt 
+0x378c 003735 deposit fhs_class 
+0x378d 003736 store 3 ,extm_class 
+0x378e 003737 deposit fhs_misc 
+0x378f 003738 store 1 ,extm_fhs_misc 
+0x3790 003739 deposit am_addr 
+0x3791 003740 store 1 ,extm_newconn_am_addr 
+0x3792 003741 deposit nap 
+0x3793 003742 store 2 ,extm_nap 
+0x3794 003743 deposit bt_clk 
+0x3795 003744 inject rxf ,32 
+0x3796 003745 compare type_fhs ,type ,0x0f 
+0x3797 003746 setflag true ,mark_fhs_already_good ,mark 
+0x3798 003747 branch end_of_packet 
+:      003749 clear_got_tx:
+0x3799 003750 set0 mark_ext_patch ,mark 
+0x379a 003751 bpatch patch0e_0 ,mem_patch0e 
+0x379b 003752 fetch 1 ,mem_arq 
+0x379c 003753 rtnbit0 wack 
+0x379d 003754 set0 wack ,pdata 
+0x379e 003755 setflip seqnx ,pdata 
+0x379f 003756 store 1 ,mem_arq 
+0x37a0 003757 fetch 1 ,mem_last_type 
+0x37a1 003758 beq type_lmp ,clear_got_txlmp 
+0x37a2 003759 rtneq type_hv3 
+0x37a3 003760 fetch 1 ,mem_op 
+0x37a4 003761 rtnbit0 op_txl2cap ,pdata 
+0x37a5 003762 set0 op_txl2cap ,pdata 
+0x37a6 003763 set1 op_pkt_comp ,pdata 
+0x37a7 003764 store 1 ,mem_op 
+0x37a8 003765 set0 mark_tx_l2cap ,mark 
+0x37a9 003766 fetch 1 ,mem_device_option 
+0x37aa 003767 rtneq dvc_op_hci 
+0x37ab 003768 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x37ac 003769 nrtn blank 
+0x37ad 003770 fetch 1 ,mem_op 
+0x37ae 003771 set0 op_pkt_comp ,pdata 
+0x37af 003772 store 1 ,mem_op 
+0x37b0 003773 branch l2cap_malloc_free 
+:      003775 clear_got_txlmp:
+0x37b1 003776 set0 mark_ext_patch ,mark 
+0x37b2 003777 bpatch patch0e_1 ,mem_patch0e 
+0x37b3 003778 fetch 1 ,mem_lmo_header_opcode 
+0x37b4 003779 rshift pdata ,pdata 
+0x37b5 003780 beq lmp_start_encryption_req ,start_encryption 
+0x37b6 003781 beq lmp_stop_encryption_req ,stop_encryption 
+0x37b7 003782 beq lmp_unsniff_req ,sniff_exit 
+0x37b8 003783 beq lmp_escape ,clear_lmp_escape 
+0x37b9 003784 beq lmp_remove_sco_link_req ,stop_sco 
+0x37ba 003785 rtnne lmp_accepted 
+0x37bb 003786 fetch 1 ,mem_lmo_payload 
+0x37bc 003787 beq lmp_sco_link_req ,sco_link_req_by_slave 
+0x37bd 003788 beq lmp_start_encryption_req ,clear_send_setup_complete 
+0x37be 003789 rtn 
+:      003791 clear_lmp_escape:
+0x37bf 003792 fetch 1 ,mem_lmo_payload 
+0x37c0 003793 set1 7 ,pdata 
+0x37c1 003794 beq lmp_ext_remove_esco_req ,stop_sco 
+0x37c2 003795 rtn 
+:      003796 clear_send_setup_complete:
+0x37c3 003797 rtn master 
+0x37c4 003798 fetch 1 ,mem_state 
+0x37c5 003799 rtnbit1 state_conn_comp 
+0x37c6 003800 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x37c7 003801 rtn 
+:      003804 sco_link_req_by_slave:
+0x37c8 003805 rtn master 
+0x37c9 003806 fetch 1 ,mem_mode 
+0x37ca 003807 isolate1 send_sco_when_slave ,pdata 
+0x37cb 003808 branch clean_mem_mode ,true 
+0x37cc 003810 rtn 
+:      003811 clean_mem_mode:
+0x37cd 003812 set0 send_sco_when_slave ,pdata 
+0x37ce 003813 store 1 ,mem_mode 
+0x37cf 003814 rtn 
+:      003816 start_encryption:
+0x37d0 003817 set0 mark_ext_patch ,mark 
+0x37d1 003818 bpatch patch0e_2 ,mem_patch0e 
+0x37d2 003819 fetch 1 ,mem_state_map 
+0x37d3 003820 set1 smap_encryption ,pdata 
+0x37d4 003821 store 1 ,mem_state_map 
+0x37d5 003822 hjam 1 ,core_encrypt 
+0x37d6 003823 fetch 1 ,mem_state 
+0x37d7 003824 isolate1 state_conn_comp ,pdata 
+0x37d8 003825 branch hci_send_encryption_change ,true 
+0x37d9 003826 rtn 
+:      003828 stop_encryption:
+0x37da 003829 set0 mark_ext_patch ,mark 
+0x37db 003830 bpatch patch0e_3 ,mem_patch0e 
+0x37dc 003831 fetch 1 ,mem_state_map 
+0x37dd 003832 set0 smap_encryption ,pdata 
+0x37de 003833 store 1 ,mem_state_map 
+0x37df 003834 hjam 0 ,core_encrypt 
+0x37e0 003835 rtn 
+:      003838 sniff_init:
+0x37e1 003839 set0 mark_ext_patch ,mark 
+0x37e2 003840 bpatch patch0e_4 ,mem_patch0e 
+0x37e3 003841 copy clkn_bt ,pdata 
+0x37e4 003842 store 4 ,mem_lpm_delay_after_sniff 
+0x37e5 003843 add clkn_bt ,3 ,rega 
+0x37e6 003844 branch sniff_init_master ,master 
+0x37e7 003845 add clke_bt ,3 ,rega 
+:      003846 sniff_init_master:
+0x37e8 003847 fetcht 2 ,mem_tsniff 
+0x37e9 003848 deposit rega 
+0x37ea 003849 set0 27 ,pdata 
+0x37eb 003850 idiv temp 
+0x37ec 003851 fetch 2 ,mem_dsniff 
+0x37ed 003852 call wait_div_end 
+0x37ee 003853 remainder regc 
+0x37ef 003854 isub regc ,pdata 
+0x37f0 003855 branch sniff_init_nowrap ,positive 
+0x37f1 003856 iadd temp ,pdata 
+:      003857 sniff_init_nowrap:
+0x37f2 003858 iadd rega ,pdata 
+0x37f3 003859 store 4 ,mem_sniff_anchor 
+0x37f4 003860 jam switch_flag_init ,mem_switch_flag 
+0x37f5 003861 fetch 1 ,mem_state 
+0x37f6 003862 set1 state_insniff ,pdata 
+0x37f7 003863 store 1 ,mem_state 
+0x37f8 003864 fetch 1 ,mem_sniff_attempt 
+0x37f9 003865 store 1 ,mem_current_sniff_attempt 
+0x37fa 003866 jam 0x80 ,mem_seqi 
+0x37fb 003867 setarg 0 
+0x37fc 003868 store 3 ,mem_sniff_rcv 
+0x37fd 003869 store 3 ,mem_sniff_lost 
+0x37fe 003870 store 1 ,mem_sniff_unint_lost 
+0x37ff 003871 jam bt_evt_enter_sniff ,mem_fifo_temp 
+0x3800 003872 call ui_ipc_send_event 
+0x3801 003873 fetch 2 ,mem_rx_window_sniff 
+0x3802 003874 store 2 ,mem_rx_window 
+0x3803 003875 nrtn master 
+0x3804 003876 add am_addr ,-1 ,queue 
+0x3805 003877 rtn 
+:      003879 sniff_exit:
+0x3806 003880 set0 mark_ext_patch ,mark 
+0x3807 003881 bpatch patch0e_5 ,mem_patch0e 
+0x3808 003882 fetch 1 ,mem_state 
+0x3809 003883 rtnbit0 state_insniff 
+0x380a 003884 set0 state_insniff ,pdata 
+0x380b 003885 store 1 ,mem_state 
+0x380c 003886 jam 0x7f ,mem_seqi 
+0x380d 003887 fetch 2 ,mem_rx_window_init 
+0x380e 003888 store 2 ,mem_rx_window 
+0x380f 003889 disable wake 
+0x3810 003890 jam bt_evt_exit_sniff ,mem_fifo_temp 
+0x3811 003891 branch ui_ipc_send_event 
+:      003894 check_attempt:
+0x3812 003895 set0 mark_ext_patch ,mark 
+0x3813 003896 bpatch patch0e_6 ,mem_patch0e 
+0x3814 003897 enable attempt 
+0x3815 003898 fetch 1 ,mem_state 
+0x3816 003899 bbit1 state_insniff ,check_attempt_sniff 
+0x3817 003900 rtnmark1 mark_testmode 
+0x3818 003901 fetch 1 ,mem_arq 
+0x3819 003902 rtnbit1 wack 
+0x381a 003903 fetch 1 ,mem_lmp_to_send 
+0x381b 003904 nrtn blank 
+0x381c 003905 fetch 1 ,mem_op 
+0x381d 003906 rtnbit1 op_txl2cap 
+:      003907 check_attempt_nomore:
+0x381e 003908 force 0 ,pdata 
+0x381f 003909 rtn 
+:      003911 check_attempt_sniff:
+0x3820 003912 bbit0 state_insco ,check_attempt_not_sco 
+0x3821 003913 fetch 1 ,mem_current_sniff_attempt 
+0x3822 003914 beq 2 ,check_attempt_sniff_restore_sco 
+0x3823 003915 fetch 1 ,mem_arq 
+0x3824 003916 bbit1 wack ,check_attempt_notimeout 
+0x3825 003917 bmark0 mark_esco_rxok ,check_attempt_notimeout 
+:      003918 check_attempt_sniff_restore_sco:
+0x3826 003919 call restore_esco 
+0x3827 003920 nbranch check_attempt_notimeout ,master 
+0x3828 003921 fetch 1 ,mem_lmp_to_send 
+0x3829 003922 nbranch check_attempt_notimeout ,blank 
+:      003923 check_attempt_sco_master:
+0x382a 003924 fetch 1 ,mem_sco_poll 
+0x382b 003925 increase -1 ,pdata 
+0x382c 003926 store 1 ,mem_sco_poll 
+0x382d 003927 nbranch check_attempt_nomore ,blank 
+0x382e 003928 jam param_sco_poll ,mem_sco_poll 
+0x382f 003929 branch check_attempt_notimeout 
+:      003931 check_attempt_not_sco:
+0x3830 003932 fetch 1 ,mem_current_sniff_attempt 
+0x3831 003933 bne 1 ,check_attempt_notimeout 
+0x3832 003934 fetch 1 ,mem_current_sniff_timeout 
+0x3833 003935 branch check_attempt_notimeout ,blank 
+0x3834 003936 increase -1 ,pdata 
+0x3835 003937 store 1 ,mem_current_sniff_timeout 
+0x3836 003938 fetch 1 ,mem_arq 
+0x3837 003939 rtnbit1 wack 
+0x3838 003940 nrtn match 
+:      003941 check_attempt_notimeout:
+0x3839 003942 fetch 1 ,mem_current_sniff_attempt 
+0x383a 003943 increase -1 ,pdata 
+0x383b 003944 store 1 ,mem_current_sniff_attempt 
+0x383c 003945 rtn 
+:      003948 sniff_check_window:
+0x383d 003949 set0 mark_ext_patch ,mark 
+0x383e 003950 bpatch patch0e_7 ,mem_patch0e 
+0x383f 003951 disable swfine 
+0x3840 003952 copy temp ,stop_watch 
+0x3841 003953 call context_search_sniff_window 
+0x3842 003954 disable user 
+0x3843 003955 nrtn zero 
+0x3844 003956 force 0 ,stop_watch 
+0x3845 003957 enable user 
+0x3846 003958 rtn 
+:      003961 check_esco_amaddr:
+0x3847 003962 fetch 1 ,mem_esco_addr 
+0x3848 003963 icompare 0xff ,am_addr 
+0x3849 003964 rtn 
+:      003966 play_sco:
+0x384a 003967 set0 mark_ext_patch ,mark 
+0x384b 003968 bpatch patch0f_0 ,mem_patch0f 
+0x384c 003969 jam 1 ,mem_max_slot 
+0x384d 003971 call enable_pcm 
+0x384e 003972 force 12 ,pdata 
+0x384f 003973 store 2 ,mem_tsniff 
+0x3850 003974 fetch 1 ,mem_esco_desco 
+0x3851 003975 lshift pdata ,pdata 
+0x3852 003976 store 2 ,mem_dsniff 
+0x3853 003977 fetch 1 ,mem_state 
+0x3854 003978 set1 state_insco ,pdata 
+0x3855 003979 store 1 ,mem_state 
+0x3856 003980 jam 3 ,mem_sniff_attempt 
+0x3857 003981 jam 3 ,mem_current_sniff_attempt 
+0x3858 003982 call sniff_init 
+0x3859 003983 force 0 ,temp 
+0x385a 003984 call hci_send_sco_complete 
+0x385b 003985 jam 0x50 ,mem_esco_arq 
+0x385c 003986 jam param_sco_poll ,mem_sco_poll 
+0x385d 003987 rtn 
+:      003989 stop_sco:
+0x385e 003990 set0 mark_ext_patch ,mark 
+0x385f 003991 bpatch patch0f_1 ,mem_patch0f 
+0x3860 003992 call sniff_exit 
+0x3861 003993 jam 5 ,mem_max_slot 
+0x3862 003995 call disable_pcm 
+0x3863 003996 fetch 1 ,mem_state 
+0x3864 003997 set0 state_insco ,pdata 
+0x3865 003998 store 1 ,mem_state 
+:      003999 stop_sco_hci:
+0x3866 004000 arg 0xe00 ,temp 
+0x3867 004001 jam hci_error_remote_user_ended_connection ,mem_hci_disconn_reason 
+0x3868 004002 branch hci_send_disconn_complete 
+:      004004 stop_esco:
+0x3869 004005 set0 mark_ext_patch ,mark 
+0x386a 004006 bpatch patch0f_2 ,mem_patch0f 
+0x386b 004007 jam default_neogotiation_state ,mem_neogotiation_state 
+0x386c 004008 call stop_sco 
+0x386d 004009 call restore_esco 
+0x386e 004010 set0 mark_esco ,mark 
+0x386f 004011 rtn 
+:      004013 parse_l2cap:
+0x3870 004014 set0 mark_ext_patch ,mark 
+0x3871 004015 bpatch patch0f_3 ,mem_patch0f 
+0x3872 004016 fetch 1 ,mem_device_option 
+0x3873 004017 beq dvc_op_hci ,parse_l2cap_hci 
+0x3874 004018 set0 mark_rxbuf_inuse ,mark 
+:      004019 parse_l2cap_cont:
+0x3875 004020 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x3876 004021 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x3877 004022 rtn blank 
+0x3878 004023 isolate1 l2cap_inuse_buff1 ,pdata 
+0x3879 004024 arg mem_l2cap_rxbuff1 ,contr 
+0x387a 004025 call process_rx_l2cap_pkt ,true 
+0x387b 004026 set0 mark_ext_patch ,mark 
+0x387c 004027 bpatch patch0f_4 ,mem_patch0f 
+0x387d 004028 fetch 1 ,mem_l2cap_rx_done 
+0x387e 004029 beq l2cap_rx_done ,parse_l2cap_release_buff1 
+0x387f 004031 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x3880 004032 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x3881 004033 rtnbit0 l2cap_inuse_buff2 
+0x3882 004034 arg mem_l2cap_rxbuff2 ,contr 
+0x3883 004035 call process_rx_l2cap_pkt 
+0x3884 004036 fetch 1 ,mem_l2cap_rx_done 
+0x3885 004037 beq l2cap_rx_done ,parse_l2cap_release_buff2 
+0x3886 004038 rtn 
+:      004040 parse_l2cap_exit:
+0x3887 004041 fetch 1 ,mem_state_map 
+0x3888 004042 set0 smap_rxl2cap ,pdata 
+0x3889 004043 store 1 ,mem_state_map 
+0x388a 004044 set0 mark_rxbuf_inuse ,mark 
+0x388b 004045 branch h4_send_acl_trigger_clear 
+:      004047 parse_l2cap_release_buff1:
+0x388c 004048 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x388d 004049 set0 l2cap_inuse_buff1 ,pdata 
+0x388e 004050 store 1 ,mem_l2cap_rxbuff_inuse 
+0x388f 004051 setarg 0 
+0x3890 004052 store 2 ,mem_l2cap_rxbuff1_len 
+0x3891 004053 rtn 
+:      004054 parse_l2cap_release_buff2:
+0x3892 004055 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x3893 004056 set0 l2cap_inuse_buff2 ,pdata 
+0x3894 004057 store 1 ,mem_l2cap_rxbuff_inuse 
+0x3895 004058 setarg 0 
+0x3896 004059 store 2 ,mem_l2cap_rxbuff2_len 
+0x3897 004060 rtn 
+:      004062 parse_l2cap_hci:
+0x3898 004063 fetch 1 ,mem_state_map 
+0x3899 004064 rtnbit0 smap_rxl2cap ,pdata 
+0x389a 004065 call h4_send_acl_trigger 
+0x389b 004066 fetch 2 ,mem_acl_credits 
+0x389c 004067 branch assert ,blank 
+0x389d 004068 increase -1 ,pdata 
+0x389e 004069 store 2 ,mem_acl_credits 
+0x389f 004070 branch parse_l2cap_exit 
+:      004072 l2cap_buff1_inuse:
+0x38a0 004073 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x38a1 004074 set1 l2cap_inuse_buff1 ,pdata 
+0x38a2 004075 store 1 ,mem_l2cap_rxbuff_inuse 
+0x38a3 004076 rtn 
+:      004078 l2cap_buff2_inuse:
+0x38a4 004079 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x38a5 004080 set1 l2cap_inuse_buff2 ,pdata 
+0x38a6 004081 store 1 ,mem_l2cap_rxbuff_inuse 
+0x38a7 004082 rtn 
+:      004088 slave_send_access:
+0x38a8 004089 set0 mark_ext_patch ,mark 
+0x38a9 004090 bpatch patch0f_5 ,mem_patch0f 
+0x38aa 004091 add clke_bt ,1 ,bt_clk 
+0x38ab 004092 call fetch_extm_bt_adr 
+0x38ac 004093 force 0x03 ,freq_mode 
+0x38ad 004094 call tx_radio_freq 
+0x38ae 004095 call start_transmitter 
+0x38af 004096 call start_tx_external 
+0x38b0 004097 branch send_access_word 
+:      004100 slave_conn_send_packet:
+0x38b1 004101 set0 mark_ext_patch ,mark 
+0x38b2 004102 bpatch patch0f_6 ,mem_patch0f 
+0x38b3 004103 call rf_setup_time_slave_slot 
+0x38b4 004104 deposit clke_bt 
+0x38b5 004105 fetcht 4 ,mem_next_btclk 
+0x38b6 004106 isub temp ,pdata 
+0x38b7 004107 rtnne 1 
+0x38b8 004108 compare type_null ,type ,0x1f 
+0x38b9 004109 nbranch slave_conn_send_access ,true 
+0x38ba 004110 fetch 1 ,mem_rx_type 
+0x38bb 004111 rtn blank 
+:      004112 slave_conn_send_access:
+0x38bc 004113 call slave_send_access 
+0x38bd 004114 compare type_id ,type ,0x1f 
+0x38be 004115 branch end_of_packet ,true 
+:      004116 transmit_packet:
+0x38bf 004117 rshift bt_clk ,temp 
+0x38c0 004118 or temp ,0x40 ,white_init 
+:      004119 transmit_packet_whitened:
+0x38c1 004120 set0 mark_ext_patch ,mark 
+0x38c2 004121 bpatch patch0f_7 ,mem_patch0f 
+0x38c3 004122 enable enable_white 
+0x38c4 004123 enable enable_hec 
+0x38c5 004124 enable encode_fec1 
+0x38c6 004125 set0 mark_longpacket ,mark 
+0x38c7 004126 deposit am_addr 
+0x38c8 004127 inject mod ,3 
+0x38c9 004128 deposit type 
+0x38ca 004129 inject mod ,4 
+0x38cb 004130 fetch 1 ,mem_arq 
+0x38cc 004131 inject bucket ,4 
+0x38cd 004132 inject mod ,3 
+0x38ce 004133 enable enable_parity 
+0x38cf 004134 inject mod ,8 
+0x38d0 004135 disable encode_fec1 
+0x38d1 004136 disable enable_parity 
+0x38d2 004137 disable enable_hec 
+0x38d3 004138 set0 psk3m ,radio_ctrl 
+0x38d4 004139 arg 0 ,temp 
+0x38d5 004140 call reserve_slot 
+0x38d6 004141 set0 mark_ext_patch ,mark 
+0x38d7 004142 bpatch patch10_0 ,mem_patch10 
+0x38d8 004143 and type ,0x1f ,pdata 
+0x38d9 004144 beq type_lmp ,transmit_lmp 
+0x38da 004145 beq type_null ,end_of_packet 
+0x38db 004146 beq type_poll ,end_of_packet 
+0x38dc 004147 beq type_fhs ,transmit_fhs 
+0x38dd 004148 beq type_dm1 ,transmit_dm1 
+0x38de 004149 beq type_dh1 ,transmit_dh1 
+0x38df 004150 beq type_hv3 ,transmit_hev 
+0x38e0 004151 beq type_3dh1 ,transmit_3dh1 
+0x38e1 004152 arg 4 ,temp 
+0x38e2 004153 call reserve_slot 
+0x38e3 004154 beq type_dm3 ,transmit_dm3 
+0x38e4 004155 beq type_dh3 ,transmit_dh3 
+0x38e5 004156 arg 8 ,temp 
+0x38e6 004157 call reserve_slot 
+0x38e7 004158 beq type_dh5 ,transmit_dh5 
+0x38e8 004159 branch transmit_dm5 
+:      004162 transmit_hev:
+0x38e9 004163 set0 mark_ext_patch ,mark 
+0x38ea 004164 bpatch patch10_1 ,mem_patch10 
+0x38eb 004165 enable encode_fec0 
+0x38ec 004166 enable enable_crc 
+0x38ed 004167 enable encrypt 
+0x38ee 004168 force 30 ,loopcnt 
+0x38ef 004169 arg mem_sco_obuf ,contr 
+:      004170 transmit_ev_loop:
+0x38f0 004171 ifetch 1 ,contr 
+0x38f1 004172 inject mod ,8 
+0x38f2 004173 loop transmit_ev_loop 
+0x38f3 004174 bmark1 mark_esco ,transmit_end 
+0x38f4 004175 branch end_of_packet 
+:      004177 transmit_fhs:
+0x38f5 004178 set0 mark_ext_patch ,mark 
+0x38f6 004179 bpatch patch10_2 ,mem_patch10 
+0x38f7 004180 fetch 1 ,mem_fhs_am_addr 
+0x38f8 004181 icopy am_addr 
+0x38f9 004182 fetch 1 ,mem_fhs_misc 
+0x38fa 004183 icopy fhs_misc 
+0x38fb 004184 fetch 3 ,mem_class 
+0x38fc 004185 icopy fhs_class 
+0x38fd 004186 fetch 2 ,mem_nap 
+0x38fe 004187 icopy nap 
+0x38ff 004188 enable enable_crc 
+0x3900 004189 enable encode_fec2 
+0x3901 004190 copy bt_adr ,rega 
+0x3902 004191 call fetch_self_bt_adr 
+0x3903 004192 pulse recalc 
+0x3904 004193 nop 32 
+0x3905 004194 copy bt_clk ,timeup 
+0x3906 004195 fetch 4 ,mem_clkn_bt 
+0x3907 004196 icopy bt_clk 
+0x3908 004197 preload fhs0 
+0x3909 004198 set1 58 ,pdata 
+0x390a 004199 inject mod ,72 
+0x390b 004200 preload fhs1 
+0x390c 004201 inject mod ,72 
+0x390d 004202 copy timeup ,bt_clk 
+0x390e 004203 copy rega ,bt_adr 
+0x390f 004204 enable enable_parity 
+0x3910 004205 inject mod ,16 
+0x3911 004206 disable enable_parity 
+0x3912 004207 branch end_of_packet 
+:      004209 transmit_lmp:
+0x3913 004210 set0 mark_ext_patch ,mark 
+0x3914 004211 bpatch patch10_3 ,mem_patch10 
+0x3915 004212 enable encrypt 
+0x3916 004213 enable enable_crc 
+0x3917 004214 enable encode_fec2 
+0x3918 004215 fetch 1 ,mem_lmo_header_length 
+0x3919 004216 and pdata ,0x1f8 ,temp 
+0x391a 004217 arg mem_lmo_header_length ,contr 
+0x391b 004218 increase 8 ,temp 
+:      004219 transmit_lmp_loop:
+0x391c 004220 add temp ,-72 ,regc 
+0x391d 004221 nbranch transmit_lmp_finish ,positive 
+0x391e 004222 ifetch 9 ,contr 
+0x391f 004223 inject mod ,72 
+0x3920 004224 copy regc ,temp 
+0x3921 004225 branch transmit_lmp_loop 
+:      004226 transmit_lmp_finish:
+0x3922 004227 ifetch 9 ,contr 
+0x3923 004228 iinject mod ,temp 
+0x3924 004229 branch transmit_end 
+:      004231 transmit_dm1:
+0x3925 004232 enable encode_fec2 
+0x3926 004233 branch transmit_dmh 
+:      004234 transmit_dm3:
+:      004235 transmit_dm5:
+0x3927 004236 enable encode_fec2 
+0x3928 004237 set1 mark_longpacket ,mark 
+0x3929 004238 branch transmit_dmh 
+:      004240 transmit_3dh1:
+0x392a 004241 set1 psk3m ,radio_ctrl 
+:      004242 transmit_dh1:
+0x392b 004243 enable encode_fec0 
+0x392c 004244 branch transmit_dmh 
+:      004246 transmit_dh3:
+:      004247 transmit_dh5:
+0x392d 004248 set1 psk3m ,radio_ctrl 
+0x392e 004249 enable encode_fec0 
+0x392f 004250 set1 mark_longpacket ,mark 
+:      004252 transmit_dmh:
+0x3930 004253 set0 mark_ext_patch ,mark 
+0x3931 004254 bpatch patch10_4 ,mem_patch10 
+0x3932 004255 fetch 1 ,mem_state_map 
+0x3933 004256 bbit0 smap_edr ,transmit_noedr 
+0x3934 004257 sub type ,3 ,null 
+0x3935 004258 branch transmit_noedr ,positive 
+0x3936 004259 disable encrypt 
+0x3937 004260 disable encode_fec2 
+0x3938 004261 enable encode_fec0 
+0x3939 004262 disable enable_white 
+0x393a 004263 set1 psk ,radio_ctrl 
+0x393b 004264 isolate1 psk3m ,radio_ctrl 
+0x393c 004265 branch transmit_edr3m ,true 
+0x393d 004266 setarg 0xabeee 
+0x393e 004267 inject mod ,20 
+0x393f 004268 branch transmit_edr_sync_end 
+:      004269 transmit_edr3m:
+0x3940 004270 setarg 0x5faeba 
+0x3941 004271 inject mod ,24 
+0x3942 004272 setarg 0x12 
+0x3943 004273 inject mod ,6 
+:      004274 transmit_edr_sync_end:
+0x3944 004275 enable enable_white 
+0x3945 004276 set1 mark_longpacket ,mark 
+:      004277 transmit_noedr:
+0x3946 004278 enable encrypt 
+0x3947 004279 enable enable_crc 
+0x3948 004280 bmark1 mark_loopback ,transmit_loopback 
+0x3949 004281 fetch 1 ,mem_tx_lch 
+0x394a 004282 inject mod ,3 
+0x394b 004283 fetch 2 ,mem_tx_len 
+0x394c 004284 iforce loopcnt 
+0x394d 004285 bmark1 mark_longpacket ,transmit_long 
+0x394e 004286 inject mod ,5 
+0x394f 004287 branch transmit_stuff 
+:      004288 transmit_long:
+0x3950 004289 inject mod ,13 
+:      004290 transmit_stuff:
+0x3951 004291 fetch 1 ,mem_device_option 
+0x3952 004292 beq dvc_op_hci ,transmit_stuff_hci 
+0x3953 004293 deposit loopcnt 
+0x3954 004294 branch transmit_end ,blank 
+0x3955 004295 fetch 2 ,mem_txptr 
+0x3956 004296 iforce contr 
+:      004297 transmit_stuff_loop:
+0x3957 004298 ifetch 1 ,contr 
+0x3958 004299 inject mod ,8 
+0x3959 004300 loop transmit_stuff_loop 
+0x395a 004301 branch transmit_end 
+:      004302 transmit_stuff_hci:
+0x395b 004303 fetch 2 ,mem_txptr 
+0x395c 004304 iforce contru 
+:      004305 transmit_stuff_hci_loop:
+0x395d 004306 ifetch 1 ,contru 
+0x395e 004307 inject mod ,8 
+0x395f 004308 loop transmit_stuff_hci_loop 
+:      004309 transmit_end:
+0x3960 004310 enable enable_parity 
+0x3961 004311 inject mod ,16 
+0x3962 004312 disable enable_parity 
+0x3963 004313 call set_wait_ack 
+0x3964 004314 fetch 1 ,mem_state_map 
+0x3965 004315 bbit0 smap_edr ,end_of_packet 
+0x3966 004316 force 0 ,pdata 
+0x3967 004317 inject mod ,6 
+0x3968 004318 branch end_of_packet 
+:      004321 transmit_loopback:
+0x3969 004322 set0 mark_ext_patch ,mark 
+0x396a 004323 bpatch patch10_5 ,mem_patch10 
+0x396b 004324 bmark1 mark_longpacket ,transmit_loopback_long 
+:      004325 transmit_loopback_short:
+0x396c 004326 fetch 1 ,mem_lch_code 
+0x396d 004327 inject mod ,3 
+0x396e 004328 fetch 1 ,mem_len 
+0x396f 004329 iforce regc 
+0x3970 004330 inject mod ,5 
+0x3971 004331 branch transmit_loopback_cont 
+:      004332 transmit_loopback_long:
+0x3972 004333 fetch 1 ,mem_lch_code 
+0x3973 004334 inject mod ,3 
+0x3974 004335 fetch 2 ,mem_len 
+0x3975 004336 iforce regc 
+0x3976 004337 inject mod ,13 
+:      004338 transmit_loopback_cont:
+0x3977 004339 arg mem_rxbuf ,contr 
+:      004340 transmit_loopback_loop:
+0x3978 004341 copy regc ,null 
+0x3979 004342 branch transmit_loopback_end ,zero 
+0x397a 004343 ifetch 1 ,contr 
+0x397b 004344 inject mod ,8 
+0x397c 004345 increase -1 ,regc 
+0x397d 004346 branch transmit_loopback_loop 
+:      004347 transmit_loopback_end:
+0x397e 004348 fetch 2 ,mem_tst_pktcnt_dmh 
+0x397f 004349 increase 1 ,pdata 
+0x3980 004350 store 2 ,mem_tst_pktcnt_dmh 
+0x3981 004351 branch transmit_end 
+:      004354 apply_switch_clke:
+0x3982 004355 fetch 4 ,mem_clke_bt 
+0x3983 004356 add pdata ,7 ,rega 
+0x3984 004357 fetch 2 ,mem_slot_offset 
+0x3985 004358 nbranch apply_switch_nozero ,blank 
+0x3986 004359 increase -3 ,rega 
+0x3987 004360 branch apply_switch_wait_loop 
+:      004361 apply_switch_nozero:
+0x3988 004362 mul32 pdata ,12 ,pdata 
+0x3989 004363 hfetcht 2 ,core_halfslot 
+0x398a 004364 increase 1 ,temp 
+:      004365 apply_switch_loop:
+0x398b 004366 isub temp ,pdata 
+0x398c 004367 nbranch apply_switch_bt ,positive 
+0x398d 004368 increase -1 ,rega 
+0x398e 004369 branch apply_switch_loop 
+:      004370 apply_switch_bt:
+0x398f 004371 sub pdata ,0 ,pdata 
+:      004372 apply_switch_wait_loop:
+0x3990 004373 until null ,oneslot 
+0x3991 004374 compare 0 ,clkn_bt ,3 
+0x3992 004375 nbranch apply_switch_wait_loop ,true 
+0x3993 004376 iforce clke_rt 
+0x3994 004377 copy rega ,clke_bt 
+0x3995 004378 iforce clke_rt 
+0x3996 004379 rtn 
+:      004382 calc_slot_offset:
+0x3997 004383 set0 mark_ext_patch ,mark 
+0x3998 004384 bpatch patch10_6 ,mem_patch10 
+0x3999 004385 until null ,halfslot 
+0x399a 004386 deposit clke 
+0x399b 004387 iforce contr 
+0x399c 004388 rshift16 ,pdata ,pdata 
+0x399d 004389 isub clkn_bt ,loopcnt 
+0x399e 004390 and_into 3 ,loopcnt 
+0x399f 004391 nbranch calc_bt_portion ,zero 
+0x39a0 004392 force 0 ,pdata 
+0x39a1 004393 branch calc_skip_bt 
+:      004394 calc_bt_portion:
+0x39a2 004395 arg 3750 ,temp 
+0x39a3 004396 force 0 ,pdata 
+:      004397 calc_slot_offset_loop:
+0x39a4 004398 iadd temp ,pdata 
+0x39a5 004399 loop calc_slot_offset_loop 
+:      004400 calc_skip_bt:
+0x39a6 004401 iadd contr ,pdata 
+0x39a7 004402 div pdata ,12 
+0x39a8 004403 call wait_div_end 
+0x39a9 004404 quotient pdata 
+0x39aa 004405 store 2 ,mem_slot_offset 
+0x39ab 004406 rtn 
+:      004408 calc_clke_offset:
+0x39ac 004409 set0 mark_ext_patch ,mark 
+0x39ad 004410 bpatch patch10_7 ,mem_patch10 
+0x39ae 004411 deposit clke 
+0x39af 004412 copy clkn ,temp 
+0x39b0 004413 isub temp ,null 
+0x39b1 004414 nsetflag positive ,44 ,pdata 
+0x39b2 004415 isub temp ,temp 
+0x39b3 004416 setarg 3750 
+0x39b4 004417 isolate0 15 ,temp 
+0x39b5 004418 branch calc_clke_pos ,true 
+0x39b6 004419 setarg -61786 
+0x39b7 004420 iadd temp ,temp 
+:      004421 calc_clke_pos:
+0x39b8 004422 storet 6 ,mem_le_clk_offset 
+0x39b9 004423 rtn le 
+0x39ba 004424 storet 6 ,mem_clk_offset 
+0x39bb 004425 rtn 
+:      004427 calc_clke:
+0x39bc 004428 disable clknt 
+0x39bd 004429 fetch 6 ,mem_le_clk_offset 
+0x39be 004430 branch calc_clke2 ,le 
+0x39bf 004431 fetch 6 ,mem_clk_offset 
+:      004432 calc_clke2:
+0x39c0 004433 iadd clkn ,alarm 
+0x39c1 004434 increase 10 ,alarm 
+0x39c2 004435 setarg 3750 
+0x39c3 004436 isub alarm ,pdata 
+0x39c4 004437 isolate0 15 ,pdata 
+0x39c5 004438 branch calc_clke_pos_adj ,true 
+0x39c6 004439 setarg 0xf15a 
+0x39c7 004440 iadd alarm ,alarm 
+:      004441 calc_clke_pos2:
+0x39c8 004442 copy alarm ,clke 
+0x39c9 004443 rtn 
+:      004444 calc_clke_pos_adj:
+0x39ca 004445 force 0 ,null 
+0x39cb 004446 branch calc_clke_pos2 
+:      004453 calc_radio_freq:
+0x39cc 004454 set0 mark_ext_patch ,mark 
+0x39cd 004455 bpatch patch11_0 ,mem_patch11 
+0x39ce 004456 call set_sync_on 
+0x39cf 004457 copy bt_clk ,pdata 
+0x39d0 004458 and_into 0x180 ,pdata 
+0x39d1 004459 compare 3 ,freq_mode ,0x07 
+0x39d2 004460 nbranch freq_not_connection ,true 
+0x39d3 004461 rshift3 pdata ,pdata 
+0x39d4 004462 iadd freq_index ,pdata 
+0x39d5 004463 branch do_hop_mod_now 
+:      004464 freq_not_connection:
+0x39d6 004465 copy freq_index ,pdata 
+:      004466 do_hop_mod_now:
+0x39d7 004467 div pdata ,79 
+0x39d8 004468 pulse recalc 
+0x39d9 004469 call wait_div_end 
+0x39da 004470 remainder rega 
+0x39db 004471 add rega ,-40 ,temp 
+0x39dc 004472 branch odd_half ,positive 
+0x39dd 004473 lshift rega ,temp 
+0x39de 004474 branch freq_result 
+:      004475 odd_half:
+0x39df 004476 lshift temp ,temp 
+0x39e0 004477 increase 1 ,temp 
+:      004478 freq_result:
+0x39e1 004479 set0 mark_ext_patch ,mark 
+0x39e2 004480 bpatch patch11_1 ,mem_patch11 
+0x39e3 004481 fetch 1 ,mem_mode 
+0x39e4 004482 bbit0 afh_change ,afh_process_con 
+:      004483 afh_process_0:
+0x39e5 004484 fetch 4 ,mem_afh_instant 
+0x39e6 004485 isub bt_clk ,null 
+0x39e7 004486 branch afh_process_con ,positive 
+0x39e8 004487 call afh_clear 
+0x39e9 004488 fetch 1 ,mem_afh_new_mod 
+0x39ea 004489 rtn blank 
+0x39eb 004490 fetch 1 ,mem_mode 
+0x39ec 004491 set1 afh_enable ,pdata 
+0x39ed 004492 store 1 ,mem_mode 
+0x39ee 004493 fetch 5 ,mem_afh_map_new 
+0x39ef 004494 store 5 ,mem_afh_map_lo 
+0x39f0 004495 ifetch 5 ,contr 
+0x39f1 004496 store 5 ,mem_afh_map_hi 
+0x39f2 004497 call afh_process_freq_map 
+:      004498 afh_process_con:
+0x39f3 004499 fetch 1 ,mem_mode 
+0x39f4 004500 rtnbit0 afh_enable 
+0x39f5 004501 isolate1 1 ,bt_clk 
+0x39f6 004502 branch afh_same_channel ,true 
+0x39f7 004503 rshift3 temp ,rega 
+0x39f8 004504 and temp ,7 ,queue 
+0x39f9 004505 setarg mem_afh_map_lo 
+0x39fa 004506 iadd rega ,rega 
+0x39fb 004507 ifetch 1 ,rega 
+0x39fc 004508 qisolate0 pdata 
+0x39fd 004509 branch afh_process_1 ,true 
+0x39fe 004510 deposit temp 
+0x39ff 004511 branch afh_process_end 
+:      004512 afh_process_1:
+0x3a00 004513 fetch 1 ,mem_afh_used 
+0x3a01 004514 iforce regb 
+0x3a02 004515 deposit bt_clk 
+0x3a03 004516 and_into 0x180 ,pdata 
+0x3a04 004517 rshift3 pdata ,pdata 
+0x3a05 004518 iadd freq_index ,pdata 
+0x3a06 004519 idiv regb 
+0x3a07 004520 setarg mem_afh_map 
+0x3a08 004521 call wait_div_end 
+0x3a09 004522 remainder rega 
+0x3a0a 004523 iadd rega ,contr 
+0x3a0b 004524 ifetch 1 ,contr 
+:      004525 afh_process_end:
+0x3a0c 004526 store 1 ,mem_afh_index 
+0x3a0d 004527 iforce temp 
+0x3a0e 004528 rtn 
+:      004530 afh_same_channel:
+0x3a0f 004531 fetch 1 ,mem_afh_index 
+0x3a10 004532 iforce temp 
+0x3a11 004533 rtn 
+:      004535 afh_clear:
+0x3a12 004536 fetch 1 ,mem_mode 
+0x3a13 004537 set0 afh_enable ,pdata 
+0x3a14 004538 set0 afh_change ,pdata 
+0x3a15 004539 store 1 ,mem_mode 
+0x3a16 004540 rtn 
+:      004546 afh_process_freq_map:
+0x3a17 004547 set0 mark_ext_patch ,mark 
+0x3a18 004548 bpatch patch11_2 ,mem_patch11 
+0x3a19 004549 arg mem_afh_map ,contw 
+0x3a1a 004550 force 10 ,loopcnt 
+0x3a1b 004551 call memset0 
+0x3a1c 004552 arg mem_afh_map ,contw 
+0x3a1d 004553 force 0 ,regc 
+0x3a1e 004554 force 2 ,queue 
+:      004555 process_freq_3:
+0x3a1f 004556 fetch 5 ,mem_afh_map_lo 
+0x3a20 004557 iforce temp 
+0x3a21 004558 compare 2 ,queue ,0xff 
+0x3a22 004559 branch process_freq_1 ,true 
+0x3a23 004560 rshift temp ,temp 
+:      004561 process_freq_1:
+0x3a24 004562 isolate0 0 ,temp 
+0x3a25 004563 branch process_freq_0 ,true 
+0x3a26 004564 deposit regc 
+0x3a27 004565 istore 1 ,contw 
+:      004566 process_freq_0:
+0x3a28 004567 rshift2 temp ,temp 
+0x3a29 004568 increase 2 ,regc 
+0x3a2a 004569 compare 40 ,regc ,0xfe 
+0x3a2b 004570 nbranch process_freq_2 ,true 
+0x3a2c 004571 fetch 5 ,mem_afh_map_hi 
+0x3a2d 004572 iforce temp 
+0x3a2e 004573 compare 2 ,queue ,0xff 
+0x3a2f 004574 branch process_freq_2 ,true 
+0x3a30 004575 rshift temp ,temp 
+:      004576 process_freq_2:
+0x3a31 004577 sub regc ,78 ,null 
+0x3a32 004578 branch process_freq_1 ,positive 
+0x3a33 004579 force 1 ,regc 
+0x3a34 004580 increase -1 ,queue 
+0x3a35 004581 nbranch process_freq_3 ,zero 
+0x3a36 004582 arg mem_afh_map ,rega 
+0x3a37 004583 deposit contw 
+0x3a38 004584 isub rega ,pdata 
+0x3a39 004585 store 1 ,mem_afh_used 
+0x3a3a 004586 rtn 
+:      004588 rx_radio_freq:
+0x3a3b 004589 set0 mark_ext_patch ,mark 
+0x3a3c 004590 bpatch patch11_3 ,mem_patch11 
+0x3a3d 004591 call calc_radio_freq 
+0x3a3e 004592 fetch 1 ,mem_debug_config 
+0x3a3f 004593 bbit0 debug_rx_fixed_freq ,rx_radio_freq_now 
+0x3a40 004594 fetcht 1 ,mem_rx_fixed_freq 
+:      004595 rx_radio_freq_now:
+0x3a41 004596 branch set_freq_rx 
+:      004599 tx_radio_freq:
+0x3a42 004600 set0 mark_ext_patch ,mark 
+0x3a43 004601 bpatch patch11_4 ,mem_patch11 
+0x3a44 004602 call calc_radio_freq 
+0x3a45 004603 fetch 1 ,mem_debug_config 
+0x3a46 004604 bbit0 debug_tx_fixed_freq ,tx_radio_freq_now 
+0x3a47 004605 fetcht 1 ,mem_tx_fixed_freq 
+:      004606 tx_radio_freq_now:
+0x3a48 004607 branch set_freq_tx 
+:      004610 fetch_giac:
+0x3a49 004611 force 0 ,uap 
+0x3a4a 004612 fetch 3 ,mem_glap 
+0x3a4b 004613 iforce lap 
+0x3a4c 004614 rtn 
+:      004616 fetch_page_bt_adr:
+0x3a4d 004617 set0 mark_ext_patch ,mark 
+0x3a4e 004618 bpatch patch11_5 ,mem_patch11 
+0x3a4f 004619 fetch 1 ,mem_hci_puap 
+0x3a50 004620 icopy uap 
+0x3a51 004621 fetch 3 ,mem_hci_plap 
+0x3a52 004622 icopy lap 
+0x3a53 004623 rtn 
+:      004625 fetch_self_bt_adr:
+0x3a54 004626 set0 mark_ext_patch ,mark 
+0x3a55 004627 bpatch patch11_6 ,mem_patch11 
+0x3a56 004628 fetch 2 ,mem_nap 
+0x3a57 004629 icopy nap 
+0x3a58 004630 fetch 1 ,mem_uap 
+0x3a59 004631 icopy uap 
+0x3a5a 004632 fetch 3 ,mem_lap 
+0x3a5b 004633 icopy lap 
+0x3a5c 004634 rtn 
+:      004636 fetch_extm_bt_adr:
+0x3a5d 004637 set0 mark_ext_patch ,mark 
+0x3a5e 004638 bpatch patch11_7 ,mem_patch11 
+0x3a5f 004639 fetch 2 ,mem_pnap 
+0x3a60 004640 icopy nap 
+0x3a61 004641 fetch 1 ,mem_puap 
+0x3a62 004642 icopy uap 
+0x3a63 004643 fetch 3 ,mem_plap 
+0x3a64 004644 icopy lap 
+0x3a65 004645 rtn 
+:      004648 fetch_diac:
+0x3a66 004649 bmark1 mark_all_diac ,fetch_diac_do 
+0x3a67 004650 rtnmark0 mark_inquiry_state 
+0x3a68 004651 rtnmark0 mark_periodical_diac 
+:      004652 fetch_diac_do:
+0x3a69 004653 and_into -256 ,lap 
+0x3a6a 004654 pulse recalc 
+0x3a6b 004655 nop 32 
+0x3a6c 004656 rtn 
+:      004659 shutdown_radio:
+0x3a6d 004660 set0 mark_ext_patch ,mark 
+0x3a6e 004661 bpatch patch12_0 ,mem_patch12 
+0x3a6f 004662 force 0 ,radio_ctrl 
+0x3a70 004663 disable is_rx 
+0x3a71 004664 disable is_tx 
+0x3a72 004665 pulse packet_end 
+0x3a73 004666 hjam 0x0 ,rfen_mdm 
+0x3a74 004667 hjam 0x0 ,rfen_tx 
+0x3a75 004668 hjam 0x0 ,rfen_rx 
+0x3a76 004669 hjam 0 ,rfen_sn 
+0x3a77 004670 hjam 0x70 ,rfen_msc 
+0x3a78 004671 hjam 0x0 ,rfen_adc 
+0x3a79 004672 rtn 
+:      004674 set_sync_on:
+0x3a7a 004675 set0 mark_ext_patch ,mark 
+0x3a7b 004676 bpatch patch12_1 ,mem_patch12 
+0x3a7c 004677 hjam 0x0 ,rfen_mdm 
+0x3a7d 004678 hjam 0x0 ,rfen_tx 
+0x3a7e 004679 hjam 0x18 ,rfen_rx 
+0x3a7f 004680 hjam 0xa7 ,rfen_sn 
+0x3a80 004681 hjam 0x7f ,rfen_msc 
+0x3a81 004682 rtn 
+:      004685 set_freq_rx:
+0x3a82 004686 set0 mark_ext_patch ,mark 
+0x3a83 004687 bpatch patch12_2 ,mem_patch12 
+0x3a84 004689 storet 1 ,mem_last_freq 
+0x3a85 004690 add temp ,rx_freq_offset ,rega 
+0x3a86 004691 branch rf_write_freq 
+:      004692 rf_rx_enable:
+0x3a87 004693 set0 mark_ext_patch ,mark 
+0x3a88 004694 bpatch patch12_3 ,mem_patch12 
+0x3a89 004695 hjam 0xcf ,rfen_tx 
+0x3a8a 004696 nop 10 
+0x3a8b 004697 hjam 0xff ,rfen_rx 
+0x3a8c 004698 hjam 0xaf ,rfen_sn 
+0x3a8d 004699 hjam 0xff ,rfen_msc 
+0x3a8e 004700 nop 10 
+0x3a8f 004701 hjam 0xa0 ,rfen_mdm 
+0x3a90 004702 rtn 
+:      004705 set_freq_tx:
+0x3a91 004706 set0 mark_ext_patch ,mark 
+0x3a92 004707 bpatch patch12_4 ,mem_patch12 
+0x3a93 004708 storet 1 ,mem_last_freq 
+0x3a94 004709 add temp ,tx_freq_offset ,rega 
+0x3a95 004710 call rf_write_freq 
+0x3a96 004711 setarg param_pll_setup 
+0x3a97 004712 call sleep 
+:      004713 txon:
+0x3a98 004714 hjam 0x1 ,rfen_adc 
+0x3a99 004715 hjam 0x3c ,rfen_rx 
+0x3a9a 004716 hjam 0xe0 ,rfen_tx 
+0x3a9b 004717 hjam 0xb7 ,rfen_sn 
+0x3a9c 004718 hjam 0x7f ,rfen_mdm 
+0x3a9d 004719 rtn 
+:      004721 initialize_radio:
+0x3a9e 004722 hjam clksel_rc ,core_clksel 
+0x3a9f 004723 call init_rf_regs 
+0x3aa0 004724 call init_agc_table 
+:      004725 initialize_radio_wait:
+0x3aa1 004726 fetch 2 ,mem_rf_init_ptr 
+0x3aa2 004727 bbit0 14 ,initialize_radio_wait 
+0x3aa3 004728 iforce contr 
+0x3aa4 004729 arg 0x8900 ,temp 
+:      004730 initialize_radio_loop:
+0x3aa5 004731 ifetch 1 ,contr 
+0x3aa6 004732 beq 0xff ,initialize_radio_cont 
+0x3aa7 004733 ior temp ,contw 
+0x3aa8 004734 ifetch 1 ,contr 
+0x3aa9 004735 istore 1 ,contw 
+0x3aaa 004736 branch initialize_radio_loop 
+:      004737 initialize_radio_cont:
+0x3aab 004738 set0 mark_ext_patch ,mark 
+0x3aac 004739 bpatch patch12_5 ,mem_patch12 
+0x3aad 004740 call lpm_cal_xtal_startup 
+0x3aae 004741 call switchto_dpllclk 
+0x3aaf 004743 setarg param_dpll_start_delay 
+0x3ab0 004744 iadd clkn_bt ,pdata 
+0x3ab1 004745 store 4 ,mem_dpll_clkn 
+0x3ab2 004746 set1 reset ,radio_ctrl 
+0x3ab3 004747 force 0 ,radio_ctrl 
+0x3ab4 004748 ncall do_rccal ,wake 
+0x3ab5 004749 branch set_rccal 
+:      004752 rf_write_freq:
+0x3ab6 004753 set0 mark_ext_patch ,mark 
+0x3ab7 004754 bpatch patch12_6 ,mem_patch12 
+0x3ab8 004755 setarg 2400 
+0x3ab9 004756 iadd rega ,temp 
+0x3aba 004757 fetch 1 ,mem_fcomp_mul 
+0x3abb 004758 hjam 0x04 ,rf_pll_rstn 
+0x3abc 004759 imul32 temp ,pdata 
+0x3abd 004760 fetcht 1 ,mem_fcomp_div 
+0x3abe 004761 idiv temp 
+0x3abf 004762 call wait_div_end 
+0x3ac0 004763 quotient rega 
+0x3ac1 004764 remainder pdata 
+0x3ac2 004765 lshift16 pdata ,pdata 
+0x3ac3 004766 lshift4 pdata ,pdata 
+0x3ac4 004767 idiv temp 
+0x3ac5 004768 call wait_div_end 
+0x3ac6 004769 quotient pdata 
+0x3ac7 004770 lshift8 pdata ,pdata 
+0x3ac8 004771 lshift pdata ,pdata 
+0x3ac9 004772 ior rega ,pdata 
+0x3aca 004773 hstore 4 ,rf_pll_intg 
+0x3acb 004774 hjam 0x44 ,rf_pll_rstn 
+0x3acc 004775 hjam 0xc4 ,rf_pll_rstn 
+0x3acd 004776 rtn 
+:      004779 do_rccal:
+0x3ace 004780 set0 mark_ext_patch ,mark 
+0x3acf 004781 bpatch patch12_7 ,mem_patch12 
+0x3ad0 004782 hjam 0x02 ,rfen_adc 
+0x3ad1 004783 setarg 250000 
+0x3ad2 004784 call sleep 
+0x3ad3 004785 hjam 0x7f ,rfen_rx 
+0x3ad4 004786 nop 130 
+0x3ad5 004787 hjam 0x30 ,rf_rccal_ctrl 
+0x3ad6 004788 hjam 0xd0 ,rfen_tx 
+0x3ad7 004789 hjam 0x70 ,rf_rccal_ctrl 
+0x3ad8 004790 hjam 0xf0 ,rf_rccal_ctrl 
+0x3ad9 004791 force 50 ,loopcnt 
+:      004792 do_rccal_loop:
+0x3ada 004793 hfetch 1 ,rf_rccal_result 
+0x3adb 004794 bbit1 5 ,do_rccal_end 
+0x3adc 004795 loop do_rccal_loop 
+:      004796 do_rccal_end:
+0x3add 004797 store 1 ,mem_rf_rccal 
+0x3ade 004798 hjam 0 ,rfen_tx 
+0x3adf 004799 hjam 0 ,rfen_rx 
+0x3ae0 004800 hjam 0x00 ,rfen_adc 
+0x3ae1 004801 rtn 
+:      004803 set_rccal:
+0x3ae2 004804 set0 mark_ext_patch ,mark 
+0x3ae3 004805 bpatch patch13_0 ,mem_patch13 
+0x3ae4 004806 fetch 1 ,mem_rf_rccal 
+0x3ae5 004807 set1 5 ,pdata 
+0x3ae6 004808 hstore 1 ,rf_rccal_ctrl 
+0x3ae7 004809 hfetcht 1 ,rf_bpf_ctrim 
+0x3ae8 004810 and_into 7 ,temp 
+0x3ae9 004811 lshift3 pdata ,pdata 
+0x3aea 004812 ior temp ,pdata 
+0x3aeb 004813 hstore 1 ,rf_bpf_ctrim 
+0x3aec 004814 hfetch 1 ,rf_bpf_ib 
+0x3aed 004815 set0 bpf_rccal ,pdata 
+0x3aee 004816 hstore 1 ,rf_bpf_ib 
+0x3aef 004817 hfetch 1 ,rf_adc_rccal 
+0x3af0 004818 set0 adc_rccal ,pdata 
+0x3af1 004819 hstore 1 ,rf_adc_rccal 
+0x3af2 004820 rtn 
+:      004822 save_rssi:
+0x3af3 004823 set0 mark_ext_patch ,mark 
+0x3af4 004824 bpatch patch13_1 ,mem_patch13 
+0x3af5 004825 hfetch 2 ,rf_afc_d2a 
+0x3af6 004826 rshift4 pdata ,pdata 
+0x3af7 004827 rshift3 pdata ,pdata 
+0x3af8 004828 sub pdata ,0 ,pdata 
+0x3af9 004829 and_into 0xff ,pdata 
+0x3afa 004830 div pdata ,10 
+0x3afb 004831 call wait_div_end 
+0x3afc 004832 quotient pdata 
+0x3afd 004833 lshift4 pdata ,pdata 
+0x3afe 004834 remainder temp 
+0x3aff 004835 ior temp ,pdata 
+0x3b00 004836 store 1 ,mem_rssi 
+0x3b01 004837 rtn 
+:      004839 switchto_rcclk:
+0x3b02 004840 hjam 0xa ,core_clksel 
+0x3b03 004841 hjam 0 ,rfen_ck 
+0x3b04 004842 hfetch 3 ,core_lpm_ctrl 
+0x3b05 004843 hstore 3 ,core_lpm_reg 
+0x3b06 004844 hjam 0xfc ,core_lpm_reg 
+0x3b07 004845 call lpm_write_ctrl 
+0x3b08 004846 nop 1000 
+0x3b09 004847 rtn 
+:      004849 switchto_dpllclk:
+0x3b0a 004850 hjam clksel_rc ,core_clksel 
+0x3b0b 004851 hfetch 1 ,rf_clkpll_frac + 2 
+0x3b0c 004852 set0 4 ,pdata 
+0x3b0d 004853 set0 5 ,pdata 
+0x3b0e 004854 hstore 1 ,rf_clkpll_frac + 2 
+0x3b0f 004855 hjam 0x00 ,rfen_ck 
+0x3b10 004856 hjam 0x00 ,rfen_msc 
+0x3b11 004857 hjam 0x70 ,rfen_msc 
+0x3b12 004858 hjam 0xff ,rfen_ck 
+0x3b13 004859 hfetch 1 ,rf_clkpll_frac + 2 
+0x3b14 004860 set1 4 ,pdata 
+0x3b15 004861 set1 5 ,pdata 
+0x3b16 004862 hstore 1 ,rf_clkpll_frac + 2 
+0x3b17 004863 call init_lpm_ctrl 
+0x3b18 004864 hfetch 1 ,rf_clkpll_int 
+0x3b19 004865 set1 7 ,pdata 
+0x3b1a 004866 hstore 1 ,rf_clkpll_int 
+0x3b1b 004867 set0 7 ,pdata 
+0x3b1c 004868 hstore 1 ,rf_clkpll_int 
+0x3b1d 004869 set1 7 ,pdata 
+0x3b1e 004870 hstore 1 ,rf_clkpll_int 
+0x3b1f 004871 hjam clksel_dpll ,core_clksel 
+0x3b20 004872 rtn 
+:      004874 check_dpll:
+0x3b21 004875 nop 1000 
+0x3b22 004876 hjam clksel_xtal ,core_clksel 
+0x3b23 004877 nop 10 
+0x3b24 004878 hjam 0x00 ,core_bist_ctrl 
+0x3b25 004879 hjam ccnt_start ,core_misc_ctrl 
+:      004880 check_dpll_loop:
+0x3b26 004881 hfetch 1 ,core_perf_status 
+0x3b27 004882 bbit0 1 ,check_dpll_loop 
+0x3b28 004883 hfetcht 3 ,core_clk_counter 
+0x3b29 004884 hjam clksel_dpll ,core_clksel 
+0x3b2a 004885 nop 10 
+0x3b2b 004886 hjam ccnt_start ,core_misc_ctrl 
+:      004887 check_dpll_loop2:
+0x3b2c 004888 hfetch 1 ,core_perf_status 
+0x3b2d 004889 bbit0 1 ,check_dpll_loop2 
+0x3b2e 004890 hfetch 3 ,core_clk_counter 
+0x3b2f 004891 isub temp ,pdata 
+0x3b30 004892 branch check_dpll_pos ,positive 
+0x3b31 004893 sub pdata ,0 ,pdata 
+:      004894 check_dpll_pos:
+0x3b32 004895 store 2 ,mem_dpll_error 
+0x3b33 004896 sub pdata ,70 ,null 
+:      004897 check_dpll_assert:
+0x3b34 004898 nbranch check_dpll_assert ,positive 
+0x3b35 004899 rtn 
+:      004901 xtal_fast_wake:
+0x3b36 004902 setarg 0xf0f 
+0x3b37 004903 branch lpm_write_config 
+:      004905 init_lpm_ctrl:
+0x3b38 004906 setarg 0x80f 
+0x3b39 004907 branch lpm_write_config 
+:      004911 start_receiver:
+0x3b3a 004912 set0 mark_ext_patch ,mark 
+0x3b3b 004913 bpatch patch13_2 ,mem_patch13 
+0x3b3c 004914 call rf_rx_enable 
+0x3b3d 004915 disable is_tx 
+0x3b3e 004916 enable is_rx 
+0x3b3f 004917 pulse init_encrypt 
+0x3b40 004918 rtn 
+:      004920 prep_crypt:
+0x3b41 004921 set0 mark_ext_patch ,mark 
+0x3b42 004922 bpatch patch13_3 ,mem_patch13 
+0x3b43 004923 fetch 1 ,mem_state_map 
+0x3b44 004924 isolate1 smap_encryption ,pdata 
+0x3b45 004925 setflag true ,0 ,pdata 
+0x3b46 004926 hstore 1 ,core_encrypt 
+0x3b47 004927 arg mem_kc ,contr 
+0x3b48 004928 ifetch 9 ,contr 
+0x3b49 004929 iforce kc_ls 
+0x3b4a 004930 ifetch 7 ,contr 
+0x3b4b 004931 iforce kc_ms 
+0x3b4c 004932 fetch 1 ,mem_key_size 
+0x3b4d 004933 add pdata ,-1 ,g1l 
+0x3b4e 004934 pulse kc_p_activate 
+0x3b4f 004935 rtn 
+:      004937 wait_access_clke_rt:
+0x3b50 004938 set0 mark_ext_patch ,mark 
+0x3b51 004939 bpatch patch13_4 ,mem_patch13 
+0x3b52 004940 enable decode_fec0 
+0x3b53 004941 arg param_conn_access ,timeup 
+0x3b54 004942 correlate clke_rt ,meet 
+:      004943 wait_access_end:
+0x3b55 004944 deposit clke 
+0x3b56 004945 store 6 ,mem_sync_clke 
+0x3b57 004946 disable decode_fec0 
+0x3b58 004947 nbranch shutdown_radio ,sync 
+0x3b59 004948 arg param_clke_cal ,clke_rt 
+0x3b5a 004949 increase 1 ,clke_bt 
+0x3b5b 004950 and_into 0x1fc ,clke_bt 
+0x3b5c 004951 rtn 
+:      004955 wait_access_mhalfbnd:
+0x3b5d 004956 enable decode_fec0 
+:      004957 wait_access_mhalfbnd_correlate:
+0x3b5e 004958 correlate null ,mhalfbnd 
+0x3b5f 004959 branch wait_access_end ,sync 
+0x3b60 004960 compare 0x02 ,clke_bt ,0x02 
+0x3b61 004961 nbranch wait_access_mhalfbnd_correlate ,true 
+0x3b62 004962 branch wait_access_end 
+:      004964 wait_access_clkn_rt:
+0x3b63 004965 set0 mark_ext_patch ,mark 
+0x3b64 004966 bpatch patch13_5 ,mem_patch13 
+0x3b65 004967 arg param_conn_access ,timeup 
+0x3b66 004968 enable decode_fec0 
+0x3b67 004969 correlate clkn_rt ,meet 
+0x3b68 004970 disable decode_fec0 
+0x3b69 004971 nbranch shutdown_radio ,sync 
+0x3b6a 004972 rtn 
+:      004974 wait_access_forever:
+0x3b6b 004975 set0 mark_ext_patch ,mark 
+0x3b6c 004976 bpatch patch13_6 ,mem_patch13 
+0x3b6d 004977 enable decode_fec0 
+0x3b6e 004978 correlate null ,timeout 
+0x3b6f 004979 disable decode_fec0 
+0x3b70 004980 nbranch shutdown_radio ,sync 
+0x3b71 004981 arg param_clke_cal ,clke_rt 
+0x3b72 004982 and_into 0x1fc ,clke_bt 
+0x3b73 004983 rtn 
+:      004986 reserve_slot:
+0x3b74 004987 set0 mark_ext_patch ,mark 
+0x3b75 004988 bpatch patch13_7 ,mem_patch13 
+0x3b76 004989 iforce rega 
+0x3b77 004990 deposit bt_clk 
+0x3b78 004991 iadd temp ,timeup 
+0x3b79 004992 copy timeup ,pdata 
+0x3b7a 004993 store 4 ,mem_next_btclk 
+0x3b7b 004994 deposit rega 
+0x3b7c 004995 rtn 
+:      004998 ahead_window:
+0x3b7d 004999 copy pdata ,temp 
+0x3b7e 005000 set0 mark_ext_patch ,mark 
+0x3b7f 005001 bpatch patch14_0 ,mem_patch14 
+0x3b80 005002 copy temp ,pdata 
+0x3b81 005003 call clk2bt 
+0x3b82 005004 lshift16 bt_clk ,pdata 
+0x3b83 005005 set1 44 ,pdata 
+0x3b84 005006 call clk_diff 
+0x3b85 005007 set0 44 ,pdata 
+0x3b86 005008 call get_clk 
+0x3b87 005009 call clk_diff 
+0x3b88 005010 rtn user 
+0x3b89 005011 call clk2rt 
+0x3b8a 005012 iforce stop_watch 
+0x3b8b 005013 until null ,timeout 
+0x3b8c 005014 rtn 
+:      005017 setup_clk:
+0x3b8d 005018 set0 mark_ext_patch ,mark 
+0x3b8e 005019 bpatch patch14_1 ,mem_patch14 
+0x3b8f 005020 branch setup_clkn ,clknt 
+0x3b90 005021 until clke_rt ,meet 
+:      005022 skip_setup_clke:
+0x3b91 005023 copy clke_bt ,temp 
+0x3b92 005024 branch setup_clknbt 
+:      005025 setup_clkn:
+0x3b93 005026 branch skip_setup_clkn ,attempt 
+0x3b94 005027 until clkn_rt ,meet 
+:      005028 skip_setup_clkn:
+0x3b95 005029 copy clkn_bt ,temp 
+:      005030 setup_clknbt:
+0x3b96 005031 branch setup_clk11 ,user 
+0x3b97 005032 compare 1 ,temp ,3 
+0x3b98 005033 nbranch setup_clk ,true 
+:      005034 setup_complete:
+0x3b99 005035 set0 mark_ext_patch ,mark 
+0x3b9a 005036 bpatch patch14_2 ,mem_patch14 
+0x3b9b 005037 fetch 1 ,mem_state 
+0x3b9c 005038 rtnbit0 state_inconn 
+0x3b9d 005039 fetch 4 ,mem_next_btclk 
+0x3b9e 005040 isub temp ,pdata 
+0x3b9f 005041 nrtn positive 
+0x3ba0 005042 sub pdata ,0xff ,null 
+0x3ba1 005043 branch setup_clk ,positive 
+0x3ba2 005044 rtn 
+:      005045 setup_clk11:
+0x3ba3 005046 compare 3 ,temp ,3 
+0x3ba4 005047 nbranch setup_clk ,true 
+0x3ba5 005048 branch setup_complete 
+:      005050 rf_setup_time:
+0x3ba6 005051 set0 mark_ext_patch ,mark 
+0x3ba7 005052 bpatch patch14_3 ,mem_patch14 
+0x3ba8 005053 arg param_rf_setup ,timeup 
+0x3ba9 005054 branch setup_clk 
+:      005056 rf_setup_time_slave_slot:
+0x3baa 005057 disable user 
+0x3bab 005058 branch rf_setup_time 
+:      005060 rf_setup_time_master_slot:
+0x3bac 005061 enable user 
+0x3bad 005062 branch rf_setup_time 
+:      005064 start_transmitter:
+0x3bae 005065 set0 mark_ext_patch ,mark 
+0x3baf 005066 bpatch patch14_4 ,mem_patch14 
+0x3bb0 005067 call prep_crypt 
+0x3bb1 005068 disable is_rx 
+0x3bb2 005069 enable is_tx 
+0x3bb3 005070 rtn 
+:      005074 start_tx_native:
+0x3bb4 005075 set0 mark_ext_patch ,mark 
+0x3bb5 005076 bpatch patch14_5 ,mem_patch14 
+0x3bb6 005077 arg param_tx_setup ,timeup 
+0x3bb7 005078 until clkn_rt ,meet 
+0x3bb8 005079 pulse init_encrypt 
+0x3bb9 005080 rtn 
+:      005082 start_rx_native:
+0x3bba 005083 set0 mark_ext_patch ,mark 
+0x3bbb 005084 bpatch patch14_6 ,mem_patch14 
+0x3bbc 005085 arg param_rx_setup ,timeup 
+0x3bbd 005086 until clkn_rt ,meet 
+0x3bbe 005087 rtn 
+:      005090 start_tx_external:
+0x3bbf 005091 set0 mark_ext_patch ,mark 
+0x3bc0 005092 bpatch patch14_7 ,mem_patch14 
+0x3bc1 005093 arg param_tx_setup ,timeup 
+0x3bc2 005094 until clke_rt ,meet 
+0x3bc3 005095 pulse init_encrypt 
+0x3bc4 005096 rtn 
+:      005098 send_access_word:
+0x3bc5 005099 set0 mark_ext_patch ,mark 
+0x3bc6 005100 bpatch patch15_0 ,mem_patch15 
+0x3bc7 005101 preload access 
+0x3bc8 005102 enable encode_fec0 
+0x3bc9 005103 set1 txgfsk ,radio_ctrl 
+0x3bca 005104 inject mod ,72 
+0x3bcb 005105 disable encode_fec0 
+0x3bcc 005106 rtn 
+:      005109 scan_mode_whiten:
+0x3bcd 005110 copy xin ,temp 
+0x3bce 005111 or_into 0x60 ,temp 
+0x3bcf 005112 copy temp ,white_init 
+0x3bd0 005113 rtn 
+:      005118 get_free_amaddr:
+0x3bd1 005119 set0 mark_ext_patch ,mark 
+0x3bd2 005120 bpatch patch15_1 ,mem_patch15 
+0x3bd3 005121 fetch 1 ,mem_current_amaddr 
+0x3bd4 005122 increase 1 ,pdata 
+0x3bd5 005123 bne param_esco_addr ,get_free_amaddr_cont 
+0x3bd6 005124 force 1 ,pdata 
+:      005125 get_free_amaddr_cont:
+0x3bd7 005126 store 1 ,mem_current_amaddr 
+0x3bd8 005127 iforce am_addr 
+0x3bd9 005128 rtn 
+:      005130 get_clk:
+0x3bda 005131 copy clkn ,temp 
+0x3bdb 005132 rtn master 
+0x3bdc 005133 copy clke ,temp 
+0x3bdd 005134 rtn 
+:      005136 get_clkbt:
+0x3bde 005137 deposit clkn_bt 
+0x3bdf 005138 rtn master 
+0x3be0 005139 deposit clke_bt 
+0x3be1 005140 rtn 
+:      005143 supervision_update:
+0x3be2 005144 set0 mark_ext_patch ,mark 
+0x3be3 005145 bpatch patch15_2 ,mem_patch15 
+0x3be4 005146 fetcht 4 ,mem_supervision_timer 
+0x3be5 005147 call get_clkbt 
+0x3be6 005148 isub temp ,timeup 
+0x3be7 005149 deposit timeup 
+0x3be8 005150 fetcht 2 ,mem_supervision_to 
+0x3be9 005151 lshift temp ,temp 
+0x3bea 005152 isub temp ,pdata 
+0x3beb 005153 rtn 
+:      005155 supervision_flush:
+0x3bec 005156 set0 mark_ext_patch ,mark 
+0x3bed 005157 bpatch patch15_3 ,mem_patch15 
+0x3bee 005158 call get_clkbt 
+0x3bef 005159 store 4 ,mem_supervision_timer 
+0x3bf0 005160 rtn 
+:      005162 assert:
+0x3bf1 005163 branch assert 
+:      005165 loop:
+0x3bf2 005166 branch loop 
+:      005168 sleep:
+0x3bf3 005169 rtn blank 
+0x3bf4 005171 rshift pdata ,pdata 
+0x3bf5 005172 increase -3 ,pdata 
+:      005173 sleep_loop:
+0x3bf6 005174 increase -1 ,pdata 
+0x3bf7 005175 nbranch sleep_loop ,zero 
+0x3bf8 005176 force 0 ,pdata 
+0x3bf9 005177 rtn 
+:      005181 init_param:
+0x3bfa 005183 arg 0x10 ,loopcnt 
+0x3bfb 005184 arg 0 ,contw 
+0x3bfc 005185 call memset0 
+0x3bfd 005186 arg mem_le_state ,contw 
+0x3bfe 005187 arg 10 ,loopcnt 
+0x3bff 005188 call memset0 
+0x3c00 005189 jam 0 ,mem_sp_calc 
+0x3c01 005190 jam 0 ,mem_fifo_temp 
+0x3c02 005191 jam 0 ,mem_le_testtype 
+0x3c03 005192 jam 0 ,mem_debug_config 
+0x3c04 005193 jam 0 ,mem_lmp_conn_state 
+0x3c05 005194 set0 mark_ext_patch ,mark 
+0x3c06 005195 bpatch patch15_4 ,mem_patch15 
+0x3c07 005196 jam 0 ,mem_connection_options 
+0x3c08 005197 jam 0 ,mem_tester_emulate 
+0x3c09 005198 jam 0 ,mem_tester_cnt 
+0x3c0a 005199 setarg param_glap 
+0x3c0b 005200 store 3 ,mem_glap 
+0x3c0c 005201 setarg param_acl_pktlen 
+0x3c0d 005202 store 2 ,mem_acl_pktlen 
+0x3c0e 005203 jam param_sco_pktlen ,mem_sco_pktlen 
+0x3c0f 005204 jam param_acl_pktcnt ,mem_acl_pktcnt 
+0x3c10 005205 jam param_sco_pktcnt ,mem_sco_pktcnt 
+0x3c11 005206 setarg param_hci_version 
+0x3c12 005207 store 3 ,mem_hci_version 
+0x3c13 005208 setarg param_lmp_version 
+0x3c14 005209 store 3 ,mem_lmp_version 
+0x3c15 005210 setarg param_lmp_subversion 
+0x3c16 005211 store 2 ,mem_lmp_subversion 
+0x3c17 005212 jam 0x60 ,mem_fhs_misc 
+0x3c18 005213 jam param_max_slot ,mem_max_slot 
+0x3c19 005214 jam 0x02 ,mem_fw_ver 
+0x3c1a 005215 call init_memp 
+0x3c1b 005216 set0 mark_ext_patch ,mark 
+0x3c1c 005217 bpatch patch15_5 ,mem_patch15 
+0x3c1d 005218 rtn wake 
+0x3c1e 005219 setarg 0 
+0x3c1f 005220 store 2 ,mem_tx_len 
+0x3c20 005221 rshift clkn_bt ,pdata 
+0x3c21 005222 store 4 ,mem_last_clkn 
+0x3c22 005223 rtn 
+:      005227 init_esco_ibuff:
+0x3c23 005228 setarg 0xaa ,pdata 
+0x3c24 005229 arg mem_sco_ibuf ,contw 
+0x3c25 005230 force 30 ,loopcnt 
+:      005231 init_esco_ibuff_loop:
+0x3c26 005232 istore 1 ,contw 
+0x3c27 005233 loop init_esco_ibuff_loop 
+0x3c28 005234 rtn 
+:      005236 init_rf_regs:
+0x3c29 005237 hjam 0x02 ,0x907 
+0x3c2a 005238 hjam 0x1f ,0x908 
+0x3c2b 005239 hjam 0x1f ,0x909 
+0x3c2c 005240 hjam 0xe0 ,0x90a 
+0x3c2d 005241 hjam 0x4e ,0x90b 
+0x3c2e 005242 hjam 0x45 ,rf_agc_ctrl 
+0x3c2f 005243 hjam 0x00 ,0x953 
+0x3c30 005245 hjam 0xfb ,0x94c 
+0x3c31 005246 hjam 0xef ,0x94d 
+0x3c32 005247 hjam 0x0c ,0x94e 
+0x3c33 005249 hjam 0x88 ,0x96f 
+0x3c34 005250 hjam 0x30 ,0x973 
+0x3c35 005253 hjam 0x00 ,0x953 
+0x3c36 005254 hjam 0xc9 ,0x956 
+0x3c37 005255 hjam 0x6c ,0x958 
+0x3c38 005256 hjam 0x50 ,0x959 
+0x3c39 005257 rtn 
+:      005259 init_agc_table:
+0x3c3a 005261 hjam 0xa9 ,0x930 
+0x3c3b 005262 hjam 0xb1 ,0x92f 
+0x3c3c 005263 hjam 0xb9 ,0x92e 
+0x3c3d 005264 hjam 0xAD ,0x92d 
+0x3c3e 005265 hjam 0xB1 ,0x92c 
+0x3c3f 005266 hjam 0xB5 ,0x92b 
+0x3c40 005267 hjam 0xBA ,0x92a 
+0x3c41 005268 hjam 0xBE ,0x929 
+0x3c42 005269 hjam 0xC2 ,0x928 
+0x3c43 005270 hjam 0xC6 ,0x927 
+0x3c44 005271 hjam 0xCA ,0x926 
+0x3c45 005272 hjam 0xCE ,0x925 
+0x3c46 005273 hjam 0xD2 ,0x924 
+0x3c47 005274 hjam 0xD6 ,0x923 
+0x3c48 005275 hjam 0xDA ,0x922 
+0x3c49 005276 hjam 0xDE ,0x921 
+0x3c4a 005277 hjam 0xE2 ,0x920 
+0x3c4b 005278 hjam 0xE6 ,0x91f 
+0x3c4c 005279 hjam 0xEA ,0x91e 
+0x3c4d 005280 hjam 0xEE ,0x91d 
+0x3c4e 005281 hjam 0xF2 ,0x91c 
+0x3c4f 005282 hjam 0xF6 ,0x91b 
+0x3c50 005283 hjam 0xFB ,0x91a 
+0x3c51 005285 hjam 0xf5 ,0x947 
+0x3c52 005286 hjam 0xe5 ,0x946 
+0x3c53 005287 hjam 0xd5 ,0x945 
+0x3c54 005288 hjam 0xD8 ,0x944 
+0x3c55 005289 hjam 0xC9 ,0x943 
+0x3c56 005290 hjam 0xC8 ,0x942 
+0x3c57 005291 hjam 0x89 ,0x941 
+0x3c58 005292 hjam 0x88 ,0x940 
+0x3c59 005293 hjam 0x87 ,0x93f 
+0x3c5a 005294 hjam 0x48 ,0x93e 
+0x3c5b 005295 hjam 0x09 ,0x93d 
+0x3c5c 005296 hjam 0x08 ,0x93c 
+0x3c5d 005297 hjam 0xC9 ,0x93b 
+0x3c5e 005298 hjam 0xC8 ,0x93a 
+0x3c5f 005299 hjam 0xC7 ,0x939 
+0x3c60 005300 hjam 0xC6 ,0x938 
+0x3c61 005301 hjam 0xC5 ,0x937 
+0x3c62 005302 hjam 0xC4 ,0x936 
+0x3c63 005303 hjam 0xC3 ,0x935 
+0x3c64 005304 hjam 0xC2 ,0x934 
+0x3c65 005305 hjam 0xC1 ,0x933 
+0x3c66 005306 hjam 0xC0 ,0x932 
+0x3c67 005307 hjam 0x80 ,0x931 
+0x3c68 005308 rtn 
+:      005312 init_250k:
+0x3c69 005313 enable le 
+0x3c6a 005314 setarg 0x8e89be 
+0x3c6b 005315 lshift8 pdata ,pdata 
+0x3c6c 005316 or_into 0xd6 ,pdata 
+0x3c6d 005317 iforce access 
+0x3c6e 005318 hjam 7 ,0x914 
+0x3c6f 005319 hjam 0xa0 ,0x90a 
+0x3c70 005320 hjam 0x8f ,0x90d 
+0x3c71 005321 hjam 0x0f ,0x911 
+0x3c72 005322 hjam 0x87 ,0x912 
+0x3c73 005323 rtn 
+:      005328 lpmstate:
+0x3c74 005329 setarg 0xee21 
+0x3c75 005330 hstore 2 ,core_clkoff 
+0x3c76 005331 hfetch 1 ,core_lpm_ldocnt 
+0x3c77 005332 bbit0 gpio_latch ,loadcode 
+0x3c78 005333 enable wake 
+0x3c79 005334 bbit0 cold_wake ,lpmwake 
+0x3c7a 005335 disable wake 
+0x3c7b 005336 deposit auxcnt 
+0x3c7c 005337 nbranch lpmwake ,blank 
+0x3c7d 005338 arg param_hibernate_clks ,temp 
+0x3c7e 005339 branch lpm_enter_sleep 
+:      005340 lpmwake:
+0x3c7f 005341 hfetch 3 ,core_lpm_xtalcnt 
+0x3c80 005342 hstore 3 ,core_lpm_reg 
+0x3c81 005343 ifetch 1 ,contr 
+0x3c82 005344 or_into isogate_mask ,pdata 
+0x3c83 005345 istore 1 ,contw 
+0x3c84 005346 call lpm_write_ctrl2 
+0x3c85 005347 hfetch 1 ,core_lpm_isogate 
+0x3c86 005348 set1 enable_retmem ,pdata 
+0x3c87 005349 hstore 1 ,core_lpm_isogate 
+0x3c88 005350 call lpm_write_ctrl2 
+0x3c89 005351 call lpm_load_context ,wake 
+0x3c8a 005352 hfetch 1 ,core_lpm_reg + 2 
+0x3c8b 005353 set0 gpio_latch ,pdata 
+0x3c8c 005354 hstore 1 ,core_lpm_reg + 2 
+0x3c8d 005355 call lpm_write_ctrl2 
+0x3c8e 005356 rtn wake 
+0x3c8f 005357 branch loadcode 
+:      005359 lpm_load_context:
+0x3c90 005360 fetch 1 ,mem_saved_spidctrl 
+0x3c91 005361 hstore 1 ,core_spid_ctrl 
+0x3c92 005362 fetch 3 ,mem_saved_gsel 
+0x3c93 005363 hstore 3 ,core_gpio_sel 
+0x3c94 005364 fetch 4 ,mem_saved_gpio + 4 
+0x3c95 005365 hstore 4 ,core_gpio_out0 
+0x3c96 005366 fetch 4 ,mem_saved_gpio 
+0x3c97 005367 hstore 4 ,core_gpio_oe0 
+0x3c98 005368 fetch 8 ,mem_saved_gpio + 8 
+0x3c99 005369 hstore 8 ,core_gpio_pu0 
+0x3c9a 005370 fetch 8 ,mem_saved_mark 
+0x3c9b 005371 iforce mark 
+0x3c9c 005372 hfetch 8 ,core_gpio_wakeup_low 
+0x3c9d 005373 store 8 ,mem_gpio_wakeup_low 
+0x3c9e 005374 call load_ucode 
+0x3c9f 005375 rtn 
+:      005377 lpm_save_context:
+0x3ca0 005378 deposit mark 
+0x3ca1 005379 store 8 ,mem_saved_mark 
+0x3ca2 005380 hfetch 8 ,core_gpio_oe0 
+0x3ca3 005381 store 8 ,mem_saved_gpio 
+0x3ca4 005382 ifetch 8 ,contr 
+0x3ca5 005383 istore 8 ,contw 
+0x3ca6 005384 hfetch 3 ,core_gpio_sel 
+0x3ca7 005385 store 3 ,mem_saved_gsel 
+0x3ca8 005386 hfetch 1 ,core_spid_ctrl 
+0x3ca9 005387 store 1 ,mem_saved_spidctrl 
+0x3caa 005388 branch lpm_write_gpio_wakeup 
+:      005390 lpo_calibration:
+0x3cab 005391 hfetch 1 ,core_bist_ctrl 
+0x3cac 005392 nbranch lpo_cal_inited ,blank 
+0x3cad 005393 fetch 3 ,mem_clks_per_lpo 
+0x3cae 005394 nrtn blank 
+0x3caf 005395 hjam 0xc0 ,core_bist_ctrl 
+0x3cb0 005396 hjam ccnt_start ,core_misc_ctrl 
+:      005397 lpo_cal_inited:
+0x3cb1 005398 hfetch 1 ,core_perf_status 
+0x3cb2 005399 rtnbit0 1 
+0x3cb3 005400 hfetch 3 ,core_clk_counter 
+0x3cb4 005401 store 3 ,mem_clks_per_lpo 
+0x3cb5 005402 rtn 
+:      005406 lpm_adjust_clk:
+0x3cb6 005407 set0 mark_ext_patch ,mark 
+0x3cb7 005408 bpatch patch15_6 ,mem_patch15 
+0x3cb8 005409 deposit clke 
+0x3cb9 005410 call clk_diff_rt 
+0x3cba 005411 fetcht 4 ,mem_sleep_counter_all 
+0x3cbb 005412 sub temp ,0xff ,null 
+0x3cbc 005413 rtn positive 
+0x3cbd 005414 lshift8 pdata ,pdata 
+0x3cbe 005415 lshift4 pdata ,pdata 
+0x3cbf 005416 idiv temp 
+0x3cc0 005417 call wait_div_end 
+0x3cc1 005418 quotient pdata 
+0x3cc2 005419 arg param_lpm_adjmax ,temp 
+0x3cc3 005420 call ceiling 
+0x3cc4 005421 store 1 ,mem_lpm_adjust 
+0x3cc5 005422 nbranch lpm_adjust_positive ,user 
+0x3cc6 005423 sub pdata ,0 ,pdata 
+:      005424 lpm_adjust_positive:
+0x3cc7 005425 fetcht 3 ,mem_clks_per_lpo 
+0x3cc8 005426 iadd temp ,pdata 
+0x3cc9 005427 store 3 ,mem_clks_per_lpo 
+:      005428 lpm_clear_counter:
+0x3cca 005429 setarg 0 
+0x3ccb 005430 store 4 ,mem_sleep_counter_all 
+0x3ccc 005431 rtn 
+:      005434 lpm_hibernate:
+0x3ccd 005435 set0 mark_ext_patch ,mark 
+0x3cce 005436 bpatch patch15_7 ,mem_patch15 
+0x3ccf 005437 call lpm_write_gpio_wakeup 
+0x3cd0 005438 hfetch 4 ,core_lpm_ctrl 
+0x3cd1 005439 set0 15 ,pdata 
+0x3cd2 005440 hstore 4 ,core_lpm_reg 
+0x3cd3 005441 call lpm_write_ctrl 
+:      005442 lpm_hibernate_normal:
+0x3cd4 005443 arg param_hibernate_clks ,temp 
+0x3cd5 005444 fetch 1 ,mem_lpm_hibernate_switch 
+0x3cd6 005445 store 1 ,mem_lpm_xtalcnt + 4 
+0x3cd7 005446 fetch 1 ,mem_lpm_xtalcnt + 2 
+0x3cd8 005447 set1 cold_wake ,pdata 
+0x3cd9 005448 store 1 ,mem_lpm_xtalcnt + 2 
+:      005451 lpm_sleep:
+0x3cda 005452 set0 mark_ext_patch ,mark 
+0x3cdb 005453 bpatch patch16_0 ,mem_patch16 
+0x3cdc 005454 fetch 4 ,mem_sleep_counter_all 
+0x3cdd 005455 iadd temp ,pdata 
+0x3cde 005456 store 4 ,mem_sleep_counter_all 
+0x3cdf 005457 call lpm_save_context 
+0x3ce0 005458 fetch 5 ,mem_lpm_xtalcnt 
+0x3ce1 005459 hstore 4 ,core_lpm_reg 
+0x3ce2 005460 rshift32 pdata ,rega 
+0x3ce3 005461 until null ,lpo_edge 
+0x3ce4 005462 deposit clkn 
+0x3ce5 005463 store 6 ,mem_sleep_clkn 
+0x3ce6 005464 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+0x3ce7 005465 until null ,lpo_edge 
+0x3ce8 005466 until null ,lpo_edge 
+0x3ce9 005467 deposit rega 
+0x3cea 005468 hstore 1 ,core_lpm_isogate 
+0x3ceb 005469 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+:      005470 lpm_enter_sleep:
+0x3cec 005471 until null ,lpo_edge 
+0x3ced 005472 until null ,lpo_edge 
+0x3cee 005473 hstoret 4 ,core_lpm_reg 
+0x3cef 005474 hjam lpmreg_sel_counter ,core_lpm_wr 
+0x3cf0 005475 until null ,never 
+:      005480 lpm_recover_clk:
+0x3cf1 005481 set0 mark_ext_patch ,mark 
+0x3cf2 005482 bpatch patch16_1 ,mem_patch16 
+0x3cf3 005483 setarg 0 
+0x3cf4 005484 copy auxcnt ,null 
+0x3cf5 005485 branch lpm_recover_timeout ,zero 
+0x3cf6 005486 hfetch 1 ,core_lpm_xtalcnt 
+0x3cf7 005487 hfetcht 1 ,core_lpm_buckcnt 
+0x3cf8 005488 isub temp ,null 
+0x3cf9 005489 branch lpm_recover_xtal ,positive 
+0x3cfa 005490 deposit temp 
+:      005491 lpm_recover_xtal:
+0x3cfb 005492 isub auxcnt ,pdata 
+0x3cfc 005493 increase 1 ,pdata 
+:      005494 lpm_recover_timeout:
+0x3cfd 005495 increase 8 ,pdata 
+0x3cfe 005496 until null ,lpo_edge 
+0x3cff 005497 iadd lpo_time ,pdata 
+0x3d00 005498 fetcht 4 ,mem_sleep_counter 
+0x3d01 005499 iadd temp ,pdata 
+0x3d02 005500 fetcht 3 ,mem_clks_per_lpo 
+0x3d03 005501 imul32 temp ,pdata 
+0x3d04 005502 rshift8 pdata ,pdata 
+0x3d05 005503 rshift4 pdata ,pdata 
+0x3d06 005504 increase param_lpm_fix ,pdata 
+0x3d07 005505 arg 3750 ,temp 
+0x3d08 005506 idiv temp 
+0x3d09 005507 call wait_div_end 
+0x3d0a 005508 quotient pdata 
+0x3d0b 005509 lshift16 pdata ,pdata 
+0x3d0c 005510 remainder temp 
+0x3d0d 005511 ior temp ,pdata 
+0x3d0e 005512 fetcht 6 ,mem_sleep_clkn 
+0x3d0f 005513 call clk_add 
+0x3d10 005514 copy temp ,clkn 
+0x3d11 005515 fetch 6 ,mem_context + coffset_clk_offset 
+0x3d12 005516 call calc_clke2 
+0x3d13 005517 deposit clke 
+0x3d14 005518 store 6 ,mem_pdatatemp 
+0x3d15 005519 deposit auxcnt 
+0x3d16 005520 istore 1 ,contw 
+0x3d17 005521 hfetch 1 ,core_gpio_in1 
+0x3d18 005522 or_into 0xf0 ,pdata 
+0x3d19 005523 istore 1 ,contw 
+0x3d1a 005524 call savelist_2 
+0x3d1b 005525 rtn 
+:      005527 lpm_dispatch:
+0x3d1c 005528 set0 mark_ext_patch ,mark 
+0x3d1d 005529 bpatch patch16_2 ,mem_patch16 
+0x3d1e 005530 call lpo_calibration 
+0x3d1f 005531 fetch 3 ,mem_clks_per_lpo 
+0x3d20 005532 rtn blank 
+0x3d21 005533 fetch 1 ,mem_lpm_mode 
+0x3d22 005534 rtn blank 
+0x3d23 005535 call lpm_check_wake_lock 
+0x3d24 005536 nrtn blank 
+:      005537 lpm_dispatch0:
+0x3d25 005538 fetch 1 ,mem_context 
+0x3d26 005539 compare 3 ,pdata ,0x7 
+0x3d27 005540 nbranch lpm_dispatch_unconn ,true 
+0x3d28 005541 fetch 2 ,mem_context + coffset_tsniff 
+0x3d29 005542 rtn blank 
+0x3d2a 005543 rtn wake 
+0x3d2b 005544 set0 mark_ext_patch ,mark 
+0x3d2c 005545 bpatch patch16_3 ,mem_patch16 
+:      005546 lpm_dispatch1:
+0x3d2d 005547 fetcht 1 ,mem_lpm_current_mult 
+0x3d2e 005548 fetch 2 ,mem_context + coffset_tsniff 
+0x3d2f 005549 imul32 temp ,pdata 
+0x3d30 005550 rshift4 temp ,temp 
+0x3d31 005551 rshift2 temp ,temp 
+0x3d32 005552 isub temp ,pdata 
+0x3d33 005553 fetcht 4 ,mem_context + coffset_sniff_anchor 
+0x3d34 005554 iadd temp ,pdata 
+0x3d35 005555 fetcht 1 ,mem_lpm_overhead 
+0x3d36 005556 isub temp ,pdata 
+0x3d37 005557 lshift16 pdata ,alarm 
+0x3d38 005558 set0 mark_ext_patch ,mark 
+0x3d39 005559 bpatch patch16_4 ,mem_patch16 
+0x3d3a 005560 fetch 2 ,mem_context + coffset_rx_window 
+0x3d3b 005561 rshift pdata ,pdata 
+0x3d3c 005562 call clk2bt 
+0x3d3d 005563 deposit alarm 
+0x3d3e 005564 call clk_diff 
+0x3d3f 005565 copy clke ,temp 
+0x3d40 005566 call clk_diff_rt 
+0x3d41 005567 rtn user 
+:      005568 lpm_dispatch_sleep:
+0x3d42 005569 call clk2lpo 
+:      005570 lpm_dispatch_lpo:
+0x3d43 005571 set0 mark_ext_patch ,mark 
+0x3d44 005572 bpatch patch16_5 ,mem_patch16 
+0x3d45 005573 fetch 1 ,mem_lpm_xtalcnt 
+0x3d46 005574 isub temp ,null 
+0x3d47 005575 branch lpm_clear_counter ,positive 
+0x3d48 005576 storet 4 ,mem_sleep_counter 
+0x3d49 005577 call app_will_enter_lpm 
+0x3d4a 005578 call l2cap_lpm_save_txbuf 
+0x3d4b 005579 fetcht 4 ,mem_sleep_counter 
+0x3d4c 005580 branch lpm_sleep 
+:      005582 lpm_dispatch_unconn:
+0x3d4d 005583 set0 mark_ext_patch ,mark 
+0x3d4e 005584 bpatch patch16_6 ,mem_patch16 
+0x3d4f 005585 fetch 1 ,mem_context 
+0x3d50 005586 rtnbit1 state_inconn 
+0x3d51 005587 rtnbit1 state_inpage 
+0x3d52 005588 fetch 1 ,mem_ssp_enable 
+0x3d53 005589 branch lpm_unconn_nossp ,blank 
+0x3d54 005590 fetch 1 ,mem_sp_local_key_invalid 
+0x3d55 005591 rtn blank 
+:      005592 lpm_unconn_nossp:
+0x3d56 005593 fetch 1 ,mem_le_adv_enable 
+0x3d57 005594 nbranch lpm_unconn_cont ,blank 
+0x3d58 005595 fetch 1 ,mem_scan_mode 
+0x3d59 005596 rtn blank 
+:      005597 lpm_unconn_cont:
+0x3d5a 005598 fetch 2 ,mem_lpm_interval 
+0x3d5b 005599 rtn blank 
+:      005600 lpm_sleep_btclk:
+0x3d5c 005601 fetcht 1 ,mem_lpm_overhead 
+0x3d5d 005602 isub temp ,pdata 
+0x3d5e 005603 arg 7500 ,temp 
+0x3d5f 005604 imul32 temp ,pdata 
+0x3d60 005605 branch lpm_dispatch_sleep 
+:      005607 lpm_set_mult:
+0x3d61 005608 set0 mark_ext_patch ,mark 
+0x3d62 005609 bpatch patch16_7 ,mem_patch16 
+0x3d63 005610 disable wake 
+0x3d64 005611 fetch 1 ,mem_state 
+0x3d65 005612 rtnbit0 state_insniff 
+0x3d66 005613 nbranch lpm_not_match ,match 
+0x3d67 005614 call lpm_match 
+0x3d68 005615 fetch 2 ,mem_rx_window_sniff 
+0x3d69 005616 store 2 ,mem_rx_window 
+0x3d6a 005617 fetch 1 ,mem_arq 
+0x3d6b 005618 bbit1 wack ,lpm_mult_short 
+0x3d6c 005619 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3d6d 005620 call l2cap_malloc_is_fifo_empty 
+0x3d6e 005621 nbranch lpm_mult_short ,blank 
+:      005622 lpm_mult_wait_timeout:
+0x3d6f 005623 jam 0 ,mem_lpm_current_mult 
+0x3d70 005624 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3d71 005625 fetch 1 ,mem_lpm_mult_cnt 
+0x3d72 005626 branch lpm_mult_long ,blank 
+0x3d73 005627 increase -1 ,pdata 
+0x3d74 005628 store 1 ,mem_lpm_mult_cnt 
+0x3d75 005629 rtn 
+:      005631 lpm_match:
+0x3d76 005632 jam 0 ,mem_sniff_unint_lost 
+0x3d77 005633 fetch 3 ,mem_sniff_rcv 
+0x3d78 005634 increase 1 ,pdata 
+0x3d79 005635 store 3 ,mem_sniff_rcv 
+0x3d7a 005636 rtn 
+:      005638 lpm_not_match:
+0x3d7b 005639 set0 mark_ext_patch ,mark 
+0x3d7c 005640 bpatch patch17_0 ,mem_patch17 
+0x3d7d 005641 fetcht 2 ,mem_rx_window_sniff 
+0x3d7e 005642 rshift temp ,temp 
+0x3d7f 005643 fetch 2 ,mem_rx_window 
+0x3d80 005644 iadd temp ,pdata 
+0x3d81 005645 store 2 ,mem_rx_window 
+:      005646 lpm_lost:
+0x3d82 005647 jam 0 ,mem_lpm_current_mult 
+0x3d83 005648 fetch 3 ,mem_sniff_lost 
+0x3d84 005649 increase 1 ,pdata 
+0x3d85 005650 store 3 ,mem_sniff_lost 
+0x3d86 005651 fetch 1 ,mem_sniff_unint_lost 
+0x3d87 005652 increase 1 ,pdata 
+0x3d88 005653 store 1 ,mem_sniff_unint_lost 
+0x3d89 005654 rtn 
+:      005656 lpm_mult_short:
+0x3d8a 005657 jam 0 ,mem_lpm_current_mult 
+0x3d8b 005658 fetch 1 ,mem_lpm_mult_timeout 
+0x3d8c 005659 store 1 ,mem_lpm_mult_cnt 
+0x3d8d 005660 rtn 
+:      005662 lpm_mult_long:
+0x3d8e 005663 fetcht 1 ,mem_lpm_mult 
+0x3d8f 005664 storet 1 ,mem_lpm_current_mult 
+0x3d90 005665 rtn 
+:      005667 lpm_cal_xtal_startup:
+0x3d91 005668 set0 mark_ext_patch ,mark 
+0x3d92 005669 bpatch patch17_1 ,mem_patch17 
+0x3d93 005670 fetch 1 ,mem_lpm_xtalcnt 
+0x3d94 005671 nrtn blank 
+0x3d95 005672 hjam clksel_rc ,core_clksel 
+0x3d96 005673 setarg 0xf0c 
+0x3d97 005674 call lpm_write_config 
+0x3d98 005675 setarg 200000 
+0x3d99 005676 call sleep 
+0x3d9a 005677 until null ,lpo_edge 
+0x3d9b 005678 copy lpo_time ,alarm 
+0x3d9c 005679 call xtal_fast_wake 
+0x3d9d 005680 hjam clksel_xtal ,core_clksel 
+0x3d9e 005681 nop 10 
+0x3d9f 005682 until null ,lpo_edge 
+0x3da0 005683 deposit lpo_time 
+0x3da1 005684 isub alarm ,pdata 
+0x3da2 005685 increase 0x30 ,pdata 
+0x3da3 005686 arg 0xff ,temp 
+0x3da4 005687 call ceiling 
+0x3da5 005688 store 1 ,mem_lpm_xtalcnt 
+0x3da6 005689 rtn 
+:      005694 lpm_write_config:
+0x3da7 005695 arg 0xfff ,contw 
+0x3da8 005696 iand contw ,contw 
+0x3da9 005697 fetch 1 ,mem_lpm_config 
+0x3daa 005698 and_into 0xf0 ,pdata 
+0x3dab 005699 lshift8 pdata ,pdata 
+0x3dac 005700 ior contw ,pdata 
+0x3dad 005701 hstore 2 ,core_lpm_reg 
+0x3dae 005702 ifetch 2 ,contr 
+0x3daf 005703 istore 2 ,contw 
+:      005705 lpm_write_ctrl:
+0x3db0 005706 setarg lpmreg_sel_ctrl 
+0x3db1 005707 branch lpm_write 
+:      005709 lpm_write_ctrl2:
+0x3db2 005710 setarg lpmreg_sel_ctrl2 
+:      005711 lpm_write:
+0x3db3 005712 until null ,lpo_edge 
+0x3db4 005713 hstore 1 ,core_lpm_wr 
+0x3db5 005714 until null ,lpo_edge 
+0x3db6 005715 until null ,lpo_edge 
+0x3db7 005716 rtn 
+:      005719 lpm_write_gpio_wakeup:
+0x3db8 005720 set0 mark_ext_patch ,mark 
+0x3db9 005721 bpatch patch17_2 ,mem_patch17 
+0x3dba 005722 fetch 4 ,mem_gpio_wakeup_low 
+0x3dbb 005723 hstore 4 ,core_lpm_reg 
+0x3dbc 005724 setarg lpmreg_sel_gpiolow 
+0x3dbd 005725 call lpm_write 
+0x3dbe 005726 fetch 4 ,mem_gpio_wakeup_high 
+0x3dbf 005727 hstore 4 ,core_lpm_reg 
+0x3dc0 005728 setarg lpmreg_sel_gpiohigh 
+0x3dc1 005729 branch lpm_write 
+:      005731 lpm_get_wake_lock:
+0x3dc2 005732 fetch 2 ,mem_lpm_wake_lock 
+0x3dc3 005733 qset1 pdata 
+0x3dc4 005734 store 2 ,mem_lpm_wake_lock 
+0x3dc5 005735 rtn 
+:      005737 lpm_put_wake_lock:
+0x3dc6 005738 fetch 2 ,mem_lpm_wake_lock 
+0x3dc7 005739 qset0 pdata 
+0x3dc8 005740 store 2 ,mem_lpm_wake_lock 
+0x3dc9 005741 rtn 
+:      005745 lpm_check_wake_lock:
+0x3dca 005746 set0 mark_ext_patch ,mark 
+0x3dcb 005747 bpatch patch17_3 ,mem_patch17 
+0x3dcc 005748 call app_check_wake_lock 
+0x3dcd 005749 fetch 2 ,mem_lpm_wake_lock 
+0x3dce 005750 copy pdata ,rega 
+0x3dcf 005751 fetch 1 ,mem_state_map 
+0x3dd0 005752 isolate1 smap_rxlmp ,pdata 
+0x3dd1 005753 setflag true ,wake_lock_lmp_rx ,rega 
+0x3dd2 005754 fetch 1 ,mem_lmo_opcode1 
+0x3dd3 005755 fetcht 1 ,mem_lmo_opcode2 
+0x3dd4 005756 iadd temp ,pdata 
+0x3dd5 005757 fetcht 1 ,mem_lmp_to_send 
+0x3dd6 005758 iadd temp ,pdata 
+0x3dd7 005759 nsetflag blank ,wake_lock_lmp_tx ,rega 
+0x3dd8 005760 set0 mark_ext_patch ,mark 
+0x3dd9 005761 bpatch patch17_4 ,mem_patch17 
+0x3dda 005762 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3ddb 005763 fetcht 2 ,mem_l2cap_rxbuff2_len 
+0x3ddc 005764 iadd temp ,pdata 
+0x3ddd 005765 nsetflag blank ,wake_lock_l2cap_rx ,rega 
+0x3dde 005766 fetch 5 ,mem_ipc_fifo_bt2c51 
+0x3ddf 005767 nsetflag blank ,wake_lock_ipc_bt2c51 ,rega 
+0x3de0 005768 fetch 5 ,mem_ipc_fifo_c512bt 
+0x3de1 005769 nsetflag blank ,wake_lock_ipc_c512bt ,rega 
+0x3de2 005770 fetch 1 ,mem_hci_cmd 
+0x3de3 005771 nsetflag blank ,wake_lock_cmd ,rega 
+0x3de4 005772 fetch 1 ,mem_device_option 
+0x3de5 005773 compare dvc_op_module ,pdata ,0xff 
+0x3de6 005774 call lpm_uart_wake_lock ,true 
+0x3de7 005775 set0 mark_ext_patch ,mark 
+0x3de8 005776 bpatch patch17_5 ,mem_patch17 
+0x3de9 005777 fetch 1 ,mem_device_option 
+0x3dea 005778 bne dvc_op_hci ,lpm_check_wake_lock_nothci 
+0x3deb 005779 call lpm_uart_wake_lock 
+0x3dec 005780 fetch 1 ,mem_link_key_exists 
+0x3ded 005781 setflag blank ,wake_link_key_exists ,rega 
+0x3dee 005782 fetch 4 ,mem_lpm_delay_after_sniff 
+0x3def 005783 arg 0x1710 ,temp 
+0x3df0 005784 iadd temp ,temp 
+0x3df1 005785 copy clkn_bt ,pdata 
+0x3df2 005786 isub temp ,null 
+0x3df3 005787 nsetflag positive ,wake_lock_delay ,rega 
+0x3df4 005788 branch lpm_check_wake_lock_end 
+:      005790 lpm_uart_wake_lock:
+0x3df5 005791 hfetch 2 ,core_uart_rxitems 
+0x3df6 005792 nsetflag blank ,wake_lock_uart_rx ,rega 
+0x3df7 005793 hfetch 2 ,core_uart_txitems 
+0x3df8 005794 nsetflag blank ,wake_lock_uart_tx ,rega 
+0x3df9 005795 rtn 
+:      005797 lpm_check_wake_lock_nothci:
+0x3dfa 005798 setarg -8 
+0x3dfb 005799 iand rega ,rega 
+:      005800 lpm_check_wake_lock_end:
+0x3dfc 005801 copy rega ,pdata 
+0x3dfd 005802 store 2 ,mem_lpm_wake_lock 
+0x3dfe 005803 rtn blank 
+0x3dff 005804 rtn match 
+0x3e00 005805 enable wake 
+0x3e01 005806 rtn 
+:      005808 lpm_shut_down:
+0x3e02 005809 hfetch 4 ,core_lpm_ctrl 
+0x3e03 005810 set0 27 ,pdata 
+0x3e04 005811 hstore 4 ,core_lpm_reg 
+0x3e05 005812 call lpm_write_ctrl 
+0x3e06 005813 branch assert 
+:      005815 lpm_enable_exen_output:
+0x3e07 005816 hfetch 4 ,core_lpm_xtalcnt 
+0x3e08 005817 set1 20 ,pdata 
+0x3e09 005818 hstore 4 ,core_lpm_reg 
+0x3e0a 005819 branch lpm_write_ctrl2 
+:      005821 lpm_disable_exen_output:
+0x3e0b 005822 hfetch 4 ,core_lpm_xtalcnt 
+0x3e0c 005823 set0 20 ,pdata 
+0x3e0d 005824 hstore 4 ,core_lpm_reg 
+0x3e0e 005825 branch lpm_write_ctrl2 
+:      005827 lpm_hci_wake_dispatch:
+0x3e0f 005828 set0 mark_ext_patch ,mark 
+0x3e10 005829 bpatch patch17_6 ,mem_patch17 
+0x3e11 005830 fetch 1 ,mem_device_option 
+0x3e12 005831 rtnne dvc_op_hci 
+0x3e13 005832 call gpio_check_uart_state 
+0x3e14 005833 rtn true 
+0x3e15 005834 fetch 4 ,mem_hci_wake_clk 
+0x3e16 005835 nbranch lpm_hci_check_wake_time ,blank 
+0x3e17 005836 copy clkn_bt ,pdata 
+0x3e18 005837 store 4 ,mem_hci_wake_clk 
+0x3e19 005838 branch gpio_pd_uart_tx 
+:      005839 lpm_hci_check_wake_time:
+0x3e1a 005840 set0 mark_ext_patch ,mark 
+0x3e1b 005841 bpatch patch17_7 ,mem_patch17 
+0x3e1c 005842 copy clkn_bt ,pdata 
+0x3e1d 005843 fetcht 4 ,mem_hci_wake_clk 
+0x3e1e 005844 isub temp ,pdata 
+0x3e1f 005845 arg host_wake_time ,temp 
+0x3e20 005846 isub temp ,null 
+0x3e21 005847 nrtn positive 
+0x3e22 005848 setarg 0 
+0x3e23 005849 store 4 ,mem_hci_wake_clk 
+0x3e24 005850 branch hci_exit_lpm 
+:      005852 check_bt_disabled:
+0x3e25 005853 fetch 2 ,mem_chip_functions 
+0x3e26 005854 bbit1 bt_disabled ,assert 
+0x3e27 005855 rtn 
+:      005856 check_ble_disabled:
+0x3e28 005857 fetch 2 ,mem_chip_functions 
+0x3e29 005858 bbit1 ble_disabled ,assert 
+0x3e2a 005859 rtn 
+:      005860 check_module_disabled:
+0x3e2b 005861 fetch 2 ,mem_chip_functions 
+0x3e2c 005862 bbit1 module_disable ,assert 
+0x3e2d 005863 rtn 
+:      005865 test_init:
+0x3e2e 005866 setarg test_proc 
+0x3e2f 005867 store 2 ,mem_cb_bt_process 
+0x3e30 005868 setarg test_sleep 
+0x3e31 005869 store 2 ,mem_cb_bb_event_process 
+0x3e32 005870 setarg test_proc 
+0x3e33 005871 store 2 ,mem_cb_idle_process 
+0x3e34 005872 rtn wake 
+0x3e35 005873 jam ui_led_start ,mem_led_switch 
+0x3e36 005874 rtn 
+:      005876 test_proc:
+0x3e37 005877 fetch 1 ,mem_state 
+0x3e38 005878 bbit0 state_insniff ,check_test_cond 
+0x3e39 005879 set1 mark_lpm_mult_enable ,mark 
+0x3e3a 005880 fetch 6 ,mem_sniff_rcv 
+0x3e3b 005881 store 6 ,mem_local_name 
+0x3e3c 005882 branch ui_led_blink_stop 
+:      005885 test_sleep:
+0x3e3d 005886 deposit regc 
+0x3e3e 005887 rtnne bt_evt_button_long_pressed 
+:      005888 test_sleep_loop:
+0x3e3f 005889 call ui_button_polling 
+0x3e40 005890 fetch 1 ,mem_ui_button_last_state 
+0x3e41 005891 beq 1 ,test_sleep_loop 
+0x3e42 005892 call ui_led_off 
+0x3e43 005893 branch lpm_hibernate 
+:      005896 test_tx:
+0x3e44 005897 force 2 ,temp 
+0x3e45 005898 increase -2 ,temp 
+0x3e46 005899 call set_sync_on 
+0x3e47 005900 call set_freq_tx 
+0x3e48 005901 disable enable_white 
+0x3e49 005902 enable encode_fec0 
+0x3e4a 005903 set1 txgfsk ,radio_ctrl 
+0x3e4b 005904 call start_transmitter 
+:      005905 test_tx_loop:
+0x3e4c 005906 fetch 1 ,0 
+0x3e4d 005907 inject mod ,8 
+0x3e4e 005908 branch test_tx_loop 
+:      005914 app_init:
+0x3e4f 005915 set1 mark_ext_patch ,mark 
+0x3e50 005916 bpatch patch39_5 ,mem_patch39 
+0x3e51 005917 fetch 1 ,mem_device_option 
+0x3e52 005918 branch app_init ,blank 
+0x3e53 005919 beq dvc_op_ukey ,le_ukey_init 
+0x3e54 005920 beq dvc_op_ir ,le_ir_init 
+0x3e55 005921 beq dvc_op_dongle ,le_dongle_init 
+0x3e56 005922 beq dvc_op_kb ,kb_init 
+0x3e57 005923 beq dvc_op_hci ,hci_init 
+0x3e58 005924 beq dvc_op_shutter ,shutter_init 
+0x3e59 005925 beq dvc_op_module ,module_init 
+0x3e5a 005926 beq dvc_op_ble_kb ,le_kb_init 
+0x3e5b 005927 beq dvc_op_ble_prcp ,prcp_init 
+0x3e5c 005928 beq dvc_op_test ,test_init 
+0x3e5d 005929 bbit1 dvc_op_mouse ,mouse_init 
+0x3e5e 005930 rtn 
+:      005932 app_lpm_init:
+0x3e5f 005933 set1 mark_ext_patch ,mark 
+0x3e60 005934 bpatch patch39_6 ,mem_patch39 
+0x3e61 005935 jam 0 ,mem_tester_emulate 
+0x3e62 005936 jam 0 ,mem_debug_config 
+0x3e63 005937 jam 0 ,mem_lch_code 
+0x3e64 005938 setarg 0 
+0x3e65 005939 store 5 ,mem_sp_state_start 
+0x3e66 005940 fetch 1 ,mem_device_option 
+0x3e67 005941 branch app_lpm_init ,blank 
+0x3e68 005942 beq dvc_op_module ,module_lpm_init 
+0x3e69 005943 rtn 
+:      005946 app_process_idle:
+0x3e6a 005947 call ui_dispatch 
+0x3e6b 005948 call check_51cmd 
+0x3e6c 005949 call app_process_bb_event 
+0x3e6d 005950 fetch 2 ,mem_cb_idle_process 
+0x3e6e 005951 branch callback_func 
+:      005953 app_process_bt:
+0x3e6f 005954 fetch 2 ,mem_cb_bt_process 
+0x3e70 005955 branch callback_func 
+:      005957 app_process_ble:
+0x3e71 005958 fetch 2 ,mem_cb_le_process 
+0x3e72 005959 branch callback_func 
+:      005961 app_process_bb_event:
+0x3e73 005962 set1 mark_ext_patch ,mark 
+0x3e74 005963 bpatch patch39_7 ,mem_patch39 
+0x3e75 005965 arg mem_ipc_fifo_bt2c51 ,rega 
+0x3e76 005966 call fifo_out 
+0x3e77 005967 rtn blank 
+0x3e78 005969 copy pdata ,regc 
+0x3e79 005970 call app_event_normal_process 
+0x3e7a 005971 branch app_process_bb_event_priority 
+:      005973 app_discard_event:
+0x3e7b 005974 arg 0 ,regc 
+0x3e7c 005975 rtn 
+:      005980 app_event_normal_process:
+0x3e7d 005981 beq bt_evt_bb_connected ,app_evt_bt_conn 
+0x3e7e 005982 beq bt_evt_button_long_pressed ,app_evt_button_long_pressed 
+0x3e7f 005983 beq bt_evt_setup_complete ,app_evt_setup_complete 
+0x3e80 005984 beq bt_evt_hid_handshake ,app_evt_hid_handshake 
+0x3e81 005985 beq bt_evt_hid_connected ,app_bb_event_hid_connected 
+0x3e82 005986 beq bt_evt_reconn_failed ,app_bb_event_reconn_failed 
+0x3e83 005987 beq bt_evt_bb_disconnected ,app_bb_event_bb_disconn 
+0x3e84 005988 beq bt_evt_reconn_page_timeout ,app_bb_event_reconn_failed 
+0x3e85 005989 beq bt_evt_le_connected ,app_le_event_bb_connected 
+0x3e86 005990 beq bt_evt_le_disconnected ,app_le_event_bb_disconn 
+0x3e87 005991 beq bt_evt_reconn_started ,app_event_reconn_start 
+0x3e88 005992 beq bt_evt_enter_sniff ,app_event_enter_sniff 
+0x3e89 005993 beq bt_evt_exit_sniff ,app_event_exit_sniff 
+0x3e8a 005995 beq bt_evt_ml2cap_conn_refused ,app_event_ml2cap_conn_refused 
+0x3e8b 005996 beq bt_evt_linkkey_generate ,app_event_linkkey_generate 
+0x3e8c 005997 beq bt_evt_switch_fail_master ,app_event_switch_fail_master 
+0x3e8d 005998 beq bt_evt_switch_success_master ,app_event_switch_success 
+0x3e8e 006000 and pdata ,0x0f ,temp 
+0x3e8f 006001 and_into bt_evt_timer_mask ,pdata 
+0x3e90 006002 beq bt_evt_timer_init ,app_evt_timer 
+0x3e91 006003 rtn 
+:      006005 app_evt_bt_conn:
+0x3e92 006006 fetch 2 ,mem_ui_state_map 
+0x3e93 006007 set1 ui_state_bt_connected ,pdata 
+0x3e94 006008 store 2 ,mem_ui_state_map 
+0x3e95 006009 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e96 006010 set0 app_disc_by_button ,pdata 
+0x3e97 006011 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e98 006012 rtn 
+:      006013 app_event_switch_success:
+0x3e99 006014 jam 0 ,mem_switch_fail_master_count 
+0x3e9a 006015 rtn 
+:      006017 app_event_switch_fail_master:
+0x3e9b 006018 fetch 1 ,mem_switch_fail_master_count 
+0x3e9c 006019 increase 1 ,pdata 
+0x3e9d 006020 store 1 ,mem_switch_fail_master_count 
+0x3e9e 006021 sub pdata ,1 ,null 
+0x3e9f 006022 branch app_bt_role_switch ,positive 
+0x3ea0 006023 jam 0 ,mem_switch_fail_master_count 
+0x3ea1 006024 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ea2 006025 set1 app_disc_switch_fail ,pdata 
+0x3ea3 006026 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ea4 006027 branch app_bt_disconnect 
+:      006029 app_process_bb_event_priority:
+0x3ea5 006030 fetch 2 ,mem_cb_bb_event_process 
+0x3ea6 006031 branch callback_func 
+:      006033 app_check_wake_lock:
+0x3ea7 006034 fetch 2 ,mem_cb_check_wakelock 
+0x3ea8 006035 branch callback_func 
+:      006037 app_will_enter_lpm:
+0x3ea9 006038 fetch 2 ,mem_cb_before_lpm 
+0x3eaa 006039 branch callback_func 
+:      006041 app_event_linkkey_generate:
+0x3eab 006042 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eac 006043 set1 app_disc_after_pairing ,pdata 
+0x3ead 006044 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eae 006045 branch app_bt_store_reconn_info 
+:      006047 app_event_reconn_start:
+0x3eaf 006048 fetch 2 ,mem_ui_state_map 
+0x3eb0 006049 set1 ui_state_bt_reconnect ,pdata 
+0x3eb1 006050 store 2 ,mem_ui_state_map 
+0x3eb2 006051 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eb3 006052 set1 app_disc_after_reconn ,pdata 
+0x3eb4 006053 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eb5 006054 rtn 
+:      006056 app_evt_setup_complete:
+0x3eb6 006057 fetch 2 ,mem_ui_state_map 
+0x3eb7 006058 set1 ui_state_bt_setup_complete ,pdata 
+0x3eb8 006059 store 2 ,mem_ui_state_map 
+0x3eb9 006060 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eba 006061 set1 app_disc_after_setup_done ,pdata 
+0x3ebb 006062 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ebc 006063 rtn 
+:      006065 app_evt_hid_handshake:
+0x3ebd 006066 fetch 2 ,mem_ui_state_map 
+0x3ebe 006067 set1 ui_state_bt_hid_handshake ,pdata 
+0x3ebf 006068 store 2 ,mem_ui_state_map 
+0x3ec0 006069 rtn 
+:      006071 app_event_enter_sniff:
+0x3ec1 006072 fetch 2 ,mem_ui_state_map 
+0x3ec2 006073 set1 ui_state_bt_sniff ,pdata 
+0x3ec3 006074 store 2 ,mem_ui_state_map 
+0x3ec4 006075 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ec5 006076 set1 app_disc_after_sniff ,pdata 
+0x3ec6 006077 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ec7 006078 rtn 
+:      006080 app_event_exit_sniff:
+0x3ec8 006081 fetch 2 ,mem_ui_state_map 
+0x3ec9 006082 set0 ui_state_bt_sniff ,pdata 
+0x3eca 006083 store 2 ,mem_ui_state_map 
+0x3ecb 006084 rtn 
+:      006086 app_le_event_bb_connected:
+0x3ecc 006087 fetch 2 ,mem_ui_state_map 
+0x3ecd 006088 set1 ui_state_ble_connected ,pdata 
+0x3ece 006089 store 2 ,mem_ui_state_map 
+0x3ecf 006090 rtn 
+:      006092 app_le_event_bb_disconn:
+0x3ed0 006093 fetch 2 ,mem_ui_state_map 
+0x3ed1 006094 set0 ui_state_ble_connected ,pdata 
+0x3ed2 006095 store 2 ,mem_ui_state_map 
+0x3ed3 006096 jam 0 ,mem_le_switch_send_data 
+0x3ed4 006097 branch app_lpm_mult_disable 
+:      006099 app_bb_event_hid_connected:
+0x3ed5 006100 fetch 2 ,mem_ui_state_map 
+0x3ed6 006101 set1 ui_state_bt_hid_conn ,pdata 
+0x3ed7 006102 store 2 ,mem_ui_state_map 
+0x3ed8 006103 rtn 
+:      006105 app_evt_button_long_pressed:
+0x3ed9 006106 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eda 006107 set1 app_disc_by_button ,pdata 
+0x3edb 006108 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3edc 006109 rtn 
+:      006111 app_event_ml2cap_conn_refused:
+0x3edd 006112 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ede 006113 set1 app_disc_l2cap_refused ,pdata 
+0x3edf 006114 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ee0 006115 branch app_bt_disconnect 
+:      006118 app_evt_timer:
+0x3ee1 006119 set1 mark_ext_patch ,mark 
+0x3ee2 006120 bpatch patch3a_0 ,mem_patch3a 
+0x3ee3 006121 storet 1 ,mem_app_evt_timer_count 
+:      006122 app_evt_100ms_loop:
+0x3ee4 006123 fetch 1 ,mem_app_evt_timer_count 
+0x3ee5 006124 rtn blank 
+0x3ee6 006125 increase -1 ,pdata 
+0x3ee7 006126 store 1 ,mem_app_evt_timer_count 
+0x3ee8 006127 call ui_button_polling 
+0x3ee9 006128 call app_lpm_wake_auto_lock_timer 
+0x3eea 006129 call app_unsniff_delay_timer 
+0x3eeb 006130 call app_discovery_timer 
+0x3eec 006131 branch app_evt_100ms_loop 
+:      006133 app_unsniff_delay_timer:
+0x3eed 006134 fetch 1 ,mem_unsniff2sniff_timer_count 
+0x3eee 006135 rtn blank 
+0x3eef 006136 increase -1 ,pdata 
+0x3ef0 006137 store 1 ,mem_unsniff2sniff_timer_count 
+0x3ef1 006138 nrtn blank 
+0x3ef2 006139 call context_check_idle 
+0x3ef3 006140 branch app_bt_enter_sniff ,zero 
+0x3ef4 006141 rtn 
+:      006142 app_discovery_timer:
+0x3ef5 006143 fetch 2 ,mem_discovery_timeout_timer_count 
+0x3ef6 006144 rtn blank 
+0x3ef7 006145 increase -1 ,pdata 
+0x3ef8 006146 store 2 ,mem_discovery_timeout_timer_count 
+0x3ef9 006147 nrtn blank 
+0x3efa 006148 call app_bt_stop_discovery 
+0x3efb 006149 call app_led_off 
+0x3efc 006150 fetch 2 ,mem_cb_discovry_timeout 
+0x3efd 006151 branch callback_func 
+:      006153 app_bb_event_reconn_failed:
+0x3efe 006154 call app_disconn_reason_flag_clear 
+:      006155 app_clear_reconnect_flag:
+0x3eff 006156 fetch 2 ,mem_ui_state_map 
+0x3f00 006157 set0 ui_state_bt_reconnect ,pdata 
+0x3f01 006158 store 2 ,mem_ui_state_map 
+0x3f02 006159 rtn 
+:      006161 app_bb_event_bb_disconn:
+0x3f03 006162 jam 0 ,mem_unsniff2sniff_timer_count 
+0x3f04 006163 fetch 2 ,mem_ui_state_map 
+0x3f05 006164 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+0x3f06 006165 isolate0 ui_state_bt_setup_complete ,pdata 
+0x3f07 006166 call app_discard_event ,true 
+:      006167 app_bb_event_bb_reconn_disconn:
+0x3f08 006168 fetch 2 ,mem_ui_state_map 
+0x3f09 006169 set0 ui_state_bt_connected ,pdata 
+0x3f0a 006170 set0 ui_state_bt_setup_complete ,pdata 
+0x3f0b 006171 set0 ui_state_bt_hid_conn ,pdata 
+0x3f0c 006172 set0 ui_state_bt_hid_handshake ,pdata 
+0x3f0d 006173 set0 ui_state_bt_spp_conn ,pdata 
+0x3f0e 006174 store 2 ,mem_ui_state_map 
+0x3f0f 006175 branch app_lpm_mult_disable 
+:      006177 app_bb_hibernate:
+0x3f10 006178 call app_disconn_reason_clear 
+0x3f11 006179 branch app_enter_hibernate 
+:      006182 app_event_do_nothing:
+:      006183 app_disconn_reason_clear:
+0x3f12 006184 setarg 0 
+0x3f13 006185 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3f14 006186 rtn 
+:      006187 app_disconn_reason_flag_clear:
+0x3f15 006188 setarg 0 
+0x3f16 006189 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f17 006190 rtn 
+:      006193 app_disconn_reason_collect_bt:
+0x3f18 006194 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f19 006195 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3f1a 006196 setarg 0 
+0x3f1b 006197 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f1c 006198 rtn 
+:      006200 app_disconn_reason_collect_ble:
+0x3f1d 006201 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f1e 006202 set1 app_disc_ble ,pdata 
+0x3f1f 006203 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3f20 006204 setarg 0 
+0x3f21 006205 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f22 006206 rtn 
+:      006212 app_check_reconn_target:
+0x3f23 006213 call eeprom_load_reconn_info 
+0x3f24 006214 fetch 6 ,mem_hci_plap 
+0x3f25 006215 rtn 
+:      006217 app_le_check_reconn_target:
+0x3f26 006218 fetch 1 ,mem_ltk_exists 
+0x3f27 006219 branch app_le_check_reconn_target_none ,blank 
+0x3f28 006220 call app_led_on 
+0x3f29 006221 branch app_ble_start_direct_adv 
+:      006222 app_le_check_reconn_target_none:
+0x3f2a 006223 call app_led_start_blink 
+0x3f2b 006224 branch app_ble_start_adv 
+:      006226 app_check_plap:
+0x3f2c 006227 set1 mark_ext_patch ,mark 
+0x3f2d 006228 bpatch patch3a_1 ,mem_patch3a 
+0x3f2e 006229 arg mem_check_plap_temp ,regb 
+0x3f2f 006230 arg app_check_one_plap ,regc 
+0x3f30 006231 branch context_search 
+:      006233 app_check_one_plap:
+0x3f31 006234 arg 0 ,temp 
+0x3f32 006235 bbit0 state_inconn ,app_check_one_plap_next 
+0x3f33 006236 add rega ,coffset_plap ,contr 
+0x3f34 006237 ifetcht 6 ,contr 
+:      006238 app_check_one_plap_next:
+0x3f35 006239 copy temp ,pdata 
+0x3f36 006240 ncall app_check_one_plap_device_exist ,blank 
+0x3f37 006241 istoret 6 ,regb 
+0x3f38 006242 increase 6 ,regb 
+0x3f39 006243 branch context_search_next 
+:      006244 app_check_one_plap_device_exist:
+0x3f3a 006245 fetch 1 ,mem_device_nums 
+0x3f3b 006246 increase 1 ,pdata 
+0x3f3c 006247 store 1 ,mem_device_nums 
+0x3f3d 006248 rtn 
+:      006250 app_check_conn_device_nums_addr:
+0x3f3e 006251 jam 0 ,mem_device_nums 
+0x3f3f 006252 branch app_check_plap 
+:      006254 app_check_sniff:
+0x3f40 006255 fetch 1 ,mem_ui_state_map 
+0x3f41 006256 isolate1 ui_state_bt_sniff ,pdata 
+0x3f42 006257 rtn 
+:      006262 app_clearflag_store:
+0x3f43 006263 setarg 0 
+0x3f44 006264 branch app_flag_store 
+:      006265 app_initflag_store:
+0x3f45 006266 setarg eeprom_init_flag 
+:      006267 app_flag_store:
+0x3f46 006268 store 2 ,mem_timeup 
+0x3f47 006269 set1 mark_ext_patch ,mark 
+0x3f48 006270 bpatch patch3a_2 ,mem_patch3a 
+0x3f49 006271 arg 2 ,temp 
+0x3f4a 006272 arg mem_timeup ,rega 
+0x3f4b 006273 arg eeprom_module_init_flag ,regb 
+0x3f4c 006274 branch iicd_write_eep_data 
+:      006277 app_initflag_check:
+0x3f4d 006278 set1 mark_ext_patch ,mark 
+0x3f4e 006279 bpatch patch3a_3 ,mem_patch3a 
+0x3f4f 006280 arg 2 ,temp 
+0x3f50 006281 arg mem_pdatatemp ,rega 
+0x3f51 006282 arg eeprom_module_init_flag ,regb 
+0x3f52 006283 call iicd_read_eep_data 
+0x3f53 006284 fetch 2 ,mem_pdatatemp 
+0x3f54 006285 arg eeprom_init_flag ,temp 
+0x3f55 006286 isub temp ,null 
+0x3f56 006287 rtn 
+:      006290 app_start_auto_sniff:
+0x3f57 006291 fetch 1 ,mem_unsniff2sniff_timer 
+0x3f58 006292 store 1 ,mem_unsniff2sniff_timer_count 
+0x3f59 006293 rtn 
+:      006295 app_get_lpm_wake_lock:
+0x3f5a 006296 arg wake_lock_app ,queue 
+0x3f5b 006297 branch lpm_get_wake_lock 
+:      006299 app_put_lpm_wake_lock:
+0x3f5c 006300 arg wake_lock_app ,queue 
+0x3f5d 006301 branch lpm_put_wake_lock 
+:      006303 app_lpm_wake_auto_lock:
+0x3f5e 006304 jam lpm_wake_up_delay_timer ,mem_wake_up_delay_timer 
+0x3f5f 006305 branch app_get_lpm_wake_lock 
+:      006306 app_lpm_wake_auto_lock_timer:
+0x3f60 006307 fetch 1 ,mem_wake_up_delay_timer 
+0x3f61 006308 rtn blank 
+0x3f62 006309 increase -1 ,pdata 
+0x3f63 006310 store 1 ,mem_wake_up_delay_timer 
+0x3f64 006311 nrtn blank 
+0x3f65 006312 branch app_put_lpm_wake_lock 
+:      006314 app_l2cap_flow_control_enable:
+0x3f66 006315 jam l2cap_flow_ctrl_enable ,mem_l2cap_flow_ctrl_flag 
+0x3f67 006316 rtn 
+:      006318 app_l2cap_flow_control_disable:
+0x3f68 006319 jam l2cap_flow_ctrl_disable ,mem_l2cap_flow_ctrl_flag 
+0x3f69 006320 rtn 
+:      006322 app_bt_set_pincode:
+0x3f6a 006323 jam bt_cmd_set_pin_code ,mem_fifo_temp 
+0x3f6b 006324 branch ui_ipc_send_cmd 
+:      006326 app_bt_role_switch:
+0x3f6c 006327 jam bt_cmd_role_switch ,mem_fifo_temp 
+0x3f6d 006328 branch ui_ipc_send_cmd 
+:      006330 app_bt_start_reconnect:
+0x3f6e 006331 set1 mark_ext_patch ,mark 
+0x3f6f 006332 bpatch patch3a_4 ,mem_patch3a 
+0x3f70 006333 fetch 1 ,mem_app_connection_options 
+0x3f71 006334 store 1 ,mem_connection_options 
+0x3f72 006335 jam app_flag_reconnect ,mem_reconnect_flag 
+0x3f73 006336 jam bt_cmd_reconnect ,mem_fifo_temp 
+0x3f74 006337 branch ui_ipc_send_cmd 
+:      006339 app_bt_reconnect_cancel:
+0x3f75 006340 jam bt_cmd_bb_reconn_cancel ,mem_fifo_temp 
+0x3f76 006341 branch ui_ipc_send_cmd 
+:      006343 app_bt_disconnect:
+0x3f77 006344 jam bt_cmd_disconnect ,mem_fifo_temp 
+0x3f78 006345 branch ui_ipc_send_cmd 
+:      006347 app_bt_start_discovery_short:
+0x3f79 006348 fetch 2 ,mem_discovery_timeout 
+0x3f7a 006349 store 2 ,mem_discovery_timeout_timer_count 
+:      006350 app_bt_start_discovery_led_blink:
+0x3f7b 006351 call app_led_start_blink 
+:      006352 app_bt_start_discovery:
+0x3f7c 006353 jam bt_cmd_start_discovery ,mem_fifo_temp 
+0x3f7d 006354 branch ui_ipc_send_cmd 
+:      006356 app_bt_stop_discovery:
+0x3f7e 006357 setarg 0 
+0x3f7f 006358 store 2 ,mem_discovery_timeout_timer_count 
+0x3f80 006359 jam bt_cmd_stop_discovery ,mem_fifo_temp 
+0x3f81 006360 branch ui_ipc_send_cmd 
+:      006362 app_ble_start_direct_adv:
+0x3f82 006363 jam bt_cmd_start_direct_adv ,mem_fifo_temp 
+0x3f83 006364 branch ui_ipc_send_cmd 
+:      006366 app_ble_stop_direct_adv:
+0x3f84 006367 jam bt_cmd_stop_direct_adv ,mem_fifo_temp 
+0x3f85 006368 branch ui_ipc_send_cmd 
+:      006370 app_ble_stop_adv:
+0x3f86 006371 jam bt_cmd_stop_adv ,mem_fifo_temp 
+0x3f87 006372 branch ui_ipc_send_cmd 
+:      006374 app_ble_start_adv:
+0x3f88 006375 jam bt_cmd_start_adv ,mem_fifo_temp 
+0x3f89 006376 branch ui_ipc_send_cmd 
+:      006378 app_ble_start_scan:
+0x3f8a 006379 jam bt_cmd_le_start_scan ,mem_fifo_temp 
+0x3f8b 006380 branch ui_ipc_send_cmd 
+:      006382 app_ble_stop_scan:
+0x3f8c 006383 jam bt_cmd_le_stop_scan ,mem_fifo_temp 
+0x3f8d 006384 branch ui_ipc_send_cmd 
+:      006386 app_ble_start_conn:
+0x3f8e 006387 jam bt_cmd_le_start_conn ,mem_fifo_temp 
+0x3f8f 006388 branch ui_ipc_send_cmd 
+:      006390 app_ble_disconnect:
+0x3f90 006391 jam bt_cmd_le_disconnect ,mem_fifo_temp 
+0x3f91 006392 branch ui_ipc_send_cmd 
+:      006394 app_ble_start_write:
+0x3f92 006395 jam bt_cmd_le_start_write ,mem_fifo_temp 
+0x3f93 006396 branch ui_ipc_send_cmd 
+:      006398 app_led_start_blink:
+0x3f94 006399 jam bt_cmd_led_blink ,mem_fifo_temp 
+0x3f95 006400 branch ui_ipc_send_cmd 
+:      006402 app_led_on:
+0x3f96 006403 jam bt_cmd_led_on ,mem_fifo_temp 
+0x3f97 006404 branch ui_ipc_send_cmd 
+:      006406 app_led_stop_blink:
+:      006407 app_led_off:
+0x3f98 006408 jam bt_cmd_led_off ,mem_fifo_temp 
+0x3f99 006409 branch ui_ipc_send_cmd 
+:      006411 app_enter_hibernate:
+0x3f9a 006412 jam bt_cmd_enter_hibernate ,mem_fifo_temp 
+0x3f9b 006413 branch ui_ipc_send_cmd 
+:      006415 app_bt_sniff_exit:
+0x3f9c 006416 jam bt_cmd_exit_sniff ,mem_fifo_temp 
+0x3f9d 006417 branch ui_ipc_send_cmd 
+:      006419 app_bt_enter_sniff:
+0x3f9e 006420 jam bt_cmd_enter_sniff ,mem_fifo_temp 
+0x3f9f 006421 branch ui_ipc_send_cmd 
+:      006423 app_ble_store_reconn_info:
+0x3fa0 006424 jam bt_cmd_store_reconn_info_le ,mem_fifo_temp 
+0x3fa1 006425 branch ui_ipc_send_cmd 
+:      006427 app_bt_store_reconn_info:
+0x3fa2 006428 jam bt_cmd_store_reconn_info_bt ,mem_fifo_temp 
+0x3fa3 006429 branch ui_ipc_send_cmd 
+:      006431 app_lpm_mult_enable:
+0x3fa4 006432 set1 mark_lpm_mult_enable ,mark 
+0x3fa5 006433 rtn 
+:      006435 app_lpm_mult_disable:
+0x3fa6 006436 set0 mark_lpm_mult_enable ,mark 
+0x3fa7 006437 rtn 
+:      006441 at_restore_param:
+0x3fa8 006442 set1 mark_ext_patch ,mark 
+0x3fa9 006443 bpatch patch32_0 ,mem_patch32 
+0x3faa 006444 arg 32 ,temp 
+0x3fab 006445 arg mem_le_name_len ,rega 
+0x3fac 006446 arg eeprom_module_ble_name_length ,regb 
+0x3fad 006447 call iicd_read_eep_data 
+0x3fae 006450 arg 32 ,temp 
+0x3faf 006451 arg mem_local_name_length ,rega 
+0x3fb0 006452 arg eeprom_module_bt_name_length ,regb 
+0x3fb1 006453 call iicd_read_eep_data 
+0x3fb2 006455 arg 6 ,temp 
+0x3fb3 006456 arg mem_lap ,rega 
+0x3fb4 006457 arg eeprom_module_bt_adss ,regb 
+0x3fb5 006458 call iicd_read_eep_data 
+0x3fb6 006460 arg 6 ,temp 
+0x3fb7 006461 arg mem_le_lap ,rega 
+0x3fb8 006462 arg eeprom_module_le_adss ,regb 
+0x3fb9 006463 call iicd_read_eep_data 
+0x3fba 006464 call le_modified_name 
+0x3fbb 006466 arg 2 ,temp 
+0x3fbc 006467 arg mem_baud ,rega 
+0x3fbd 006468 arg eeprom_module_trans_baud ,regb 
+0x3fbe 006469 call iicd_read_eep_data 
+0x3fbf 006470 call uart_set_baud_by_mem 
+0x3fc0 006472 branch at_restore_pin_code 
+:      006474 at_restore_pin_code:
+0x3fc1 006475 arg 14 ,temp 
+0x3fc2 006476 arg mem_pin_length ,rega 
+0x3fc3 006477 arg eeprom_module_pincode_length ,regb 
+0x3fc4 006478 branch iicd_read_eep_data 
+:      006480 init_module_environment:
+0x3fc5 006481 set1 mark_ext_patch ,mark 
+0x3fc6 006482 bpatch patch32_1 ,mem_patch32 
+0x3fc7 006483 call app_initflag_check 
+0x3fc8 006484 branch at_restore_param ,zero 
+:      006485 init_module_eeprom:
+0x3fc9 006486 call at_store_bt_name 
+0x3fca 006487 call at_store_le_name 
+0x3fcb 006488 call le_modified_name 
+0x3fcc 006489 call at_store_le_adss 
+0x3fcd 006490 call at_store_bt_adss 
+0x3fce 006491 call pincode_reinit 
+0x3fcf 006492 call at_store_bt_pincode 
+0x3fd0 006493 call at_store_throughput_uart_baud115200 
+0x3fd1 006494 branch app_initflag_store 
+:      006496 at_store_bt_name:
+0x3fd2 006497 fetcht 1 ,mem_local_name_length 
+0x3fd3 006498 increase 1 ,temp 
+0x3fd4 006499 arg mem_local_name_length ,rega 
+0x3fd5 006500 arg eeprom_module_bt_name_length ,regb 
+0x3fd6 006501 branch iicd_write_eep_data 
+:      006503 at_store_le_name:
+0x3fd7 006504 fetcht 1 ,mem_le_name_len 
+0x3fd8 006505 increase 1 ,temp 
+0x3fd9 006506 arg mem_le_name_len ,rega 
+0x3fda 006507 arg eeprom_module_ble_name_length ,regb 
+0x3fdb 006508 branch iicd_write_eep_data 
+:      006510 at_store_le_adss:
+0x3fdc 006511 arg 6 ,temp 
+0x3fdd 006512 arg mem_le_lap ,rega 
+0x3fde 006513 arg eeprom_module_le_adss ,regb 
+0x3fdf 006514 branch iicd_write_eep_data 
+:      006516 at_store_bt_adss:
+0x3fe0 006517 arg 6 ,temp 
+0x3fe1 006518 arg mem_lap ,rega 
+0x3fe2 006519 arg eeprom_module_bt_adss ,regb 
+0x3fe3 006520 branch iicd_write_eep_data 
+:      006522 at_store_bt_pincode:
+0x3fe4 006523 fetcht 1 ,mem_pin_length 
+0x3fe5 006524 increase 1 ,temp 
+0x3fe6 006525 arg mem_pin_length ,rega 
+0x3fe7 006526 arg eeprom_module_pincode_length ,regb 
+0x3fe8 006527 branch iicd_write_eep_data 
+:      006529 at_store_throughput_uart_baud115200:
+0x3fe9 006530 setarg at_baud_115200 
+0x3fea 006531 store 2 ,mem_timeup 
+:      006532 at_store_throughput_uart_baud:
+0x3feb 006533 arg 2 ,temp 
+0x3fec 006534 arg mem_timeup ,rega 
+0x3fed 006535 arg eeprom_module_trans_baud ,regb 
+0x3fee 006536 branch iicd_write_eep_data 
+:      006539 at_process:
+0x3fef 006540 set1 mark_ext_patch ,mark 
+0x3ff0 006541 bpatch patch32_2 ,mem_patch32 
+0x3ff1 006542 fetch 2 ,mem_current_packet_length 
+0x3ff2 006543 arg 300 ,temp 
+0x3ff3 006544 isub temp ,null 
+0x3ff4 006545 branch at_error_rev_end ,positive 
+0x3ff5 006546 call check_module_disabled 
+0x3ff6 006547 call get_uart_rrptr 
+0x3ff7 006548 copy contru ,rega 
+0x3ff8 006549 fetch 2 ,mem_current_packet_length 
+0x3ff9 006550 increase -2 ,pdata 
+0x3ffa 006551 iadd contru ,contru 
+0x3ffb 006552 ifetch 2 ,contru 
+0x3ffc 006553 arg at_cmd_end ,temp 
+0x3ffd 006554 isub temp ,null 
+0x3ffe 006555 nrtn zero 
+0x3fff 006556 copy rega ,contru 
+0x4000 006557 arg mem_prarm_atp ,regb 
+0x4001 006558 arg 3 ,loopcnt 
+0x4002 006559 call string_compare_uart_follow 
+0x4003 006560 nbranch at_error_rev_end ,true 
+0x4004 006561 branch at_dispatch 
+:      006563 at_dispatch:
+0x4005 006564 set1 mark_ext_patch ,mark 
+0x4006 006565 bpatch patch32_3 ,mem_patch32 
+0x4007 006567 copy contru ,rega 
+0x4008 006568 arg mem_prarm_name ,regb 
+0x4009 006569 force 4 ,loopcnt 
+0x400a 006570 call string_compare_uart_follow 
+0x400b 006571 branch at_rev_name ,true 
+0x400c 006573 arg mem_prarm_blename ,regb 
+0x400d 006574 force 7 ,loopcnt 
+0x400e 006575 call string_compare_uart_follow 
+0x400f 006576 branch at_rev_le_name ,true 
+0x4010 006578 arg mem_prarm_adss ,regb 
+0x4011 006579 force 4 ,loopcnt 
+0x4012 006580 call string_compare_uart_follow 
+0x4013 006581 branch at_rev_adss ,true 
+0x4014 006583 arg mem_prarm_bleadss ,regb 
+0x4015 006584 force 7 ,loopcnt 
+0x4016 006585 call string_compare_uart_follow 
+0x4017 006586 branch at_rev_leadss ,true 
+0x4018 006588 arg mem_prarm_vers ,regb 
+0x4019 006589 force 4 ,loopcnt 
+0x401a 006590 call string_compare_uart_follow 
+0x401b 006591 branch at_rev_vers ,true 
+0x401c 006593 arg mem_prarm_uart ,regb 
+0x401d 006594 force 4 ,loopcnt 
+0x401e 006595 call string_compare_uart_follow 
+0x401f 006596 branch at_rev_uart ,true 
+0x4020 006598 arg mem_prarm_pswd ,regb 
+0x4021 006599 force 4 ,loopcnt 
+0x4022 006600 call string_compare_uart_follow 
+0x4023 006601 branch at_rev_pswd ,true 
+0x4024 006603 arg mem_prarm_class ,regb 
+0x4025 006604 force 5 ,loopcnt 
+0x4026 006605 call string_compare_uart_follow 
+0x4027 006606 branch at_rev_class ,true 
+0x4028 006608 arg mem_prarm_list ,regb 
+0x4029 006609 force 4 ,loopcnt 
+0x402a 006610 call string_compare_uart_follow 
+0x402b 006611 branch at_rev_list ,true 
+0x402c 006613 arg mem_prarm_role ,regb 
+0x402d 006614 force 4 ,loopcnt 
+0x402e 006615 call string_compare_uart_follow 
+0x402f 006616 branch at_rev_role ,true 
+0x4030 006618 arg mem_prarm_sniff ,regb 
+0x4031 006619 force 5 ,loopcnt 
+0x4032 006620 call string_compare_uart_follow 
+0x4033 006621 branch at_rev_sniff ,true 
+0x4034 006623 arg mem_prarm_ldev ,regb 
+0x4035 006624 force 4 ,loopcnt 
+0x4036 006625 call string_compare_uart_follow 
+0x4037 006626 branch at_rev_ldev ,true 
+0x4038 006628 arg mem_prarm_rssi ,regb 
+0x4039 006629 force 4 ,loopcnt 
+0x403a 006630 call string_compare_uart_follow 
+0x403b 006631 branch at_rev_rssi ,true 
+0x403c 006633 arg mem_prarm_cdev ,regb 
+0x403d 006634 force 4 ,loopcnt 
+0x403e 006635 call string_compare_uart_follow 
+0x403f 006636 branch at_rev_cdev ,true 
+0x4040 006638 arg mem_prarm_inqr ,regb 
+0x4041 006639 force 4 ,loopcnt 
+0x4042 006640 call string_compare_uart_follow 
+0x4043 006641 branch at_rev_inqr ,true 
+0x4044 006643 arg mem_prarm_bleinqr ,regb 
+0x4045 006644 force 7 ,loopcnt 
+0x4046 006645 call string_compare_uart_follow 
+0x4047 006646 branch at_rev_leinqr ,true 
+0x4048 006648 arg mem_prarm_cmode ,regb 
+0x4049 006649 force 5 ,loopcnt 
+0x404a 006650 call string_compare_uart_follow 
+0x404b 006651 branch at_rev_cmode ,true 
+0x404c 006653 arg mem_prarm_mode ,regb 
+0x404d 006654 force 4 ,loopcnt 
+0x404e 006655 call string_compare_uart_follow 
+0x404f 006656 branch at_rev_mode ,true 
+0x4050 006658 arg mem_prarm_dmstate ,regb 
+0x4051 006659 force 7 ,loopcnt 
+0x4052 006660 call string_compare_uart_follow 
+0x4053 006661 branch at_rev_dmstate ,true 
+0x4054 006663 arg mem_prarm_reconn ,regb 
+0x4055 006664 force 6 ,loopcnt 
+0x4056 006665 call string_compare_uart_follow 
+0x4057 006666 branch at_rev_reconn ,true 
+0x4058 006668 arg mem_prarm_discov ,regb 
+0x4059 006669 force 6 ,loopcnt 
+0x405a 006670 call string_compare_uart_follow 
+0x405b 006671 branch at_rev_discov ,true 
+0x405c 006673 arg mem_prarm_dis ,regb 
+0x405d 006674 force 3 ,loopcnt 
+0x405e 006675 call string_compare_uart_follow 
+0x405f 006676 branch at_rev_dis ,true 
+0x4060 006678 arg mem_prarm_stsn ,regb 
+0x4061 006679 force 4 ,loopcnt 
+0x4062 006680 call string_compare_uart_follow 
+0x4063 006681 branch at_rev_stsn ,true 
+0x4064 006683 arg mem_prarm_clrflg ,regb 
+0x4065 006684 force 6 ,loopcnt 
+0x4066 006685 call string_compare_uart_follow 
+0x4067 006686 branch at_rev_clrflg ,true 
+0x4068 006688 arg mem_prarm_ota ,regb 
+0x4069 006689 force 3 ,loopcnt 
+0x406a 006690 call string_compare_uart_follow 
+0x406b 006691 branch at_rev_ota ,true 
+0x406c 006692 branch at_error_rev_end 
+:      006695 at_rev_name:
+0x406d 006696 ifetch 1 ,contru 
+0x406e 006697 beq at_ques ,at_rev_name_inquiry 
+0x406f 006698 beq at_equ ,at_rev_name_set 
+0x4070 006699 branch at_error_rev_end 
+:      006700 at_rev_name_inquiry:
+0x4071 006701 call get_uart_twptr 
+0x4072 006702 call at_group_name_inquiry 
+0x4073 006703 branch at_nomal_rev_end 
+:      006706 at_rev_le_name:
+0x4074 006707 ifetch 1 ,contru 
+0x4075 006708 beq at_ques ,at_rev_le_name_inquiry 
+0x4076 006709 beq at_equ ,at_rev_le_name_set 
+0x4077 006710 branch at_error_rev_end 
+:      006711 at_rev_le_name_inquiry:
+0x4078 006712 call get_uart_twptr 
+0x4079 006713 call at_group_le_name_inquiry 
+0x407a 006714 branch at_nomal_rev_end 
+:      006716 at_rev_adss:
+0x407b 006717 ifetch 1 ,contru 
+0x407c 006718 beq at_ques ,at_rev_adss_inquiry 
+0x407d 006719 beq at_equ ,at_rev_adss_set 
+0x407e 006720 branch at_error_rev_end 
+:      006721 at_rev_adss_inquiry:
+0x407f 006722 call at_group_adss_inquiry 
+0x4080 006723 branch at_nomal_rev_end 
+:      006725 at_rev_leadss:
+0x4081 006726 ifetch 1 ,contru 
+0x4082 006727 beq at_ques ,at_rev_leadss_inquiry 
+0x4083 006728 beq at_equ ,at_rev_leadss_set 
+0x4084 006729 branch at_error_rev_end 
+:      006730 at_rev_leadss_inquiry:
+0x4085 006732 call at_group_leadss_inquiry 
+0x4086 006733 branch at_nomal_rev_end 
+:      006735 at_rev_vers:
+0x4087 006736 ifetch 1 ,contru 
+0x4088 006737 beq at_ques ,at_rev_vers_inquiry 
+0x4089 006738 branch at_error_rev_end 
+:      006739 at_rev_vers_inquiry:
+0x408a 006740 call at_group_version_inquiry 
+0x408b 006741 branch at_nomal_rev_end 
+:      006744 at_rev_uart:
+0x408c 006745 ifetch 1 ,contru 
+0x408d 006746 beq at_equ ,at_rev_uart_set 
+0x408e 006747 branch at_error_rev_end 
+:      006750 at_rev_pswd:
+0x408f 006751 ifetch 1 ,contru 
+0x4090 006752 beq at_ques ,at_rev_pswd_inquiry 
+0x4091 006753 beq at_equ ,at_rev_pswd_set 
+0x4092 006754 branch at_error_rev_end 
+:      006755 at_rev_pswd_inquiry:
+0x4093 006756 call at_group_pswd_inquiry 
+0x4094 006757 branch at_nomal_rev_end 
+:      006759 at_rev_class:
+0x4095 006760 ifetch 1 ,contru 
+0x4096 006761 beq at_ques ,at_rev_class_inquiry 
+0x4097 006762 beq at_equ ,at_rev_class_set 
+0x4098 006763 branch at_error_rev_end 
+:      006764 at_rev_class_inquiry:
+0x4099 006765 call at_group_class_inquiry 
+0x409a 006766 branch at_nomal_rev_end 
+:      006768 at_rev_list:
+0x409b 006769 ifetch 1 ,contru 
+0x409c 006770 beq at_ques ,at_rev_list_inquiry 
+0x409d 006771 beq at_equ ,at_rev_list_set 
+0x409e 006772 branch at_error_rev_end 
+:      006773 at_rev_list_inquiry:
+0x409f 006774 call at_group_list_inquiry 
+0x40a0 006775 branch at_nomal_rev_end 
+:      006777 at_rev_role:
+0x40a1 006778 ifetch 1 ,contru 
+0x40a2 006779 beq at_ques ,at_rev_role_inquiry 
+0x40a3 006780 beq at_equ ,at_rev_role_set 
+0x40a4 006781 branch at_error_rev_end 
+:      006784 at_rev_sniff:
+0x40a5 006785 ifetch 1 ,contru 
+0x40a6 006786 beq at_ques ,at_rev_sniff_inquiry 
+0x40a7 006787 beq at_equ ,at_rev_sniff_set 
+0x40a8 006788 branch at_error_rev_end 
+:      006789 at_rev_sniff_inquiry:
+0x40a9 006790 call at_group_sniff_inquiry 
+0x40aa 006791 branch at_nomal_rev_end 
+:      006793 at_rev_ldev:
+0x40ab 006794 ifetch 1 ,contru 
+0x40ac 006795 beq at_ques ,at_rev_ldev_inquiry 
+0x40ad 006796 branch at_error_rev_end 
+:      006797 at_rev_ldev_inquiry:
+0x40ae 006798 call at_group_ldev_inquiry 
+0x40af 006799 branch at_nomal_rev_end 
+:      006801 at_rev_rssi:
+0x40b0 006802 ifetch 1 ,contru 
+0x40b1 006803 beq at_ques ,at_rev_rssi_inquiry 
+0x40b2 006804 branch at_nomal_rev_end 
+:      006805 at_rev_rssi_inquiry:
+0x40b3 006806 call context_check_idle 
+0x40b4 006807 nbranch at_error_rev_end ,zero 
+0x40b5 006808 call at_group_rssi_inquiry 
+0x40b6 006809 branch at_nomal_rev_end 
+:      006811 at_rev_cdev:
+0x40b7 006812 ifetch 1 ,contru 
+0x40b8 006813 beq at_ques ,at_rev_cdev_inquiry 
+0x40b9 006814 branch at_error_rev_end 
+:      006815 at_rev_cdev_inquiry:
+0x40ba 006816 fetch 1 ,mem_context 
+0x40bb 006817 bbit0 state_inconn ,at_error_rev_end 
+0x40bc 006818 call get_uart_twptr 
+0x40bd 006819 fetch 1 ,mem_context + coffset_mode 
+0x40be 006820 bbit1 mode_le ,le_cdev_inquiry 
+0x40bf 006821 branch at_cdev_unle_inq 
+:      006822 le_cdev_inquiry:
+0x40c0 006823 arg mem_prarm_cdev ,rega 
+0x40c1 006824 arg 4 ,loopcnt 
+0x40c2 006825 call at_group_inquiryhead_common 
+0x40c3 006826 call at_rev_uart_write_62 
+0x40c4 006827 setarg 0x34 
+0x40c5 006828 istore 1 ,contwu 
+0x40c6 006829 call at_rev_uart_write_44 
+0x40c7 006830 arg mem_le_plap ,rega 
+0x40c8 006831 call adss_hex2string_to_uart 
+0x40c9 006832 call uartd_send 
+0x40ca 006833 branch at_nomal_rev_end 
+:      006834 at_cdev_unle_inq:
+0x40cb 006835 arg mem_prarm_cdev ,rega 
+0x40cc 006836 arg 4 ,loopcnt 
+0x40cd 006837 call at_group_inquiryhead_common 
+0x40ce 006838 call at_rev_uart_write_62 
+0x40cf 006839 setarg 0x33 
+0x40d0 006840 istore 1 ,contwu 
+0x40d1 006841 call at_rev_uart_write_44 
+0x40d2 006842 arg mem_plap ,rega 
+0x40d3 006843 call adss_hex2string_to_uart 
+0x40d4 006844 call uartd_send 
+0x40d5 006845 branch at_nomal_rev_end 
+:      006848 at_rev_inqr:
+0x40d6 006849 set1 mark_ext_patch ,mark 
+0x40d7 006850 bpatch patch32_4 ,mem_patch32 
+0x40d8 006851 call app_check_conn_device_nums_addr 
+0x40d9 006852 fetch 1 ,mem_device_nums 
+0x40da 006853 bne 0 ,at_error_rev_end 
+0x40db 006854 call do_at_inquiry 
+0x40dc 006855 branch at_nomal_rev_end 
+:      006857 at_rev_leinqr:
+0x40dd 006858 set1 mark_ext_patch ,mark 
+0x40de 006859 bpatch patch32_5 ,mem_patch32 
+0x40df 006860 call do_at_leinquiry 
+0x40e0 006861 branch at_nomal_rev_end 
+:      006863 at_rev_role_inquiry:
+0x40e1 006864 arg mem_prarm_role ,rega 
+0x40e2 006865 arg 4 ,loopcnt 
+0x40e3 006866 call at_group_inquiryhead_common 
+0x40e4 006867 call context_check_idle 
+0x40e5 006868 nbranch at_rev_uart_write_n ,zero 
+0x40e6 006869 fetch 1 ,mem_context + coffset_mode 
+0x40e7 006870 bbit1 mode_master ,at_rev_uart_write_m 
+0x40e8 006871 call at_rev_uart_write_s 
+0x40e9 006872 call uartd_send 
+0x40ea 006873 branch at_nomal_rev_end 
+:      006874 at_rev_uart_write_m:
+0x40eb 006875 setarg 0x4d 
+0x40ec 006876 istore 1 ,contwu 
+0x40ed 006877 call uartd_send 
+0x40ee 006878 branch at_nomal_rev_end 
+:      006879 at_rev_uart_write_s:
+0x40ef 006880 setarg 0x53 
+0x40f0 006881 istore 1 ,contwu 
+0x40f1 006882 rtn 
+:      006884 at_rev_cmode:
+0x40f2 006885 ifetch 1 ,contru 
+0x40f3 006886 beq at_ques ,at_rev_cmode_inquiry 
+0x40f4 006887 beq at_equ ,at_rev_cmode_set 
+0x40f5 006888 branch at_error_rev_end 
+:      006889 at_rev_cmode_inquiry:
+0x40f6 006890 call at_group_cmode_inquiry 
+0x40f7 006891 branch at_nomal_rev_end 
+:      006893 at_rev_mode:
+0x40f8 006894 ifetch 1 ,contru 
+0x40f9 006895 beq at_equ ,at_rev_mode_set 
+0x40fa 006896 branch at_error_rev_end 
+:      006898 at_rev_dmstate:
+0x40fb 006899 ifetch 1 ,contru 
+0x40fc 006900 beq at_ques ,at_rev_dmstate_inquiry 
+0x40fd 006901 branch at_error_rev_end 
+:      006902 at_rev_dmstate_inquiry:
+0x40fe 006903 call at_group_dmstate_inquiry 
+0x40ff 006904 branch at_nomal_rev_end 
+:      006906 at_rev_reconn:
+0x4100 006907 fetch 1 ,mem_app_connection_options 
+0x4101 006908 store 1 ,mem_connection_options 
+0x4102 006909 call eeprom_load_reconn_info 
+0x4103 006910 call app_check_conn_device_nums_addr 
+0x4104 006911 fetch 1 ,mem_device_nums 
+0x4105 006912 bne 0 ,at_error_rev_end 
+0x4106 006913 fetch 1 ,mem_xrecord_mode 
+0x4107 006914 beq rec_3_mode ,at_rev_unle_reconn 
+0x4108 006915 beq rec_4_mode ,at_rev_lereconn 
+0x4109 006916 branch at_error_rev_end 
+:      006918 at_rev_lereconn:
+0x410a 006919 call app_ble_start_direct_adv 
+0x410b 006920 branch at_nomal_rev_end 
+:      006921 at_rev_unle_reconn:
+0x410c 006922 call app_bt_start_reconnect 
+0x410d 006923 branch at_nomal_rev_end 
+:      006925 at_rev_dis:
+0x410e 006926 call app_check_conn_device_nums_addr 
+0x410f 006927 fetch 1 ,mem_device_nums 
+0x4110 006928 bne 1 ,at_error_rev_end 
+0x4111 006929 fetch 1 ,mem_context + coffset_mode 
+0x4112 006930 bbit1 mode_le ,at_rev_ledis 
+0x4113 006931 call app_bt_disconnect 
+0x4114 006932 branch at_nomal_rev_end 
+:      006935 at_rev_ledis:
+0x4115 006936 call app_ble_disconnect 
+0x4116 006937 branch at_nomal_rev_end 
+:      006940 at_rev_stsn:
+0x4117 006941 ifetch 1 ,contru 
+0x4118 006942 beq at_equ ,at_rev_stsn_set 
+0x4119 006943 branch at_error_rev_end 
+:      006944 at_rev_stsn_set:
+0x411a 006945 ifetch 1 ,contru 
+0x411b 006946 beq 0x31 ,at_exit_sniff 
+0x411c 006947 beq 0x30 ,at_enter_sniff 
+0x411d 006948 branch at_error_rev_end 
+:      006949 at_enter_sniff:
+0x411e 006950 call app_check_sniff 
+0x411f 006951 branch at_nomal_rev_end ,true 
+0x4120 006952 call app_bt_enter_sniff 
+0x4121 006953 branch at_nomal_rev_end 
+:      006954 at_exit_sniff:
+0x4122 006955 call app_check_sniff 
+0x4123 006956 nbranch at_nomal_rev_end ,true 
+0x4124 006957 call module_exit_sniff 
+0x4125 006958 call at_set_cmd_task_flag 
+0x4126 006959 branch at_nomal_rev_end 
+:      006962 at_rev_clrflg:
+0x4127 006963 call app_clearflag_store 
+0x4128 006964 branch at_nomal_rev_end 
+:      006966 at_rev_ota:
+0x4129 006967 ifetch 1 ,contru 
+0x412a 006968 beq at_equ ,at_rev_ota_process 
+0x412b 006969 branch at_error_rev_end 
+:      006971 at_rev_discov:
+0x412c 006972 call app_check_conn_device_nums_addr 
+0x412d 006973 fetch 1 ,mem_device_nums 
+0x412e 006974 bne 0 ,at_error_rev_end 
+0x412f 006975 call module_disconn_start 
+0x4130 006976 branch at_nomal_rev_end 
+:      006982 at_rev_name_set:
+0x4131 006983 arg mem_local_name ,rega 
+0x4132 006984 call at_set_common 
+0x4133 006985 storet 1 ,mem_local_name_length 
+0x4134 006986 call at_store_bt_name 
+0x4135 006987 branch at_nomal_rev_end 
+:      006989 at_rev_le_name_set:
+0x4136 006990 arg mem_le_name ,rega 
+0x4137 006991 call at_set_common 
+0x4138 006992 storet 1 ,mem_le_name_len 
+0x4139 006993 call at_store_le_name 
+0x413a 006994 call le_modified_name 
+0x413b 006995 branch at_nomal_rev_end 
+:      006997 at_rev_adss_set:
+0x413c 006998 arg mem_lap ,contw 
+0x413d 006999 call adss_string2hex_from_uart 
+0x413e 007000 call at_store_bt_adss 
+0x413f 007001 branch at_nomal_rev_end 
+:      007003 at_rev_leadss_set:
+0x4140 007004 arg mem_le_lap ,contw 
+0x4141 007005 call adss_string2hex_from_uart 
+0x4142 007006 call at_store_le_adss 
+0x4143 007007 branch at_nomal_rev_end 
+:      007009 at_rev_pswd_set:
+0x4144 007010 arg mem_pin ,rega 
+0x4145 007011 call at_set_common 
+0x4146 007012 storet 1 ,mem_pin_length 
+0x4147 007013 call at_store_bt_pincode 
+0x4148 007014 branch at_nomal_rev_end 
+:      007016 at_rev_uart_set:
+0x4149 007017 call string2dec_from_uart 
+0x414a 007018 setarg uart_clk 
+0x414b 007019 idiv temp 
+0x414c 007020 call wait_div_end 
+0x414d 007021 quotient pdata 
+0x414e 007022 store 2 ,mem_timeup 
+0x414f 007023 call at_store_throughput_uart_baud 
+0x4150 007024 branch at_nomal_rev_end 
+:      007026 at_rev_mode_set:
+0x4151 007027 ifetch 1 ,contru 
+0x4152 007028 sub pdata ,0x33 ,null 
+0x4153 007029 nbranch at_error_rev_end ,positive 
+0x4154 007030 and pdata ,0x3 ,pdata 
+0x4155 007031 store 1 ,mem_module_state 
+0x4156 007032 branch at_nomal_rev_end 
+:      007034 at_rev_class_set:
+0x4157 007035 ifetch 3 ,contru 
+0x4158 007036 store 3 ,mem_class 
+0x4159 007037 branch at_nomal_rev_end 
+:      007039 at_rev_role_set:
+0x415a 007040 call context_check_idle 
+0x415b 007041 nbranch at_error_rev_end ,zero 
+0x415c 007042 ifetch 1 ,contru 
+0x415d 007043 beq 0x53 ,at_role_slave 
+0x415e 007044 beq 0x4D ,at_role_master 
+0x415f 007045 branch at_error_rev_end 
+:      007047 at_role_slave:
+0x4160 007048 fetch 1 ,mem_context + coffset_mode 
+0x4161 007049 bbit1 mode_master ,at_switch_role 
+0x4162 007050 branch at_error_rev_end 
+:      007052 at_role_master:
+0x4163 007053 fetch 1 ,mem_context + coffset_mode 
+0x4164 007054 bbit0 mode_master ,at_switch_role 
+0x4165 007055 branch at_error_rev_end 
+:      007057 at_switch_role:
+0x4166 007058 fetch 1 ,mem_module_task 
+0x4167 007059 set1 at_task_switch ,pdata 
+0x4168 007060 store 1 ,mem_module_task 
+0x4169 007061 jam hci_cmd_role_switch ,mem_hci_cmd 
+0x416a 007062 branch at_rev_end 
+:      007064 at_rev_sniff_set:
+0x416b 007065 arg mem_sniff_param_interval ,contw 
+0x416c 007066 call mem2_string2hex_from_uart 
+0x416d 007067 arg mem_sniff_param_attempt ,contw 
+0x416e 007068 call mem2_string2hex_from_uart 
+0x416f 007069 arg mem_sniff_param_timeout ,contw 
+0x4170 007070 call mem2_string2hex_from_uart 
+0x4171 007071 branch at_nomal_rev_end 
+:      007073 at_rev_list_set:
+0x4172 007074 ifetch 1 ,contru 
+0x4173 007075 beq 0x31 ,at_rev_list_set_1 
+0x4174 007076 beq 0x32 ,at_rev_list_set_2 
+0x4175 007077 branch at_error_rev_end 
+:      007078 at_rev_list_set_1:
+0x4176 007079 ifetch 1 ,contru 
+0x4177 007080 arg mem_temp_lap ,contw 
+0x4178 007081 call adss_string2hex_from_uart 
+0x4179 007082 call eeprom_clear_bd_reconn_info 
+0x417a 007083 nrtn user 
+0x417b 007084 branch at_nomal_rev_end 
+:      007085 at_rev_list_set_2:
+0x417c 007086 call eeprom_clear_all_reconn_info 
+0x417d 007087 branch at_nomal_rev_end 
+:      007089 at_rev_cmode_set:
+0x417e 007090 ifetch 1 ,contru 
+0x417f 007091 fetcht 1 ,mem_module_state 
+0x4180 007092 nsetflag blank ,at_state_cmode ,temp 
+0x4181 007093 storet 1 ,mem_module_state 
+0x4182 007094 branch at_nomal_rev_end ,blank 
+0x4183 007095 ifetch 1 ,contru 
+0x4184 007096 arg mem_cmode_addr ,contw 
+0x4185 007097 call adss_string2hex_from_uart 
+0x4186 007098 branch at_nomal_rev_end 
+:      007100 at_rev_ota_process:
+0x4187 007101 set1 mark_ext_patch ,mark 
+0x4188 007102 bpatch patch32_6 ,mem_patch32 
+0x4189 007103 arg 20 ,loopcnt 
+0x418a 007104 arg mem_l2cap_rxbuff1 ,contw 
+0x418b 007105 call uart_copy_rx_bytes 
+0x418c 007106 arg mem_l2cap_rxbuff1 ,rega 
+0x418d 007107 fetch 1 ,mem_l2cap_rxbuff1 
+0x418e 007108 compare ota_write_req ,pdata ,0xff 
+0x418f 007109 call prcp_parse_ota_write_req ,true 
+0x4190 007110 fetch 1 ,mem_l2cap_rxbuff1 
+0x4191 007111 compare ota_end_cmd ,pdata ,0xff 
+0x4192 007112 call prcp_parse_ota_end_cmd ,true 
+0x4193 007113 branch at_nomal_rev_end 
+:      007118 at_group_name_inquiry:
+0x4194 007119 arg mem_prarm_name ,rega 
+0x4195 007120 arg 4 ,loopcnt 
+0x4196 007121 call at_group_inquiryhead_common 
+0x4197 007122 fetch 1 ,mem_local_name_length 
+0x4198 007123 copy pdata ,loopcnt 
+0x4199 007124 arg mem_local_name ,contr 
+0x419a 007125 branch send_mem_to_uart0 
+:      007126 at_group_le_name_inquiry:
+0x419b 007127 arg mem_prarm_blename ,rega 
+0x419c 007128 force 7 ,loopcnt 
+0x419d 007129 call at_group_inquiryhead_common 
+0x419e 007130 call le_get_device_name 
+0x419f 007131 ifetch 1 ,contr 
+0x41a0 007132 copy pdata ,loopcnt 
+0x41a1 007133 branch send_mem_to_uart0 
+:      007136 at_group_adss_inquiry:
+0x41a2 007137 arg mem_prarm_adss ,rega 
+0x41a3 007138 arg 4 ,loopcnt 
+0x41a4 007139 call at_group_inquiryhead_common 
+0x41a5 007140 arg mem_lap ,rega 
+0x41a6 007141 call adss_hex2string_to_uart 
+0x41a7 007142 branch uartd_send 
+:      007143 at_group_leadss_inquiry:
+0x41a8 007144 arg mem_prarm_bleadss ,rega 
+0x41a9 007145 arg 7 ,loopcnt 
+0x41aa 007146 call at_group_inquiryhead_common 
+0x41ab 007147 arg mem_le_lap ,rega 
+0x41ac 007148 call adss_hex2string_to_uart 
+0x41ad 007149 branch uartd_send 
+:      007152 at_group_version_inquiry:
+0x41ae 007153 arg mem_prarm_vers ,rega 
+0x41af 007154 arg 4 ,loopcnt 
+0x41b0 007155 call at_group_inquiryhead_common 
+0x41b1 007156 arg 6 ,loopcnt 
+0x41b2 007157 arg mem_module_version ,contr 
+0x41b3 007158 branch send_mem_to_uart0 
+:      007160 at_group_class_inquiry:
+0x41b4 007161 arg mem_prarm_class ,rega 
+0x41b5 007162 arg 5 ,loopcnt 
+0x41b6 007163 call at_group_inquiryhead_common 
+0x41b7 007164 arg 3 ,loopcnt 
+0x41b8 007165 arg mem_class ,contr 
+0x41b9 007166 branch send_mem_to_uart0 
+:      007168 at_group_list_inquiry:
+0x41ba 007169 arg mem_prarm_list ,rega 
+0x41bb 007170 arg 4 ,loopcnt 
+0x41bc 007171 call at_group_inquiryhead_common 
+0x41bd 007172 call eeprom_load_bdaddr_list 
+0x41be 007173 call at_group_list_reply 
+0x41bf 007174 branch uartd_send 
+:      007177 at_group_ldev_inquiry:
+0x41c0 007178 call eeprom_load_reconn_bdaddr 
+0x41c1 007179 arg mem_prarm_ldev ,rega 
+0x41c2 007180 arg 4 ,loopcnt 
+0x41c3 007181 call at_group_inquiryhead_common 
+0x41c4 007182 fetch 1 ,mem_record_bt_mode 
+0x41c5 007183 beq rec_3_mode ,at_group_ldev_inquiry0 
+0x41c6 007184 beq rec_4_mode ,at_group_ldev_inquiry0 
+0x41c7 007185 branch uartd_send 
+:      007186 at_group_ldev_inquiry0:
+0x41c8 007187 istore 1 ,contwu 
+0x41c9 007188 call at_rev_uart_write_44 
+0x41ca 007189 arg mem_temp_lap ,rega 
+0x41cb 007190 call adss_hex2string_to_uart 
+0x41cc 007191 branch uartd_send 
+:      007193 at_group_rssi_inquiry:
+0x41cd 007194 set1 mark_ext_patch ,mark 
+0x41ce 007195 bpatch patch32_7 ,mem_patch32 
+0x41cf 007196 arg mem_prarm_rssi ,rega 
+0x41d0 007197 arg 4 ,loopcnt 
+0x41d1 007198 call at_group_inquiryhead_common 
+0x41d2 007199 call at_rssi_result 
+0x41d3 007200 branch uartd_send 
+:      007201 at_rssi_result:
+0x41d4 007202 arg mem_rssi ,rega 
+0x41d5 007203 arg 1 ,loopcnt 
+0x41d6 007204 branch hex2string_to_uart0 
+:      007206 at_group_cdev_inquiry:
+0x41d7 007207 rtn 
+:      007210 at_group_cmode_inquiry:
+0x41d8 007211 arg mem_prarm_cmode ,rega 
+0x41d9 007212 arg 5 ,loopcnt 
+0x41da 007213 call at_group_inquiryhead_common 
+0x41db 007214 arg mem_cmode_addr ,rega 
+0x41dc 007215 call adss_hex2string_to_uart 
+0x41dd 007216 branch uartd_send 
+:      007219 at_group_dmstate_inquiry:
+0x41de 007220 arg mem_prarm_dmstate ,rega 
+0x41df 007221 arg 7 ,loopcnt 
+0x41e0 007222 call at_group_inquiryhead_common 
+0x41e1 007223 fetch 1 ,mem_module_state 
+0x41e2 007224 copy pdata ,rega 
+0x41e3 007225 fetch 1 ,mem_context 
+0x41e4 007226 isolate1 state_inconn ,pdata 
+0x41e5 007227 setflag true ,at_state_isconn ,rega 
+0x41e6 007228 isolate1 state_insniff ,pdata 
+0x41e7 007229 setflag true ,at_state_sniff ,rega 
+0x41e8 007230 fetch 1 ,mem_context + coffset_mode 
+0x41e9 007231 isolate1 mode_master ,pdata 
+0x41ea 007232 setflag true ,at_state_role ,rega 
+0x41eb 007233 isolate1 mode_le ,pdata 
+0x41ec 007234 setflag true ,at_state_le ,rega 
+0x41ed 007235 copy rega ,pdata 
+0x41ee 007236 istore 1 ,contwu 
+0x41ef 007237 branch uartd_send 
+:      007239 do_at_inquiry:
+0x41f0 007240 setarg param_glap 
+0x41f1 007241 store 3 ,mem_glap 
+0x41f2 007242 fetch 1 ,mem_at_using_flag 
+0x41f3 007243 set1 at_flag_inq ,pdata 
+0x41f4 007244 store 1 ,mem_at_using_flag 
+0x41f5 007245 branch do_at_inquiry0 
+:      007247 do_at_leinquiry:
+0x41f6 007248 call app_check_conn_device_nums_addr 
+0x41f7 007249 fetch 1 ,mem_device_nums 
+0x41f8 007250 bne 0 ,at_error_rev_end 
+0x41f9 007251 call app_ble_start_scan 
+0x41fa 007252 fetch 1 ,mem_at_using_flag 
+0x41fb 007253 set1 at_flag_leinq ,pdata 
+0x41fc 007254 store 1 ,mem_at_using_flag 
+0x41fd 007255 setarg 0x200 
+0x41fe 007256 store 2 ,mem_at_scan_time 
+0x41ff 007257 arg mem_prarm_bleinqr ,rega 
+0x4200 007258 arg 6 ,loopcnt 
+0x4201 007259 call at_group_inquiryhead_common 
+0x4202 007260 call send_mem_to_uart0 
+0x4203 007261 branch at_rev_end 
+:      007265 at_group_pswd_inquiry:
+0x4204 007266 arg mem_prarm_pswd ,rega 
+0x4205 007267 arg 4 ,loopcnt 
+0x4206 007268 call at_group_inquiryhead_common 
+0x4207 007269 fetch 1 ,mem_pin_length 
+0x4208 007270 copy pdata ,loopcnt 
+0x4209 007271 arg mem_pin ,contr 
+0x420a 007272 branch send_mem_to_uart0 
+:      007276 at_group_sniff_inquiry:
+0x420b 007277 arg mem_prarm_sniff ,rega 
+0x420c 007278 arg 5 ,loopcnt 
+0x420d 007279 call at_group_inquiryhead_common 
+0x420e 007280 call at_rev_uart_write_62 
+0x420f 007281 setarg 84 
+0x4210 007282 istore 1 ,contwu 
+0x4211 007283 call at_rev_uart_write_colon 
+0x4212 007284 arg mem_sniff_param_interval ,rega 
+0x4213 007285 call mem2_hex2string_to_uart 
+0x4214 007286 call at_rev_uart_write_62 
+0x4215 007287 setarg 65 
+0x4216 007288 istore 1 ,contwu 
+0x4217 007289 call at_rev_uart_write_colon 
+0x4218 007290 arg mem_sniff_param_attempt ,rega 
+0x4219 007291 call mem2_hex2string_to_uart 
+0x421a 007292 call at_rev_uart_write_62 
+0x421b 007293 setarg 79 
+0x421c 007294 istore 1 ,contwu 
+0x421d 007295 call at_rev_uart_write_colon 
+0x421e 007296 arg mem_sniff_param_timeout ,rega 
+0x421f 007297 call mem2_hex2string_to_uart 
+0x4220 007298 branch send_mem_to_uart0 
+:      007299 at_inquiry_reply:
+0x4221 007300 call get_uart_twptr 
+0x4222 007301 call at_rev_uart_write_62 
+0x4223 007302 arg extm_lap ,rega 
+0x4224 007303 call adss_hex2string_to_uart 
+0x4225 007304 call at_rev_uart_write_44 
+0x4226 007305 arg extm_class ,rega 
+0x4227 007306 call mem3_hex2string_to_uart 
+0x4228 007307 call at_rev_uart_write_44 
+0x4229 007308 call at_rssi_result 
+0x422a 007309 branch uartd_send 
+:      007320 at_set_common:
+0x422b 007321 call at_set_setprarm 
+0x422c 007322 branch uart_copy_rx_bytes 
+:      007323 at_set_setprarm:
+0x422d 007324 call uart_get_remain_length 
+0x422e 007325 copy pdata ,temp 
+0x422f 007326 copy pdata ,loopcnt 
+0x4230 007327 copy rega ,contw 
+0x4231 007328 rtn 
+:      007331 at_group_inquiryhead_common:
+0x4232 007332 call get_uart_twptr 
+0x4233 007333 call at_rev_uart_write_plus 
+:      007334 at_group_inquiryhead_common0:
+0x4234 007335 copy rega ,contr 
+0x4235 007336 call uart_copy_tx_bytes 
+0x4236 007337 branch at_rev_uart_write_colon 
+:      007340 string_compare_uart_follow:
+0x4237 007341 ifetch 1 ,contru 
+0x4238 007342 ifetcht 1 ,regb 
+0x4239 007343 isub temp ,null 
+0x423a 007344 disable true 
+0x423b 007345 nbranch string_compare_uart_follow_diff ,zero 
+0x423c 007346 increase 1 ,regb 
+0x423d 007347 loop string_compare_uart_follow 
+0x423e 007348 enable true 
+0x423f 007349 rtn 
+:      007350 string_compare_uart_follow_diff:
+0x4240 007351 branch restore_contru 
+:      007354 at_rev_uart_write_plus:
+0x4241 007355 setarg ui_plus 
+0x4242 007356 istore 1 ,contwu 
+0x4243 007357 rtn 
+:      007359 at_rev_uart_write_colon:
+0x4244 007360 setarg ui_colon 
+0x4245 007361 istore 1 ,contwu 
+0x4246 007362 rtn 
+:      007365 at_rev_uart_write_62:
+0x4247 007366 setarg 62 
+0x4248 007367 istore 1 ,contwu 
+0x4249 007368 rtn 
+:      007369 at_rev_uart_write_n:
+0x424a 007370 setarg 78 
+0x424b 007371 istore 1 ,contwu 
+0x424c 007372 call uartd_send 
+0x424d 007373 branch at_nomal_rev_end 
+:      007377 at_rev_uart_write_44:
+0x424e 007378 setarg at_comma 
+0x424f 007379 istore 1 ,contwu 
+0x4250 007380 rtn 
+:      007382 restore_contru:
+0x4251 007383 copy rega ,contru 
+0x4252 007384 rtn 
+:      007386 at_group_list_reply:
+0x4253 007387 arg mem_bdaddr_list_buff + 7 ,regc 
+0x4254 007388 arg 4 ,loopcnt 
+:      007389 at_group_list_reply_loop:
+0x4255 007390 copy loopcnt ,pdata 
+0x4256 007391 store 1 ,mem_pdatatemp 
+0x4257 007392 ifetch 1 ,regc 
+0x4258 007393 beq rec_3_mode ,at_group_list_isrecord 
+0x4259 007394 beq rec_4_mode ,at_group_list_isrecord 
+0x425a 007395 branch at_group_list_notrecord 
+:      007396 at_group_list_isrecord:
+0x425b 007397 call at_rev_uart_write_62 
+0x425c 007398 ifetch 1 ,regc 
+0x425d 007399 istore 1 ,contwu 
+0x425e 007400 increase 1 ,regc 
+0x425f 007401 call at_rev_uart_write_44 
+0x4260 007402 copy regc ,rega 
+0x4261 007403 call adss_hex2string_to_uart 
+:      007404 at_group_list_notrecord0:
+0x4262 007405 increase 6 ,regc 
+0x4263 007406 fetch 1 ,mem_pdatatemp 
+0x4264 007407 copy pdata ,loopcnt 
+0x4265 007408 loop at_group_list_reply_loop 
+0x4266 007409 rtn 
+:      007410 at_group_list_notrecord:
+0x4267 007411 increase 1 ,regc 
+0x4268 007412 branch at_group_list_notrecord0 
+:      007416 uart_get_remain_length:
+0x4269 007417 set1 mark_ext_patch ,mark 
+0x426a 007418 bpatch patch33_0 ,mem_patch33 
+0x426b 007419 hfetch 2 ,core_uart_rrptr 
+0x426c 007420 isub contru ,pdata 
+0x426d 007421 rtn zero 
+0x426e 007422 branch uart_get_remain_length0 ,positive 
+:      007423 uart_get_remain_length_common:
+0x426f 007424 fetcht 2 ,mem_current_packet_length 
+0x4270 007425 iadd temp ,pdata 
+0x4271 007426 increase -2 ,pdata 
+0x4272 007427 rtn 
+:      007428 uart_get_remain_length0:
+0x4273 007429 call uart_get_rx_buff_length 
+0x4274 007430 iadd contru ,temp 
+0x4275 007431 hfetch 2 ,core_uart_rrptr 
+0x4276 007432 isub temp ,pdata 
+0x4277 007433 branch uart_get_remain_length_common 
+:      007435 uart_get_rx_buff_length:
+0x4278 007436 arg mem_module_rx_buf_end ,pdata 
+0x4279 007437 increase 1 ,pdata 
+0x427a 007438 arg mem_module_rx_buf ,temp 
+0x427b 007439 isub temp ,pdata 
+0x427c 007440 rtn 
+:      007442 release_packet:
+0x427d 007443 fetcht 2 ,mem_current_packet_length 
+0x427e 007444 branch uartd_rxdone_by_len 
+:      007449 at_error_rev_end:
+0x427f 007450 set1 mark_ext_patch ,mark 
+0x4280 007451 bpatch patch33_1 ,mem_patch33 
+0x4281 007452 call get_uart_twptr 
+0x4282 007453 setarg 0x525245 
+0x4283 007454 istore 3 ,contwu 
+0x4284 007455 call uartd_send 
+0x4285 007456 branch at_rev_end 
+:      007458 at_nomal_rev_end:
+0x4286 007459 set1 mark_ext_patch ,mark 
+0x4287 007460 bpatch patch33_2 ,mem_patch33 
+0x4288 007461 call get_uart_twptr 
+0x4289 007462 setarg 0x4b4f 
+0x428a 007463 istore 2 ,contwu 
+0x428b 007464 call uartd_send 
+:      007465 spp_send_end:
+:      007466 at_rev_end:
+0x428c 007467 set1 mark_ext_patch ,mark 
+0x428d 007468 bpatch patch33_3 ,mem_patch33 
+0x428e 007469 call release_packet 
+:      007470 spp_ipc_end:
+0x428f 007471 setarg 0 
+0x4290 007472 store 2 ,mem_current_packet_length 
+0x4291 007473 store 4 ,mem_last_uart_clock 
+0x4292 007474 rtn 
+:      007477 le_dongle_init:
+0x4293 007478 call usb_init 
+0x4294 007479 call app_led_start_blink 
+0x4295 007480 setarg le_dongle 
+0x4296 007481 store 2 ,mem_cb_le_process 
+0x4297 007482 setarg dongle_process_bb_event 
+0x4298 007483 store 2 ,mem_cb_bb_event_process 
+0x4299 007484 setarg usb_isr 
+0x429a 007485 store 2 ,mem_cb_idle_process 
+0x429b 007486 jam 5 ,mem_dongle_count 
+0x429c 007487 jam 0 ,mem_dongle_peers 
+0x429d 007488 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x429e 007489 rtn 
+:      007492 le_dongle:
+0x429f 007493 disable true 
+0x42a0 007494 call app_check_conn_device_nums_addr 
+0x42a1 007496 jam 0x1b ,mem_cmd_le_create_conn 
+0x42a2 007497 fetch 1 ,mem_device_nums 
+0x42a3 007498 compare 2 ,pdata ,0x3 
+0x42a4 007499 nrtn true 
+0x42a5 007500 jam 0 ,mem_le_scan_enable 
+0x42a6 007501 rtn 
+:      007503 le_scan_dongle:
+0x42a7 007504 fetch 1 ,mem_le_rxbuf 
+0x42a8 007505 bbit0 0 ,dongle_add_peer 
+0x42a9 007506 fetch 6 ,mem_le_rxbuf + 2 
+0x42aa 007507 fetcht 6 ,mem_le_plap 
+0x42ab 007508 isub temp ,null 
+0x42ac 007509 nrtn zero 
+:      007510 dongle_peer_paired:
+0x42ad 007511 fetch 6 ,mem_le_plap 
+0x42ae 007512 store 6 ,mem_le_conn_peer_addr 
+0x42af 007513 rtn 
+:      007515 dongle_add_peer:
+0x42b0 007516 arg 0xff ,rega 
+0x42b1 007517 call le_search_adtype 
+0x42b2 007518 nrtn zero 
+0x42b3 007519 ifetch 2 ,contr 
+0x42b4 007520 fetcht 2 ,mem_dongle_signature 
+0x42b5 007521 isub temp ,null 
+0x42b6 007522 nrtn zero 
+0x42b7 007523 fetch 1 ,mem_dongle_peers 
+0x42b8 007524 increase 1 ,pdata 
+0x42b9 007525 store 1 ,mem_dongle_peers 
+0x42ba 007526 fetcht 1 ,mem_dongle_pairing_cnt 
+0x42bb 007527 isub temp ,null 
+0x42bc 007528 branch dongle_peer_paired ,positive 
+0x42bd 007529 rtn 
+:      007531 dongle_process_bb_event:
+0x42be 007532 copy regc ,pdata 
+0x42bf 007533 beq bt_evt_le_disconnected ,dongle_le_event_bb_disconnected 
+0x42c0 007534 beq bt_evt_le_connected ,dongle_bb_event_connected 
+0x42c1 007535 and pdata ,0x0f ,temp 
+0x42c2 007536 and_into bt_evt_timer_mask ,pdata 
+0x42c3 007537 beq bt_evt_timer_init ,dongle_bb_event_100ms 
+0x42c4 007538 rtn 
+:      007540 dongle_le_event_bb_disconnected:
+0x42c5 007541 setarg 0 
+0x42c6 007542 store 6 ,mem_le_conn_peer_addr 
+0x42c7 007543 jam 0 ,mem_dongle_peers 
+0x42c8 007544 setarg 0 
+0x42c9 007545 store 5 ,mem_mouse_data 
+0x42ca 007546 jam send_mouse_data_cmd ,mem_mcmd 
+0x42cb 007547 call usb_isr 
+0x42cc 007548 branch app_ble_start_scan 
+:      007550 dongle_bb_event_100ms:
+0x42cd 007551 rtn 
+0x42ce 007552 fetch 1 ,mem_le_scan_enable 
+0x42cf 007553 rtn blank 
+0x42d0 007554 fetch 1 ,mem_dongle_count 
+0x42d1 007555 rtn blank 
+0x42d2 007556 increase -1 ,pdata 
+0x42d3 007557 store 1 ,mem_dongle_count 
+0x42d4 007558 nrtn blank 
+0x42d5 007559 call le_change_peer_addr 
+0x42d6 007560 branch app_ble_start_conn 
+:      007563 dongle_bb_event_connected:
+0x42d7 007564 branch app_ble_stop_scan 
+:      007566 le_change_peer_addr:
+0x42d8 007568 jam 5 ,mem_dongle_count 
+0x42d9 007569 fetch 1 ,mem_le_peer_state 
+0x42da 007570 beq le_context_state_kb ,addr_slave2 
+0x42db 007571 beq le_context_state_mouse ,addr_slave1 
+0x42dc 007572 rtn 
+:      007573 addr_slave1:
+0x42dd 007574 fetch 6 ,mem_le_addr_slave1 
+0x42de 007575 store 6 ,mem_app_peer_addr 
+0x42df 007576 jam le_context_state_kb ,mem_le_peer_state 
+0x42e0 007577 rtn 
+:      007578 addr_slave2:
+0x42e1 007579 fetch 6 ,mem_le_addr_slave2 
+0x42e2 007580 store 6 ,mem_app_peer_addr 
+0x42e3 007581 jam le_context_state_mouse ,mem_le_peer_state 
+0x42e4 007582 rtn 
+:      007585 hci_rx_bcsp:
+0x42e5 007586 ifetch 2 ,contru 
+0x42e6 007587 branch hci_reset_uart ,blank 
+0x42e7 007588 iforce regc 
+0x42e8 007589 ifetch 1 ,contru 
+0x42e9 007590 store 1 ,mem_h5rx_tmp 
+0x42ea 007591 iforce rega 
+0x42eb 007592 bbit0 6 ,hci_rx_bcsp_nocrc 
+0x42ec 007593 increase -2 ,regc 
+:      007594 hci_rx_bcsp_nocrc:
+0x42ed 007595 ifetch 2 ,contru 
+0x42ee 007596 rshift4 pdata ,loopcnt 
+0x42ef 007597 and pdata ,0xf ,debug 
+0x42f0 007598 iadd rega ,rega 
+0x42f1 007599 rshift8 pdata ,pdata 
+0x42f2 007600 iadd rega ,rega 
+0x42f3 007601 ifetch 1 ,contru 
+0x42f4 007602 iadd rega ,pdata 
+0x42f5 007603 bne 0xff ,hci_rx_bcsp_discard_packet 
+0x42f6 007604 add regc ,-4 ,pdata 
+0x42f7 007605 isub loopcnt ,null 
+0x42f8 007606 nbranch hci_rx_bcsp_discard_packet_err ,zero 
+0x42f9 007607 fetch 1 ,mem_h5rx_tmp 
+0x42fa 007608 isolate0 7 ,pdata 
+0x42fb 007609 branch hci_rx_bcsp_check_ack_skip ,true 
+0x42fc 007610 set0 mark_h5_reset ,mark 
+0x42fd 007611 bmark1 mark_h5_reset ,hci_rx_bcsp_check_ack_skip 
+0x42fe 007612 and_into 7 ,pdata 
+0x42ff 007613 fetcht 1 ,mem_h5tx_ack 
+0x4300 007614 isub temp ,null 
+0x4301 007615 nbranch hci_rx_bcsp_discard_packet_err ,zero 
+:      007616 hci_rx_bcsp_check_ack_skip:
+0x4302 007617 setarg 1600 
+0x4303 007618 force lpo_delay_timer ,queue 
+0x4304 007619 call timer_init 
+0x4305 007620 deposit debug 
+0x4306 007621 call hci_bcsp_parse_packet 
+0x4307 007622 rtn user 
+0x4308 007623 fetch 1 ,mem_h5rx_tmp 
+0x4309 007624 iforce rega 
+0x430a 007625 rshift3 pdata ,temp 
+0x430b 007626 and_into 7 ,temp 
+0x430c 007627 fetch 1 ,mem_h5rx_ack 
+0x430d 007628 isub temp ,pdata 
+0x430e 007629 sub pdata ,0 ,pdata 
+0x430f 007630 and_into 7 ,pdata 
+0x4310 007631 bne 1 ,hci_rx_bcsp_discard_packet_err 
+0x4311 007632 storet 1 ,mem_h5rx_ack 
+0x4312 007633 fetch 1 ,mem_h5rx_ackcnt 
+0x4313 007634 increase 1 ,pdata 
+0x4314 007635 store 1 ,mem_h5rx_ackcnt 
+0x4315 007636 branch hci_rx_bcsp_discard_packet 
+:      007638 hci_rx_bcsp_discard_packet_err:
+0x4316 007639 fetch 1 ,mem_check_err_acl_cont 
+0x4317 007640 increase 1 ,pdata 
+0x4318 007641 store 1 ,mem_check_err_acl_cont 
+:      007642 hci_rx_bcsp_discard_packet:
+0x4319 007643 hfetch 2 ,core_uart_rrptr 
+0x431a 007644 iforce contru 
+0x431b 007645 ifetch 2 ,contru 
+0x431c 007646 iadd contru ,contru 
+0x431d 007647 deposit contru 
+0x431e 007648 hstore 2 ,core_uart_rrptr 
+0x431f 007649 rtn 
+:      007651 hci_bcsp_parse_packet:
+0x4320 007652 disable user 
+0x4321 007653 rtn blank 
+0x4322 007654 beq 1 ,parse_bcsp_link_establish 
+0x4323 007655 beq 2 ,parse_bcsp_bccmd 
+0x4324 007656 beq 5 ,process_hci_cmd 
+0x4325 007657 beq 6 ,process_acl 
+0x4326 007658 beq 8 ,process_hci_patch 
+0x4327 007659 rtn 
+:      007661 parse_bcsp_link_establish:
+0x4328 007662 set0 mark_h5_reinit ,mark 
+0x4329 007663 ifetch 1 ,contru 
+0x432a 007664 beq 0xda ,parse_bcsp_link_establish_sync 
+0x432b 007665 beq 0xac ,parse_bcsp_link_establish_syncrsp 
+0x432c 007666 beq 0xad ,parse_bcsp_link_establish_conf 
+0x432d 007667 beq 0xde ,parse_bcsp_link_establish_confrsp 
+0x432e 007668 rtn 
+:      007669 parse_bcsp_link_establish_sync:
+0x432f 007670 bmark1 mark_h5_sync ,parse_bcsp_link_establish_send_syncrsp 
+0x4330 007671 force 0xda ,temp 
+0x4331 007672 setarg 0xededdc 
+0x4332 007673 call parse_bcsp_link_establish_send 
+:      007674 parse_bcsp_link_establish_send_syncrsp:
+0x4333 007675 force 0xac ,temp 
+0x4334 007676 setarg 0xeeefaf 
+0x4335 007677 branch parse_bcsp_link_establish_send 
+:      007678 parse_bcsp_link_establish_syncrsp:
+0x4336 007679 set1 mark_h5_sync ,mark 
+0x4337 007680 force 0xad ,temp 
+0x4338 007681 setarg 0xedacef 
+0x4339 007682 branch parse_bcsp_link_establish_send 
+:      007683 parse_bcsp_link_establish_conf:
+0x433a 007684 force 0xde ,temp 
+0x433b 007685 setarg 0xd0d0ad 
+:      007686 parse_bcsp_link_establish_send:
+0x433c 007687 lshift8 pdata ,pdata 
+0x433d 007688 ior temp ,temp 
+0x433e 007689 call hci_get_packet_ptr 
+0x433f 007690 istoret 4 ,contwu 
+0x4340 007691 force 1 ,queue 
+0x4341 007692 force 4 ,loopcnt 
+0x4342 007693 set0 mark_h5tx_rp ,mark 
+0x4343 007694 branch bcsp_send_packet 
+:      007695 parse_bcsp_link_establish_confrsp:
+0x4344 007696 force 0 ,alarm 
+0x4345 007697 branch hci_command_status 
+:      007699 parse_bcsp_bccmd:
+0x4346 007700 copy loopcnt ,alarm 
+0x4347 007701 call bcsp_send_ack 
+0x4348 007702 force 0 ,regb 
+0x4349 007703 call hci_get_packet_ptr 
+0x434a 007704 copy alarm ,loopcnt 
+0x434b 007705 ifetch 1 ,contru 
+0x434c 007706 setarg 1 
+0x434d 007707 istore 1 ,contwu 
+0x434e 007708 set0 mark_temp ,mark 
+:      007709 parse_bcsp_bccmd_loop:
+0x434f 007710 ifetch 1 ,contru 
+0x4350 007711 increase 1 ,regb 
+0x4351 007712 beq 0x1c ,parse_bcsp_bccmd_sco_link 
+0x4352 007713 compare 4 ,regb ,0xff 
+0x4353 007714 nbranch parse_bcsp_bccmd_next ,true 
+0x4354 007715 setflag blank ,mark_temp ,mark 
+0x4355 007716 bne 0x3a ,parse_bcsp_bccmd_next 
+0x4356 007717 setarg 2000 
+0x4357 007718 force h5_reinit_timer ,queue 
+0x4358 007719 call timer_init 
+0x4359 007720 set1 mark_h5_reinit ,mark 
+0x435a 007721 rtn 
+:      007723 parse_bcsp_bccmd_sco_link:
+0x435b 007724 compare 6 ,regb ,0xff 
+0x435c 007725 branch parse_bcsp_bccmd_next_ok ,true 
+:      007726 parse_bcsp_bccmd_next:
+0x435d 007727 isolate1 mark_temp ,mark 
+0x435e 007728 call parse_bcsp_bccmd_replace ,true 
+0x435f 007729 istore 1 ,contwu 
+0x4360 007730 loop parse_bcsp_bccmd_loop 
+0x4361 007731 set0 mark_bccmd_patch ,mark 
+0x4362 007732 copy alarm ,loopcnt 
+0x4363 007733 set1 mark_h5tx_rp ,mark 
+0x4364 007734 force 2 ,queue 
+0x4365 007735 branch bcsp_send_packet 
+:      007736 parse_bcsp_bccmd_next_ok:
+0x4366 007737 set1 mark_bccmd_patch ,mark 
+0x4367 007738 branch parse_bcsp_bccmd_next 
+:      007740 parse_bcsp_bccmd_replace:
+0x4368 007741 rtnmark1 mark_bccmd_patch 
+0x4369 007742 compare 10 ,regb ,0xff 
+0x436a 007743 branch parse_bcsp_bccmd_replace1 ,true 
+0x436b 007744 compare 11 ,regb ,0xff 
+0x436c 007745 nrtn true 
+0x436d 007746 setarg 0x12 
+0x436e 007747 rtn 
+:      007748 parse_bcsp_bccmd_replace1:
+0x436f 007749 setarg 0xe9 
+0x4370 007750 rtn 
+:      007752 bcsp_send_ack:
+0x4371 007753 fetch 1 ,mem_h5rx_tmp 
+0x4372 007754 increase 1 ,pdata 
+0x4373 007755 and_into 7 ,pdata 
+0x4374 007756 store 1 ,mem_h5tx_ack 
+0x4375 007757 force 0 ,loopcnt 
+0x4376 007758 force 0 ,queue 
+0x4377 007759 set0 mark_h5tx_rp ,mark 
+:      007760 bcsp_send_packet:
+0x4378 007762 add loopcnt ,4 ,regb 
+0x4379 007763 fetch 1 ,mem_h5tx_ack 
+0x437a 007764 lshift3 pdata ,regc 
+0x437b 007765 isolate0 mark_h5tx_crc ,mark 
+0x437c 007766 nsetflag true ,6 ,regc 
+0x437d 007767 branch bcsp_send_packet_nocrc ,true 
+0x437e 007768 increase 2 ,regb 
+:      007769 bcsp_send_packet_nocrc:
+0x437f 007770 bmark0 mark_h5tx_rp ,bcsp_send_packet_form_nonrp 
+0x4380 007771 set1 7 ,regc 
+0x4381 007772 fetch 1 ,mem_h5tx_seq 
+0x4382 007773 ior regc ,regc 
+0x4383 007774 increase 1 ,pdata 
+0x4384 007775 and_into 7 ,pdata 
+0x4385 007776 store 1 ,mem_h5tx_seq 
+0x4386 007777 fetch 1 ,mem_rp_packets 
+0x4387 007778 increase 1 ,pdata 
+0x4388 007779 store 1 ,mem_rp_packets 
+:      007780 bcsp_send_packet_form_nonrp:
+0x4389 007781 fetch 2 ,mem_h5tx_wptr 
+0x438a 007782 iforce contwu 
+0x438b 007783 deposit regb 
+0x438c 007784 isolate1 mark_h5tx_rp ,mark 
+0x438d 007785 setflag true ,hci_flag_rp ,pdata 
+0x438e 007786 istore 2 ,contwu 
+0x438f 007787 copy contwu ,rega 
+0x4390 007788 deposit regc 
+0x4391 007789 istore 1 ,contwu 
+0x4392 007790 lshift4 loopcnt ,pdata 
+0x4393 007791 ior queue ,pdata 
+0x4394 007792 iadd regc ,regc 
+0x4395 007793 istore 2 ,contwu 
+0x4396 007794 rshift8 pdata ,pdata 
+0x4397 007795 iadd regc ,pdata 
+0x4398 007796 sub pdata ,0xff ,pdata 
+0x4399 007797 istore 1 ,contwu 
+0x439a 007798 bmark0 mark_h5tx_crc ,bcsp_send_packet_form_nocrc 
+0x439b 007799 increase 4 ,loopcnt 
+0x439c 007800 copy rega ,contwu 
+0x439d 007801 call calc_tx_crc16 
+0x439e 007802 istore 2 ,contwu 
+:      007803 bcsp_send_packet_form_nocrc:
+0x439f 007804 fetch 2 ,mem_h5tx_wptr 
+0x43a0 007805 iadd regb ,contwu 
+0x43a1 007806 increase 2 ,contwu 
+0x43a2 007807 deposit contwu 
+0x43a3 007808 store 2 ,mem_h5tx_wptr 
+0x43a4 007809 hstore 2 ,core_uart_twptr 
+0x43a5 007810 fetcht 2 ,mem_h5tx_rptr 
+0x43a6 007811 call bcsp_update_free 
+0x43a7 007812 call bcsp_init_retransmit 
+0x43a8 007813 setarg 1600 
+0x43a9 007814 force lpo_delay_timer ,queue 
+0x43aa 007815 branch timer_init 
+:      007817 bcsp_init_retransmit:
+0x43ab 007818 setarg 400 
+0x43ac 007819 force hci_retransmit_timer ,queue 
+0x43ad 007820 call timer_init 
+0x43ae 007821 set1 mark_h5tx_retransmit ,mark 
+0x43af 007822 rtn 
+:      007824 bcsp_retransmit:
+0x43b0 007825 rtnmark0 mark_h5tx_retransmit 
+0x43b1 007826 force hci_retransmit_timer ,queue 
+0x43b2 007827 call timer_check 
+0x43b3 007828 nrtn blank 
+0x43b4 007829 fetch 2 ,mem_h5tx_rptr 
+0x43b5 007830 hstore 2 ,core_uart_trptrp 
+0x43b6 007831 branch bcsp_init_retransmit 
+:      007833 bcsp_freepacket:
+0x43b7 007834 fetch 2 ,mem_h5tx_wptr 
+0x43b8 007835 fetcht 2 ,mem_h5tx_rptr 
+0x43b9 007836 isub temp ,null 
+0x43ba 007837 branch bcsp_noretransmit ,zero 
+0x43bb 007838 copy temp ,contwu 
+0x43bc 007839 ifetch 2 ,contwu 
+0x43bd 007840 iforce rega 
+0x43be 007841 iand mask3ff ,pdata 
+0x43bf 007842 iadd contwu ,contwu 
+0x43c0 007843 hfetch 2 ,core_uart_trptr 
+0x43c1 007844 isub contwu ,pdata 
+0x43c2 007845 iand mask3ff ,regb 
+0x43c3 007846 fetch 2 ,mem_h5tx_wptr 
+0x43c4 007847 isub contwu ,pdata 
+0x43c5 007848 iand mask3ff ,pdata 
+0x43c6 007849 isub regb ,pdata 
+0x43c7 007850 nrtn positive 
+0x43c8 007851 isolate0 hci_flag_rp ,rega 
+0x43c9 007852 branch bcsp_discardnrp ,true 
+0x43ca 007853 fetch 1 ,mem_h5rx_ackcnt 
+0x43cb 007854 rtn blank 
+0x43cc 007855 increase -1 ,pdata 
+0x43cd 007856 store 1 ,mem_h5rx_ackcnt 
+0x43ce 007857 fetch 1 ,mem_rp_packets 
+0x43cf 007858 increase -1 ,pdata 
+0x43d0 007859 store 1 ,mem_rp_packets 
+:      007860 bcsp_discardnrp:
+0x43d1 007861 copy contwu ,temp 
+0x43d2 007862 storet 2 ,mem_h5tx_rptr 
+0x43d3 007863 fetch 2 ,mem_h5tx_wptr 
+0x43d4 007864 call bcsp_update_free 
+0x43d5 007865 branch bcsp_freepacket 
+:      007866 bcsp_noretransmit:
+0x43d6 007867 set0 mark_h5tx_retransmit ,mark 
+0x43d7 007868 rtn 
+:      007870 bcsp_update_free:
+0x43d8 007871 isub temp ,pdata 
+0x43d9 007872 iand mask3ff ,pdata 
+0x43da 007873 isub mask3ff ,pdata 
+0x43db 007874 sub pdata ,0 ,pdata 
+0x43dc 007875 store 2 ,mem_h5tx_free 
+0x43dd 007876 rtn 
+:      007878 bcsp_get_tx_ptr:
+0x43de 007879 fetch 2 ,mem_h5tx_wptr 
+0x43df 007880 iadd contwu ,contwu 
+0x43e0 007881 rtn 
+:      007885 hci_log:
+0x43e1 007886 rtn 
+:      007888 hci_rx_h4:
+0x43e2 007889 set1 mark_ext_patch ,mark 
+0x43e3 007890 bpatch patch3d_4 ,mem_patch3d 
+0x43e4 007891 fetch 1 ,mem_hci_cmd 
+0x43e5 007892 nrtn blank 
+:      007893 hci_rx_h4_1:
+0x43e6 007894 call hci_h4_parse_packet 
+0x43e7 007895 ncall h4_rx_discard_packet ,user 
+0x43e8 007896 rtn 
+:      007898 hci_h4_parse_packet:
+0x43e9 007899 set1 mark_ext_patch ,mark 
+0x43ea 007900 bpatch patch3d_5 ,mem_patch3d 
+0x43eb 007901 copy contru ,rega 
+0x43ec 007902 arg 4 ,temp 
+0x43ed 007903 ifetch 1 ,contru 
+0x43ee 007904 beq hci_h4_type_cmd ,hci_h4_parse_packet_wait_len 
+0x43ef 007905 increase 1 ,temp 
+0x43f0 007906 beq hci_h4_type_acl ,hci_h4_parse_packet_wait_len 
+0x43f1 007907 copy contru ,pdata 
+0x43f2 007908 hstore 2 ,core_uart_rrptr 
+0x43f3 007909 rtn 
+:      007910 hci_h4_parse_packet_wait_len:
+0x43f4 007911 hfetch 2 ,core_uart_rxitems 
+0x43f5 007912 isub temp ,null 
+0x43f6 007913 nbranch hci_h4_parse_packet_wait_len ,positive 
+0x43f7 007915 disable user 
+0x43f8 007916 copy rega ,contru 
+0x43f9 007917 call h4_get_rx_payload_len 
+0x43fa 007918 iadd temp ,temp 
+:      007919 hci_h4_parse_packet_wait:
+0x43fb 007920 hfetch 2 ,core_uart_rxitems 
+0x43fc 007921 isub temp ,null 
+0x43fd 007922 nbranch hci_h4_parse_packet_wait ,positive 
+0x43fe 007923 copy rega ,contru 
+0x43ff 007924 ifetch 1 ,contru 
+0x4400 007925 beq hci_h4_type_cmd ,process_hci_cmd 
+0x4401 007926 beq hci_h4_type_acl ,hci_h4_parse_packet_acl 
+0x4402 007927 branch assert 
+:      007928 hci_h4_parse_packet_acl:
+0x4403 007929 set1 mark_ext_patch ,mark 
+0x4404 007930 bpatch patch3d_6 ,mem_patch3d 
+0x4405 007931 copy contru ,rega 
+0x4406 007932 ifetch 2 ,contru 
+0x4407 007933 copy rega ,contru 
+0x4408 007934 fetcht 1 ,mem_conn_handle 
+0x4409 007935 icompare 0xff ,temp 
+0x440a 007936 branch process_acl ,true 
+0x440b 007937 branch le_acl_downgoing ,le 
+0x440c 007938 enable user 
+0x440d 007939 rtn 
+:      007940 h4_rx_discard_packet:
+0x440e 007941 set1 mark_ext_patch ,mark 
+0x440f 007942 bpatch patch3d_7 ,mem_patch3d 
+0x4410 007943 hfetch 2 ,core_uart_rrptr 
+0x4411 007944 iforce contru 
+0x4412 007945 call h4_get_rx_payload_len 
+0x4413 007946 iadd contru ,contru 
+0x4414 007947 deposit contru 
+0x4415 007948 hstore 2 ,core_uart_rrptr 
+0x4416 007949 rtn 
+:      007954 h4_get_rx_payload_len:
+0x4417 007955 ifetch 1 ,contru 
+0x4418 007956 increase 2 ,contru 
+0x4419 007957 beq hci_h4_type_acl ,h4_get_rx_payload_len_acl 
+0x441a 007958 ifetch 1 ,contru 
+0x441b 007959 rtn 
+:      007960 h4_get_rx_payload_len_acl:
+0x441c 007961 ifetch 2 ,contru 
+0x441d 007962 rtn 
+:      007964 h4_get_tx_ptr:
+0x441e 007965 hfetch 2 ,core_uart_twptr 
+0x441f 007966 increase -5 ,contwu 
+0x4420 007967 iadd contwu ,contwu 
+0x4421 007968 rtn 
+:      007970 h4_send_packet_event:
+0x4422 007971 arg hci_h4_type_event ,temp 
+0x4423 007972 branch h4_send_packet 
+:      007973 h4_send_packet_acl:
+0x4424 007974 arg hci_h4_type_acl ,temp 
+:      007975 h4_send_packet:
+0x4425 007976 set1 mark_ext_patch ,mark 
+0x4426 007977 bpatch patch3e_0 ,mem_patch3e 
+0x4427 007978 increase 1 ,loopcnt 
+0x4428 007979 hfetch 2 ,core_uart_twptr 
+0x4429 007980 copy pdata ,contwu 
+0x442a 007981 copy loopcnt ,pdata 
+0x442b 007982 istoret 1 ,contwu 
+0x442c 007983 increase -1 ,pdata 
+0x442d 007984 iadd contwu ,contwu 
+0x442e 007985 copy contwu ,pdata 
+0x442f 007986 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x4430 007987 copy temp ,pdata 
+0x4431 007988 rtneq hci_h4_type_acl 
+0x4432 007989 fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+0x4433 007990 hstore 2 ,core_uart_twptr 
+0x4434 007991 branch h4_send_acl_trigger_clear 
+:      007993 h4_send_acl_trigger:
+0x4435 007994 set1 mark_ext_patch ,mark 
+0x4436 007995 bpatch patch3e_1 ,mem_patch3e 
+0x4437 007996 fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+0x4438 007997 branch assert ,blank 
+0x4439 007998 hstore 2 ,core_uart_twptr 
+0x443a 007999 branch h4_send_acl_trigger_clear 
+:      008001 h4_send_acl_trigger_clear:
+0x443b 008002 setarg 0 
+0x443c 008003 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x443d 008004 rtn 
+:      008006 h4_tx_buffer_remain:
+0x443e 008007 hfetcht 2 ,core_uart_trptr 
+0x443f 008008 hfetch 2 ,core_uart_twptr 
+0x4440 008009 isub temp ,rega 
+0x4441 008010 nbranch h4_tx_buffer_remain_negative ,positive 
+0x4442 008011 hfetcht 2 ,core_uart_tsaddr 
+0x4443 008012 hfetch 2 ,core_uart_teaddr 
+0x4444 008013 isub temp ,pdata 
+0x4445 008014 isub rega ,temp 
+0x4446 008015 rtn 
+:      008016 h4_tx_buffer_remain_negative:
+0x4447 008017 sub rega ,-1 ,temp 
+0x4448 008018 rtn 
+:      008023 hci_dispatch:
+0x4449 008024 set0 mark_ext_patch ,mark 
+0x444a 008025 bpatch patch19_5 ,mem_patch19 
+0x444b 008026 fetch 1 ,mem_device_option 
+0x444c 008027 rtnne dvc_op_hci 
+0x444d 008028 call hci_rx_packet 
+0x444e 008029 call hci_check_bcsp_protocol 
+0x444f 008030 call bcsp_retransmit ,true 
+0x4450 008031 call hci_check_bcsp_protocol 
+0x4451 008032 call bcsp_freepacket ,true 
+0x4452 008033 branch process_send_acl 
+0x4453 008034 rtnmark0 mark_h5_reinit 
+0x4454 008035 force h5_reinit_timer ,queue 
+0x4455 008036 call timer_check 
+0x4456 008037 nrtn blank 
+0x4457 008038 call hci_reinit 
+0x4458 008039 call hci_check_bcsp_protocol 
+0x4459 008040 nrtn true 
+0x445a 008041 set0 mark_h5_sync ,mark 
+0x445b 008042 force 0xda ,temp 
+0x445c 008043 setarg 0xededdc 
+0x445d 008044 call parse_bcsp_link_establish_send 
+0x445e 008045 setarg 2000 
+0x445f 008046 force h5_reinit_timer ,queue 
+0x4460 008047 branch timer_init 
+:      008050 hci_init:
+0x4461 008051 set0 mark_ext_patch ,mark 
+0x4462 008052 bpatch patch19_6 ,mem_patch19 
+0x4463 008053 rtn wake 
+0x4464 008054 setarg hci_idle_dispatch 
+0x4465 008055 store 2 ,mem_cb_idle_process 
+0x4466 008057 setarg uart_baud_115200 
+0x4467 008058 store uart_baud_len ,mem_baud 
+:      008059 hci_lpm_init:
+0x4468 008060 set0 mark_ext_patch ,mark 
+0x4469 008061 bpatch patch19_7 ,mem_patch19 
+0x446a 008062 call init_filter_ram 
+0x446b 008063 setarg mem_h5rx_buf 
+0x446c 008064 hstore 2 ,core_uart_rsaddr 
+0x446d 008065 setarg mem_h5rx_buf_end 
+0x446e 008066 hstore 2 ,core_uart_readdr 
+0x446f 008067 setarg mem_h5tx_buf 
+0x4470 008068 hstore 2 ,core_uart_tsaddr 
+0x4471 008069 call hci_sel_init 
+:      008070 hci_reinit:
+0x4472 008071 set0 mark_ext_patch ,mark 
+0x4473 008072 bpatch patch1a_0 ,mem_patch1a 
+0x4474 008073 hjam 0x0 ,core_uart_ctrl 
+0x4475 008074 jam 0 ,mem_h5rx_ack 
+0x4476 008075 jam 0 ,mem_h5tx_ack 
+0x4477 008076 jam 0 ,mem_h5tx_seq 
+0x4478 008077 setarg mem_h5tx_buf 
+0x4479 008078 store 2 ,mem_h5tx_wptr 
+0x447a 008079 store 2 ,mem_h5tx_rptr 
+0x447b 008080 hstore 2 ,core_uart_twptr 
+0x447c 008081 hstore 2 ,core_uart_trptrp 
+0x447d 008082 setarg mem_h5rx_buf 
+0x447e 008083 hstore 2 ,core_uart_rrptr 
+0x447f 008084 store 2 ,mem_h5rx_rptr 
+:      008085 hci_init_common:
+0x4480 008086 set0 mark_ext_patch ,mark 
+0x4481 008087 bpatch patch1a_1 ,mem_patch1a 
+0x4482 008088 hfetch 2 ,core_clkoff 
+0x4483 008089 set0 clock_off_uart ,pdata 
+0x4484 008090 hstore 2 ,core_clkoff 
+0x4485 008091 call uart_set_baud_by_mem 
+0x4486 008092 hjam uartclk_dpll ,core_uart_clksel 
+0x4487 008093 hjam uart_ctrl_h4 ,core_uart_ctrl 
+0x4488 008094 branch hci_init_queue_ack 
+:      008096 hci_sel_init:
+0x4489 008097 setarg mem_h5tx_buf_end 
+0x448a 008098 hstore 2 ,core_uart_teaddr 
+0x448b 008099 hfetch 1 ,core_gpio_sel1 
+0x448c 008100 or_into 0x07 ,pdata 
+0x448d 008101 hstore 1 ,core_gpio_sel1 
+0x448e 008102 jam 0xff ,mem_ucode_id_local 
+0x448f 008103 rtn 
+:      008105 hci_reset_uart:
+0x4490 008106 hfetch 2 ,core_uart_rwptr 
+0x4491 008107 hstore 2 ,core_uart_rrptr 
+0x4492 008108 set1 mark_h5_reset ,mark 
+0x4493 008109 rtn 
+:      008112 hci_check_bcsp_protocol:
+0x4494 008113 hfetch 1 ,core_uart_ctrl 
+0x4495 008114 isolate1 uart_ctrl_bit_slip_protocol ,pdata 
+0x4496 008115 rtn 
+:      008117 hci_init_queue_ack:
+0x4497 008118 setarg mem_hci_acl_queue_start 
+0x4498 008119 store 2 ,mem_hci_acl_queue_wptr 
+0x4499 008120 store 2 ,mem_hci_acl_queue_rptr 
+0x449a 008121 force param_acl_pktcnt ,temp 
+0x449b 008122 iadd temp ,pdata 
+0x449c 008123 iadd temp ,pdata 
+0x449d 008124 increase 2 ,pdata 
+0x449e 008125 store 2 ,mem_hci_acl_queue_end 
+0x449f 008126 setarg 0x00 
+0x44a0 008127 store 1 ,mem_hci_acl_cnt 
+0x44a1 008128 store 1 ,mem_hci_acl_queue_wcnt 
+0x44a2 008129 rtn 
+:      008131 hci_rx_packet:
+0x44a3 008132 set0 mark_ext_patch ,mark 
+0x44a4 008133 bpatch patch1a_2 ,mem_patch1a 
+0x44a5 008134 hfetch 1 ,core_uart_status 
+0x44a6 008135 iforce regb 
+0x44a7 008136 bbit0 uart_status_rx_fifo_empty ,hci_rx_packet_cont 
+0x44a8 008137 hfetch 2 ,core_uart_rxitems 
+0x44a9 008138 iforce regc 
+0x44aa 008139 arg 0x44f ,temp 
+0x44ab 008140 isub temp ,null 
+0x44ac 008141 nrtn zero 
+:      008142 hci_rx_packet_cont:
+0x44ad 008143 hfetch 2 ,core_uart_rrptr 
+0x44ae 008144 iforce contru 
+0x44af 008145 call hci_check_bcsp_protocol 
+0x44b0 008146 branch hci_rx_bcsp ,true 
+0x44b1 008147 branch hci_rx_h4 
+:      008149 hci_send_ack:
+0x44b2 008150 call hci_check_bcsp_protocol 
+0x44b3 008151 branch bcsp_send_ack ,true 
+0x44b4 008152 rtn 
+:      008154 uart_send_byte:
+0x44b5 008155 hfetcht 1 ,core_uart_status 
+0x44b6 008156 isolate1 6 ,temp 
+0x44b7 008157 branch uart_send_byte ,true 
+0x44b8 008158 hstore 1 ,core_uart_txd 
+0x44b9 008159 rtn 
+:      008162 process_acl_into_queue:
+0x44ba 008163 fetcht 2 ,mem_hci_acl_queue_end 
+0x44bb 008164 fetch 2 ,mem_hci_acl_queue_wptr 
+0x44bc 008165 iforce contw 
+0x44bd 008166 deposit contru 
+0x44be 008167 istore 2 ,contw 
+0x44bf 008168 deposit contw 
+0x44c0 008169 store 2 ,mem_hci_acl_queue_wptr 
+0x44c1 008170 icompare 0xff ,temp 
+0x44c2 008171 call process_acl_into_queue_loop ,true 
+0x44c3 008172 fetch 1 ,mem_hci_acl_queue_wcnt 
+0x44c4 008173 increase 1 ,pdata 
+0x44c5 008174 store 1 ,mem_hci_acl_queue_wcnt 
+0x44c6 008175 rtn 
+:      008176 process_acl_into_queue_loop:
+0x44c7 008177 setarg mem_hci_acl_queue_start 
+0x44c8 008178 store 2 ,mem_hci_acl_queue_wptr 
+0x44c9 008179 rtn 
+:      008182 process_acl_dequeue:
+0x44ca 008183 fetch 1 ,mem_hci_acl_queue_wcnt 
+0x44cb 008184 rtn blank 
+0x44cc 008185 fetcht 2 ,mem_hci_acl_queue_end 
+0x44cd 008186 fetch 2 ,mem_hci_acl_queue_rptr 
+0x44ce 008187 iforce contr 
+0x44cf 008188 ifetch 2 ,contr 
+0x44d0 008189 iforce contru 
+0x44d1 008190 deposit contr 
+0x44d2 008191 store 2 ,mem_hci_acl_queue_rptr 
+0x44d3 008192 icompare 0xff ,temp 
+0x44d4 008193 call process_acl_dequeue_loop ,true 
+0x44d5 008194 fetch 1 ,mem_hci_acl_queue_wcnt 
+0x44d6 008195 increase -1 ,pdata 
+0x44d7 008196 store 1 ,mem_hci_acl_queue_wcnt 
+0x44d8 008197 force 1 ,pdata 
+0x44d9 008198 rtn 
+:      008199 process_acl_dequeue_loop:
+0x44da 008200 setarg mem_hci_acl_queue_start 
+0x44db 008201 store 2 ,mem_hci_acl_queue_rptr 
+0x44dc 008202 rtn 
+:      008204 process_acl:
+0x44dd 008205 set0 mark_ext_patch ,mark 
+0x44de 008206 bpatch patch1a_3 ,mem_patch1a 
+0x44df 008207 fetch 1 ,mem_hci_acl_queue_wcnt 
+0x44e0 008208 sub pdata ,2 ,null 
+0x44e1 008209 branch process_acl_queue_check_ok ,positive 
+0x44e2 008210 enable user 
+0x44e3 008211 branch process_send_acl 
+:      008212 process_acl_queue_check_ok:
+0x44e4 008213 call hci_send_ack 
+0x44e5 008214 call process_acl_into_queue 
+:      008215 process_send_acl:
+0x44e6 008216 set0 mark_ext_patch ,mark 
+0x44e7 008217 bpatch patch1a_4 ,mem_patch1a 
+0x44e8 008218 rtnmark1 mark_tx_l2cap 
+0x44e9 008219 call process_acl_dequeue 
+0x44ea 008220 rtn blank 
+0x44eb 008221 ifetcht 1 ,contru 
+0x44ec 008222 call context_search_conn_handle2 
+0x44ed 008223 nrtn zero 
+0x44ee 008224 ifetch 1 ,contru 
+0x44ef 008225 rshift4 pdata ,pdata 
+0x44f0 008226 and pdata ,0x3 ,pdata 
+0x44f1 008227 nbranch process_send_acl_good_lch ,blank 
+0x44f2 008228 set1 1 ,pdata 
+:      008229 process_send_acl_good_lch:
+0x44f3 008230 set1 2 ,pdata 
+0x44f4 008231 store 1 ,mem_tx_lch 
+0x44f5 008232 ifetch 2 ,contru 
+0x44f6 008233 store 2 ,mem_tx_len 
+0x44f7 008234 deposit contru 
+0x44f8 008235 store 2 ,mem_txptr 
+0x44f9 008236 set1 mark_tx_l2cap ,mark 
+0x44fa 008237 bmark0 mark_context ,process_acl_ncontext 
+0x44fb 008238 fetch 1 ,mem_conn_handle 
+0x44fc 008239 isub temp ,null 
+0x44fd 008240 nbranch process_acl_ncontext ,zero 
+0x44fe 008241 fetch 1 ,mem_op 
+0x44ff 008242 set1 op_txl2cap ,pdata 
+0x4500 008243 store 1 ,mem_op 
+0x4501 008244 rtn 
+:      008246 process_acl_ncontext:
+0x4502 008247 increase coffset_op ,rega 
+0x4503 008248 ifetch 1 ,rega 
+0x4504 008249 set1 op_txl2cap ,pdata 
+0x4505 008250 istore 1 ,rega 
+0x4506 008251 rtn 
+:      008256 process_hci_cmd:
+0x4507 008257 set0 mark_ext_patch ,mark 
+0x4508 008258 bpatch patch1a_5 ,mem_patch1a 
+0x4509 008259 fetch 1 ,mem_hci_cmd 
+0x450a 008260 branch process_hci_cmd_cont ,blank 
+0x450b 008261 enable user 
+0x450c 008262 rtn 
+:      008263 process_hci_cmd_cont:
+0x450d 008264 call hci_send_ack 
+0x450e 008265 ifetch 2 ,contru 
+0x450f 008266 iforce alarm 
+0x4510 008267 iforce queue 
+0x4511 008268 ifetch 1 ,contru 
+0x4512 008269 iforce temp 
+0x4513 008270 rshift2 alarm ,pdata 
+0x4514 008271 rshift8 pdata ,pdata 
+0x4515 008272 beq hci_ogf_link_control ,phci_grp_link_control 
+0x4516 008273 beq hci_ogf_link_policy ,phci_grp_link_policy 
+0x4517 008274 beq hci_ogf_baseband ,phci_grp_baseband 
+0x4518 008275 beq hci_ogf_info ,phci_grp_info 
+0x4519 008276 beq hci_ogf_status ,phci_grp_status 
+0x451a 008277 beq hci_ogf_test ,phci_grp_test 
+0x451b 008278 beq hci_ogf_vendor_specific ,phci_grp_vendor_specific 
+0x451c 008279 beq hci_ogf_low_energy ,phci_grp_low_energy 
+0x451d 008280 rtn 
+:      008283 phci_grp_link_control:
+0x451e 008284 set0 mark_ext_patch ,mark 
+0x451f 008285 bpatch patch1a_6 ,mem_patch1a 
+0x4520 008286 deposit queue 
+0x4521 008287 beq hci_inquiry ,phci_inquiry 
+0x4522 008288 beq hci_inquiry_cancel ,phci_inquiry_cancel 
+0x4523 008289 beq hci_periodic_inquiry_mode ,hci_normal_reply 
+0x4524 008290 beq hci_exit_periodic_inquiry_mode ,hci_normal_reply 
+0x4525 008291 beq hci_create_connection ,phci_create_connection 
+0x4526 008292 beq hci_disconnect ,phci_disconnect 
+0x4527 008293 beq hci_add_sco_connection ,hci_normal_reply 
+0x4528 008294 beq hci_create_connection_cancel ,phci_create_connection_cancel 
+0x4529 008295 beq hci_accept_connection ,phci_accept_connection 
+0x452a 008296 beq hci_reject_connection ,phci_reject_connection 
+0x452b 008297 beq hci_link_key_request_reply ,phci_link_key_request_reply 
+0x452c 008298 beq hci_link_key_request_negative_reply ,phci_link_key_request_negative_reply 
+0x452d 008299 beq hci_pin_code_request_reply ,phci_pin_code_request_reply 
+0x452e 008300 beq hci_pin_code_request_negative_reply ,phci_pin_code_request_negative_reply 
+0x452f 008301 beq hci_change_connection_packet_type ,phci_change_connection_packet_type 
+0x4530 008302 beq hci_authentication_requested ,phci_authentication_requested 
+0x4531 008303 beq hci_set_connection_encryption ,phci_set_connection_encryption 
+0x4532 008304 beq hci_change_connection_link_key ,hci_normal_reply 
+0x4533 008305 beq hci_master_link_key ,hci_normal_reply 
+0x4534 008306 beq hci_remote_name_request ,phci_remote_name_request 
+0x4535 008307 beq hci_read_remote_supported_features ,phci_read_remote_supported_features 
+0x4536 008308 beq hci_read_remote_ext_features ,phci_read_remote_ext_features 
+0x4537 008309 beq hci_read_remote_version_information ,phci_read_remote_version_information 
+0x4538 008310 beq hci_read_clock_offset ,phci_read_clock_offset 
+0x4539 008311 beq hci_setup_sco_connection ,phci_setup_sco_connection 
+0x453a 008312 beq hci_accept_sco_connection ,phci_accept_sco_connection 
+0x453b 008313 beq hci_io_cap_request_reply ,phci_io_cap_request_reply 
+0x453c 008314 branch phci_unknown_command 
+:      008317 phci_grp_link_policy:
+0x453d 008318 set0 mark_ext_patch ,mark 
+0x453e 008319 bpatch patch1a_7 ,mem_patch1a 
+0x453f 008320 deposit queue 
+0x4540 008321 beq hci_role_discovery ,phci_role_discovery 
+0x4541 008322 beq hci_write_link_policy_settings ,phci_write_link_policy_settings 
+0x4542 008323 beq hci_hold_mode ,hci_normal_reply 
+0x4543 008324 beq hci_sniff_mode ,phci_sniff_mode 
+0x4544 008325 beq hci_exit_sniff_mode ,phci_exit_sniff_mode 
+0x4545 008326 beq hci_park_mode ,hci_normal_reply 
+0x4546 008327 beq hci_exit_park_mode ,hci_normal_reply 
+0x4547 008328 beq hci_qos_setup ,hci_normal_reply 
+0x4548 008329 beq hci_switch_role ,phci_switch_role 
+0x4549 008330 beq hci_read_link_policy_settings ,hci_normal_reply 
+0x454a 008331 beq hci_read_default_link_policy_settings ,hci_normal_reply 
+0x454b 008332 beq hci_write_default_link_policy_settings ,hci_normal_reply 
+0x454c 008333 beq hci_flow_specification ,hci_normal_reply 
+0x454d 008334 beq hci_sniff_subrating ,phci_sniff_subrating 
+0x454e 008335 branch phci_unknown_command 
+:      008337 phci_grp_baseband:
+0x454f 008338 set0 mark_ext_patch ,mark 
+0x4550 008339 bpatch patch1b_0 ,mem_patch1b 
+0x4551 008340 deposit queue 
+0x4552 008341 beq hci_set_event_mask ,phci_set_event_mask 
+0x4553 008342 beq hci_reset ,hci_normal_reply 
+0x4554 008343 beq hci_delete_stored_link_key ,phci_delete_stored_link_key 
+0x4555 008344 beq hci_write_local_name ,phci_change_local_name 
+0x4556 008345 beq hci_read_local_name ,phci_read_local_name 
+0x4557 008346 beq hci_write_page_timeout ,phci_write_page_timeout 
+0x4558 008347 beq hci_read_scan_enable ,phci_read_scan_enable 
+0x4559 008348 beq hci_write_scan_enable ,phci_write_scan_enable 
+0x455a 008349 beq hci_write_page_scan_activity ,phci_write_page_scan_activity 
+0x455b 008350 beq hci_write_inquiry_scan_activity ,phci_write_inquiry_scan_activity 
+0x455c 008351 beq hci_write_authentication_enable ,phci_write_authentication_enable 
+0x455d 008352 beq hci_write_encryption_mode ,phci_write_encryption_mode 
+0x455e 008353 beq hci_write_class_of_device ,phci_write_class_of_device 
+0x455f 008354 beq hci_write_voice_setting ,hci_normal_reply 
+0x4560 008355 beq hci_set_controller_to_host_flow_control ,hci_normal_reply 
+0x4561 008356 beq hci_host_buffer_size ,hci_normal_reply 
+0x4562 008357 beq hci_host_num_completed_packets ,phci_host_num_completed 
+0x4563 008358 beq hci_write_inquiry_scan_type ,hci_normal_reply 
+0x4564 008359 beq hci_write_inquiry_mode ,hci_normal_reply 
+0x4565 008360 beq hci_write_page_scan_type ,hci_normal_reply 
+0x4566 008361 beq hci_read_extended_inquiry_response ,phci_read_ext_inquiry_response 
+0x4567 008362 beq hci_write_simple_pairing_mode ,phci_write_ssp_mode 
+0x4568 008363 branch phci_unknown_command 
+:      008365 phci_grp_info:
+0x4569 008366 set0 mark_ext_patch ,mark 
+0x456a 008367 bpatch patch1b_1 ,mem_patch1b 
+0x456b 008368 deposit queue 
+0x456c 008369 beq hci_read_local_version_information ,phci_read_local_version_information 
+0x456d 008370 beq hci_read_local_supported_features ,phci_read_local_supported_features 
+0x456e 008371 beq hci_read_local_ext_features ,phci_read_local_ext_features 
+0x456f 008372 beq hci_read_buffer_size ,phci_read_buffer_size 
+0x4570 008373 beq hci_read_bd_addr ,phci_read_bd_addr 
+0x4571 008374 branch phci_unknown_command 
+:      008376 phci_grp_status:
+0x4572 008377 set0 mark_ext_patch ,mark 
+0x4573 008378 bpatch patch1b_2 ,mem_patch1b 
+0x4574 008379 deposit queue 
+0x4575 008380 beq hci_read_failed_contact_counter ,hci_normal_reply 
+0x4576 008381 beq hci_reset_failed_contact_counter ,phci_reset_failed_contact_counter 
+0x4577 008382 beq hci_get_link_quality ,phci_get_link_quality 
+0x4578 008383 beq hci_read_rssi ,phci_read_rssi 
+0x4579 008384 beq hci_read_afh_channel_map ,phci_read_afh_channel_map 
+0x457a 008385 beq hci_read_bd_clock ,phci_read_bd_clock 
+0x457b 008386 branch phci_unknown_command 
+:      008388 phci_grp_test:
+0x457c 008389 set0 mark_ext_patch ,mark 
+0x457d 008390 bpatch patch1b_3 ,mem_patch1b 
+0x457e 008391 deposit queue 
+0x457f 008392 beq hci_read_loopback_mode ,hci_normal_reply 
+0x4580 008393 beq hci_write_loopback_mode ,hci_normal_reply 
+0x4581 008394 beq hci_enable_device_under_test_mode ,hci_normal_reply 
+0x4582 008395 beq hci_write_simple_pairing_debug_mode ,hci_normal_reply 
+0x4583 008396 branch phci_unknown_command 
+0x4584 008397 rtn 
+:      008399 phci_grp_vendor_specific:
+0x4585 008400 set0 mark_ext_patch ,mark 
+0x4586 008401 bpatch patch1b_4 ,mem_patch1b 
+0x4587 008402 deposit queue 
+0x4588 008403 beq hci_vendor_cmd_reset ,hci_normal_reply 
+0x4589 008404 beq hci_vendor_cmd_chipid ,phci_grp_vendor_chipid 
+0x458a 008405 beq hci_vendor_cmd_baud ,phci_grp_vendor_baud 
+0x458b 008406 beq hci_vendor_cmd_patch ,phci_grp_vendor_patch 
+0x458c 008407 beq hci_vendor_cmd_patch_done ,phci_grp_vendor_done 
+0x458d 008408 beq hci_vendor_cmd_echo ,hci_normal_reply 
+0x458e 008409 beq hci_vendor_cmd_bdaddr ,phci_grp_vendor_bdaddr 
+0x458f 008410 beq hci_vendor_cmd_enter_lpm ,phci_grp_vendor_enter_lpm 
+0x4590 008412 beq hci_vendor_cmd_mem ,phci_grp_vendor_mem 
+0x4591 008413 beq hci_vendor_cmd_eep ,phci_grp_vendor_eep 
+0x4592 008414 branch hci_normal_reply 
+:      008416 phci_grp_vendor_enter_lpm:
+0x4593 008417 call hci_normal_reply 
+0x4594 008418 call wait_uarttx 
+0x4595 008419 call gpio_pu_uart_tx 
+:      008420 hci_enter_lpm:
+0x4596 008421 call app_put_lpm_wake_lock 
+0x4597 008422 call app_l2cap_flow_control_enable 
+0x4598 008423 branch gpio_rx_config_input_with_pu 
+:      008425 hci_exit_lpm:
+0x4599 008426 jam hci_rx_ready ,mem_hci_lt_rx_state 
+0x459a 008427 call app_get_lpm_wake_lock 
+0x459b 008428 call hci_lpm_init 
+0x459c 008429 branch app_l2cap_flow_control_disable 
+:      008431 phci_grp_vendor_chipid:
+0x459d 008432 call hci_get_cmd_complete_ptr 
+0x459e 008433 hfetch 2 ,core_chipid 
+0x459f 008434 istore 2 ,contwu 
+0x45a0 008435 force 6 ,loopcnt 
+0x45a1 008436 branch hci_command_complete 
+:      008438 phci_grp_vendor_baud:
+0x45a2 008439 ifetch 2 ,contru 
+0x45a3 008440 store 2 ,mem_baud 
+0x45a4 008441 hstore 2 ,core_uart_baud 
+0x45a5 008442 rtn 
+:      008444 phci_grp_vendor_patch:
+0x45a6 008446 ifetch 1 ,contru 
+0x45a7 008447 copy pdata ,temp 
+0x45a8 008448 hstore 1 ,core_ucode_low 
+0x45a9 008449 ifetch 1 ,contru 
+0x45aa 008450 iadd temp ,temp 
+0x45ab 008451 set1 7 ,pdata 
+0x45ac 008452 hstore 1 ,core_ucode_ctrl 
+0x45ad 008453 ifetch 1 ,contru 
+0x45ae 008454 iadd temp ,temp 
+0x45af 008455 copy pdata ,loopcnt 
+:      008456 phci_grp_vendor_patch_loop:
+0x45b0 008457 ifetch 1 ,contru 
+0x45b1 008458 hstore 1 ,core_ucode_data 
+0x45b2 008459 iadd temp ,temp 
+0x45b3 008460 loop phci_grp_vendor_patch_loop 
+0x45b4 008461 and temp ,0xff ,temp 
+0x45b5 008462 ifetch 1 ,contru 
+0x45b6 008463 isub temp ,null 
+0x45b7 008464 nbranch phci_grp_vendor_patch_bad ,zero 
+0x45b8 008465 branch hci_normal_reply 
+:      008467 phci_grp_vendor_done:
+0x45b9 008468 arg 0x20 ,loopcnt 
+0x45ba 008469 arg mem_patch00 ,contw 
+0x45bb 008470 arg 0 ,temp 
+:      008471 phci_grp_vendor_done_loop:
+0x45bc 008472 ifetch 1 ,contru 
+0x45bd 008473 istore 1 ,contw 
+0x45be 008474 iadd temp ,temp 
+0x45bf 008475 loop phci_grp_vendor_done_loop 
+0x45c0 008476 and temp ,0xff ,temp 
+0x45c1 008477 ifetch 1 ,contru 
+0x45c2 008478 isub temp ,null 
+0x45c3 008479 nbranch phci_grp_vendor_patch_bad ,zero 
+0x45c4 008480 hjam 0 ,core_ucode_ctrl 
+0x45c5 008481 call hci_normal_reply 
+0x45c6 008482 call h4_rx_discard_packet 
+0x45c7 008483 branch soft_reset 
+:      008485 phci_grp_vendor_patch_bad:
+0x45c8 008486 hjam 0 ,core_ucode_ctrl 
+0x45c9 008487 branch start 
+:      008489 phci_grp_vendor_bdaddr:
+0x45ca 008490 ifetch 6 ,contru 
+0x45cb 008491 store 6 ,mem_lap 
+0x45cc 008492 branch hci_normal_reply 
+:      008495 phci_grp_vendor_mem:
+0x45cd 008496 ifetch 1 ,contru 
+0x45ce 008497 store 1 ,mem_hci_curr_len 
+0x45cf 008498 copy pdata ,loopcnt 
+0x45d0 008499 ifetch 2 ,contru 
+0x45d1 008500 store 2 ,mem_hci_curr_target 
+0x45d2 008501 copy pdata ,contw 
+0x45d3 008502 call uart_copy_rx_bytes 
+0x45d4 008503 branch hci_normal_reply 
+:      008506 phci_grp_vendor_eep:
+0x45d5 008507 ifetch 1 ,contru 
+0x45d6 008508 store 1 ,mem_hci_curr_len 
+0x45d7 008509 copy pdata ,loopcnt 
+0x45d8 008510 ifetch 2 ,contru 
+0x45d9 008511 store 2 ,mem_hci_curr_target 
+0x45da 008512 arg mem_l2cap_rxbuff1 ,contw 
+0x45db 008513 call uart_copy_rx_bytes 
+0x45dc 008514 fetcht 1 ,mem_hci_curr_len 
+0x45dd 008515 arg mem_l2cap_rxbuff1 ,rega 
+0x45de 008516 fetch 2 ,mem_hci_curr_target 
+0x45df 008517 branch iicd_write_ota_data 
+:      008523 phci_grp_low_energy:
+0x45e0 008524 set0 mark_ext_patch ,mark 
+0x45e1 008525 bpatch patch1b_5 ,mem_patch1b 
+0x45e2 008526 deposit queue 
+0x45e3 008527 beq hci_le_set_event_mask ,hci_normal_reply 
+0x45e4 008528 beq hci_le_read_buffer_size ,phci_le_read_buffer_size 
+0x45e5 008529 beq hci_le_read_local_supported_features ,phci_le_read_local_supported_features 
+0x45e6 008530 beq hci_le_set_advertising_parameters ,phci_le_set_adv_param 
+0x45e7 008531 beq hci_le_set_advertising_data ,phci_le_set_adv_data 
+0x45e8 008532 beq hci_le_set_scan_response_data ,phci_le_set_scan_response_data 
+0x45e9 008533 beq hci_le_set_advertise_enable ,phci_le_set_adv_enable 
+0x45ea 008534 beq hci_le_set_scan_parameters ,phci_le_set_scan_param 
+0x45eb 008535 beq hci_le_set_scan_enable ,phci_le_set_scan_enable 
+0x45ec 008536 beq hci_le_create_connection ,phci_le_create_conn 
+0x45ed 008537 beq hci_le_create_connection_cancel ,phci_le_create_conn_cancel 
+0x45ee 008538 beq hci_le_read_channel_map ,phci_le_read_channel_map 
+0x45ef 008539 beq hci_le_read_remote_used_features ,hci_command_status 
+0x45f0 008540 beq hci_le_connection_update ,hci_normal_reply 
+0x45f1 008541 branch phci_unknown_command 
+0x45f2 008542 rtn 
+:      008543 phci_le_read_buffer_size:
+0x45f3 008544 call hci_get_cmd_complete_ptr 
+0x45f4 008545 setarg 0 
+0x45f5 008546 istore 3 ,contwu 
+0x45f6 008547 force 0x07 ,loopcnt 
+0x45f7 008548 branch hci_command_complete 
+:      008550 phci_le_read_local_supported_features:
+0x45f8 008551 call hci_get_cmd_complete_ptr 
+0x45f9 008552 setarg 1 
+0x45fa 008553 istore 2 ,contwu 
+0x45fb 008554 setarg 0 
+0x45fc 008555 istore 6 ,contwu 
+0x45fd 008556 force 0x0c ,loopcnt 
+0x45fe 008557 branch hci_command_complete 
+:      008559 phci_le_set_adv_param:
+0x45ff 008560 arg 15 ,loopcnt 
+0x4600 008561 arg mem_le_adv_param ,contw 
+0x4601 008562 call uart_copy_rx_bytes 
+0x4602 008563 branch hci_normal_reply 
+:      008565 phci_le_set_adv_data:
+0x4603 008566 arg 32 ,loopcnt 
+0x4604 008567 arg mem_le_adv_data_len ,contw 
+0x4605 008568 call uart_copy_rx_bytes 
+0x4606 008569 branch hci_normal_reply 
+:      008571 phci_le_set_scan_response_data:
+0x4607 008572 arg 32 ,loopcnt 
+0x4608 008573 arg mem_le_scan_data_len ,contw 
+0x4609 008574 call uart_copy_rx_bytes 
+0x460a 008575 branch hci_normal_reply 
+:      008577 phci_le_set_adv_enable:
+0x460b 008578 ifetch 1 ,contru 
+0x460c 008579 store 1 ,mem_le_adv_enable 
+0x460d 008580 branch hci_normal_reply 
+:      008582 phci_le_set_scan_param:
+0x460e 008583 ifetch 7 ,contru 
+0x460f 008584 store 7 ,mem_le_scan_params 
+0x4610 008585 branch hci_normal_reply 
+:      008587 phci_le_set_scan_enable:
+0x4611 008588 ifetch 1 ,contru 
+0x4612 008589 store 1 ,mem_le_scan_enable 
+0x4613 008590 branch hci_normal_reply 
+:      008592 phci_le_create_conn:
+0x4614 008593 ifetch 4 ,contru 
+0x4615 008594 store 4 ,mem_le_scan_interval 
+0x4616 008595 ifetch 1 ,contru 
+0x4617 008596 store 1 ,mem_le_scan_filter_policy 
+0x4618 008597 arg 20 ,loopcnt 
+0x4619 008598 arg mem_le_conn_param ,contw 
+0x461a 008599 call uart_copy_rx_bytes 
+0x461b 008600 jam 1 ,mem_le_scan_enable 
+0x461c 008601 fetch 1 ,mem_le_conn_own_addr_type 
+0x461d 008602 store 1 ,mem_le_scan_own_addr_type 
+0x461e 008603 fetch 2 ,mem_le_conn_interval_max 
+0x461f 008604 store 2 ,mem_le_conn_interval 
+0x4620 008605 fetch 2 ,mem_le_conn_latency 
+0x4621 008606 store 2 ,mem_le_slave_latency 
+0x4622 008607 fetch 2 ,mem_le_conn_superto 
+0x4623 008608 store 2 ,mem_le_superto 
+0x4624 008609 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x4625 008610 branch hci_command_status 
+:      008612 phci_le_create_conn_cancel:
+0x4626 008614 branch hci_normal_reply 
+:      008616 phci_le_read_channel_map:
+0x4627 008617 call hci_get_cmd_complete_ptr 
+0x4628 008618 ifetch 2 ,contru 
+0x4629 008619 istore 2 ,contwu 
+0x462a 008620 setarg 0x1fffff 
+0x462b 008621 istore 5 ,contwu 
+0x462c 008622 force 0x0b ,loopcnt 
+0x462d 008623 branch hci_command_complete 
+:      008628 phci_host_num_completed:
+0x462e 008629 ifetch 3 ,contru 
+0x462f 008630 ifetcht 3 ,contru 
+0x4630 008631 fetch 2 ,mem_acl_credits 
+0x4631 008632 iadd temp ,pdata 
+0x4632 008633 store 2 ,mem_acl_credits 
+0x4633 008634 rtn 
+:      008636 phci_inquiry:
+0x4634 008637 ifetch 3 ,contru 
+0x4635 008638 store 3 ,mem_glap 
+:      008639 do_at_inquiry0:
+0x4636 008640 jam hci_cmd_inquiry ,mem_hci_cmd 
+0x4637 008641 ifetch 1 ,contru 
+0x4638 008642 arg 1600 ,temp 
+0x4639 008643 imul32 temp ,pdata 
+0x463a 008644 arg 0xffff ,temp 
+0x463b 008645 isub temp ,null 
+0x463c 008646 nbranch phci_inquiry_nowrap ,positive 
+0x463d 008647 deposit temp 
+:      008648 phci_inquiry_nowrap:
+0x463e 008649 force inquiry_length_timer ,queue 
+0x463f 008650 call timer_init 
+0x4640 008651 fetch 1 ,mem_at_using_flag 
+0x4641 008652 bbit1 at_flag_inq ,at_rev_end 
+0x4642 008653 branch hci_command_status 
+:      008656 phci_inquiry_cancel:
+0x4643 008657 jam hci_cmd_inquiry_cancel ,mem_hci_cmd 
+0x4644 008658 branch hci_normal_reply 
+:      008660 phci_create_connection:
+0x4645 008661 call phci_read_plap 
+0x4646 008662 ifetch 2 ,contru 
+0x4647 008663 store 2 ,mem_packet_type 
+0x4648 008664 ifetch 2 ,contru 
+0x4649 008665 store 1 ,mem_page_mode 
+0x464a 008666 call phci_read_clock 
+0x464b 008667 ifetch 1 ,contru 
+0x464c 008668 store 1 ,mem_allow_switch 
+0x464d 008669 jam hci_cmd_create_conn ,mem_hci_cmd 
+0x464e 008670 branch hci_command_status 
+:      008673 phci_disconnect:
+0x464f 008674 jam hci_cmd_disconn ,mem_hci_cmd 
+0x4650 008675 ifetch 2 ,contru 
+0x4651 008676 store 1 ,mem_hci_conn_handle 
+0x4652 008677 ifetch 1 ,contru 
+0x4653 008678 store 1 ,mem_disconn_reason_send 
+0x4654 008679 jam hci_error_connection_terminated_by_local_host ,mem_hci_disconn_reason 
+0x4655 008680 fetch 1 ,mem_hci_conn_handle 
+0x4656 008681 fetcht 1 ,mem_sco_handle 
+0x4657 008682 isub temp ,null 
+0x4658 008683 nbranch hci_command_status ,zero 
+0x4659 008684 jam hci_cmd_disconn_sco ,mem_hci_cmd 
+0x465a 008685 fetch 1 ,mem_sco_asso_handle 
+0x465b 008686 store 1 ,mem_hci_conn_handle 
+0x465c 008687 branch hci_command_status 
+:      008689 phci_create_connection_cancel:
+0x465d 008690 call hci_get_cmd_complete_ptr 
+0x465e 008691 call hci_write_plap 
+0x465f 008692 force 10 ,loopcnt 
+0x4660 008693 call hci_command_complete 
+0x4661 008695 jam hci_cmd_detach ,mem_hci_cmd 
+0x4662 008696 force hci_error_no_connection ,temp 
+0x4663 008697 branch hci_send_connection_error 
+:      008699 phci_link_key_request_reply:
+0x4664 008700 call phci_read_plap 
+0x4665 008701 arg mem_link_key ,contw 
+0x4666 008702 force 16 ,loopcnt 
+0x4667 008703 call uart_copy_rx_bytes 
+0x4668 008704 jam hci_cmd_linkkey ,mem_hci_cmd 
+0x4669 008705 branch phci_pin_code_reply 
+:      008707 phci_link_key_request_negative_reply:
+0x466a 008708 call phci_read_plap 
+0x466b 008709 jam hci_cmd_nokey ,mem_hci_cmd 
+0x466c 008710 branch phci_pin_code_reply 
+:      008712 phci_pin_code_request_reply:
+0x466d 008713 call phci_read_plap 
+0x466e 008714 ifetch 1 ,contru 
+0x466f 008715 store 1 ,mem_pin_length 
+0x4670 008716 iforce loopcnt 
+0x4671 008717 arg mem_pin ,contw 
+0x4672 008718 call uart_copy_rx_bytes 
+0x4673 008719 jam hci_cmd_pair ,mem_hci_cmd 
+0x4674 008720 branch phci_pin_code_reply 
+:      008722 phci_pin_code_request_negative_reply:
+0x4675 008723 call phci_read_plap 
+0x4676 008724 jam hci_cmd_nopair ,mem_hci_cmd 
+:      008725 phci_pin_code_reply:
+0x4677 008726 call hci_get_cmd_complete_ptr 
+0x4678 008727 call hci_write_plap 
+0x4679 008728 force 10 ,loopcnt 
+0x467a 008729 branch hci_command_complete 
+:      008731 phci_io_cap_request_reply:
+0x467b 008733 increase 6 ,contru 
+0x467c 008734 ifetch 3 ,contru 
+0x467d 008735 store 3 ,mem_sp_iocap_local 
+0x467e 008736 fetch 1 ,mem_master_sp_state 
+0x467f 008737 beq sp_master_stat_start_done ,phci_io_cap_request_reply_master 
+0x4680 008738 beq sp_stat_key_send ,phci_io_cap_request_reply_master 
+0x4681 008739 jam hci_cmd_io_cap ,mem_hci_cmd 
+0x4682 008740 branch phci_io_cap_request_reply_commom 
+:      008741 phci_io_cap_request_reply_master:
+0x4683 008742 jam sp_flag_commit ,mem_master_sp_flag 
+:      008743 phci_io_cap_request_reply_commom:
+0x4684 008744 call hci_get_cmd_complete_ptr 
+0x4685 008745 call hci_write_plap 
+0x4686 008746 force 10 ,loopcnt 
+0x4687 008747 branch hci_command_complete 
+:      008750 phci_authentication_requested:
+0x4688 008751 call phci_read_handle 
+0x4689 008752 jam hci_cmd_auth ,mem_hci_cmd 
+0x468a 008753 branch hci_command_status 
+:      008755 phci_set_connection_encryption:
+0x468b 008756 call phci_read_handle 
+0x468c 008757 ifetch 1 ,contru 
+0x468d 008758 increase hci_cmd_stopencrypt ,pdata 
+0x468e 008759 store 1 ,mem_hci_cmd 
+0x468f 008760 branch hci_command_status 
+:      008762 phci_remote_name_request:
+0x4690 008763 call phci_read_plap 
+0x4691 008764 ifetch 2 ,contru 
+0x4692 008765 store 1 ,mem_page_mode 
+0x4693 008766 call phci_read_clock 
+0x4694 008767 jam hci_cmd_remote_name_req ,mem_hci_cmd 
+0x4695 008768 branch hci_command_status 
+:      008770 phci_read_remote_ext_features:
+0x4696 008771 ifetch 2 ,contru 
+0x4697 008772 ifetch 1 ,contru 
+0x4698 008773 store 1 ,mem_ext_features_page 
+0x4699 008774 jam hci_cmd_remote_ext_features_req ,mem_hci_cmd 
+0x469a 008775 branch hci_command_status 
+:      008777 phci_read_remote_supported_features:
+0x469b 008779 fetch 1 ,mem_conn_handle 
+0x469c 008780 force hci_error_no_connection ,rega 
+0x469d 008781 branch hci_command_status_err ,blank 
+0x469e 008782 call phci_read_handle 
+0x469f 008783 jam hci_cmd_remote_feature_req ,mem_hci_cmd 
+0x46a0 008784 branch hci_command_status 
+:      008787 phci_read_remote_version_information:
+0x46a1 008789 fetch 1 ,mem_conn_handle 
+0x46a2 008790 force hci_error_no_connection ,rega 
+0x46a3 008791 branch hci_command_status_err ,blank 
+0x46a4 008792 call phci_read_handle 
+0x46a5 008793 jam hci_cmd_remote_version_req ,mem_hci_cmd 
+0x46a6 008794 branch hci_command_status 
+:      008797 phci_read_clock_offset:
+0x46a7 008798 call phci_status_reply_temp 
+0x46a8 008799 force hci_event_read_clock_offset_complete ,queue 
+0x46a9 008800 force 5 ,loopcnt 
+0x46aa 008801 branch hci_send_event 
+:      008803 phci_setup_sco_connection:
+0x46ab 008804 call phci_read_handle 
+0x46ac 008805 increase 10 ,contru 
+0x46ad 008806 ifetch 2 ,contru 
+0x46ae 008807 store 2 ,mem_voice_setting 
+0x46af 008808 ifetch 1 ,contru 
+0x46b0 008809 store 1 ,mem_retransmission_effort 
+0x46b1 008810 ifetch 2 ,contru 
+0x46b2 008811 store 2 ,mem_sco_ptype 
+0x46b3 008812 jam 2 ,mem_air_mode 
+0x46b4 008813 jam hci_cmd_setup_sco ,mem_hci_cmd 
+0x46b5 008814 branch hci_command_status 
+:      008816 phci_accept_sco_connection:
+0x46b6 008817 jam hci_cmd_accept_sco_conn ,mem_hci_cmd 
+0x46b7 008818 branch hci_command_status 
+:      008822 phci_read_local_name:
+0x46b8 008823 call hci_get_cmd_complete_ptr 
+0x46b9 008824 arg mem_local_name ,contr 
+0x46ba 008825 sub contr ,0xff ,loopcnt 
+0x46bb 008826 call uart_copy_tx_bytes 
+0x46bc 008827 force 0 ,pdata 
+0x46bd 008828 sub contr ,mem_local_name ,loopcnt 
+0x46be 008829 increase 0xf8 ,loopcnt 
+0x46bf 008830 call uart_write_bytes 
+0x46c0 008831 force 0xfc ,loopcnt 
+0x46c1 008832 branch hci_command_complete 
+:      008834 phci_change_local_name:
+0x46c2 008835 arg mem_local_name ,contw 
+0x46c3 008836 sub contw ,0xff ,loopcnt 
+:      008837 phci_change_local_name_loop:
+0x46c4 008838 ifetch 1 ,contru 
+0x46c5 008839 istore 1 ,contw 
+0x46c6 008840 branch phci_write_local_name_end ,blank 
+0x46c7 008841 loop phci_change_local_name_loop 
+:      008842 phci_write_local_name_end:
+0x46c8 008843 sub contw ,mem_local_name ,pdata 
+0x46c9 008844 sub pdata ,0 ,pdata 
+0x46ca 008845 store 1 ,mem_local_name_length 
+0x46cb 008846 branch hci_normal_reply 
+:      008848 phci_role_discovery:
+0x46cc 008849 call hci_get_cmd_complete_ptr 
+0x46cd 008850 call hci_write_handle 
+0x46ce 008851 force 0 ,pdata 
+0x46cf 008852 nsetflag master ,0 ,pdata 
+0x46d0 008853 istore 1 ,contwu 
+0x46d1 008854 force 7 ,loopcnt 
+0x46d2 008855 arg 0x809 ,alarm 
+0x46d3 008856 call hci_command_complete 
+0x46d4 008857 branch cmd_exit 
+0x46d5 008858 jam hci_cmd_role_discovery ,mem_hci_cmd 
+0x46d6 008859 rtn 
+:      008862 phci_write_link_policy_settings:
+0x46d7 008863 call phci_copy_handle 
+0x46d8 008864 force 6 ,loopcnt 
+0x46d9 008865 branch hci_command_complete 
+:      008868 phci_delete_stored_link_key:
+0x46da 008869 branch hci_normal_reply 
+:      008871 phci_write_page_timeout:
+0x46db 008872 ifetch 2 ,contru 
+0x46dc 008873 store 2 ,mem_page_to 
+0x46dd 008874 branch hci_normal_reply 
+:      008877 phci_write_scan_enable:
+0x46de 008878 ifetch 1 ,contru 
+0x46df 008879 store 1 ,mem_scan_mode 
+0x46e0 008880 branch hci_normal_reply 
+:      008882 phci_write_page_scan_activity:
+0x46e1 008883 ifetch 2 ,contru 
+0x46e2 008884 store 2 ,mem_pscan_interval 
+0x46e3 008885 ifetch 2 ,contru 
+0x46e4 008886 store 2 ,mem_pscan_window 
+0x46e5 008887 branch hci_normal_reply 
+:      008889 phci_write_inquiry_scan_activity:
+0x46e6 008890 ifetch 2 ,contru 
+0x46e7 008891 store 2 ,mem_iscan_interval 
+0x46e8 008892 ifetch 2 ,contru 
+0x46e9 008893 store 2 ,mem_iscan_window 
+0x46ea 008894 branch hci_normal_reply 
+:      008896 phci_write_encryption_mode:
+0x46eb 008897 branch hci_normal_reply 
+:      008900 phci_write_authentication_enable:
+0x46ec 008901 ifetch 1 ,contru 
+0x46ed 008902 store 1 ,mem_auth_enable 
+0x46ee 008903 branch hci_normal_reply 
+:      008905 phci_write_class_of_device:
+0x46ef 008906 ifetch 3 ,contru 
+0x46f0 008907 store 3 ,mem_class 
+0x46f1 008908 branch hci_normal_reply 
+:      008913 phci_read_ext_inquiry_response:
+0x46f2 008914 deposit temp 
+0x46f3 008915 branch hci_normal_reply ,blank 
+0x46f4 008916 call hci_get_payload_ptr 
+0x46f5 008917 force 0x1 ,pdata 
+0x46f6 008918 istore 1 ,contwu 
+0x46f7 008919 deposit alarm 
+0x46f8 008920 istore 2 ,contwu 
+0x46f9 008921 force hci_error_invalid_hci_command_parameters ,pdata 
+0x46fa 008922 istore 1 ,contwu 
+0x46fb 008923 setarg 0 
+0x46fc 008924 increase 0xf1 ,loopcnt 
+0x46fd 008925 call uart_write_bytes 
+0x46fe 008927 force hci_event_command_complete ,queue 
+0x46ff 008928 force 0xf5 ,loopcnt 
+0x4700 008929 branch hci_send_event 
+:      008933 phci_write_ssp_mode:
+0x4701 008934 ifetch 1 ,contru 
+0x4702 008935 ncall ssp_enable ,blank 
+0x4703 008936 call ssp_disable ,blank 
+0x4704 008937 branch hci_normal_reply 
+:      008939 phci_read_scan_enable:
+0x4705 008940 call hci_get_cmd_complete_ptr 
+0x4706 008941 fetch 1 ,mem_scan_mode 
+0x4707 008942 istore 1 ,contwu 
+0x4708 008943 force 5 ,loopcnt 
+0x4709 008944 branch hci_command_complete 
+:      008946 phci_read_local_version_information:
+0x470a 008947 call hci_get_cmd_complete_ptr 
+0x470b 008948 fetch 8 ,mem_hci_version 
+0x470c 008949 istore 8 ,contwu 
+0x470d 008950 force 12 ,loopcnt 
+0x470e 008951 branch hci_command_complete 
+:      008953 phci_read_local_supported_features:
+0x470f 008954 call hci_get_cmd_complete_ptr 
+0x4710 008955 fetch 8 ,mem_features 
+0x4711 008956 istore 8 ,contwu 
+0x4712 008957 force 12 ,loopcnt 
+0x4713 008958 branch hci_command_complete 
+:      008960 phci_read_local_ext_features:
+0x4714 008961 call hci_get_cmd_complete_ptr 
+0x4715 008962 setarg 0x0101 
+0x4716 008963 istore 2 ,contwu 
+0x4717 008964 setarg 0x01 
+0x4718 008965 istore 8 ,contwu 
+0x4719 008966 force 14 ,loopcnt 
+0x471a 008967 branch hci_command_complete 
+:      008969 phci_read_buffer_size:
+0x471b 008970 call hci_get_cmd_complete_ptr 
+0x471c 008971 fetch 7 ,mem_acl_pktlen 
+0x471d 008972 istore 7 ,contwu 
+0x471e 008973 force 11 ,loopcnt 
+0x471f 008974 branch hci_command_complete 
+:      008976 phci_read_bd_addr:
+0x4720 008977 call hci_get_cmd_complete_ptr 
+0x4721 008978 fetch 6 ,mem_lap 
+0x4722 008979 istore 6 ,contwu 
+0x4723 008980 force 10 ,loopcnt 
+0x4724 008981 branch hci_command_complete 
+:      008983 phci_set_event_mask:
+0x4725 008984 branch hci_normal_reply 
+:      008987 phci_reset_failed_contact_counter:
+0x4726 008988 branch hci_normal_reply 
+:      008989 phci_get_link_quality:
+0x4727 008990 call hci_get_cmd_complete_ptr 
+0x4728 008991 call hci_write_handle 
+0x4729 008992 setarg 0xff 
+0x472a 008993 istore 1 ,contwu 
+0x472b 008994 force 7 ,loopcnt 
+0x472c 008995 branch hci_command_complete 
+:      008997 phci_read_rssi:
+0x472d 008998 call hci_get_cmd_complete_ptr 
+0x472e 008999 call hci_write_handle 
+0x472f 009000 setarg 0x00 
+0x4730 009001 istore 1 ,contwu 
+0x4731 009002 force 7 ,loopcnt 
+0x4732 009003 branch hci_command_complete 
+:      009005 phci_read_afh_channel_map:
+0x4733 009006 set0 mark_ext_patch ,mark 
+0x4734 009007 bpatch patch1b_6 ,mem_patch1b 
+0x4735 009008 branch hci_normal_reply 
+:      009009 phci_read_bd_clock:
+0x4736 009010 set0 mark_ext_patch ,mark 
+0x4737 009011 bpatch patch1b_7 ,mem_patch1b 
+0x4738 009012 branch hci_normal_reply 
+:      009017 phci_accept_connection:
+0x4739 009018 call phci_read_plap 
+0x473a 009019 jam hci_cmd_accept_conn ,mem_hci_cmd 
+0x473b 009020 ifetch 1 ,contru 
+0x473c 009021 beq 1 ,hci_command_status 
+0x473d 009022 jam hci_cmd_accept_with_switch ,mem_hci_cmd 
+0x473e 009023 branch hci_command_status 
+:      009025 phci_reject_connection:
+0x473f 009026 branch phci_accept_connection 
+0x4740 009027 call phci_read_plap 
+0x4741 009028 jam hci_cmd_reject_conn ,mem_hci_cmd 
+0x4742 009029 branch hci_normal_reply 
+:      009031 phci_change_connection_packet_type:
+0x4743 009032 call hci_command_status 
+0x4744 009033 call hci_get_payload_ptr 
+0x4745 009034 setarg 0 
+0x4746 009035 istore 1 ,contwu 
+0x4747 009036 ifetch 4 ,contru 
+0x4748 009037 istore 4 ,contwu 
+0x4749 009038 force 8 ,loopcnt 
+0x474a 009039 arg hci_event_connection_packet_type_changed ,queue 
+0x474b 009040 arg 5 ,loopcnt 
+0x474c 009041 branch hci_send_event 
+:      009043 phci_unknown_command:
+0x474d 009044 force hci_error_unknown_hci_command ,rega 
+0x474e 009045 branch hci_command_status_err 
+:      009047 phci_sniff_mode:
+0x474f 009050 call phci_read_handle 
+0x4750 009051 ifetch 2 ,contru 
+0x4751 009052 store 2 ,mem_sniff_param_interval 
+0x4752 009053 ifetch 2 ,contru 
+0x4753 009054 store 2 ,mem_hci_sniff_min_interval 
+0x4754 009055 ifetch 2 ,contru 
+0x4755 009056 store 2 ,mem_sniff_param_attempt 
+0x4756 009057 ifetch 2 ,contru 
+0x4757 009058 store 2 ,mem_sniff_param_timeout 
+0x4758 009059 jam hci_cmd_in_sniff ,mem_hci_cmd 
+0x4759 009060 branch hci_command_status 
+:      009062 phci_exit_sniff_mode:
+0x475a 009063 call phci_read_handle 
+0x475b 009064 call exit_sniff 
+0x475c 009065 branch hci_command_status 
+:      009067 exit_sniff:
+0x475d 009068 jam hci_cmd_exit_sniff ,mem_hci_cmd 
+0x475e 009069 rtn 
+:      009071 phci_sniff_subrating:
+0x475f 009072 branch hci_normal_reply 
+:      009074 phci_switch_role:
+0x4760 009075 call phci_read_plap 
+0x4761 009076 jam hci_cmd_role_switch ,mem_hci_cmd 
+0x4762 009077 branch hci_command_status 
+:      009079 phci_read_plap:
+0x4763 009080 ifetch 6 ,contru 
+0x4764 009081 store 6 ,mem_hci_plap 
+0x4765 009082 rtn 
+:      009084 phci_read_handle:
+0x4766 009085 ifetch 2 ,contru 
+0x4767 009086 store 1 ,mem_hci_conn_handle 
+0x4768 009087 rtn 
+:      009089 phci_copy_handle:
+0x4769 009090 call phci_read_handle 
+0x476a 009091 call hci_get_cmd_complete_ptr 
+0x476b 009092 fetch 1 ,mem_hci_conn_handle 
+0x476c 009093 istore 2 ,contwu 
+0x476d 009094 rtn 
+:      009098 phci_status_reply_temp:
+0x476e 009099 call phci_read_handle 
+0x476f 009100 call hci_command_status 
+0x4770 009101 call hci_get_payload_ptr 
+0x4771 009102 force 0 ,pdata 
+0x4772 009103 istore 1 ,contwu 
+0x4773 009104 fetch 1 ,mem_hci_conn_handle 
+0x4774 009105 istore 2 ,contwu 
+0x4775 009106 rtn 
+:      009108 phci_read_clock:
+0x4776 009109 ifetch 2 ,contru 
+0x4777 009110 iadd clkn_bt ,pdata 
+0x4778 009111 and_into 0x1fc ,pdata 
+0x4779 009112 store 4 ,mem_page_clk 
+0x477a 009113 rtn 
+:      009115 hci_inquiry_reply:
+0x477b 009116 set0 mark_ext_patch ,mark 
+0x477c 009117 bpatch patch1c_0 ,mem_patch1c 
+0x477d 009118 fetch 1 ,mem_rp_packets 
+0x477e 009119 sub pdata ,2 ,null 
+0x477f 009120 nrtn positive 
+0x4780 009121 fetcht 6 ,extm_lap 
+0x4781 009122 call context_search_plap2 
+0x4782 009123 rtn zero 
+0x4783 009124 call hci_get_packet_ptr 
+0x4784 009125 setarg 0x10f22 
+0x4785 009126 istore 3 ,contwu 
+0x4786 009127 fetch 6 ,extm_lap 
+0x4787 009128 istore 6 ,contwu 
+0x4788 009129 fetch 1 ,extm_fhs_misc 
+0x4789 009130 copy pdata ,temp 
+0x478a 009131 rshift3 pdata ,pdata 
+0x478b 009132 rshift3 pdata ,pdata 
+0x478c 009133 istore 1 ,contwu 
+0x478d 009134 copy temp ,pdata 
+0x478e 009135 and pdata ,0x30 ,pdata 
+0x478f 009136 rshift3 pdata ,pdata 
+0x4790 009137 rshift pdata ,pdata 
+0x4791 009138 istore 1 ,contwu 
+0x4792 009139 fetch 3 ,extm_class 
+0x4793 009140 istore 3 ,contwu 
+0x4794 009141 fetch 4 ,mem_clke_bt 
+0x4795 009142 isub clkn_bt ,pdata 
+0x4796 009143 istore 2 ,contwu 
+0x4797 009144 setarg 0xc8 
+0x4798 009145 istore 1 ,contwu 
+0x4799 009146 force 15 ,loopcnt 
+0x479a 009147 branch hci_send_event_raw 
+:      009149 hci_inquiry_reply_eir:
+0x479b 009150 set0 mark_ext_patch ,mark 
+0x479c 009151 bpatch patch1c_1 ,mem_patch1c 
+0x479d 009152 force 540 ,temp 
+0x479e 009153 fetch 2 ,mem_h5tx_free 
+0x479f 009154 isub temp ,null 
+0x47a0 009155 nrtn positive 
+0x47a1 009156 fetcht 3 ,mem_extm_uap_restore 
+0x47a2 009157 fetch 3 ,extm_uap 
+0x47a3 009158 isub temp ,null 
+0x47a4 009159 rtn zero 
+0x47a5 009160 rtn blank 
+0x47a6 009161 store 3 ,mem_extm_uap_restore 
+0x47a7 009162 fetch 1 ,mem_rp_packets 
+0x47a8 009163 sub pdata ,2 ,null 
+0x47a9 009164 nrtn positive 
+0x47aa 009165 fetcht 6 ,extm_lap 
+0x47ab 009166 call context_search_plap2 
+0x47ac 009167 rtn zero 
+0x47ad 009168 call hci_eir_reply 
+0x47ae 009169 force 15 ,temp 
+0x47af 009170 fetch 1 ,mem_rxbuf + 1 
+0x47b0 009171 bne 0x09 ,hci_inquiry_reply_eir_end 
+0x47b1 009172 fetch 1 ,mem_rxbuf 
+0x47b2 009173 branch hci_inquiry_reply_eir_end ,blank 
+0x47b3 009174 iforce loopcnt 
+0x47b4 009175 istore 1 ,contwu 
+0x47b5 009176 iadd temp ,temp 
+0x47b6 009177 increase 1 ,temp 
+0x47b7 009178 arg mem_rxbuf + 1 ,contr 
+:      009180 hci_inquiry_name_loop:
+0x47b8 009181 ifetch 1 ,contr 
+0x47b9 009182 istore 1 ,contwu 
+0x47ba 009183 loop hci_inquiry_name_loop 
+:      009184 hci_inquiry_other_rtn_loop:
+0x47bb 009185 ifetch 1 ,contr 
+0x47bc 009186 branch hci_inquiry_reply_eir_end ,blank 
+0x47bd 009187 iforce loopcnt 
+0x47be 009188 istore 1 ,contwu 
+0x47bf 009189 iadd temp ,temp 
+0x47c0 009190 increase 1 ,temp 
+:      009191 hci_inquiry_other_loop:
+0x47c1 009192 ifetch 1 ,contr 
+0x47c2 009193 istore 1 ,contwu 
+0x47c3 009194 loop hci_inquiry_other_loop 
+0x47c4 009195 branch hci_inquiry_other_rtn_loop 
+:      009196 hci_inquiry_reply_eir_end:
+0x47c5 009197 sub temp ,0xff ,pdata 
+0x47c6 009198 iforce loopcnt 
+:      009199 hci_inquiry_fill_zero:
+0x47c7 009200 setarg 0x00 
+0x47c8 009201 istore 1 ,contwu 
+0x47c9 009202 loop hci_inquiry_fill_zero 
+0x47ca 009203 force 0xff ,loopcnt 
+0x47cb 009204 branch hci_send_event_raw 
+:      009206 hci_eir_reply:
+0x47cc 009207 set0 mark_ext_patch ,mark 
+0x47cd 009208 bpatch patch1c_2 ,mem_patch1c 
+0x47ce 009209 call hci_get_packet_ptr 
+0x47cf 009210 setarg 0x1ff2f 
+0x47d0 009211 istore 3 ,contwu 
+0x47d1 009212 fetch 6 ,extm_lap 
+0x47d2 009213 istore 6 ,contwu 
+0x47d3 009214 fetch 1 ,extm_fhs_misc 
+0x47d4 009215 copy pdata ,temp 
+0x47d5 009216 rshift3 pdata ,pdata 
+0x47d6 009217 rshift3 pdata ,pdata 
+0x47d7 009218 istore 1 ,contwu 
+0x47d8 009219 copy temp ,pdata 
+0x47d9 009220 and pdata ,0x30 ,pdata 
+0x47da 009221 rshift3 pdata ,pdata 
+0x47db 009222 rshift pdata ,pdata 
+0x47dc 009223 istore 1 ,contwu 
+0x47dd 009224 fetch 3 ,extm_class 
+0x47de 009225 istore 3 ,contwu 
+0x47df 009226 fetch 4 ,mem_clke_bt 
+0x47e0 009227 isub clkn_bt ,pdata 
+0x47e1 009228 istore 2 ,contwu 
+0x47e2 009229 setarg 0xc8 
+0x47e3 009230 istore 1 ,contwu 
+0x47e4 009231 rtn 
+:      009233 hci_send_remote_features:
+0x47e5 009234 set0 mark_ext_patch ,mark 
+0x47e6 009235 bpatch patch1c_3 ,mem_patch1c 
+0x47e7 009236 fetch 1 ,mem_device_option 
+0x47e8 009237 rtnne dvc_op_hci 
+0x47e9 009238 call hci_write_handle3 
+0x47ea 009239 istoret 8 ,contwu 
+0x47eb 009240 force 11 ,loopcnt 
+0x47ec 009241 force hci_event_read_remote_features_complete ,queue 
+0x47ed 009242 branch hci_send_event 
+:      009244 hci_send_remote_ext_features_notification:
+0x47ee 009245 set0 mark_ext_patch ,mark 
+0x47ef 009246 bpatch patch1c_4 ,mem_patch1c 
+0x47f0 009247 fetch 1 ,mem_device_option 
+0x47f1 009248 rtnne dvc_op_hci 
+0x47f2 009250 call hci_get_payload_ptr 
+0x47f3 009251 fetch 6 ,mem_plap 
+0x47f4 009252 istore 6 ,contwu 
+0x47f5 009253 istoret 8 ,contwu 
+0x47f6 009254 force 14 ,loopcnt 
+0x47f7 009255 force hci_event_remote_host_supported_features_notification ,queue 
+0x47f8 009256 branch hci_send_event 
+:      009258 hci_send_remote_ext_features_event:
+0x47f9 009259 set0 mark_ext_patch ,mark 
+0x47fa 009260 bpatch patch1c_5 ,mem_patch1c 
+0x47fb 009261 fetch 1 ,mem_device_option 
+0x47fc 009262 rtnne dvc_op_hci 
+0x47fd 009264 call hci_write_handle3 
+0x47fe 009265 fetch 1 ,mem_ext_features_page 
+0x47ff 009266 istore 1 ,contwu 
+0x4800 009267 setarg 1 
+0x4801 009268 istore 1 ,contwu 
+0x4802 009269 istoret 8 ,contwu 
+0x4803 009270 force 13 ,loopcnt 
+0x4804 009271 force hci_event_read_remote_ext_features_complete ,queue 
+0x4805 009272 branch hci_send_event 
+:      009275 hci_send_version_information:
+0x4806 009276 set0 mark_ext_patch ,mark 
+0x4807 009277 bpatch patch1c_6 ,mem_patch1c 
+0x4808 009278 fetch 1 ,mem_device_option 
+0x4809 009279 rtnne dvc_op_hci 
+0x480a 009280 call hci_write_handle3 
+0x480b 009281 istoret 5 ,contwu 
+0x480c 009282 force 8 ,loopcnt 
+0x480d 009283 force hci_event_read_remote_version_information_complete ,queue 
+0x480e 009284 branch hci_send_event 
+:      009286 hci_send_io_cap_response_event:
+0x480f 009287 set0 mark_ext_patch ,mark 
+0x4810 009288 bpatch patch1c_7 ,mem_patch1c 
+0x4811 009289 fetch 1 ,mem_device_option 
+0x4812 009290 rtnne dvc_op_hci 
+0x4813 009292 call hci_get_payload_ptr 
+0x4814 009293 fetch 6 ,mem_plap 
+0x4815 009294 istore 6 ,contwu 
+0x4816 009295 fetch 3 ,mem_sp_iocap_remote 
+0x4817 009296 istore 3 ,contwu 
+0x4818 009297 force 9 ,loopcnt 
+0x4819 009298 force hci_event_io_cap_response ,queue 
+0x481a 009299 branch hci_send_event 
+:      009301 hci_send_io_cap_req_event:
+0x481b 009302 set0 mark_ext_patch ,mark 
+0x481c 009303 bpatch patch1d_0 ,mem_patch1d 
+0x481d 009304 fetch 1 ,mem_device_option 
+0x481e 009305 rtnne dvc_op_hci 
+0x481f 009307 call hci_get_payload_ptr 
+0x4820 009308 fetch 6 ,mem_plap 
+0x4821 009309 istore 6 ,contwu 
+0x4822 009310 force 6 ,loopcnt 
+0x4823 009311 force hci_event_io_cap_req ,queue 
+0x4824 009312 branch hci_send_event 
+:      009315 hci_send_connection_complete:
+0x4825 009316 force 0 ,temp 
+:      009317 hci_send_connection_error:
+0x4826 009318 set0 mark_ext_patch ,mark 
+0x4827 009319 bpatch patch1d_1 ,mem_patch1d 
+0x4828 009320 fetch 1 ,mem_device_option 
+0x4829 009321 rtnne dvc_op_hci 
+0x482a 009322 force hci_event_connection_complete ,queue 
+0x482b 009323 jam 5 ,mem_acl_credits 
+0x482c 009324 call hci_get_payload_ptr 
+0x482d 009325 istoret 1 ,contwu 
+0x482e 009326 call hci_write_handle 
+0x482f 009327 call hci_write_plap 
+0x4830 009328 force 1 ,pdata 
+0x4831 009329 istore 1 ,contwu 
+0x4832 009330 force 0 ,pdata 
+0x4833 009331 fetcht 1 ,mem_state_map 
+0x4834 009332 isolate1 smap_encryption ,temp 
+0x4835 009333 setflag true ,0 ,pdata 
+0x4836 009334 istore 1 ,contwu 
+0x4837 009335 force 11 ,loopcnt 
+0x4838 009336 branch hci_send_event 
+:      009339 hci_send_conn_req_event:
+0x4839 009340 set0 mark_ext_patch ,mark 
+0x483a 009341 bpatch patch1d_2 ,mem_patch1d 
+0x483b 009342 fetch 1 ,mem_device_option 
+0x483c 009343 rtnne dvc_op_hci 
+0x483d 009344 force hci_event_connection_request ,queue 
+0x483e 009345 call hci_get_payload_ptr 
+0x483f 009346 call hci_write_plap 
+0x4840 009348 fetch 3 ,extm_class 
+0x4841 009349 istore 3 ,contwu 
+0x4842 009350 istoret 1 ,contwu 
+0x4843 009351 force 10 ,loopcnt 
+0x4844 009352 branch hci_send_event 
+:      009354 hci_send_encryption_change:
+0x4845 009355 set0 mark_ext_patch ,mark 
+0x4846 009356 bpatch patch1d_3 ,mem_patch1d 
+0x4847 009357 fetch 1 ,mem_device_option 
+0x4848 009358 rtnne dvc_op_hci 
+0x4849 009359 call hci_write_handle3 
+0x484a 009360 force 0 ,pdata 
+0x484b 009361 fetcht 1 ,mem_state_map 
+0x484c 009362 isolate1 smap_encryption ,temp 
+0x484d 009363 setflag true ,0 ,pdata 
+0x484e 009364 istore 1 ,contwu 
+0x484f 009365 force hci_event_encryption_change_complete ,queue 
+0x4850 009366 force 4 ,loopcnt 
+0x4851 009367 branch hci_send_event 
+:      009370 hci_send_linkkey_notification:
+0x4852 009371 set0 mark_ext_patch ,mark 
+0x4853 009372 bpatch patch1d_4 ,mem_patch1d 
+0x4854 009373 fetch 1 ,mem_device_option 
+0x4855 009374 rtnne dvc_op_hci 
+0x4856 009375 force hci_event_link_key_notification ,queue 
+0x4857 009376 call hci_get_payload_ptr 
+0x4858 009377 call hci_write_plap 
+0x4859 009378 arg mem_link_key ,contr 
+0x485a 009379 force 16 ,loopcnt 
+0x485b 009380 call uart_copy_tx_bytes 
+0x485c 009381 force 0x05 ,pdata 
+0x485d 009382 istore 1 ,contwu 
+0x485e 009383 force 0x17 ,loopcnt 
+0x485f 009384 branch hci_send_event 
+:      009386 hci_send_user_confirmation_req:
+0x4860 009387 fetch 1 ,mem_device_option 
+0x4861 009388 rtnne dvc_op_hci 
+0x4862 009389 force hci_event_user_confirmation_request ,queue 
+0x4863 009390 call hci_get_payload_ptr 
+0x4864 009391 call hci_write_plap 
+0x4865 009392 fetch 4 ,mem_sp_gkey 
+0x4866 009393 istore 4 ,contwu 
+0x4867 009394 force 0xa ,loopcnt 
+0x4868 009395 branch hci_send_event 
+:      009397 hci_send_ssp_complete:
+0x4869 009398 fetch 1 ,mem_device_option 
+0x486a 009399 rtnne dvc_op_hci 
+0x486b 009400 force hci_event_simple_pairing_complete ,queue 
+0x486c 009401 call hci_get_payload_ptr 
+0x486d 009402 setarg 0 
+0x486e 009403 istore 1 ,contwu 
+0x486f 009404 call hci_write_plap 
+0x4870 009405 force 0x7 ,loopcnt 
+0x4871 009406 branch hci_send_event 
+:      009409 hci_send_linkkey_req:
+0x4872 009410 set0 mark_ext_patch ,mark 
+0x4873 009411 bpatch patch1d_5 ,mem_patch1d 
+0x4874 009412 force hci_event_link_key_request ,queue 
+:      009413 hci_send_sec_req:
+0x4875 009414 fetch 1 ,mem_device_option 
+0x4876 009415 rtnne dvc_op_hci 
+0x4877 009416 call hci_get_payload_ptr 
+0x4878 009417 call hci_write_plap 
+0x4879 009418 force 6 ,loopcnt 
+0x487a 009419 branch hci_send_event 
+:      009421 hci_send_pincode_req:
+0x487b 009422 fetch 1 ,mem_device_option 
+0x487c 009423 rtnne dvc_op_hci 
+0x487d 009424 force hci_event_pin_code_request ,queue 
+0x487e 009425 branch hci_send_sec_req 
+:      009428 hci_send_role_change:
+0x487f 009429 fetch 1 ,mem_device_option 
+0x4880 009430 rtnne dvc_op_hci 
+0x4881 009431 force hci_event_role_change ,queue 
+0x4882 009432 call hci_get_payload_ptr 
+0x4883 009433 force 0 ,pdata 
+0x4884 009434 istore 1 ,contwu 
+0x4885 009435 call hci_write_plap 
+0x4886 009436 istoret 1 ,contwu 
+0x4887 009437 force 8 ,loopcnt 
+0x4888 009438 branch hci_send_event 
+:      009440 hci_send_role_change_err:
+0x4889 009441 fetch 1 ,mem_device_option 
+0x488a 009442 rtnne dvc_op_hci 
+0x488b 009443 force 0 ,temp 
+0x488c 009444 nbranch hci_send_role_change_err_slave ,master 
+0x488d 009445 force 1 ,temp 
+:      009446 hci_send_role_change_err_slave:
+0x488e 009447 fetch 1 ,mem_device_option 
+0x488f 009448 rtnne dvc_op_hci 
+0x4890 009449 force hci_event_role_change ,queue 
+0x4891 009450 call hci_get_payload_ptr 
+0x4892 009451 force 0x35 ,pdata 
+0x4893 009452 istore 1 ,contwu 
+0x4894 009453 call hci_write_plap 
+0x4895 009454 istoret 1 ,contwu 
+0x4896 009455 force 8 ,loopcnt 
+0x4897 009456 branch hci_send_event 
+:      009458 hci_send_name:
+0x4898 009459 set0 mark_ext_patch ,mark 
+0x4899 009460 bpatch patch1d_6 ,mem_patch1d 
+0x489a 009461 fetch 1 ,mem_device_option 
+0x489b 009462 rtnne dvc_op_hci 
+0x489c 009463 call hci_get_packet_ptr 
+0x489d 009464 setarg 0xff07 
+0x489e 009465 istore 2 ,contwu 
+0x489f 009466 deposit queue 
+0x48a0 009467 istore 1 ,contwu 
+0x48a1 009468 call hci_write_plap 
+0x48a2 009469 arg mem_tmp_buffer ,contr 
+0x48a3 009470 force 248 ,loopcnt 
+:      009471 hci_read_remote_name_loop:
+0x48a4 009472 ifetch 1 ,contr 
+0x48a5 009473 istore 1 ,contwu 
+0x48a6 009474 loop hci_read_remote_name_loop 
+0x48a7 009475 force 0xff ,loopcnt 
+0x48a8 009476 branch hci_send_event_raw 
+:      009478 hci_send_num_complete_packets:
+0x48a9 009479 set0 mark_ext_patch ,mark 
+0x48aa 009480 bpatch patch1d_7 ,mem_patch1d 
+0x48ab 009481 fetch 1 ,mem_device_option 
+0x48ac 009482 rtnne dvc_op_hci 
+0x48ad 009483 hfetch 1 ,core_uart_txitems 
+0x48ae 009484 nrtn blank 
+0x48af 009485 fetch 1 ,mem_op 
+0x48b0 009486 rtnbit0 op_pkt_comp 
+0x48b1 009487 set0 op_pkt_comp ,pdata 
+0x48b2 009488 store 1 ,mem_op 
+0x48b3 009489 call hci_get_payload_ptr 
+0x48b4 009490 force 1 ,pdata 
+0x48b5 009491 istore 1 ,contwu 
+0x48b6 009492 call hci_write_handle 
+0x48b7 009493 force 1 ,pdata 
+0x48b8 009494 istore 2 ,contwu 
+0x48b9 009495 force hci_event_num_completed_packets ,queue 
+0x48ba 009496 force 5 ,loopcnt 
+0x48bb 009497 branch hci_send_event 
+:      009501 hci_send_auth_complete:
+0x48bc 009502 set0 mark_ext_patch ,mark 
+0x48bd 009503 bpatch patch1e_0 ,mem_patch1e 
+0x48be 009504 fetch 1 ,mem_device_option 
+0x48bf 009505 rtnne dvc_op_hci 
+0x48c0 009506 call hci_write_handle3 
+0x48c1 009507 force hci_event_authentication_complete ,queue 
+0x48c2 009508 force 3 ,loopcnt 
+0x48c3 009509 branch hci_send_event 
+:      009513 hci_send_disconn_complete:
+0x48c4 009514 set0 mark_ext_patch ,mark 
+0x48c5 009515 bpatch patch1e_1 ,mem_patch1e 
+0x48c6 009516 fetch 1 ,mem_device_option 
+0x48c7 009517 rtnne dvc_op_hci 
+0x48c8 009518 call hci_get_payload_ptr 
+0x48c9 009519 force 0 ,pdata 
+0x48ca 009520 istore 1 ,contwu 
+0x48cb 009521 istoret 2 ,contwu 
+0x48cc 009522 fetch 1 ,mem_hci_disconn_reason 
+0x48cd 009523 istore 1 ,contwu 
+0x48ce 009524 force hci_event_disconnection_complete ,queue 
+0x48cf 009525 force 4 ,loopcnt 
+0x48d0 009526 branch hci_send_event 
+:      009529 hci_send_le_adv_report_event:
+0x48d1 009530 set0 mark_ext_patch ,mark 
+0x48d2 009531 bpatch patch1e_2 ,mem_patch1e 
+0x48d3 009532 fetch 1 ,mem_device_option 
+0x48d4 009533 rtnne dvc_op_hci ,pdata 
+0x48d5 009534 call hci_get_payload_ptr 
+0x48d6 009535 setarg 0x0102 
+0x48d7 009536 istore 2 ,contwu 
+0x48d8 009537 fetcht 1 ,mem_le_rxbuf 
+0x48d9 009538 and temp ,0xf ,pdata 
+0x48da 009539 istore 1 ,contwu 
+0x48db 009540 copy rega ,pdata 
+0x48dc 009541 istore 1 ,contwu 
+0x48dd 009542 fetcht 1 ,mem_le_rxbuf + 1 
+0x48de 009543 increase -6 ,temp 
+0x48df 009544 fetch 6 ,mem_le_rxbuf + 2 
+0x48e0 009545 istore 6 ,contwu 
+0x48e1 009546 istoret 1 ,contwu 
+0x48e2 009547 copy temp ,loopcnt 
+0x48e3 009548 call uart_copy_tx_bytes 
+0x48e4 009549 setarg 127 
+0x48e5 009550 istore 1 ,contwu 
+0x48e6 009551 copy temp ,loopcnt 
+0x48e7 009552 add loopcnt ,12 ,loopcnt 
+0x48e8 009553 force hci_event_le_meta_event ,queue 
+0x48e9 009554 branch hci_send_event 
+:      009556 hci_send_le_conn_complete:
+0x48ea 009557 set0 mark_ext_patch ,mark 
+0x48eb 009558 bpatch patch1e_3 ,mem_patch1e 
+0x48ec 009559 fetch 1 ,mem_device_option 
+0x48ed 009560 rtnne dvc_op_hci ,pdata 
+0x48ee 009561 call hci_get_payload_ptr 
+0x48ef 009562 setarg hci_le_subevent_conn_complete 
+0x48f0 009563 istore 1 ,contwu 
+0x48f1 009564 istoret 1 ,contwu 
+0x48f2 009565 fetch 1 ,mem_le_conn_handle 
+0x48f3 009566 istore 2 ,contwu 
+0x48f4 009567 fetch 1 ,mem_le_mode 
+0x48f5 009568 rshift pdata ,pdata 
+0x48f6 009569 setflip 0 ,pdata 
+0x48f7 009570 istore 1 ,contwu 
+0x48f8 009571 fetch 1 ,mem_le_conn_peer_addr_type 
+0x48f9 009572 istore 1 ,contwu 
+0x48fa 009573 fetch 6 ,mem_le_plap 
+0x48fb 009574 istore 6 ,contwu 
+0x48fc 009575 fetch 2 ,mem_le_conn_interval 
+0x48fd 009576 istore 2 ,contwu 
+0x48fe 009577 fetch 2 ,mem_le_slave_latency 
+0x48ff 009578 istore 2 ,contwu 
+0x4900 009579 fetch 2 ,mem_le_superto 
+0x4901 009580 istore 2 ,contwu 
+0x4902 009581 fetch 1 ,mem_le_peer_sca 
+0x4903 009582 istore 1 ,contwu 
+0x4904 009583 force hci_event_le_meta_event ,queue 
+0x4905 009584 arg 19 ,loopcnt 
+0x4906 009585 branch hci_send_event 
+:      009589 hci_send_mode_change:
+0x4907 009590 set0 mark_ext_patch ,mark 
+0x4908 009591 bpatch patch1e_4 ,mem_patch1e 
+0x4909 009592 fetch 1 ,mem_device_option 
+0x490a 009593 rtnne dvc_op_hci 
+0x490b 009595 call hci_get_payload_ptr 
+0x490c 009596 call hci_write_handle3 
+0x490d 009597 istoret 1 ,contwu 
+0x490e 009598 fetch 2 ,mem_tsniff 
+0x490f 009599 rshift pdata ,pdata 
+0x4910 009600 istore 2 ,contwu 
+0x4911 009601 force 6 ,loopcnt 
+0x4912 009602 force hci_event_mode_change ,queue 
+0x4913 009603 branch hci_send_event 
+:      009606 hci_send_sco_complete:
+0x4914 009607 set0 mark_ext_patch ,mark 
+0x4915 009608 bpatch patch1e_5 ,mem_patch1e 
+0x4916 009609 fetch 1 ,mem_device_option 
+0x4917 009610 rtnne dvc_op_hci 
+0x4918 009611 set0 mark_ext_patch ,mark 
+0x4919 009612 bpatch patch1e_6 ,mem_patch1e 
+0x491a 009613 call hci_get_payload_ptr 
+0x491b 009614 istoret 1 ,contwu 
+0x491c 009615 setarg 0xe00 
+0x491d 009616 istore 2 ,contwu 
+0x491e 009617 call hci_write_plap 
+0x491f 009618 force 0 ,pdata 
+0x4920 009619 bmark1 mark_esco ,hci_send_esco 
+0x4921 009620 force 0 ,pdata 
+0x4922 009621 istore 7 ,contwu 
+0x4923 009622 branch hci_send_sco_cont 
+:      009623 hci_send_esco:
+0x4924 009624 fetch 1 ,mem_device_option 
+0x4925 009625 rtnne dvc_op_hci 
+0x4926 009626 setarg 0x020602 
+0x4927 009627 istore 3 ,contwu 
+0x4928 009628 setarg 30 
+0x4929 009629 istore 2 ,contwu 
+0x492a 009630 setarg 30 
+0x492b 009631 istore 2 ,contwu 
+:      009632 hci_send_sco_cont:
+0x492c 009633 fetch 1 ,mem_device_option 
+0x492d 009634 rtnne dvc_op_hci 
+0x492e 009635 fetch 1 ,mem_air_mode 
+0x492f 009636 istore 1 ,contwu 
+0x4930 009637 force hci_event_sco_connection_complete ,queue 
+0x4931 009638 force 17 ,loopcnt 
+0x4932 009639 branch hci_send_event 
+:      009642 hci_command_status:
+0x4933 009643 set0 mark_ext_patch ,mark 
+0x4934 009644 bpatch patch1e_7 ,mem_patch1e 
+0x4935 009645 call hci_get_payload_ptr 
+0x4936 009646 setarg 0x100 
+0x4937 009647 istore 2 ,contwu 
+0x4938 009648 deposit alarm 
+0x4939 009649 istore 2 ,contwu 
+0x493a 009650 force 4 ,loopcnt 
+0x493b 009651 force hci_event_command_status ,queue 
+0x493c 009652 branch hci_send_event 
+:      009654 hci_command_status_err:
+0x493d 009655 set0 mark_ext_patch ,mark 
+0x493e 009656 bpatch patch1f_0 ,mem_patch1f 
+0x493f 009657 call hci_get_payload_ptr 
+0x4940 009658 deposit rega 
+0x4941 009659 istore 1 ,contwu 
+0x4942 009660 setarg 0x01 
+0x4943 009661 istore 1 ,contwu 
+0x4944 009662 deposit alarm 
+0x4945 009663 istore 2 ,contwu 
+0x4946 009664 force 4 ,loopcnt 
+0x4947 009665 force hci_event_command_status ,queue 
+0x4948 009666 branch hci_send_event 
+:      009668 hci_normal_reply:
+0x4949 009669 set0 mark_ext_patch ,mark 
+0x494a 009670 bpatch patch1f_1 ,mem_patch1f 
+0x494b 009671 force 4 ,loopcnt 
+:      009672 hci_command_complete:
+0x494c 009673 call hci_get_payload_ptr 
+0x494d 009674 force 0x1 ,pdata 
+0x494e 009675 istore 1 ,contwu 
+0x494f 009676 deposit alarm 
+0x4950 009677 istore 3 ,contwu 
+0x4951 009678 force hci_event_command_complete ,queue 
+:      009679 hci_send_event:
+0x4952 009680 set0 mark_ext_patch ,mark 
+0x4953 009681 bpatch patch1f_2 ,mem_patch1f 
+0x4954 009682 call hci_get_packet_ptr 
+0x4955 009683 deposit queue 
+0x4956 009684 istore 1 ,contwu 
+0x4957 009685 deposit loopcnt 
+0x4958 009686 istore 1 ,contwu 
+:      009687 hci_send_event_raw:
+0x4959 009688 set1 mark_h5tx_rp ,mark 
+0x495a 009689 force 5 ,queue 
+0x495b 009690 increase 2 ,loopcnt 
+:      009691 hci_send_packet:
+0x495c 009692 call hci_check_bcsp_protocol 
+0x495d 009693 branch bcsp_send_packet ,true 
+0x495e 009694 branch h4_send_packet_event 
+:      009696 hci_send_commu_ready_event:
+0x495f 009697 force hci_event_vendor_specific ,queue 
+0x4960 009698 call hci_get_payload_ptr 
+0x4961 009699 setarg hci_vendor_event_commu_ready 
+0x4962 009700 istore 1 ,contwu 
+0x4963 009701 force 1 ,loopcnt 
+0x4964 009702 branch hci_send_event 
+:      009705 hci_write_plap:
+0x4965 009706 fetch 6 ,mem_plap 
+0x4966 009707 istore 6 ,contwu 
+0x4967 009708 rtn 
+:      009710 hci_write_handle3:
+0x4968 009711 call hci_get_payload_ptr 
+0x4969 009712 force 0 ,pdata 
+0x496a 009713 istore 1 ,contwu 
+:      009714 hci_write_handle:
+0x496b 009715 fetch 1 ,mem_conn_handle 
+0x496c 009716 istore 2 ,contwu 
+0x496d 009717 rtn 
+:      009719 hci_get_cmd_complete_ptr:
+0x496e 009720 force 12 ,contwu 
+0x496f 009721 branch hci_get_tx_ptr 
+:      009723 hci_get_payload_ptr:
+0x4970 009724 force 8 ,contwu 
+0x4971 009725 branch hci_get_tx_ptr 
+:      009727 hci_get_packet_ptr:
+0x4972 009728 force 6 ,contwu 
+:      009729 hci_get_tx_ptr:
+0x4973 009730 call hci_check_bcsp_protocol 
+0x4974 009731 branch bcsp_get_tx_ptr ,true 
+0x4975 009732 branch h4_get_tx_ptr 
+:      009734 uart_copy_tx_bytes:
+0x4976 009735 deposit loopcnt 
+0x4977 009736 rtn blank 
+:      009737 uart_copy_tx_bytes_loop:
+0x4978 009738 ifetch 1 ,contr 
+0x4979 009739 istore 1 ,contwu 
+0x497a 009740 loop uart_copy_tx_bytes_loop 
+0x497b 009741 rtn 
+:      009743 uart_copy_rx_bytes:
+0x497c 009744 deposit loopcnt 
+0x497d 009745 rtn blank 
+:      009746 uart_copy_rx_bytes_loop:
+0x497e 009747 ifetch 1 ,contru 
+0x497f 009748 istore 1 ,contw 
+0x4980 009749 loop uart_copy_rx_bytes_loop 
+0x4981 009750 rtn 
+:      009752 uart_write_bytes:
+0x4982 009753 istore 1 ,contwu 
+0x4983 009754 rshift8 pdata ,pdata 
+0x4984 009755 loop uart_write_bytes 
+0x4985 009756 rtn 
+:      009759 calc_tx_crc16:
+0x4986 009760 pulse crc16 
+0x4987 009761 enable enable_crc 
+:      009762 crcloop:
+0x4988 009763 ifetch 1 ,contwu 
+0x4989 009764 inject bucket ,8 
+0x498a 009765 loop crcloop 
+0x498b 009766 enable enable_parity 
+0x498c 009767 inject bucket ,16 
+0x498d 009768 disable enable_parity 
+0x498e 009769 disable enable_crc 
+0x498f 009770 disable crc16 
+0x4990 009771 byteswap pdata ,pdata 
+0x4991 009772 rtn 
+:      009774 stop_loop:
+0x4992 009775 nop 1 
+0x4993 009776 hjam 1 ,0x8203 
+0x4994 009777 branch stop_loop 
+:      009781 process_cmd:
+0x4995 009782 set0 mark_ext_patch ,mark 
+0x4996 009783 bpatch patch1f_3 ,mem_patch1f 
+0x4997 009784 fetch 1 ,mem_hci_cmd 
+0x4998 009785 rtn blank 
+0x4999 009786 fetch 1 ,mem_lmo_opcode2 
+0x499a 009787 nrtn blank 
+0x499b 009788 call cmd_check_plap 
+0x499c 009789 nbranch process_cmd_conn_handle ,zero 
+0x499d 009790 fetch 1 ,mem_hci_cmd 
+0x499e 009791 beq hci_cmd_remote_name_req ,cmd_namereq 
+0x499f 009792 beq hci_cmd_pair ,cmd_pair 
+0x49a0 009793 beq hci_cmd_nopair ,cmd_nopair 
+0x49a1 009794 beq hci_cmd_linkkey ,cmd_has_key 
+0x49a2 009795 beq hci_cmd_nokey ,cmd_no_key 
+0x49a3 009796 beq hci_cmd_reject_conn ,cmd_disconn 
+0x49a4 009797 beq hci_cmd_role_switch ,cmd_role_switch 
+0x49a5 009798 beq hci_cmd_accept_conn ,cmd_accept_conn 
+0x49a6 009799 beq hci_cmd_accept_with_switch ,cmd_accept_with_switch 
+0x49a7 009800 beq hci_cmd_detach ,cmd_detach 
+0x49a8 009801 beq hci_cmd_in_sniff ,cmd_in_sniff 
+0x49a9 009802 beq hci_cmd_exit_sniff ,cmd_exit_sniff 
+:      009803 process_cmd_conn_handle:
+0x49aa 009804 set0 mark_ext_patch ,mark 
+0x49ab 009805 bpatch patch1f_4 ,mem_patch1f 
+0x49ac 009806 call cmd_check_handle 
+0x49ad 009807 nrtn blank 
+0x49ae 009808 fetch 1 ,mem_hci_cmd 
+0x49af 009809 beq hci_cmd_auth ,cmd_auth 
+0x49b0 009810 beq hci_cmd_startencrypt ,cmd_start_encrypt 
+0x49b1 009811 beq hci_cmd_stopencrypt ,cmd_stop_encrypt 
+0x49b2 009812 beq hci_cmd_setup_sco ,cmd_setup_sco 
+0x49b3 009813 beq hci_cmd_disconn_sco ,cmd_disconn_sco 
+0x49b4 009814 beq hci_cmd_accept_sco_conn ,cmd_accept_sco_conn 
+0x49b5 009815 beq hci_cmd_remote_feature_req ,cmd_feature_req 
+0x49b6 009816 beq hci_cmd_remote_ext_features_req ,cmd_ext_feature_req 
+0x49b7 009817 beq hci_cmd_remote_version_req ,cmd_version_req 
+0x49b8 009818 beq hci_cmd_role_discovery ,cmd_role_discovery 
+0x49b9 009819 beq hci_cmd_io_cap ,cmd_io_cap 
+0x49ba 009820 rtnne hci_cmd_disconn 
+0x49bb 009821 call lmp_disconnect 
+:      009822 cmd_exit:
+0x49bc 009823 jam 0 ,mem_hci_cmd 
+0x49bd 009824 rtn 
+:      009826 cmd_check_plap:
+0x49be 009827 fetch 6 ,mem_hci_plap 
+0x49bf 009828 fetcht 6 ,mem_plap 
+0x49c0 009829 isub temp ,null 
+0x49c1 009830 rtn 
+:      009833 cmd_check_handle:
+0x49c2 009834 fetch 1 ,mem_hci_conn_handle 
+0x49c3 009835 fetcht 1 ,mem_conn_handle 
+0x49c4 009836 isub temp ,pdata 
+0x49c5 009837 rtn 
+:      009839 cmd_accept_conn:
+0x49c6 009840 jam lmp_accepted ,mem_lmo_opcode2 
+0x49c7 009841 jam lmp_host_connection_req ,mem_lmi_opcode2 
+0x49c8 009842 call tid_set_reply 
+0x49c9 009843 branch cmd_exit 
+:      009845 cmd_accept_with_switch:
+0x49ca 009846 branch cmd_accept_sco_conn ,master 
+0x49cb 009847 set1 mark_accept_switch ,mark 
+:      009848 cmd_role_switch:
+0x49cc 009849 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x49cd 009850 set1 mark_switch_initiated ,mark 
+0x49ce 009851 nbranch cmd_exit ,master 
+0x49cf 009852 jam lmp_switch_req ,mem_lmo_opcode2 
+0x49d0 009853 fetch 1 ,mem_connection_options 
+0x49d1 009854 set0 connection_switch ,pdata 
+0x49d2 009855 store 1 ,mem_connection_options 
+0x49d3 009856 branch cmd_exit 
+:      009859 cmd_namereq:
+0x49d4 009860 jam lmp_name_req ,mem_lmo_opcode2 
+0x49d5 009861 jam 0 ,mem_name_offset 
+0x49d6 009862 branch cmd_exit 
+:      009865 cmd_ssp:
+0x49d7 009866 jam sp_flag_commit ,mem_master_sp_flag 
+0x49d8 009867 jam sp_master_stat_start_skip ,mem_master_sp_state 
+0x49d9 009868 branch cmd_exit 
+:      009870 cmd_pair:
+0x49da 009871 fetch 1 ,mem_op 
+0x49db 009872 bbit1 op_inrand_req ,cmd_pair_passive 
+0x49dc 009873 call tid_initiate 
+0x49dd 009874 jam lmp_in_rand ,mem_lmo_opcode2 
+0x49de 009875 branch cmd_exit 
+:      009876 cmd_pair_passive:
+0x49df 009877 set0 op_inrand_req ,pdata 
+0x49e0 009878 store 1 ,mem_op 
+0x49e1 009879 call lmp_accept_inrand 
+0x49e2 009880 setarg 0 
+0x49e3 009881 setflag master ,smap_lmptid ,pdata 
+0x49e4 009882 store 1 ,mem_lmo_tid2 
+0x49e5 009883 branch cmd_exit 
+:      009885 cmd_nopair:
+0x49e6 009886 jam pairing_not_allowed ,mem_disconn_reason_send 
+0x49e7 009887 jam lmp_detach ,mem_lmo_opcode2 
+0x49e8 009888 fetch 1 ,mem_state 
+0x49e9 009889 bbit1 state_inconn ,cmd_exit 
+0x49ea 009890 force hci_error_pairing_not_allowed ,temp 
+0x49eb 009891 call hci_send_connection_error 
+0x49ec 009892 branch cmd_exit 
+:      009895 cmd_has_key:
+0x49ed 009896 call linkkey_set 
+0x49ee 009897 fetch 1 ,mem_op 
+0x49ef 009898 bbit1 op_auth_req ,cmd_send_aurand 
+0x49f0 009899 bbit1 op_send_sres ,cmd_send_sres 
+0x49f1 009900 bbit1 op_inrand_req ,cmd_pair_passive 
+0x49f2 009901 branch cmd_exit 
+:      009902 cmd_send_sres:
+0x49f3 009903 set0 op_send_sres ,pdata 
+0x49f4 009904 store 1 ,mem_op 
+0x49f5 009905 jam lmp_sres ,mem_lmo_opcode2 
+0x49f6 009906 branch cmd_exit 
+:      009908 cmd_no_key:
+0x49f7 009909 fetch 1 ,mem_op 
+0x49f8 009910 bbit1 op_send_sres ,cmd_no_key_reject 
+0x49f9 009911 call hci_send_pincode_req 
+0x49fa 009912 branch cmd_exit 
+:      009913 cmd_no_key_reject:
+0x49fb 009914 set0 op_send_sres ,pdata 
+0x49fc 009915 store 1 ,mem_op 
+0x49fd 009916 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x49fe 009917 jam lmp_au_rand ,mem_lmi_opcode2 
+0x49ff 009918 jam key_missing ,mem_lmo_reason2 
+0x4a00 009919 branch cmd_exit 
+:      009922 cmd_auth:
+0x4a01 009923 fetch 1 ,mem_op 
+0x4a02 009924 set1 op_auth_req ,pdata 
+0x4a03 009925 store 1 ,mem_op 
+0x4a04 009926 fetch 1 ,mem_state 
+0x4a05 009927 bbit1 state_linkkey ,cmd_auth_sendaurand 
+0x4a06 009928 call hci_send_linkkey_req 
+0x4a07 009929 branch cmd_exit 
+:      009931 cmd_send_aurand:
+:      009932 cmd_auth_sendaurand:
+0x4a08 009933 call tid_initiate 
+0x4a09 009934 jam lmp_au_rand ,mem_lmo_opcode2 
+0x4a0a 009935 branch cmd_exit 
+:      009937 cmd_start_encrypt:
+0x4a0b 009938 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x4a0c 009939 branch cmd_exit 
+:      009941 cmd_stop_encrypt:
+0x4a0d 009942 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x4a0e 009943 branch cmd_exit 
+:      009945 cmd_feature_req:
+0x4a0f 009946 set0 mark_ext_patch ,mark 
+0x4a10 009947 bpatch patch1f_5 ,mem_patch1f 
+0x4a11 009948 jam lmp_features_req ,mem_lmo_opcode2 
+0x4a12 009949 jam hci_cmd_wait_remote_feature ,mem_hci_cmd 
+0x4a13 009950 rtn 
+:      009952 cmd_ext_feature_req:
+0x4a14 009953 jam lmp_ext_features_req ,mem_lmo_opcode2 
+0x4a15 009954 jam hci_cmd_wait_remote_ext_feature ,mem_hci_cmd 
+0x4a16 009955 rtn 
+:      009957 cmd_version_req:
+0x4a17 009958 jam lmp_version_req ,mem_lmo_opcode2 
+0x4a18 009959 branch cmd_exit 
+:      009961 cmd_in_sniff:
+0x4a19 009962 jam lmp_sniff_req ,mem_lmo_opcode2 
+0x4a1a 009963 arg mem_sniff_payload ,contw 
+0x4a1b 009964 setarg 0 
+0x4a1c 009965 isolate1 27 ,clke_bt 
+0x4a1d 009966 setflag true ,1 ,pdata 
+0x4a1e 009967 istore 1 ,contw 
+0x4a1f 009968 setarg 0 
+0x4a20 009969 istore 2 ,contw 
+0x4a21 009970 fetch 2 ,mem_sniff_param_interval 
+0x4a22 009971 istore 2 ,contw 
+0x4a23 009972 fetch 1 ,mem_sniff_param_attempt 
+0x4a24 009973 istore 2 ,contw 
+0x4a25 009974 fetch 1 ,mem_sniff_param_timeout 
+0x4a26 009975 istore 2 ,contw 
+0x4a27 009976 branch cmd_exit 
+:      009978 cmd_exit_sniff:
+0x4a28 009979 jam lmp_unsniff_req ,mem_lmo_opcode2 
+0x4a29 009980 branch cmd_exit 
+:      009982 cmd_setup_sco:
+0x4a2a 009983 call new_conn_handle 
+0x4a2b 009984 store 1 ,mem_sco_handle 
+0x4a2c 009985 fetch 1 ,mem_conn_handle 
+0x4a2d 009986 store 1 ,mem_sco_asso_handle 
+0x4a2e 009987 jam lmp_sco_link_req ,mem_lmo_opcode2 
+0x4a2f 009988 set1 mark_esco ,mark 
+0x4a30 009989 jam lmp_ext_esco_link_req ,mem_lmo_opcode2 
+0x4a31 009990 branch cmd_exit 
+:      009992 cmd_disconn:
+0x4a32 009993 call lmp_disconnect 
+0x4a33 009994 branch cmd_exit 
+:      009996 cmd_disconn_sco:
+0x4a34 009997 jam lmp_remove_sco_link_req ,mem_lmo_opcode2 
+0x4a35 009998 bmark0 mark_esco ,cmd_exit 
+0x4a36 009999 jam lmp_ext_remove_esco_req ,mem_lmo_opcode2 
+0x4a37 010000 branch cmd_exit 
+:      010002 cmd_accept_sco_conn:
+0x4a38 010003 branch cmd_accept_sco_conn_master ,master 
+0x4a39 010004 jam lmp_accepted ,mem_lmo_opcode2 
+0x4a3a 010005 jam lmp_sco_link_req ,mem_lmi_opcode2 
+0x4a3b 010006 bmark0 mark_esco ,cmd_exit 
+0x4a3c 010007 fetch 1 ,mem_esco_type 
+0x4a3d 010008 bne type_hv3 ,parse_lmpext_esco_link_req_change_param 
+0x4a3e 010009 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x4a3f 010010 jam lmp_ext_esco_link_req ,mem_lmi_opcode2 
+0x4a40 010011 branch cmd_exit 
+:      010012 cmd_accept_sco_conn_master:
+0x4a41 010013 call new_conn_handle 
+0x4a42 010014 store 1 ,mem_sco_handle 
+0x4a43 010015 fetch 1 ,mem_conn_handle 
+0x4a44 010016 store 1 ,mem_sco_asso_handle 
+0x4a45 010017 jam lmp_sco_link_req ,mem_lmo_opcode2 
+0x4a46 010018 bmark0 mark_esco ,cmd_exit 
+0x4a47 010019 branch parse_lmpext_esco_link_req_change_param 
+:      010022 cmd_role_discovery:
+0x4a48 010023 call hci_get_cmd_complete_ptr 
+0x4a49 010024 call hci_write_handle 
+0x4a4a 010025 force 0 ,pdata 
+0x4a4b 010026 nsetflag master ,0 ,pdata 
+0x4a4c 010027 istore 1 ,contwu 
+0x4a4d 010028 force 7 ,loopcnt 
+0x4a4e 010029 arg 0x809 ,alarm 
+0x4a4f 010030 call hci_command_complete 
+0x4a50 010031 branch cmd_exit 
+:      010033 cmd_io_cap:
+0x4a51 010034 jam lmp_io_cap_res ,mem_lmo_opcode2 
+0x4a52 010035 branch cmd_exit 
+:      010037 cmd_detach:
+0x4a53 010038 jam lmp_detach ,mem_lmo_opcode2 
+0x4a54 010039 jam other_end_terminated ,mem_disconn_reason_send 
+0x4a55 010040 branch cmd_exit 
+:      010045 process_hci_patch:
+0x4a56 010046 jam 0 ,mem_check_sum 
+0x4a57 010049 ifetch 1 ,contru 
+0x4a58 010050 store 1 ,mem_ucode_id_remote 
+0x4a59 010051 call hci_ucode_checksum_add 
+0x4a5a 010053 call push_stack 
+0x4a5b 010054 fetch 1 ,mem_ucode_id_remote 
+0x4a5c 010055 copy pdata ,temp 
+0x4a5d 010056 fetch 1 ,mem_ucode_id_local 
+0x4a5e 010057 increase 1 ,pdata 
+0x4a5f 010058 icompare 0xff ,temp 
+0x4a60 010059 nbranch hci_nak_ucode_with_stack ,true 
+0x4a61 010060 store 1 ,mem_ucode_id_local 
+0x4a62 010061 call pop_stack 
+0x4a63 010063 ifetch 1 ,contru 
+0x4a64 010064 beq 0x01 ,hci_enable_ucode_load 
+0x4a65 010065 beq 0x02 ,process_hci_ucode 
+0x4a66 010066 beq 0x03 ,hci_disable_ucode_load 
+0x4a67 010067 beq 0x05 ,process_hci_n_sched_data 
+0x4a68 010068 beq 0x06 ,hci_write_register 
+0x4a69 010069 beq 0x07 ,hci_read_register 
+0x4a6a 010070 beq 0x08 ,hci_enable_ucode 
+0x4a6b 010071 beq 0x09 ,hci_soft_branch 
+0x4a6c 010072 rtn 
+:      010073 hci_ucode_checksum_add:
+0x4a6d 010074 copy pdata ,temp 
+0x4a6e 010075 call push_stack 
+0x4a6f 010076 fetch 1 ,mem_check_sum 
+0x4a70 010077 iadd temp ,pdata 
+0x4a71 010078 store 1 ,mem_check_sum 
+0x4a72 010079 branch pop_stack 
+:      010082 hci_ack_ucode:
+0x4a73 010083 force 1 ,pdata 
+0x4a74 010084 call uart_send_byte 
+0x4a75 010085 fetch 1 ,mem_ucode_id_local 
+0x4a76 010086 branch uart_send_byte 
+:      010088 hci_nak_ucode_with_stack:
+0x4a77 010089 call pop_stack 
+0x4a78 010090 branch hci_nak_ucode_ucode_id 
+:      010091 hci_nak_ucode:
+0x4a79 010092 fetch 1 ,mem_ucode_id_local 
+0x4a7a 010093 increase -1 ,pdata 
+0x4a7b 010094 store 1 ,mem_ucode_id_local 
+:      010095 hci_nak_ucode_ucode_id:
+0x4a7c 010096 force 0 ,pdata 
+0x4a7d 010097 call uart_send_byte 
+0x4a7e 010098 fetch 1 ,mem_ucode_id_local 
+0x4a7f 010099 branch uart_send_byte 
+:      010101 hci_write_register:
+0x4a80 010102 call hci_ucode_checksum_add 
+0x4a81 010103 ifetch 1 ,contru 
+0x4a82 010104 store 1 ,mem_ucode_temp 
+0x4a83 010105 call hci_ucode_checksum_add 
+0x4a84 010106 ifetch 1 ,contru 
+0x4a85 010107 lshift8 pdata ,contw 
+0x4a86 010108 call hci_ucode_checksum_add 
+0x4a87 010109 fetch 1 ,mem_ucode_temp 
+0x4a88 010110 iadd contw ,contw 
+0x4a89 010111 ifetch 1 ,contru 
+0x4a8a 010112 istore 1 ,contw 
+0x4a8b 010113 call hci_ucode_checksum_add 
+0x4a8c 010114 ifetch 1 ,contru 
+0x4a8d 010115 call hci_ucode_checksum_add 
+0x4a8e 010116 fetch 1 ,mem_check_sum 
+0x4a8f 010117 bne 0xff ,hci_nak_ucode 
+0x4a90 010118 branch hci_ack_ucode 
+:      010120 hci_read_register:
+0x4a91 010121 call hci_ucode_checksum_add 
+0x4a92 010122 ifetch 1 ,contru 
+0x4a93 010123 store 1 ,mem_ucode_temp 
+0x4a94 010124 call hci_ucode_checksum_add 
+0x4a95 010125 ifetch 1 ,contru 
+0x4a96 010126 store 1 ,mem_ucode_temp1 
+0x4a97 010127 call hci_ucode_checksum_add 
+0x4a98 010128 ifetch 1 ,contru 
+0x4a99 010129 call hci_ucode_checksum_add 
+0x4a9a 010130 fetch 1 ,mem_check_sum 
+0x4a9b 010131 bne 0xff ,hci_nak_ucode 
+0x4a9c 010133 fetch 1 ,mem_ucode_temp1 
+0x4a9d 010134 lshift8 pdata ,temp 
+0x4a9e 010135 fetch 1 ,mem_ucode_temp 
+0x4a9f 010136 iadd temp ,contru 
+0x4aa0 010137 ifetch 1 ,contru 
+0x4aa1 010138 store 1 ,mem_ucode_temp 
+:      010139 hci_read_register_ack:
+0x4aa2 010140 force 1 ,pdata 
+0x4aa3 010141 call uart_send_byte 
+0x4aa4 010142 fetch 1 ,mem_ucode_temp 
+0x4aa5 010143 call uart_send_byte 
+0x4aa6 010144 jam 0xff ,mem_ucode_id_local 
+0x4aa7 010145 rtn 
+:      010147 hci_enable_ucode:
+0x4aa8 010148 call hci_ucode_checksum_add 
+0x4aa9 010149 ifetch 1 ,contru 
+0x4aaa 010150 call hci_ucode_checksum_add 
+0x4aab 010151 fetch 1 ,mem_check_sum 
+0x4aac 010152 bne 0xff ,hci_nak_ucode 
+0x4aad 010153 branch hci_ack_ucode 
+:      010155 process_hci_ucode:
+0x4aae 010156 call hci_ucode_checksum_add 
+0x4aaf 010157 ifetch 1 ,contru 
+0x4ab0 010158 hstore 1 ,core_ucode_low 
+0x4ab1 010159 call hci_ucode_checksum_add 
+0x4ab2 010160 ifetch 1 ,contru 
+0x4ab3 010161 set1 7 ,pdata 
+0x4ab4 010162 hstore 1 ,core_ucode_ctrl 
+0x4ab5 010163 set0 7 ,pdata 
+0x4ab6 010164 call hci_ucode_checksum_add 
+0x4ab7 010165 ifetch 1 ,contru 
+0x4ab8 010166 copy pdata ,loopcnt 
+0x4ab9 010167 call hci_ucode_checksum_add 
+:      010168 write_ucode_loop:
+0x4aba 010169 ifetch 1 ,contru 
+0x4abb 010170 hstore 1 ,core_ucode_data 
+0x4abc 010171 call hci_ucode_checksum_add 
+0x4abd 010172 loop write_ucode_loop 
+0x4abe 010173 ifetch 1 ,contru 
+0x4abf 010174 call hci_ucode_checksum_add 
+0x4ac0 010175 fetch 1 ,mem_check_sum 
+0x4ac1 010176 bne 0xff ,hci_nak_ucode 
+0x4ac2 010177 branch hci_ack_ucode 
+:      010179 process_hci_n_sched_data:
+0x4ac3 010180 call hci_ucode_checksum_add 
+0x4ac4 010181 ifetch 1 ,contru 
+0x4ac5 010182 store 1 ,mem_ucode_temp 
+0x4ac6 010183 call hci_ucode_checksum_add 
+0x4ac7 010184 ifetch 1 ,contru 
+0x4ac8 010185 lshift8 pdata ,contw 
+0x4ac9 010186 call hci_ucode_checksum_add 
+0x4aca 010187 fetch 1 ,mem_ucode_temp 
+0x4acb 010188 iadd contw ,contw 
+0x4acc 010189 ifetch 1 ,contru 
+0x4acd 010190 iforce loopcnt 
+0x4ace 010191 call hci_ucode_checksum_add 
+:      010192 process_hci_n_sched_loop:
+0x4acf 010193 ifetch 1 ,contru 
+0x4ad0 010194 istore 1 ,contw 
+0x4ad1 010195 call hci_ucode_checksum_add 
+0x4ad2 010196 loop process_hci_n_sched_loop 
+0x4ad3 010197 ifetch 1 ,contru 
+0x4ad4 010198 call hci_ucode_checksum_add 
+0x4ad5 010199 fetch 1 ,mem_check_sum 
+0x4ad6 010200 bne 0xff ,hci_nak_ucode 
+0x4ad7 010201 branch hci_ack_ucode 
+:      010205 hci_enable_ucode_load:
+0x4ad8 010206 call hci_ucode_checksum_add 
+0x4ad9 010207 ifetch 1 ,contru 
+0x4ada 010208 call hci_ucode_checksum_add 
+0x4adb 010209 fetch 1 ,mem_check_sum 
+0x4adc 010210 bne 0xff ,hci_nak_ucode 
+0x4add 010211 hjam 0x80 ,core_ucode_ctrl 
+0x4ade 010212 branch hci_ack_ucode 
+:      010214 hci_disable_ucode_load:
+0x4adf 010215 call hci_ucode_checksum_add 
+0x4ae0 010216 ifetch 1 ,contru 
+0x4ae1 010217 call hci_ucode_checksum_add 
+0x4ae2 010218 fetch 1 ,mem_check_sum 
+0x4ae3 010219 bne 0xff ,hci_nak_ucode 
+0x4ae4 010220 hjam 0 ,core_ucode_ctrl 
+0x4ae5 010221 branch hci_ack_ucode 
+:      010223 hci_soft_branch:
+0x4ae6 010224 call hci_ucode_checksum_add 
+0x4ae7 010225 ifetch 1 ,contru 
+0x4ae8 010226 call hci_ucode_checksum_add 
+0x4ae9 010227 fetch 1 ,mem_check_sum 
+0x4aea 010228 bne 0xff ,hci_nak_ucode 
+0x4aeb 010229 call hci_ack_ucode 
+0x4aec 010230 branch soft_reset 
+:      010233 hci_idle_dispatch:
+0x4aed 010234 call gpio_check_uart_state 
+0x4aee 010235 rtn true 
+0x4aef 010236 arg uart_wakeup_rx ,temp 
+0x4af0 010237 call gpio_get_bit 
+0x4af1 010238 nbranch uart_wake_up ,true 
+0x4af2 010239 jam hci_rx_wake ,mem_hci_lt_rx_state 
+0x4af3 010240 rtn 
+:      010241 uart_wake_up:
+0x4af4 010242 fetch 1 ,mem_hci_lt_rx_state 
+0x4af5 010243 rtnne hci_rx_wake 
+0x4af6 010244 call hci_exit_lpm 
+0x4af7 010245 branch hci_send_commu_ready_event 
+:      010259 hid_rx_process:
+0x4af8 010260 set1 mark_ext_patch ,mark 
+0x4af9 010261 bpatch patch33_4 ,mem_patch33 
+0x4afa 010262 fetch 2 ,mem_l2cap_payload_ptr 
+0x4afb 010263 copy pdata ,contr 
+0x4afc 010264 ifetch 1 ,contr 
+0x4afd 010265 and pdata ,0x0f ,temp 
+0x4afe 010266 rshift4 pdata ,pdata 
+0x4aff 010267 beq hid_type_set_idle ,hid_rx_process_handshake 
+0x4b00 010268 beq hid_type_set_protocol ,hid_rx_process_handshake 
+0x4b01 010269 beq hid_type_data ,hid_rx_process_data 
+0x4b02 010270 beq hid_type_set_report ,hid_rx_process_set_report 
+0x4b03 010271 beq hid_type_control ,hid_rx_process_hid_control 
+0x4b04 010272 rtn 
+:      010274 hid_rx_process_hid_control:
+0x4b05 010275 copy temp ,pdata 
+0x4b06 010276 beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+0x4b07 010277 beq hid_control_p_suspend ,hid_rx_process_suspend 
+0x4b08 010278 rtn 
+:      010280 hid_rx_process_virtual_cable_unplug:
+0x4b09 010281 jam bt_evt_virtual_cable_unplug ,mem_fifo_temp 
+0x4b0a 010282 call ui_ipc_send_event 
+0x4b0b 010283 fetch 1 ,mem_device_option 
+0x4b0c 010284 rtnne dvc_op_mouse ,pdata 
+0x4b0d 010285 copy temp ,pdata 
+0x4b0e 010286 beq hid_control_p_virtualcableunplug ,eeprom_erase_reconn_info 
+0x4b0f 010287 rtn 
+:      010288 hid_rx_process_suspend:
+0x4b10 010289 rtn 
+:      010291 hid_rx_process_set_report:
+0x4b11 010292 arg 0x01 ,rega 
+0x4b12 010293 call hid_malloc_tx_buff 
+0x4b13 010294 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4b14 010295 istore 2 ,contw 
+0x4b15 010296 setarg 0x00 
+0x4b16 010297 istore 1 ,contw 
+0x4b17 010298 rtn 
+:      010300 hid_rx_process_handshake:
+0x4b18 010301 arg 1 ,rega 
+0x4b19 010302 call hid_malloc_tx_buff 
+0x4b1a 010303 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4b1b 010304 istore 2 ,contw 
+0x4b1c 010305 setarg 0 
+0x4b1d 010306 istore 1 ,contw 
+0x4b1e 010307 jam 1 ,mem_ui_data_txbuff_length 
+0x4b1f 010308 fetch 1 ,mem_hid_control_state 
+0x4b20 010309 set1 l2cap_channel_hid_handshake_done 
+0x4b21 010310 store 1 ,mem_hid_control_state 
+:      010311 hid_handshake_event:
+0x4b22 010312 jam bt_evt_hid_handshake ,mem_fifo_temp 
+0x4b23 010313 branch ui_ipc_send_event 
+:      010315 hid_rx_process_data:
+0x4b24 010316 ifetch 1 ,contr 
+0x4b25 010317 beq hid_report_id_kb ,hid_rx_process_data_hid_kb 
+0x4b26 010318 rtn 
+:      010320 hid_rx_process_data_hid_kb:
+0x4b27 010321 copy contr ,rega 
+0x4b28 010322 fetch 1 ,mem_device_option 
+0x4b29 010323 rtnne dvc_op_kb ,pdata 
+0x4b2a 010324 copy rega ,contr 
+0x4b2b 010325 branch kb_process_kb_report 
+:      010327 hid_malloc_tx_buff:
+0x4b2c 010328 call l2cap_malloc 
+0x4b2d 010329 copy rega ,temp 
+0x4b2e 010330 storet 1 ,mem_ui_data_txbuff_length 
+0x4b2f 010331 copy pdata ,contw 
+0x4b30 010332 copy rega ,pdata 
+0x4b31 010333 istore 2 ,contw 
+0x4b32 010334 rtn 
+:      010337 le_ir_init:
+0x4b33 010338 setarg le_ir 
+0x4b34 010339 store 2 ,mem_cb_le_process 
+0x4b35 010340 setarg le_ir_wcb 
+0x4b36 010341 store 2 ,mem_cb_att_write 
+0x4b37 010342 call eeprom_load_reconn_info 
+0x4b38 010343 call le_init_att 
+0x4b39 010344 hjam 158 ,core_pwm_ncnt0 
+0x4b3a 010345 hjam 8 ,core_gpio_sel1 
+0x4b3b 010346 hjam 5 ,core_gpio_out1 
+0x4b3c 010347 setarg -1 
+0x4b3d 010348 set0 1 ,pdata 
+0x4b3e 010349 set0 21 ,pdata 
+0x4b3f 010350 hstore 4 ,core_gpio_oe0 
+0x4b40 010351 hjam 2 ,core_gpio_pu0 
+0x4b41 010352 rtn wake 
+0x4b42 010353 jam 1 ,mem_le_adv_enable 
+0x4b43 010354 rtn 
+:      010357 le_ir_wcb:
+0x4b44 010358 ifetch 1 ,rega 
+0x4b45 010359 store 1 ,mem_ir_cmd 
+0x4b46 010360 beq ircmd_write_pulse ,le_ir_write_pulse 
+0x4b47 010361 beq ircmd_write_seq ,le_ir_write_seq 
+0x4b48 010362 beq ircmd_write_next ,le_ir_write_next 
+0x4b49 010363 beq ircmd_screen_on ,le_ir_screen_on 
+0x4b4a 010364 beq ircmd_screen_off ,le_ir_screen_off 
+0x4b4b 010365 rtnne ircmd_play 
+0x4b4c 010366 ifetch 1 ,contr 
+0x4b4d 010367 store 1 ,mem_ir_play_count 
+0x4b4e 010368 rtn 
+:      010370 le_ir_write_pulse:
+0x4b4f 010371 arg mem_ir_pulse_zero ,contw 
+0x4b50 010372 branch le_ir_write 
+:      010374 le_ir_write_seq:
+0x4b51 010375 arg mem_ir_sequence_len ,contw 
+0x4b52 010376 branch le_ir_write 
+:      010378 le_ir_write_next:
+0x4b53 010379 fetch 2 ,mem_ir_ptr 
+0x4b54 010380 iforce contw 
+:      010382 le_ir_write:
+0x4b55 010383 arg 19 ,loopcnt 
+0x4b56 010384 call memcpy 
+0x4b57 010385 deposit contw 
+0x4b58 010386 store 2 ,mem_ir_ptr 
+0x4b59 010387 jam 0 ,mem_ir_cmd 
+0x4b5a 010388 rtn 
+:      010392 le_ir:
+0x4b5b 010393 fetch 1 ,mem_ir_cmd 
+0x4b5c 010394 beq ircmd_record ,le_ir_start_record 
+0x4b5d 010395 beq ircmd_play ,le_ir_play 
+0x4b5e 010396 beq ircmd_report_pulse ,le_ir_report 
+0x4b5f 010397 beq ircmd_report_seq ,le_ir_report 
+0x4b60 010398 beq ircmd_report_raw ,le_ir_report 
+0x4b61 010399 beq ircmd_test_play ,le_ir_play 
+0x4b62 010400 beq ircmd_test_rec ,le_ir_rec 
+0x4b63 010401 rtn 
+:      010403 le_ir_screen_on:
+0x4b64 010404 jam 0 ,mem_lpm_mult 
+0x4b65 010405 jam 0 ,mem_ir_cmd 
+0x4b66 010406 rtn 
+:      010407 le_ir_screen_off:
+0x4b67 010408 jam 30 ,mem_lpm_mult 
+0x4b68 010409 jam 0 ,mem_ir_cmd 
+0x4b69 010410 rtn 
+:      010414 le_ir_rec:
+0x4b6a 010415 jam 0 ,mem_ir_cmd 
+0x4b6b 010416 arg 0xfffff ,stop_watch 
+0x4b6c 010417 call ir_record 
+0x4b6d 010418 rtn 
+:      010420 le_ir_next_anchor:
+0x4b6e 010421 fetcht 2 ,mem_le_tsniff 
+0x4b6f 010422 iadd temp ,pdata 
+0x4b70 010423 store 4 ,mem_le_anchor 
+:      010424 le_ir_start_record:
+0x4b71 010425 fetch 4 ,mem_le_anchor 
+0x4b72 010426 isub clke_bt ,pdata 
+0x4b73 010427 nbranch le_ir_next_anchor ,positive 
+0x4b74 010428 rshift pdata ,stop_watch 
+0x4b75 010429 call ir_record 
+0x4b76 010430 rtn blank 
+0x4b77 010431 jam ircmd_report_raw ,mem_ir_cmd 
+0x4b78 010432 arg mem_ir_record ,temp 
+0x4b79 010433 storet 2 ,mem_ir_ptr 
+:      010435 le_ir_report:
+0x4b7a 010436 call le_xtype_fifo_is_full 
+0x4b7b 010437 nrtn blank 
+0x4b7c 010438 jam notify_handle ,mem_le_notify_handle 
+0x4b7d 010439 jam attop_handle_value_notification ,mem_fifo_temp 
+0x4b7e 010440 call le_xtype_fifo_in 
+0x4b7f 010441 fetch 2 ,mem_le_notify_attr_start 
+0x4b80 010442 iforce contw 
+0x4b81 010443 fetch 2 ,mem_ir_ptr 
+0x4b82 010444 iforce contr 
+0x4b83 010445 arg 20 ,loopcnt 
+0x4b84 010446 call memcpy 
+0x4b85 010447 deposit contr 
+0x4b86 010448 store 2 ,mem_ir_ptr 
+0x4b87 010449 fetch 2 ,mem_ir_report_len 
+0x4b88 010450 increase -20 ,pdata 
+0x4b89 010451 store 2 ,mem_ir_report_len 
+0x4b8a 010452 rtn positive 
+0x4b8b 010453 jam 0 ,mem_ir_cmd 
+0x4b8c 010454 rtn 
+:      010457 le_ir_play:
+0x4b8d 010458 fetch 1 ,mem_ir_play_count 
+0x4b8e 010459 call ir_play 
+0x4b8f 010460 jam 0 ,mem_ir_cmd 
+0x4b90 010461 rtn 
+:      010464 ir_record:
+0x4b91 010465 call ir_receive 
+0x4b92 010466 setarg mem_ir_record 
+0x4b93 010467 isub contw ,pdata 
+0x4b94 010468 sub pdata ,0 ,pdata 
+0x4b95 010469 store 2 ,mem_ir_report_len 
+0x4b96 010470 rtn 
+:      010474 ir_receive:
+0x4b97 010475 disable swfine 
+0x4b98 010476 arg mem_ir_record ,contw 
+:      010477 ir_receive_waitsync:
+0x4b99 010478 rtn timeout 
+0x4b9a 010479 hfetch 1 ,core_gpio_in + 2 
+0x4b9b 010480 bbit0 5 ,ir_receive_waitsync 
+0x4b9c 010481 copy clkn ,temp 
+0x4b9d 010482 arg 0x80 ,loopcnt 
+0x4b9e 010483 call memset0 
+0x4b9f 010484 arg mem_ir_record ,contw 
+0x4ba0 010485 arg 0x0 ,regc 
+:      010486 ir_receive_loop:
+0x4ba1 010487 arg 180 ,stop_watch 
+:      010488 ir_receive_waitedge:
+0x4ba2 010489 rtn timeout 
+0x4ba3 010490 hfetch 1 ,core_gpio_in + 2 
+0x4ba4 010491 ixor regc ,pdata 
+0x4ba5 010492 bbit1 5 ,ir_receive_waitedge 
+0x4ba6 010493 copy clkn ,pdata 
+0x4ba7 010494 iforce alarm 
+0x4ba8 010495 call clk_diff_rt 
+0x4ba9 010496 sub pdata ,0xff ,null 
+0x4baa 010497 branch ir_receive_waitedge ,positive 
+0x4bab 010498 isolate0 5 ,regc 
+0x4bac 010499 setflag true ,23 ,pdata 
+0x4bad 010500 istore 3 ,contw 
+0x4bae 010501 rshift8 contw ,pdata 
+0x4baf 010502 rtneq mem_ir_record_max 
+0x4bb0 010503 copy alarm ,temp 
+0x4bb1 010504 xor_into 0x20 ,regc 
+0x4bb2 010505 branch ir_receive_loop 
+:      010509 ir_get_next_seq:
+0x4bb3 010510 branch ir_get_next_seq_saved ,user 
+0x4bb4 010511 branch ir_get_next_encoded ,user2 
+:      010512 ir_get_next_seq_fetch:
+0x4bb5 010513 arg mem_ir_sequence ,temp 
+0x4bb6 010514 fetch 1 ,mem_ir_sequence_len 
+0x4bb7 010515 iadd temp ,pdata 
+0x4bb8 010516 isub rega ,null 
+0x4bb9 010517 branch ir_get_next_seq_exit ,zero 
+0x4bba 010518 ifetch 1 ,rega 
+0x4bbb 010519 copy contr ,rega 
+0x4bbc 010520 bbit0 7 ,ir_get_next_cont 
+0x4bbd 010521 enable user2 
+0x4bbe 010522 and pdata ,0x7f ,regb 
+0x4bbf 010523 lshift3 rega ,rega 
+0x4bc0 010524 branch ir_get_next_encoded 
+:      010525 ir_get_next_cont:
+0x4bc1 010526 rshift4 pdata ,debug 
+0x4bc2 010527 and_into 0xf ,pdata 
+0x4bc3 010528 isub debug ,null 
+0x4bc4 010529 rtn zero 
+0x4bc5 010530 enable user 
+0x4bc6 010531 rtn 
+:      010532 ir_get_next_seq_saved:
+0x4bc7 010533 deposit debug 
+0x4bc8 010534 disable user 
+0x4bc9 010535 rtn 
+:      010536 ir_get_next_encoded:
+0x4bca 010537 deposit regb 
+0x4bcb 010538 branch ir_get_next_encoded_end ,blank 
+0x4bcc 010539 and rega ,0x7 ,queue 
+0x4bcd 010540 rshift3 rega ,contr 
+0x4bce 010541 ifetch 1 ,contr 
+0x4bcf 010542 increase 1 ,rega 
+0x4bd0 010543 increase -1 ,regb 
+0x4bd1 010544 qisolate0 pdata 
+0x4bd2 010545 fetch 1 ,mem_ir_pulse_zero 
+0x4bd3 010546 branch ir_get_next_cont ,true 
+0x4bd4 010547 fetch 1 ,mem_ir_pulse_one 
+0x4bd5 010548 branch ir_get_next_cont 
+:      010549 ir_get_next_encoded_end:
+0x4bd6 010550 disable user2 
+0x4bd7 010551 increase 7 ,rega 
+0x4bd8 010552 rshift3 rega ,rega 
+0x4bd9 010553 branch ir_get_next_seq_fetch 
+:      010554 ir_get_next_seq_exit:
+0x4bda 010555 setarg 0xff 
+0x4bdb 010556 rtn 
+:      010559 ir_get_pulse:
+0x4bdc 010560 lshift pdata ,contr 
+0x4bdd 010561 iadd contr ,pdata 
+0x4bde 010562 arg mem_ir_pulses ,contr 
+0x4bdf 010563 iadd contr ,contr 
+0x4be0 010564 ifetch 3 ,contr 
+0x4be1 010565 rtn 
+:      010568 ir_play:
+0x4be2 010569 enable swfine 
+0x4be3 010570 iforce loopcnt 
+:      010571 ir_play_nloop:
+0x4be4 010572 disable user 
+0x4be5 010573 disable user2 
+0x4be6 010574 arg mem_ir_sequence ,rega 
+:      010575 ir_play_loop:
+0x4be7 010576 call ir_get_next_seq 
+0x4be8 010577 beq 0xff ,ir_play_end 
+0x4be9 010578 call ir_get_pulse 
+0x4bea 010579 bbit0 23 ,ir_play_silence 
+0x4beb 010580 set0 23 ,pdata 
+0x4bec 010581 hjam 158 ,core_pwm_pcnt0 
+:      010582 ir_play_silence:
+0x4bed 010583 iforce stop_watch 
+0x4bee 010584 until null ,timeout 
+0x4bef 010585 hjam 0 ,core_pwm_pcnt0 
+0x4bf0 010586 branch ir_play_loop 
+:      010587 ir_play_end:
+0x4bf1 010588 loop ir_play_nloop 
+0x4bf2 010589 rtn 
+:      010595 le_kb_init:
+0x4bf3 010596 call kb_init_common 
+0x4bf4 010597 setarg kb_process_idle 
+0x4bf5 010598 store 2 ,mem_cb_idle_process 
+0x4bf6 010599 setarg kb_send_process 
+0x4bf7 010600 store 2 ,mem_cb_bt_process 
+0x4bf8 010601 setarg kb_process_bb_event 
+0x4bf9 010602 store 2 ,mem_cb_bb_event_process 
+0x4bfa 010603 setarg kb_process_lpm_before 
+0x4bfb 010604 store 2 ,mem_cb_before_lpm 
+0x4bfc 010605 setarg kb_discovery_timeout_sleep 
+0x4bfd 010606 store 2 ,mem_cb_discovry_timeout 
+0x4bfe 010607 setarg kb_before_hibernate 
+0x4bff 010608 store 2 ,mem_cb_before_hibernate 
+0x4c00 010609 setarg kb_wakeup_check 
+0x4c01 010610 store 2 ,mem_cb_check_wakelock 
+0x4c02 010611 rtn wake 
+0x4c03 010613 fetch 2 ,mem_ui_state_map 
+0x4c04 010614 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+0x4c05 010615 call app_check_reconn_target 
+0x4c06 010616 branch kb_start_discovery ,blank 
+0x4c07 010617 call app_bt_stop_discovery 
+0x4c08 010618 branch app_bt_start_reconnect 
+:      010621 kb_init:
+0x4c09 010622 call kb_init_common 
+0x4c0a 010623 setarg kb_process_idle 
+0x4c0b 010624 store 2 ,mem_cb_idle_process 
+0x4c0c 010625 setarg kb_send_process 
+0x4c0d 010626 store 2 ,mem_cb_bt_process 
+0x4c0e 010627 setarg kb_process_bb_event 
+0x4c0f 010628 store 2 ,mem_cb_bb_event_process 
+0x4c10 010629 setarg kb_process_lpm_before 
+0x4c11 010630 store 2 ,mem_cb_before_lpm 
+0x4c12 010631 setarg kb_discovery_timeout_sleep 
+0x4c13 010632 store 2 ,mem_cb_discovry_timeout 
+0x4c14 010633 setarg kb_before_hibernate 
+0x4c15 010634 store 2 ,mem_cb_before_hibernate 
+0x4c16 010635 setarg kb_wakeup_check 
+0x4c17 010636 store 2 ,mem_cb_check_wakelock 
+0x4c18 010637 rtn wake 
+0x4c19 010639 jam 0 ,mem_sp_flag 
+0x4c1a 010640 jam 0 ,mem_master_sp_flag 
+0x4c1b 010642 fetch 2 ,mem_ui_state_map 
+0x4c1c 010643 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+0x4c1d 010644 call app_check_reconn_target 
+0x4c1e 010645 branch kb_start_discovery ,blank 
+0x4c1f 010646 call app_bt_stop_discovery 
+0x4c20 010647 branch app_bt_start_reconnect 
+:      010651 kb_init_common:
+0x4c21 010652 set1 mark_ext_patch ,mark 
+0x4c22 010653 bpatch patch36_6 ,mem_patch36 
+0x4c23 010655 fetch 1 ,0x8140 
+0x4c24 010656 branch assert ,blank 
+0x4c25 010657 hjam 0 ,core_gpio_oe0 
+0x4c26 010658 hjam 0xff ,core_gpio_pu0 
+0x4c27 010660 hjam 0xff ,core_gpio_oe1 
+0x4c28 010661 hjam 0xff ,core_gpio_oe2 
+0x4c29 010662 hfetch 1 ,core_gpio_oe3 
+0x4c2a 010663 or_into 0x0f ,pdata 
+0x4c2b 010664 hstore 1 ,core_gpio_oe3 
+0x4c2c 010666 hjam 0x00 ,core_gpio_sel 
+0x4c2d 010667 hjam 0x00 ,core_gpio_sel1 
+0x4c2e 010668 hjam 0xff ,core_gpio_key0 
+0x4c2f 010669 hjam 0xFf ,core_gpio_key1 
+0x4c30 010670 hfetch 1 ,core_gpio_key2 
+0x4c31 010671 or_into 0x03 ,pdata 
+0x4c32 010672 hstore 1 ,core_gpio_key2 
+0x4c33 010673 hjam 0x00 ,core_kscn_rowmask 
+0x4c34 010674 setarg kb_kscan_col_1 
+0x4c35 010675 lshift3 pdata ,pdata 
+0x4c36 010676 add pdata ,kb_kscan_row_1 ,pdata 
+0x4c37 010677 hstore 1 ,core_kscn_rctc 
+0x4c38 010679 hfetch 1 ,core_config 
+0x4c39 010680 set1 2 ,pdata 
+0x4c3a 010681 hstore 1 ,core_config 
+0x4c3b 010682 hfetch 1 ,core_clkoff + 1 
+0x4c3c 010683 set0 1 ,pdata 
+0x4c3d 010684 hstore 1 ,core_clkoff + 1 
+0x4c3e 010685 hjam 0xd ,core_kscn_ksctrl 
+0x4c3f 010686 hjam 0xd3 ,core_kscn_m_debounce 
+0x4c40 010687 hjam 0 ,core_kscn_scancycle_timer_l 
+0x4c41 010688 hjam 0x31 ,core_kscn_scancycle_timer_h 
+0x4c42 010689 call lpm_disable_exen_output 
+0x4c43 010690 fetcht 1 ,mem_led_cap_gpio 
+0x4c44 010691 call gpio_config_output 
+0x4c45 010692 fetcht 1 ,mem_led_num_gpio 
+0x4c46 010693 call gpio_config_output 
+0x4c47 010694 fetcht 1 ,mem_led_scl_gpio 
+0x4c48 010695 call gpio_config_output 
+0x4c49 010696 rtn 
+:      010698 kb_process_kb_report:
+0x4c4a 010699 set1 mark_ext_patch ,mark 
+0x4c4b 010700 bpatch patch36_7 ,mem_patch36 
+0x4c4c 010701 ifetch 1 ,contr 
+0x4c4d 010702 copy pdata ,rega 
+0x4c4e 010703 fetcht 1 ,mem_led_num_gpio 
+0x4c4f 010704 isolate1 kb_num_lock_selected ,rega 
+0x4c50 010705 call gpio_out_flag 
+0x4c51 010706 fetcht 1 ,mem_led_cap_gpio 
+0x4c52 010707 isolate1 kb_caps_lock_selected ,rega 
+0x4c53 010708 call gpio_out_flag 
+0x4c54 010709 fetcht 1 ,mem_led_scl_gpio 
+0x4c55 010710 isolate1 kb_scroll_lock_selected ,rega 
+0x4c56 010711 call gpio_out_flag 
+0x4c57 010712 jam 1 ,mem_kb_rcv_led_data 
+0x4c58 010713 rtn 
+:      010716 kb_send_process:
+0x4c59 010718 call kb_kscan_check_if_empty 
+0x4c5a 010719 nrtn user 
+0x4c5b 010720 nrtn user2 
+0x4c5c 010722 fetch 1 ,mem_pincode_state 
+0x4c5d 010723 beq pincode_state_wait_pincode ,kb_pincode 
+0x4c5e 010724 fetch 1 ,mem_hid_interrupt_state 
+0x4c5f 010725 rtnne 0x3f 
+0x4c60 010727 arg 10 ,rega 
+0x4c61 010728 call hid_malloc_tx_buff 
+0x4c62 010729 fetch 2 ,mem_hid_int_remote_cid 
+0x4c63 010730 istore 2 ,contw 
+0x4c64 010731 setarg 0x01a1 
+0x4c65 010732 istore 2 ,contw 
+0x4c66 010733 fetch 8 ,mem_kb_state 
+0x4c67 010734 istore 8 ,contw 
+0x4c68 010735 rtn 
+:      010737 kb_pincode:
+0x4c69 010738 fetcht 1 ,mem_pin_length 
+0x4c6a 010739 setarg mem_pin 
+0x4c6b 010740 iadd temp ,contw 
+0x4c6c 010741 fetch 1 ,mem_kb_report_data 
+0x4c6d 010742 branch kb_pincode_rtn ,blank 
+0x4c6e 010743 beq kb_kcode_bksp ,kb_pincode_bksp 
+0x4c6f 010744 bne kb_kcode_enter ,kb_pincode_data 
+0x4c70 010745 storet 1 ,mem_pin_length 
+0x4c71 010746 branch app_bt_set_pincode 
+:      010748 kb_pincode_rtn:
+0x4c72 010749 storet 1 ,mem_pin_length 
+0x4c73 010750 rtn 
+:      010751 kb_pincode_bksp:
+0x4c74 010752 fetch 1 ,mem_pin_length 
+0x4c75 010753 rtn blank 
+0x4c76 010754 increase -1 ,pdata 
+0x4c77 010755 store 1 ,mem_pin_length 
+0x4c78 010756 arg mem_pin ,contw 
+0x4c79 010757 iadd contw ,contw 
+0x4c7a 010758 setarg 0 
+0x4c7b 010759 istore 1 ,contw 
+0x4c7c 010760 enable user2 
+0x4c7d 010761 branch kb_send_pin 
+:      010762 kb_pincode_data:
+0x4c7e 010763 sub pdata ,kb_kcode_1_m1 ,null 
+0x4c7f 010764 rtn positive 
+0x4c80 010765 arg 0x30 ,temp 
+0x4c81 010766 sub pdata ,kb_kcode_0 ,null 
+0x4c82 010767 nrtn positive 
+0x4c83 010768 branch kb_pincode_0 ,zero 
+0x4c84 010769 arg kb_kcode_1_m1 ,temp 
+0x4c85 010770 isub temp ,temp 
+0x4c86 010771 or_into 0x30 ,temp 
+:      010772 kb_pincode_0:
+0x4c87 010773 istoret 1 ,contw 
+0x4c88 010774 fetch 1 ,mem_pin_length 
+0x4c89 010775 increase 1 ,pdata 
+0x4c8a 010776 store 1 ,mem_pin_length 
+0x4c8b 010777 disable user2 
+0x4c8c 010778 branch kb_send_pin 
+:      010780 kb_send_pin:
+0x4c8d 010781 fetch 2 ,mem_hid_int_remote_cid 
+0x4c8e 010782 rtn blank 
+0x4c8f 010783 arg 3 ,rega 
+0x4c90 010784 call hid_malloc_tx_buff 
+0x4c91 010785 fetch 2 ,mem_hid_int_remote_cid 
+0x4c92 010786 istore 2 ,contw 
+0x4c93 010787 setarg 0xffa1 
+0x4c94 010788 istore 2 ,contw 
+0x4c95 010789 setarg 0 
+0x4c96 010790 setflag user2 ,0 ,pdata 
+0x4c97 010791 istore 1 ,contw 
+0x4c98 010792 rtn 
+:      010796 kb_kscan_check_if_empty:
+0x4c99 010797 disable user 
+0x4c9a 010798 disable user2 
+0x4c9b 010799 hfetch 1 ,core_kscn_kstat 
+0x4c9c 010800 rtnbit1 kb_kscan_stat_empty 
+:      010802 kb_kscan_check_ghost:
+0x4c9d 010803 hfetch 1 ,core_kscn_event_num 
+0x4c9e 010804 bbit1 kb_kscan_key_event_stat ,kb_kscan_process_event 
+0x4c9f 010805 hfetch 1 ,core_kscn_kstat 
+0x4ca0 010806 bbit0 kb_kscan_stat_ghost ,kb_kscan_process_event 
+0x4ca1 010807 hfetch 1 ,core_kscn_event 
+0x4ca2 010808 branch kb_kscan_check_if_empty 
+:      010810 kb_kscan_process_event:
+0x4ca3 010811 enable user 
+0x4ca4 010812 enable user2 
+0x4ca5 010813 hfetch 1 ,core_kscn_event_num 
+0x4ca6 010814 isolate0 kb_kscan_key_event_stat ,pdata 
+0x4ca7 010815 hfetch 1 ,core_kscn_event 
+0x4ca8 010816 arg mem_kb_map ,contr 
+0x4ca9 010817 iadd contr ,contr 
+0x4caa 010818 ifetch 1 ,contr 
+0x4cab 010819 bbit1 7 ,kb_kscan_read_statekey 
+0x4cac 010820 nbranch kb_kscan_release_a_key_data ,true 
+0x4cad 010821 disable user2 
+0x4cae 010822 iforce temp 
+0x4caf 010823 fetch 1 ,mem_kb_keys 
+0x4cb0 010824 sub pdata ,4 ,null 
+0x4cb1 010825 nrtn positive 
+0x4cb2 010826 copy pdata ,rega 
+0x4cb3 010827 arg 3 ,loopcnt 
+0x4cb4 010828 arg mem_kb_report_data ,contr 
+:      010829 kb_kscan_check_report_data:
+0x4cb5 010830 ifetch 1 ,contr 
+0x4cb6 010831 isub temp ,null 
+0x4cb7 010832 branch kb_kscan_check_if_empty ,zero 
+0x4cb8 010833 loop kb_kscan_check_report_data 
+:      010834 kb_kscan_store_a_key_data:
+0x4cb9 010835 copy rega ,pdata 
+0x4cba 010836 arg mem_kb_report_data ,contw 
+0x4cbb 010837 iadd contw ,contw 
+0x4cbc 010838 istoret 1 ,contw 
+0x4cbd 010839 increase 1 ,pdata 
+0x4cbe 010840 store 1 ,mem_kb_keys 
+0x4cbf 010841 hfetch 1 ,core_kscn_event_num 
+0x4cc0 010842 rshift3 pdata ,pdata 
+0x4cc1 010843 nbranch kb_kscan_check_nextevent ,blank 
+0x4cc2 010844 branch kb_kscan_prepare_send 
+:      010846 kb_kscan_check_nextevent:
+0x4cc3 010847 increase -1 ,pdata 
+0x4cc4 010848 branch kb_kscan_prepare_send ,zero 
+0x4cc5 010849 hfetch 1 ,core_kscn_event_num 
+0x4cc6 010850 and_into 0x01 ,pdata 
+0x4cc7 010851 beq kb_kscan_key_press ,kb_kscan_check_if_empty 
+0x4cc8 010852 beq kb_kscan_key_release ,kb_kscan_prepare_send 
+0x4cc9 010853 rtn 
+:      010854 kb_kscan_prepare_send:
+0x4cca 010855 enable user2 
+0x4ccb 010856 rtn 
+:      010858 kb_kscan_release_a_key_data:
+0x4ccc 010859 and pdata ,0xff ,temp 
+0x4ccd 010860 fetch 1 ,mem_kb_keys 
+0x4cce 010861 rtn blank 
+0x4ccf 010862 iforce loopcnt 
+0x4cd0 010863 arg mem_kb_report_data ,contr 
+:      010864 kb_kscan_find_same_key_data:
+0x4cd1 010865 ifetch 1 ,contr 
+0x4cd2 010866 isub temp ,null 
+0x4cd3 010867 branch kb_kscan_release_foundkey ,zero 
+0x4cd4 010868 loop kb_kscan_find_same_key_data 
+0x4cd5 010869 rtn 
+:      010870 kb_kscan_release_foundkey:
+0x4cd6 010871 add contr ,-1 ,contw 
+0x4cd7 010872 call memcpy 
+0x4cd8 010873 fetch 1 ,mem_kb_keys 
+0x4cd9 010874 increase -1 ,pdata 
+0x4cda 010875 store 1 ,mem_kb_keys 
+0x4cdb 010876 hfetch 1 ,core_kscn_event_num 
+0x4cdc 010877 rshift3 pdata ,pdata 
+0x4cdd 010878 nbranch kb_kscan_check_nextevent2 ,blank 
+0x4cde 010879 rtn 
+:      010881 kb_kscan_check_nextevent2:
+0x4cdf 010882 hfetch 1 ,core_kscn_event_num 
+0x4ce0 010883 and_into 0x01 ,pdata 
+0x4ce1 010884 beq kb_kscan_key_press ,kb_kscan_prepare_send 
+0x4ce2 010885 beq kb_kscan_key_release ,kb_kscan_check_if_empty 
+0x4ce3 010886 rtn 
+:      010888 kb_kscan_read_statekey:
+0x4ce4 010889 and pdata ,7 ,queue 
+0x4ce5 010890 fetch 1 ,mem_kb_state 
+0x4ce6 010891 qsetflag true ,pdata 
+0x4ce7 010892 store 1 ,mem_kb_state 
+0x4ce8 010893 rtn 
+:      010895 kb_clear_keys:
+0x4ce9 010896 setarg 0 
+0x4cea 010897 store 8 ,mem_kb_state 
+0x4ceb 010898 store 1 ,mem_kb_keys 
+0x4cec 010899 rtn 
+:      010901 kb_clean_kscan_fifo:
+0x4ced 010902 hfetch 1 ,core_kscn_event_num 
+0x4cee 010903 hfetch 1 ,core_kscn_event 
+0x4cef 010904 hfetch 1 ,core_kscn_kstat 
+0x4cf0 010905 bbit0 kb_kscan_stat_empty ,kb_clean_kscan_fifo 
+0x4cf1 010906 setarg 0xff 
+0x4cf2 010907 enable user 
+0x4cf3 010908 rtn 
+:      010910 le_keyboard:
+0x4cf4 010911 fetcht 2 ,mem_le_notify_handle 
+0x4cf5 010912 call le_att_check_notification_enable 
+0x4cf6 010913 rtnbit0 0 
+0x4cf7 010914 fetch 1 ,mem_le_switch_send_data 
+0x4cf8 010915 rtnbit0 0 
+0x4cf9 010916 call le_xtype_fifo_is_full 
+0x4cfa 010917 nrtn blank 
+0x4cfb 010918 call kb_kscan_check_if_empty 
+0x4cfc 010919 nrtn user 
+0x4cfd 010920 nrtn user2 
+:      010921 le_slave_keyboard_send_data:
+0x4cfe 010922 call app_lpm_wake_auto_lock 
+0x4cff 010923 jam 2 ,mem_lpm_mult 
+0x4d00 010924 fetcht 2 ,mem_le_notify_handle 
+0x4d01 010925 call le_att_get_handle_ptr 
+0x4d02 010926 add contr ,1 ,contw 
+0x4d03 010927 fetch 8 ,mem_kb_state 
+0x4d04 010928 istore 8 ,contw 
+0x4d05 010929 jam attop_handle_value_notification ,mem_fifo_temp 
+0x4d06 010930 call le_xtype_fifo_in 
+0x4d07 010931 fetch 1 ,mem_le_op 
+0x4d08 010932 bbit1 op_disconn ,loop 
+0x4d09 010933 rtn 
+:      010934 le_keyboard_process_bb_event:
+0x4d0a 010935 copy regc ,pdata 
+0x4d0b 010936 beq bt_evt_button_long_pressed ,le_keyboard_bb_event_discovery_btn 
+0x4d0c 010938 beq bt_evt_le_connected ,le_kb_connected 
+0x4d0d 010939 beq bt_evt_le_write_request ,le_kb_bb_event_write_request 
+0x4d0e 010940 beq bt_evt_le_enc_info ,le_kb_bb_event_enc_info 
+0x4d0f 010941 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x4d10 010942 rtn 
+:      010943 le_kb_bb_event_enc_info:
+:      010944 le_kb_bb_event_write_request:
+0x4d11 010945 call app_lpm_mult_enable 
+0x4d12 010946 branch app_ble_start_write 
+:      010947 le_kb_connected:
+0x4d13 010948 call kb_clean_kscan_fifo 
+0x4d14 010949 branch kb_clear_keys 
+:      010951 le_keyboard_bb_event_discovery_btn:
+0x4d15 010952 call le_clean_att_list_handle_enable 
+0x4d16 010953 call app_ble_disconnect 
+0x4d17 010954 call app_ble_start_adv 
+0x4d18 010955 branch app_led_start_blink 
+:      010957 le_keyboard_bb_event_hud_ms:
+0x4d19 010958 fetch 1 ,mem_le_led_on_time 
+0x4d1a 010959 rtn blank 
+0x4d1b 010960 increase -1 ,pdata 
+0x4d1c 010961 store 1 ,mem_le_led_on_time 
+0x4d1d 010962 nrtn blank 
+0x4d1e 010963 fetch 1 ,mem_le_adv_type 
+0x4d1f 010964 rtn blank 
+0x4d20 010965 branch app_led_off 
+:      010968 kb_process_idle:
+0x4d21 010969 branch kb_pairing_button_check 
+:      010972 kb_wakeup_check:
+0x4d22 010973 hfetch 3 ,core_gpio_in 
+0x4d23 010974 copy pdata ,regb 
+0x4d24 010975 hfetch 1 ,core_gpio_in + 3 
+0x4d25 010976 and_into 0x0f ,pdata 
+0x4d26 010977 lshift16 pdata ,pdata 
+0x4d27 010978 lshift8 pdata ,pdata 
+0x4d28 010979 ior regb ,pdata 
+0x4d29 010980 fetcht 4 ,mem_kb_fast_wake_last 
+0x4d2a 010981 isub temp ,pdata 
+0x4d2b 010982 rtn blank 
+0x4d2c 010983 arg 0xbb ,regb 
+0x4d2d 010984 branch app_lpm_wake_auto_lock 
+:      010987 kb_pairing_button_check:
+0x4d2e 010988 fetch 1 ,mem_scan_mode 
+0x4d2f 010989 nrtn blank 
+0x4d30 010990 fetch 1 ,mem_app_handshake_flag 
+0x4d31 010991 nrtn blank 
+0x4d32 010992 fetch 1 ,mem_ui_button_timer 
+0x4d33 010993 rtn blank 
+0x4d34 010994 fetch 1 ,mem_ui_button_last_state 
+0x4d35 010995 nrtn blank 
+0x4d36 010996 branch app_enter_hibernate 
+:      010998 kb_process_bb_event:
+0x4d37 010999 copy regc ,pdata 
+0x4d38 011000 beq bt_evt_hid_connected ,kb_hid_connected 
+0x4d39 011001 beq bt_evt_pincode_req ,kb_process_pincode 
+0x4d3a 011002 beq bt_evt_hid_connected ,kb_bt_hid_handshake 
+0x4d3b 011003 beq bt_evt_button_long_pressed ,kb_bb_event_discovery_btn 
+0x4d3c 011004 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x4d3d 011005 beq bt_evt_bb_connected ,kb_stop_discovery 
+0x4d3e 011006 beq bt_evt_bb_disconnected ,kb_bb_disconnected 
+0x4d3f 011008 beq bt_evt_reconn_failed ,kb_bb_event_reconn_failed 
+0x4d40 011009 beq bt_evt_reconn_page_timeout ,kb_bb_event_reconn_failed 
+0x4d41 011010 and pdata ,0x0f ,temp 
+0x4d42 011011 and_into bt_evt_timer_mask ,pdata 
+0x4d43 011012 beq bt_evt_timer_init ,kb_bb_event_timer 
+0x4d44 011013 rtn 
+:      011015 kb_bb_event_timer:
+0x4d45 011016 set1 mark_ext_patch ,mark 
+0x4d46 011017 bpatch patch37_0 ,mem_patch37 
+0x4d47 011018 storet 1 ,mem_app_evt_timer_count 
+:      011019 kb_bb_event_100ms_loop:
+0x4d48 011020 fetch 1 ,mem_app_evt_timer_count 
+0x4d49 011021 rtn blank 
+0x4d4a 011022 increase -1 ,pdata 
+0x4d4b 011023 store 1 ,mem_app_evt_timer_count 
+0x4d4c 011025 call kb_check_hid_handshake_timer 
+0x4d4d 011026 branch kb_bb_event_100ms_loop 
+:      011028 kb_bb_event_reconn_failed:
+0x4d4e 011029 fetch 2 ,mem_ui_state_map 
+0x4d4f 011030 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4d50 011031 branch app_bb_hibernate 
+:      011034 kb_bb_disconnected:
+0x4d51 011035 set1 mark_ext_patch ,mark 
+0x4d52 011036 bpatch patch37_1 ,mem_patch37 
+0x4d53 011037 call kb_bb_discon_clear_stack 
+0x4d54 011038 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x4d55 011040 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x4d56 011041 bbit1 app_disc_after_pairing ,kb_event_light_state_pairing 
+0x4d57 011042 bbit1 app_disc_after_reconn ,kb_event_light_state_reconn 
+0x4d58 011043 branch kb_start_discovery 
+:      011044 kb_bb_discon_clear_stack:
+0x4d59 011045 jam 0 ,mem_link_key_exists 
+0x4d5a 011046 jam 0 ,mem_ltk_exists 
+0x4d5b 011047 rtn 
+:      011049 kb_event_light_state_pairing:
+0x4d5c 011050 bbit1 app_disc_after_handshake ,app_bb_hibernate 
+0x4d5d 011051 bbit1 app_disc_after_sniff ,app_bb_hibernate 
+0x4d5e 011052 branch kb_start_discovery 
+:      011053 kb_event_light_state_reconn:
+0x4d5f 011054 fetch 2 ,mem_ui_state_map 
+0x4d60 011055 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4d61 011056 branch app_bb_hibernate 
+:      011060 kb_check_hid_handshake_timer:
+0x4d62 011061 fetch 1 ,mem_hid_handshake_timer_count 
+0x4d63 011062 rtn blank 
+0x4d64 011063 increase -1 ,pdata 
+0x4d65 011064 store 1 ,mem_hid_handshake_timer_count 
+0x4d66 011065 nrtn blank 
+0x4d67 011066 branch kb_bt_hid_handshake 
+:      011069 kb_bb_event_discovery_btn:
+0x4d68 011070 call kb_3_0_bb_event_discovery_btn 
+0x4d69 011071 branch kb_start_discovery 
+:      011073 kb_3_0_bb_event_discovery_btn:
+0x4d6a 011074 set1 mark_ext_patch ,mark 
+0x4d6b 011075 bpatch patch37_2 ,mem_patch37 
+0x4d6c 011076 fetch 2 ,mem_ui_state_map 
+0x4d6d 011077 isolate1 ui_state_bt_reconnect ,pdata 
+0x4d6e 011078 call app_bt_reconnect_cancel ,true 
+0x4d6f 011079 fetch 2 ,mem_discovery_timeout 
+0x4d70 011080 store 2 ,mem_discovery_timeout_timer_count 
+0x4d71 011081 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4d72 011082 set1 app_disc_by_button ,pdata 
+0x4d73 011083 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4d74 011084 fetch 2 ,mem_ui_state_map 
+0x4d75 011085 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x4d76 011086 rtn 
+:      011089 kb_stop_discovery:
+0x4d77 011090 call app_bt_stop_discovery 
+0x4d78 011091 branch app_led_stop_blink 
+:      011093 kb_start_discovery:
+0x4d79 011094 call app_bt_start_discovery 
+0x4d7a 011095 branch app_led_start_blink 
+:      011097 kb_discovery_timeout_sleep:
+0x4d7b 011098 branch app_enter_hibernate 
+:      011100 kb_process_pincode:
+0x4d7c 011101 jam 0 ,mem_pin_length 
+0x4d7d 011102 rtn 
+:      011105 kb_before_hibernate:
+:      011107 kb_process_lpm_before:
+0x4d7e 011108 hjam 0x00 ,core_gpio_key0 
+0x4d7f 011109 hjam 0x00 ,core_gpio_key1 
+0x4d80 011110 hfetch 1 ,core_gpio_key2 
+0x4d81 011111 and_into 0xf0 ,pdata 
+0x4d82 011112 hstore 1 ,core_gpio_key2 
+0x4d83 011113 setarg 0x00 
+0x4d84 011114 store 4 ,mem_gpio_wakeup_high 
+0x4d85 011115 setarg 0xff 
+0x4d86 011116 fetcht 1 ,mem_ui_button_gpio 
+0x4d87 011117 copy temp ,queue 
+0x4d88 011118 qset1 pdata 
+0x4d89 011119 store 4 ,mem_gpio_wakeup_low 
+0x4d8a 011120 rtn 
+:      011122 kb_hid_connected:
+0x4d8b 011123 setarg hid_handshake_timeout 
+0x4d8c 011124 store 1 ,mem_hid_handshake_timer_count 
+0x4d8d 011125 call kb_clean_kscan_fifo 
+0x4d8e 011129 branch kb_clear_keys 
+:      011130 kb_bt_hid_handshake:
+0x4d8f 011131 set1 mark_ext_patch ,mark 
+0x4d90 011132 bpatch patch37_3 ,mem_patch37 
+0x4d91 011133 jam app_handshake_done ,mem_app_handshake_flag 
+0x4d92 011134 call app_lpm_mult_enable 
+0x4d93 011135 call app_bt_store_reconn_info 
+0x4d94 011137 setarg 0 
+0x4d95 011138 store 2 ,mem_discovery_timeout_timer_count 
+0x4d96 011139 store 1 ,mem_hid_handshake_timer_count 
+0x4d97 011140 branch app_bt_enter_sniff 
+:      011147 l2cap_init:
+0x4d98 011148 branch l2cap_init_wake ,wake 
+:      011149 l2cap_init_work:
+0x4d99 011150 setarg mem_l2cap_xmem_end 
+0x4d9a 011151 arg mem_l2cap_xmem_start ,contw 
+0x4d9b 011152 isub contw ,loopcnt 
+0x4d9c 011153 call clear_mem 
+:      011154 l2cap_init_wake:
+0x4d9d 011155 set1 mark_ext_patch ,mark 
+0x4d9e 011156 bpatch patch22_6 ,mem_patch22 
+0x4d9f 011157 setarg mem_sdp_mem_end 
+0x4da0 011158 arg mem_sdp_mem_start ,contw 
+0x4da1 011159 isub contw ,loopcnt 
+0x4da2 011160 call clear_mem 
+0x4da3 011161 setarg mem_l2cap_mem_end 
+0x4da4 011162 arg mem_l2cap_mem_start ,contw 
+0x4da5 011163 isub contw ,loopcnt 
+0x4da6 011164 call clear_mem 
+0x4da7 011165 branch l2cap_lpm_load_txbuf 
+:      011167 process_rx_l2cap_pkt:
+0x4da8 011168 set1 mark_ext_patch ,mark 
+0x4da9 011169 bpatch patch22_7 ,mem_patch22 
+0x4daa 011170 copy contr ,temp 
+0x4dab 011173 copy temp ,contr 
+0x4dac 011174 ifetch 2 ,contr 
+0x4dad 011175 store 2 ,mem_l2cap_rx_pkt_length 
+0x4dae 011176 ifetch 2 ,contr 
+0x4daf 011177 store 2 ,mem_l2cap_rx_cid 
+0x4db0 011178 deposit contr 
+0x4db1 011179 store 2 ,mem_l2cap_payload_ptr 
+0x4db2 011180 fetch 1 ,memui_reconnect_mode 
+0x4db3 011181 beq no_reconnection ,l2cap_rx_multiplexing 
+0x4db4 011182 branch ml2cap_rx_multiplexing 
+:      011184 l2cap_rx_multiplexing:
+0x4db5 011185 set1 mark_ext_patch ,mark 
+0x4db6 011186 bpatch patch23_0 ,mem_patch23 
+0x4db7 011187 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4db8 011188 branch l2cap_rx_reset_state ,blank 
+0x4db9 011189 fetch 1 ,mem_l2cap_rx_cid 
+0x4dba 011190 beq l2cap_signal_channel ,l2cap_call_proc_signal 
+:      011191 l2cap_rx_multiplexing0:
+0x4dbb 011192 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+0x4dbc 011193 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x4dbd 011194 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x4dbe 011195 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x4dbf 011196 branch l2cap_rx_reset_state 
+:      011198 l2cap_call_proc_signal:
+0x4dc0 011199 call l2cap_malloc_is_fifo_full 
+0x4dc1 011200 nrtn blank 
+0x4dc2 011201 jam 0 ,mem_l2cap_pending_item 
+:      011202 l2cap_call_proc_signal0:
+0x4dc3 011203 call l2cap_malloc_signal_channel 
+0x4dc4 011204 call l2cap_process_signal_pkt 
+0x4dc5 011205 fetcht 2 ,mem_l2cap_signal_tx_length 
+0x4dc6 011206 branch l2cap_call_proc_no_reply ,blank 
+0x4dc7 011207 call l2cap_get_signal_tx_buff 
+0x4dc8 011208 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4dc9 011209 istore 2 ,contw 
+0x4dca 011210 force l2cap_signal_channel ,pdata 
+0x4dcb 011211 istore 2 ,contw 
+0x4dcc 011212 branch l2cap_rx_reset_state 
+:      011214 l2cap_call_proc_sigal_pending:
+0x4dcd 011215 fetch 1 ,mem_device_option 
+0x4dce 011216 rtneq dvc_op_hci 
+0x4dcf 011217 fetch 1 ,mem_l2cap_pending_item 
+0x4dd0 011218 rtn blank 
+0x4dd1 011219 copy pdata ,rega 
+0x4dd2 011220 fetch 4 ,mem_l2cap_sdpres_delay_time 
+0x4dd3 011221 arg 0x100 ,temp 
+0x4dd4 011222 iadd temp ,temp 
+0x4dd5 011223 copy clkn_bt ,pdata 
+0x4dd6 011224 isub temp ,null 
+0x4dd7 011225 nrtn positive 
+0x4dd8 011226 jam 0 ,mem_l2cap_pending_item 
+0x4dd9 011227 copy rega ,pdata 
+0x4dda 011228 beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+0x4ddb 011229 branch assert 
+:      011230 l2cap_sdp_conn_succ:
+0x4ddc 011231 call l2cap_malloc_signal_channel 
+0x4ddd 011232 call restore_l2cap_req_param 
+0x4dde 011233 call l2cap_get_signal_tx_payload 
+0x4ddf 011234 call save_cont_pointers 
+0x4de0 011235 call send_connection_sdp_res 
+0x4de1 011236 call l2cap_get_signal_tx_buff 
+0x4de2 011238 setarg 0x000c 
+0x4de3 011239 istore 2 ,contw 
+0x4de4 011240 force l2cap_signal_channel ,pdata 
+0x4de5 011241 istore 2 ,contw 
+0x4de6 011242 branch l2cap_rx_reset_state 
+:      011244 l2cap_call_proc_sdp:
+0x4de7 011245 call l2cap_malloc_is_fifo_empty 
+0x4de8 011246 nrtn blank 
+0x4de9 011247 call l2cap_malloc_sdp_channel 
+0x4dea 011248 call sdp_process 
+0x4deb 011249 call l2cap_get_sdp_tx_buff 
+0x4dec 011250 fetch 2 ,mem_sdp_tx_pkt_length 
+0x4ded 011251 branch l2cap_call_proc_no_reply ,blank 
+0x4dee 011252 istore 2 ,contw 
+0x4def 011253 fetch 2 ,mem_sdp_remote_cid 
+0x4df0 011254 istore 2 ,contw 
+0x4df1 011255 branch l2cap_rx_reset_state 
+:      011257 l2cap_call_proc_hid:
+0x4df2 011258 call hid_rx_process 
+0x4df3 011259 branch l2cap_rx_reset_state 
+:      011261 l2cap_call_proc_rfcomm:
+0x4df4 011262 set1 mark_ext_patch ,mark 
+0x4df5 011263 bpatch patch23_1 ,mem_patch23 
+0x4df6 011264 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x4df7 011265 call rfcomm_rx_process 
+0x4df8 011266 fetch 1 ,mem_rfcomm_malloc_fail_flag 
+0x4df9 011267 rtneq rfcomm_malloc_fail 
+0x4dfa 011268 branch l2cap_rx_reset_state 
+:      011269 l2cap_call_proc_no_reply:
+0x4dfb 011270 call l2cap_malloc_discard 
+:      011272 l2cap_rx_reset_state:
+0x4dfc 011273 setarg 0 
+0x4dfd 011274 store 2 ,mem_l2cap_rx_pkt_length 
+0x4dfe 011275 store 2 ,mem_l2cap_rx_cid 
+0x4dff 011276 jam l2cap_rx_done ,mem_l2cap_rx_done 
+0x4e00 011277 rtn 
+:      011279 l2cap_process_signal_pkt:
+0x4e01 011280 set1 mark_ext_patch ,mark 
+0x4e02 011281 bpatch patch23_2 ,mem_patch23 
+0x4e03 011282 call l2cap_get_signal_tx_payload 
+0x4e04 011283 force 0 ,regb 
+0x4e05 011284 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4e06 011285 copy pdata ,regc 
+0x4e07 011286 fetch 2 ,mem_l2cap_payload_ptr 
+0x4e08 011287 iforce contr 
+:      011288 l2cap_process_signal_pkt_loop:
+0x4e09 011289 call l2cap_process_one_signal 
+0x4e0a 011290 deposit regc 
+0x4e0b 011291 increase -4 ,regc 
+0x4e0c 011292 increase -4 ,pdata 
+0x4e0d 011293 nbranch l2cap_process_signal_pkt_loop ,blank 
+0x4e0e 011294 copy regb ,pdata 
+0x4e0f 011295 store 2 ,mem_l2cap_signal_tx_length 
+0x4e10 011296 rtn 
+:      011298 l2cap_process_one_signal:
+0x4e11 011299 set1 mark_ext_patch ,mark 
+0x4e12 011300 bpatch patch23_3 ,mem_patch23 
+0x4e13 011301 ifetch 1 ,contr 
+0x4e14 011302 beq signal_cmd_reject ,l2cap_proc_signal_cmd_reject 
+0x4e15 011303 beq signal_connect_req ,l2cap_proc_signal_connect_req 
+0x4e16 011304 beq signal_connect_rsp ,l2cap_proc_signal_connect_rsp 
+0x4e17 011305 beq signal_config_req ,l2cap_proc_signal_config_req 
+0x4e18 011306 beq signal_config_rsp ,l2cap_proc_signal_config_rsp 
+0x4e19 011307 beq signal_disconnect_req ,l2cap_proc_signal_disconnect_req 
+0x4e1a 011308 beq signal_disconnect_rsp ,l2cap_proc_signal_disconnect_rsp 
+0x4e1b 011309 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x4e1c 011310 beq signal_echo_rsp ,l2cap_proc_signal_echo_rsp 
+0x4e1d 011311 beq signal_info_req ,l2cap_proc_signal_info_req 
+0x4e1e 011312 beq signal_info_rsp ,l2cap_proc_signal_info_rsp 
+0x4e1f 011313 call l2cap_reject_command 
+:      011314 l2cap_process_one_signal_rtn:
+0x4e20 011315 rtn 
+:      011317 l2cap_proc_signal_info_req:
+0x4e21 011318 ifetch 1 ,contr 
+0x4e22 011319 copy pdata ,queue 
+0x4e23 011320 ifetch 2 ,contr 
+0x4e24 011321 copy pdata ,rega 
+0x4e25 011322 copy regc ,pdata 
+0x4e26 011323 isub rega ,regc 
+0x4e27 011324 copy rega ,pdata 
+0x4e28 011325 iadd contr ,contr 
+0x4e29 011326 setarg 0x0b 
+0x4e2a 011327 istore 1 ,contw 
+0x4e2b 011328 copy queue ,pdata 
+0x4e2c 011329 istore 1 ,contw 
+0x4e2d 011330 force 0x0008 ,pdata 
+0x4e2e 011331 istore 2 ,contw 
+0x4e2f 011332 force 0x0002 ,pdata 
+0x4e30 011333 istore 2 ,contw 
+0x4e31 011334 force 0x0000 ,pdata 
+0x4e32 011335 istore 2 ,contw 
+0x4e33 011336 force 0x0400 ,pdata 
+0x4e34 011337 istore 2 ,contw 
+0x4e35 011338 force 0x0000 ,pdata 
+0x4e36 011339 istore 2 ,contw 
+0x4e37 011340 force 12 ,pdata 
+0x4e38 011341 iadd regb ,regb 
+0x4e39 011342 branch l2cap_process_one_signal_rtn 
+:      011344 ml2cap_proc_signal_info_req:
+0x4e3a 011345 ifetch 1 ,contr 
+0x4e3b 011346 copy pdata ,queue 
+0x4e3c 011347 ifetch 2 ,contr 
+0x4e3d 011348 copy pdata ,rega 
+0x4e3e 011349 copy regc ,pdata 
+0x4e3f 011350 isub rega ,regc 
+0x4e40 011351 copy rega ,pdata 
+0x4e41 011352 iadd contr ,contr 
+0x4e42 011353 call l2cap_get_signal_tx_payload 
+0x4e43 011354 setarg 0x0b 
+0x4e44 011355 istore 1 ,contw 
+0x4e45 011356 copy queue ,pdata 
+0x4e46 011357 istore 1 ,contw 
+0x4e47 011358 force 0x0008 ,pdata 
+0x4e48 011359 istore 2 ,contw 
+0x4e49 011360 force 0x0002 ,pdata 
+0x4e4a 011361 istore 2 ,contw 
+0x4e4b 011362 force 0x0000 ,pdata 
+0x4e4c 011363 istore 2 ,contw 
+0x4e4d 011364 force 0x0400 ,pdata 
+0x4e4e 011365 istore 2 ,contw 
+0x4e4f 011366 force 0x0000 ,pdata 
+0x4e50 011367 istore 2 ,contw 
+0x4e51 011368 force 12 ,pdata 
+0x4e52 011369 iadd regb ,regb 
+0x4e53 011371 branch l2cap_process_one_signal_rtn 
+:      011375 l2cap_proc_signal_cmd_reject:
+0x4e54 011376 ifetch 1 ,contr 
+0x4e55 011377 copy pdata ,queue 
+0x4e56 011378 ifetch 2 ,contr 
+0x4e57 011379 copy pdata ,rega 
+0x4e58 011380 iadd contr ,contr 
+0x4e59 011381 copy regc ,pdata 
+0x4e5a 011382 isub rega ,regc 
+:      011383 l2cap_proc_signal_cmd_reject_rtn:
+0x4e5b 011384 branch l2cap_process_one_signal_rtn 
+:      011386 l2cap_proc_signal_connect_req:
+0x4e5c 011387 call save_cont_pointers 
+0x4e5d 011390 call load_cont_pointers 
+0x4e5e 011391 arg 0 ,debug 
+0x4e5f 011392 ifetch 1 ,contr 
+0x4e60 011393 copy pdata ,queue 
+0x4e61 011394 ifetch 2 ,contr 
+0x4e62 011395 copy pdata ,rega 
+0x4e63 011396 ifetch 2 ,contr 
+0x4e64 011397 copy pdata ,temp 
+0x4e65 011398 ifetch 2 ,contr 
+0x4e66 011399 copy pdata ,timeup 
+0x4e67 011400 copy temp ,pdata 
+0x4e68 011401 beq psm_sdp ,l2cap_proc_signal_connect_req_sdp 
+0x4e69 011402 beq psm_rfcomm ,l2cap_proc_signal_connect_req_rfcomm 
+0x4e6a 011403 beq psm_hid_control ,l2cap_proc_signal_connect_req_hid_ctrl 
+0x4e6b 011404 beq psm_hid_interrupt ,l2cap_proc_signal_connect_req_hid_int 
+0x4e6c 011405 call l2cap_reject_command 
+0x4e6d 011406 branch l2cap_proc_signal_connect_req_rtn 
+:      011408 l2cap_proc_signal_connect_req_sdp:
+0x4e6e 011409 call save_cont_pointers 
+0x4e6f 011410 arg l2cap_sdp_channel ,temp 
+0x4e70 011411 fetch 2 ,mem_sdp_remote_cid 
+0x4e71 011412 nbranch already_connected ,blank 
+0x4e72 011413 copy timeup ,pdata 
+0x4e73 011414 store 2 ,mem_sdp_remote_cid 
+0x4e74 011415 copy clkn_bt ,pdata 
+0x4e75 011416 store 4 ,mem_l2cap_sdpres_delay_time 
+0x4e76 011417 call store_l2cap_req_param 
+0x4e77 011418 branch send_connection_pending 
+:      011420 store_l2cap_req_param:
+0x4e78 011421 storet 2 ,mem_psm 
+0x4e79 011422 deposit timeup 
+0x4e7a 011423 store 2 ,mem_scid 
+0x4e7b 011424 deposit rega 
+0x4e7c 011425 store 2 ,mem_cmd_length 
+0x4e7d 011426 deposit regb 
+0x4e7e 011427 store 2 ,mem_tt2 
+0x4e7f 011428 deposit regc 
+0x4e80 011429 store 2 ,mem_tt3 
+0x4e81 011430 deposit queue 
+0x4e82 011431 store 2 ,mem_id 
+0x4e83 011432 rtn 
+:      011434 restore_l2cap_req_param:
+0x4e84 011435 fetcht 2 ,mem_psm 
+0x4e85 011436 fetch 2 ,mem_scid 
+0x4e86 011437 copy pdata ,timeup 
+0x4e87 011438 fetch 2 ,mem_cmd_length 
+0x4e88 011439 copy pdata ,rega 
+0x4e89 011440 fetch 2 ,mem_tt2 
+0x4e8a 011441 copy pdata ,regb 
+0x4e8b 011442 fetch 2 ,mem_tt3 
+0x4e8c 011443 copy pdata ,regc 
+0x4e8d 011444 fetch 2 ,mem_id 
+0x4e8e 011445 copy pdata ,queue 
+0x4e8f 011446 rtn 
+:      011448 l2cap_proc_signal_connect_req_rfcomm:
+0x4e90 011449 call save_cont_pointers 
+0x4e91 011450 setarg l2cap_rfcomm_channel 
+0x4e92 011451 arg l2cap_rfcomm_channel ,temp 
+0x4e93 011452 fetch 2 ,mem_rfcomm_remote_cid 
+0x4e94 011453 nbranch already_connected ,blank 
+0x4e95 011454 copy timeup ,pdata 
+0x4e96 011455 store 2 ,mem_rfcomm_remote_cid 
+0x4e97 011456 fetch 1 ,mem_rfcomm_state 
+0x4e98 011457 set1 l2cap_channel_state_conn_req ,pdata 
+0x4e99 011458 set1 l2cap_channel_state_conn_res ,pdata 
+0x4e9a 011459 store 1 ,mem_rfcomm_state 
+0x4e9b 011460 branch send_connection_res 
+:      011461 l2cap_proc_signal_connect_req_hid_ctrl:
+0x4e9c 011462 call save_cont_pointers 
+0x4e9d 011463 arg l2cap_hid_control_channel ,temp 
+0x4e9e 011464 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4e9f 011465 nbranch already_connected ,blank 
+0x4ea0 011466 copy timeup ,pdata 
+0x4ea1 011467 store 2 ,mem_hid_ctrl_remote_cid 
+0x4ea2 011468 fetch 1 ,mem_hid_control_state 
+0x4ea3 011469 set1 l2cap_channel_state_conn_req ,pdata 
+0x4ea4 011470 set1 l2cap_channel_state_conn_res ,pdata 
+0x4ea5 011471 store 1 ,mem_hid_control_state 
+0x4ea6 011472 branch send_connection_res 
+:      011473 l2cap_proc_signal_connect_req_hid_int:
+0x4ea7 011474 call save_cont_pointers 
+0x4ea8 011475 deposit clke 
+0x4ea9 011476 arg l2cap_hid_interrupt_channel ,temp 
+0x4eaa 011477 fetch 2 ,mem_hid_int_remote_cid 
+0x4eab 011478 nbranch already_connected ,blank 
+0x4eac 011479 copy timeup ,pdata 
+0x4ead 011480 store 2 ,mem_hid_int_remote_cid 
+0x4eae 011481 fetch 1 ,mem_hid_interrupt_state 
+0x4eaf 011482 set1 l2cap_channel_state_conn_req ,pdata 
+0x4eb0 011483 set1 l2cap_channel_state_conn_res ,pdata 
+0x4eb1 011484 store 1 ,mem_hid_interrupt_state 
+0x4eb2 011485 branch send_connection_res 
+:      011487 send_connection_pending:
+0x4eb3 011488 setarg l2cap_connect_pending 
+0x4eb4 011489 store 2 ,meml2cap_t1 
+0x4eb5 011490 jam l2cap_sdp_channel ,mem_l2cap_pending_item 
+0x4eb6 011491 branch send_connection_res0 
+:      011492 send_connection_sdp_res:
+0x4eb7 011493 fetch 1 ,mem_sdp_state 
+0x4eb8 011494 set1 l2cap_channel_state_conn_req ,pdata 
+0x4eb9 011495 set1 l2cap_channel_state_conn_res ,pdata 
+0x4eba 011496 store 1 ,mem_sdp_state 
+:      011497 send_connection_res:
+0x4ebb 011498 setarg l2cap_connect_successful 
+0x4ebc 011499 store 2 ,meml2cap_t1 
+:      011500 send_connection_res0:
+0x4ebd 011501 set1 mark_ext_patch ,mark 
+0x4ebe 011502 bpatch patch23_4 ,mem_patch23 
+0x4ebf 011503 call load_cont_pointers 
+0x4ec0 011504 setarg signal_connect_rsp 
+0x4ec1 011505 istore 1 ,contw 
+0x4ec2 011506 copy queue ,pdata 
+0x4ec3 011507 istore 1 ,contw 
+0x4ec4 011508 setarg 0x0008 
+0x4ec5 011509 istore 2 ,contw 
+0x4ec6 011510 copy temp ,pdata 
+0x4ec7 011511 istore 2 ,contw 
+0x4ec8 011512 copy timeup ,pdata 
+0x4ec9 011513 istore 2 ,contw 
+0x4eca 011514 fetch 2 ,meml2cap_t1 
+0x4ecb 011515 beq l2cap_connect_pending ,connect_pending 
+0x4ecc 011516 isolate0 0 ,debug 
+0x4ecd 011517 branch connect_suc ,true 
+0x4ece 011518 setarg l2cap_connect_refused_no_resources 
+:      011519 connect_suc:
+0x4ecf 011520 istore 2 ,contw 
+0x4ed0 011521 force 0x0000 ,pdata 
+0x4ed1 011522 istore 2 ,contw 
+0x4ed2 011523 setarg 12 
+0x4ed3 011524 branch connect_req_update_byte_counts 
+:      011525 connect_pending:
+0x4ed4 011526 istore 2 ,contw 
+0x4ed5 011527 force 0x0002 ,pdata 
+0x4ed6 011528 istore 2 ,contw 
+0x4ed7 011529 setarg 12 
+0x4ed8 011530 branch connect_req_update_byte_counts 
+:      011532 already_connected:
+0x4ed9 011533 set1 0 ,debug 
+0x4eda 011534 branch send_connection_res 
+:      011535 connect_req_update_byte_counts:
+0x4edb 011536 iadd regb ,regb 
+0x4edc 011537 copy regc ,pdata 
+0x4edd 011538 isub rega ,regc 
+0x4ede 011539 branch l2cap_proc_signal_connect_req_rtn 
+:      011540 l2cap_proc_signal_connect_req_rtn:
+0x4edf 011541 branch l2cap_process_one_signal_rtn 
+:      011543 l2cap_proc_signal_connect_rsp:
+0x4ee0 011544 ifetch 1 ,contr 
+0x4ee1 011545 copy pdata ,queue 
+0x4ee2 011546 ifetch 2 ,contr 
+0x4ee3 011547 copy pdata ,rega 
+0x4ee4 011548 copy regc ,pdata 
+0x4ee5 011549 isub rega ,regc 
+0x4ee6 011550 ifetch 2 ,contr 
+0x4ee7 011551 copy pdata ,timeup 
+0x4ee8 011552 ifetch 2 ,contr 
+0x4ee9 011553 copy pdata ,temp 
+0x4eea 011554 setarg l2cap_sdp_channel 
+0x4eeb 011555 isub temp ,null 
+0x4eec 011556 branch l2cap_proc_signal_connect_rsp_sdp ,zero 
+0x4eed 011557 setarg l2cap_rfcomm_channel 
+0x4eee 011558 isub temp ,null 
+0x4eef 011559 branch l2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x4ef0 011560 setarg l2cap_hid_control_channel 
+0x4ef1 011561 isub temp ,null 
+0x4ef2 011562 branch l2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x4ef3 011563 setarg l2cap_hid_interrupt_channel 
+0x4ef4 011564 isub temp ,null 
+0x4ef5 011565 branch l2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x4ef6 011566 rtn 
+:      011568 l2cap_proc_signal_connect_rsp_sdp:
+0x4ef7 011569 copy timeup ,pdata 
+0x4ef8 011570 store 2 ,mem_sdp_remote_cid 
+0x4ef9 011571 fetch 1 ,mem_sdp_state 
+0x4efa 011572 set1 l2cap_channel_state_conn_res ,pdata 
+0x4efb 011573 store 1 ,mem_sdp_state 
+0x4efc 011574 branch l2cap_process_one_signal_rtn 
+:      011575 l2cap_proc_signal_connect_rsp_rfcomm:
+0x4efd 011576 copy timeup ,pdata 
+0x4efe 011577 store 2 ,mem_rfcomm_remote_cid 
+0x4eff 011578 fetch 1 ,mem_rfcomm_state 
+0x4f00 011579 set1 l2cap_channel_state_conn_res ,pdata 
+0x4f01 011580 store 1 ,mem_rfcomm_state 
+0x4f02 011581 rtn 
+:      011582 l2cap_proc_signal_connect_rsp_hid_int:
+0x4f03 011583 copy timeup ,pdata 
+0x4f04 011584 store 2 ,mem_hid_ctrl_remote_cid 
+0x4f05 011585 fetch 1 ,mem_hid_interrupt_state 
+0x4f06 011586 set1 l2cap_channel_state_conn_res ,pdata 
+0x4f07 011587 store 1 ,mem_hid_interrupt_state 
+0x4f08 011588 rtn 
+:      011589 l2cap_proc_signal_connect_rsp_hid_ctrl:
+0x4f09 011590 copy timeup ,pdata 
+0x4f0a 011591 store 2 ,mem_hid_int_remote_cid 
+0x4f0b 011592 fetch 1 ,mem_hid_control_state 
+0x4f0c 011593 set1 l2cap_channel_state_conn_res ,pdata 
+0x4f0d 011594 store 1 ,mem_hid_control_state 
+0x4f0e 011595 rtn 
+:      011597 l2cap_proc_signal_config_req:
+0x4f0f 011598 ifetch 1 ,contr 
+0x4f10 011599 copy pdata ,queue 
+0x4f11 011600 ifetch 2 ,contr 
+0x4f12 011601 copy pdata ,rega 
+0x4f13 011602 copy regc ,pdata 
+0x4f14 011603 isub rega ,regc 
+0x4f15 011604 ifetch 2 ,contr 
+0x4f16 011605 copy pdata ,temp 
+0x4f17 011606 copy temp ,rega 
+0x4f18 011607 setarg l2cap_sdp_channel 
+0x4f19 011608 isub temp ,null 
+0x4f1a 011609 branch l2cap_proc_signal_config_req_sdp ,zero 
+0x4f1b 011610 setarg l2cap_rfcomm_channel 
+0x4f1c 011611 isub temp ,null 
+0x4f1d 011612 branch l2cap_proc_signal_config_req_rfcomm ,zero 
+0x4f1e 011613 setarg l2cap_hid_control_channel 
+0x4f1f 011614 isub temp ,null 
+0x4f20 011615 branch l2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x4f21 011616 setarg l2cap_hid_interrupt_channel 
+0x4f22 011617 isub temp ,null 
+0x4f23 011618 branch l2cap_proc_signal_config_req_hid_int ,zero 
+0x4f24 011619 branch l2cap_reject_command 
+:      011621 l2cap_proc_signal_config_req_sdp:
+0x4f25 011622 copy contw ,timeup 
+0x4f26 011623 fetch 1 ,mem_sdp_state 
+0x4f27 011624 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4f28 011625 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4f29 011627 store 1 ,mem_sdp_state 
+0x4f2a 011628 copy timeup ,contw 
+0x4f2b 011629 arg l2cap_sdp_channel ,timeup 
+0x4f2c 011630 fetch 2 ,mem_sdp_remote_cid 
+0x4f2d 011631 copy pdata ,temp 
+0x4f2e 011632 branch l2cap_send_config_rsp 
+:      011633 l2cap_proc_signal_config_req_hid_ctrl:
+0x4f2f 011634 copy contw ,timeup 
+0x4f30 011635 fetch 1 ,mem_hid_control_state 
+0x4f31 011636 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4f32 011637 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4f33 011639 store 1 ,mem_hid_control_state 
+0x4f34 011640 copy timeup ,contw 
+0x4f35 011641 arg l2cap_hid_control_channel ,timeup 
+0x4f36 011642 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4f37 011643 copy pdata ,temp 
+0x4f38 011644 branch l2cap_send_config_rsp 
+:      011645 l2cap_proc_signal_config_req_hid_int:
+0x4f39 011646 copy contw ,timeup 
+0x4f3a 011647 fetch 1 ,mem_hid_interrupt_state 
+0x4f3b 011648 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4f3c 011649 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4f3d 011651 store 1 ,mem_hid_interrupt_state 
+0x4f3e 011652 copy timeup ,contw 
+0x4f3f 011653 arg l2cap_hid_interrupt_channel ,timeup 
+0x4f40 011654 fetch 2 ,mem_hid_int_remote_cid 
+0x4f41 011655 copy pdata ,temp 
+0x4f42 011656 branch l2cap_send_config_rsp 
+:      011657 l2cap_proc_signal_config_req_rfcomm:
+0x4f43 011658 copy contw ,timeup 
+0x4f44 011659 fetch 1 ,mem_rfcomm_state 
+0x4f45 011660 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4f46 011661 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4f47 011663 store 1 ,mem_rfcomm_state 
+0x4f48 011665 copy timeup ,contw 
+0x4f49 011666 arg l2cap_rfcomm_channel ,timeup 
+0x4f4a 011667 fetch 2 ,mem_rfcomm_remote_cid 
+0x4f4b 011668 copy pdata ,temp 
+:      011669 l2cap_send_config_rsp:
+0x4f4c 011670 set1 mark_ext_patch ,mark 
+0x4f4d 011671 bpatch patch23_5 ,mem_patch23 
+0x4f4e 011672 setarg signal_config_rsp 
+0x4f4f 011673 istore 1 ,contw 
+0x4f50 011674 copy queue ,pdata 
+0x4f51 011675 istore 1 ,contw 
+0x4f52 011676 setarg 0x0006 
+0x4f53 011677 istore 2 ,contw 
+0x4f54 011678 copy temp ,pdata 
+0x4f55 011679 istore 2 ,contw 
+0x4f56 011680 force 0x00 ,pdata 
+0x4f57 011681 istore 2 ,contw 
+0x4f58 011682 force l2cap_config_success ,pdata 
+0x4f59 011683 istore 2 ,contw 
+0x4f5a 011684 force 10 ,pdata 
+0x4f5b 011685 iadd regb ,regb 
+0x4f5c 011687 storet 2 ,mem_config_req_dest_cid 
+0x4f5d 011688 copy queue ,pdata 
+0x4f5e 011689 store 1 ,mem_config_identifier 
+0x4f5f 011690 force l2cap_sdp_channel ,pdata 
+0x4f60 011691 icompare 0xff ,timeup 
+0x4f61 011692 branch l2cap_send_config_rsp_is_sdp ,true 
+0x4f62 011693 increase 1 ,pdata 
+:      011694 l2cap_send_config_rsp_is_sdp:
+0x4f63 011696 rtn 
+:      011697 l2cap_check_channel_state:
+0x4f64 011698 disable user 
+0x4f65 011699 rtnbit1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x4f66 011700 rtnbit0 l2cap_channel_state_conn_req ,pdata 
+0x4f67 011701 rtnbit0 l2cap_channel_state_conn_res ,pdata 
+0x4f68 011702 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x4f69 011703 copy contr ,contw 
+0x4f6a 011704 increase -1 ,contw 
+0x4f6b 011705 istore 1 ,contw 
+0x4f6c 011706 enable user 
+0x4f6d 011707 rtn 
+:      011708 l2cap_send_config_req:
+:      011709 l2cap_send_config_req_sdp:
+0x4f6e 011710 fetch 1 ,mem_sdp_state 
+0x4f6f 011711 call l2cap_check_channel_state 
+0x4f70 011712 nbranch l2cap_send_config_req_rfcomm ,user 
+0x4f71 011713 jam l2cap_sdp_channel ,mem_send_config_req 
+0x4f72 011714 fetch 2 ,mem_sdp_remote_cid 
+0x4f73 011715 store 2 ,mem_config_req_dest_cid 
+0x4f74 011716 branch l2cap_generate_config_req 
+:      011717 l2cap_send_config_req_rfcomm:
+0x4f75 011718 fetch 1 ,mem_rfcomm_state 
+0x4f76 011719 call l2cap_check_channel_state 
+0x4f77 011720 nbranch l2cap_send_config_req_hid_ctrl ,user 
+0x4f78 011721 jam l2cap_rfcomm_channel ,mem_send_config_req 
+0x4f79 011722 fetch 2 ,mem_rfcomm_remote_cid 
+0x4f7a 011723 store 2 ,mem_config_req_dest_cid 
+0x4f7b 011724 branch l2cap_generate_config_req 
+:      011725 l2cap_send_config_req_hid_ctrl:
+0x4f7c 011726 fetch 1 ,mem_hid_control_state 
+0x4f7d 011727 call l2cap_check_channel_state 
+0x4f7e 011728 nbranch l2cap_send_config_req_hid_int ,user 
+0x4f7f 011729 jam l2cap_hid_control_channel ,mem_send_config_req 
+0x4f80 011730 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4f81 011731 store 2 ,mem_config_req_dest_cid 
+0x4f82 011732 branch l2cap_generate_config_req 
+:      011733 l2cap_send_config_req_hid_int:
+0x4f83 011734 fetch 1 ,mem_hid_interrupt_state 
+0x4f84 011735 call l2cap_check_channel_state 
+0x4f85 011736 nrtn user 
+0x4f86 011737 jam l2cap_hid_interrupt_channel ,mem_send_config_req 
+0x4f87 011738 fetch 2 ,mem_hid_int_remote_cid 
+0x4f88 011739 store 2 ,mem_config_req_dest_cid 
+:      011742 l2cap_generate_config_req:
+0x4f89 011743 set1 mark_ext_patch ,mark 
+0x4f8a 011744 bpatch patch23_6 ,mem_patch23 
+0x4f8b 011745 call l2cap_get_req_id 
+0x4f8c 011746 call l2cap_malloc_signal_channel 
+0x4f8d 011747 force 0 ,regb 
+0x4f8e 011748 call l2cap_get_signal_tx_payload 
+0x4f8f 011749 force signal_config_req ,pdata 
+0x4f90 011750 istore 1 ,contw 
+0x4f91 011751 fetch 1 ,mem_ml2cap_comm_id 
+0x4f92 011752 istore 1 ,contw 
+0x4f93 011753 setarg 0x0008 
+0x4f94 011754 istore 2 ,contw 
+0x4f95 011755 fetch 2 ,mem_config_req_dest_cid 
+0x4f96 011756 istore 2 ,contw 
+0x4f97 011757 setarg 0x0000 
+0x4f98 011758 istore 2 ,contw 
+0x4f99 011759 force 1 ,pdata 
+0x4f9a 011760 istore 1 ,contw 
+0x4f9b 011761 force 2 ,pdata 
+0x4f9c 011762 istore 1 ,contw 
+0x4f9d 011763 fetch 1 ,mem_send_config_req 
+0x4f9e 011764 beq l2cap_rfcomm_channel ,l2cap_generate_config_req_rfcomm 
+0x4f9f 011765 setarg l2cap_config_mtu_sdp 
+0x4fa0 011766 istore 2 ,contw 
+0x4fa1 011767 branch l2cap_generate_config_req_done 
+:      011768 l2cap_generate_config_req_rfcomm:
+0x4fa2 011769 setarg l2cap_config_mtu_rfcomm 
+0x4fa3 011770 istore 2 ,contw 
+:      011771 l2cap_generate_config_req_done:
+0x4fa4 011772 arg 0x0c ,temp 
+0x4fa5 011773 storet 2 ,mem_l2cap_signal_tx_length 
+0x4fa6 011774 call l2cap_get_signal_tx_buff 
+0x4fa7 011775 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4fa8 011776 istore 2 ,contw 
+0x4fa9 011777 force l2cap_signal_channel ,pdata 
+0x4faa 011778 istore 2 ,contw 
+0x4fab 011779 jam 0 ,mem_send_config_req 
+:      011780 l2cap_proc_signal_config_req_rtn:
+0x4fac 011781 branch l2cap_process_one_signal_rtn 
+:      011783 l2cap_proc_signal_config_rsp:
+0x4fad 011784 increase 1 ,contr 
+0x4fae 011785 ifetch 2 ,contr 
+0x4faf 011786 copy pdata ,rega 
+0x4fb0 011787 copy regc ,pdata 
+0x4fb1 011788 isub rega ,regc 
+0x4fb2 011789 ifetch 2 ,contr 
+0x4fb3 011790 copy pdata ,rega 
+0x4fb4 011791 setarg l2cap_sdp_channel 
+0x4fb5 011792 isub rega ,null 
+0x4fb6 011793 branch l2cap_proc_signal_config_rsp_sdp ,zero 
+0x4fb7 011794 setarg l2cap_rfcomm_channel 
+0x4fb8 011795 isub rega ,null 
+0x4fb9 011796 branch l2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x4fba 011797 setarg l2cap_hid_control_channel 
+0x4fbb 011798 isub rega ,null 
+0x4fbc 011799 branch l2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x4fbd 011800 setarg l2cap_hid_interrupt_channel 
+0x4fbe 011801 isub rega ,null 
+0x4fbf 011802 branch l2cap_proc_signal_config_rsp_hid_int ,zero 
+0x4fc0 011803 increase 2 ,contr 
+0x4fc1 011804 ifetch 2 ,contr 
+0x4fc2 011805 iforce null 
+0x4fc3 011806 branch l2cap_process_one_signal_rtn 
+:      011807 l2cap_proc_signal_config_rsp_sdp:
+0x4fc4 011808 fetch 1 ,mem_sdp_state 
+0x4fc5 011809 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4fc6 011810 store 1 ,mem_sdp_state 
+0x4fc7 011811 branch l2cap_process_one_signal_rtn 
+:      011812 l2cap_proc_signal_config_rsp_rfcomm:
+0x4fc8 011813 fetch 1 ,mem_rfcomm_state 
+0x4fc9 011814 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4fca 011815 store 1 ,mem_rfcomm_state 
+0x4fcb 011816 branch l2cap_process_one_signal_rtn 
+:      011817 l2cap_proc_signal_config_rsp_hid_ctrl:
+0x4fcc 011818 fetch 1 ,mem_hid_control_state 
+0x4fcd 011819 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4fce 011820 store 1 ,mem_hid_control_state 
+0x4fcf 011821 branch l2cap_process_one_signal_rtn 
+:      011822 l2cap_proc_signal_config_rsp_hid_int:
+0x4fd0 011823 fetch 1 ,mem_hid_interrupt_state 
+0x4fd1 011824 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4fd2 011825 store 1 ,mem_hid_interrupt_state 
+0x4fd3 011826 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x4fd4 011827 branch ui_ipc_send_event 
+:      011831 l2cap_proc_signal_disconnect_req:
+0x4fd5 011832 ifetch 1 ,contr 
+0x4fd6 011833 copy pdata ,queue 
+0x4fd7 011834 ifetch 2 ,contr 
+0x4fd8 011835 copy pdata ,rega 
+0x4fd9 011836 copy regc ,pdata 
+0x4fda 011837 isub rega ,regc 
+0x4fdb 011838 ifetch 2 ,contr 
+0x4fdc 011839 copy pdata ,rega 
+0x4fdd 011840 ifetch 2 ,contr 
+0x4fde 011841 copy pdata ,timeup 
+0x4fdf 011842 copy rega ,temp 
+0x4fe0 011843 call save_cont_pointers 
+0x4fe1 011844 setarg l2cap_sdp_channel 
+0x4fe2 011845 isub temp ,null 
+0x4fe3 011846 branch l2cap_proc_signal_disconnect_req_sdp ,zero 
+0x4fe4 011847 setarg l2cap_rfcomm_channel 
+0x4fe5 011848 isub temp ,null 
+0x4fe6 011849 branch l2cap_proc_signal_disconnect_req_rfcomm ,zero 
+0x4fe7 011850 setarg l2cap_hid_control_channel 
+0x4fe8 011851 isub temp ,null 
+0x4fe9 011852 branch l2cap_proc_signal_disconnect_req_hid_ctrl ,zero 
+0x4fea 011853 setarg l2cap_hid_interrupt_channel 
+0x4feb 011854 isub temp ,null 
+0x4fec 011855 branch l2cap_proc_signal_disconnect_req_hid_int ,zero 
+0x4fed 011856 call l2cap_reject_command 
+0x4fee 011857 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      011858 l2cap_proc_signal_disconnect_req_hid_ctrl:
+0x4fef 011859 copy timeup ,temp 
+0x4ff0 011860 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4ff1 011861 isub temp ,null 
+0x4ff2 011862 branch l2cap_disconnect_hid_control_now ,zero 
+0x4ff3 011863 call l2cap_reject_command 
+0x4ff4 011864 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      011865 l2cap_proc_signal_disconnect_req_hid_int:
+0x4ff5 011866 copy timeup ,temp 
+0x4ff6 011867 fetch 2 ,mem_hid_int_remote_cid 
+0x4ff7 011868 isub temp ,null 
+0x4ff8 011869 branch l2cap_disconnect_hid_interrupt_now ,zero 
+0x4ff9 011870 call l2cap_reject_command 
+0x4ffa 011871 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      011873 l2cap_proc_signal_disconnect_req_sdp:
+0x4ffb 011874 copy timeup ,temp 
+0x4ffc 011875 fetch 2 ,mem_sdp_remote_cid 
+0x4ffd 011876 isub temp ,null 
+0x4ffe 011877 branch l2cap_disconnect_sdp_now ,zero 
+0x4fff 011878 call l2cap_reject_command 
+0x5000 011879 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      011880 l2cap_disconnect_hid_control_now:
+0x5001 011881 call l2cap_reset_hid_ctrl_state 
+0x5002 011882 branch l2cap_send_disconnect_rsp_pkt 
+:      011883 l2cap_disconnect_hid_interrupt_now:
+0x5003 011884 call l2cap_reset_hid_int_state 
+0x5004 011885 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x5005 011886 branch l2cap_send_disconnect_rsp_pkt ,blank 
+0x5006 011894 branch l2cap_send_disconnect_rsp_pkt 
+:      011896 l2cap_disconnect_sdp_now:
+0x5007 011897 call l2cap_reset_sdp_channel_state 
+0x5008 011898 fetch 1 ,mem_upper_sm_ss 
+0x5009 011899 nbranch l2cap_send_disconnect_rsp_pkt ,blank 
+0x500a 011902 branch l2cap_send_disconnect_rsp_pkt 
+:      011903 l2cap_proc_signal_disconnect_req_rfcomm:
+0x500b 011904 copy timeup ,temp 
+0x500c 011905 fetch 2 ,mem_rfcomm_remote_cid 
+0x500d 011906 isub temp ,null 
+0x500e 011907 branch l2cap_disconnect_rfcomm_now ,zero 
+0x500f 011908 call l2cap_reject_command 
+0x5010 011909 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      011910 l2cap_disconnect_rfcomm_now:
+0x5011 011911 call l2cap_reset_rfcomm_channel_state 
+0x5012 011912 branch l2cap_send_disconnect_rsp_pkt 
+:      011913 l2cap_send_disconnect_rsp_pkt:
+0x5013 011914 call load_cont_pointers 
+0x5014 011915 setarg signal_disconnect_rsp 
+0x5015 011916 istore 1 ,contw 
+0x5016 011917 copy queue ,pdata 
+0x5017 011918 istore 1 ,contw 
+0x5018 011919 setarg 0x0004 
+0x5019 011920 istore 2 ,contw 
+0x501a 011921 copy rega ,pdata 
+0x501b 011922 istore 2 ,contw 
+0x501c 011923 copy timeup ,pdata 
+0x501d 011924 istore 2 ,contw 
+0x501e 011925 force 8 ,pdata 
+0x501f 011926 branch l2cap_proc_signal_disconnect_req_rtn 
+:      011927 l2cap_proc_signal_disconnect_req_err_rtn:
+0x5020 011928 call load_cont_pointers 
+0x5021 011929 branch l2cap_proc_signal_disconnect_req_rtn 
+:      011930 l2cap_proc_signal_disconnect_req_rtn:
+0x5022 011931 iadd regb ,regb 
+0x5023 011932 branch l2cap_process_one_signal_rtn 
+:      011933 l2cap_proc_signal_disconnect_rsp:
+0x5024 011934 ifetch 1 ,contr 
+0x5025 011935 copy pdata ,queue 
+0x5026 011936 ifetch 2 ,contr 
+0x5027 011937 copy pdata ,rega 
+0x5028 011938 copy regc ,pdata 
+0x5029 011939 isub rega ,regc 
+0x502a 011940 ifetch 2 ,contr 
+0x502b 011941 copy pdata ,timeup 
+0x502c 011942 ifetch 2 ,contr 
+0x502d 011943 copy pdata ,temp 
+0x502e 011944 call save_cont_pointers 
+0x502f 011945 setarg l2cap_sdp_channel 
+0x5030 011946 isub temp ,null 
+0x5031 011947 branch l2cap_proc_signal_disconnect_rsp_sdp ,zero 
+0x5032 011948 setarg l2cap_rfcomm_channel 
+0x5033 011949 isub temp ,null 
+0x5034 011950 branch l2cap_proc_signal_disconnect_rsp_rfcomm ,zero 
+0x5035 011951 setarg l2cap_hid_control_channel 
+0x5036 011952 isub temp ,null 
+0x5037 011953 branch l2cap_proc_signal_disconnect_rsp_hid_ctrl ,zero 
+0x5038 011954 setarg l2cap_hid_interrupt_channel 
+0x5039 011955 isub temp ,null 
+0x503a 011956 branch l2cap_proc_signal_disconnect_rsp_hid_int ,zero 
+0x503b 011957 call l2cap_reject_command 
+0x503c 011958 branch l2cap_proc_signal_disconnect_rsp_err_rtn 
+:      011959 l2cap_proc_signal_disconnect_rsp_sdp:
+0x503d 011960 copy temp ,rega 
+0x503e 011961 copy timeup ,temp 
+0x503f 011962 fetch 2 ,mem_sdp_remote_cid 
+0x5040 011963 isub temp ,null 
+0x5041 011964 call l2cap_reset_sdp_channel_state ,zero 
+0x5042 011965 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      011966 l2cap_proc_signal_disconnect_rsp_rfcomm:
+0x5043 011967 copy temp ,rega 
+0x5044 011968 copy timeup ,temp 
+0x5045 011969 fetch 2 ,mem_rfcomm_remote_cid 
+0x5046 011970 isub temp ,null 
+0x5047 011971 call l2cap_reset_rfcomm_channel_state ,zero 
+0x5048 011972 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      011973 l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+0x5049 011974 copy temp ,rega 
+0x504a 011975 copy timeup ,temp 
+0x504b 011976 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x504c 011977 isub temp ,null 
+0x504d 011978 call l2cap_reset_hid_ctrl_state ,zero 
+0x504e 011979 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      011980 l2cap_proc_signal_disconnect_rsp_hid_int:
+0x504f 011981 copy temp ,rega 
+0x5050 011982 copy timeup ,temp 
+0x5051 011983 fetch 2 ,mem_hid_int_remote_cid 
+0x5052 011984 isub temp ,null 
+0x5053 011985 call l2cap_reset_hid_int_state ,zero 
+0x5054 011986 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      011987 l2cap_proc_signal_disconnect_rsp_rtn:
+0x5055 011988 call load_cont_pointers 
+0x5056 011989 branch l2cap_process_one_signal_rtn 
+:      011990 l2cap_proc_signal_disconnect_rsp_err_rtn:
+0x5057 011991 branch l2cap_process_one_signal_rtn 
+:      011994 l2cap_proc_signal_echo_req:
+0x5058 011995 ifetch 1 ,contr 
+0x5059 011996 copy pdata ,queue 
+0x505a 011997 ifetch 2 ,contr 
+0x505b 011998 copy pdata ,rega 
+0x505c 011999 iadd contr ,contr 
+0x505d 012000 setarg 9 
+0x505e 012001 istore 1 ,contw 
+0x505f 012002 copy queue ,pdata 
+0x5060 012003 istore 1 ,contw 
+0x5061 012004 force 0x0000 ,pdata 
+0x5062 012005 istore 2 ,contw 
+0x5063 012006 force 4 ,pdata 
+0x5064 012007 iadd regb ,regb 
+0x5065 012008 copy regc ,pdata 
+0x5066 012009 isub rega ,regc 
+0x5067 012010 branch l2cap_process_one_signal_rtn 
+:      012011 l2cap_proc_signal_echo_rsp:
+0x5068 012012 branch l2cap_process_one_signal_rtn 
+:      012014 l2cap_proc_signal_info_rsp:
+0x5069 012015 branch l2cap_process_one_signal_rtn 
+:      012016 l2cap_reject_command:
+0x506a 012017 force 0 ,regb 
+0x506b 012018 call l2cap_get_signal_tx_payload 
+0x506c 012019 setarg signal_cmd_reject 
+0x506d 012020 istore 1 ,contw 
+0x506e 012021 copy queue ,pdata 
+0x506f 012022 istore 1 ,contw 
+0x5070 012023 setarg 2 
+0x5071 012024 istore 2 ,contw 
+0x5072 012025 setarg cmd_not_understood 
+0x5073 012026 istore 2 ,contw 
+0x5074 012027 increase 6 ,regb 
+0x5075 012028 arg 4 ,regc 
+0x5076 012029 branch l2cap_process_one_signal_rtn 
+:      012033 l2cap_reset_rfcomm_channel_state:
+0x5077 012034 setarg 0 
+0x5078 012035 store 2 ,mem_rfcomm_tx_pkt_length 
+0x5079 012036 store 2 ,mem_rfcomm_remote_cid 
+0x507a 012037 jam 0 ,mem_rfcomm_state 
+0x507b 012038 rtn 
+:      012039 l2cap_reset_sdp_channel_state:
+0x507c 012040 setarg 0 
+0x507d 012041 store 2 ,mem_sdp_tx_pkt_length 
+0x507e 012042 store 2 ,mem_sdp_remote_cid 
+0x507f 012043 jam 0 ,mem_sdp_state 
+0x5080 012044 rtn 
+:      012045 l2cap_reset_hid_ctrl_state:
+0x5081 012046 setarg 0 
+0x5082 012047 store 2 ,mem_hid_ctrl_remote_cid 
+0x5083 012048 jam 0 ,mem_hid_control_state 
+0x5084 012049 fetch 1 ,mem_hid_interrupt_state 
+0x5085 012050 beq 0 ,l2cap_reset_hid_disconnected 
+0x5086 012051 rtn 
+:      012053 l2cap_reset_hid_int_state:
+0x5087 012054 setarg 0 
+0x5088 012055 store 2 ,mem_hid_int_remote_cid 
+0x5089 012056 jam 0 ,mem_hid_interrupt_state 
+0x508a 012057 fetch 1 ,mem_hid_control_state 
+0x508b 012058 beq 0 ,l2cap_reset_hid_disconnected 
+0x508c 012059 rtn 
+:      012061 l2cap_reset_hid_disconnected:
+0x508d 012062 jam bt_evt_hid_disconnected ,mem_fifo_temp 
+0x508e 012063 branch ui_ipc_send_event 
+:      012065 l2cap_disconnect_interrupt_req:
+0x508f 012066 fetch 1 ,mem_control_tasks 
+0x5090 012067 set0 l2cap_disconnect_interrupt ,pdata 
+0x5091 012068 store 1 ,mem_control_tasks 
+0x5092 012069 fetch 2 ,mem_hid_int_remote_cid 
+0x5093 012070 rtn blank 
+0x5094 012071 call l2cap_malloc_signal_channel 
+0x5095 012072 fetch 2 ,mem_hid_int_remote_cid 
+0x5096 012073 copy pdata ,rega 
+0x5097 012074 force l2cap_hid_interrupt_channel ,regb 
+0x5098 012075 branch l2cap_generate_disconnect_req 
+:      012076 l2cap_disconnect_control_req:
+0x5099 012077 fetch 1 ,mem_control_tasks 
+0x509a 012078 set0 l2cap_disconnect_control ,pdata 
+0x509b 012079 store 1 ,mem_control_tasks 
+0x509c 012080 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x509d 012081 rtn blank 
+0x509e 012082 call l2cap_malloc_signal_channel 
+0x509f 012083 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x50a0 012084 copy pdata ,rega 
+0x50a1 012085 force l2cap_hid_control_channel ,regb 
+:      012086 l2cap_generate_disconnect_req:
+0x50a2 012087 call l2cap_get_req_id 
+0x50a3 012088 call l2cap_get_signal_tx_payload 
+0x50a4 012089 force signal_disconnect_req ,pdata 
+0x50a5 012090 istore 1 ,contw 
+0x50a6 012091 fetch 1 ,mem_ml2cap_comm_id 
+0x50a7 012092 istore 1 ,contw 
+0x50a8 012093 setarg 0x0004 
+0x50a9 012094 istore 2 ,contw 
+0x50aa 012095 copy rega ,pdata 
+0x50ab 012096 istore 2 ,contw 
+0x50ac 012097 copy regb ,pdata 
+0x50ad 012098 istore 2 ,contw 
+0x50ae 012099 force 0x08 ,temp 
+0x50af 012100 branch ml2cap_send_signal 
+:      012102 ml2cap_send_signal_connect_req:
+0x50b0 012103 set1 mark_ext_patch ,mark 
+0x50b1 012104 bpatch patch23_7 ,mem_patch23 
+0x50b2 012105 call l2cap_get_req_id 
+0x50b3 012106 call l2cap_get_signal_tx_payload 
+0x50b4 012107 setarg signal_connect_req 
+0x50b5 012108 istore 1 ,contw 
+0x50b6 012109 fetch 1 ,mem_ml2cap_comm_id 
+0x50b7 012110 istore 1 ,contw 
+0x50b8 012111 setarg 0x0004 
+0x50b9 012112 istore 2 ,contw 
+0x50ba 012113 copy temp ,pdata 
+0x50bb 012114 istore 2 ,contw 
+0x50bc 012115 copy timeup ,pdata 
+0x50bd 012116 istore 2 ,contw 
+0x50be 012117 arg 8 ,temp 
+0x50bf 012118 branch ml2cap_send_signal 
+:      012119 ml2cap_send_signal_config_req:
+0x50c0 012120 set1 mark_ext_patch ,mark 
+0x50c1 012121 bpatch patch24_0 ,mem_patch24 
+0x50c2 012122 call l2cap_get_req_id 
+0x50c3 012123 call l2cap_get_signal_tx_payload 
+0x50c4 012124 setarg signal_config_req 
+0x50c5 012125 istore 1 ,contw 
+0x50c6 012126 fetch 1 ,mem_ml2cap_comm_id 
+0x50c7 012127 istore 1 ,contw 
+0x50c8 012128 setarg 0x0008 
+0x50c9 012129 istore 2 ,contw 
+0x50ca 012131 copy temp ,pdata 
+0x50cb 012133 istore 2 ,contw 
+0x50cc 012134 setarg 0x0000 
+0x50cd 012135 istore 2 ,contw 
+0x50ce 012136 setarg 0x01 
+0x50cf 012137 istore 1 ,contw 
+0x50d0 012138 setarg 0x02 
+0x50d1 012139 istore 1 ,contw 
+0x50d2 012140 setarg l2cap_config_mtu_rfcomm 
+0x50d3 012141 istore 2 ,contw 
+0x50d4 012142 arg 0xc ,temp 
+0x50d5 012143 branch ml2cap_send_signal 
+:      012144 ml2cap_send_signal_disconn_req:
+0x50d6 012145 set1 mark_ext_patch ,mark 
+0x50d7 012146 bpatch patch24_1 ,mem_patch24 
+0x50d8 012147 call l2cap_get_req_id 
+0x50d9 012148 call l2cap_get_signal_tx_payload 
+0x50da 012149 setarg signal_disconnect_req 
+0x50db 012150 istore 1 ,contw 
+0x50dc 012151 fetch 1 ,mem_ml2cap_comm_id 
+0x50dd 012152 increase 1 ,pdata 
+0x50de 012153 copy contw ,rega 
+0x50df 012154 store 1 ,mem_ml2cap_comm_id 
+0x50e0 012155 copy rega ,contw 
+0x50e1 012156 istore 1 ,contw 
+0x50e2 012157 setarg 0x0004 
+0x50e3 012158 istore 2 ,contw 
+0x50e4 012159 copy temp ,pdata 
+0x50e5 012160 istore 2 ,contw 
+0x50e6 012161 copy timeup ,pdata 
+0x50e7 012162 istore 2 ,contw 
+0x50e8 012163 arg 0x8 ,temp 
+:      012166 ml2cap_send_signal:
+0x50e9 012167 storet 2 ,mem_l2cap_signal_tx_length 
+0x50ea 012168 copy temp ,pdata 
+0x50eb 012169 branch l2cap_malloc_discard ,blank 
+0x50ec 012170 call l2cap_get_signal_tx_buff 
+0x50ed 012171 fetch 2 ,mem_l2cap_signal_tx_length 
+0x50ee 012172 istore 2 ,contw 
+0x50ef 012173 force l2cap_signal_channel ,pdata 
+0x50f0 012174 istore 2 ,contw 
+0x50f1 012175 rtn 
+:      012177 msdp_send_req_done:
+0x50f2 012178 fetch 2 ,mem_sdp_tx_pkt_length 
+0x50f3 012179 branch assert ,blank 
+0x50f4 012180 call l2cap_get_sdp_tx_buff 
+0x50f5 012181 fetch 2 ,mem_sdp_tx_pkt_length 
+0x50f6 012182 istore 2 ,contw 
+0x50f7 012183 fetch 2 ,mem_sdp_remote_cid 
+0x50f8 012184 istore 2 ,contw 
+0x50f9 012185 rtn 
+:      012186 ml2cap_rx_multiplexing:
+0x50fa 012187 set1 mark_ext_patch ,mark 
+0x50fb 012188 bpatch patch24_2 ,mem_patch24 
+0x50fc 012189 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x50fd 012190 branch l2cap_rx_reset_state ,blank 
+0x50fe 012191 fetch 1 ,mem_l2cap_rx_cid 
+0x50ff 012192 beq l2cap_signal_channel ,ml2cap_call_proc_signal 
+0x5100 012193 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+0x5101 012194 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x5102 012195 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x5103 012196 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x5104 012197 branch l2cap_rx_reset_state 
+:      012199 ml2cap_call_proc_signal:
+0x5105 012200 set1 mark_ext_patch ,mark 
+0x5106 012201 bpatch patch24_3 ,mem_patch24 
+0x5107 012202 call l2cap_malloc_signal_channel 
+0x5108 012203 force 0 ,regb 
+0x5109 012204 call l2cap_get_signal_tx_payload 
+0x510a 012205 copy pdata ,contw 
+0x510b 012206 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x510c 012207 copy pdata ,regc 
+0x510d 012208 fetch 2 ,mem_l2cap_payload_ptr 
+0x510e 012209 iforce contr 
+:      012210 ml2cap_proc_one_comm_loop:
+0x510f 012211 call ml2cap_proc_one_comm 
+0x5110 012212 increase -4 ,regc 
+0x5111 012213 nbranch ml2cap_proc_one_comm_loop ,zero 
+0x5112 012214 copy regb ,temp 
+0x5113 012215 call ml2cap_send_signal 
+0x5114 012216 branch l2cap_rx_reset_state 
+:      012218 ml2cap_proc_one_comm:
+0x5115 012219 ifetch 1 ,contr 
+0x5116 012220 beq signal_connect_req ,ml2cap_proc_signal_connect_req 
+0x5117 012221 beq signal_cmd_reject ,ml2cap_proc_signal_cmd_reject 
+0x5118 012222 beq signal_connect_rsp ,ml2cap_proc_signal_connect_rsp 
+0x5119 012223 beq signal_config_rsp ,ml2cap_proc_signal_config_rsp 
+0x511a 012224 beq signal_config_req ,ml2cap_proc_signal_config_req 
+0x511b 012225 beq signal_disconnect_rsp ,ml2cap_proc_signal_disconn_rsp 
+0x511c 012226 beq signal_disconnect_req ,ml2cap_proc_signal_disconn_req 
+0x511d 012227 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x511e 012228 beq signal_info_req ,ml2cap_proc_signal_info_req 
+0x511f 012229 branch ml2cap_proc_send_reject 
+:      012231 ml2cap_proc_signal_connect_req:
+0x5120 012232 call save_cont_pointers 
+0x5121 012234 call load_cont_pointers 
+0x5122 012235 branch l2cap_proc_signal_connect_req 
+:      012236 ml2cap_proc_signal_cmd_reject:
+0x5123 012237 ifetch 1 ,contr 
+0x5124 012238 copy pdata ,queue 
+0x5125 012239 ifetch 2 ,contr 
+0x5126 012240 copy pdata ,rega 
+0x5127 012241 copy regc ,pdata 
+0x5128 012242 isub rega ,regc 
+:      012243 mvptr:
+0x5129 012244 ifetch 1 ,contr 
+0x512a 012245 increase -1 ,rega 
+0x512b 012246 nbranch mvptr ,zero 
+0x512c 012247 rtn 
+:      012248 ml2cap_proc_signal_connect_rsp:
+0x512d 012249 ifetch 1 ,contr 
+0x512e 012250 copy pdata ,queue 
+0x512f 012251 ifetch 2 ,contr 
+0x5130 012252 copy pdata ,rega 
+0x5131 012253 ifetch 2 ,contr 
+0x5132 012254 copy pdata ,timeup 
+0x5133 012255 ifetch 2 ,contr 
+0x5134 012256 copy pdata ,temp 
+0x5135 012257 ifetch 2 ,contr 
+0x5136 012258 sub pdata ,0 ,null 
+0x5137 012259 branch ml2cap_proc_signal_connect_rsp_sucessful ,zero 
+0x5138 012260 beq l2cap_connect_refused_psm_unsupported ,ml2cap_proc_signal_connect_refused_result 
+0x5139 012261 beq l2cap_connect_refused_no_resources ,ml2cap_proc_signal_connect_refused_result 
+0x513a 012262 branch ml2cap_proc_signal_connect_rsp_mnosucc 
+:      012263 ml2cap_proc_signal_connect_refused_result:
+0x513b 012264 jam bt_evt_ml2cap_conn_refused ,mem_fifo_temp 
+0x513c 012265 call ui_ipc_send_event 
+:      012266 ml2cap_proc_signal_connect_rsp_mnosucc:
+0x513d 012267 ifetch 2 ,contr 
+0x513e 012268 branch mnosucc 
+:      012269 ml2cap_proc_signal_connect_rsp_sucessful:
+0x513f 012270 call save_cont_pointers 
+0x5140 012274 setarg l2cap_sdp_channel 
+0x5141 012275 isub temp ,null 
+0x5142 012276 branch ml2cap_proc_signal_connect_rsp_sdp ,zero 
+0x5143 012277 setarg l2cap_rfcomm_channel 
+0x5144 012278 isub temp ,null 
+0x5145 012279 branch ml2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x5146 012280 setarg l2cap_hid_interrupt_channel 
+0x5147 012281 isub temp ,null 
+0x5148 012282 branch ml2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x5149 012283 setarg l2cap_hid_control_channel 
+0x514a 012284 isub temp ,null 
+0x514b 012285 branch ml2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x514c 012286 branch mnosucc 
+:      012287 ml2cap_proc_signal_connect_rsp_sdp:
+0x514d 012288 copy timeup ,pdata 
+0x514e 012289 store 2 ,mem_sdp_remote_cid 
+0x514f 012290 fetch 1 ,mem_sdp_state 
+0x5150 012291 set1 l2cap_channel_state_conn_res 
+0x5151 012292 store 1 ,mem_sdp_state 
+0x5152 012293 branch mnosucc1 
+:      012294 ml2cap_proc_signal_connect_rsp_rfcomm:
+0x5153 012295 copy timeup ,pdata 
+0x5154 012296 store 2 ,mem_rfcomm_remote_cid 
+0x5155 012297 fetch 1 ,mem_rfcomm_state 
+0x5156 012298 set1 l2cap_channel_state_conn_res 
+0x5157 012299 store 1 ,mem_rfcomm_state 
+0x5158 012300 branch mnosucc1 
+:      012301 ml2cap_proc_signal_connect_rsp_hid_ctrl:
+0x5159 012302 copy timeup ,pdata 
+0x515a 012303 store 2 ,mem_hid_ctrl_remote_cid 
+0x515b 012304 fetch 1 ,mem_hid_control_state 
+0x515c 012305 set1 l2cap_channel_state_conn_res 
+0x515d 012306 store 1 ,mem_hid_control_state 
+0x515e 012307 branch mnosucc1 
+:      012308 ml2cap_proc_signal_connect_rsp_hid_int:
+0x515f 012309 copy timeup ,pdata 
+0x5160 012310 store 2 ,mem_hid_int_remote_cid 
+0x5161 012311 fetch 1 ,mem_hid_interrupt_state 
+0x5162 012312 set1 l2cap_channel_state_conn_res 
+0x5163 012313 store 1 ,mem_hid_interrupt_state 
+:      012316 mnosucc1:
+0x5164 012317 call load_cont_pointers 
+:      012318 mnosucc:
+0x5165 012319 copy regc ,pdata 
+0x5166 012320 isub rega ,regc 
+0x5167 012321 rtn 
+:      012323 ml2cap_proc_signal_config_rsp:
+0x5168 012324 ifetch 1 ,contr 
+0x5169 012325 copy pdata ,queue 
+0x516a 012326 ifetch 2 ,contr 
+0x516b 012327 copy pdata ,rega 
+0x516c 012328 copy regc ,pdata 
+0x516d 012329 isub rega ,regc 
+0x516e 012330 ifetch 2 ,contr 
+0x516f 012331 copy pdata ,timeup 
+0x5170 012332 ifetch 2 ,contr 
+0x5171 012333 ifetch 2 ,contr 
+0x5172 012334 nbranch mcrsdone1 ,blank 
+0x5173 012335 call save_cont_pointers 
+0x5174 012339 copy timeup ,temp 
+0x5175 012340 setarg l2cap_sdp_channel 
+0x5176 012341 isub temp ,null 
+0x5177 012342 branch ml2cap_proc_signal_config_rsp_sdp ,zero 
+0x5178 012343 setarg l2cap_rfcomm_channel 
+0x5179 012344 isub temp ,null 
+0x517a 012345 branch ml2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x517b 012346 setarg l2cap_hid_control_channel 
+0x517c 012347 isub temp ,null 
+0x517d 012348 branch ml2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x517e 012349 setarg l2cap_hid_interrupt_channel 
+0x517f 012350 isub temp ,null 
+0x5180 012351 branch ml2cap_proc_signal_config_rsp_hid_int ,zero 
+:      012352 ml2cap_proc_signal_config_rsp_sdp:
+0x5181 012353 fetch 1 ,mem_sdp_state 
+0x5182 012354 set1 l2cap_channel_state_rcv_cfg_res 
+0x5183 012355 store 1 ,mem_sdp_state 
+0x5184 012356 rtn 
+:      012357 ml2cap_proc_signal_config_rsp_rfcomm:
+0x5185 012358 fetch 1 ,mem_rfcomm_state 
+0x5186 012359 set1 l2cap_channel_state_rcv_cfg_res 
+0x5187 012360 store 1 ,mem_rfcomm_state 
+0x5188 012361 rtn 
+:      012362 ml2cap_proc_signal_config_rsp_hid_ctrl:
+0x5189 012363 fetch 1 ,mem_hid_control_state 
+0x518a 012364 set1 l2cap_channel_state_rcv_cfg_res 
+0x518b 012365 store 1 ,mem_hid_control_state 
+0x518c 012366 rtn 
+:      012367 ml2cap_proc_signal_config_rsp_hid_int:
+0x518d 012368 fetch 1 ,mem_hid_interrupt_state 
+0x518e 012369 set1 l2cap_channel_state_rcv_cfg_res 
+0x518f 012370 store 1 ,mem_hid_interrupt_state 
+0x5190 012371 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x5191 012372 branch ui_ipc_send_event 
+:      012375 mcfrsdone:
+0x5192 012376 call load_cont_pointers 
+:      012377 mcrsdone1:
+0x5193 012378 increase -6 ,rega 
+:      012379 mloop2:
+0x5194 012380 branch mcrsdone ,zero 
+0x5195 012381 increase 1 ,contr 
+0x5196 012382 increase -1 ,rega 
+0x5197 012383 branch mloop2 
+:      012384 mcrsdone:
+0x5198 012385 rtn 
+:      012386 ml2cap_proc_signal_config_req:
+0x5199 012387 ifetch 1 ,contr 
+0x519a 012388 copy pdata ,queue 
+0x519b 012389 ifetch 2 ,contr 
+0x519c 012390 copy pdata ,rega 
+0x519d 012391 copy regc ,pdata 
+0x519e 012392 isub rega ,regc 
+0x519f 012393 ifetch 2 ,contr 
+0x51a0 012394 increase 2 ,contr 
+0x51a1 012395 copy pdata ,temp 
+0x51a2 012396 setarg signal_config_rsp 
+0x51a3 012397 istore 1 ,contw 
+0x51a4 012398 copy queue ,pdata 
+0x51a5 012399 istore 1 ,contw 
+0x51a6 012400 increase 2 ,rega 
+0x51a7 012401 copy rega ,pdata 
+0x51a8 012402 istore 2 ,contw 
+0x51a9 012403 call save_cont_pointers 
+0x51aa 012404 setarg l2cap_sdp_channel 
+0x51ab 012405 isub temp ,null 
+0x51ac 012406 branch ml2cap_proc_signal_config_req_sdp ,zero 
+0x51ad 012407 setarg l2cap_rfcomm_channel 
+0x51ae 012408 isub temp ,null 
+0x51af 012409 branch ml2cap_proc_signal_config_req_rfcomm ,zero 
+0x51b0 012410 setarg l2cap_hid_control_channel 
+0x51b1 012411 isub temp ,null 
+0x51b2 012412 branch ml2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x51b3 012413 setarg l2cap_hid_interrupt_channel 
+0x51b4 012414 isub temp ,null 
+0x51b5 012415 branch ml2cap_proc_signal_config_req_hid_int ,zero 
+0x51b6 012416 branch mcfgrq_done 
+:      012417 ml2cap_proc_signal_config_req_sdp:
+0x51b7 012418 fetch 1 ,mem_sdp_state 
+0x51b8 012419 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x51b9 012420 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x51ba 012421 store 1 ,mem_sdp_state 
+0x51bb 012422 bbit1 l2cap_channel_state_snd_cfg_req ,ml2cap_proc_signal_config_req_sdp_nsndreq 
+0x51bc 012423 fetcht 1 ,mem_control_tasks 
+0x51bd 012424 set1 l2cap_init_config_req ,temp 
+0x51be 012425 storet 1 ,mem_control_tasks 
+0x51bf 012426 copy queue ,pdata 
+0x51c0 012427 increase 1 ,pdata 
+0x51c1 012428 store 1 ,mem_config_identifier 
+0x51c2 012429 fetch 1 ,mem_sdp_state 
+0x51c3 012430 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x51c4 012431 store 1 ,mem_sdp_state 
+:      012432 ml2cap_proc_signal_config_req_sdp_nsndreq:
+0x51c5 012433 fetch 2 ,mem_sdp_remote_cid 
+0x51c6 012434 store 2 ,mem_config_req_dest_cid 
+0x51c7 012435 branch mcfgrq_done 
+:      012436 ml2cap_proc_signal_config_req_rfcomm:
+0x51c8 012437 fetch 1 ,mem_rfcomm_state 
+0x51c9 012438 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x51ca 012439 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x51cb 012440 store 1 ,mem_rfcomm_state 
+0x51cc 012441 fetch 2 ,mem_rfcomm_remote_cid 
+0x51cd 012442 branch mcfgrq_done 
+:      012443 ml2cap_proc_signal_config_req_hid_ctrl:
+0x51ce 012444 fetch 1 ,mem_hid_control_state 
+0x51cf 012445 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x51d0 012446 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x51d1 012447 store 1 ,mem_hid_control_state 
+0x51d2 012448 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x51d3 012449 branch mcfgrq_done 
+:      012450 ml2cap_proc_signal_config_req_hid_int:
+0x51d4 012451 fetch 1 ,mem_hid_interrupt_state 
+0x51d5 012452 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x51d6 012453 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x51d7 012454 store 1 ,mem_hid_interrupt_state 
+0x51d8 012455 fetch 2 ,mem_hid_int_remote_cid 
+:      012458 mcfgrq_done:
+0x51d9 012459 copy pdata ,timeup 
+0x51da 012460 call load_cont_pointers 
+0x51db 012462 copy timeup ,pdata 
+0x51dc 012464 istore 2 ,contw 
+0x51dd 012465 force 0x0000 ,pdata 
+0x51de 012466 istore 2 ,contw 
+0x51df 012467 force 0x0000 ,pdata 
+0x51e0 012468 istore 2 ,contw 
+0x51e1 012469 force 10 ,pdata 
+0x51e2 012470 iadd regb ,regb 
+0x51e3 012471 increase -6 ,rega 
+:      012472 mloop1:
+0x51e4 012473 branch mcrqdone ,zero 
+0x51e5 012474 ifetch 1 ,contr 
+0x51e6 012475 istore 1 ,contw 
+0x51e7 012476 increase 1 ,regb 
+0x51e8 012477 increase -1 ,rega 
+0x51e9 012478 branch mloop1 
+:      012479 mcrqdone:
+0x51ea 012480 rtn 
+:      012481 ml2cap_proc_signal_disconn_req:
+0x51eb 012482 ifetch 1 ,contr 
+0x51ec 012483 copy pdata ,queue 
+0x51ed 012484 ifetch 2 ,contr 
+0x51ee 012485 copy pdata ,rega 
+0x51ef 012486 copy regc ,pdata 
+0x51f0 012487 isub rega ,regc 
+0x51f1 012489 ifetch 2 ,contr 
+0x51f2 012490 copy pdata ,rega 
+0x51f3 012491 ifetch 2 ,contr 
+0x51f4 012492 copy pdata ,timeup 
+0x51f5 012493 call save_cont_pointers 
+0x51f6 012494 setarg l2cap_sdp_channel 
+0x51f7 012495 copy rega ,temp 
+0x51f8 012496 isub temp ,null 
+0x51f9 012497 branch ml2cap_proc_signal_disconn_sdp ,zero 
+0x51fa 012498 setarg l2cap_hid_control_channel 
+0x51fb 012499 copy rega ,temp 
+0x51fc 012500 isub temp ,null 
+0x51fd 012501 branch ml2cap_proc_signal_disconn_hid_ctrl ,zero 
+0x51fe 012502 setarg l2cap_hid_interrupt_channel 
+0x51ff 012503 copy rega ,temp 
+0x5200 012504 isub temp ,null 
+0x5201 012505 branch ml2cap_proc_signal_disconn_hid_int ,zero 
+0x5202 012506 branch mclsrfc 
+:      012507 ml2cap_proc_signal_disconn_sdp:
+0x5203 012508 setarg 0x0000 
+0x5204 012509 store 2 ,mem_sdp_tx_pkt_length 
+0x5205 012510 store 2 ,mem_sdp_remote_cid 
+0x5206 012511 store 1 ,mem_sdp_state 
+0x5207 012512 branch mclssdp 
+:      012513 ml2cap_proc_signal_disconn_hid_ctrl:
+0x5208 012514 call l2cap_reset_hid_ctrl_state 
+0x5209 012515 branch mclssdp 
+:      012516 ml2cap_proc_signal_disconn_hid_int:
+0x520a 012517 call l2cap_reset_hid_int_state 
+0x520b 012523 branch mclssdp 
+:      012524 mclsrfc:
+0x520c 012525 setarg 0x0000 
+0x520d 012526 store 2 ,mem_rfcomm_tx_pkt_length 
+:      012527 mclssdp:
+0x520e 012528 call load_cont_pointers 
+0x520f 012529 setarg signal_disconnect_rsp 
+0x5210 012530 istore 1 ,contw 
+0x5211 012531 copy queue ,pdata 
+0x5212 012532 istore 1 ,contw 
+0x5213 012533 setarg 0x0004 
+0x5214 012534 istore 2 ,contw 
+0x5215 012535 copy rega ,pdata 
+0x5216 012536 istore 2 ,contw 
+0x5217 012537 copy timeup ,pdata 
+0x5218 012538 istore 2 ,contw 
+0x5219 012539 force 8 ,pdata 
+0x521a 012540 iadd regb ,regb 
+0x521b 012541 rtn 
+:      012543 ml2cap_proc_signal_disconn_rsp:
+0x521c 012544 ifetch 1 ,contr 
+0x521d 012545 copy pdata ,queue 
+0x521e 012546 ifetch 2 ,contr 
+0x521f 012547 copy pdata ,rega 
+0x5220 012548 ifetch 2 ,contr 
+0x5221 012549 copy pdata ,timeup 
+0x5222 012550 ifetch 2 ,contr 
+0x5223 012551 copy pdata ,temp 
+0x5224 012552 call save_cont_pointers 
+0x5225 012553 fetch 1 ,mem_ml2cap_comm_id 
+0x5226 012554 icompare 0xff ,queue 
+0x5227 012555 nbranch mdisdone ,true 
+0x5228 012556 setarg l2cap_sdp_channel 
+0x5229 012557 isub temp ,null 
+0x522a 012558 branch ml2cap_proc_signal_disconn_rsp_sdp ,zero 
+0x522b 012559 setarg l2cap_rfcomm_channel 
+0x522c 012560 isub temp ,null 
+0x522d 012561 branch ml2cap_proc_signal_disconn_rsp_rfcomm ,zero 
+0x522e 012562 branch mdisdone 
+:      012563 ml2cap_proc_signal_disconn_rsp_sdp:
+0x522f 012564 jam 0 ,mem_sdp_remote_cid 
+0x5230 012565 jam 0 ,mem_sdp_state 
+0x5231 012566 branch mdisdone 
+:      012567 ml2cap_proc_signal_disconn_rsp_rfcomm:
+:      012570 mdisdone:
+0x5232 012571 call load_cont_pointers 
+0x5233 012572 copy regc ,pdata 
+0x5234 012573 isub rega ,regc 
+0x5235 012574 rtn 
+:      012576 ml2cap_proc_send_reject:
+0x5236 012577 setarg signal_cmd_reject 
+0x5237 012578 istore 1 ,contw 
+0x5238 012579 ifetch 1 ,contr 
+0x5239 012580 istore 1 ,contw 
+0x523a 012581 setarg 0x0002 
+0x523b 012582 istore 2 ,contw 
+0x523c 012583 setarg 0x0000 
+0x523d 012584 istore 2 ,contw 
+0x523e 012585 setarg 0x0006 
+0x523f 012586 iadd regb ,regb 
+0x5240 012587 force 4 ,regc 
+0x5241 012588 rtn 
+:      012591 l2cap_get_req_id:
+0x5242 012592 fetch 1 ,mem_ml2cap_comm_id 
+0x5243 012593 increase 1 ,pdata 
+0x5244 012594 bne 0 ,l2cap_get_req_id_ok 
+0x5245 012595 increase 1 ,pdata 
+:      012596 l2cap_get_req_id_ok:
+0x5246 012597 store 1 ,mem_ml2cap_comm_id 
+0x5247 012598 rtn 
+:      012608 l2cap_malloc:
+0x5248 012609 set1 mark_ext_patch ,mark 
+0x5249 012610 bpatch patch24_4 ,mem_patch24 
+0x524a 012611 arg 0 ,regb 
+0x524b 012612 call l2cap_malloc_is_fifo_full 
+0x524c 012613 nbranch assert ,blank 
+0x524d 012614 call l2cap_malloc_get_full_map 
+0x524e 012615 arg mem_tx_buff0 ,regb 
+0x524f 012616 arg 0 ,queue 
+:      012617 l2cap_malloc_loop:
+0x5250 012618 fetcht 1 ,mem_used_map 
+0x5251 012619 qisolate1 temp 
+0x5252 012620 branch l2cap_malloc_next ,true 
+0x5253 012621 call l2cap_malloc_enough 
+0x5254 012622 sub timeup ,0 ,null 
+0x5255 012623 branch l2cap_malloc_next ,positive 
+0x5256 012624 call l2cap_malloc_into_fifo 
+0x5257 012625 branch l2cap_malloc_rtn 
+:      012626 l2cap_malloc_next:
+0x5258 012627 increase 128 ,regb 
+0x5259 012628 increase 1 ,queue 
+0x525a 012629 setarg 8 
+0x525b 012630 isub queue ,null 
+0x525c 012631 branch l2cap_malloc_loop ,positive 
+0x525d 012632 arg 0 ,regb 
+:      012633 l2cap_malloc_rtn:
+0x525e 012634 copy regb ,pdata 
+0x525f 012635 branch assert ,blank 
+0x5260 012636 rtn 
+:      012644 l2cap_malloc_fifo_out:
+0x5261 012645 set1 mark_ext_patch ,mark 
+0x5262 012646 bpatch patch24_5 ,mem_patch24 
+0x5263 012647 call l2cap_malloc_fifo_get_first_ptr 
+0x5264 012648 increase 1 ,contr 
+0x5265 012649 ifetch 2 ,contr 
+0x5266 012650 rtn 
+:      012656 l2cap_malloc_free:
+0x5267 012657 set1 mark_ext_patch ,mark 
+0x5268 012658 bpatch patch24_6 ,mem_patch24 
+0x5269 012659 call l2cap_malloc_fifo_get_first_ptr 
+0x526a 012660 copy contr ,contw 
+0x526b 012661 copy contr ,temp 
+0x526c 012662 setarg 0 
+0x526d 012663 istore 3 ,contw 
+0x526e 012664 rtn 
+:      012669 l2cap_malloc_discard:
+0x526f 012670 set1 mark_ext_patch ,mark 
+0x5270 012671 bpatch patch24_7 ,mem_patch24 
+0x5271 012672 call l2cap_malloc_is_fifo_empty 
+0x5272 012673 branch assert ,blank 
+0x5273 012674 fetch 3 ,mem_tx_fifo2 
+0x5274 012675 store 3 ,mem_tx_fifo3 
+0x5275 012676 fetch 3 ,mem_tx_fifo1 
+0x5276 012677 store 3 ,mem_tx_fifo2 
+0x5277 012678 fetch 3 ,mem_tx_fifo0 
+0x5278 012679 store 3 ,mem_tx_fifo1 
+0x5279 012680 rtn 
+:      012686 l2cap_malloc_is_fifo_full:
+0x527a 012687 fetch 3 ,mem_tx_fifo0 
+0x527b 012688 rtn 
+:      012694 l2cap_malloc_is_fifo_nearly_full:
+0x527c 012695 fetch 3 ,mem_tx_fifo1 
+0x527d 012696 rtn 
+:      012702 l2cap_malloc_is_fifo_empty:
+0x527e 012703 fetch 3 ,mem_tx_fifo3 
+0x527f 012704 rtn 
+:      012709 l2cap_malloc_fifo_get_first_ptr:
+0x5280 012710 call l2cap_malloc_is_fifo_empty 
+0x5281 012711 branch assert ,blank 
+0x5282 012712 arg mem_tx_fifo0 ,contr 
+:      012713 l2cap_malloc_free_loop:
+0x5283 012714 ifetch 3 ,contr 
+0x5284 012715 branch l2cap_malloc_free_loop ,blank 
+0x5285 012716 increase -3 ,contr 
+0x5286 012717 rtn 
+:      012724 l2cap_malloc_get_full_map:
+0x5287 012725 set1 mark_ext_patch ,mark 
+0x5288 012726 bpatch patch25_0 ,mem_patch25 
+0x5289 012727 arg 4 ,loopcnt 
+0x528a 012728 arg mem_tx_fifo0_map ,contr 
+0x528b 012729 arg 0 ,temp 
+:      012730 l2cap_malloc_get_full_map_loop:
+0x528c 012731 ifetch 3 ,contr 
+0x528d 012732 and pdata ,0xff ,pdata 
+0x528e 012733 ior temp ,temp 
+0x528f 012734 loop l2cap_malloc_get_full_map_loop 
+0x5290 012735 storet 1 ,mem_used_map 
+0x5291 012736 rtn 
+:      012744 l2cap_malloc_into_fifo:
+0x5292 012745 set1 mark_ext_patch ,mark 
+0x5293 012746 bpatch patch25_1 ,mem_patch25 
+0x5294 012747 call l2cap_malloc_is_fifo_full 
+0x5295 012748 nbranch assert ,blank 
+0x5296 012749 call l2cap_malloc_is_fifo_empty 
+0x5297 012750 branch l2cap_malloc_into_fifo_no_push ,blank 
+0x5298 012751 fetch 3 ,mem_tx_fifo1 
+0x5299 012752 store 3 ,mem_tx_fifo0 
+0x529a 012753 ifetch 3 ,contr 
+0x529b 012754 istore 3 ,contw 
+0x529c 012755 ifetch 3 ,contr 
+0x529d 012756 istore 3 ,contw 
+0x529e 012757 setarg 0 
+0x529f 012758 istore 3 ,contw 
+:      012759 l2cap_malloc_into_fifo_no_push:
+0x52a0 012760 arg 0 ,temp 
+0x52a1 012761 copy timeup ,pdata 
+0x52a2 012762 iadd queue ,pdata 
+:      012763 l2cap_malloc_into_fifo_loop:
+0x52a3 012764 qset1 temp 
+0x52a4 012765 increase 1 ,queue 
+0x52a5 012766 isub queue ,null 
+0x52a6 012767 nbranch l2cap_malloc_into_fifo_loop ,zero 
+0x52a7 012769 lshift8 regb ,pdata 
+0x52a8 012770 ior temp ,pdata 
+0x52a9 012771 store 3 ,mem_tx_fifo3 
+0x52aa 012772 rtn 
+:      012782 l2cap_malloc_enough:
+0x52ab 012783 set1 mark_ext_patch ,mark 
+0x52ac 012784 bpatch patch25_2 ,mem_patch25 
+0x52ad 012785 call l2cap_malloc_get_full_map 
+0x52ae 012786 copy queue ,regc 
+0x52af 012787 arg 0 ,temp 
+0x52b0 012788 arg 0 ,timeup 
+:      012790 l2cap_malloc_enough_loop:
+0x52b1 012791 copy queue ,pdata 
+0x52b2 012792 beq 8 ,l2cap_malloc_enough_end 
+0x52b3 012793 fetch 1 ,mem_used_map 
+0x52b4 012794 qisolate1 pdata 
+0x52b5 012795 branch l2cap_malloc_enough_end ,true 
+0x52b6 012796 increase 128 ,temp 
+0x52b7 012797 increase 1 ,queue 
+0x52b8 012798 copy rega ,pdata 
+0x52b9 012799 isub temp ,null 
+0x52ba 012800 branch l2cap_malloc_enough_end ,zero 
+0x52bb 012801 branch l2cap_malloc_enough_loop ,positive 
+:      012802 l2cap_malloc_enough_end:
+0x52bc 012803 copy temp ,pdata 
+0x52bd 012804 isub rega ,null 
+0x52be 012805 nbranch l2cap_malloc_enough_rtn ,positive 
+0x52bf 012806 copy queue ,pdata 
+0x52c0 012807 copy regc ,temp 
+0x52c1 012808 isub temp ,timeup 
+:      012809 l2cap_malloc_enough_rtn:
+0x52c2 012810 copy regc ,queue 
+0x52c3 012811 rtn 
+:      012814 l2cap_malloc_signal_channel:
+0x52c4 012815 set1 mark_ext_patch ,mark 
+0x52c5 012816 bpatch patch25_3 ,mem_patch25 
+0x52c6 012817 arg l2cap_signal_malloc_size ,rega 
+0x52c7 012818 call l2cap_malloc 
+0x52c8 012819 store 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x52c9 012820 increase 4 ,pdata 
+0x52ca 012821 store 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x52cb 012822 setarg 0 
+0x52cc 012823 store 2 ,mem_l2cap_signal_tx_length 
+0x52cd 012824 rtn 
+:      012826 l2cap_get_signal_tx_buff:
+0x52ce 012827 fetch 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x52cf 012828 branch l2cap_util_pdata_to_contw 
+:      012830 l2cap_get_signal_tx_payload:
+0x52d0 012831 fetch 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x52d1 012832 branch l2cap_util_pdata_to_contw 
+:      012835 l2cap_malloc_sdp_channel:
+0x52d2 012836 set1 mark_ext_patch ,mark 
+0x52d3 012837 bpatch patch25_4 ,mem_patch25 
+0x52d4 012838 arg sdp_malloc_size ,rega 
+0x52d5 012839 call l2cap_malloc 
+0x52d6 012840 store 2 ,mem_sdp_tx_buff_ptr 
+0x52d7 012841 increase 4 ,pdata 
+0x52d8 012842 store 2 ,mem_sdp_tx_payload_ptr 
+0x52d9 012843 setarg 0 
+0x52da 012844 store 2 ,mem_sdp_tx_pkt_length 
+0x52db 012845 rtn 
+:      012847 l2cap_get_sdp_tx_buff:
+0x52dc 012848 fetch 2 ,mem_sdp_tx_buff_ptr 
+0x52dd 012849 branch l2cap_util_pdata_to_contw 
+:      012851 l2cap_get_sdp_tx_payload:
+0x52de 012852 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x52df 012853 branch l2cap_util_pdata_to_contw 
+:      012856 l2cap_malloc_rfcomm_channel:
+0x52e0 012857 set1 mark_ext_patch ,mark 
+0x52e1 012858 bpatch patch25_5 ,mem_patch25 
+0x52e2 012859 call push_stack 
+0x52e3 012860 jam rfcomm_malloc_fail ,mem_rfcomm_malloc_fail_flag 
+0x52e4 012861 call l2cap_malloc_is_fifo_full 
+0x52e5 012862 nrtn blank 
+0x52e6 012863 arg rfcomm_malloc_size ,rega 
+0x52e7 012864 call l2cap_malloc 
+0x52e8 012865 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x52e9 012866 increase 4 ,pdata 
+0x52ea 012867 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x52eb 012868 setarg 0 
+0x52ec 012869 store 2 ,mem_rfcomm_tx_pkt_length 
+0x52ed 012870 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x52ee 012871 branch pop_stack 
+:      012873 l2cap_get_rfcomm_tx_buff:
+0x52ef 012874 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x52f0 012875 branch l2cap_util_pdata_to_contw 
+:      012877 l2cap_get_rfcomm_tx_payload:
+0x52f1 012878 fetch 2 ,mem_rfcomm_tx_payload_ptr 
+:      012880 l2cap_util_pdata_to_contw:
+0x52f2 012881 branch assert ,blank 
+0x52f3 012882 copy pdata ,contw 
+0x52f4 012883 rtn 
+:      012886 l2cap_lpm_save_calc_len:
+0x52f5 012887 set1 mark_ext_patch ,mark 
+0x52f6 012888 bpatch patch25_6 ,mem_patch25 
+0x52f7 012889 arg 0 ,regb 
+0x52f8 012890 arg mem_tx_fifo0_map ,rega 
+0x52f9 012891 increase -2 ,rega 
+:      012892 l2cap_lpm_save_calc_len_loop:
+0x52fa 012893 increase 2 ,rega 
+0x52fb 012894 setarg mem_tx_fifo_end 
+0x52fc 012895 isub rega ,null 
+0x52fd 012896 branch l2cap_lpm_save_calc_len_end ,zero 
+0x52fe 012897 ifetch 1 ,rega 
+0x52ff 012898 increase 1 ,rega 
+0x5300 012899 branch l2cap_lpm_save_calc_len_loop ,blank 
+0x5301 012900 ifetcht 2 ,rega 
+0x5302 012901 ifetch 2 ,temp 
+0x5303 012902 iadd regb ,regb 
+0x5304 012903 increase 4 ,regb 
+0x5305 012904 branch l2cap_lpm_save_calc_len_loop 
+:      012905 l2cap_lpm_save_calc_len_end:
+0x5306 012906 copy regb ,pdata 
+0x5307 012907 rtn 
+:      012910 l2cap_lpm_get_wake_lock:
+0x5308 012911 arg wake_lock_l2cap_tx ,queue 
+0x5309 012912 branch lpm_get_wake_lock 
+:      012914 l2cap_lpm_put_wake_lock:
+0x530a 012915 arg wake_lock_l2cap_tx ,queue 
+0x530b 012916 branch lpm_put_wake_lock 
+:      012918 l2cap_lpm_save_txbuf:
+0x530c 012919 set1 mark_ext_patch ,mark 
+0x530d 012920 bpatch patch25_7 ,mem_patch25 
+0x530e 012921 call l2cap_malloc_get_full_map 
+0x530f 012922 fetch 1 ,mem_used_map 
+0x5310 012923 rtn blank 
+0x5311 012924 call l2cap_lpm_save_calc_len 
+0x5312 012925 arg l2cap_lpm_txbuf_len ,temp 
+0x5313 012926 isub temp ,null 
+0x5314 012927 branch l2cap_lpm_get_wake_lock ,positive 
+0x5315 012928 call l2cap_lpm_put_wake_lock 
+0x5316 012929 arg mem_l2cap_lpm_txbuf ,contw 
+0x5317 012930 arg mem_tx_fifo0 ,rega 
+:      012931 l2cap_lpm_save_txbuf_loop:
+0x5318 012932 setarg mem_tx_fifo_end 
+0x5319 012933 isub rega ,null 
+0x531a 012934 rtn zero 
+0x531b 012935 ifetch 1 ,rega 
+0x531c 012936 increase 1 ,rega 
+0x531d 012937 nbranch l2cap_lpm_save_txbuf_nempty ,blank 
+0x531e 012938 istore 2 ,contw 
+0x531f 012939 increase 2 ,rega 
+0x5320 012940 branch l2cap_lpm_save_txbuf_loop 
+:      012941 l2cap_lpm_save_txbuf_nempty:
+0x5321 012942 ifetch 2 ,rega 
+0x5322 012943 increase 2 ,rega 
+0x5323 012944 copy pdata ,contr 
+0x5324 012945 ifetch 2 ,contr 
+0x5325 012946 istore 2 ,contw 
+0x5326 012947 copy pdata ,loopcnt 
+0x5327 012948 increase 2 ,loopcnt 
+0x5328 012949 call memcpy 
+0x5329 012950 branch l2cap_lpm_save_txbuf_loop 
+:      012952 l2cap_lpm_load_txbuf:
+0x532a 012953 set1 mark_ext_patch ,mark 
+0x532b 012954 bpatch patch26_0 ,mem_patch26 
+0x532c 012955 call l2cap_malloc_get_full_map 
+0x532d 012956 fetch 1 ,mem_used_map 
+0x532e 012957 rtn blank 
+0x532f 012958 arg mem_tx_fifo0_ptr ,rega 
+0x5330 012959 increase -3 ,rega 
+0x5331 012960 arg mem_l2cap_lpm_txbuf ,contr 
+:      012961 l2cap_lpm_load_txbuf_loop:
+0x5332 012962 increase 3 ,rega 
+0x5333 012963 setarg mem_tx_fifo_end + 1 
+0x5334 012964 isub rega ,null 
+0x5335 012965 rtn zero 
+0x5336 012966 ifetch 2 ,contr 
+0x5337 012967 branch l2cap_lpm_load_txbuf_loop ,blank 
+0x5338 012968 increase 4 ,pdata 
+0x5339 012969 copy pdata ,loopcnt 
+0x533a 012970 copy contr ,regb 
+0x533b 012971 ifetch 2 ,rega 
+0x533c 012972 copy pdata ,contw 
+0x533d 012973 copy regb ,contr 
+0x533e 012974 increase -2 ,contr 
+0x533f 012975 call memcpy 
+0x5340 012976 branch l2cap_lpm_load_txbuf_loop 
+:      012984 le_init_param:
+0x5341 012985 rtn wake 
+0x5342 012986 setarg param_le_scan_interval 
+0x5343 012987 store 2 ,mem_le_scan_interval 
+0x5344 012988 setarg param_le_scan_window 
+0x5345 012989 store 2 ,mem_le_scan_window 
+0x5346 012990 rtn 
+:      012992 le_init_att:
+0x5347 012993 arg notify_handle ,temp 
+0x5348 012994 call le_att_get_handle_ptr 
+0x5349 012995 add contr ,1 ,pdata 
+0x534a 012996 store 2 ,mem_le_notify_attr_start 
+0x534b 012997 rtn 
+:      012999 le_init_conn:
+0x534c 013000 set1 mark_ext_patch ,mark 
+0x534d 013001 bpatch patch26_2 ,mem_patch26 
+0x534e 013002 disable wake 
+0x534f 013003 jam 1 ,mem_app_state 
+0x5350 013004 jam 1 ,mem_le_conn_handle 
+0x5351 013005 jam 3 ,mem_le_state 
+0x5352 013006 jam 1 ,mem_le_arq 
+0x5353 013007 setarg -1 
+0x5354 013008 store 2 ,mem_le_event_count 
+0x5355 013009 force 0 ,pdata 
+0x5356 013010 store 1 ,mem_le_conn_sm 
+0x5357 013011 store 1 ,mem_le_ch 
+0x5358 013012 store 1 ,mem_le_op 
+0x5359 013013 store 3 ,mem_sniff_rcv 
+0x535a 013014 store 3 ,mem_sniff_lost 
+0x535b 013015 store 5 ,mem_le_pcnt_tx 
+0x535c 013016 set1 39 ,pdata 
+0x535d 013017 store 5 ,mem_le_pcnt_rx 
+0x535e 013018 branch le_supervision_flush 
+:      013020 le_init_master:
+0x535f 013021 set1 mark_ext_patch ,mark 
+0x5360 013022 bpatch patch26_3 ,mem_patch26 
+0x5361 013023 enable master 
+0x5362 013024 jam lemode_master ,mem_le_mode 
+0x5363 013025 jam 1 ,mem_le_att_handle 
+0x5364 013026 jam 1 ,mem_le_search_handle_start 
+0x5365 013027 setarg 0xffff 
+0x5366 013028 store 2 ,mem_le_search_handle_end 
+0x5367 013029 force 0 ,pdata 
+0x5368 013030 store 5 ,mem_le_pcnt_rx 
+0x5369 013031 set1 39 ,pdata 
+0x536a 013032 store 5 ,mem_le_pcnt_tx 
+0x536b 013033 branch le_init_conn 
+:      013036 le_init_slave:
+0x536c 013037 set1 mark_ext_patch ,mark 
+0x536d 013038 bpatch patch26_4 ,mem_patch26 
+0x536e 013039 disable master 
+0x536f 013040 jam lemode_slave ,mem_le_mode 
+0x5370 013041 jam 0 ,mem_le_adv_enable 
+0x5371 013042 jam 0 ,mem_lpm_current_mult 
+0x5372 013043 branch le_init_conn 
+:      013049 le_dispatch:
+0x5373 013050 call le_enable 
+0x5374 013051 call le_scan 
+0x5375 013052 call le_adv 
+0x5376 013053 branch le_disable 
+:      013055 le_conn_dispatch:
+0x5377 013056 set1 mark_ext_patch ,mark 
+0x5378 013057 bpatch patch26_5 ,mem_patch26 
+0x5379 013058 call le_enable 
+0x537a 013059 call app_process_ble 
+0x537b 013060 fetch 1 ,mem_le_mode 
+0x537c 013061 beq lemode_master ,le_master_dispatch 
+0x537d 013062 branch le_slave_dispatch 
+:      013068 le_master_dispatch:
+0x537e 013069 set1 mark_ext_patch ,mark 
+0x537f 013070 bpatch patch26_6 ,mem_patch26 
+0x5380 013071 enable master 
+0x5381 013072 call le_supervision_update 
+0x5382 013073 branch le_master_disconn ,positive 
+0x5383 013074 call check_ble_disabled 
+0x5384 013075 call le_setup 
+0x5385 013076 call le_prepare_tx 
+0x5386 013077 disable match 
+0x5387 013078 call le_transmit_receive_sifs 
+0x5388 013079 nrtn match 
+0x5389 013080 set1 mark_ext_patch ,mark 
+0x538a 013081 bpatch patch26_7 ,mem_patch26 
+0x538b 013082 fetch 1 ,mem_le_conn_rcv 
+0x538c 013083 increase 1 ,pdata 
+0x538d 013084 store 1 ,mem_le_conn_rcv 
+0x538e 013085 call le_acknowledge 
+0x538f 013086 call le_conn_sm_master 
+0x5390 013087 disable master 
+0x5391 013088 rtn 
+:      013090 le_master_disconn:
+0x5392 013091 call le_disconnect 
+0x5393 013092 disable master 
+0x5394 013093 rtn 
+:      013098 le_slave_dispatch:
+0x5395 013099 set1 mark_ext_patch ,mark 
+0x5396 013100 bpatch patch27_0 ,mem_patch27 
+0x5397 013101 disable attempt 
+0x5398 013102 call le_supervision_update 
+0x5399 013103 branch le_slave_disconn ,positive 
+0x539a 013104 call check_ble_disabled 
+0x539b 013105 call le_setup 
+0x539c 013106 call le_receive_slave 
+0x539d 013107 nbranch le_slave_unsync ,match 
+:      013108 le_slave_match:
+0x539e 013109 set1 mark_ext_patch ,mark 
+0x539f 013110 bpatch patch27_1 ,mem_patch27 
+0x53a0 013111 call le_got_first_packet 
+0x53a1 013112 call le_acknowledge 
+0x53a2 013113 call le_prepare_tx 
+0x53a3 013114 fetch 1 ,mem_le_rxbuf 
+0x53a4 013115 bbit1 md ,le_slave_more_data 
+0x53a5 013116 call le_xtype_fifo_is_empty 
+0x53a6 013117 nbranch le_slave_more_data ,blank 
+:      013118 le_slave_transmit_last:
+0x53a7 013119 set1 mark_ext_patch ,mark 
+0x53a8 013120 bpatch patch27_2 ,mem_patch27 
+0x53a9 013121 call le_transmit_norx 
+:      013122 le_slave_cont:
+0x53aa 013123 call check_51cmd 
+0x53ab 013124 fetch 1 ,mem_le_op 
+0x53ac 013125 bbit1 op_disconn ,le_slave_disconn 
+:      013126 le_slave_unsync:
+0x53ad 013127 set1 mark_ext_patch ,mark 
+0x53ae 013128 bpatch patch27_3 ,mem_patch27 
+0x53af 013129 call le_savelist 
+0x53b0 013130 call le_lpm_set_mult 
+0x53b1 013131 call le_update_channel_map 
+0x53b2 013132 call le_update_param 
+0x53b3 013133 branch calc_clke_offset 
+:      013135 le_slave_more_data:
+0x53b4 013136 set1 mark_ext_patch ,mark 
+0x53b5 013137 bpatch patch27_4 ,mem_patch27 
+0x53b6 013138 enable attempt 
+0x53b7 013139 call le_transmit_receive_sifs 
+0x53b8 013140 branch le_slave_match ,match 
+0x53b9 013141 branch le_slave_cont 
+:      013143 le_slave_disconn:
+:      013146 le_disconnect:
+0x53ba 013147 set1 mark_ext_patch ,mark 
+0x53bb 013148 bpatch patch27_5 ,mem_patch27 
+0x53bc 013149 call le_clear_connection_info 
+0x53bd 013150 call app_disconn_reason_collect_ble 
+0x53be 013151 jam bt_evt_le_disconnected ,mem_fifo_temp 
+0x53bf 013152 branch ui_ipc_send_event 
+:      013154 le_clear_connection_info:
+0x53c0 013155 fetcht 1 ,mem_le_conn_handle 
+0x53c1 013156 jam hci_error_connection_timeout ,mem_hci_disconn_reason 
+0x53c2 013157 call hci_send_disconn_complete 
+0x53c3 013158 jam 0 ,mem_le_conn_handle 
+0x53c4 013159 jam lemode_idle ,mem_le_mode 
+0x53c5 013160 jam 0 ,mem_le_state 
+0x53c6 013161 jam 0 ,mem_app_state 
+0x53c7 013162 rtn 
+:      013164 le_got_first_packet:
+0x53c8 013165 fetch 1 ,mem_le_conn_rcv 
+0x53c9 013166 increase 1 ,pdata 
+0x53ca 013167 store 1 ,mem_le_conn_rcv 
+0x53cb 013168 fetch 1 ,mem_le_state 
+0x53cc 013169 rtnbit1 lestate_got_first_packet 
+0x53cd 013170 set1 lestate_got_first_packet 
+0x53ce 013171 store 1 ,mem_le_state 
+0x53cf 013172 setarg 0 
+0x53d0 013173 store 4 ,mem_le_transmit_window 
+0x53d1 013174 rtn 
+:      013179 le_enable:
+0x53d2 013180 set1 mark_ext_patch ,mark 
+0x53d3 013181 bpatch patch27_6 ,mem_patch27 
+0x53d4 013182 enable le 
+0x53d5 013183 hjam 7 ,rfen_ulp 
+0x53d6 013184 branch check_ble_disabled 
+:      013186 le_disable:
+0x53d7 013187 set1 mark_ext_patch ,mark 
+0x53d8 013188 bpatch patch27_7 ,mem_patch27 
+0x53d9 013189 disable le 
+0x53da 013190 hjam 3 ,rfen_ulp 
+0x53db 013191 arg 0 ,stop_watch 
+0x53dc 013192 rtn 
+:      013194 le_prep:
+0x53dd 013195 disable enable_crc 
+0x53de 013196 disable enable_white 
+0x53df 013197 fetch 3 ,mem_le_crcinit 
+0x53e0 013198 iforce crc24_init 
+0x53e1 013199 fetch 1 ,mem_le_ch_mapped 
+0x53e2 013200 reverse pdata ,temp 
+0x53e3 013201 set1 1 ,temp 
+0x53e4 013202 rshift temp ,white_init 
+0x53e5 013203 rtn 
+:      013206 lerx_setfreq:
+0x53e6 013207 call le_setfreq 
+0x53e7 013208 call set_freq_rx 
+0x53e8 013209 setarg param_pll_setup 
+0x53e9 013210 call sleep 
+0x53ea 013211 branch rf_rx_enable 
+:      013213 letx_setfreq:
+0x53eb 013214 branch txon ,match 
+0x53ec 013215 call le_setfreq 
+0x53ed 013216 branch set_freq_tx 
+:      013217 le_setfreq:
+0x53ee 013218 set1 mark_ext_patch ,mark 
+0x53ef 013219 bpatch patch28_0 ,mem_patch28 
+0x53f0 013220 call set_sync_on 
+0x53f1 013221 fetch 1 ,mem_le_testtype 
+0x53f2 013222 nbranch le_ctf_test ,blank 
+0x53f3 013223 fetch 1 ,mem_le_ch_mapped 
+0x53f4 013224 sub pdata ,36 ,null 
+0x53f5 013225 branch le_ctf_normal ,positive 
+0x53f6 013226 force 0 ,temp 
+0x53f7 013227 rtneq 37 
+0x53f8 013228 force 24 ,temp 
+0x53f9 013229 rtneq 38 
+0x53fa 013230 force 78 ,temp 
+0x53fb 013231 rtn 
+:      013233 le_ctf_normal:
+0x53fc 013234 sub pdata ,10 ,null 
+0x53fd 013235 branch le_ctf_low ,positive 
+0x53fe 013236 increase 1 ,pdata 
+:      013238 le_ctf_low:
+0x53ff 013239 lshift pdata ,pdata 
+0x5400 013240 add pdata ,2 ,temp 
+0x5401 013241 rtn 
+:      013243 le_ctf_test:
+0x5402 013244 fetch 1 ,mem_le_ch_mapped 
+0x5403 013245 lshift pdata ,temp 
+0x5404 013246 rtn 
+:      013248 le_sca_map:
+0x5405 013249 arg 500 ,temp 
+0x5406 013250 rtn blank 
+0x5407 013251 arg 250 ,temp 
+0x5408 013252 rtneq 1 
+0x5409 013253 arg 150 ,temp 
+0x540a 013254 rtneq 2 
+0x540b 013255 arg 100 ,temp 
+0x540c 013256 rtneq 3 
+0x540d 013257 arg 75 ,temp 
+0x540e 013258 rtneq 4 
+0x540f 013259 arg 50 ,temp 
+0x5410 013260 rtneq 5 
+0x5411 013261 arg 40 ,temp 
+0x5412 013262 rtneq 6 
+0x5413 013263 arg 20 ,temp 
+0x5414 013264 rtn 
+:      013268 le_adv_access:
+0x5415 013269 setarg 0x8e89be 
+0x5416 013270 lshift8 pdata ,pdata 
+0x5417 013271 or_into 0xd6 ,pdata 
+0x5418 013272 iforce access 
+0x5419 013273 setarg 0x555555 
+0x541a 013274 store 3 ,mem_le_crcinit 
+0x541b 013275 rtn 
+:      013277 le_setup:
+0x541c 013278 set1 mark_ext_patch ,mark 
+0x541d 013279 bpatch patch28_1 ,mem_patch28 
+0x541e 013280 enable swfine 
+0x541f 013281 fetch 4 ,mem_le_access 
+0x5420 013282 iforce access 
+0x5421 013283 call le_map_channel 
+0x5422 013284 setarg 0x200 
+0x5423 013285 branch le_setup_master ,master 
+0x5424 013286 fetch 2 ,mem_le_receive_window 
+0x5425 013287 rshift pdata ,pdata 
+:      013288 le_setup_master:
+0x5426 013289 arg param_pll_setup ,temp 
+0x5427 013290 iadd temp ,pdata 
+0x5428 013291 call ahead_window 
+0x5429 013292 deposit clke 
+0x542a 013293 store 6 ,mem_le_rxon_ts 
+0x542b 013294 rtn 
+:      013296 le_next_adv_channel:
+0x542c 013297 set1 mark_ext_patch ,mark 
+0x542d 013298 bpatch patch28_2 ,mem_patch28 
+0x542e 013299 fetch 1 ,mem_le_ch_mapped 
+0x542f 013300 increase 1 ,pdata 
+0x5430 013301 store 1 ,mem_le_ch_mapped 
+0x5431 013302 rtnne 40 
+0x5432 013303 jam 37 ,mem_le_ch_mapped 
+0x5433 013304 rtn 
+:      013306 le_context_nexthop:
+0x5434 013307 set1 mark_ext_patch ,mark 
+0x5435 013308 bpatch patch28_3 ,mem_patch28 
+0x5436 013309 add rega ,coffset_mode ,contr 
+0x5437 013310 ifetch 1 ,contr 
+0x5438 013311 rtnbit0 mode_le 
+0x5439 013312 add rega ,coffset_le_event_cnt ,contw 
+0x543a 013313 ifetch 2 ,contw 
+0x543b 013314 increase 1 ,pdata 
+0x543c 013315 istore 2 ,contw 
+0x543d 013316 add rega ,coffset_le_hop ,contr 
+0x543e 013317 ifetch 1 ,contr 
+0x543f 013318 add rega ,coffset_le_ch ,contw 
+0x5440 013319 ifetcht 1 ,contw 
+0x5441 013320 iadd temp ,pdata 
+0x5442 013321 sub pdata ,36 ,null 
+0x5443 013322 branch le_nexthop_nowrap ,positive 
+0x5444 013323 increase -37 ,pdata 
+:      013324 le_nexthop_nowrap:
+0x5445 013325 istore 1 ,contw 
+0x5446 013326 rtn 
+:      013329 le_calc_channel_map:
+0x5447 013330 set1 mark_ext_patch ,mark 
+0x5448 013331 bpatch patch28_4 ,mem_patch28 
+0x5449 013332 fetch 5 ,mem_le_channel_map 
+0x544a 013333 force 0 ,temp 
+0x544b 013334 force 37 ,loopcnt 
+:      013335 le_count_channels_loop:
+0x544c 013336 bbit0 0 ,le_count_channels_notused 
+0x544d 013337 increase 1 ,temp 
+:      013338 le_count_channels_notused:
+0x544e 013339 rshift pdata ,pdata 
+0x544f 013340 loop le_count_channels_loop 
+0x5450 013341 add temp ,-1 ,pdata 
+0x5451 013342 store 1 ,mem_le_channels 
+0x5452 013343 rtn 
+:      013345 le_map_channel:
+0x5453 013346 set1 mark_ext_patch ,mark 
+0x5454 013347 bpatch patch28_5 ,mem_patch28 
+0x5455 013348 fetch 1 ,mem_le_ch 
+0x5456 013349 iforce queue 
+0x5457 013350 fetcht 5 ,mem_le_channel_map 
+0x5458 013351 qisolate1 temp 
+0x5459 013352 branch le_map_channel_end ,true 
+:      013353 le_map_channel_next:
+0x545a 013354 set1 mark_ext_patch ,mark 
+0x545b 013355 bpatch patch28_6 ,mem_patch28 
+0x545c 013356 fetch 1 ,mem_le_channels 
+0x545d 013357 isub queue ,pdata 
+0x545e 013358 branch le_map_channel_cont ,positive 
+0x545f 013359 sub pdata ,-1 ,queue 
+0x5460 013360 branch le_map_channel_next 
+:      013361 le_map_channel_cont:
+0x5461 013362 copy queue ,loopcnt 
+0x5462 013363 force 0 ,queue 
+:      013364 le_map_channel_loop:
+0x5463 013365 qisolate1 temp 
+0x5464 013366 branch le_map_channel_skip ,true 
+0x5465 013367 increase 1 ,loopcnt 
+:      013368 le_map_channel_skip:
+0x5466 013369 deposit loopcnt 
+0x5467 013370 branch le_map_channel_end ,blank 
+0x5468 013371 increase 1 ,queue 
+0x5469 013372 increase -1 ,loopcnt 
+0x546a 013373 branch le_map_channel_loop 
+:      013374 le_map_channel_end:
+0x546b 013375 deposit queue 
+0x546c 013376 store 1 ,mem_le_ch_mapped 
+0x546d 013377 rtn 
+:      013380 le_wait_tx:
+0x546e 013381 branch le_wait_master ,master 
+0x546f 013382 until null ,timeout 
+0x5470 013383 rtn 
+:      013385 le_wait_master:
+0x5471 013386 arg 0xea0 ,timeup 
+0x5472 013387 until clkn_rt ,meet 
+0x5473 013388 rtn 
+:      013390 le_receive_adv:
+0x5474 013391 disable swfine 
+0x5475 013392 fetch 2 ,mem_le_scan_window 
+0x5476 013393 copy pdata ,timeup 
+0x5477 013394 branch le_receive_packet 
+:      013397 le_receive_slave:
+0x5478 013398 set1 mark_ext_patch ,mark 
+0x5479 013399 bpatch patch28_7 ,mem_patch28 
+0x547a 013400 enable swfine 
+0x547b 013401 fetch 2 ,mem_le_receive_window 
+0x547c 013402 fetcht 4 ,mem_le_transmit_window 
+0x547d 013403 iadd temp ,timeup 
+:      013404 le_receive_packet:
+0x547e 013405 call lerx_setfreq 
+:      013406 le_receive_rxon:
+0x547f 013407 set1 mark_ext_patch ,mark 
+0x5480 013408 bpatch patch29_0 ,mem_patch29 
+0x5481 013409 call le_prep 
+0x5482 013410 disable match 
+0x5483 013411 enable decode_fec0 
+0x5484 013412 enable is_rx 
+0x5485 013413 disable is_tx 
+0x5486 013414 copy timeup ,stop_watch 
+0x5487 013415 correlate null ,timeout 
+0x5488 013416 branch le_receive_on_attempt ,attempt 
+0x5489 013417 copy clke ,temp 
+0x548a 013418 storet 6 ,mem_sync_clke 
+:      013419 le_receive_on_attempt:
+0x548b 013420 nbranch end_of_packet ,sync 
+0x548c 013421 branch le_receive_skip ,attempt 
+0x548d 013422 arg param_clke_cal_le ,clke_rt 
+0x548e 013423 copy bt_clk ,clke_bt 
+0x548f 013424 fetch 1 ,mem_le_state 
+0x5490 013425 bbit0 lestate_got_first_packet ,le_receive_skip 
+0x5491 013426 call lpm_adjust_clk ,wake 
+:      013427 le_receive_skip:
+0x5492 013428 set1 mark_ext_patch ,mark 
+0x5493 013429 bpatch patch29_1 ,mem_patch29 
+0x5494 013430 call save_rssi 
+0x5495 013431 enable enable_white 
+0x5496 013432 enable enable_crc 
+0x5497 013433 parse demod ,bucket ,8 
+0x5498 013434 rshift3 pwindow ,pdata 
+0x5499 013435 store 1 ,mem_le_rxbuf 
+0x549a 013436 parse demod ,bucket ,8 
+0x549b 013437 rshift3 pwindow ,pdata 
+0x549c 013438 istore 1 ,contw 
+0x549d 013439 and pdata ,0x3f ,loopcnt 
+0x549e 013440 branch lerx_nopayload ,zero 
+:      013442 lerx_loop:
+0x549f 013443 parse demod ,bucket ,8 
+0x54a0 013444 rshift3 pwindow ,pdata 
+0x54a1 013445 istore 1 ,contw 
+0x54a2 013446 loop lerx_loop 
+:      013448 lerx_nopayload:
+0x54a3 013449 set1 mark_ext_patch ,mark 
+0x54a4 013450 bpatch patch29_2 ,mem_patch29 
+0x54a5 013451 parse demod ,bucket ,24 
+0x54a6 013452 enable swfine 
+0x54a7 013453 arg param_sifs ,stop_watch 
+0x54a8 013454 rshift32 pdata ,pdata 
+0x54a9 013455 rshift16 pdata ,pdata 
+0x54aa 013456 istore 3 ,contw 
+0x54ab 013457 branch end_of_packet ,crc_failed 
+0x54ac 013458 enable match 
+0x54ad 013459 fetch 1 ,mem_last_freq 
+0x54ae 013460 add pdata ,2 ,rega 
+0x54af 013461 call rf_write_freq 
+0x54b0 013462 disable decode_fec0 
+0x54b1 013463 branch set_sync_on 
+:      013465 le_transmit_receive_sifs:
+0x54b2 013466 set1 mark_ext_patch ,mark 
+0x54b3 013467 bpatch patch29_3 ,mem_patch29 
+0x54b4 013468 call le_transmit 
+0x54b5 013469 fetcht 1 ,mem_last_freq 
+0x54b6 013470 call set_freq_rx 
+0x54b7 013471 call rf_rx_enable 
+0x54b8 013472 enable swfine 
+0x54b9 013473 arg 5000 ,timeup 
+0x54ba 013474 branch le_receive_rxon 
+:      013476 le_transmit_norx:
+0x54bb 013477 call le_transmit 
+0x54bc 013478 branch end_of_packet 
+:      013480 le_transmit:
+0x54bd 013481 set1 mark_ext_patch ,mark 
+0x54be 013482 bpatch patch29_4 ,mem_patch29 
+0x54bf 013483 call le_prep 
+0x54c0 013484 call letx_setfreq 
+0x54c1 013485 set1 txgfsk ,radio_ctrl 
+0x54c2 013486 enable encode_fec0 
+0x54c3 013487 enable is_tx 
+0x54c4 013488 disable is_rx 
+0x54c5 013489 call le_wait_tx 
+0x54c6 013490 rshift16 access ,pdata 
+0x54c7 013491 rshift8 pdata ,pdata 
+0x54c8 013492 rshift4 pdata ,pdata 
+0x54c9 013493 inject mod ,40 
+0x54ca 013494 enable enable_white 
+0x54cb 013495 enable enable_crc 
+0x54cc 013496 set1 mark_ext_patch ,mark 
+0x54cd 013497 bpatch patch29_5 ,mem_patch29 
+0x54ce 013498 fetch 1 ,mem_le_txheader 
+0x54cf 013499 inject mod ,8 
+0x54d0 013500 ifetch 1 ,contr 
+0x54d1 013501 and pdata ,0x3f ,loopcnt 
+0x54d2 013502 inject mod ,8 
+0x54d3 013503 branch letr_nopayload ,zero 
+:      013504 letr_loop:
+0x54d4 013505 ifetch 1 ,contr 
+0x54d5 013506 inject mod ,8 
+0x54d6 013507 loop letr_loop 
+:      013509 letr_nopayload:
+0x54d7 013510 enable enable_parity 
+0x54d8 013511 inject mod ,24 
+0x54d9 013512 disable enable_parity 
+0x54da 013513 until null ,tx_clear 
+0x54db 013514 nop 100 
+0x54dc 013515 disable encode_fec0 
+0x54dd 013516 rtn 
+:      013518 le_send_adv_ind:
+0x54de 013519 set1 mark_ext_patch ,mark 
+0x54df 013520 bpatch patch29_6 ,mem_patch29 
+0x54e0 013521 fetch 1 ,mem_le_adv_type 
+0x54e1 013522 beq adv_direct_ind ,le_send_adv_direct_ind 
+0x54e2 013523 fetch 1 ,mem_le_adv_own_addr_type 
+0x54e3 013524 lshift4 pdata ,pdata 
+0x54e4 013525 lshift2 pdata ,pdata 
+0x54e5 013526 store 1 ,mem_le_txheader 
+0x54e6 013527 fetcht 1 ,mem_le_adv_data_len 
+0x54e7 013528 add temp ,6 ,pdata 
+0x54e8 013529 store 1 ,mem_le_txlen 
+0x54e9 013530 fetch 6 ,mem_le_lap 
+0x54ea 013531 store 6 ,mem_le_txpayload 
+0x54eb 013532 copy temp ,loopcnt 
+0x54ec 013533 arg mem_le_adv_data ,contr 
+0x54ed 013534 call memcpy 
+0x54ee 013535 branch le_send_adv_transmit 
+:      013536 le_send_adv_direct_ind:
+0x54ef 013537 fetcht 2 ,mem_le_notify_handle 
+0x54f0 013538 call le_att_check_notification_enable 
+0x54f1 013539 copy rega ,contw 
+0x54f2 013540 setarg 1 
+0x54f3 013541 istore 1 ,contw 
+0x54f4 013542 fetch 1 ,mem_le_adv_direct_addr_type 
+0x54f5 013543 lshift4 pdata ,pdata 
+0x54f6 013544 lshift2 pdata ,pdata 
+0x54f7 013545 increase 1 ,pdata 
+0x54f8 013546 store 1 ,mem_le_txheader 
+0x54f9 013547 setarg 12 
+0x54fa 013548 store 1 ,mem_le_txlen 
+0x54fb 013549 fetch 6 ,mem_le_lap 
+0x54fc 013550 store 6 ,mem_le_txpayload 
+0x54fd 013551 fetch 6 ,mem_hci_plap 
+0x54fe 013552 istore 6 ,contw 
+:      013553 le_send_adv_transmit:
+0x54ff 013554 set1 mark_ext_patch ,mark 
+0x5500 013555 bpatch patch29_7 ,mem_patch29 
+0x5501 013556 fetch 1 ,mem_le_adv_transmit 
+0x5502 013557 increase 1 ,pdata 
+0x5503 013558 store 1 ,mem_le_adv_transmit 
+0x5504 013559 arg 1800 ,stop_watch 
+0x5505 013560 disable match 
+0x5506 013561 branch le_transmit_receive_sifs 
+:      013563 le_send_scan_request:
+0x5507 013564 set1 mark_ext_patch ,mark 
+0x5508 013565 bpatch patch2a_0 ,mem_patch2a 
+0x5509 013566 fetch 1 ,mem_le_scan_type 
+0x550a 013567 rtnne le_scan_type_active ,pdata 
+0x550b 013568 fetch 1 ,mem_le_adv_transmit 
+0x550c 013569 increase 1 ,pdata 
+0x550d 013570 store 1 ,mem_le_adv_transmit 
+0x550e 013571 arg 0x0c03 ,temp 
+0x550f 013572 fetch 1 ,mem_le_scan_own_addr_type 
+0x5510 013573 nsetflag blank ,le_sender_addr_bit ,temp 
+0x5511 013574 copy rega ,pdata 
+0x5512 013575 nsetflag blank ,le_receiver_addr_bit ,temp 
+0x5513 013576 storet 2 ,mem_le_txheader 
+0x5514 013577 fetch 6 ,mem_le_lap 
+0x5515 013578 istore 6 ,contw 
+0x5516 013579 fetch 6 ,mem_le_plap 
+0x5517 013580 istore 6 ,contw 
+0x5518 013581 branch le_transmit_receive_sifs 
+:      013584 le_send_scan_response:
+0x5519 013585 set1 mark_ext_patch ,mark 
+0x551a 013586 bpatch patch2a_1 ,mem_patch2a 
+0x551b 013587 arg scan_rsp ,temp 
+0x551c 013588 fetch 1 ,mem_le_adv_own_addr_type 
+0x551d 013589 nsetflag blank ,le_sender_addr_bit ,temp 
+0x551e 013590 storet 1 ,mem_le_txheader 
+0x551f 013591 fetcht 1 ,mem_le_scan_data_len 
+0x5520 013592 add temp ,6 ,pdata 
+0x5521 013593 store 1 ,mem_le_txlen 
+0x5522 013594 fetch 6 ,mem_le_lap 
+0x5523 013595 store 6 ,mem_le_txpayload 
+0x5524 013596 arg mem_le_scan_data ,contr 
+0x5525 013597 copy temp ,loopcnt 
+0x5526 013598 call memcpy 
+0x5527 013599 branch le_transmit_norx 
+:      013602 le_connect_request:
+0x5528 013603 set1 mark_ext_patch ,mark 
+0x5529 013604 bpatch patch2a_2 ,mem_patch2a 
+0x552a 013605 force -1 ,pdata 
+0x552b 013606 setsect 2 ,1 
+0x552c 013607 store 5 ,mem_le_channel_map 
+0x552d 013608 call le_calc_channel_map 
+0x552e 013609 force 4 ,loopcnt 
+0x552f 013610 arg mem_le_access ,contw 
+0x5530 013611 call generate_random_loop 
+0x5531 013612 fetch 2 ,mem_le_conn_superto 
+0x5532 013613 store 2 ,mem_le_superto 
+:      013614 le_con_req_hop_retry:
+0x5533 013615 random pdata 
+0x5534 013616 and_into 0xf ,pdata 
+0x5535 013617 sub pdata ,4 ,null 
+0x5536 013618 branch le_con_req_hop_retry ,positive 
+0x5537 013619 store 1 ,mem_le_hop 
+0x5538 013620 store 1 ,mem_tmp1 
+0x5539 013621 set1 mark_ext_patch ,mark 
+0x553a 013622 bpatch patch2a_3 ,mem_patch2a 
+0x553b 013623 fetcht 2 ,mem_le_conn_interval 
+0x553c 013624 storet 2 ,mem_le_tsniff 
+0x553d 013625 copy temp ,regc 
+0x553e 013626 add clkn_bt ,7 ,pdata 
+0x553f 013627 idiv regc 
+0x5540 013628 call wait_div_end 
+0x5541 013629 remainder rega 
+0x5542 013630 isub rega ,pdata 
+0x5543 013631 iadd regc ,pdata 
+0x5544 013632 fetcht 2 ,mem_le_dsniff 
+0x5545 013633 iadd temp ,pdata 
+0x5546 013634 store 4 ,mem_le_anchor 
+0x5547 013635 isub clkn_bt ,rega 
+0x5548 013636 increase -6 ,rega 
+0x5549 013637 arg 0x2205 ,regb 
+0x554a 013638 fetch 1 ,mem_le_conn_own_addr_type 
+0x554b 013639 nsetflag blank ,le_sender_addr_bit ,regb 
+0x554c 013640 fetch 1 ,mem_le_conn_peer_addr_type 
+0x554d 013641 nsetflag blank ,le_receiver_addr_bit ,regb 
+0x554e 013642 copy regb ,pdata 
+0x554f 013643 store 2 ,mem_le_txheader 
+0x5550 013644 fetch 6 ,mem_le_lap 
+0x5551 013645 istore 6 ,contw 
+0x5552 013646 fetch 6 ,mem_le_plap 
+0x5553 013647 istore 6 ,contw 
+0x5554 013648 fetch 4 ,mem_le_access 
+0x5555 013649 istore 4 ,contw 
+0x5556 013650 random pdata 
+0x5557 013651 istore 2 ,contw 
+0x5558 013652 random pdata 
+0x5559 013653 istore 1 ,contw 
+0x555a 013654 force 2 ,pdata 
+0x555b 013655 istore 1 ,contw 
+0x555c 013656 rshift2 rega ,pdata 
+0x555d 013657 istore 2 ,contw 
+0x555e 013658 rshift2 regc ,pdata 
+0x555f 013659 istore 2 ,contw 
+0x5560 013660 set1 mark_ext_patch ,mark 
+0x5561 013661 bpatch patch2a_4 ,mem_patch2a 
+0x5562 013662 fetch 2 ,mem_le_conn_latency 
+0x5563 013663 istore 2 ,contw 
+0x5564 013664 fetch 2 ,mem_le_conn_superto 
+0x5565 013665 istore 2 ,contw 
+0x5566 013666 fetch 5 ,mem_le_channel_map 
+0x5567 013667 istore 5 ,contw 
+0x5568 013668 fetch 1 ,mem_le_hop 
+0x5569 013669 arg param_le_sca ,temp 
+0x556a 013670 ior temp ,pdata 
+0x556b 013671 istore 1 ,contw 
+0x556c 013672 call le_transmit_norx 
+0x556d 013673 setarg mem_le_txheader 
+0x556e 013674 add pdata ,18 ,contr 
+0x556f 013675 ifetch 3 ,contr 
+0x5570 013676 store 3 ,mem_le_crcinit 
+0x5571 013677 rtn 
+:      013679 le_init_adv:
+0x5572 013680 set1 mark_ext_patch ,mark 
+0x5573 013681 bpatch patch2a_5 ,mem_patch2a 
+0x5574 013682 disable master 
+0x5575 013683 branch le_adv_access 
+:      013687 le_update_param:
+0x5576 013688 set1 mark_ext_patch ,mark 
+0x5577 013689 bpatch patch2a_6 ,mem_patch2a 
+0x5578 013690 fetch 1 ,mem_le_state 
+0x5579 013691 rtnbit0 lestate_update_param 
+0x557a 013692 fetch 2 ,mem_le_event_count 
+0x557b 013693 fetcht 2 ,mem_le_instant 
+0x557c 013694 isub temp ,pdata 
+0x557d 013695 nrtn positive 
+0x557e 013696 fetch 1 ,mem_le_state 
+0x557f 013697 set0 lestate_update_param ,pdata 
+0x5580 013698 set0 lestate_got_first_packet ,pdata 
+0x5581 013699 store 1 ,mem_le_state 
+0x5582 013700 fetch 4 ,mem_le_anchor 
+0x5583 013701 fetcht 2 ,mem_le_tsniff 
+0x5584 013702 isub temp ,rega 
+0x5585 013703 set1 mark_ext_patch ,mark 
+0x5586 013704 bpatch patch2a_7 ,mem_patch2a 
+0x5587 013705 fetch 1 ,mem_le_new_param 
+0x5588 013706 store 1 ,mem_le_window_size 
+0x5589 013707 ifetcht 2 ,contr 
+0x558a 013708 ifetch 2 ,contr 
+0x558b 013709 lshift2 pdata ,pdata 
+0x558c 013710 store 2 ,mem_le_tsniff 
+0x558d 013711 lshift2 temp ,temp 
+0x558e 013712 iadd temp ,pdata 
+0x558f 013713 ifetcht 4 ,contr 
+0x5590 013714 storet 4 ,mem_le_slave_latency 
+0x5591 013715 iadd rega ,pdata 
+0x5592 013716 store 4 ,mem_le_anchor 
+0x5593 013717 branch le_receive_window_size 
+:      013719 le_update_channel_map:
+0x5594 013720 set1 mark_ext_patch ,mark 
+0x5595 013721 bpatch patch2b_0 ,mem_patch2b 
+0x5596 013722 fetch 1 ,mem_le_state 
+0x5597 013723 rtnbit0 lestate_update_map 
+0x5598 013724 fetch 2 ,mem_le_event_count 
+0x5599 013725 fetcht 2 ,mem_le_instant 
+0x559a 013726 isub temp ,pdata 
+0x559b 013727 nrtn positive 
+0x559c 013728 fetch 1 ,mem_le_state 
+0x559d 013729 set0 lestate_update_map ,pdata 
+0x559e 013730 store 1 ,mem_le_state 
+0x559f 013731 fetch 5 ,mem_le_new_map 
+0x55a0 013732 store 5 ,mem_le_channel_map 
+0x55a1 013733 branch le_calc_channel_map 
+:      013736 le_acknowledge:
+0x55a2 013737 set1 mark_ext_patch ,mark 
+0x55a3 013738 bpatch patch2b_1 ,mem_patch2b 
+0x55a4 013739 call le_supervision_flush 
+0x55a5 013740 call le_check_wak 
+0x55a6 013741 fetch 1 ,mem_le_rxbuf 
+0x55a7 013742 rshift pdata ,pdata 
+0x55a8 013743 ixor temp ,pdata 
+0x55a9 013744 isolate1 nesn ,pdata 
+0x55aa 013745 setflag true ,mark_old_packet ,mark 
+0x55ab 013746 fetch 1 ,mem_le_rxbuf + 1 
+0x55ac 013747 branch le_ack_unenc ,blank 
+0x55ad 013748 fetch 1 ,mem_le_state 
+0x55ae 013749 bbit0 lestate_encryption ,le_ack_unenc 
+0x55af 013750 call load_sk 
+0x55b0 013751 call le_decrypt 
+0x55b1 013752 nrtn blank 
+:      013753 le_ack_unenc:
+0x55b2 013754 rtnmark1 mark_old_packet 
+0x55b3 013755 fetcht 1 ,mem_le_arq 
+0x55b4 013756 setflip nesn ,temp 
+0x55b5 013757 storet 1 ,mem_le_arq 
+0x55b6 013758 branch le_parse 
+:      013760 le_check_wak:
+0x55b7 013761 set1 mark_ext_patch ,mark 
+0x55b8 013762 bpatch patch2b_2 ,mem_patch2b 
+0x55b9 013763 fetcht 1 ,mem_le_arq 
+0x55ba 013764 isolate0 wak ,temp 
+0x55bb 013765 rtn true 
+0x55bc 013766 fetch 1 ,mem_le_rxbuf 
+0x55bd 013767 lshift pdata ,pdata 
+0x55be 013768 ixor temp ,pdata 
+0x55bf 013769 rtnbit0 sn 
+0x55c0 013770 set0 wak ,temp 
+0x55c1 013771 setflip sn ,temp 
+0x55c2 013772 storet 1 ,mem_le_arq 
+0x55c3 013773 compare 3 ,temp ,3 
+0x55c4 013774 nrtn true 
+0x55c5 013775 fetch 1 ,mem_le_txpayload 
+0x55c6 013776 rtnne ll_start_enc_req 
+0x55c7 013777 fetch 1 ,mem_le_state 
+0x55c8 013778 set1 lestate_encryption ,pdata 
+0x55c9 013779 store 1 ,mem_le_state 
+0x55ca 013780 rtn 
+:      013782 le_wait_adv:
+0x55cb 013783 set1 mark_ext_patch ,mark 
+0x55cc 013784 bpatch patch2b_3 ,mem_patch2b 
+0x55cd 013785 call le_next_adv_channel 
+0x55ce 013786 call le_receive_adv 
+0x55cf 013787 fetch 1 ,mem_le_adv_waitcnt 
+0x55d0 013788 increase 1 ,pdata 
+0x55d1 013789 store 1 ,mem_le_adv_waitcnt 
+0x55d2 013790 rtn 
+:      013792 le_scan:
+0x55d3 013793 set1 mark_ext_patch ,mark 
+0x55d4 013794 bpatch patch2b_4 ,mem_patch2b 
+0x55d5 013795 fetch 1 ,mem_le_scan_enable 
+0x55d6 013796 rtnne le_scan_enable 
+0x55d7 013797 arg le_scan_interval_timer ,queue 
+0x55d8 013798 call timer_check 
+0x55d9 013799 nrtn blank 
+0x55da 013800 fetch 2 ,mem_le_scan_interval 
+0x55db 013801 fetcht 2 ,mem_le_scan_window 
+0x55dc 013802 isub temp ,pdata 
+0x55dd 013803 arg le_scan_interval_timer ,queue 
+0x55de 013804 call timer_init 
+0x55df 013805 disable master 
+0x55e0 013806 call le_init_adv 
+0x55e1 013807 call le_wait_adv 
+0x55e2 013808 nrtn match 
+0x55e3 013809 set1 mark_ext_patch ,mark 
+0x55e4 013810 bpatch patch2b_5 ,mem_patch2b 
+0x55e5 013811 fetch 6 ,mem_le_rxbuf + 2 
+0x55e6 013812 store 6 ,mem_le_plap 
+0x55e7 013813 call le_scan_dongle 
+0x55e8 013814 call le_scan_addr_to_uart 
+0x55e9 013816 fetch 1 ,mem_le_adv_rcv 
+0x55ea 013817 increase 1 ,pdata 
+0x55eb 013818 store 1 ,mem_le_adv_rcv 
+0x55ec 013819 call le_create_conn 
+0x55ed 013820 rtn master 
+0x55ee 013821 call hci_send_le_adv_report_event 
+0x55ef 013822 call le_send_scan_request 
+0x55f0 013823 nrtn match 
+0x55f1 013824 set1 mark_ext_patch ,mark 
+0x55f2 013825 bpatch patch2b_6 ,mem_patch2b 
+0x55f3 013826 fetch 1 ,mem_le_scanrsp_rcv 
+0x55f4 013827 increase 1 ,pdata 
+0x55f5 013828 store 1 ,mem_le_scanrsp_rcv 
+0x55f6 013829 fetch 9 ,mem_le_rxbuf + 8 
+0x55f7 013830 store 9 ,mem_tmp_buffer 
+0x55f8 013831 branch hci_send_le_adv_report_event 
+:      013833 le_create_conn:
+0x55f9 013834 set1 mark_ext_patch ,mark 
+0x55fa 013835 bpatch patch2b_7 ,mem_patch2b 
+0x55fb 013836 fetch 1 ,mem_cmd_le_create_conn 
+0x55fc 013837 rtnne hci_cmd_le_create_conn ,pdata 
+0x55fd 013838 fetch 6 ,mem_le_plap 
+0x55fe 013839 fetcht 6 ,mem_le_conn_peer_addr 
+0x55ff 013840 isub temp ,null 
+0x5600 013841 nrtn zero 
+0x5601 013842 call context_new 
+0x5602 013843 nrtn zero 
+0x5603 013844 call le_connect_request 
+0x5604 013845 call le_init_master 
+0x5605 013846 set1 mark_ext_patch ,mark 
+0x5606 013847 bpatch patch2c_0 ,mem_patch2c 
+0x5607 013848 jam 0 ,mem_hci_cmd 
+0x5608 013849 jam 0 ,mem_le_peer_sca 
+0x5609 013850 fetch 1 ,mem_device_option 
+0x560a 013851 bne dvc_op_dongle ,le_create_conn_ndongle 
+0x560b 013852 jam conn_sm_send_write_req ,mem_le_conn_sm 
+:      013853 le_create_conn_ndongle:
+0x560c 013854 arg 0 ,temp 
+0x560d 013855 call hci_send_le_conn_complete 
+0x560e 013856 jam 0 ,mem_le_scan_enable 
+0x560f 013857 jam 0 ,mem_cmd_le_create_conn 
+0x5610 013858 jam xt_ll_version_ind ,mem_fifo_temp 
+0x5611 013859 call le_xtype_fifo_in 
+0x5612 013860 branch context_save 
+:      013862 le_scan_check_sender_addr_type:
+0x5613 013863 arg 1 ,rega 
+0x5614 013864 fetch 1 ,mem_le_rxbuf 
+0x5615 013865 rtnbit1 le_sender_addr_bit 
+0x5616 013866 arg 0 ,rega 
+0x5617 013867 rtn 
+:      013869 le_xtype_fifo_count:
+0x5618 013870 arg mem_le_xtype_fifo ,contr 
+0x5619 013871 branch fifo_content_count 
+:      013873 le_xtype_fifo_is_empty:
+0x561a 013874 arg mem_le_xtype_fifo ,rega 
+0x561b 013875 branch fifo_is_empty 
+:      013877 le_xtype_fifo_is_full:
+0x561c 013878 arg mem_le_xtype_fifo ,rega 
+0x561d 013879 branch fifo_is_full 
+:      013881 le_xtype_fifo_is_near_full:
+0x561e 013882 arg mem_le_xtype_fifo ,rega 
+0x561f 013883 branch fifo_is_near_full 
+:      013885 le_xtype_fifo_in:
+0x5620 013886 arg mem_le_xtype_fifo ,rega 
+0x5621 013887 branch fifo_in 
+:      013889 le_prepare_tx:
+0x5622 013890 set1 mark_ext_patch ,mark 
+0x5623 013891 bpatch patch2c_1 ,mem_patch2c 
+0x5624 013892 fetch 1 ,mem_le_arq 
+0x5625 013893 rtnbit1 wak 
+0x5626 013894 arg mem_le_xtype_fifo ,rega 
+0x5627 013895 call fifo_out 
+0x5628 013896 nbranch le_prepare_tx_cmd ,blank 
+0x5629 013897 fetch 1 ,mem_device_option 
+0x562a 013898 bne dvc_op_hci ,le_send_empty 
+0x562b 013899 arg 0 ,type 
+0x562c 013900 call hci_rx_packet 
+0x562d 013901 copy type ,pdata 
+0x562e 013902 nrtn blank 
+0x562f 013903 branch le_send_empty 
+:      013904 le_prepare_tx_cmd:
+0x5630 013905 copy pdata ,temp 
+0x5631 013906 set1 mark_ext_patch ,mark 
+0x5632 013907 bpatch patch2c_2 ,mem_patch2c 
+0x5633 013908 copy temp ,pdata 
+0x5634 013909 bbit0 5 ,le_prepare_l2cap 
+0x5635 013910 force 3 ,type 
+0x5636 013911 set0 5 ,pdata 
+0x5637 013912 store 1 ,mem_le_txpayload 
+0x5638 013913 set1 mark_ext_patch ,mark 
+0x5639 013914 bpatch patch2c_3 ,mem_patch2c 
+0x563a 013915 fetch 1 ,mem_le_txpayload 
+0x563b 013916 beq ll_connection_update_req ,le_send_connection_update_req 
+0x563c 013917 beq ll_channel_map_req ,le_send_channel_map_req 
+0x563d 013918 beq ll_terminate_ind ,le_send_terminate_ind 
+0x563e 013919 beq ll_enc_req ,le_send_enc_req 
+0x563f 013920 beq ll_enc_rsp ,le_send_enc_rsp 
+0x5640 013921 beq ll_start_enc_req ,le_send_start_enc_req 
+0x5641 013922 beq ll_start_enc_rsp ,le_send_start_enc_rsp 
+0x5642 013923 beq ll_unknown_rsp ,le_send_unknown_rsp 
+0x5643 013924 beq ll_feature_req ,le_send_feature 
+0x5644 013925 beq ll_feature_rsp ,le_send_feature 
+0x5645 013926 beq ll_pause_enc_req ,le_send_pause_enc_req 
+0x5646 013927 beq ll_pause_enc_rsp ,le_send_pause_enc_rsp 
+0x5647 013928 beq ll_version_ind ,le_send_version_ind 
+0x5648 013929 beq ll_reject_ind ,le_send_reject_ind 
+0x5649 013930 beq ll_connection_param_req ,le_send_conn_param_req 
+0x564a 013931 branch assert 
+:      013933 le_prepare_l2cap:
+0x564b 013934 jam 0 ,mem_le_txcid + 1 
+0x564c 013935 force 2 ,type 
+0x564d 013936 bbit0 6 ,le_prepare_att 
+0x564e 013937 beq attop_write_command ,le_prepare_att 
+0x564f 013938 beq attop_signed_write_command ,le_prepare_att 
+0x5650 013939 jam le_l2cap_cid_smp ,mem_le_txcid 
+0x5651 013940 set0 6 ,pdata 
+0x5652 013941 store 1 ,mem_le_l2cap 
+:      013942 le_prepare_smp:
+0x5653 013943 set1 mark_ext_patch ,mark 
+0x5654 013944 bpatch patch2c_4 ,mem_patch2c 
+0x5655 013945 fetch 1 ,mem_le_l2cap 
+:      013946 le_prepare_smp0:
+0x5656 013947 beq smp_pairing_request ,le_send_smp_pairing_request 
+0x5657 013948 beq smp_pairing_response ,le_send_smp_pairing_response 
+0x5658 013949 beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+0x5659 013950 beq smp_pairing_random ,le_send_smp_pairing_random 
+0x565a 013951 beq smp_pairing_failed ,le_send_smp_pairing_failed 
+0x565b 013952 beq smp_encryption_information ,le_send_smp_encryption_information 
+0x565c 013953 beq smp_master_identification ,le_send_smp_master_identification 
+0x565d 013954 beq smp_identity_information ,le_send_smp_identity_information 
+0x565e 013955 beq smp_identity_address_information ,le_send_smp_identity_address_information 
+0x565f 013956 beq smp_signing_information ,le_send_smp_signing_information 
+0x5660 013957 beq smp_security_request ,le_send_smp_security_request 
+0x5661 013958 branch assert 
+:      013960 le_prepare_att:
+0x5662 013961 jam le_l2cap_cid_att ,mem_le_txcid 
+0x5663 013962 store 1 ,mem_le_l2cap 
+0x5664 013963 set1 mark_ext_patch ,mark 
+0x5665 013964 bpatch patch2c_5 ,mem_patch2c 
+:      013965 le_prepare_att0:
+0x5666 013966 fetch 1 ,mem_le_l2cap 
+0x5667 013967 beq attop_error_response ,le_send_att_error_response 
+0x5668 013968 beq attop_exchange_mtu_request ,le_send_att_exchange_mtu 
+0x5669 013969 beq attop_exchange_mtu_response ,le_send_att_exchange_mtu 
+0x566a 013970 beq attop_find_information_request ,le_send_att_find_information_request 
+0x566b 013971 beq attop_find_information_response ,le_send_att_find_information_response 
+0x566c 013972 beq attop_find_by_type_value_request ,le_send_att_find_by_type_value_request 
+0x566d 013973 beq attop_find_by_type_value_response ,le_send_att_find_by_type_value_response 
+0x566e 013974 beq attop_read_by_type_request ,le_send_att_read_by_type_request 
+0x566f 013975 beq attop_read_by_type_response ,le_send_att_read_by_type_response 
+0x5670 013976 beq attop_read_request ,le_send_att_read_request 
+0x5671 013977 beq attop_read_response ,le_send_att_read_response 
+0x5672 013978 beq attop_read_blob_request ,le_send_att_read_blob_request 
+0x5673 013979 beq attop_read_blob_response ,le_send_att_read_blob_response 
+0x5674 013980 beq attop_read_multiple_request ,le_send_att_read_multiple_request 
+0x5675 013981 beq attop_read_multiple_response ,le_send_att_read_multiple_response 
+0x5676 013982 beq attop_read_by_group_type_request ,le_send_att_read_by_group_type_request 
+0x5677 013983 beq attop_read_by_group_type_response ,le_send_att_read_by_group_type_response 
+0x5678 013984 beq attop_write_request ,le_send_att_write_request 
+0x5679 013985 beq attop_write_response ,le_send_att_write_response 
+0x567a 013986 beq attop_prepare_write_request ,le_send_att_prepare_write_request 
+0x567b 013987 beq attop_prepare_write_response ,le_send_att_prepare_write_response 
+0x567c 013988 beq attop_execute_write_request ,le_send_att_execute_write_request 
+0x567d 013989 beq attop_execute_write_response ,le_send_att_execute_write_response 
+0x567e 013990 beq attop_handle_value_notification ,le_send_att_handle_value_notification 
+0x567f 013991 beq attop_handle_value_indication ,le_send_att_handle_value_indication 
+0x5680 013992 beq attop_handle_value_confirmation ,le_send_att_handle_value_confirmation 
+0x5681 013993 beq attop_write_command ,le_send_att_write_command 
+0x5682 013994 beq attop_signed_write_command ,le_send_att_signed_write_command 
+0x5683 013995 beq empty_le_data_pre ,le_send_empty_le_data_pre 
+0x5684 013996 beq empty_le_data ,le_send_empty_le_data 
+0x5685 013997 branch assert 
+:      013999 le_send_empty_le_data_pre:
+0x5686 014000 jam attop_read_by_group_type_request ,mem_fifo_temp 
+0x5687 014001 call le_xtype_fifo_in 
+:      014003 le_send_empty_le_data:
+0x5688 014004 setarg 0x0011 
+0x5689 014005 store 2 ,mem_le_txheader 
+0x568a 014006 fetch 1 ,mem_le_arq 
+0x568b 014007 set1 wak ,pdata 
+0x568c 014008 store 1 ,mem_le_arq 
+0x568d 014009 jam attop_write_request ,mem_fifo_temp 
+0x568e 014010 branch le_xtype_fifo_in 
+:      014012 le_send_connection_update_req:
+0x568f 014013 force 12 ,temp 
+0x5690 014014 branch le_send_packet 
+:      014016 le_send_channel_map_req:
+0x5691 014017 force 8 ,temp 
+0x5692 014018 branch le_send_packet 
+:      014020 le_send_terminate_ind:
+0x5693 014021 force 2 ,temp 
+0x5694 014022 branch le_send_packet 
+:      014024 le_send_enc_req:
+0x5695 014025 force 0 ,pdata 
+0x5696 014026 istore 8 ,contw 
+0x5697 014027 istore 2 ,contw 
+0x5698 014028 copy contw ,temp 
+0x5699 014029 arg mem_le_skdm ,contw 
+0x569a 014030 force 8 ,loopcnt 
+0x569b 014031 call generate_random_loop 
+0x569c 014032 fetch 8 ,mem_le_skdm 
+0x569d 014033 istore 8 ,temp 
+0x569e 014034 copy contw ,temp 
+0x569f 014035 arg mem_le_ivm ,contw 
+0x56a0 014036 force 4 ,loopcnt 
+0x56a1 014037 call generate_random_loop 
+0x56a2 014038 fetch 4 ,mem_le_ivm 
+0x56a3 014039 istore 4 ,temp 
+0x56a4 014040 force 23 ,temp 
+0x56a5 014041 branch le_send_packet 
+:      014043 le_send_enc_rsp:
+0x56a6 014044 copy contw ,temp 
+0x56a7 014045 arg mem_le_skds ,contw 
+0x56a8 014046 force 8 ,loopcnt 
+0x56a9 014047 call generate_random_loop 
+0x56aa 014048 fetch 8 ,mem_le_skds 
+0x56ab 014049 istore 8 ,temp 
+0x56ac 014050 copy contw ,temp 
+0x56ad 014051 arg mem_le_ivs ,contw 
+0x56ae 014052 force 4 ,loopcnt 
+0x56af 014053 call generate_random_loop 
+0x56b0 014054 fetch 4 ,mem_le_ivs 
+0x56b1 014055 istore 4 ,temp 
+0x56b2 014056 call generate_sk 
+0x56b3 014057 jam xt_ll_start_enc_req ,mem_fifo_temp 
+0x56b4 014058 call le_xtype_fifo_in 
+0x56b5 014059 force 13 ,temp 
+0x56b6 014060 branch le_send_packet 
+:      014062 le_send_start_enc_req:
+0x56b7 014063 force 1 ,temp 
+0x56b8 014064 branch le_send_packet 
+:      014066 le_send_start_enc_rsp:
+0x56b9 014067 force 1 ,temp 
+0x56ba 014068 branch le_send_packet ,master 
+0x56bb 014069 jam xt_smp_encryption_information ,mem_fifo_temp 
+0x56bc 014070 call le_xtype_fifo_in 
+0x56bd 014071 force 1 ,temp 
+0x56be 014072 branch le_send_packet 
+:      014074 le_send_unknown_rsp:
+0x56bf 014075 force 2 ,temp 
+0x56c0 014076 branch le_send_packet 
+:      014078 le_send_feature:
+0x56c1 014079 setarg param_le_features 
+0x56c2 014080 istore 8 ,contw 
+0x56c3 014081 force 9 ,temp 
+0x56c4 014082 branch le_send_packet 
+:      014084 le_send_pause_enc_req:
+0x56c5 014085 force 6 ,temp 
+0x56c6 014086 branch le_send_packet 
+:      014088 le_send_pause_enc_rsp:
+0x56c7 014089 force 6 ,temp 
+0x56c8 014090 branch le_send_packet 
+:      014092 le_send_version_ind:
+0x56c9 014093 setarg param_le_version 
+0x56ca 014094 istore 3 ,contw 
+0x56cb 014095 setarg param_le_subversion 
+0x56cc 014096 istore 2 ,contw 
+0x56cd 014097 force 6 ,temp 
+0x56ce 014098 branch le_send_packet 
+:      014100 le_send_reject_ind:
+0x56cf 014101 force 2 ,temp 
+0x56d0 014102 branch le_send_packet 
+:      014104 le_send_conn_param_req:
+0x56d1 014105 increase -1 ,contw 
+0x56d2 014106 setarg 0x000c 
+0x56d3 014107 istore 2 ,contw 
+0x56d4 014108 setarg 0x0005 
+0x56d5 014109 istore 2 ,contw 
+0x56d6 014110 setarg 0xb412 
+0x56d7 014111 istore 2 ,contw 
+0x56d8 014112 setarg 0x0008 
+0x56d9 014113 istore 2 ,contw 
+0x56da 014114 setarg 0x0008 
+0x56db 014115 istore 2 ,contw 
+0x56dc 014116 setarg 0x0010 
+0x56dd 014117 istore 2 ,contw 
+0x56de 014118 setarg 0 
+0x56df 014119 istore 2 ,contw 
+0x56e0 014120 setarg 0x012c 
+0x56e1 014121 istore 2 ,contw 
+0x56e2 014122 call le_send_autolen 
+0x56e3 014123 force 2 ,type 
+0x56e4 014124 branch le_send_packet 
+:      014126 le_send_smp_pairing_request:
+0x56e5 014127 setarg 0x1000401 
+0x56e6 014128 store 4 ,mem_le_preq 
+0x56e7 014129 setarg 0x070710 
+0x56e8 014130 istore 3 ,contw 
+0x56e9 014131 fetch 6 ,mem_le_preq + 1 
+0x56ea 014132 store 6 ,mem_le_l2cap_response 
+0x56eb 014133 force 11 ,temp 
+0x56ec 014134 branch le_send_packet 
+:      014136 le_send_smp_pairing_response:
+0x56ed 014137 setarg param_smp_paring_response 
+0x56ee 014138 store 4 ,mem_le_pres 
+0x56ef 014139 setarg param_smp_key_dist 
+0x56f0 014140 istore 3 ,contw 
+0x56f1 014141 fetch 6 ,mem_le_pres + 1 
+0x56f2 014142 store 6 ,mem_le_l2cap_response 
+0x56f3 014143 force 11 ,temp 
+0x56f4 014144 branch le_send_packet 
+:      014146 le_send_smp_pairing_confirm:
+0x56f5 014147 call generate_confirm 
+0x56f6 014148 arg mem_le_l2cap_response ,contw 
+0x56f7 014149 call store_aes_result 
+0x56f8 014150 force 21 ,temp 
+0x56f9 014151 branch le_send_packet 
+:      014153 le_send_smp_pairing_random:
+0x56fa 014154 fetch 8 ,mem_le_mrand 
+0x56fb 014155 branch le_send_smp_mrandom ,master 
+0x56fc 014156 fetch 8 ,mem_le_srand 
+:      014158 le_send_smp_mrandom:
+0x56fd 014159 call le_send_smp_128 
+0x56fe 014160 branch le_send_packet 
+:      014162 le_send_smp_pairing_failed:
+0x56ff 014163 force 6 ,temp 
+0x5700 014164 branch le_send_packet 
+:      014166 le_send_smp_encryption_information:
+0x5701 014167 jam bt_evt_le_enc_info ,mem_fifo_temp 
+0x5702 014168 call ui_ipc_send_event 
+0x5703 014169 jam xt_smp_master_identification ,mem_fifo_temp 
+0x5704 014170 call le_xtype_fifo_in 
+0x5705 014171 arg mem_le_my_ltk ,contw 
+0x5706 014172 call generate_random 
+0x5707 014173 fetch 8 ,mem_le_my_ltk 
+0x5708 014174 fetch 8 ,mem_le_ltk 
+0x5709 014175 call le_send_smp_128 
+0x570a 014176 branch le_send_packet 
+:      014178 le_send_smp_master_identification:
+0x570b 014179 jam xt_smp_identity_information ,mem_fifo_temp 
+0x570c 014180 call le_xtype_fifo_in 
+0x570d 014181 arg mem_le_l2cap_response ,contw 
+0x570e 014182 force 8 ,loopcnt 
+0x570f 014183 call generate_random_loop 
+0x5710 014184 force 15 ,temp 
+0x5711 014185 branch le_send_packet 
+:      014187 le_send_smp_identity_information:
+0x5712 014188 jam xt_smp_identity_address_information ,mem_fifo_temp 
+0x5713 014189 call le_xtype_fifo_in 
+0x5714 014190 arg mem_le_l2cap_response ,contw 
+0x5715 014191 call generate_random 
+0x5716 014192 branch le_send_autolen 
+:      014194 le_send_smp_identity_address_information:
+0x5717 014195 jam xt_smp_signing_information ,mem_fifo_temp 
+0x5718 014196 call le_xtype_fifo_in 
+0x5719 014197 force 0 ,pdata 
+0x571a 014198 store 1 ,mem_le_l2cap_response 
+0x571b 014199 fetch 6 ,mem_le_lap 
+0x571c 014200 istore 6 ,contw 
+0x571d 014201 branch le_send_autolen 
+:      014203 le_send_smp_signing_information:
+0x571e 014204 arg mem_le_l2cap_response ,contw 
+0x571f 014205 call generate_random 
+0x5720 014206 branch le_send_autolen 
+:      014208 le_send_smp_security_request:
+0x5721 014209 force 6 ,temp 
+0x5722 014210 branch le_send_packet 
+:      014212 le_send_smp_128:
+0x5723 014213 store 8 ,mem_le_l2cap_response 
+0x5724 014214 ifetch 8 ,contr 
+0x5725 014215 istore 8 ,contw 
+0x5726 014216 force 21 ,temp 
+0x5727 014217 rtn 
+:      014219 le_send_att_error_response_notfound:
+0x5728 014220 jam att_err_attribute_not_found ,mem_le_err_code 
+:      014221 le_send_att_error_response:
+0x5729 014222 jam attop_error_response ,mem_le_l2cap 
+0x572a 014223 fetch 3 ,mem_le_att_opcode 
+0x572b 014224 store 3 ,mem_le_l2cap_response 
+0x572c 014225 fetch 1 ,mem_le_err_code 
+0x572d 014226 istore 1 ,contw 
+0x572e 014227 branch le_send_autolen 
+:      014229 le_send_att_exchange_mtu:
+0x572f 014230 setarg param_le_mtu 
+0x5730 014231 istore 2 ,contw 
+0x5731 014232 branch le_send_autolen 
+:      014234 le_send_att_find_information_request:
+0x5732 014235 fetch 2 ,mem_le_search_handle_start 
+0x5733 014236 store 2 ,mem_le_l2cap_response 
+0x5734 014237 fetch 2 ,mem_le_search_handle_end 
+0x5735 014238 istore 2 ,contw 
+0x5736 014239 branch le_send_autolen 
+:      014243 le_send_att_find_information_response:
+0x5737 014244 force 1 ,pdata 
+0x5738 014245 store 1 ,mem_le_l2cap_response 
+0x5739 014246 call le_init_attlist_search 
+:      014247 le_send_att_find_information_res_loop:
+0x573a 014248 call le_att_handle_inrange 
+0x573b 014249 branch le_send_att_find_information_res_end ,blank 
+0x573c 014250 nbranch le_send_att_find_information_res_next ,positive 
+0x573d 014251 disable user 
+0x573e 014252 istore 2 ,contw 
+0x573f 014253 ifetch 2 ,contr 
+0x5740 014254 istore 2 ,contw 
+:      014255 le_send_att_find_information_res_cont:
+0x5741 014256 ifetch 1 ,contr 
+0x5742 014257 iadd contr ,contr 
+0x5743 014258 branch le_send_att_find_information_res_loop 
+:      014259 le_send_att_find_information_res_next:
+0x5744 014260 increase 2 ,contr 
+0x5745 014261 branch le_send_att_find_information_res_cont 
+:      014262 le_send_att_find_information_res_end:
+0x5746 014263 branch le_send_att_error_response_notfound ,user 
+0x5747 014264 branch le_send_autolen 
+:      014267 le_send_att_find_by_type_value_request:
+0x5748 014268 fetch 2 ,mem_le_search_handle_start 
+0x5749 014269 branch le_send_empty_le_data ,blank 
+0x574a 014270 store 2 ,mem_le_l2cap_response 
+0x574b 014271 fetch 2 ,mem_le_search_handle_end 
+0x574c 014273 istore 2 ,contw 
+0x574d 014274 fetch 2 ,mem_le_uuid 
+0x574e 014276 istore 2 ,contw 
+0x574f 014277 fetch 2 ,mem_le_search_att_type 
+0x5750 014279 istore 2 ,contw 
+0x5751 014280 branch le_send_autolen 
+:      014283 le_send_att_find_by_type_value_response:
+0x5752 014284 call le_start_end_handle_check_1 
+0x5753 014285 rtn user 
+0x5754 014286 fetcht 2 ,mem_le_uuid 
+0x5755 014287 setarg uuid_gatt_primary_service 
+0x5756 014288 isub temp ,null 
+0x5757 014289 branch le_send_att_find_by_type_value_res_primary ,zero 
+0x5758 014290 setarg uuid_gatt_secondary_service 
+0x5759 014291 isub temp ,null 
+0x575a 014292 branch le_send_att_error_response_notfound ,zero 
+0x575b 014293 setarg uuid_gatt_include 
+0x575c 014294 isub temp ,null 
+0x575d 014295 branch le_send_att_error_response_notfound ,zero 
+0x575e 014296 setarg uuid_gatt_characteristic 
+0x575f 014297 isub temp ,null 
+0x5760 014298 branch le_send_att_error_response_notfound ,zero 
+0x5761 014299 branch le_send_att_error_response_notfound 
+:      014301 le_send_att_find_by_type_value_res_primary:
+0x5762 014302 fetcht 2 ,mem_le_search_att_type 
+0x5763 014303 increase 2 ,contr 
+0x5764 014304 ifetch 1 ,contr 
+0x5765 014305 icopy regc 
+0x5766 014306 increase 1 ,regc 
+:      014308 le_send_att_find_by_type_value_res_primary_search_loop:
+0x5767 014309 increase -1 ,regc 
+0x5768 014310 branch le_send_att_error_response_notfound ,zero 
+0x5769 014311 ifetch 2 ,contr 
+0x576a 014312 isub temp ,null 
+0x576b 014313 branch le_send_att_find_by_type_value_res_primary_search_end ,zero 
+0x576c 014314 increase 4 ,contr 
+0x576d 014315 branch le_send_att_find_by_type_value_res_primary_search_loop 
+:      014317 le_send_att_find_by_type_value_res_primary_search_end:
+0x576e 014318 ifetch 2 ,contr 
+0x576f 014319 icopy rega 
+0x5770 014320 ifetch 2 ,contr 
+0x5771 014321 icopy regb 
+0x5772 014322 call le_start_end_handle_check_2 
+0x5773 014323 rtn user 
+0x5774 014324 jam attop_find_by_type_value_response ,mem_le_l2cap 
+0x5775 014325 deposit rega 
+0x5776 014326 store 2 ,mem_le_l2cap_response 
+0x5777 014327 deposit regb 
+0x5778 014328 istore 2 ,contw 
+0x5779 014329 force 9 ,temp 
+0x577a 014330 branch le_send_packet 
+:      014335 le_start_end_handle_check_1:
+0x577b 014336 disable user 
+0x577c 014337 fetcht 2 ,mem_le_search_handle_start 
+0x577d 014338 fetch 2 ,mem_le_search_handle_end 
+0x577e 014339 isub temp ,null 
+0x577f 014340 nbranch le_start_end_handle_check_1_fail ,positive 
+0x5780 014341 deposit temp 
+0x5781 014342 rtnne 0 
+:      014344 le_start_end_handle_check_1_fail:
+0x5782 014345 enable user 
+:      014346 le_send_att_invalid_handle:
+0x5783 014347 jam att_err_invalid_handle ,mem_le_err_code 
+0x5784 014348 branch le_send_att_error_response 
+:      014350 le_start_end_handle_check_2:
+0x5785 014351 disable user 
+0x5786 014352 fetcht 2 ,mem_le_search_handle_start 
+0x5787 014353 deposit rega 
+0x5788 014354 isub temp ,null 
+0x5789 014355 nbranch le_start_end_handle_check_2_fail ,positive 
+0x578a 014356 fetch 2 ,mem_le_search_handle_end 
+0x578b 014357 isub regb ,null 
+0x578c 014358 nbranch le_start_end_handle_check_2_fail ,positive 
+0x578d 014359 deposit regb 
+0x578e 014360 isub rega ,null 
+0x578f 014361 nbranch le_start_end_handle_check_2_fail ,positive 
+0x5790 014362 rtn 
+:      014364 le_start_end_handle_check_2_fail:
+0x5791 014365 enable user 
+0x5792 014366 branch le_send_att_error_response_notfound 
+:      014369 le_send_att_read_by_type_request:
+0x5793 014370 fetch 2 ,mem_le_search_handle_start 
+0x5794 014372 istore 2 ,contw 
+0x5795 014373 fetch 2 ,mem_le_search_handle_end 
+0x5796 014375 istore 2 ,contw 
+0x5797 014376 fetch 2 ,mem_le_search_att_type 
+0x5798 014377 istore 2 ,contw 
+0x5799 014378 force 11 ,temp 
+0x579a 014379 branch le_send_packet 
+:      014382 le_send_att_read_by_type_response:
+0x579b 014383 fetcht 2 ,mem_le_search_att_type 
+0x579c 014384 setarg uuid_gatt_characteristic 
+0x579d 014385 isub temp ,null 
+0x579e 014386 setarg 7 
+0x579f 014387 branch le_send_att_read_by_type_res_cont ,zero 
+0x57a0 014388 setarg uuid_gatt_primary_service 
+0x57a1 014389 isub temp ,null 
+0x57a2 014390 setarg 6 
+0x57a3 014391 branch le_send_att_read_by_type_res_cont ,zero 
+0x57a4 014392 branch le_send_att_error_response_notfound 
+:      014393 le_send_att_read_by_type_res_cont:
+0x57a5 014394 store 1 ,mem_le_l2cap_response 
+0x57a6 014395 call le_init_attlist_search 
+0x57a7 014396 force 3 ,alarm 
+:      014397 le_send_att_read_by_type_res_loop:
+0x57a8 014398 call le_att_handle_inrange 
+0x57a9 014399 branch le_send_att_read_by_type_res_end ,blank 
+0x57aa 014400 nbranch le_send_att_read_by_type_res_next ,positive 
+0x57ab 014401 iforce rega 
+0x57ac 014402 ifetch 2 ,contr 
+0x57ad 014403 isub temp ,null 
+0x57ae 014404 nbranch le_send_att_read_by_type_res_next2 ,zero 
+0x57af 014405 disable user 
+0x57b0 014406 deposit rega 
+0x57b1 014407 istore 2 ,contw 
+0x57b2 014408 ifetch 1 ,contr 
+0x57b3 014409 add pdata ,4 ,loopcnt 
+0x57b4 014410 call memcpy 
+0x57b5 014411 increase -1 ,alarm 
+0x57b6 014412 branch le_send_att_read_by_type_res_end ,zero 
+0x57b7 014413 branch le_send_att_read_by_type_res_next2 
+:      014414 le_send_att_read_by_type_res_next:
+0x57b8 014415 increase 2 ,contr 
+:      014416 le_send_att_read_by_type_res_next2:
+0x57b9 014417 ifetch 1 ,contr 
+0x57ba 014418 iadd contr ,contr 
+0x57bb 014419 branch le_send_att_read_by_type_res_loop 
+:      014420 le_send_att_read_by_type_res_end:
+0x57bc 014421 branch le_send_att_error_response_notfound ,user 
+0x57bd 014422 branch le_send_autolen 
+:      014425 le_send_att_read_request:
+0x57be 014426 fetch 1 ,mem_le_temp 
+0x57bf 014428 increase -1 ,pdata 
+0x57c0 014429 store 1 ,mem_le_temp 
+0x57c1 014430 lshift pdata ,pdata 
+0x57c2 014432 iadd contr ,contr 
+0x57c3 014433 ifetcht 2 ,contr 
+0x57c4 014434 storet 2 ,mem_le_l2cap_response 
+0x57c5 014435 branch le_send_autolen 
+:      014437 le_send_att_read_response:
+0x57c6 014438 fetcht 2 ,mem_le_att_handle 
+0x57c7 014439 call le_att_get_handle_ptr 
+0x57c8 014440 branch le_send_att_error_response_notfound ,blank 
+0x57c9 014441 ifetch 1 ,contr 
+0x57ca 014442 branch le_send_autolen ,blank 
+0x57cb 014443 sub pdata ,22 ,null 
+0x57cc 014444 branch le_send_att_read_response_less ,positive 
+0x57cd 014445 force 22 ,pdata 
+:      014446 le_send_att_read_response_less:
+0x57ce 014447 icopy loopcnt 
+0x57cf 014448 call memcpy 
+0x57d0 014449 branch le_send_autolen 
+:      014452 le_send_att_read_blob_request:
+0x57d1 014453 setarg 0x0003 
+0x57d2 014454 store 2 ,mem_le_l2cap_response 
+0x57d3 014455 setarg 0x0008 
+0x57d4 014456 istore 2 ,contw 
+0x57d5 014457 branch le_send_autolen 
+:      014459 le_send_att_read_blob_response:
+0x57d6 014460 fetch 2 ,mem_le_att_offset 
+0x57d7 014461 iforce rega 
+0x57d8 014462 fetcht 2 ,mem_le_att_handle 
+0x57d9 014463 call le_att_get_handle_ptr 
+0x57da 014464 branch le_send_att_error_response_notfound ,blank 
+0x57db 014465 ifetch 1 ,contr 
+0x57dc 014466 isub rega ,loopcnt 
+0x57dd 014467 nbranch le_send_att_error_response_notfound ,positive 
+0x57de 014468 sub loopcnt ,22 ,null 
+0x57df 014469 branch le_send_att_read_blob_response_less ,positive 
+0x57e0 014470 force 22 ,loopcnt 
+:      014471 le_send_att_read_blob_response_less:
+0x57e1 014472 deposit rega 
+0x57e2 014473 iadd contr ,contr 
+0x57e3 014474 call memcpy 
+0x57e4 014475 branch le_send_autolen 
+:      014477 le_send_att_read_multiple_request:
+0x57e5 014478 setarg 0x0003 
+0x57e6 014479 istore 2 ,contw 
+0x57e7 014480 setarg 0x0007 
+0x57e8 014481 istore 2 ,contw 
+0x57e9 014482 setarg 0x0009 
+0x57ea 014483 istore 2 ,contw 
+0x57eb 014484 branch le_send_autolen 
+:      014486 le_send_att_read_multiple_response:
+0x57ec 014487 fetch 1 ,mem_le_temp 
+0x57ed 014488 icopy regc 
+0x57ee 014489 arg mem_le_rxbuf + 7 ,rega 
+0x57ef 014490 arg mem_le_l2cap_response ,regb 
+0x57f0 014491 arg 0 ,timeup 
+0x57f1 014492 disable user7 
+:      014494 le_send_att_read_multiple_response_loop:
+0x57f2 014495 copy rega ,contr 
+0x57f3 014496 ifetcht 2 ,contr 
+0x57f4 014497 copy contr ,rega 
+0x57f5 014498 call le_att_get_handle_ptr 
+0x57f6 014499 branch le_send_att_read_multiple_response_end ,blank 
+0x57f7 014500 ifetch 1 ,contr 
+0x57f8 014501 icopy loopcnt 
+0x57f9 014502 iadd timeup ,timeup 
+0x57fa 014506 sub timeup ,24 ,null 
+0x57fb 014507 nbranch le_send_att_read_multiple_response_end_1 ,positive 
+0x57fc 014508 copy regb ,contw 
+:      014510 le_copy_att_value_loop_3:
+0x57fd 014511 ifetch 1 ,contr 
+0x57fe 014512 istore 1 ,contw 
+0x57ff 014513 loop le_copy_att_value_loop_3 
+0x5800 014514 copy contw ,regb 
+0x5801 014515 enable user7 
+0x5802 014516 increase -1 ,regc 
+0x5803 014517 branch le_send_att_read_multiple_response_end ,zero 
+0x5804 014518 branch le_send_att_read_multiple_response_loop 
+:      014520 le_send_att_read_multiple_response_end:
+0x5805 014521 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x5806 014522 disable user7 
+0x5807 014523 copy timeup ,temp 
+0x5808 014524 increase 5 ,temp 
+0x5809 014525 branch le_send_packet 
+:      014527 le_send_att_read_multiple_response_end_1:
+0x580a 014528 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x580b 014529 disable user7 
+0x580c 014530 deposit timeup 
+0x580d 014531 isub loopcnt ,temp 
+0x580e 014532 increase 5 ,temp 
+0x580f 014533 branch le_send_packet 
+:      014535 le_send_att_read_multiple_response_fail:
+0x5810 014536 jam att_err_unsupported_group_type ,mem_le_err_code 
+0x5811 014537 branch le_send_att_error_response 
+:      014540 le_send_att_read_by_group_type_request:
+0x5812 014541 fetch 2 ,mem_le_att_handle 
+0x5813 014542 branch le_send_empty_le_data ,blank 
+0x5814 014543 istore 2 ,contw 
+0x5815 014544 setarg 0xffff 
+0x5816 014545 istore 2 ,contw 
+0x5817 014546 setarg 0x2800 
+0x5818 014547 istore 2 ,contw 
+0x5819 014548 branch le_send_autolen 
+:      014551 le_send_att_read_by_group_type_response:
+0x581a 014552 setarg 0x06 
+0x581b 014553 store 1 ,mem_le_l2cap_response 
+0x581c 014554 fetch 2 ,mem_le_search_att_type 
+0x581d 014555 iforce rega 
+0x581e 014556 call le_init_attlist_search 
+0x581f 014557 force 3 ,loopcnt 
+:      014558 le_send_att_read_by_group_type_response_loop:
+0x5820 014559 call le_att_handle_inrange 
+0x5821 014560 branch le_send_att_read_by_group_type_response_last ,blank 
+0x5822 014561 nbranch le_send_att_read_by_group_type_response_next ,positive 
+0x5823 014562 iforce alarm 
+0x5824 014563 ifetch 2 ,contr 
+0x5825 014564 isub rega ,null 
+0x5826 014565 nbranch le_send_att_read_by_group_type_response_cont ,zero 
+0x5827 014566 deposit alarm 
+0x5828 014567 branch le_send_att_read_by_group_type_response_first ,user 
+0x5829 014568 increase -1 ,pdata 
+0x582a 014569 istore 2 ,contw 
+0x582b 014570 istoret 2 ,contw 
+0x582c 014571 increase 1 ,pdata 
+0x582d 014572 increase -1 ,loopcnt 
+0x582e 014573 branch le_send_autolen ,zero 
+:      014574 le_send_att_read_by_group_type_response_first:
+0x582f 014575 disable user 
+0x5830 014576 istore 2 ,contw 
+0x5831 014577 increase 1 ,contr 
+0x5832 014578 ifetcht 2 ,contr 
+0x5833 014579 increase -3 ,contr 
+0x5834 014580 branch le_send_att_read_by_group_type_response_cont 
+:      014581 le_send_att_read_by_group_type_response_last:
+0x5835 014582 branch le_send_att_error_response_notfound ,user 
+0x5836 014583 force -1 ,pdata 
+0x5837 014584 istore 2 ,contw 
+0x5838 014585 istoret 2 ,contw 
+0x5839 014586 branch le_send_autolen 
+:      014587 le_send_att_read_by_group_type_response_next:
+0x583a 014588 increase 2 ,contr 
+:      014589 le_send_att_read_by_group_type_response_cont:
+0x583b 014590 ifetch 1 ,contr 
+0x583c 014591 iadd contr ,contr 
+0x583d 014592 branch le_send_att_read_by_group_type_response_loop 
+:      014596 le_send_att_write_request:
+0x583e 014597 fetch 2 ,mem_le_notify_handle 
+0x583f 014598 store 2 ,mem_le_l2cap_response 
+0x5840 014599 fetch 1 ,mem_le_handle_data_len 
+0x5841 014600 copy pdata ,loopcnt 
+0x5842 014601 arg mem_le_handle_data ,contr 
+0x5843 014602 call memcpy 
+0x5844 014603 branch le_send_autolen 
+:      014605 le_send_att_write_response:
+0x5845 014606 fetcht 2 ,mem_le_att_handle 
+0x5846 014607 call le_att_get_handle_ptr 
+0x5847 014608 branch le_send_att_write_response_go ,blank 
+0x5848 014609 increase -2 ,contr 
+0x5849 014610 ifetcht 2 ,contr 
+0x584a 014611 setarg uuid_client_characteristic 
+0x584b 014612 isub temp ,null 
+0x584c 014613 nbranch le_send_att_write_response_go ,zero 
+0x584d 014614 increase 1 ,contr 
+0x584e 014615 ifetcht 2 ,contr 
+0x584f 014616 setarg 0x0001 
+0x5850 014617 isub temp ,null 
+0x5851 014618 branch le_send_att_write_response_notify ,zero 
+0x5852 014619 setarg 0x0000 
+0x5853 014620 isub temp ,null 
+0x5854 014621 nbranch le_send_att_write_response_go ,zero 
+0x5855 014622 branch le_send_att_write_response_go 
+:      014624 le_send_att_write_response_notify:
+0x5856 014625 increase -7 ,contr 
+0x5857 014626 ifetch 2 ,contr 
+0x5858 014627 increase -1 ,pdata 
+0x5859 014628 store 2 ,mem_le_notify_handle 
+0x585a 014629 jam attop_handle_value_notification ,mem_fifo_temp 
+0x585b 014630 call le_xtype_fifo_in 
+:      014633 le_send_att_write_response_go:
+0x585c 014634 force 5 ,temp 
+0x585d 014635 branch le_send_packet 
+:      014637 le_send_att_prepare_write_request:
+0x585e 014638 force 6 ,temp 
+0x585f 014639 branch le_send_packet 
+:      014641 le_send_att_prepare_write_response:
+0x5860 014642 force 6 ,temp 
+0x5861 014643 branch le_send_packet 
+:      014645 le_send_att_execute_write_request:
+0x5862 014646 force 6 ,temp 
+0x5863 014647 branch le_send_packet 
+:      014649 le_send_att_execute_write_response:
+0x5864 014650 force 6 ,temp 
+0x5865 014651 branch le_send_packet 
+:      014653 le_att_check_notification_enable:
+0x5866 014654 set1 mark_ext_patch ,mark 
+0x5867 014655 bpatch patch2c_6 ,mem_patch2c 
+0x5868 014656 increase 1 ,temp 
+0x5869 014657 call le_att_get_handle_ptr 
+0x586a 014658 increase -2 ,contr 
+0x586b 014659 ifetch 2 ,contr 
+0x586c 014660 arg client_charactertic_configuration ,temp 
+0x586d 014661 isub temp ,null 
+0x586e 014662 nrtn zero 
+0x586f 014663 increase 1 ,contr 
+0x5870 014664 copy contr ,rega 
+0x5871 014665 ifetch 1 ,contr 
+0x5872 014666 rtn 
+:      014668 le_send_att_handle_value_notification:
+0x5873 014669 jam 0 ,mem_le_notify_len 
+0x5874 014670 fetch 2 ,mem_cb_update_notify_value 
+0x5875 014671 call callback_func 
+0x5876 014672 arg mem_le_l2cap ,contw 
+0x5877 014673 increase 1 ,contw 
+0x5878 014674 fetcht 2 ,mem_le_notify_handle 
+0x5879 014675 istoret 2 ,contw 
+0x587a 014676 call le_att_get_handle_ptr 
+0x587b 014677 ifetch 1 ,contr 
+0x587c 014678 icopy loopcnt 
+0x587d 014679 call memcpy 
+0x587e 014680 fetcht 1 ,mem_le_notify_len 
+0x587f 014681 increase 7 ,temp 
+0x5880 014682 call le_send_packet 
+0x5881 014683 branch le_clear_notify_att 
+:      014685 le_send_att_handle_value_indication:
+0x5882 014686 force 6 ,temp 
+0x5883 014687 branch le_send_packet 
+:      014689 le_send_att_handle_value_confirmation:
+0x5884 014690 force 6 ,temp 
+0x5885 014691 branch le_send_packet 
+:      014693 le_send_att_write_command:
+0x5886 014694 force 6 ,temp 
+0x5887 014695 branch le_send_packet 
+:      014697 le_send_att_signed_write_command:
+0x5888 014698 force 6 ,temp 
+0x5889 014699 branch le_send_packet 
+:      014702 le_send_autolen:
+0x588a 014703 set1 mark_ext_patch ,mark 
+0x588b 014704 bpatch patch2c_7 ,mem_patch2c 
+0x588c 014705 setarg mem_le_txpayload 
+0x588d 014706 isub contw ,pdata 
+0x588e 014707 sub pdata ,0 ,temp 
+0x588f 014708 branch le_send_packet 
+:      014711 le_send_empty:
+0x5890 014712 force 0 ,temp 
+0x5891 014713 force 1 ,type 
+:      014715 le_send_packet:
+0x5892 014716 set1 mark_ext_patch ,mark 
+0x5893 014717 bpatch patch2d_0 ,mem_patch2d 
+0x5894 014718 storet 1 ,mem_le_txlen 
+0x5895 014719 compare 2 ,type ,3 
+0x5896 014720 nbranch le_send_non_l2cap ,true 
+0x5897 014721 add temp ,-4 ,pdata 
+0x5898 014722 store 2 ,mem_le_txpayload 
+:      014724 le_send_non_l2cap:
+0x5899 014725 fetcht 1 ,mem_le_arq 
+0x589a 014726 call le_xtype_fifo_is_empty 
+0x589b 014727 nsetflag blank ,md ,temp 
+0x589c 014728 set1 wak ,temp 
+0x589d 014729 and temp ,0xfc ,pdata 
+0x589e 014730 ior type ,pdata 
+0x589f 014731 store 1 ,mem_le_arq 
+0x58a0 014732 and_into 0x1f ,pdata 
+0x58a1 014733 store 1 ,mem_le_txheader 
+0x58a2 014734 set1 mark_ext_patch ,mark 
+0x58a3 014735 bpatch patch2d_1 ,mem_patch2d 
+0x58a4 014736 fetch 1 ,mem_le_txheader 
+0x58a5 014737 compare 1 ,type ,3 
+0x58a6 014738 rtn true 
+0x58a7 014739 fetch 7 ,mem_le_txheader + 1 
+0x58a8 014740 fetch 1 ,mem_le_state 
+0x58a9 014741 rtnbit0 lestate_encryption 
+0x58aa 014742 call load_sk 
+0x58ab 014743 branch le_encrypt 
+:      014745 le_parse:
+0x58ac 014746 set1 mark_ext_patch ,mark 
+0x58ad 014747 bpatch patch2d_2 ,mem_patch2d 
+0x58ae 014748 call le_xtype_fifo_is_full 
+0x58af 014749 nbranch assert ,blank 
+0x58b0 014750 nrtn blank 
+0x58b1 014751 fetch 1 ,mem_le_rxbuf + 1 
+0x58b2 014752 rtn blank 
+0x58b3 014753 fetch 1 ,mem_le_rxbuf 
+0x58b4 014754 compare 1 ,pdata ,3 
+0x58b5 014755 branch le_parse_l2cap ,true 
+0x58b6 014756 fetch 7 ,mem_le_rxbuf + 1 
+0x58b7 014757 fetch 1 ,mem_le_rxbuf 
+0x58b8 014758 compare 2 ,pdata ,3 
+0x58b9 014759 branch le_parse_l2cap ,true 
+0x58ba 014760 fetch 1 ,mem_le_rxbuf + 2 
+0x58bb 014761 store 1 ,mem_le_rx_ll_opcode 
+0x58bc 014762 copy pdata ,regc 
+0x58bd 014763 set1 mark_ext_patch ,mark 
+0x58be 014764 bpatch patch2d_3 ,mem_patch2d 
+0x58bf 014765 copy regc ,pdata 
+0x58c0 014766 beq ll_connection_update_req ,le_parse_connection_update_req 
+0x58c1 014767 beq ll_channel_map_req ,le_parse_channel_map_req 
+0x58c2 014768 beq ll_terminate_ind ,le_parse_terminate_ind 
+0x58c3 014769 beq ll_enc_req ,le_parse_enc_req 
+0x58c4 014770 beq ll_enc_rsp ,le_parse_enc_rsp 
+0x58c5 014771 beq ll_start_enc_req ,le_parse_start_enc_req 
+0x58c6 014772 beq ll_start_enc_rsp ,le_parse_start_enc_rsp 
+0x58c7 014773 beq ll_unknown_rsp ,le_parse_unknown_rsp 
+0x58c8 014774 beq ll_feature_req ,le_parse_feature_req 
+0x58c9 014775 beq ll_feature_rsp ,le_parse_feature_rsp 
+0x58ca 014776 beq ll_pause_enc_req ,le_parse_pause_enc_req 
+0x58cb 014777 beq ll_pause_enc_rsp ,le_parse_pause_enc_rsp 
+0x58cc 014778 beq ll_version_ind ,le_parse_version_ind 
+0x58cd 014779 beq ll_reject_ind ,le_parse_reject_ind 
+0x58ce 014780 branch assert 
+:      014782 le_parse_l2cap:
+0x58cf 014783 fetch 1 ,mem_le_rxbuf + 1 
+0x58d0 014784 and pdata ,0x1f ,pdata 
+0x58d1 014785 rtn blank 
+0x58d2 014786 fetch 1 ,mem_device_option 
+0x58d3 014787 beq dvc_op_hci ,le_acl_upgoing 
+0x58d4 014788 fetch 2 ,mem_le_rxbuf + 4 
+0x58d5 014789 beq le_l2cap_cid_att ,le_parse_att 
+0x58d6 014790 beq le_l2cap_cid_smp ,le_parse_smp 
+0x58d7 014791 rtn 
+:      014793 le_acl_upgoing:
+0x58d8 014794 set1 mark_ext_patch ,mark 
+0x58d9 014795 bpatch patch2d_4 ,mem_patch2d 
+0x58da 014796 call hci_get_packet_ptr 
+0x58db 014797 fetch 1 ,mem_le_conn_handle 
+0x58dc 014798 fetcht 1 ,mem_le_rxbuf 
+0x58dd 014799 and_into 3 ,temp 
+0x58de 014800 lshift8 temp ,temp 
+0x58df 014801 lshift4 temp ,temp 
+0x58e0 014802 ior temp ,pdata 
+0x58e1 014803 istore 2 ,contwu 
+0x58e2 014804 fetcht 1 ,mem_le_rxbuf + 1 
+0x58e3 014805 and temp ,0x1f ,temp 
+0x58e4 014806 istoret 2 ,contwu 
+0x58e5 014807 copy temp ,loopcnt 
+0x58e6 014808 call uart_copy_tx_bytes 
+0x58e7 014809 add temp ,4 ,loopcnt 
+0x58e8 014810 call h4_send_packet_acl 
+0x58e9 014811 branch h4_send_acl_trigger 
+:      014813 le_acl_downgoing:
+0x58ea 014814 set1 mark_ext_patch ,mark 
+0x58eb 014815 bpatch patch2d_5 ,mem_patch2d 
+0x58ec 014816 arg 0x2 ,type 
+0x58ed 014817 ifetch 2 ,contru 
+0x58ee 014818 ifetch 2 ,contru 
+0x58ef 014819 branch assert ,blank 
+0x58f0 014820 copy pdata ,loopcnt 
+0x58f1 014821 arg mem_le_txpayload ,contw 
+0x58f2 014822 call uart_copy_rx_bytes 
+0x58f3 014823 branch le_send_autolen 
+:      014825 le_parse_smp:
+0x58f4 014826 set1 mark_ext_patch ,mark 
+0x58f5 014827 bpatch patch2d_6 ,mem_patch2d 
+0x58f6 014828 ifetch 1 ,contr 
+0x58f7 014829 beq smp_pairing_request ,le_parse_smp_pairing_request 
+0x58f8 014830 beq smp_pairing_response ,le_parse_smp_pairing_response 
+0x58f9 014831 beq smp_pairing_confirm ,le_parse_smp_pairing_confirm 
+0x58fa 014832 beq smp_pairing_random ,le_parse_smp_pairing_random 
+0x58fb 014833 beq smp_pairing_failed ,le_parse_smp_pairing_failed 
+0x58fc 014834 beq smp_encryption_information ,le_parse_smp_encryption_information 
+0x58fd 014835 beq smp_master_identification ,le_parse_smp_master_identification 
+0x58fe 014836 beq smp_identity_information ,le_parse_smp_identity_information 
+0x58ff 014837 beq smp_identity_address_information ,le_parse_smp_identity_address_information 
+0x5900 014838 beq smp_signing_information ,le_parse_smp_signing_information 
+0x5901 014839 beq smp_security_request ,le_parse_smp_security_request 
+0x5902 014840 branch assert 
+:      014842 le_parse_att:
+0x5903 014843 set1 mark_ext_patch ,mark 
+0x5904 014844 bpatch patch2d_7 ,mem_patch2d 
+0x5905 014845 ifetch 3 ,contr 
+0x5906 014846 store 3 ,mem_le_att_opcode 
+:      014847 le_parse_att_p:
+0x5907 014848 beq attop_error_response ,le_parse_att_error_response 
+0x5908 014849 beq attop_exchange_mtu_request ,le_parse_att_exchange_mtu_request 
+0x5909 014850 beq attop_exchange_mtu_response ,le_parse_att_exchange_mtu_response 
+0x590a 014851 beq attop_find_information_request ,le_parse_att_find_information_request 
+0x590b 014852 beq attop_find_information_response ,le_parse_att_find_information_response 
+0x590c 014853 beq attop_find_by_type_value_request ,le_parse_att_find_by_type_value_request 
+0x590d 014854 beq attop_find_by_type_value_response ,le_parse_att_find_by_type_value_response 
+0x590e 014855 beq attop_read_by_type_request ,le_parse_att_read_by_type_request 
+0x590f 014856 beq attop_read_by_type_response ,le_parse_att_read_by_type_response 
+0x5910 014857 beq attop_read_request ,le_parse_att_read_request 
+0x5911 014858 beq attop_read_response ,le_parse_att_read_response 
+0x5912 014859 beq attop_read_blob_request ,le_parse_att_read_blob_request 
+0x5913 014860 beq attop_read_blob_response ,le_parse_att_read_blob_response 
+0x5914 014861 beq attop_read_multiple_request ,le_parse_att_read_multiple_request 
+0x5915 014862 beq attop_read_multiple_response ,le_parse_att_read_multiple_response 
+0x5916 014863 beq attop_read_by_group_type_request ,le_parse_att_read_by_group_type_request 
+0x5917 014864 beq attop_read_by_group_type_response ,le_parse_att_read_by_group_type_response 
+0x5918 014865 beq attop_write_request ,le_parse_att_write_request 
+0x5919 014866 beq attop_write_response ,le_parse_att_write_response 
+0x591a 014867 beq attop_prepare_write_request ,le_parse_att_prepare_write_request 
+0x591b 014868 beq attop_prepare_write_response ,le_parse_att_prepare_write_response 
+0x591c 014869 beq attop_execute_write_request ,le_parse_att_execute_write_request 
+0x591d 014870 beq attop_execute_write_response ,le_parse_att_execute_write_response 
+0x591e 014871 beq attop_handle_value_notification ,le_parse_att_handle_value_notification 
+0x591f 014872 beq attop_handle_value_indication ,le_parse_att_handle_value_indication 
+0x5920 014873 beq attop_handle_value_confirmation ,le_parse_att_handle_value_confirmation 
+0x5921 014874 beq attop_write_command ,le_parse_att_write_command 
+0x5922 014875 beq attop_signed_write_command ,le_parse_att_signed_write_command 
+0x5923 014876 branch assert 
+:      014879 le_parse_connection_update_req:
+0x5924 014880 ifetch 9 ,contr 
+0x5925 014881 store 9 ,mem_le_new_param 
+0x5926 014882 ifetch 2 ,contr 
+0x5927 014883 store 2 ,mem_le_instant 
+0x5928 014884 fetch 1 ,mem_le_state 
+0x5929 014885 set1 lestate_update_param ,pdata 
+0x592a 014886 store 1 ,mem_le_state 
+0x592b 014887 rtn 
+:      014889 le_parse_channel_map_req:
+0x592c 014890 ifetch 5 ,contr 
+0x592d 014891 store 5 ,mem_le_new_map 
+0x592e 014892 ifetch 2 ,contr 
+0x592f 014893 store 2 ,mem_le_instant 
+0x5930 014894 fetch 1 ,mem_le_state 
+0x5931 014895 set1 lestate_update_map ,pdata 
+0x5932 014896 store 1 ,mem_le_state 
+0x5933 014897 rtn 
+:      014899 le_parse_terminate_ind:
+0x5934 014900 fetch 1 ,mem_le_op 
+0x5935 014901 set1 op_disconn ,pdata 
+0x5936 014902 store 1 ,mem_le_op 
+0x5937 014903 rtn 
+:      014905 le_parse_enc_req:
+0x5938 014906 increase 10 ,contr 
+0x5939 014907 ifetch 8 ,contr 
+0x593a 014908 store 8 ,mem_le_skdm 
+0x593b 014909 ifetch 4 ,contr 
+0x593c 014910 store 4 ,mem_le_ivm 
+0x593d 014911 jam xt_ll_enc_rsp ,mem_fifo_temp 
+0x593e 014912 branch le_xtype_fifo_in 
+:      014914 le_parse_enc_rsp:
+0x593f 014915 ifetch 8 ,contr 
+0x5940 014916 store 8 ,mem_le_skds 
+0x5941 014917 ifetch 4 ,contr 
+0x5942 014918 store 4 ,mem_le_ivs 
+0x5943 014919 branch generate_sk 
+:      014921 le_parse_start_enc_req:
+0x5944 014922 fetch 1 ,mem_le_state 
+0x5945 014923 set1 lestate_encryption ,pdata 
+0x5946 014924 store 1 ,mem_le_state 
+0x5947 014925 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x5948 014926 branch le_xtype_fifo_in 
+:      014928 le_parse_start_enc_rsp:
+0x5949 014929 rtn master 
+0x594a 014930 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x594b 014931 branch le_xtype_fifo_in 
+:      014933 le_parse_unknown_rsp:
+0x594c 014934 rtn 
+:      014936 le_parse_feature_req:
+0x594d 014937 jam xt_ll_feature_rsp ,mem_fifo_temp 
+0x594e 014938 branch le_xtype_fifo_in 
+:      014940 le_parse_feature_rsp:
+0x594f 014941 rtn 
+:      014943 le_parse_pause_enc_req:
+0x5950 014944 rtn 
+:      014946 le_parse_pause_enc_rsp:
+0x5951 014947 rtn 
+:      014949 le_parse_version_ind:
+0x5952 014950 rtn master 
+0x5953 014951 jam xt_ll_version_ind ,mem_fifo_temp 
+0x5954 014952 branch le_xtype_fifo_in 
+:      014954 le_parse_reject_ind:
+0x5955 014955 rtn 
+:      014958 le_parse_smp_pairing_request:
+0x5956 014959 store 1 ,mem_le_preq 
+0x5957 014960 ifetch 6 ,contr 
+0x5958 014961 istore 6 ,contw 
+0x5959 014962 jam xt_smp_pairing_response ,mem_fifo_temp 
+0x595a 014963 branch le_xtype_fifo_in 
+:      014965 le_parse_smp_pairing_response:
+0x595b 014966 store 1 ,mem_le_pres 
+0x595c 014967 ifetch 6 ,contr 
+0x595d 014968 istore 6 ,contw 
+0x595e 014969 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x595f 014970 branch le_xtype_fifo_in 
+:      014972 le_parse_smp_pairing_confirm:
+0x5960 014973 arg mem_le_rconfirm ,contw 
+0x5961 014974 call memcpy16 
+0x5962 014975 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x5963 014976 branch le_xtype_fifo_in ,master 
+0x5964 014977 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x5965 014978 branch le_xtype_fifo_in 
+:      014980 le_parse_smp_pairing_random:
+0x5966 014981 call authenticate_rconfirm 
+0x5967 014982 branch le_parse_smp_pairing_random_success ,zero 
+0x5968 014983 jam xt_smp_pairing_failed ,mem_fifo_temp 
+0x5969 014984 branch le_xtype_fifo_in 
+:      014986 le_parse_smp_pairing_random_success:
+0x596a 014987 call generate_stk 
+0x596b 014988 jam xt_ll_enc_req ,mem_fifo_temp 
+0x596c 014989 branch le_xtype_fifo_in ,master 
+0x596d 014990 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x596e 014991 branch le_xtype_fifo_in 
+:      014993 le_parse_smp_pairing_failed:
+0x596f 014994 rtn 
+:      014996 le_parse_smp_encryption_information:
+0x5970 014997 arg mem_le_peer_ltk ,contw 
+0x5971 014998 branch memcpy16 
+:      015000 le_parse_smp_master_identification:
+0x5972 015001 rtn 
+:      015003 le_parse_smp_identity_information:
+0x5973 015004 rtn 
+:      015006 le_parse_smp_identity_address_information:
+0x5974 015007 rtn 
+:      015009 le_parse_smp_signing_information:
+0x5975 015010 rtn 
+:      015012 le_parse_smp_security_request:
+0x5976 015013 rtn 
+:      015015 le_parse_att_error_response:
+0x5977 015016 increase -2 ,contr 
+0x5978 015017 ifetcht 1 ,contr 
+0x5979 015018 setarg attop_find_by_type_value_request 
+0x597a 015019 isub temp ,null 
+0x597b 015020 branch le_parse_att_error_res_find_by_type_value ,zero 
+0x597c 015021 setarg attop_find_information_request 
+0x597d 015022 isub temp ,null 
+0x597e 015023 branch le_parse_att_error_res_find_info ,zero 
+0x597f 015024 setarg attop_read_by_type_request 
+0x5980 015025 isub temp ,null 
+0x5981 015026 branch le_parse_att_error_res_read_by_type ,zero 
+0x5982 015027 setarg attop_read_blob_request 
+0x5983 015028 isub temp ,null 
+0x5984 015029 branch le_parse_att_error_res_read_blob ,zero 
+0x5985 015030 setarg attop_read_multiple_request 
+0x5986 015031 isub temp ,null 
+0x5987 015032 branch le_parse_att_error_res_read_multiple ,zero 
+0x5988 015033 rtn 
+:      015035 le_parse_att_error_res_find_by_type_value:
+0x5989 015036 rtn 
+:      015038 le_parse_att_error_res_find_info:
+0x598a 015039 rtn 
+:      015041 le_parse_att_error_res_read_by_type:
+0x598b 015042 rtn 
+:      015044 le_parse_att_error_res_read_blob:
+0x598c 015045 rtn 
+:      015047 le_parse_att_error_res_read_multiple:
+0x598d 015048 rtn 
+:      015051 le_parse_att_exchange_mtu_request:
+0x598e 015052 jam attop_exchange_mtu_response ,mem_fifo_temp 
+0x598f 015053 branch le_xtype_fifo_in 
+:      015055 le_parse_att_exchange_mtu_response:
+0x5990 015056 rtn 
+:      015058 le_parse_att_find_information_request:
+0x5991 015059 rshift8 pdata ,pdata 
+0x5992 015060 store 2 ,mem_le_search_handle_start 
+0x5993 015061 ifetch 2 ,contr 
+0x5994 015062 store 2 ,mem_le_search_handle_end 
+0x5995 015063 jam attop_find_information_response ,mem_fifo_temp 
+0x5996 015064 branch le_xtype_fifo_in 
+:      015066 le_parse_att_find_information_response:
+0x5997 015067 rtn 
+:      015069 le_parse_att_find_info_res_multi:
+0x5998 015070 rtn 
+:      015072 le_parse_att_find_info_res_error:
+0x5999 015073 rtn 
+:      015075 le_parse_att_find_by_type_value_request:
+0x599a 015076 rshift8 pdata ,pdata 
+0x599b 015077 store 2 ,mem_le_search_handle_start 
+0x599c 015078 ifetch 2 ,contr 
+0x599d 015079 store 2 ,mem_le_search_handle_end 
+0x599e 015080 ifetch 2 ,contr 
+0x599f 015081 store 2 ,mem_le_uuid 
+0x59a0 015082 ifetch 2 ,contr 
+0x59a1 015083 store 2 ,mem_le_search_att_type 
+0x59a2 015084 jam attop_find_by_type_value_response ,mem_fifo_temp 
+0x59a3 015085 branch le_xtype_fifo_in 
+:      015088 le_parse_att_find_by_type_value_response:
+0x59a4 015089 rtn 
+:      015091 le_parse_att_read_by_type_request:
+0x59a5 015092 rshift8 pdata ,pdata 
+0x59a6 015093 store 2 ,mem_le_search_handle_start 
+0x59a7 015094 ifetch 2 ,contr 
+0x59a8 015095 store 2 ,mem_le_search_handle_end 
+0x59a9 015096 ifetch 2 ,contr 
+0x59aa 015097 store 2 ,mem_le_search_att_type 
+0x59ab 015098 jam attop_read_by_type_response ,mem_fifo_temp 
+0x59ac 015099 branch le_xtype_fifo_in 
+:      015101 le_parse_att_read_by_type_response:
+0x59ad 015102 rtn 
+:      015104 le_parse_att_read_request:
+0x59ae 015105 fetch 2 ,mem_le_rxbuf + 7 
+0x59af 015106 store 2 ,mem_le_att_handle 
+0x59b0 015107 jam attop_read_response ,mem_fifo_temp 
+0x59b1 015108 branch le_xtype_fifo_in 
+:      015110 le_parse_att_read_response:
+0x59b2 015111 rtn 
+:      015113 le_send_att_read_res_end:
+0x59b3 015114 rtn 
+:      015116 le_prepare_descriptor:
+0x59b4 015117 rtn 
+:      015120 le_parse_att_read_blob_request:
+0x59b5 015121 ifetch 2 ,contr 
+0x59b6 015122 store 2 ,mem_le_att_offset 
+0x59b7 015123 jam attop_read_blob_response ,mem_fifo_temp 
+0x59b8 015124 branch le_xtype_fifo_in 
+:      015126 le_parse_att_read_blob_response:
+0x59b9 015127 rtn 
+:      015129 le_parse_att_read_multiple_request:
+0x59ba 015130 fetch 1 ,mem_le_rxbuf + 1 
+0x59bb 015131 increase -5 ,pdata 
+0x59bc 015132 rshift pdata ,pdata 
+0x59bd 015133 store 1 ,mem_le_temp 
+0x59be 015134 jam attop_read_multiple_response ,mem_fifo_temp 
+0x59bf 015135 branch le_xtype_fifo_in 
+:      015137 le_parse_att_read_multiple_response:
+0x59c0 015138 rtn 
+:      015140 le_parse_att_read_by_group_type_request:
+0x59c1 015141 rshift8 pdata ,pdata 
+0x59c2 015142 store 2 ,mem_le_search_handle_start 
+0x59c3 015143 ifetch 2 ,contr 
+0x59c4 015144 store 2 ,mem_le_search_handle_end 
+0x59c5 015145 ifetch 2 ,contr 
+0x59c6 015146 store 2 ,mem_le_search_att_type 
+0x59c7 015147 jam attop_read_by_group_type_response ,mem_fifo_temp 
+0x59c8 015148 branch le_xtype_fifo_in 
+:      015150 le_parse_att_read_by_group_type_response:
+0x59c9 015151 rtn 
+:      015153 le_parse_att_write_request:
+0x59ca 015154 fetch 1 ,mem_le_rxbuf + 1 
+0x59cb 015155 increase -7 ,pdata 
+0x59cc 015156 icopy loopcnt 
+0x59cd 015157 fetcht 2 ,mem_le_att_handle 
+0x59ce 015158 call le_att_get_handle_ptr 
+0x59cf 015159 branch le_parse_att_write_request_fail ,blank 
+0x59d0 015160 ifetch 1 ,contr 
+0x59d1 015161 isub loopcnt ,null 
+0x59d2 015162 nbranch le_parse_att_write_request_fail ,positive 
+0x59d3 015163 copy contr ,contw 
+0x59d4 015165 arg mem_le_rxbuf + 9 ,contr 
+0x59d5 015166 call memcpy 
+0x59d6 015167 jam bt_evt_le_write_request ,mem_fifo_temp 
+0x59d7 015168 call ui_ipc_send_event 
+:      015169 le_parse_att_write_request_fail:
+0x59d8 015170 jam attop_write_response ,mem_fifo_temp 
+0x59d9 015171 branch le_xtype_fifo_in 
+:      015173 le_parse_att_write_response:
+0x59da 015174 fetch 1 ,mem_le_conn_sm 
+0x59db 015175 rtn 
+:      015177 le_parse_att_prepare_write_request:
+0x59dc 015178 rtn 
+:      015180 le_parse_att_prepare_write_response:
+0x59dd 015181 rtn 
+:      015183 le_parse_att_execute_write_request:
+0x59de 015184 rtn 
+:      015186 le_parse_att_execute_write_response:
+0x59df 015187 rtn 
+:      015189 le_parse_att_handle_value_notification:
+0x59e0 015196 ifetch 5 ,contr 
+0x59e1 015197 store 5 ,mem_mouse_data 
+0x59e2 015198 jam send_mouse_data_cmd ,mem_mcmd 
+0x59e3 015200 call usb_isr 
+0x59e4 015201 rtn 
+:      015202 le_kb_handle_value_notification:
+0x59e5 015203 copy rega ,contr 
+0x59e6 015204 ifetch 8 ,contr 
+0x59e7 015205 store 8 ,mem_mouse_data 
+0x59e8 015206 jam send_kb_data_cmd ,mem_mcmd 
+0x59e9 015207 call usb_isr 
+0x59ea 015208 rtn 
+:      015210 le_parse_att_handle_value_indication:
+0x59eb 015211 rtn 
+:      015213 le_parse_att_handle_value_confirmation:
+0x59ec 015214 rtn 
+:      015216 le_parse_att_write_command:
+0x59ed 015217 fetch 1 ,mem_le_rxbuf + 1 
+0x59ee 015218 increase -7 ,pdata 
+0x59ef 015219 icopy loopcnt 
+0x59f0 015220 fetcht 2 ,mem_le_att_handle 
+0x59f1 015221 call le_att_get_handle_ptr 
+0x59f2 015222 branch le_parse_att_write_command_fail ,blank 
+0x59f3 015223 ifetch 1 ,contr 
+0x59f4 015224 isub loopcnt ,null 
+0x59f5 015225 nbranch le_parse_att_write_command_fail ,positive 
+0x59f6 015226 copy contr ,contw 
+0x59f7 015227 copy contr ,rega 
+0x59f8 015228 copy loopcnt ,regb 
+0x59f9 015229 arg mem_le_rxbuf + 9 ,contr 
+0x59fa 015230 call memcpy 
+0x59fb 015231 jam prcp_le ,mem_prcp 
+0x59fc 015232 call le_writeatt_cb 
+:      015233 le_parse_att_write_command_fail:
+0x59fd 015234 rtn 
+:      015237 le_writeatt_cb:
+0x59fe 015238 fetch 2 ,mem_cb_att_write 
+0x59ff 015239 rtn blank 
+0x5a00 015240 iforce pc 
+:      015243 le_parse_att_signed_write_command:
+0x5a01 015244 rtn 
+:      015246 le_supervision_update:
+0x5a02 015247 fetcht 4 ,mem_le_supervision_timer 
+0x5a03 015248 call get_clkbt 
+0x5a04 015249 isub temp ,timeup 
+0x5a05 015250 deposit timeup 
+0x5a06 015251 fetcht 2 ,mem_le_superto 
+0x5a07 015252 lshift4 temp ,temp 
+0x5a08 015253 lshift temp ,temp 
+0x5a09 015254 isub temp ,pdata 
+0x5a0a 015255 rtn 
+:      015257 le_supervision_flush:
+0x5a0b 015258 call get_clkbt 
+0x5a0c 015259 store 4 ,mem_le_supervision_timer 
+0x5a0d 015260 rtn 
+:      015264 le_adv:
+0x5a0e 015265 set1 mark_ext_patch ,mark 
+0x5a0f 015266 bpatch patch2e_0 ,mem_patch2e 
+0x5a10 015267 fetch 1 ,mem_le_adv_enable 
+0x5a11 015268 rtn blank 
+0x5a12 015269 arg le_adv_interval_timer ,queue 
+0x5a13 015270 call timer_check 
+0x5a14 015271 nrtn blank 
+0x5a15 015272 disable master 
+0x5a16 015273 enable swfine 
+0x5a17 015274 call le_init_adv 
+0x5a18 015275 call le_next_adv_channel 
+0x5a19 015276 call le_send_adv_ind 
+0x5a1a 015277 nbranch le_adv_not_match ,match 
+0x5a1b 015278 set1 mark_ext_patch ,mark 
+0x5a1c 015279 bpatch patch2e_1 ,mem_patch2e 
+0x5a1d 015280 fetch 1 ,mem_le_req_rcv 
+0x5a1e 015281 increase 1 ,pdata 
+0x5a1f 015282 store 1 ,mem_le_req_rcv 
+0x5a20 015283 fetch 1 ,mem_le_rxbuf 
+0x5a21 015284 and pdata ,0x0f ,pdata 
+0x5a22 015285 beq scan_req ,le_send_scan_response 
+0x5a23 015286 beq connect_req ,parse_connect_req 
+:      015287 le_adv_not_match:
+0x5a24 015288 nop 10000 
+0x5a25 015289 fetch 1 ,mem_le_ch_mapped 
+0x5a26 015290 bne 39 ,le_adv 
+0x5a27 015291 call le_ledoff 
+0x5a28 015292 arg le_adv_interval_timer ,queue 
+0x5a29 015293 fetch 2 ,mem_le_adv_interval_max 
+0x5a2a 015294 branch timer_init 
+:      015297 le_receive_window_size:
+0x5a2b 015298 set1 mark_ext_patch ,mark 
+0x5a2c 015299 bpatch patch2e_2 ,mem_patch2e 
+0x5a2d 015300 fetch 1 ,mem_le_peer_sca 
+0x5a2e 015301 call le_sca_map 
+0x5a2f 015302 fetch 2 ,mem_le_tsniff 
+0x5a30 015303 imul32 temp ,pdata 
+0x5a31 015304 arg 375 ,temp 
+0x5a32 015305 imul32 temp ,pdata 
+0x5a33 015306 arg 100000 ,temp 
+0x5a34 015307 idiv temp 
+0x5a35 015308 fetch 1 ,mem_le_window_size 
+0x5a36 015309 arg 20000 ,temp 
+0x5a37 015310 imul32 temp ,pdata 
+0x5a38 015311 store 4 ,mem_le_transmit_window 
+0x5a39 015312 set1 mark_ext_patch ,mark 
+0x5a3a 015313 bpatch patch2e_3 ,mem_patch2e 
+0x5a3b 015314 fetch 2 ,mem_rx_window_sniff 
+0x5a3c 015315 call wait_div_end 
+0x5a3d 015316 quotient temp 
+0x5a3e 015317 iadd temp ,pdata 
+0x5a3f 015318 store 2 ,mem_le_receive_window 
+0x5a40 015319 rtn 
+:      015321 parse_connect_req:
+0x5a41 015322 set1 mark_ext_patch ,mark 
+0x5a42 015323 bpatch patch2e_4 ,mem_patch2e 
+0x5a43 015324 fetch 6 ,mem_le_rxbuf + 8 
+0x5a44 015325 fetcht 6 ,mem_le_lap 
+0x5a45 015326 isub temp ,null 
+0x5a46 015327 nrtn zero 
+0x5a47 015328 call le_scan_check_sender_addr_type 
+0x5a48 015329 copy rega ,pdata 
+0x5a49 015330 store 1 ,mem_le_conn_peer_addr_type 
+0x5a4a 015331 fetch 7 ,mem_le_rxbuf + 21 
+0x5a4b 015332 store 7 ,mem_tmp_buffer 
+0x5a4c 015333 ifetch 8 ,contr 
+0x5a4d 015334 istore 8 ,contw 
+0x5a4e 015335 fetch 6 ,mem_le_rxbuf + 2 
+0x5a4f 015336 store 6 ,mem_le_plap 
+0x5a50 015337 set1 mark_ext_patch ,mark 
+0x5a51 015338 bpatch patch2e_5 ,mem_patch2e 
+0x5a52 015339 increase 6 ,contr 
+0x5a53 015340 ifetch 8 ,contr 
+0x5a54 015341 store 8 ,mem_le_access 
+0x5a55 015342 ifetcht 2 ,contr 
+0x5a56 015343 lshift2 temp ,temp 
+0x5a57 015344 ifetch 2 ,contr 
+0x5a58 015345 lshift2 pdata ,pdata 
+0x5a59 015346 store 2 ,mem_le_tsniff 
+0x5a5a 015347 store 4 ,mem_le_anchor 
+0x5a5b 015348 isub temp ,pdata 
+0x5a5c 015349 add pdata ,-2 ,clke_bt 
+0x5a5d 015350 ifetch 9 ,contr 
+0x5a5e 015351 store 9 ,mem_le_slave_latency 
+0x5a5f 015352 set1 mark_ext_patch ,mark 
+0x5a60 015353 bpatch patch2e_6 ,mem_patch2e 
+0x5a61 015354 ifetch 1 ,contr 
+0x5a62 015355 rshift4 pdata ,temp 
+0x5a63 015356 rshift temp ,temp 
+0x5a64 015357 storet 1 ,mem_le_peer_sca 
+0x5a65 015358 and_into 0x1f ,pdata 
+0x5a66 015359 store 1 ,mem_le_hop 
+0x5a67 015360 call le_receive_window_size 
+0x5a68 015361 call le_calc_channel_map 
+0x5a69 015362 call le_init_slave 
+0x5a6a 015363 call context_new 
+0x5a6b 015364 nrtn zero 
+0x5a6c 015365 set1 mark_ext_patch ,mark 
+0x5a6d 015366 bpatch patch2e_7 ,mem_patch2e 
+0x5a6e 015367 arg 0 ,temp 
+0x5a6f 015368 call hci_send_le_conn_complete 
+0x5a70 015369 call calc_clke_offset 
+0x5a71 015370 jam bt_evt_le_connected ,mem_fifo_temp 
+0x5a72 015371 call ui_ipc_send_event 
+0x5a73 015373 branch context_save 
+:      015376 le_init_attlist_search:
+0x5a74 015377 set1 mark_ext_patch ,mark 
+0x5a75 015378 bpatch patch2f_0 ,mem_patch2f 
+0x5a76 015379 fetch 2 ,mem_le_search_handle_start 
+0x5a77 015380 iforce regb 
+0x5a78 015381 fetch 2 ,mem_le_search_handle_end 
+0x5a79 015382 iforce regc 
+0x5a7a 015383 arg mem_le_att_list ,contr 
+0x5a7b 015384 enable user 
+0x5a7c 015385 rtn 
+:      015388 le_att_handle_inrange:
+0x5a7d 015389 ifetch 2 ,contr 
+0x5a7e 015390 rtn blank 
+0x5a7f 015391 isub regb ,null 
+0x5a80 015392 nrtn positive 
+0x5a81 015393 isub regc ,null 
+0x5a82 015394 rtn zero 
+0x5a83 015395 branch le_att_handle_blank ,positive 
+0x5a84 015396 force 1 ,null 
+0x5a85 015397 rtn 
+:      015398 le_att_handle_blank:
+0x5a86 015399 force 0 ,pdata 
+0x5a87 015400 rtn 
+:      015403 le_att_get_handle_ptr:
+0x5a88 015404 arg mem_le_att_list ,contr 
+:      015405 le_att_get_handle_loop:
+0x5a89 015406 ifetch 2 ,contr 
+0x5a8a 015407 rtn blank 
+0x5a8b 015408 increase 2 ,contr 
+0x5a8c 015409 isub temp ,null 
+0x5a8d 015410 rtn zero 
+0x5a8e 015411 ifetch 1 ,contr 
+0x5a8f 015412 iadd contr ,contr 
+0x5a90 015413 branch le_att_get_handle_loop 
+:      015415 le_data_send_write_req:
+0x5a91 015416 jam 0x2 ,mem_le_handle_data_len 
+0x5a92 015417 setarg 0x0001 
+0x5a93 015418 store 2 ,mem_le_handle_data 
+0x5a94 015419 jam conn_sm_wait_write_res ,mem_le_conn_sm 
+0x5a95 015420 jam attop_write_request ,mem_fifo_temp 
+0x5a96 015421 branch le_xtype_fifo_in 
+:      015423 le_data_wait_write_res:
+0x5a97 015424 rtn 
+:      015425 le_data_wait_write_res1:
+0x5a98 015426 rtn 
+:      015427 le_conn_sm_master:
+0x5a99 015428 set1 mark_ext_patch ,mark 
+0x5a9a 015429 bpatch patch2f_1 ,mem_patch2f 
+0x5a9b 015430 fetch 1 ,mem_device_option 
+0x5a9c 015431 rtnne dvc_op_dongle 
+0x5a9d 015432 fetch 1 ,mem_le_conn_sm 
+0x5a9e 015433 beq conn_sm_send_write_req ,le_data_send_write_req 
+0x5a9f 015434 beq conn_sm_wait_write_res ,le_data_wait_write_res 
+0x5aa0 015435 beq conn_sm_wait_write_res1 ,le_data_wait_write_res1 
+0x5aa1 015436 rtn 
+:      015438 le_ukey_init:
+0x5aa2 015439 setarg le_ukey 
+0x5aa3 015440 store 2 ,mem_cb_le_process 
+0x5aa4 015441 hjam uart_ctrl_normal ,core_uart_ctrl 
+0x5aa5 015442 setarg uart_baud_115200 
+0x5aa6 015443 hstore uart_baud_len ,core_uart_baud 
+0x5aa7 015444 hjam uartclk_dpll ,core_uart_clksel 
+0x5aa8 015445 hjam 0x4 ,core_gpio_sel1 
+0x5aa9 015446 setarg le_ukey_wcb 
+0x5aaa 015447 store 2 ,mem_cb_att_write 
+0x5aab 015448 call le_init_att 
+0x5aac 015449 rtn wake 
+0x5aad 015450 branch eeprom_load_reconn_info 
+:      015453 le_ukey:
+0x5aae 015454 fetch 1 ,mem_le_mode 
+0x5aaf 015455 compare lemode_slave ,pdata ,0xff 
+0x5ab0 015456 setarg 5 
+0x5ab1 015457 call set_pwm_steadyon ,true 
+0x5ab2 015458 ncall set_pwm_blink ,true 
+0x5ab3 015459 call uartd_prepare_rx 
+0x5ab4 015460 branch le_ukey_senddata ,blank 
+0x5ab5 015461 fetch 2 ,mem_le_notify_attr_start 
+0x5ab6 015462 iforce contw 
+0x5ab7 015463 sub loopcnt ,20 ,null 
+0x5ab8 015464 branch le_ukey_loop ,positive 
+0x5ab9 015465 force 20 ,loopcnt 
+:      015466 le_ukey_loop:
+0x5aba 015467 ifetch 1 ,contru 
+0x5abb 015468 istore 1 ,contw 
+0x5abc 015469 loop le_ukey_loop 
+0x5abd 015470 call uartd_rxdone 
+:      015471 le_ukey_senddata:
+0x5abe 015472 jam notify_handle ,mem_le_notify_handle 
+0x5abf 015473 fetcht 2 ,mem_le_notify_attr_start 
+0x5ac0 015474 ifetch 1 ,temp 
+0x5ac1 015475 rtn blank 
+0x5ac2 015476 call le_xtype_fifo_is_full 
+0x5ac3 015477 nrtn blank 
+0x5ac4 015478 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5ac5 015479 branch le_xtype_fifo_in 
+:      015481 le_ukey_wcb:
+0x5ac6 015482 copy regb ,temp 
+0x5ac7 015483 call uartd_prepare_tx 
+0x5ac8 015484 copy rega ,contr 
+0x5ac9 015485 copy regb ,loopcnt 
+:      015486 le_writeatt_cb_loop:
+0x5aca 015487 ifetch 1 ,contr 
+0x5acb 015488 istore 1 ,contwu 
+0x5acc 015489 loop le_writeatt_cb_loop 
+0x5acd 015490 branch uartd_send 
+:      015492 le_clear_notify_att:
+0x5ace 015493 fetch 1 ,mem_device_option 
+0x5acf 015494 rtnne dvc_op_ukey 
+0x5ad0 015495 fetch 2 ,mem_le_notify_handle 
+0x5ad1 015496 rtnne notify_handle 
+0x5ad2 015497 fetcht 2 ,mem_le_notify_attr_start 
+0x5ad3 015498 setarg 0 
+0x5ad4 015499 istore 9 ,temp 
+0x5ad5 015500 istore 9 ,contw 
+0x5ad6 015501 istore 2 ,contw 
+0x5ad7 015502 rtn 
+:      015505 le_ledoff:
+0x5ad8 015506 fetcht 1 ,mem_le_adv_led 
+0x5ad9 015507 setflip gpio_active_bit ,temp 
+0x5ada 015508 branch gpio_out 
+:      015511 le_modified_name:
+0x5adb 015512 set1 mark_ext_patch ,mark 
+0x5adc 015513 bpatch patch2f_2 ,mem_patch2f 
+0x5add 015514 call le_modified_name_att_list 
+0x5ade 015515 branch le_modified_name_adv 
+:      015517 le_modified_name_att_list:
+0x5adf 015518 fetch 1 ,mem_le_name_len 
+0x5ae0 015519 copy pdata ,loopcnt 
+0x5ae1 015520 arg uuid_chrctr_device_name ,temp 
+0x5ae2 015521 call le_att_get_uuid_ptr 
+0x5ae3 015522 increase 1 ,contr 
+0x5ae4 015523 copy contr ,contw 
+0x5ae5 015524 arg mem_le_name ,contr 
+0x5ae6 015525 call memcpy 
+0x5ae7 015526 fetch 1 ,mem_le_name_len 
+0x5ae8 015527 sub pdata ,max_name_len ,loopcnt 
+0x5ae9 015528 copy loopcnt ,temp 
+0x5aea 015529 copy loopcnt ,pdata 
+0x5aeb 015530 ncall memcpy_empty ,blank 
+0x5aec 015531 rtn 
+:      015533 le_modified_name_adv:
+0x5aed 015534 fetch 1 ,mem_le_adv_data_len 
+0x5aee 015535 fetcht 1 ,mem_le_adv_data 
+0x5aef 015536 isub temp ,pdata 
+0x5af0 015537 copy pdata ,loopcnt 
+0x5af1 015538 copy pdata ,rega 
+0x5af2 015539 fetch 1 ,mem_le_adv_data 
+0x5af3 015540 increase 1 ,pdata 
+0x5af4 015541 arg mem_le_adv_data ,contr 
+0x5af5 015542 iadd contr ,contr 
+0x5af6 015543 arg mem_le_adv_temp ,contw 
+0x5af7 015544 call memcpy 
+0x5af8 015545 set1 mark_ext_patch ,mark 
+0x5af9 015546 bpatch patch2f_3 ,mem_patch2f 
+0x5afa 015547 fetch 1 ,mem_le_name_len 
+0x5afb 015548 copy pdata ,loopcnt 
+0x5afc 015549 increase 1 ,pdata 
+0x5afd 015550 store 1 ,mem_le_adv_data 
+0x5afe 015551 arg mem_le_adv_data + 2 ,contw 
+0x5aff 015552 arg mem_le_name ,contr 
+0x5b00 015553 call memcpy 
+0x5b01 015554 copy rega ,loopcnt 
+0x5b02 015555 arg mem_le_adv_temp ,contr 
+0x5b03 015556 call memcpy 
+0x5b04 015557 fetch 1 ,mem_le_adv_data 
+0x5b05 015558 iadd rega ,pdata 
+0x5b06 015559 store 1 ,mem_le_adv_data_len 
+0x5b07 015560 rtn 
+:      015563 le_get_device_name:
+0x5b08 015564 set1 mark_ext_patch ,mark 
+0x5b09 015565 bpatch patch2f_4 ,mem_patch2f 
+0x5b0a 015566 arg uuid_chrctr_device_name ,temp 
+0x5b0b 015567 branch le_att_get_uuid_ptr 
+:      015570 le_att_get_uuid_ptr:
+0x5b0c 015571 arg mem_le_att_list ,contr 
+:      015572 le_att_get_uuid_loop:
+0x5b0d 015573 ifetch 2 ,contr 
+0x5b0e 015574 branch assert ,blank 
+0x5b0f 015575 ifetch 2 ,contr 
+0x5b10 015576 isub temp ,null 
+0x5b11 015577 rtn zero 
+0x5b12 015578 ifetch 1 ,contr 
+0x5b13 015579 iadd contr ,contr 
+0x5b14 015580 branch le_att_get_uuid_loop 
+:      015583 memcpy_empty:
+0x5b15 015584 setarg space 
+0x5b16 015585 istore 1 ,contw 
+0x5b17 015586 loop memcpy_empty 
+0x5b18 015587 rtn 
+:      015590 le_lpm_set_mult:
+0x5b19 015591 set1 mark_ext_patch ,mark 
+0x5b1a 015592 bpatch patch2f_5 ,mem_patch2f 
+0x5b1b 015593 disable wake 
+0x5b1c 015594 branch le_lpm_set_mult_attempt ,attempt 
+0x5b1d 015595 nbranch le_lpm_lost ,match 
+:      015596 le_lpm_set_mult_attempt:
+0x5b1e 015597 call lpm_match 
+0x5b1f 015598 fetch 2 ,mem_rx_window_sniff 
+0x5b20 015599 store 2 ,mem_le_receive_window 
+0x5b21 015600 fetch 1 ,mem_le_rxbuf 
+0x5b22 015601 compare 1 ,pdata ,3 
+0x5b23 015602 nbranch lpm_mult_short ,true 
+0x5b24 015603 fetch 1 ,mem_le_txheader 
+0x5b25 015604 compare 1 ,pdata ,3 
+0x5b26 015605 nbranch lpm_mult_short ,true 
+0x5b27 015606 fetch 1 ,mem_le_state 
+0x5b28 015607 bbit1 lestate_update_param ,lpm_mult_short 
+0x5b29 015608 branch lpm_mult_wait_timeout 
+:      015610 le_lpm_lost:
+0x5b2a 015611 fetcht 2 ,mem_rx_window_sniff 
+0x5b2b 015612 rshift temp ,temp 
+0x5b2c 015613 fetch 2 ,mem_le_receive_window 
+0x5b2d 015614 iadd temp ,pdata 
+0x5b2e 015615 store 2 ,mem_le_receive_window 
+0x5b2f 015616 branch lpm_lost 
+:      015618 le_clean_att_list_handle_enable:
+0x5b30 015619 set1 mark_ext_patch ,mark 
+0x5b31 015620 bpatch patch2f_6 ,mem_patch2f 
+0x5b32 015621 jam 0 ,mem_le_switch_send_data 
+0x5b33 015622 fetcht 2 ,mem_le_notify_handle 
+0x5b34 015623 call le_att_check_notification_enable 
+0x5b35 015624 copy rega ,contw 
+0x5b36 015625 setarg 0 
+0x5b37 015626 istore 1 ,contw 
+0x5b38 015627 rtn 
+:      015628 le_scan_addr_to_uart:
+0x5b39 015629 fetch 1 ,mem_device_option 
+0x5b3a 015630 rtnne dvc_op_module 
+0x5b3b 015631 call get_uart_twptr 
+0x5b3c 015632 arg mem_le_plap ,rega 
+0x5b3d 015633 call adss_hex2string_to_uart 
+0x5b3e 015634 setarg 0x2c 
+0x5b3f 015635 istore 1 ,contwu 
+0x5b40 015636 call at_rssi_result 
+0x5b41 015637 branch uartd_send 
+:      015640 prcp_le_tx:
+0x5b42 015641 arg prcp_tx_le ,temp 
+0x5b43 015642 call le_att_check_notification_enable 
+0x5b44 015643 rtnbit0 0 
+0x5b45 015644 call le_xtype_fifo_is_full 
+0x5b46 015645 nrtn blank 
+0x5b47 015646 arg prcp_tx_le ,temp 
+0x5b48 015647 storet 2 ,mem_le_notify_handle 
+0x5b49 015648 call le_att_get_handle_ptr 
+0x5b4a 015649 branch assert ,blank 
+0x5b4b 015650 add contr ,1 ,contw 
+0x5b4c 015651 arg prcp_tx_data_len ,loopcnt 
+0x5b4d 015652 arg mem_prcp_data ,contr 
+0x5b4e 015653 call memcpy 
+0x5b4f 015654 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5b50 015655 branch le_xtype_fifo_in 
+:      015656 prcp_tx:
+0x5b51 015657 rtn 
+:      015660 le_search_adtype:
+0x5b52 015661 set1 mark_ext_patch ,mark 
+0x5b53 015662 bpatch patch2f_7 ,mem_patch2f 
+0x5b54 015663 fetch 1 ,mem_le_rxbuf + 1 
+0x5b55 015664 arg mem_le_rxbuf + 8 ,contr 
+0x5b56 015665 iadd contr ,loopcnt 
+:      015666 le_search_adtype_loop:
+0x5b57 015667 ifetcht 1 ,contr 
+0x5b58 015668 ifetch 1 ,contr 
+0x5b59 015669 isub rega ,null 
+0x5b5a 015670 rtn zero 
+0x5b5b 015671 add temp ,-1 ,pdata 
+0x5b5c 015672 iadd contr ,contr 
+0x5b5d 015673 deposit loopcnt 
+0x5b5e 015674 isub contr ,null 
+0x5b5f 015675 branch le_search_adtype_loop ,positive 
+0x5b60 015676 force 1 ,null 
+0x5b61 015677 rtn 
+:      015684 init_lmp:
+0x5b62 015685 rtn wake 
+:      015686 init_lmp_work:
+0x5b63 015687 setarg 0 
+0x5b64 015688 store 1 ,mem_lmp_to_send 
+0x5b65 015689 store 1 ,mem_conn_sm 
+0x5b66 015690 store 1 ,mem_lmo_opcode1 
+0x5b67 015691 store 1 ,mem_lmo_opcode2 
+0x5b68 015692 store 1 ,mem_esco_addr 
+0x5b69 015693 store 1 ,mem_auth_enable 
+0x5b6a 015694 store 1 ,mem_connection_options 
+0x5b6b 015695 store 1 ,mem_pairing_auth 
+0x5b6c 015696 jam switch_flag_init ,mem_switch_flag 
+0x5b6d 015697 jam 0 ,mem_switch_fail_master_count 
+0x5b6e 015698 jam null_encryp ,mem_wait_encryption 
+:      015699 init_lmp_reinit:
+0x5b6f 015700 set1 mark_ext_patch ,mark 
+0x5b70 015701 bpatch patch3c_0 ,mem_patch3c 
+0x5b71 015702 jam 0 ,mem_pairing_auth 
+0x5b72 015703 jam 0 ,mem_sp_localsm 
+0x5b73 015704 jam 0 ,mem_lmp_conn_state 
+0x5b74 015705 fetch 1 ,mem_device_option 
+0x5b75 015706 rtnne dvc_op_hci ,pdata 
+0x5b76 015707 jam 0 ,mem_link_key_exists 
+:      015709 parse_rx_done:
+0x5b77 015710 rtn 
+:      015712 parse_lmp:
+0x5b78 015713 set1 mark_ext_patch ,mark 
+0x5b79 015714 bpatch patch3c_1 ,mem_patch3c 
+0x5b7a 015715 call setlocalsm_master ,master 
+0x5b7b 015716 ncall setlocalsm_slave ,master 
+0x5b7c 015717 fetch 1 ,mem_lmo_opcode2 
+0x5b7d 015718 ncall lmo_fifo_process ,blank 
+0x5b7e 015719 fetch 1 ,mem_lmo_opcode2 
+0x5b7f 015720 nrtn blank 
+0x5b80 015721 fetch 1 ,mem_state_map 
+0x5b81 015722 rtnbit0 smap_rxlmp 
+0x5b82 015723 set0 smap_rxlmp ,pdata 
+0x5b83 015724 set0 mark_rxbuf_inuse ,mark 
+0x5b84 015725 store 1 ,mem_state_map 
+0x5b85 015726 fetch 1 ,mem_rxbuf 
+0x5b86 015727 fetcht 1 ,mem_state_map 
+0x5b87 015728 isolate1 smap_lmptidinit ,pdata 
+0x5b88 015729 setflag true ,smap_lmptid ,temp 
+0x5b89 015730 storet 1 ,mem_state_map 
+0x5b8a 015731 and_into 0x2 ,temp 
+0x5b8b 015732 storet 1 ,mem_lmo_tid2 
+0x5b8c 015733 fetcht 1 ,mem_state_map 
+0x5b8d 015734 rshift pdata ,pdata 
+0x5b8e 015735 store 1 ,mem_lmi_opcode2 
+0x5b8f 015736 set1 mark_ext_patch ,mark 
+0x5b90 015737 bpatch patch3c_2 ,mem_patch3c 
+0x5b91 015738 fetch 1 ,mem_lmi_opcode2 
+0x5b92 015739 beq lmp_escape ,parse_lmp_escape 
+0x5b93 015740 beq lmp_accepted ,parse_lmp_accepted 
+0x5b94 015741 beq lmp_not_accepted ,parse_lmp_not_accepted 
+0x5b95 015742 beq lmp_set_afh ,parse_lmp_set_afh 
+0x5b96 015743 beq lmp_clkoffset_req ,parse_lmp_clkoffset_req 
+0x5b97 015744 beq lmp_encryption_mode_req ,parse_lmp_encryption_mode_req 
+0x5b98 015745 beq lmp_encryption_key_size_req ,parse_lmp_crypt_key 
+0x5b99 015746 beq lmp_auto_rate ,parse_lmp_auto_rate 
+0x5b9a 015747 beq lmp_test_control ,parse_lmp_test_control 
+0x5b9b 015748 beq lmp_test_activate ,parse_lmp_test_activate 
+0x5b9c 015749 beq lmp_setup_complete ,parse_lmp_setup_complete 
+0x5b9d 015750 beq lmp_supervision_timeout ,parse_lmp_supervision_timeout 
+0x5b9e 015751 beq lmp_features_req ,parse_lmp_features_req 
+0x5b9f 015752 beq lmp_host_connection_req ,parse_lmp_conn_req 
+0x5ba0 015753 beq lmp_version_req ,parse_lmp_version_req 
+0x5ba1 015754 beq lmp_version_res ,parse_lmp_version_res 
+0x5ba2 015755 beq lmp_detach ,parse_lmp_detach 
+0x5ba3 015756 beq lmp_max_slot ,parse_lmp_max_slot 
+0x5ba4 015757 beq lmp_max_slot_req ,parse_lmp_max_slot_req 
+0x5ba5 015758 beq lmp_name_req ,parse_lmp_name_req 
+0x5ba6 015759 beq lmp_name_res ,parse_lmp_name_res 
+0x5ba7 015760 beq lmp_features_res ,parse_lmp_features_res 
+0x5ba8 015761 beq lmp_comb_key ,parse_lmp_comb_key 
+0x5ba9 015762 beq lmp_au_rand ,parse_lmp_au_rand 
+0x5baa 015763 beq lmp_in_rand ,parse_lmp_in_rand 
+0x5bab 015764 beq lmp_sres ,parse_lmp_sres 
+0x5bac 015765 beq lmp_incr_power_req ,parse_lmp_incr_power 
+0x5bad 015766 beq lmp_decr_power_req ,parse_lmp_decr_power 
+0x5bae 015767 beq lmp_max_power ,parse_lmp_max_power 
+0x5baf 015768 beq lmp_min_power ,parse_lmp_min_power 
+0x5bb0 015769 beq lmp_page_mode_req ,parse_lmp_page_mode_req 
+0x5bb1 015770 beq lmp_page_scan_mode_req ,parse_lmp_page_scan_mode_req 
+0x5bb2 015771 beq lmp_preferred_rate ,parse_lmp_preferred_rate 
+0x5bb3 015772 beq lmp_remove_sco_link_req ,parse_lmp_remove_sco_link_req 
+0x5bb4 015773 beq lmp_sco_link_req ,parse_lmp_sco_link_req 
+0x5bb5 015774 beq lmp_slot_offset ,parse_lmp_slot_offset 
+0x5bb6 015775 beq lmp_sniff_req ,parse_lmp_sniff_req 
+0x5bb7 015776 beq lmp_start_encryption_req ,parse_lmp_start_encryption_req 
+0x5bb8 015777 beq lmp_stop_encryption_req ,parse_lmp_stop_encryption_req 
+0x5bb9 015778 beq lmp_switch_req ,parse_lmp_switch_req 
+0x5bba 015779 beq lmp_temp_rand ,parse_lmp_temp_rand 
+0x5bbb 015780 beq lmp_temp_key ,parse_lmp_temp_key 
+0x5bbc 015781 beq lmp_timing_accuracy_req ,parse_lmp_timing_accuracy_req 
+0x5bbd 015782 beq lmp_timing_accuracy_res ,parse_lmp_timing_accuracy_res 
+0x5bbe 015783 beq lmp_unit_key ,parse_lmp_unit_key 
+0x5bbf 015784 beq lmp_unsniff_req ,parse_lmp_unsniff_req 
+0x5bc0 015785 beq lmp_use_semi_permanent_key ,parse_lmp_use_semi_permanend_key 
+0x5bc1 015786 beq lmp_encapsulated_header ,parse_lmp_encapsulated_header 
+0x5bc2 015787 beq lmp_encapsulated_payload ,parse_lmp_encapsulated_payload 
+0x5bc3 015788 beq lmp_simple_pairing_confirm ,parse_simple_pairing_confirm 
+0x5bc4 015789 beq lmp_simple_pairing_number ,parse_lmp_simple_pairing_number 
+0x5bc5 015790 beq lmp_dhkey_check ,parse_dhkey_check 
+0x5bc6 015791 beq lmp_clkoffset_res ,parse_lmp_clkoffset_res 
+0x5bc7 015792 beq lmp_enc_key_size_mask_req ,parse_enc_key_size_mask_req 
+:      015795 reject_unknown_packet:
+0x5bc8 015796 jam unknown_lmp_pdu ,mem_lmo_reason2 
+:      015797 reject_lmp_packet:
+0x5bc9 015798 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5bca 015799 rtn 
+:      015801 parse_lmp_clkoffset_req:
+0x5bcb 015802 jam lmp_clkoffset_res ,mem_lmo_opcode2 
+0x5bcc 015803 rtn 
+:      015805 parse_enc_key_size_mask_req:
+0x5bcd 015806 jam lmp_enc_key_size_mask_res ,mem_lmo_opcode2 
+0x5bce 015807 rtn 
+:      015809 parse_lmp_set_afh:
+0x5bcf 015810 fetch 4 ,mem_rxbuf + 1 
+0x5bd0 015811 lshift pdata ,pdata 
+0x5bd1 015812 store 4 ,mem_afh_instant 
+0x5bd2 015813 fetch 1 ,mem_rxbuf + 5 
+0x5bd3 015814 store 1 ,mem_afh_new_mod 
+0x5bd4 015815 fetch 5 ,mem_rxbuf + 6 
+0x5bd5 015816 store 5 ,mem_afh_map_new 
+0x5bd6 015817 fetch 5 ,mem_rxbuf + 11 
+0x5bd7 015818 istore 5 ,contw 
+0x5bd8 015819 fetch 1 ,mem_mode 
+0x5bd9 015820 set1 afh_change ,pdata 
+0x5bda 015821 store 1 ,mem_mode 
+0x5bdb 015822 rtn 
+:      015823 parse_lmp_escape:
+0x5bdc 015824 fetch 1 ,mem_rxbuf + 1 
+0x5bdd 015825 set1 7 ,pdata 
+0x5bde 015826 store 1 ,mem_lmi_opcode2 
+0x5bdf 015827 beq lmp_ext_accepted ,parse_lmpext_accepted 
+0x5be0 015828 beq lmp_not_accepted_ext ,parse_lmpext_not_accepted 
+0x5be1 015829 beq lmp_sniff_subrating_req ,parse_lmp_sniff_subrating_req 
+0x5be2 015830 beq lmp_sniff_subrating_res ,parse_lmp_sniff_subrating_res 
+0x5be3 015831 beq lmp_packet_type_table_req ,parse_lmpext_packet_type_table_req 
+0x5be4 015832 beq lmp_ext_features_req ,parse_lmpext_features_req 
+0x5be5 015833 beq lmp_ext_features_res ,parse_lmpext_features_res 
+0x5be6 015834 beq lmp_ext_chn_classification_req ,parse_lmpext_chn_classification_req 
+0x5be7 015835 beq lmp_pause_encryption_req ,parse_lmpext_pause_encrypt 
+0x5be8 015836 beq lmp_resume_encryption_req ,parse_lmpext_resume_encrypt 
+0x5be9 015837 beq lmp_io_cap_req ,parse_lmpext_iocap_req 
+0x5bea 015838 beq lmp_io_cap_res ,parse_lmpext_iocap_res 
+0x5beb 015839 beq lmp_ext_remove_esco_req ,parse_lmpext_remove_esco_req 
+0x5bec 015840 beq lmp_ext_esco_link_req ,parse_lmpext_esco_link_req 
+0x5bed 015841 rtneq lmp_ext_features_res 
+:      015844 reject_unknown_ext_packet:
+0x5bee 015845 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5bef 015846 jam unknown_lmp_pdu ,mem_lmo_reason2 
+0x5bf0 015848 rtn 
+:      015849 parse_lmpext_chn_classification_req:
+0x5bf1 015850 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5bf2 015851 jam not_support_chn_classification ,mem_lmo_reason2 
+0x5bf3 015852 rtn 
+:      015854 parse_lmpext_esco_link_req:
+0x5bf4 015855 fetch 1 ,mem_rxbuf + 2 
+0x5bf5 015856 store 1 ,mem_sco_handle 
+0x5bf6 015857 fetch 1 ,mem_rxbuf + 3 
+0x5bf7 015858 store 1 ,mem_esco_addr 
+0x5bf8 015859 fetch 1 ,mem_rxbuf + 5 
+0x5bf9 015860 store 1 ,mem_esco_desco 
+0x5bfa 015861 fetch 1 ,mem_rxbuf + 9 
+0x5bfb 015862 store 1 ,mem_esco_type 
+0x5bfc 015863 fetch 1 ,mem_rxbuf + 14 
+0x5bfd 015864 store 1 ,mem_air_mode 
+0x5bfe 015865 bmark1 mark_esco ,check_esco_prarm 
+0x5bff 015866 set1 mark_esco ,mark 
+0x5c00 015867 call push_tid_follow 
+0x5c01 015868 store 1 ,mem_accptsco_tid 
+0x5c02 015869 force 0 ,temp 
+0x5c03 015870 branch hci_send_conn_req_event 
+:      015872 parse_lmpext_esco_link_req_change_param:
+0x5c04 015873 jam lmp_ext_esco_link_req ,mem_lmo_opcode2 
+0x5c05 015874 jam prarm_neogotiation ,mem_neogotiation_state 
+0x5c06 015875 branch cmd_exit 
+:      015877 check_esco_prarm:
+0x5c07 015878 fetch 1 ,mem_esco_type 
+0x5c08 015879 bne type_hv3 ,reject_esco_prarm 
+0x5c09 015880 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x5c0a 015881 branch esco_prarm_common 
+:      015882 reject_esco_prarm:
+0x5c0b 015883 set0 mark_esco ,mark 
+0x5c0c 015884 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5c0d 015885 force hci_error_unknown_hci_command ,temp 
+0x5c0e 015886 call hci_send_sco_complete 
+:      015887 esco_prarm_common:
+0x5c0f 015888 jam lmp_ext_esco_link_req ,mem_lmi_opcode2 
+0x5c10 015889 rtn 
+:      015892 parse_lmpext_remove_esco_req:
+0x5c11 015893 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x5c12 015894 jam lmp_ext_remove_esco_req ,mem_lmi_opcode2 
+0x5c13 015895 branch stop_esco 
+:      015897 parse_lmpext_iocap_req:
+0x5c14 015898 call iocap_lmpext_load 
+0x5c15 015899 fetch 1 ,mem_device_option 
+0x5c16 015900 beq dvc_op_hci ,iocap_lmpext_hci 
+0x5c17 015901 jam lmp_io_cap_res ,mem_lmo_opcode2 
+0x5c18 015902 rtn 
+:      015904 parse_lmpext_iocap_res:
+0x5c19 015905 call iocap_lmpext_load 
+0x5c1a 015906 fetch 1 ,mem_device_option 
+0x5c1b 015907 beq dvc_op_hci ,iocap_lmpext_hci 
+0x5c1c 015908 branch iocap_lmpext_common 
+:      015910 iocap_lmpext_load:
+0x5c1d 015911 arg mem_sp_iocap_remote ,contw 
+0x5c1e 015912 fetch 3 ,mem_rxbuf + 2 
+0x5c1f 015913 istore 3 ,contw 
+0x5c20 015914 rtn 
+:      015916 iocap_lmpext_hci:
+0x5c21 015917 call hci_send_io_cap_response_event 
+:      015918 iocap_lmpext_common:
+0x5c22 015919 call check_localsm 
+0x5c23 015920 ncall hci_send_io_cap_req_event ,true 
+0x5c24 015921 branch master_set_mem_master_sp_flag ,true 
+0x5c25 015922 rtn 
+:      015923 parse_lmpext_accepted:
+0x5c26 015924 fetch 1 ,mem_rxbuf + 3 
+0x5c27 015925 set1 7 ,pdata 
+0x5c28 015926 store 1 ,mem_lmi_accepted_opcode 
+0x5c29 015927 beq lmp_packet_type_table_req ,parse_lmpext_accepted_ptt 
+0x5c2a 015928 beq lmp_ext_esco_link_req ,play_sco 
+0x5c2b 015929 beq lmp_ext_remove_esco_req ,parse_lmpext_stop_esco 
+0x5c2c 015930 rtn 
+:      015932 parse_lmpext_stop_esco:
+0x5c2d 015933 branch stop_esco 
+:      015935 parse_lmpext_not_accepted:
+0x5c2e 015936 fetch 1 ,mem_rxbuf + 3 
+0x5c2f 015937 set1 7 ,pdata 
+0x5c30 015938 store 1 ,mem_lmi_accepted_opcode 
+0x5c31 015939 beq lmp_packet_type_table_req ,parse_lmpext_not_accepted_ptt 
+0x5c32 015940 beq lmp_ext_esco_link_req ,parse_lmpext_not_accepted_esco 
+0x5c33 015941 rtn 
+:      015943 parse_lmpext_not_accepted_esco:
+0x5c34 015944 set0 mark_esco ,mark 
+0x5c35 015945 rtn 
+:      015947 parse_lmpext_accepted_ptt:
+0x5c36 015948 fetch 1 ,mem_ptt 
+0x5c37 015949 fetcht 1 ,mem_state_map 
+0x5c38 015950 nsetflag blank ,smap_edr ,temp 
+0x5c39 015951 storet 1 ,mem_state_map 
+:      015952 parse_lmpext_not_accepted_ptt:
+0x5c3a 015953 fetch 1 ,mem_state 
+0x5c3b 015954 rtnbit0 state_init_seq 
+0x5c3c 015955 set0 state_init_seq ,pdata 
+0x5c3d 015956 store 1 ,mem_state 
+0x5c3e 015957 fetch 1 ,mem_auth_enable 
+0x5c3f 015958 nbranch hci_send_linkkey_req ,blank 
+0x5c40 015959 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5c41 015960 rtn 
+:      015962 parse_lmpext_pause_encrypt:
+0x5c42 015963 nbranch parse_lmpext_pause_encrypt_slave ,master 
+0x5c43 015964 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x5c44 015965 branch tid_reply 
+:      015967 parse_lmpext_pause_encrypt_slave:
+0x5c45 015968 jam lmp_pause_encryption_req ,mem_lmo_opcode2 
+0x5c46 015969 rtn 
+:      015971 parse_lmpext_resume_encrypt:
+0x5c47 015974 call tid_reply 
+0x5c48 015975 branch lmp_start_encryption 
+:      015977 parse_lmpext_features_req:
+0x5c49 015978 jam lmp_ext_features_res ,mem_lmo_opcode2 
+0x5c4a 015979 rtn 
+:      015981 parse_lmpext_features_res:
+0x5c4b 015982 fetcht 1 ,mem_rxbuf + 4 
+0x5c4c 015983 and temp ,0x1 ,temp 
+0x5c4d 015984 storet 1 ,mem_remote_sppcap 
+0x5c4e 015985 fetch 1 ,mem_hci_cmd 
+0x5c4f 015986 bne hci_cmd_wait_remote_ext_feature ,parse_lmpext_features_res_not_hci 
+0x5c50 015987 jam 0 ,mem_hci_cmd 
+0x5c51 015988 call hci_send_remote_ext_features_event 
+:      015989 parse_lmpext_features_res_not_hci:
+0x5c52 015990 fetch 1 ,mem_conn_sm 
+0x5c53 015991 rtnne conn_sm_wait_features_ext 
+0x5c54 015992 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x5c55 015993 branch process_conn_sm 
+:      015995 parse_lmp_accepted:
+0x5c56 015996 fetch 1 ,mem_rxbuf + 1 
+0x5c57 015997 store 1 ,mem_lmi_accepted_opcode 
+0x5c58 015998 beq lmp_host_connection_req ,parse_lmp_accepted_hostconn 
+0x5c59 015999 beq lmp_in_rand ,parse_lmp_accepted_inrand 
+0x5c5a 016000 beq lmp_encryption_mode_req ,parse_lmp_accepted_enc_mode 
+0x5c5b 016001 beq lmp_encryption_key_size_req ,parse_lmp_accepted_enc_keysize 
+0x5c5c 016002 beq lmp_start_encryption_req ,parse_lmp_accepted_start_enc 
+0x5c5d 016003 beq lmp_stop_encryption_req ,parse_lmp_accepted_stop_enc 
+0x5c5e 016004 beq lmp_unsniff_req ,parse_lmp_accepted_unsniff_req 
+0x5c5f 016005 beq lmp_sniff_req ,parse_lmp_accepted_sniff_req 
+0x5c60 016006 beq lmp_sco_link_req ,play_sco 
+0x5c61 016008 beq lmp_switch_req ,parse_lmp_accepted_switch 
+0x5c62 016010 beq lmp_encapsulated_header ,parse_lmp_accepted_encapsulated_header 
+0x5c63 016011 beq lmp_encapsulated_payload ,parse_lmp_accepted_encapsulated_payload 
+0x5c64 016012 beq lmp_simple_pairing_number ,parse_lmp_accepted_simple_pairing_number 
+0x5c65 016013 beq lmp_dhkey_check ,parse_lmp_accepted_dhkey_check 
+0x5c66 016014 rtn 
+:      016016 parse_lmp_not_accepted:
+0x5c67 016017 fetch 1 ,mem_rxbuf + 1 
+0x5c68 016018 store 1 ,mem_lmi_accepted_opcode 
+0x5c69 016019 beq lmp_name_req ,parse_lmp_not_accepted_name_req 
+0x5c6a 016020 beq lmp_host_connection_req ,parse_lmp_not_accepted_hostconn 
+0x5c6b 016021 beq lmp_au_rand ,parse_lmp_not_accepted_aurand 
+0x5c6c 016022 beq lmp_sco_link_req ,parse_lmp_not_accepted_sco_link_req 
+0x5c6d 016023 beq lmp_in_rand ,parse_lmp_not_accepted_inrand 
+0x5c6e 016024 beq lmp_switch_req ,parse_lmp_not_accepted_switch 
+0x5c6f 016026 beq lmp_simple_pairing_number ,parse_lmp_not_accepted_simple_pairing_number 
+0x5c70 016027 beq lmp_dhkey_check ,parse_lmp_not_accepted_dhkey_check 
+0x5c71 016028 beq lmp_unsniff_req ,parse_lmp_not_accepted_unsniff_req 
+0x5c72 016029 beq lmp_sniff_req ,parse_lmp_not_acdcept_sniff_req 
+0x5c73 016030 rtn 
+:      016032 parse_lmp_accepted_switch:
+0x5c74 016033 jam bt_evt_switch_accept ,mem_fifo_temp 
+0x5c75 016034 call ui_ipc_send_event 
+0x5c76 016035 branch role_switch_prepare0 
+:      016036 parse_lmp_not_accepted_switch:
+0x5c77 016037 jam bt_evt_switch_not_accept ,mem_fifo_temp 
+0x5c78 016038 call ui_ipc_send_event 
+0x5c79 016039 jam switch_flag_not_accept ,mem_switch_flag 
+0x5c7a 016040 setarg timer_switch_waite 
+0x5c7b 016041 arg switch_wait_timer ,queue 
+0x5c7c 016042 branch timer_init 
+:      016045 parse_lmp_accepted_hostconn:
+0x5c7d 016048 fetch 1 ,mem_lmp_conn_state 
+0x5c7e 016049 set1 received_conn_req ,pdata 
+0x5c7f 016050 store 1 ,mem_lmp_conn_state 
+0x5c80 016051 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x5c81 016052 call ui_ipc_send_event 
+0x5c82 016053 jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+:      016055 parse_lmp_accepted_hostconn_ctn:
+0x5c83 016057 fetch 1 ,mem_conn_sm 
+0x5c84 016058 bne conn_sm_wait_conn_accept ,parse_rx_done 
+0x5c85 016061 jam conn_sm_auth_pair ,mem_conn_sm 
+0x5c86 016062 rtn 
+:      016070 parse_lmp_not_accepted_hostconn:
+0x5c87 016071 jam acl_connection_already_exists ,mem_disconn_reason_send 
+0x5c88 016072 jam lmp_detach ,mem_lmo_opcode2 
+0x5c89 016073 force hci_error_host_timeout ,temp 
+0x5c8a 016074 call hci_send_connection_error 
+0x5c8b 016076 jam conn_sm_standby ,mem_conn_sm 
+0x5c8c 016078 branch parse_rx_done ,true 
+0x5c8d 016079 rtn 
+:      016081 parse_lmp_not_accepted_sco_link_req:
+0x5c8e 016082 jam lmp_sco_link_req ,mem_lmo_opcode2 
+0x5c8f 016083 rtn 
+:      016086 parse_lmp_accepted_inrand:
+0x5c90 016087 fetch 1 ,mem_link_key_exists 
+0x5c91 016088 nrtn blank 
+0x5c92 016089 call clear_linkkey 
+0x5c93 016090 call lmp_generate_key 
+0x5c94 016091 rtn master 
+0x5c95 016092 set1 mark_slave_in_rand_accepted ,mark 
+0x5c96 016093 rtn 
+:      016095 parse_lmp_accepted_enc_mode:
+0x5c97 016096 nrtn master 
+0x5c98 016097 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x5c99 016098 fetch 1 ,mem_state_map 
+0x5c9a 016099 rtnbit0 smap_encryption 
+0x5c9b 016100 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x5c9c 016101 rtn 
+:      016103 parse_lmp_accepted_enc_keysize:
+0x5c9d 016104 branch lmp_start_encryption 
+:      016106 parse_lmp_accepted_start_enc:
+0x5c9e 016107 call send_create_conn_start_l2cap_timer_sm 
+0x5c9f 016108 fetch 1 ,mem_state 
+0x5ca0 016109 rtnbit1 state_conn_comp 
+0x5ca1 016110 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5ca2 016111 fetch 1 ,mem_conn_sm 
+0x5ca3 016112 rtnne conn_sm_encrypt_wait 
+0x5ca4 016113 jam conn_sm_encrypt_wait_clear ,mem_conn_sm 
+0x5ca5 016114 rtn 
+:      016116 parse_lmp_accepted_stop_enc:
+0x5ca6 016124 rtn 
+:      016126 parse_lmp_not_accepted_aurand:
+0x5ca7 016127 fetch 1 ,mem_device_option 
+0x5ca8 016128 bne dvc_op_hci ,parse_lmp_not_accepted_aurand_send_detach 
+0x5ca9 016129 fetch 1 ,mem_link_key_exists 
+0x5caa 016130 rtn blank 
+0x5cab 016131 fetcht 1 ,mem_conn_sm 
+0x5cac 016132 jam 0 ,mem_conn_sm 
+0x5cad 016133 jam 0 ,mem_link_key_exists 
+0x5cae 016134 fetch 1 ,mem_rxbuf + 2 
+0x5caf 016135 rtnne key_missing 
+0x5cb0 016136 storet 1 ,mem_conn_sm 
+0x5cb1 016137 jam local_statemachine ,mem_sp_localsm 
+0x5cb2 016138 fetch 2 ,mem_lmpext_ssp_enable 
+0x5cb3 016139 fetcht 1 ,mem_remote_sppcap 
+0x5cb4 016140 iand temp ,pdata 
+0x5cb5 016141 branch cmd_pair ,blank 
+0x5cb6 016142 branch cmd_ssp 
+:      016144 parse_lmp_not_accepted_aurand_send_detach:
+0x5cb7 016145 jam lmp_detach ,mem_lmo_opcode2 
+0x5cb8 016146 jam other_end_terminated ,mem_disconn_reason_send 
+0x5cb9 016147 rtn 
+:      016149 parse_lmp_not_accepted_inrand:
+0x5cba 016150 fetch 1 ,mem_rxbuf + 2 
+0x5cbb 016151 beq key_missing ,parse_lmp_inrand_key_missing 
+0x5cbc 016152 rtnne pairing_not_allowed 
+0x5cbd 016153 jam pairing_not_allowed ,mem_disconn_reason_send 
+0x5cbe 016154 jam lmp_detach ,mem_lmo_opcode2 
+0x5cbf 016155 rtn 
+:      016156 parse_lmp_inrand_key_missing:
+0x5cc0 016157 jam key_missing ,mem_disconn_reason_send 
+0x5cc1 016158 jam lmp_detach ,mem_lmo_opcode2 
+0x5cc2 016159 rtn 
+:      016161 parse_lmp_not_accepted_name_req:
+0x5cc3 016162 rtn 
+:      016164 parse_lmp_not_accepted_simple_pairing_number:
+0x5cc4 016165 jam sp_stat_null ,mem_sp_state 
+0x5cc5 016166 jam lmp_detach ,mem_lmo_opcode2 
+0x5cc6 016167 branch parse_rx_done 
+:      016169 parse_lmp_not_accepted_dhkey_check:
+0x5cc7 016170 jam sp_stat_null ,mem_sp_state 
+0x5cc8 016171 jam lmp_detach ,mem_lmo_opcode2 
+0x5cc9 016172 branch parse_rx_done 
+:      016173 parse_lmp_not_accepted_unsniff_req:
+0x5cca 016174 jam bt_evt_unsniff_not_accept ,mem_fifo_temp 
+0x5ccb 016175 branch ui_ipc_send_event 
+:      016177 parse_lmp_accepted_unsniff_req:
+0x5ccc 016178 jam bt_evt_unsniff_accept ,mem_fifo_temp 
+0x5ccd 016179 call ui_ipc_send_event 
+0x5cce 016180 call sniff_exit 
+0x5ccf 016181 force 0 ,temp 
+0x5cd0 016182 branch hci_send_mode_change 
+:      016184 parse_lmp_accepted_sniff_req:
+0x5cd1 016185 jam bt_evt_sniff_accept ,mem_fifo_temp 
+0x5cd2 016186 call ui_ipc_send_event 
+0x5cd3 016187 force 0x02 ,temp 
+0x5cd4 016188 call hci_send_mode_change 
+0x5cd5 016189 setarg 0 
+0x5cd6 016190 store 2 ,mem_dsniff 
+0x5cd7 016191 fetch 2 ,mem_sniff_param_interval 
+0x5cd8 016192 lshift pdata ,pdata 
+0x5cd9 016193 store 2 ,mem_tsniff 
+0x5cda 016194 fetch 1 ,mem_sniff_param_attempt 
+0x5cdb 016195 store 1 ,mem_sniff_attempt 
+0x5cdc 016196 fetch 1 ,mem_sniff_param_timeout 
+0x5cdd 016197 store 1 ,mem_sniff_timeout 
+0x5cde 016198 branch sniff_init 
+:      016200 parse_lmp_not_acdcept_sniff_req:
+0x5cdf 016201 jam bt_evt_sniff_not_accept ,mem_fifo_temp 
+0x5ce0 016202 branch ui_ipc_send_event 
+:      016204 parse_lmp_crypt_key:
+0x5ce1 016205 fetcht 1 ,mem_rxbuf + 1 
+0x5ce2 016206 storet 1 ,mem_key_size 
+0x5ce3 016207 branch accept_lmp_msg 
+:      016209 parse_lmp_setup_complete:
+0x5ce4 016210 fetch 1 ,mem_lmp_conn_state 
+0x5ce5 016211 set1 received_setup_complete ,pdata 
+0x5ce6 016212 store 1 ,mem_lmp_conn_state 
+0x5ce7 016213 rtnbit1 sent_setup_complete 
+0x5ce8 016214 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5ce9 016215 branch parse_rx_done 
+:      016217 parse_lmp_max_slot:
+0x5cea 016220 rtn 
+:      016222 parse_lmp_max_slot_req:
+0x5ceb 016223 fetch 1 ,mem_max_slot 
+0x5cec 016224 fetcht 1 ,mem_rxbuf + 1 
+0x5ced 016225 isub temp ,null 
+0x5cee 016227 branch accept_lmp_msg ,positive 
+0x5cef 016228 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5cf0 016229 jam unspecified_error ,mem_lmo_reason2 
+0x5cf1 016230 jam lmp_max_slot_req ,mem_lmi_opcode2 
+0x5cf2 016231 rtn 
+:      016233 parse_lmp_detach:
+0x5cf3 016234 call prepare_disconnect 
+0x5cf4 016235 branch accept_lmp_msg 
+:      016237 accept_lmp_msg:
+0x5cf5 016238 jam lmp_accepted ,mem_lmo_opcode2 
+0x5cf6 016239 rtn 
+:      016241 parse_lmp_incr_power:
+0x5cf7 016242 jam lmp_max_power ,mem_lmo_opcode2 
+0x5cf8 016243 rtn 
+:      016245 parse_lmp_decr_power:
+0x5cf9 016246 jam lmp_min_power ,mem_lmo_opcode2 
+0x5cfa 016247 rtn 
+:      016249 parse_lmp_version_res:
+0x5cfb 016250 fetch 1 ,mem_conn_sm 
+0x5cfc 016251 rtneq conn_sm_wait_version 
+0x5cfd 016253 jam conn_sm_send_features ,mem_conn_sm 
+0x5cfe 016255 rtn 
+:      016258 parse_lmp_auto_rate:
+0x5cff 016259 rtn 
+:      016261 parse_lmp_in_rand:
+0x5d00 016262 call lmp_copy_rand 
+0x5d01 016263 jam pincode_state_wait_pincode ,mem_pincode_state 
+0x5d02 016264 fetch 1 ,mem_device_option 
+0x5d03 016265 beq dvc_op_hci ,parse_lmp_in_rand_hci 
+0x5d04 016266 jam bt_evt_pincode_req ,mem_fifo_temp 
+0x5d05 016267 call ui_ipc_send_event 
+:      016268 parse_lmp_in_rand_hci:
+0x5d06 016269 call hci_send_pincode_req 
+0x5d07 016270 call tid_check 
+0x5d08 016271 nbranch lmp_accept_inrand ,true 
+0x5d09 016272 nbranch parse_lmp_inrand_res ,master 
+0x5d0a 016273 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5d0b 016274 jam lmp_in_rand ,mem_lmi_opcode2 
+0x5d0c 016275 jam transaction_collision ,mem_lmo_reason2 
+0x5d0d 016276 rtn 
+:      016277 parse_lmp_inrand_res:
+0x5d0e 016278 fetch 1 ,mem_op 
+0x5d0f 016279 set1 op_inrand_req ,pdata 
+0x5d10 016280 store 1 ,mem_op 
+0x5d11 016281 rtn 
+:      016284 pop_tid_follow:
+0x5d12 016285 fetcht 1 ,mem_state_map 
+0x5d13 016286 nsetflag blank ,smap_lmptid ,temp 
+0x5d14 016287 storet 1 ,mem_state_map 
+0x5d15 016288 rtn 
+:      016291 push_tid_follow:
+0x5d16 016292 fetch 1 ,mem_lmo_tid2 
+0x5d17 016293 rshift pdata ,pdata 
+0x5d18 016294 and_into 1 ,pdata 
+0x5d19 016295 rtn 
+:      016297 parse_lmp_au_rand:
+0x5d1a 016298 call push_tid_follow 
+0x5d1b 016299 store 1 ,mem_sres_tid 
+0x5d1c 016300 call lmp_copy_rand 
+0x5d1d 016301 jam lmp_sres ,mem_lmo_opcode2 
+0x5d1e 016302 fetch 1 ,mem_link_key_exists 
+0x5d1f 016303 nrtn blank 
+0x5d20 016304 fetch 1 ,mem_state 
+0x5d21 016305 rtnbit1 state_combkey 
+0x5d22 016306 jam key_missing ,mem_lmo_reason2 
+0x5d23 016307 fetch 1 ,mem_device_option 
+0x5d24 016308 bne dvc_op_hci ,reject_lmp_packet 
+0x5d25 016309 fetch 1 ,mem_auth_enable 
+0x5d26 016310 nbranch reject_lmp_packet ,blank 
+0x5d27 016311 jam 0 ,mem_lmo_opcode2 
+:      016312 parse_lmp_inrand_sres:
+0x5d28 016313 fetch 1 ,mem_op 
+0x5d29 016314 set1 op_send_sres ,pdata 
+0x5d2a 016315 store 1 ,mem_op 
+0x5d2b 016316 branch hci_send_linkkey_req 
+:      016318 parse_lmp_sres:
+0x5d2c 016319 arg mem_plap ,rega 
+0x5d2d 016320 call function_e1 
+0x5d2e 016321 fetch 4 ,mem_rxbuf + 1 
+0x5d2f 016322 fetcht 4 ,mem_input_store 
+0x5d30 016323 isub temp ,null 
+0x5d31 016324 branch authentication_ok ,zero 
+0x5d32 016325 jam lmp_detach ,mem_lmo_opcode2 
+0x5d33 016326 jam authentication_failure_error ,mem_disconn_reason_send 
+0x5d34 016327 rtn 
+:      016328 authentication_ok:
+0x5d35 016329 call copy_aco 
+0x5d36 016330 call linkkey_ready 
+0x5d37 016331 fetch 1 ,mem_op 
+0x5d38 016332 isolate1 op_auth_req ,pdata 
+0x5d39 016333 set0 op_auth_req ,pdata 
+0x5d3a 016334 store 1 ,mem_op 
+0x5d3b 016335 call hci_send_auth_complete ,true 
+0x5d3c 016336 fetch 1 ,mem_conn_sm 
+0x5d3d 016337 beq conn_sm_auth_wait ,authentication_ok_conn_sm 
+0x5d3e 016338 beq conn_sm_pairing_wait ,authentication_ok_conn_sm 
+0x5d3f 016339 rtn 
+:      016340 authentication_ok_conn_sm:
+0x5d40 016341 fetch 1 ,mem_pairing_auth 
+0x5d41 016342 rtnne defalt_pairing_auth 
+0x5d42 016343 fetch 1 ,mem_state_map 
+0x5d43 016344 rtnbit1 smap_encryption 
+0x5d44 016345 branch host_create_conn_encrypt 
+:      016347 parse_lmp_comb_key:
+0x5d45 016348 arg mem_rxbuf + 1 ,rega 
+0x5d46 016349 arg mem_kinit ,regb 
+0x5d47 016350 arg mem_random_number ,contw 
+0x5d48 016351 call xor16 
+0x5d49 016352 arg mem_plap ,rega 
+0x5d4a 016353 call generate_linkkey 
+0x5d4b 016354 jam lmp_au_rand ,mem_lmo_opcode2 
+0x5d4c 016355 fetch 1 ,mem_state 
+0x5d4d 016356 bbit0 state_combkey ,lmp_generate_key 
+0x5d4e 016357 rtn 
+:      016359 parse_lmp_name_res:
+0x5d4f 016360 fetch 2 ,mem_len 
+0x5d50 016361 add pdata ,-3 ,loopcnt 
+0x5d51 016362 fetcht 1 ,mem_rxbuf + 1 
+0x5d52 016363 setarg mem_tmp_buffer 
+0x5d53 016364 iadd temp ,contw 
+0x5d54 016365 arg mem_rxbuf + 3 ,contr 
+0x5d55 016366 call memcpy 
+0x5d56 016367 fetcht 1 ,mem_name_offset 
+0x5d57 016368 fetch 1 ,mem_rxbuf + 2 
+0x5d58 016369 isub temp ,pdata 
+0x5d59 016370 sub pdata ,14 ,null 
+0x5d5a 016371 branch parse_lmp_name_res_end ,positive 
+0x5d5b 016372 add temp ,14 ,pdata 
+0x5d5c 016373 store 1 ,mem_name_offset 
+0x5d5d 016374 jam lmp_name_req ,mem_lmo_opcode2 
+0x5d5e 016375 rtn 
+:      016376 parse_lmp_name_res_end:
+0x5d5f 016377 fetch 1 ,mem_state_map 
+0x5d60 016378 set1 smap_name_res ,pdata 
+0x5d61 016379 store 1 ,mem_state_map 
+0x5d62 016380 bbit1 smap_name_req ,lmp_disconnect 
+0x5d63 016383 rtn 
+:      016384 parse_lmp_name_req:
+0x5d64 016385 fetch 1 ,mem_rxbuf + 1 
+0x5d65 016386 store 1 ,mem_lmi_opcode2 
+0x5d66 016387 jam lmp_name_res ,mem_lmo_opcode2 
+0x5d67 016388 rtn 
+:      016390 parse_lmp_conn_req:
+0x5d68 016391 fetch 1 ,mem_device_option 
+0x5d69 016392 bne dvc_op_hci ,accept_lmp_msg 
+0x5d6a 016393 force 1 ,temp 
+0x5d6b 016394 branch hci_send_conn_req_event 
+:      016396 parse_lmp_timing_accuracy_req:
+0x5d6c 016397 jam lmp_timing_accuracy_res ,mem_lmo_opcode2 
+0x5d6d 016398 rtn 
+:      016400 parse_lmp_features_req:
+0x5d6e 016401 jam lmp_features_res ,mem_lmo_opcode2 
+0x5d6f 016402 rtn 
+:      016404 parse_lmp_version_req:
+0x5d70 016405 jam lmp_version_res ,mem_lmo_opcode2 
+0x5d71 016406 rtn 
+:      016408 parse_lmp_supervision_timeout:
+0x5d72 016411 rtn 
+:      016415 parse_lmp_sniff_subrating_req:
+0x5d73 016416 fetch 2 ,mem_tsniff 
+0x5d74 016417 iforce temp 
+0x5d75 016418 fetch 1 ,mem_rxbuf + 2 
+0x5d76 016419 store 1 ,mem_subsniff_rate 
+0x5d77 016420 imul32 temp ,temp 
+0x5d78 016421 fetch 2 ,mem_rxbuf + 3 
+0x5d79 016422 lshift pdata ,pdata 
+0x5d7a 016423 store 2 ,mem_subsniff_tcmax 
+0x5d7b 016424 fetch 4 ,mem_rxbuf + 5 
+0x5d7c 016425 lshift pdata ,pdata 
+0x5d7d 016426 store 4 ,mem_subsniff_instant 
+0x5d7e 016428 deposit temp 
+0x5d7f 016429 store 2 ,mem_subsniff_tsniff 
+0x5d80 016430 rtn 
+:      016431 parse_lmpext_packet_type_table_req:
+0x5d81 016432 fetcht 1 ,mem_ptt 
+0x5d82 016433 fetch 1 ,mem_rxbuf + 2 
+0x5d83 016434 ixor temp ,null 
+0x5d84 016435 nbranch reject_unknown_ext_packet ,zero 
+0x5d85 016436 isolate1 0 ,pdata 
+0x5d86 016437 fetch 1 ,mem_state_map 
+0x5d87 016438 setflag true ,smap_edr ,pdata 
+0x5d88 016439 store 1 ,mem_state_map 
+0x5d89 016440 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x5d8a 016441 jam lmp_packet_type_table_req ,mem_lmi_opcode2 
+0x5d8b 016442 rtn 
+:      016445 parse_lmp_sniff_subrating_res:
+0x5d8c 016446 rtn 
+:      016448 parse_lmp_max_power:
+0x5d8d 016449 rtn 
+:      016450 parse_lmp_min_power:
+0x5d8e 016451 rtn 
+:      016452 parse_lmp_page_mode_req:
+0x5d8f 016454 branch accept_lmp_msg 
+:      016455 parse_lmp_page_scan_mode_req:
+0x5d90 016458 branch accept_lmp_msg 
+:      016459 parse_lmp_preferred_rate:
+0x5d91 016460 rtn 
+:      016461 parse_lmp_remove_sco_link_req:
+0x5d92 016462 call stop_sco 
+0x5d93 016463 jam lmp_remove_sco_link_req ,mem_lmi_opcode2 
+0x5d94 016464 branch accept_lmp_msg 
+:      016467 parse_lmp_sco_link_req:
+0x5d95 016468 fetch 1 ,mem_rxbuf + 1 
+0x5d96 016469 store 1 ,mem_sco_handle 
+0x5d97 016470 fetch 1 ,mem_rxbuf + 3 
+0x5d98 016471 store 1 ,mem_esco_desco 
+0x5d99 016472 fetch 1 ,mem_rxbuf + 6 
+0x5d9a 016473 store 1 ,mem_air_mode 
+0x5d9b 016474 call push_tid_follow 
+0x5d9c 016475 store 1 ,mem_accptsco_tid 
+0x5d9d 016476 force 0 ,temp 
+0x5d9e 016477 branch hci_send_conn_req_event 
+:      016479 parse_lmp_slot_offset:
+0x5d9f 016480 fetch 2 ,mem_rxbuf + 1 
+0x5da0 016481 store 2 ,mem_slot_offset 
+0x5da1 016482 rtn 
+:      016484 parse_lmp_sniff_req:
+0x5da2 016485 fetch 1 ,mem_state 
+0x5da3 016486 bbit1 state_insniff ,lmp_reject_sniff 
+0x5da4 016487 fetch 2 ,mem_rxbuf + 2 
+0x5da5 016488 lshift pdata ,pdata 
+0x5da6 016489 store 2 ,mem_dsniff 
+0x5da7 016490 fetch 2 ,mem_rxbuf + 4 
+0x5da8 016491 lshift pdata ,pdata 
+0x5da9 016492 store 2 ,mem_tsniff 
+0x5daa 016493 fetch 2 ,mem_rxbuf + 6 
+0x5dab 016494 store 1 ,mem_sniff_attempt 
+0x5dac 016495 iforce temp 
+0x5dad 016496 fetch 2 ,mem_rxbuf + 8 
+0x5dae 016497 store 1 ,mem_sniff_timeout 
+0x5daf 016498 isub temp ,null 
+0x5db0 016499 nbranch set_big_value_to_attempt ,positive 
+0x5db1 016500 store 1 ,mem_sniff_attempt 
+:      016501 set_big_value_to_attempt:
+0x5db2 016503 jam lmp_accepted ,mem_lmo_opcode2 
+0x5db3 016504 jam lmp_sniff_req ,mem_lmi_opcode2 
+0x5db4 016505 rtn 
+:      016507 lmp_reject_sniff:
+0x5db5 016508 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5db6 016509 branch reject_lmp_packet 
+:      016511 parse_lmp_start_encryption_req:
+0x5db7 016512 call accept_lmp_msg 
+0x5db8 016513 call lmp_copy_rand 
+0x5db9 016514 call function_e3 
+0x5dba 016515 branch start_encryption 
+:      016517 parse_lmp_stop_encryption_req:
+0x5dbb 016518 call accept_lmp_msg 
+0x5dbc 016519 branch stop_encryption 
+:      016522 parse_lmp_switch_req:
+0x5dbd 016523 fetch 4 ,mem_rxbuf + 1 
+0x5dbe 016524 lshift pdata ,pdata 
+0x5dbf 016526 branch parse_lmp_switch_accept ,master 
+0x5dc0 016527 fetcht 1 ,mem_link_key_exists 
+0x5dc1 016528 nbranch parse_lmp_switch_req_clear_mark ,blank 
+:      016529 parse_lmp_switch_req_not_accept:
+0x5dc2 016530 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5dc3 016531 jam lmp_switch_req ,mem_lmi_opcode2 
+0x5dc4 016532 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5dc5 016533 rtn 
+:      016534 parse_lmp_switch_req_clear_mark:
+0x5dc6 016535 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x5dc7 016536 jam 0 ,mem_conn_sm 
+0x5dc8 016537 branch role_switch_prepare 
+:      016539 parse_lmp_switch_accept:
+0x5dc9 016540 call role_switch_prepare 
+0x5dca 016541 set1 mark_reconn_recieve_switch ,mark 
+0x5dcb 016542 fetch 1 ,mem_connection_options 
+0x5dcc 016543 set0 connection_switch ,pdata 
+0x5dcd 016544 store 1 ,mem_connection_options 
+0x5dce 016545 branch accept_lmp_msg 
+:      016549 parse_lmp_temp_rand:
+0x5dcf 016550 rtn 
+:      016551 parse_lmp_temp_key:
+0x5dd0 016552 rtn 
+:      016553 parse_lmp_timing_accuracy_res:
+0x5dd1 016554 rtn 
+:      016556 parse_lmp_unit_key:
+0x5dd2 016558 rtn 
+:      016561 parse_lmp_unsniff_req:
+0x5dd3 016562 jam lmp_accepted ,mem_lmo_opcode2 
+0x5dd4 016563 jam lmp_unsniff_req ,mem_lmi_opcode2 
+0x5dd5 016564 jam bt_evt_remote_unsniff ,mem_fifo_temp 
+0x5dd6 016565 call ui_ipc_send_event 
+0x5dd7 016566 force 0 ,temp 
+0x5dd8 016567 call hci_send_mode_change 
+0x5dd9 016568 branch sniff_exit 
+:      016569 parse_lmp_use_semi_permanend_key:
+0x5dda 016570 rtn 
+:      016572 parse_lmp_encapsulated_header:
+0x5ddb 016573 fetch 1 ,mem_rxbuf + 1 
+0x5ddc 016574 bne encapsulated_major_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x5ddd 016575 fetch 1 ,mem_rxbuf + 2 
+0x5dde 016576 bne encapsulated_minor_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x5ddf 016577 fetch 1 ,mem_rxbuf + 3 
+0x5de0 016578 bne encapsulated_len_p192 ,parse_lmp_encapsulated_header_reject 
+0x5de1 016579 call check_localsm 
+0x5de2 016580 branch parse_lmp_encapsulated_header_master ,true 
+0x5de3 016581 jam sp_stat_key_recv ,mem_sp_state 
+:      016582 parse_lmp_encapsulated_header_master:
+0x5de4 016583 jam lmp_accepted ,mem_lmo_opcode2 
+0x5de5 016584 jam lmp_encapsulated_header ,mem_lmi_opcode2 
+0x5de6 016585 branch parse_rx_done 
+:      016587 parse_lmp_encapsulated_header_reject:
+0x5de7 016588 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5de8 016589 branch reject_lmp_packet 
+:      016591 parse_lmp_accepted_encapsulated_header:
+0x5de9 016594 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5dea 016596 rtn 
+:      016597 parse_lmp_accepted_simple_pairing_number:
+0x5deb 016598 call check_localsm 
+0x5dec 016599 rtn true 
+0x5ded 016600 jam sp_stat_confirm_recv ,mem_sp_state 
+0x5dee 016601 rtn 
+:      016603 parse_lmp_accepted_dhkey_check:
+0x5def 016605 call check_localsm 
+0x5df0 016606 ncall g_noninit ,true 
+0x5df1 016607 call g_init ,true 
+0x5df2 016608 call hci_send_user_confirmation_req 
+0x5df3 016609 call hci_send_ssp_complete 
+0x5df4 016610 call check_localsm 
+0x5df5 016611 rtn true 
+0x5df6 016612 jam sp_stat_link_key_calc ,mem_sp_state 
+0x5df7 016613 jam sp_flag_commit ,mem_sp_flag 
+0x5df8 016614 rtn 
+:      016616 parse_simple_pairing_confirm:
+0x5df9 016617 arg mem_sp_confirm_remote ,contw 
+0x5dfa 016618 fetch 8 ,mem_rxbuf + 1 
+0x5dfb 016619 istore 8 ,contw 
+0x5dfc 016620 fetch 8 ,mem_rxbuf + 9 
+0x5dfd 016621 istore 8 ,contw 
+0x5dfe 016622 branch master_set_mem_master_sp_flag 
+:      016624 parse_lmp_encapsulated_payload:
+0x5dff 016625 fetch 1 ,mem_master_sp_state 
+0x5e00 016626 beq sp_stat_random_send ,parse_encapsulated_payload_master 
+0x5e01 016627 fetch 1 ,mem_sp_state 
+0x5e02 016628 bne sp_stat_key_recv ,parse_lmp_encapsulated_payload_reject 
+:      016629 parse_encapsulated_payload_master:
+0x5e03 016630 fetch 1 ,mem_sp_remote_key_recv_count 
+0x5e04 016631 sub pdata ,0x20 ,contw 
+0x5e05 016632 nbranch parse_lmp_encapsulated_payload_reject ,positive 
+0x5e06 016633 arg mem_sp_pubkey_remote ,contw 
+0x5e07 016634 iadd contw ,contw 
+0x5e08 016635 fetch 8 ,mem_rxbuf + 1 
+0x5e09 016636 istore 8 ,contw 
+0x5e0a 016637 fetch 8 ,mem_rxbuf + 9 
+0x5e0b 016638 istore 8 ,contw 
+0x5e0c 016639 fetch 1 ,mem_sp_remote_key_recv_count 
+0x5e0d 016640 increase 16 ,pdata 
+0x5e0e 016641 store 1 ,mem_sp_remote_key_recv_count 
+0x5e0f 016642 bne encapsulated_len_p192 ,accept_lmp_msg 
+:      016643 parse_lmp_encapsulated_payload_completed:
+0x5e10 016644 call check_localsm 
+0x5e11 016645 branch accept_lmp_msg ,true 
+0x5e12 016646 jam sp_key_valid ,mem_sp_remote_key_invalid 
+0x5e13 016647 jam sp_stat_key_generate ,mem_sp_state 
+0x5e14 016648 jam sp_flag_commit ,mem_sp_flag 
+0x5e15 016649 branch accept_lmp_msg 
+:      016650 parse_lmp_encapsulated_payload_reject:
+0x5e16 016651 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5e17 016652 branch reject_lmp_packet 
+:      016653 parse_lmp_accepted_encapsulated_payload:
+0x5e18 016654 fetch 1 ,mem_sp_local_key_send_count 
+0x5e19 016655 beq encapsulated_len_p192 ,parse_lmp_encapsulated_payload_all_accepted 
+0x5e1a 016656 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5e1b 016657 branch parse_rx_done 
+:      016658 parse_lmp_encapsulated_payload_all_accepted:
+0x5e1c 016659 call check_localsm 
+0x5e1d 016660 branch parse_lmp_encapsulated_payload_all_accepted_master ,true 
+0x5e1e 016661 jam sp_flag_commit ,mem_sp_flag 
+0x5e1f 016662 jam sp_stat_commit_calc ,mem_sp_state 
+0x5e20 016663 branch parse_rx_done 
+:      016664 parse_lmp_encapsulated_payload_all_accepted_master:
+0x5e21 016666 branch parse_rx_done 
+:      016668 parse_lmp_simple_pairing_number:
+0x5e22 016669 fetch 1 ,mem_master_sp_state 
+0x5e23 016670 beq sp_stat_random_send ,parse_lmp_simple_pairing_number_master 
+0x5e24 016671 fetch 1 ,mem_sp_state 
+0x5e25 016672 bne sp_stat_random_recv ,parse_lmp_simple_pairing_number_reject 
+:      016673 parse_lmp_simple_pairing_number_master:
+0x5e26 016674 arg mem_sp_random_remote ,contw 
+0x5e27 016675 fetch 8 ,mem_rxbuf + 1 
+0x5e28 016676 istore 8 ,contw 
+0x5e29 016677 fetch 8 ,mem_rxbuf + 9 
+0x5e2a 016678 istore 8 ,contw 
+0x5e2b 016679 call check_localsm 
+0x5e2c 016680 branch parse_lmp_simple_pairing_number_master0 ,true 
+0x5e2d 016681 jam sp_stat_random_send ,mem_sp_state 
+0x5e2e 016682 jam sp_flag_commit ,mem_sp_flag 
+0x5e2f 016683 branch accept_lmp_msg 
+:      016684 parse_lmp_simple_pairing_number_master0:
+0x5e30 016685 jam sp_stat_commit_calc ,mem_master_sp_state 
+0x5e31 016686 branch master_set_mem_master_sp_flag 
+:      016689 parse_lmp_simple_pairing_number_reject:
+0x5e32 016690 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5e33 016691 branch reject_lmp_packet 
+:      016693 parse_dhkey_check:
+0x5e34 016694 fetch 1 ,mem_master_sp_state 
+0x5e35 016695 beq sp_stat_confirm_send ,parse_dhkey_check_master 
+0x5e36 016696 fetch 1 ,mem_sp_state 
+0x5e37 016697 bne sp_stat_confirm_recv ,parse_lmp_dhkey_check_reject 
+:      016698 parse_dhkey_check_master:
+0x5e38 016699 arg mem_sp_check_result ,contw 
+0x5e39 016700 fetch 8 ,mem_rxbuf + 1 
+0x5e3a 016701 istore 8 ,contw 
+0x5e3b 016702 fetch 8 ,mem_rxbuf + 9 
+0x5e3c 016703 istore 8 ,contw 
+0x5e3d 016704 call check_localsm 
+0x5e3e 016705 branch parse_dhkey_check_master0 ,true 
+0x5e3f 016706 jam sp_stat_confirm_check ,mem_sp_state 
+0x5e40 016707 jam sp_flag_commit ,mem_sp_flag 
+0x5e41 016708 branch parse_rx_done 
+:      016709 parse_dhkey_check_master0:
+0x5e42 016710 jam sp_stat_confirm_check ,mem_master_sp_state 
+0x5e43 016711 jam sp_flag_commit ,mem_master_sp_flag 
+0x5e44 016712 branch parse_rx_done 
+:      016713 parse_lmp_dhkey_check_reject:
+0x5e45 016714 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5e46 016715 branch reject_lmp_packet 
+:      016717 parse_lmp_clkoffset_res:
+0x5e47 016718 branch parse_rx_done 
+:      016720 parse_lmp_encryption_mode_req:
+0x5e48 016721 fetch 1 ,mem_connection_options 
+0x5e49 016722 set0 connection_encrypt 
+0x5e4a 016723 store 1 ,mem_connection_options 
+0x5e4b 016724 call accept_lmp_msg 
+0x5e4c 016725 nrtn master 
+0x5e4d 016726 fetch 1 ,mem_rxbuf + 1 
+0x5e4e 016727 fetcht 1 ,mem_op 
+0x5e4f 016728 setflag blank ,op_stop_enc ,temp 
+0x5e50 016729 nsetflag blank ,op_start_enc ,temp 
+0x5e51 016730 storet 1 ,mem_op 
+0x5e52 016731 rtn 
+:      016733 parse_lmp_features_res:
+0x5e53 016734 fetcht 8 ,mem_rxbuf + 1 
+0x5e54 016735 fetch 1 ,mem_hci_cmd 
+0x5e55 016736 bne hci_cmd_wait_remote_feature ,parse_lmp_features_res_not_hci 
+0x5e56 016737 jam 0 ,mem_hci_cmd 
+0x5e57 016738 call hci_send_remote_features 
+:      016739 parse_lmp_features_res_not_hci:
+0x5e58 016740 fetch 1 ,mem_conn_sm 
+0x5e59 016741 rtnne conn_sm_wait_features_res 
+0x5e5a 016742 fetch 1 ,mem_device_option 
+0x5e5b 016743 beq dvc_op_hci ,parse_lmp_feature_ext_sm 
+0x5e5c 016744 fetch 1 ,mem_connection_options 
+0x5e5d 016745 bbit0 connection_feature_ext ,parse_lmp_send_conn 
+:      016746 parse_lmp_feature_ext_sm:
+0x5e5e 016747 jam conn_sm_send_features_ext ,mem_conn_sm 
+0x5e5f 016748 rtn 
+:      016749 parse_lmp_send_conn:
+0x5e60 016750 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x5e61 016751 rtn 
+:      016752 parse_lmp_test_activate:
+0x5e62 016753 fetch 1 ,mem_debug_config 
+0x5e63 016754 store 1 ,mem_test_mode_old_debug_config 
+0x5e64 016755 jam lmp_accepted ,mem_lmo_opcode2 
+0x5e65 016756 jam lmp_test_activate ,mem_lmi_opcode2 
+0x5e66 016757 rtn 
+:      016758 parse_lmp_test_control:
+0x5e67 016761 jam lmp_accepted ,mem_lmo_opcode2 
+0x5e68 016762 jam lmp_test_control ,mem_lmi_opcode2 
+0x5e69 016763 force 9 ,loopcnt 
+0x5e6a 016764 arg mem_rxbuf + 1 ,contr 
+0x5e6b 016765 arg mem_temp_payload ,contw 
+:      016766 parse_lmp_test_xor:
+0x5e6c 016767 ifetch 1 ,contr 
+0x5e6d 016768 xor_into 0x55 ,pdata 
+0x5e6e 016769 istore 1 ,contw 
+0x5e6f 016770 loop parse_lmp_test_xor 
+0x5e70 016771 fetch 1 ,test_mode_scenario 
+0x5e71 016772 fetcht 1 ,mem_tester_emulate 
+0x5e72 016773 set0 tester_no_whitening ,temp 
+0x5e73 016774 set0 tester_pattern_test ,temp 
+0x5e74 016775 beq exit_test_mode ,parse_lmp_test_control_exit 
+0x5e75 016776 beq pause_test_mode ,parse_lmp_test_control_pause 
+0x5e76 016777 beq closed_loop_back_acl ,parse_lmp_test_control_loopback 
+0x5e77 016778 beq acl_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x5e78 016779 beq closed_loop_back_sco ,parse_lmp_test_control_loopback 
+0x5e79 016780 beq sco_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x5e7a 016781 beq zero_pattern ,parse_lmp_test_control_pattern 
+0x5e7b 016782 beq one_pattern ,parse_lmp_test_control_pattern 
+0x5e7c 016783 beq alt_pattern ,parse_lmp_test_control_pattern 
+0x5e7d 016784 beq alt2_pattern ,parse_lmp_test_control_pattern 
+0x5e7e 016785 beq pseudorandom ,parse_lmp_test_control_pattern 
+0x5e7f 016786 rtn 
+:      016787 parse_lmp_test_control_exit:
+0x5e80 016789 fetch 1 ,mem_tester_emulate 
+0x5e81 016790 set1 tester_exit ,pdata 
+0x5e82 016791 set1 tester_change ,pdata 
+0x5e83 016792 store 1 ,mem_tester_emulate 
+0x5e84 016793 rtn 
+:      016794 parse_lmp_test_control_pattern:
+0x5e85 016795 set1 tester_pattern_test ,temp 
+0x5e86 016796 jam 5 ,mem_lch_code 
+0x5e87 016797 fetch 2 ,test_mode_data_length 
+0x5e88 016798 iforce loopcnt 
+0x5e89 016799 store 2 ,mem_len 
+0x5e8a 016800 arg mem_rxbuf ,contw 
+0x5e8b 016801 call pn9 
+:      016802 parse_lmp_test_control_loopback_nowhite:
+0x5e8c 016803 set1 tester_no_whitening ,temp 
+:      016804 parse_lmp_test_control_loopback:
+0x5e8d 016805 set1 tester_change ,temp 
+0x5e8e 016806 force 0 ,pdata 
+0x5e8f 016807 store 1 ,mem_slave_rcvcnt 
+0x5e90 016808 store 2 ,mem_tst_pktcnt_crc 
+0x5e91 016809 store 2 ,mem_tst_pktcnt_dmh 
+0x5e92 016810 store 2 ,mem_tst_pktcnt_hec 
+0x5e93 016811 store 2 ,mem_tst_pktcnt_sync 
+0x5e94 016812 fetch 1 ,test_mode_hopping_mode 
+0x5e95 016813 compare fixed_freq ,pdata ,0xff 
+0x5e96 016814 setflag true ,tester_fixed_freq ,temp 
+0x5e97 016815 storet 1 ,mem_tester_emulate 
+0x5e98 016816 rtn 
+:      016818 parse_lmp_test_control_pause:
+0x5e99 016819 set0 mark_testmode ,mark 
+0x5e9a 016820 jam 0 ,mem_tester_emulate 
+0x5e9b 016821 fetch 1 ,mem_debug_config 
+0x5e9c 016822 set0 debug_tx_pattern ,pdata 
+0x5e9d 016823 store 1 ,mem_debug_config 
+0x5e9e 016824 rtn 
+:      016826 check_test_cond:
+0x5e9f 016827 fetch 1 ,mem_tester_emulate 
+0x5ea0 016828 rtnbit0 tester_change 
+0x5ea1 016829 fetch 1 ,mem_tester_cnt 
+0x5ea2 016830 increase 1 ,pdata 
+0x5ea3 016831 store 1 ,mem_tester_cnt 
+0x5ea4 016832 rtnne 5 
+0x5ea5 016833 jam 0 ,mem_tester_cnt 
+0x5ea6 016834 fetch 1 ,mem_tester_emulate 
+0x5ea7 016835 set0 tester_change ,pdata 
+0x5ea8 016836 store 1 ,mem_tester_emulate 
+0x5ea9 016837 bbit1 tester_exit ,check_test_exit 
+0x5eaa 016838 isolate1 tester_no_whitening ,pdata 
+0x5eab 016839 call test_no_white ,true 
+0x5eac 016840 ncall test_enable_white ,true 
+0x5ead 016841 fetch 1 ,test_mode_packet_type 
+0x5eae 016842 compare 0x20 ,pdata ,0x30 
+0x5eaf 016843 fetch 1 ,mem_state_map 
+0x5eb0 016844 setflag true ,smap_edr ,pdata 
+0x5eb1 016845 store 1 ,mem_state_map 
+0x5eb2 016846 fetch 1 ,mem_tester_emulate 
+0x5eb3 016847 fetcht 1 ,mem_debug_config 
+0x5eb4 016848 isolate1 tester_pattern_test ,pdata 
+0x5eb5 016849 setflag true ,debug_tx_pattern ,temp 
+0x5eb6 016850 isolate1 tester_fixed_freq ,pdata 
+0x5eb7 016851 setflag true ,debug_tx_fixed_freq ,temp 
+0x5eb8 016852 setflag true ,debug_rx_fixed_freq ,temp 
+0x5eb9 016853 storet 1 ,mem_debug_config 
+0x5eba 016854 fetch 1 ,test_mode_tx_freq 
+0x5ebb 016855 store 1 ,mem_tx_fixed_freq 
+0x5ebc 016856 fetch 1 ,test_mode_rx_freq 
+0x5ebd 016857 store 1 ,mem_rx_fixed_freq 
+0x5ebe 016858 set1 mark_testmode ,mark 
+0x5ebf 016859 rtn 
+:      016861 check_test_exit:
+0x5ec0 016862 set0 mark_testmode ,mark 
+0x5ec1 016863 jam 0 ,mem_tester_emulate 
+0x5ec2 016864 fetch 1 ,mem_test_mode_old_debug_config 
+0x5ec3 016865 store 1 ,mem_debug_config 
+0x5ec4 016866 hfetch 1 ,core_config 
+0x5ec5 016867 and_into 0xfb ,pdata 
+0x5ec6 016868 hstore 1 ,core_config 
+0x5ec7 016869 rtn 
+:      016872 lmp_copy_rand:
+0x5ec8 016873 arg mem_rxbuf + 1 ,contr 
+0x5ec9 016874 arg mem_random_number ,contw 
+0x5eca 016875 branch memcpy16 
+:      016877 lmp_generate_key:
+0x5ecb 016878 jam lmp_comb_key ,mem_lmo_opcode2 
+0x5ecc 016879 rtn 
+:      016881 lmp_start_encryption:
+0x5ecd 016882 nrtn master 
+0x5ece 016883 jam lmp_start_encryption_req ,mem_lmo_opcode2 
+0x5ecf 016884 rtn 
+:      016886 lmp_accept_inrand:
+0x5ed0 016887 arg mem_lap ,rega 
+0x5ed1 016888 call generate_kinit 
+0x5ed2 016889 jam lmp_accepted ,mem_lmo_opcode2 
+0x5ed3 016890 jam lmp_in_rand ,mem_lmi_opcode2 
+0x5ed4 016891 rtn 
+:      016893 lmp_disconnect:
+0x5ed5 016894 jam 10 ,mem_conn_timer 
+0x5ed6 016895 jam lmp_detach ,mem_lmo_opcode2 
+0x5ed7 016896 jam local_host ,mem_disconn_reason_send 
+0x5ed8 016897 rtn 
+:      016903 send_lmp:
+0x5ed9 016904 set1 mark_ext_patch ,mark 
+0x5eda 016905 bpatch patch3c_3 ,mem_patch3c 
+0x5edb 016906 disable user 
+0x5edc 016907 call lmo_fifo_process 
+0x5edd 016908 fetch 1 ,mem_lmp_to_send 
+0x5ede 016909 rtn blank 
+0x5edf 016914 bbit1 7 ,send_lmp_escape 
+0x5ee0 016915 beq lmp_name_req ,send_lmp_name_req 
+0x5ee1 016916 beq lmp_name_res ,send_lmp_name_res 
+0x5ee2 016917 beq lmp_accepted ,send_lmp_accepted 
+0x5ee3 016918 beq lmp_not_accepted ,send_lmp_not_accepted 
+0x5ee4 016919 beq lmp_features_req ,send_lmp_features_req 
+0x5ee5 016920 beq lmp_features_res ,send_lmp_features_res 
+0x5ee6 016921 beq lmp_timing_accuracy_res ,send_lmp_timing_accuracy_res 
+0x5ee7 016922 beq lmp_version_req ,send_lmp_version_req 
+0x5ee8 016923 beq lmp_version_res ,send_lmp_version_res 
+0x5ee9 016924 beq lmp_setup_complete ,send_lmp_setup_complete 
+0x5eea 016925 beq lmp_supervision_timeout ,send_lmp_superto 
+0x5eeb 016926 beq lmp_host_connection_req ,send_lmp_no_payload 
+0x5eec 016927 beq lmp_in_rand ,send_lmp_inrand 
+0x5eed 016928 beq lmp_comb_key ,send_lmp_comb_key 
+0x5eee 016929 beq lmp_au_rand ,send_lmp_aurand 
+0x5eef 016930 beq lmp_sres ,send_lmp_sres 
+0x5ef0 016931 beq lmp_encryption_mode_req ,send_lmp_encryption_mode_req 
+0x5ef1 016932 beq lmp_encryption_key_size_req ,send_lmp_encryption_key_size_req 
+0x5ef2 016933 beq lmp_start_encryption_req ,send_lmp_start_encryption 
+0x5ef3 016934 beq lmp_detach ,send_lmp_detach 
+0x5ef4 016935 beq lmp_quality_of_service_req ,send_lmp_quality_of_service_req 
+0x5ef5 016936 beq lmp_unit_key ,send_lmp_unit_key 
+0x5ef6 016938 beq lmp_sco_link_req ,send_lmp_sco_link_req 
+0x5ef7 016939 beq lmp_clkoffset_res ,send_lmp_clkoffset_res 
+0x5ef8 016940 beq lmp_max_power ,send_lmp_nopayload_reply 
+0x5ef9 016941 beq lmp_max_slot ,send_lmp_max_slot 
+0x5efa 016942 beq lmp_max_slot_req ,send_lmp_max_slot_req 
+0x5efb 016943 beq lmp_min_power ,send_lmp_nopayload_reply 
+0x5efc 016944 beq lmp_remove_sco_link_req ,send_lmp_remove_sco_link_req 
+0x5efd 016945 beq lmp_slot_offset ,send_lmp_slot_offset 
+0x5efe 016946 beq lmp_switch_req ,send_lmp_switch_req 
+0x5eff 016947 beq lmp_sniff_req ,send_lmp_sniff_req 
+0x5f00 016948 beq lmp_stop_encryption_req ,send_lmp_stop_encryption_req 
+0x5f01 016949 beq lmp_timing_accuracy_req ,send_lmp_timing_accuracy_req 
+0x5f02 016950 beq lmp_unsniff_req ,send_lmp_unsniff_req 
+0x5f03 016951 beq lmp_encapsulated_header ,send_lmp_encapsulated_header 
+0x5f04 016952 beq lmp_encapsulated_payload ,send_lmp_encapsulated_payload 
+0x5f05 016953 beq lmp_simple_pairing_confirm ,send_lmp_simple_pairing_comfirm 
+0x5f06 016954 beq lmp_simple_pairing_number ,send_lmp_simple_pairing_number 
+0x5f07 016955 beq lmp_dhkey_check ,send_lmp_dhkey_check 
+0x5f08 016956 beq lmp_auto_rate ,send_lmp_auto_rate 
+0x5f09 016957 beq lmp_enc_key_size_mask_res ,send_lmp_enc_key_size_mask_res 
+0x5f0a 016959 beq lmp_clkoffset_req ,send_lmp_clkoffset_req 
+0x5f0b 016960 beq lmp_quality_of_service ,send_lmp_quality_of_service 
+0x5f0c 016961 beq lmp_test_activate ,send_lmp_test_activate 
+0x5f0d 016962 beq lmp_test_control ,send_lmp_test_control 
+:      016963 send_lmp_error:
+0x5f0e 016964 branch assert 
+0x5f0f 016965 rtn 
+:      016966 send_lmp_escape:
+0x5f10 016967 beq lmp_ext_esco_link_req ,send_lmpext_esco_req 
+0x5f11 016968 beq lmp_ext_remove_esco_req ,send_lmpext_remove_esco 
+0x5f12 016969 beq lmp_ext_accepted ,send_lmpext_accepted 
+0x5f13 016970 beq lmp_ext_features_res ,send_lmpext_features_res 
+0x5f14 016971 beq lmp_not_accepted_ext ,send_lmpext_not_accepted 
+0x5f15 016972 beq lmp_ext_features_req ,send_lmpext_features_req 
+0x5f16 016973 beq lmp_packet_type_table_req ,send_lmpext_packet_type_table_req 
+0x5f17 016974 beq lmp_pause_encryption_req ,send_lmpext_pause_encryption_req 
+0x5f18 016975 beq lmp_io_cap_req ,send_lmp_io_cap_req 
+0x5f19 016976 beq lmp_io_cap_res ,send_lmpext_io_cap_res 
+0x5f1a 016977 beq lmp_sniff_subrating_req ,send_lmpext_sniff_subrating_req 
+0x5f1b 016978 beq lmp_sniff_subrating_res ,send_lmpext_sniff_subrating_res 
+0x5f1c 016979 branch assert 
+:      016985 send_lmp_accepted:
+0x5f1d 016986 force 2 ,pdata 
+0x5f1e 016987 call msg_send_lmp 
+0x5f1f 016988 fetch 1 ,mem_lmi_opcode 
+0x5f20 016989 istore 1 ,contw 
+0x5f21 016990 beq lmp_sco_link_req ,send_lmp_accptsco 
+0x5f22 016991 call send_lmp_follow 
+0x5f23 016992 fetch 1 ,mem_lmi_opcode 
+0x5f24 016993 beq lmp_in_rand ,send_lmp_accepted_inrand 
+0x5f25 016994 beq lmp_encryption_mode_req ,send_lmp_accepted_enc_mode 
+0x5f26 016995 beq lmp_encryption_key_size_req ,send_lmp_accepted_enc_key 
+0x5f27 016996 beq lmp_sniff_req ,send_lmp_accept_sniff_req 
+0x5f28 016997 beq lmp_host_connection_req ,send_lmp_accepted_connection 
+0x5f29 016998 beq lmp_remove_sco_link_req ,send_lmp_accept_remove_sco_link_req 
+0x5f2a 016999 beq lmp_dhkey_check ,send_lmp_accept_dhkey_check 
+0x5f2b 017000 beq lmp_start_encryption_req ,send_create_conn_start_l2cap_timer_sm 
+0x5f2c 017001 rtn 
+:      017003 send_create_conn_start_l2cap_timer_sm:
+0x5f2d 017004 fetch 1 ,mem_conn_sm 
+0x5f2e 017005 rtn blank 
+0x5f2f 017006 jam conn_sm_wait_done ,mem_conn_sm 
+0x5f30 017007 setarg timer_enpt_waite 
+0x5f31 017008 arg enpt_delay_timer ,queue 
+0x5f32 017009 branch timer_init 
+:      017011 send_lmp_accept_sniff_req:
+0x5f33 017012 force 0x02 ,temp 
+0x5f34 017013 call hci_send_mode_change 
+0x5f35 017014 branch sniff_init 
+:      017015 send_lmp_not_accepted:
+0x5f36 017016 force 3 ,pdata 
+0x5f37 017017 call msg_send_lmp 
+0x5f38 017018 fetch 1 ,mem_lmi_opcode 
+0x5f39 017019 beq lmp_au_rand ,send_not_accept_aurand 
+0x5f3a 017020 istore 1 ,contw 
+0x5f3b 017021 fetch 1 ,mem_lmo_reason 
+0x5f3c 017022 istore 1 ,contw 
+0x5f3d 017023 branch send_lmp_follow 
+:      017025 send_not_accept_aurand:
+0x5f3e 017026 istore 1 ,contw 
+0x5f3f 017027 fetch 1 ,mem_lmo_reason 
+0x5f40 017028 istore 1 ,contw 
+0x5f41 017029 arg mem_sres_tid ,temp 
+0x5f42 017030 branch special_tid_store 
+:      017032 send_lmpext_accepted:
+0x5f43 017033 force 4 ,queue 
+0x5f44 017034 call send_lmpext 
+0x5f45 017035 setarg lmp_escape 
+0x5f46 017036 istore 1 ,contw 
+0x5f47 017037 fetch 1 ,mem_lmi_opcode 
+0x5f48 017038 set0 7 ,pdata 
+0x5f49 017039 istore 1 ,contw 
+0x5f4a 017040 fetch 1 ,mem_lmi_opcode 
+0x5f4b 017041 beq lmp_ext_esco_link_req ,send_lmp_accptsco 
+0x5f4c 017042 call send_lmp_follow 
+0x5f4d 017043 fetch 1 ,mem_lmi_opcode 
+0x5f4e 017044 beq lmp_ext_remove_esco_req ,send_lmp_accept_remove_sco_link_req 
+0x5f4f 017045 rtn 
+:      017047 send_lmpext_not_accepted:
+0x5f50 017048 force 5 ,queue 
+0x5f51 017049 call send_lmpext 
+0x5f52 017050 setarg lmp_escape 
+0x5f53 017051 istore 1 ,contw 
+0x5f54 017052 fetch 1 ,mem_lmi_opcode 
+0x5f55 017053 set0 7 ,pdata 
+0x5f56 017054 istore 1 ,contw 
+0x5f57 017055 fetch 1 ,mem_lmo_reason 
+0x5f58 017056 istore 1 ,contw 
+0x5f59 017057 branch send_lmp_follow 
+:      017059 send_lmp_accptsco:
+0x5f5a 017060 call play_sco 
+0x5f5b 017061 arg mem_accptsco_tid ,temp 
+0x5f5c 017062 branch special_tid_store 
+:      017065 send_lmp_accepted_inrand:
+0x5f5d 017066 call clear_linkkey 
+0x5f5e 017067 call tid_check 
+0x5f5f 017068 rtn true 
+0x5f60 017069 branch lmp_generate_key 
+:      017071 send_lmp_accepted_enc_mode:
+0x5f61 017072 fetch 1 ,mem_op 
+0x5f62 017073 bbit1 op_start_enc ,send_lmp_accepted_enc_start 
+0x5f63 017074 rtnbit0 op_stop_enc 
+0x5f64 017075 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x5f65 017076 set0 op_stop_enc ,pdata 
+0x5f66 017077 call tid_reply 
+0x5f67 017078 branch send_lmp_accepted_enc_exit 
+:      017079 send_lmp_accepted_enc_start:
+0x5f68 017080 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x5f69 017081 set0 op_start_enc ,pdata 
+:      017082 send_lmp_accepted_enc_exit:
+0x5f6a 017083 store 1 ,mem_op 
+0x5f6b 017084 rtn 
+:      017086 send_lmp_accepted_enc_key:
+0x5f6c 017087 call check_localsm 
+0x5f6d 017088 branch lmp_start_encryption ,true 
+0x5f6e 017089 rtn 
+:      017091 send_lmp_accepted_connection:
+0x5f6f 017093 fetch 1 ,mem_lmp_conn_state 
+0x5f70 017094 set1 received_conn_req ,pdata 
+0x5f71 017095 store 1 ,mem_lmp_conn_state 
+0x5f72 017096 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x5f73 017097 branch ui_ipc_send_event 
+:      017100 send_lmp_accept_remove_sco_link_req:
+0x5f74 017101 rtn 
+:      017103 send_lmp_accept_dhkey_check:
+0x5f75 017104 rtn 
+:      017108 send_lmpext_features_res:
+0x5f76 017109 force 12 ,queue 
+0x5f77 017110 call send_lmpext 
+0x5f78 017111 setarg 0x01 
+0x5f79 017112 istore 1 ,contw 
+0x5f7a 017113 fetch 2 ,mem_lmpext_ssp_enable 
+0x5f7b 017114 istore 2 ,contw 
+0x5f7c 017115 setarg 0 
+0x5f7d 017116 istore 3 ,contw 
+0x5f7e 017117 setarg 0x00 
+0x5f7f 017118 istore 4 ,contw 
+0x5f80 017119 branch send_lmp_reply 
+:      017120 send_lmpext_io_cap_res:
+0x5f81 017122 force 5 ,queue 
+0x5f82 017123 call send_lmpext 
+0x5f83 017124 fetch 1 ,mem_device_option 
+0x5f84 017125 beq dvc_op_hci ,send_lmpext_io_cap_res_hci 
+0x5f85 017126 setarg 0x040003 
+0x5f86 017127 istore 3 ,contw 
+0x5f87 017128 store 3 ,mem_sp_iocap_local 
+0x5f88 017129 branch send_lmp_reply 
+:      017130 send_lmpext_io_cap_res_hci:
+0x5f89 017131 fetch 3 ,mem_sp_iocap_local 
+0x5f8a 017132 istore 3 ,contw 
+0x5f8b 017133 branch send_lmp_reply 
+:      017135 send_lmp_io_cap_req:
+0x5f8c 017136 force 5 ,queue 
+0x5f8d 017137 call send_lmpext 
+0x5f8e 017138 fetch 3 ,mem_sp_iocap_local 
+0x5f8f 017139 istore 3 ,contw 
+0x5f90 017140 branch send_lmp_request 
+:      017143 send_lmpext_sniff_subrating_req:
+0x5f91 017145 rtn 
+:      017146 send_lmpext_sniff_subrating_res:
+0x5f92 017147 force 9 ,queue 
+0x5f93 017148 call send_lmpext 
+0x5f94 017149 fetch 1 ,mem_subsniff_rate 
+0x5f95 017150 istore 1 ,contw 
+0x5f96 017151 fetch 2 ,mem_subsniff_tcmax 
+0x5f97 017152 istore 2 ,contw 
+0x5f98 017153 fetch 4 ,mem_subsniff_instant 
+0x5f99 017154 istore 4 ,contw 
+0x5f9a 017155 branch send_lmp_reply 
+:      017157 send_lmp_name_res:
+0x5f9b 017158 force 17 ,pdata 
+0x5f9c 017159 call msg_send_lmp 
+0x5f9d 017160 fetch 1 ,mem_lmi_opcode 
+0x5f9e 017161 copy pdata ,temp 
+0x5f9f 017162 beq 0x00 ,send_lmp_name_res_offset_ok 
+0x5fa0 017163 beq 0x0e ,send_lmp_name_res_offset_ok 
+0x5fa1 017164 beq 0x1c ,send_lmp_name_res_offset_ok 
+0x5fa2 017165 rtn 
+:      017166 send_lmp_name_res_offset_ok:
+0x5fa3 017167 istore 1 ,contw 
+0x5fa4 017168 fetch 1 ,mem_local_name_length 
+0x5fa5 017169 istore 1 ,contw 
+0x5fa6 017170 copy pdata ,loopcnt 
+0x5fa7 017171 setarg mem_local_name 
+0x5fa8 017172 iadd temp ,contr 
+0x5fa9 017173 call memcpy 
+0x5faa 017174 branch send_lmp_reply 
+:      017177 send_lmp_timing_accuracy_res:
+0x5fab 017178 force 3 ,pdata 
+0x5fac 017179 call msg_send_lmp 
+0x5fad 017180 setarg 0x0114 
+0x5fae 017181 istore 2 ,contw 
+0x5faf 017182 branch send_lmp_reply 
+:      017184 send_lmp_clkoffset_res:
+0x5fb0 017186 force 3 ,pdata 
+0x5fb1 017187 call msg_send_lmp 
+0x5fb2 017188 fetch 4 ,mem_clke_bt 
+0x5fb3 017189 isub clkn_bt ,pdata 
+0x5fb4 017190 branch send_lmp_clkoffset_res_master ,master 
+0x5fb5 017191 sub pdata ,0 ,pdata 
+:      017192 send_lmp_clkoffset_res_master:
+0x5fb6 017194 rshift2 pdata ,pdata 
+0x5fb7 017195 set0 15 ,pdata 
+0x5fb8 017196 istore 2 ,contw 
+0x5fb9 017197 branch send_lmp_reply 
+:      017199 send_lmp_version_res:
+0x5fba 017200 force 6 ,pdata 
+0x5fbb 017201 call msg_send_lmp 
+0x5fbc 017202 fetch 5 ,mem_lmp_version 
+0x5fbd 017203 istore 5 ,contw 
+0x5fbe 017204 branch send_lmp_reply 
+:      017206 send_lmp_features_res:
+0x5fbf 017207 force 9 ,pdata 
+0x5fc0 017208 call msg_send_lmp 
+0x5fc1 017209 fetch 8 ,mem_features 
+0x5fc2 017210 istore 8 ,contw 
+0x5fc3 017211 branch send_lmp_reply 
+:      017217 send_lmpext_esco_req:
+0x5fc4 017218 branch send_lmpext_esco_req_master ,master 
+0x5fc5 017221 branch send_lmpext_esco_req_slave 
+:      017222 send_lmpext_esco_req_master:
+0x5fc6 017223 jam 0x07 ,mem_esco_addr 
+:      017224 send_lmpext_esco_req_slave:
+0x5fc7 017225 jam 0 ,mem_esco_desco 
+0x5fc8 017226 force 16 ,queue 
+0x5fc9 017227 call send_lmpext 
+0x5fca 017228 fetch 1 ,mem_sco_handle 
+0x5fcb 017229 istore 1 ,contw 
+0x5fcc 017230 fetch 1 ,mem_esco_addr 
+0x5fcd 017231 istore 1 ,contw 
+0x5fce 017232 setarg 0 
+0x5fcf 017233 istore 1 ,contw 
+0x5fd0 017234 fetch 1 ,mem_esco_desco 
+0x5fd1 017235 istore 1 ,contw 
+0x5fd2 017236 setarg 6 
+0x5fd3 017237 istore 1 ,contw 
+0x5fd4 017238 setarg 2 
+0x5fd5 017239 istore 1 ,contw 
+0x5fd6 017240 setarg 7 
+0x5fd7 017241 istore 1 ,contw 
+0x5fd8 017242 istore 1 ,contw 
+0x5fd9 017243 setarg 30 
+0x5fda 017244 istore 2 ,contw 
+0x5fdb 017245 istore 2 ,contw 
+0x5fdc 017246 fetch 1 ,mem_air_mode 
+0x5fdd 017247 istore 1 ,contw 
+0x5fde 017248 fetch 1 ,mem_neogotiation_state 
+0x5fdf 017249 istore 1 ,contw 
+0x5fe0 017250 nbranch send_lmp_reply ,blank 
+0x5fe1 017251 branch send_lmp_reply ,master 
+0x5fe2 017252 branch send_lmp_request 
+:      017254 send_lmpext_remove_esco:
+0x5fe3 017255 force 4 ,queue 
+0x5fe4 017256 call send_lmpext 
+0x5fe5 017257 fetch 1 ,mem_sco_handle 
+0x5fe6 017258 istore 1 ,contw 
+0x5fe7 017259 fetch 1 ,mem_disconn_reason_send 
+0x5fe8 017260 istore 1 ,contw 
+0x5fe9 017261 fetch 1 ,mem_esco_saved_arq 
+0x5fea 017262 store 1 ,mem_arq 
+0x5feb 017263 branch send_lmp_request 
+:      017266 send_lmpext_features_req:
+0x5fec 017267 force 12 ,queue 
+0x5fed 017268 call send_lmpext 
+0x5fee 017269 setarg 0x01 
+0x5fef 017270 istore 1 ,contw 
+0x5ff0 017271 fetch 2 ,mem_lmpext_ssp_enable 
+0x5ff1 017272 istore 2 ,contw 
+0x5ff2 017273 setarg 0 
+0x5ff3 017274 istore 3 ,contw 
+0x5ff4 017275 setarg 0x00 
+0x5ff5 017276 istore 4 ,contw 
+0x5ff6 017277 branch send_lmp_request 
+:      017279 send_lmpext_packet_type_table_req:
+0x5ff7 017280 force 3 ,queue 
+0x5ff8 017281 call send_lmpext 
+0x5ff9 017282 fetch 1 ,mem_ptt 
+0x5ffa 017283 istore 1 ,contw 
+0x5ffb 017284 disable user 
+0x5ffc 017285 call send_lmp_request 
+0x5ffd 017286 nrtn user 
+0x5ffe 017287 nrtn master 
+0x5fff 017288 fetch 1 ,mem_afh_cfg 
+0x6000 017289 rtnbit0 afh_cfg_on 
+0x6001 017290 call afh_init 
+0x6002 017291 branch afh_open_all_channels 
+:      017294 ssp_enable:
+0x6003 017295 fetch 1 ,mem_features + 6 
+0x6004 017296 set1 param_featrue_ssp ,pdata 
+0x6005 017297 store 1 ,mem_features + 6 
+0x6006 017298 setarg param_lmpext_ssp_enable 
+0x6007 017299 store 2 ,mem_lmpext_ssp_enable 
+0x6008 017300 rtn 
+:      017302 ssp_disable:
+0x6009 017303 fetch 1 ,mem_features + 6 
+0x600a 017304 set0 param_featrue_ssp ,pdata 
+0x600b 017305 store 1 ,mem_features + 6 
+0x600c 017306 setarg 0 
+0x600d 017307 store 2 ,mem_lmpext_ssp_enable 
+0x600e 017308 rtn 
+:      017310 afh_init:
+0x600f 017311 jam 0x3 ,mem_afh_cfg 
+0x6010 017312 setarg 0 
+0x6011 017313 store 4 ,mem_afh_timer 
+0x6012 017314 arg mem_afh_map_lo ,contw 
+0x6013 017315 call afh_reset_map 
+0x6014 017316 arg mem_afh_map_new ,contw 
+0x6015 017317 call afh_reset_map 
+0x6016 017318 arg mem_afh_classify_channel_map ,contw 
+0x6017 017319 call afh_reset_map 
+0x6018 017320 branch afh_clear_error_counter 
+:      017321 afh_open_all_channels:
+0x6019 017322 arg mem_afh_map_new ,contw 
+0x601a 017323 call afh_reset_map 
+0x601b 017324 call afh_clear_error_counter 
+0x601c 017325 branch afh_set_send_flag 
+:      017328 afh_open_classify_map:
+0x601d 017329 fetch 5 ,mem_afh_classify_channel_map 
+0x601e 017330 store 5 ,mem_afh_map_new 
+0x601f 017331 ifetch 5 ,contr 
+0x6020 017332 istore 5 ,contw 
+0x6021 017333 call afh_clear_error_counter 
+0x6022 017334 branch afh_set_send_flag 
+:      017336 afh_reset_map:
+0x6023 017337 setarg 0xffffff 
+0x6024 017338 istore 3 ,contw 
+0x6025 017339 istore 3 ,contw 
+0x6026 017340 istore 3 ,contw 
+0x6027 017341 setarg 0x7f 
+0x6028 017342 istore 1 ,contw 
+0x6029 017343 rtn 
+:      017344 afh_clear_error_counter:
+0x602a 017345 setarg 0 
+0x602b 017346 store 2 ,mem_afh_error_total 
+0x602c 017347 rtn 
+:      017348 afh_set_send_flag:
+0x602d 017349 fetch 1 ,mem_afh_cfg 
+0x602e 017350 set1 send_lmp_set_afh ,pdata 
+0x602f 017351 store 1 ,mem_afh_cfg 
+0x6030 017352 rtn 
+:      017353 send_set_afh:
+0x6031 017354 nrtn master 
+0x6032 017355 force 16 ,pdata 
+0x6033 017356 call msg_send_lmp 
+0x6034 017357 deposit clkn_bt 
+0x6035 017358 arg 476 ,temp 
+0x6036 017359 iadd temp ,pdata 
+0x6037 017360 rshift pdata ,pdata 
+0x6038 017361 increase 1 ,pdata 
+0x6039 017362 set0 0 ,pdata 
+0x603a 017363 istore 4 ,contw 
+0x603b 017364 copy pdata ,temp 
+0x603c 017365 setarg 1 
+0x603d 017366 istore 1 ,contw 
+0x603e 017367 fetch 5 ,mem_afh_map_new 
+0x603f 017368 istore 5 ,contw 
+0x6040 017369 ifetch 5 ,contr 
+0x6041 017370 istore 5 ,contw 
+0x6042 017371 lshift temp ,temp 
+0x6043 017372 storet 4 ,mem_afh_instant 
+0x6044 017373 call send_lmp_request 
+0x6045 017374 fetch 1 ,mem_mode 
+0x6046 017375 set1 afh_change ,pdata 
+0x6047 017376 store 1 ,mem_mode 
+0x6048 017377 jam 1 ,mem_afh_new_mod 
+0x6049 017378 fetch 4 ,mem_afh_instant 
+0x604a 017379 arg timer_one_minute ,temp 
+0x604b 017380 iadd temp ,pdata 
+0x604c 017381 store 4 ,mem_afh_timer 
+0x604d 017382 fetch 1 ,mem_afh_cfg 
+0x604e 017383 rtnbit1 afh_cfg_master_sent_req 
+0x604f 017384 jam lmp_ext_chn_classification_req ,mem_lmo_opcode2 
+0x6050 017385 rtn 
+:      017388 send_lmpext_pause_encryption_req:
+0x6051 017389 force 2 ,queue 
+0x6052 017390 call send_lmpext 
+0x6053 017391 nbranch send_lmp_reply ,master 
+0x6054 017393 branch send_lmp_request 
+:      017397 send_lmp_detach:
+0x6055 017398 force 2 ,pdata 
+0x6056 017399 call msg_send_lmp 
+0x6057 017400 fetch 1 ,mem_disconn_reason_send 
+0x6058 017401 istore 1 ,contw 
+0x6059 017402 call send_lmp_request 
+:      017403 prepare_disconnect:
+0x605a 017404 fetch 1 ,mem_op 
+0x605b 017405 set1 op_disconn ,pdata 
+0x605c 017406 store 1 ,mem_op 
+0x605d 017407 jam 50 ,mem_conn_timer 
+0x605e 017408 rtn 
+:      017411 send_lmp_no_payload:
+0x605f 017412 force 1 ,pdata 
+0x6060 017413 call msg_send_lmp 
+0x6061 017414 branch send_lmp_request 
+:      017415 send_lmp_nopayload_reply:
+0x6062 017416 force 1 ,pdata 
+0x6063 017417 call msg_send_lmp 
+0x6064 017418 branch send_lmp_reply 
+:      017421 send_lmp_encryption_mode_req:
+0x6065 017422 force 2 ,pdata 
+0x6066 017423 call msg_send_lmp 
+0x6067 017424 fetch 1 ,mem_state_map 
+0x6068 017425 isolate0 smap_encryption ,pdata 
+0x6069 017426 setflag true ,0 ,pdata 
+0x606a 017427 and_into 1 ,pdata 
+0x606b 017428 istore 1 ,contw 
+0x606c 017429 branch send_lmp_request 
+:      017432 send_lmp_superto:
+0x606d 017433 force 3 ,pdata 
+0x606e 017434 call msg_send_lmp 
+0x606f 017435 fetch 2 ,mem_supervision_to 
+0x6070 017436 istore 2 ,contw 
+0x6071 017437 branch send_lmp_request 
+:      017439 send_lmp_name_req:
+0x6072 017440 jam 250 ,mem_conn_timer 
+0x6073 017441 force 2 ,pdata 
+0x6074 017442 call msg_send_lmp 
+0x6075 017443 fetch 1 ,mem_name_offset 
+0x6076 017444 istore 1 ,contw 
+0x6077 017445 branch send_lmp_request 
+:      017447 send_lmp_test_control:
+0x6078 017448 force 10 ,pdata 
+0x6079 017449 call msg_send_lmp 
+0x607a 017450 arg mem_temp_payload ,contr 
+0x607b 017451 force 9 ,loopcnt 
+:      017452 send_lmp_test_control_loop:
+0x607c 017453 ifetch 1 ,contr 
+0x607d 017454 xor_into 0x55 ,pdata 
+0x607e 017455 istore 1 ,contw 
+0x607f 017456 loop send_lmp_test_control_loop 
+0x6080 017457 branch send_lmp_request 
+:      017459 send_lmp_quality_of_service_req:
+0x6081 017460 branch send_lmp_request 
+:      017461 send_lmp_unit_key:
+0x6082 017462 branch send_lmp_request 
+:      017464 send_lmp_slot_offset:
+0x6083 017465 rtn master 
+0x6084 017466 call calc_slot_offset 
+0x6085 017467 force 9 ,pdata 
+0x6086 017468 call msg_send_lmp 
+0x6087 017469 fetch 2 ,mem_slot_offset 
+0x6088 017470 istore 2 ,contw 
+0x6089 017471 fetch 3 ,mem_lap 
+0x608a 017472 istore 3 ,contw 
+0x608b 017473 fetch 1 ,mem_uap 
+0x608c 017474 istore 1 ,contw 
+0x608d 017475 fetch 2 ,mem_nap 
+0x608e 017476 istore 2 ,contw 
+0x608f 017477 bmark0 mark_switch_initiated ,send_lmp_slot_offset_reply 
+0x6090 017478 set0 mark_switch_initiated ,mark 
+0x6091 017479 call send_lmp_request 
+0x6092 017480 jam lmp_switch_req ,mem_lmo_opcode2 
+0x6093 017481 rtn 
+:      017482 send_lmp_slot_offset_reply:
+0x6094 017483 call send_lmp_reply 
+0x6095 017484 jam lmp_accepted ,mem_lmo_opcode2 
+0x6096 017485 jam lmp_switch_req ,mem_lmi_opcode2 
+0x6097 017486 rtn 
+:      017488 send_lmp_switch_req:
+0x6098 017489 arg 0x200 ,temp 
+0x6099 017490 branch switch_on_native ,master 
+0x609a 017491 deposit clke_bt 
+0x609b 017492 branch switch_slack 
+:      017493 switch_on_native:
+0x609c 017494 deposit clkn_bt 
+:      017495 switch_slack:
+0x609d 017496 deposit bt_clk 
+0x609e 017497 iadd temp ,pdata 
+0x609f 017498 and_into 0x1fc ,pdata 
+0x60a0 017499 store 4 ,mem_sniff_anchor 
+0x60a1 017500 force 5 ,pdata 
+0x60a2 017501 call msg_send_lmp 
+0x60a3 017502 fetch 4 ,mem_sniff_anchor 
+0x60a4 017503 rshift pdata ,pdata 
+0x60a5 017504 istore 4 ,contw 
+0x60a6 017505 branch send_lmp_request 
+:      017507 send_lmp_sniff_req:
+0x60a7 017508 force 10 ,pdata 
+0x60a8 017509 call msg_send_lmp 
+0x60a9 017510 arg mem_sniff_payload ,contr 
+0x60aa 017511 ifetch 9 ,contr 
+0x60ab 017512 istore 9 ,contw 
+0x60ac 017513 branch send_lmp_request 
+:      017516 send_lmp_timing_accuracy_req:
+0x60ad 017518 force 3 ,pdata 
+0x60ae 017519 call msg_send_lmp 
+0x60af 017520 setarg 0x0114 
+0x60b0 017521 istore 2 ,contw 
+0x60b1 017522 branch send_lmp_request 
+:      017524 send_lmp_unsniff_req:
+0x60b2 017526 force 1 ,pdata 
+0x60b3 017527 call msg_send_lmp 
+0x60b4 017536 branch send_lmp_request 
+:      017538 send_lmp_sco_link_req:
+0x60b5 017539 branch send_lmp_sco_link_master ,master 
+0x60b6 017540 jam 0x00 ,mem_sco_handle 
+0x60b7 017541 fetch 1 ,mem_mode 
+0x60b8 017542 set1 send_sco_when_slave ,pdata 
+0x60b9 017543 store 1 ,mem_mode 
+:      017544 send_lmp_sco_link_master:
+0x60ba 017545 jam 0 ,mem_esco_desco 
+0x60bb 017546 force 7 ,pdata 
+0x60bc 017547 call msg_send_lmp 
+0x60bd 017548 fetch 1 ,mem_sco_handle 
+0x60be 017549 istore 1 ,contw 
+0x60bf 017550 setarg 0x00 
+0x60c0 017551 istore 1 ,contw 
+0x60c1 017552 fetch 1 ,mem_esco_desco 
+0x60c2 017553 istore 1 ,contw 
+0x60c3 017554 setarg 0x06 
+0x60c4 017555 istore 1 ,contw 
+0x60c5 017556 setarg 0x02 
+0x60c6 017557 istore 1 ,contw 
+0x60c7 017558 fetch 1 ,mem_air_mode 
+0x60c8 017559 istore 1 ,contw 
+0x60c9 017560 branch send_lmp_reply ,master 
+0x60ca 017561 branch send_lmp_tid 
+:      017563 send_lmp_remove_sco_link_req:
+0x60cb 017565 force 3 ,pdata 
+0x60cc 017566 call msg_send_lmp 
+0x60cd 017567 fetch 1 ,mem_sco_handle 
+0x60ce 017568 istore 1 ,contw 
+0x60cf 017569 force other_end_terminated ,pdata 
+0x60d0 017570 istore 1 ,contw 
+0x60d1 017571 branch send_lmp_request 
+:      017573 send_lmp_max_slot:
+0x60d2 017574 force 2 ,pdata 
+0x60d3 017575 call msg_send_lmp 
+0x60d4 017576 fetch 1 ,mem_max_slot 
+0x60d5 017577 istore 1 ,contw 
+0x60d6 017578 branch send_lmp_request 
+:      017581 send_lmp_max_slot_req:
+0x60d7 017582 force 2 ,pdata 
+0x60d8 017583 call msg_send_lmp 
+0x60d9 017584 setarg 0x05 
+0x60da 017585 istore 1 ,contw 
+0x60db 017586 branch send_lmp_request 
+:      017588 send_lmp_setup_complete:
+0x60dc 017589 fetch 1 ,mem_state 
+0x60dd 017590 set1 state_conn_comp ,pdata 
+0x60de 017591 store 1 ,mem_state 
+0x60df 017592 copy clkn_bt ,pdata 
+0x60e0 017593 store 4 ,mem_aurand_send_delay_time 
+0x60e1 017594 fetch 1 ,mem_lmp_conn_state 
+0x60e2 017595 bbit1 sent_setup_complete ,send_lmp_setup_complete_has_sent 
+0x60e3 017596 set1 sent_setup_complete ,pdata 
+0x60e4 017597 store 1 ,mem_lmp_conn_state 
+0x60e5 017598 jam bt_evt_setup_complete ,mem_fifo_temp 
+0x60e6 017599 call ui_ipc_send_event 
+0x60e7 017600 call hci_send_connection_complete 
+0x60e8 017601 force 1 ,pdata 
+0x60e9 017602 call msg_send_lmp 
+0x60ea 017603 branch send_lmp_request 
+:      017604 send_lmp_setup_complete_has_sent:
+0x60eb 017605 jam 0 ,mem_lmp_to_send 
+0x60ec 017606 rtn 
+:      017608 send_lmp_version_req:
+0x60ed 017609 force 6 ,pdata 
+0x60ee 017610 call msg_send_lmp 
+0x60ef 017611 fetch 5 ,mem_lmp_version 
+0x60f0 017612 istore 5 ,contw 
+0x60f1 017613 branch send_lmp_request 
+:      017615 send_lmp_features_req:
+0x60f2 017616 force 9 ,pdata 
+0x60f3 017617 call msg_send_lmp 
+0x60f4 017618 fetch 8 ,mem_features 
+0x60f5 017619 istore 8 ,contw 
+0x60f6 017620 branch send_lmp_request 
+:      017622 sp_master_send_io_cap_get:
+0x60f7 017623 call hci_send_io_cap_req_event 
+0x60f8 017624 fetch 1 ,mem_device_option 
+0x60f9 017625 beq dvc_op_hci ,sp_master_send_io_cap_get_hci 
+0x60fa 017626 jam sp_flag_commit ,mem_master_sp_flag 
+0x60fb 017627 fetch 1 ,mem_sp_local_key_invalid 
+0x60fc 017628 rtnne sp_key_valid 
+:      017629 sp_master_send_io_cap_get_hci:
+0x60fd 017630 jam sp_master_stat_start_done ,mem_master_sp_state 
+0x60fe 017631 rtn 
+:      017633 sp_master_send_io_cap_send:
+0x60ff 017634 call tid_initiate 
+0x6100 017635 jam lmp_io_cap_req ,mem_lmo_opcode2 
+0x6101 017636 jam sp_stat_key_send ,mem_master_sp_state 
+0x6102 017637 rtn 
+:      017640 sp_master_send_lmp_encapsulated_header:
+0x6103 017641 call tid_initiate 
+0x6104 017642 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x6105 017643 jam sp_stat_random_send ,mem_master_sp_state 
+0x6106 017644 rtn 
+:      017646 sp_master_commitment_compare:
+0x6107 017647 arg mem_sp_calc_result_high ,rega 
+0x6108 017648 arg mem_sp_confirm_remote ,regb 
+0x6109 017649 arg 16 ,loopcnt 
+0x610a 017650 call string_compare 
+0x610b 017651 branch sp_master_commitment_compare_success ,zero 
+0x610c 017652 jam sp_stat_null ,mem_master_sp_state 
+0x610d 017653 call master_clear_mem_master_sp_flag 
+0x610e 017654 jam pdu_not_allowed ,mem_lmo_reason2 
+0x610f 017655 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x6110 017656 branch reject_lmp_packet 
+:      017657 sp_master_commitment_compare_success:
+0x6111 017658 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x6112 017659 call master_set_mem_master_sp_flag 
+0x6113 017660 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x6114 017661 branch accept_lmp_msg 
+:      017665 sp_master_send_lmp_simple_pairing_number:
+0x6115 017666 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x6116 017667 rtn 
+:      017671 sp_send_lmp_encapsulated_header:
+0x6117 017674 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x6118 017676 rtn 
+:      017682 send_lmp_encapsulated_header:
+0x6119 017683 jam 0 ,mem_sp_local_key_send_count 
+0x611a 017684 force 4 ,pdata 
+0x611b 017685 call msg_send_lmp 
+0x611c 017686 force encapsulated_major_type_p192 ,pdata 
+0x611d 017687 istore 1 ,contw 
+0x611e 017688 force encapsulated_minor_type_p192 ,pdata 
+0x611f 017689 istore 1 ,contw 
+0x6120 017690 force encapsulated_len_p192 ,pdata 
+0x6121 017691 istore 1 ,contw 
+0x6122 017692 call check_localsm 
+0x6123 017693 branch send_lmp_request ,true 
+0x6124 017694 branch send_lmp_reply 
+:      017696 send_lmp_encapsulated_payload:
+0x6125 017698 force 17 ,pdata 
+0x6126 017699 call msg_send_lmp 
+0x6127 017700 fetch 1 ,mem_sp_local_key_send_count 
+0x6128 017701 arg mem_sp_pubkey_local ,contr 
+0x6129 017702 iadd contr ,contr 
+0x612a 017703 ifetch 8 ,contr 
+0x612b 017704 istore 8 ,contw 
+0x612c 017705 ifetch 8 ,contr 
+0x612d 017706 istore 8 ,contw 
+0x612e 017707 fetch 1 ,mem_sp_local_key_send_count 
+0x612f 017708 increase 16 ,pdata 
+0x6130 017709 store 1 ,mem_sp_local_key_send_count 
+0x6131 017710 call check_localsm 
+0x6132 017711 branch send_lmp_request ,true 
+0x6133 017712 branch send_lmp_reply 
+:      017715 sp_send_lmp_simple_pairing_comfirm:
+0x6134 017716 jam sp_stat_random_recv ,mem_sp_state 
+0x6135 017717 jam lmp_simple_pairing_confirm ,mem_lmo_opcode2 
+0x6136 017718 rtn 
+:      017719 send_lmp_simple_pairing_comfirm:
+0x6137 017722 force 17 ,pdata 
+0x6138 017723 call msg_send_lmp 
+0x6139 017724 arg mem_sp_calc_result_high ,contr 
+0x613a 017725 ifetch 8 ,contr 
+0x613b 017726 istore 8 ,contw 
+0x613c 017727 ifetch 8 ,contr 
+0x613d 017728 istore 8 ,contw 
+0x613e 017729 branch send_lmp_reply 
+:      017731 sp_send_lmp_simple_pairing_number:
+0x613f 017732 call lmo_fifo_process 
+0x6140 017734 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x6141 017735 rtn 
+:      017737 send_lmp_simple_pairing_number:
+0x6142 017739 call check_localsm 
+0x6143 017740 call sp_local_random_key_generator ,true 
+0x6144 017741 force 17 ,pdata 
+0x6145 017742 call msg_send_lmp 
+0x6146 017743 arg mem_sp_random_local ,contr 
+0x6147 017744 ifetch 8 ,contr 
+0x6148 017745 istore 8 ,contw 
+0x6149 017746 ifetch 8 ,contr 
+0x614a 017747 istore 8 ,contw 
+0x614b 017748 call check_localsm 
+0x614c 017749 nbranch send_lmp_reply ,true 
+0x614d 017750 branch send_lmp_request ,true 
+:      017752 master_sp_sm_end:
+0x614e 017754 jam sp_stat_done ,mem_master_sp_state 
+:      017755 sp_aurand_send:
+0x614f 017756 call tid_initiate 
+0x6150 017757 jam lmp_au_rand ,mem_lmo_opcode2 
+0x6151 017758 call check_localsm_master 
+0x6152 017759 branch sp_master_key_prarm_push ,true 
+0x6153 017760 branch sp_link_key_prarm_push 
+:      017761 master_sp_send_lmp_dhkey_check:
+0x6154 017762 call tid_reply 
+:      017763 sp_send_lmp_dhkey_check:
+0x6155 017764 jam lmp_dhkey_check ,mem_lmo_opcode2 
+0x6156 017765 rtn 
+:      017766 send_lmp_dhkey_check:
+0x6157 017768 force 17 ,pdata 
+0x6158 017769 call msg_send_lmp 
+0x6159 017770 arg mem_sp_calc_result_high ,contr 
+0x615a 017771 ifetch 8 ,contr 
+0x615b 017772 istore 8 ,contw 
+0x615c 017773 ifetch 8 ,contr 
+0x615d 017774 istore 8 ,contw 
+0x615e 017775 call check_localsm 
+0x615f 017776 nbranch send_lmp_reply ,true 
+0x6160 017777 branch send_lmp_request ,true 
+:      017779 send_lmp_enc_key_size_mask_res:
+0x6161 017780 force 3 ,pdata 
+0x6162 017781 call msg_send_lmp 
+0x6163 017782 setarg 0xfffe 
+0x6164 017783 istore 2 ,contw 
+0x6165 017784 branch send_lmp_reply 
+:      017786 send_lmp_auto_rate:
+0x6166 017787 branch send_lmp_request 
+:      017788 send_lmp_clkoffset_req:
+0x6167 017789 branch send_lmp_request 
+:      017790 send_lmp_quality_of_service:
+0x6168 017791 branch send_lmp_request 
+:      017792 send_lmp_test_activate:
+0x6169 017793 branch send_lmp_request 
+:      017798 send_lmp_comb_key:
+0x616a 017799 call generate_random_number 
+0x616b 017800 arg mem_lap ,rega 
+0x616c 017801 call generate_linkkey 
+0x616d 017802 force 17 ,pdata 
+0x616e 017803 call msg_send_lmp 
+0x616f 017804 arg mem_kinit ,rega 
+0x6170 017805 arg mem_random_number ,regb 
+0x6171 017806 call xor16 
+0x6172 017807 nbranch send_lmp_follow ,master 
+0x6173 017808 branch send_lmp_tid 
+:      017810 send_lmp_inrand:
+0x6174 017811 call generate_random_number 
+0x6175 017812 arg mem_plap ,rega 
+0x6176 017813 call generate_kinit 
+:      017814 send_lmp_rand:
+0x6177 017815 force 17 ,pdata 
+0x6178 017816 call msg_send_lmp 
+0x6179 017817 arg mem_random_number ,contr 
+0x617a 017818 call memcpy16 
+0x617b 017819 fetch 1 ,mem_conn_sm 
+0x617c 017820 beq conn_sm_auth_wait ,send_lmp_request 
+0x617d 017821 beq conn_sm_pairing_wait ,send_lmp_request 
+0x617e 017822 branch send_lmp_tid 
+:      017824 send_lmp_aurand:
+0x617f 017825 fetch 1 ,mem_pairing_auth 
+0x6180 017826 branch send_lmp_aurand_notpairing ,blank 
+0x6181 017827 call check_localsm 
+0x6182 017828 call tid_initiate ,true 
+0x6183 017829 ncall tid_reply ,true 
+0x6184 017830 branch send_lmp_aurand_common 
+:      017831 send_lmp_aurand_notpairing:
+0x6185 017832 call tid_initiate 
+:      017833 send_lmp_aurand_common:
+0x6186 017834 call generate_random_number 
+0x6187 017835 branch send_lmp_rand 
+:      017837 send_lmp_sres:
+0x6188 017838 arg mem_lap ,rega 
+0x6189 017839 call function_e1 
+0x618a 017840 force 5 ,pdata 
+0x618b 017841 call msg_send_lmp 
+0x618c 017842 fetch 4 ,mem_input_store 
+0x618d 017843 istore 4 ,contw 
+0x618e 017844 arg mem_sres_tid ,temp 
+0x618f 017845 call special_tid_store 
+0x6190 017846 call copy_aco 
+0x6191 017847 call check_localsm 
+0x6192 017848 branch send_lmp_sres_master ,true 
+0x6193 017849 jam done_encryp ,mem_wait_encryption 
+0x6194 017850 fetch 1 ,mem_pairing_auth 
+0x6195 017851 rtn blank 
+0x6196 017852 jam lmp_au_rand ,mem_lmo_opcode2 
+:      017853 send_lmp_sres_master:
+0x6197 017854 fetch 1 ,mem_link_key_exists 
+0x6198 017855 rtn blank 
+0x6199 017856 call check_localsm 
+0x619a 017857 call hci_send_linkkey_notification ,true 
+:      017858 send_lmp_sres_startenc:
+0x619b 017859 call check_localsm 
+0x619c 017860 nbranch send_lmp_sres_startenc_slave ,true 
+0x619d 017861 fetch 1 ,mem_auth_enable 
+0x619e 017862 rtn blank 
+0x619f 017863 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x61a0 017864 rtn 
+:      017865 send_lmp_sres_startenc_slave:
+0x61a1 017866 rtnmark0 mark_slave_in_rand_accepted 
+0x61a2 017867 set0 mark_slave_in_rand_accepted ,mark 
+0x61a3 017868 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x61a4 017869 rtn 
+:      017873 send_lmp_start_encryption:
+0x61a5 017874 call generate_random_number 
+0x61a6 017875 call function_e3 
+0x61a7 017876 force 17 ,pdata 
+0x61a8 017877 call msg_send_lmp 
+0x61a9 017878 arg mem_random_number ,contr 
+0x61aa 017879 call memcpy16 
+0x61ab 017880 branch send_lmp_tid 
+:      017882 send_lmp_stop_encryption_req:
+0x61ac 017883 force 1 ,pdata 
+0x61ad 017884 call msg_send_lmp 
+0x61ae 017885 branch send_lmp_tid 
+:      017887 send_lmp_encryption_key_size_req:
+0x61af 017888 force 2 ,pdata 
+0x61b0 017889 call msg_send_lmp 
+0x61b1 017890 force 16 ,pdata 
+0x61b2 017891 istore 1 ,contw 
+0x61b3 017892 store 1 ,mem_key_size 
+0x61b4 017893 branch send_lmp_tid 
+:      017895 msg_send_lmp:
+0x61b5 017897 lshift3 pdata ,pdata 
+0x61b6 017898 or_into 0x07 ,pdata 
+0x61b7 017899 store 1 ,mem_lmo_header_length 
+0x61b8 017900 arg 17 ,loopcnt 
+0x61b9 017901 arg mem_lmo_payload ,contw 
+0x61ba 017902 call clear_mem 
+0x61bb 017903 arg mem_lmo_payload ,contw 
+0x61bc 017904 rtn 
+:      017906 send_lmpext:
+0x61bd 017907 and pdata ,0x7f ,rega 
+0x61be 017908 jam lmp_escape ,mem_lmp_to_send 
+0x61bf 017909 deposit queue 
+0x61c0 017910 call msg_send_lmp 
+0x61c1 017911 deposit rega 
+0x61c2 017912 istore 1 ,contw 
+0x61c3 017913 rtn 
+:      017915 send_lmp_follow:
+0x61c4 017916 fetch 1 ,mem_lmp_to_send 
+0x61c5 017917 lshift pdata ,pdata 
+0x61c6 017918 fetcht 1 ,mem_state_map 
+0x61c7 017919 isolate1 smap_lmptid ,temp 
+0x61c8 017920 setflag true ,0 ,pdata 
+0x61c9 017921 branch send_lmp_exit 
+:      017924 send_lmp_tid:
+0x61ca 017925 fetcht 1 ,mem_state_map 
+0x61cb 017926 and_into 1 ,temp 
+0x61cc 017927 branch send_lmp_end 
+:      017929 send_lmp_reply:
+0x61cd 017930 force 0 ,temp 
+0x61ce 017931 branch send_lmp_end 
+:      017933 send_lmp_request:
+0x61cf 017934 force 1 ,temp 
+:      017935 send_lmp_end:
+0x61d0 017936 fetch 1 ,mem_lmp_to_send 
+0x61d1 017937 lshift pdata ,pdata 
+0x61d2 017938 setflag master ,0 ,pdata 
+0x61d3 017939 ixor temp ,pdata 
+:      017940 send_lmp_exit:
+0x61d4 017941 store 1 ,mem_lmo_header_opcode 
+0x61d5 017942 jam 0 ,mem_lmp_to_send 
+0x61d6 017943 call lmo_fifo_process_lmo0empty 
+0x61d7 017944 enable user 
+0x61d8 017945 rtn 
+:      017947 lmo_fifo_process:
+0x61d9 017948 set1 mark_ext_patch ,mark 
+0x61da 017949 bpatch patch3c_4 ,mem_patch3c 
+0x61db 017950 fetch 1 ,mem_lmp_to_send 
+0x61dc 017951 branch lmo_fifo_process_lmo0empty ,blank 
+0x61dd 017952 fetch 1 ,mem_lmo_opcode1 
+0x61de 017953 nrtn blank 
+0x61df 017954 branch lmo_fifo_process_lmo2to1 
+:      017955 lmo_fifo_process_lmo0empty:
+0x61e0 017956 fetch 1 ,mem_lmo_opcode1 
+0x61e1 017957 branch lmo_fifo_process_lmo1_empty ,blank 
+0x61e2 017958 fetch 3 ,mem_lmo_opcode1 
+0x61e3 017959 store 3 ,mem_lmp_to_send 
+0x61e4 017960 fetcht 1 ,mem_lmo_tid1 
+0x61e5 017961 fetch 1 ,mem_state_map 
+0x61e6 017962 set0 smap_lmptid ,pdata 
+0x61e7 017963 ior temp ,pdata 
+0x61e8 017964 store 1 ,mem_state_map 
+0x61e9 017965 jam 0 ,mem_lmo_opcode1 
+:      017966 lmo_fifo_process_lmo2to1:
+0x61ea 017967 fetch 1 ,mem_lmo_opcode2 
+0x61eb 017968 rtn blank 
+0x61ec 017969 fetch 4 ,mem_lmo_opcode2 
+0x61ed 017970 store 4 ,mem_lmo_opcode1 
+0x61ee 017971 jam 0 ,mem_lmo_opcode2 
+0x61ef 017972 rtn 
+:      017973 lmo_fifo_process_lmo1_empty:
+0x61f0 017974 fetch 1 ,mem_lmo_opcode2 
+0x61f1 017975 rtn blank 
+0x61f2 017976 fetch 3 ,mem_lmo_opcode2 
+0x61f3 017977 store 3 ,mem_lmp_to_send 
+0x61f4 017978 fetcht 1 ,mem_lmo_tid2 
+0x61f5 017979 fetch 1 ,mem_state_map 
+0x61f6 017980 set0 smap_lmptid ,pdata 
+0x61f7 017981 ior temp ,pdata 
+0x61f8 017982 store 1 ,mem_state_map 
+0x61f9 017983 jam 0 ,mem_lmo_opcode2 
+0x61fa 017984 rtn 
+:      017987 special_tid_store:
+0x61fb 017988 set1 mark_ext_patch ,mark 
+0x61fc 017989 bpatch patch3c_5 ,mem_patch3c 
+0x61fd 017990 fetch 1 ,mem_state_map 
+0x61fe 017991 copy pdata ,regc 
+0x61ff 017992 ifetch 1 ,temp 
+0x6200 017993 call pop_tid_follow 
+0x6201 017994 call send_lmp_follow 
+0x6202 017995 copy regc ,pdata 
+0x6203 017996 store 1 ,mem_state_map 
+0x6204 017997 rtn 
+:      017999 tid_reply:
+0x6205 018000 fetcht 1 ,mem_state_map 
+0x6206 018001 set0 smap_lmptidinit ,temp 
+0x6207 018002 storet 1 ,mem_state_map 
+0x6208 018003 rtn 
+:      018005 tid_initiate:
+0x6209 018006 fetcht 1 ,mem_state_map 
+0x620a 018007 set1 smap_lmptidinit ,temp 
+0x620b 018008 storet 1 ,mem_state_map 
+0x620c 018009 rtn 
+:      018012 tid_check:
+0x620d 018013 nsetflag master ,smap_lmptid ,pdata 
+0x620e 018014 fetcht 1 ,mem_state_map 
+0x620f 018015 ixor temp ,pdata 
+0x6210 018016 isolate1 smap_lmptid ,pdata 
+0x6211 018017 rtn 
+:      018020 tid_set_reply:
+0x6212 018021 fetch 1 ,mem_state_map 
+0x6213 018022 setflag master ,smap_lmptid ,pdata 
+0x6214 018023 store 1 ,mem_state_map 
+0x6215 018024 rtn 
+:      018027 check_localsm:
+0x6216 018028 fetch 1 ,mem_sp_localsm 
+0x6217 018029 compare local_statemachine ,pdata ,0x7f 
+0x6218 018030 rtn 
+:      018031 setlocalsm_master:
+0x6219 018032 fetch 1 ,mem_sp_localsm 
+0x621a 018033 set1 7 ,pdata 
+0x621b 018034 store 1 ,mem_sp_localsm 
+0x621c 018035 rtn 
+:      018036 setlocalsm_slave:
+0x621d 018037 fetch 1 ,mem_sp_localsm 
+0x621e 018038 set0 7 ,pdata 
+0x621f 018039 store 1 ,mem_sp_localsm 
+0x6220 018040 rtn 
+:      018041 check_localsm_master:
+0x6221 018042 fetch 1 ,mem_sp_localsm 
+0x6222 018043 isolate1 7 ,pdata 
+0x6223 018044 store 1 ,mem_sp_localsm 
+0x6224 018045 rtn 
+:      018047 generate_random_number:
+0x6225 018049 arg mem_random_number ,contw 
+:      018050 generate_random:
+0x6226 018051 force 16 ,loopcnt 
+:      018052 generate_random_another:
+:      018053 generate_random_loop:
+0x6227 018054 random pdata 
+0x6228 018055 istore 1 ,contw 
+0x6229 018056 loop generate_random_another 
+0x622a 018057 rtn 
+:      018059 generate_linkkey:
+0x622b 018060 call function_e21 
+0x622c 018061 arg mem_link_key ,rega 
+0x622d 018062 arg mem_input_store ,regb 
+0x622e 018063 ifetch 8 ,rega 
+0x622f 018064 fetcht 1 ,mem_state 
+0x6230 018065 nsetflag blank ,state_combkey ,temp 
+0x6231 018066 storet 1 ,mem_state 
+0x6232 018067 copy rega ,contw 
+0x6233 018068 call xor16 
+0x6234 018069 branch generate_linkkey_continue 
+:      018075 process_conn_sm:
+0x6235 018077 set1 mark_ext_patch ,mark 
+0x6236 018078 bpatch patch3c_6 ,mem_patch3c 
+0x6237 018079 fetch 1 ,mem_lmo_opcode2 
+0x6238 018080 branch process_conn_sm_continue ,blank 
+0x6239 018081 call lmo_fifo_process 
+0x623a 018082 fetch 1 ,mem_lmo_opcode2 
+0x623b 018083 nrtn blank 
+:      018084 process_conn_sm_continue:
+0x623c 018085 fetch 1 ,mem_conn_sm 
+0x623d 018086 rtn blank 
+0x623e 018090 beq conn_sm_send_conn_req ,host_create_conn_send_conn_req 
+0x623f 018091 beq conn_sm_wait_conn_accept ,host_create_conn_wait_accept 
+0x6240 018092 beq conn_sm_send_features ,host_create_conn_send_features 
+0x6241 018093 beq conn_sm_wait_features_res ,host_create_conn_waiting 
+0x6242 018094 beq conn_sm_send_switch ,host_create_conn_send_switch 
+0x6243 018095 beq conn_sm_auth_pair ,host_create_conn_auth_pair 
+0x6244 018096 beq conn_sm_auth_pair_wait ,host_create_conn_auth_pair_wait 
+0x6245 018097 beq conn_sm_encrypt ,host_create_conn_encrypt 
+0x6246 018098 beq conn_sm_encrypt_wait ,host_create_conn_encrypt_wait 
+0x6247 018099 beq conn_sm_encrypt_wait_clear ,host_create_conn_encrypt_wait_clear 
+0x6248 018100 beq conn_sm_send_setup_complete ,host_create_conn_send_setup_complete 
+0x6249 018101 beq conn_sm_wait_setup_complete ,host_create_conn_wait_setup_complete 
+0x624a 018102 beq conn_sm_detach_delay ,host_create_conn_master_detach 
+0x624b 018103 beq conn_sm_send_version ,host_create_conn_send_version 
+0x624c 018104 beq conn_sm_wait_version ,host_create_conn_waiting 
+0x624d 018105 beq conn_sm_wait_switch_after_host_connection ,host_creat_conn_wait_switch 
+0x624e 018106 beq conn_sm_send_features_ext ,host_creat_conn_send_feat_ext 
+0x624f 018107 beq conn_sm_wait_features_ext ,host_create_conn_waiting 
+0x6250 018108 beq conn_sm_pairing ,host_create_conn_pairing 
+0x6251 018109 beq conn_sm_pairing_wait ,host_create_conn_pairing_wait 
+0x6252 018110 beq conn_sm_auth ,host_create_conn_auth 
+0x6253 018111 beq conn_sm_auth_wait ,host_create_conn_auth_wait 
+0x6254 018112 beq conn_sm_done ,host_create_conn_done 
+0x6255 018113 beq conn_sm_wait_done ,host_create_conn_done_wait 
+0x6256 018114 jam conn_sm_standby ,mem_conn_sm 
+0x6257 018116 rtn 
+:      018117 host_create_conn_done:
+0x6258 018118 fetch 1 ,mem_lmp_conn_state 
+0x6259 018119 rtnbit0 received_setup_complete 
+0x625a 018120 rtnbit0 sent_setup_complete 
+0x625b 018121 jam conn_sm_standby ,mem_conn_sm 
+0x625c 018122 call host_conn_judge_encrypt 
+0x625d 018123 branch scheduler_start_upper_sm 
+:      018125 host_conn_judge_encrypt:
+0x625e 018126 fetch 1 ,mem_connection_options 
+0x625f 018127 rtnbit0 connection_encrypt 
+0x6260 018128 jam conn_sm_encrypt_wait ,mem_conn_sm 
+0x6261 018129 rtn 
+:      018131 host_create_conn_done_wait:
+0x6262 018132 arg enpt_delay_timer ,queue 
+0x6263 018133 call timer_check 
+0x6264 018134 nrtn blank 
+0x6265 018135 jam conn_sm_done ,mem_conn_sm 
+0x6266 018136 rtn 
+:      018138 host_create_conn_auth:
+0x6267 018139 fetch 1 ,mem_connection_options 
+0x6268 018140 set0 connection_auth ,pdata 
+0x6269 018141 store 1 ,mem_connection_options 
+0x626a 018142 jam conn_sm_auth_wait ,mem_conn_sm 
+0x626b 018143 jam lmp_au_rand ,mem_lmo_opcode2 
+0x626c 018144 rtn 
+:      018145 host_create_conn_auth_wait:
+0x626d 018146 rtn 
+:      018147 host_create_conn_pairing:
+0x626e 018148 fetch 1 ,mem_pincode_state 
+0x626f 018149 rtnne pincode_state_pincode_ready 
+0x6270 018150 call host_auth 
+0x6271 018151 jam conn_sm_pairing_wait ,mem_conn_sm 
+0x6272 018152 rtn 
+:      018154 host_create_conn_pairing_wait:
+0x6273 018155 rtn 
+:      018156 host_creat_conn_send_feat_ext:
+0x6274 018157 jam conn_sm_wait_features_ext ,mem_conn_sm 
+0x6275 018158 jam lmp_ext_features_req ,mem_lmo_opcode2 
+0x6276 018159 rtn 
+:      018160 host_create_conn_send_version:
+0x6277 018161 jam conn_sm_wait_version ,mem_conn_sm 
+0x6278 018162 jam lmp_version_req ,mem_lmo_opcode2 
+0x6279 018163 rtn 
+:      018165 host_creat_conn_wait_switch:
+0x627a 018166 fetch 1 ,mem_switch_flag 
+0x627b 018167 rtneq switch_flag_init 
+0x627c 018168 beq switch_flag_accept ,host_create_conn_switch_accept 
+0x627d 018169 arg switch_wait_timer ,queue 
+0x627e 018170 call timer_check 
+0x627f 018171 nrtn blank 
+0x6280 018172 jam switch_flag_init ,mem_switch_flag 
+0x6281 018173 branch host_create_conn_switch 
+:      018174 host_create_conn_switch_accept:
+0x6282 018175 rtn master 
+0x6283 018176 branch host_create_conn_auth_pair 
+:      018178 host_create_conn_send_features:
+0x6284 018179 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x6285 018180 jam lmp_features_req ,mem_lmo_opcode2 
+0x6286 018181 rtn 
+:      018182 host_create_conn_send_switch:
+0x6287 018183 jam lmp_switch_req ,mem_lmo_opcode2 
+0x6288 018184 set1 mark_switch_initiated ,mark 
+0x6289 018185 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x628a 018186 setarg 0x1ff 
+0x628b 018187 store 2 ,mem_soft_timer 
+0x628c 018188 rtn 
+:      018189 host_create_conn_send_conn_req:
+0x628d 018190 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x628e 018191 jam 0xff ,mem_soft_timer 
+0x628f 018192 set0 mark_reconn_recieve_switch ,mark 
+0x6290 018193 jam lmp_host_connection_req ,mem_lmo_opcode2 
+0x6291 018194 branch init_lmp_reinit 
+:      018195 host_create_conn_wait_accept:
+0x6292 018196 rtnmark1 mark_reconn_recieve_switch 
+0x6293 018197 fetch 2 ,mem_soft_timer 
+0x6294 018198 sub pdata ,1 ,pdata 
+0x6295 018199 branch host_create_conn_resend ,zero 
+0x6296 018200 store 2 ,mem_soft_timer 
+0x6297 018201 rtn 
+:      018202 host_create_conn_resend:
+0x6298 018203 jam conn_sm_send_switch ,mem_conn_sm 
+0x6299 018204 rtn 
+:      018205 host_create_conn_waiting:
+0x629a 018207 rtn 
+:      018209 host_create_conn_switch:
+0x629b 018210 fetch 1 ,mem_lmp_conn_state 
+0x629c 018211 rtnbit0 sent_setup_complete 
+0x629d 018212 rtnbit0 received_setup_complete 
+0x629e 018213 fetch 1 ,mem_connection_options 
+0x629f 018214 set0 connection_switch ,pdata 
+0x62a0 018215 store 1 ,mem_connection_options 
+0x62a1 018216 jam lmp_switch_req ,mem_lmo_opcode2 
+0x62a2 018217 jam conn_sm_wait_switch_after_host_connection ,mem_conn_sm 
+0x62a3 018218 rtn 
+:      018220 host_create_conn_send_setup_complete:
+0x62a4 018221 jam conn_sm_wait_setup_complete ,mem_conn_sm 
+0x62a5 018222 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x62a6 018223 rtn 
+:      018225 host_create_conn_wait_setup_complete:
+0x62a7 018226 fetch 1 ,mem_lmp_conn_state 
+0x62a8 018227 rtnbit0 received_setup_complete 
+0x62a9 018228 jam conn_sm_standby ,mem_conn_sm 
+0x62aa 018230 rtn 
+:      018231 host_create_conn_wait_setup_complete_rtn:
+0x62ab 018232 jam conn_sm_auth_pair ,mem_conn_sm 
+0x62ac 018233 rtn 
+:      018235 host_create_conn_master_detach:
+0x62ad 018236 fetch 1 ,mem_soft_timer 
+0x62ae 018237 increase -1 ,pdata 
+0x62af 018238 branch host_create_conn_send_detach ,blank 
+0x62b0 018239 store 1 ,mem_soft_timer 
+0x62b1 018240 rtn 
+:      018241 host_create_conn_send_detach:
+0x62b2 018242 jam lmp_detach ,mem_lmo_opcode2 
+0x62b3 018243 jam local_host ,mem_disconn_reason_send 
+0x62b4 018244 jam 0 ,mem_conn_sm 
+0x62b5 018245 rtn 
+:      018246 host_create_conn_auth_pair:
+0x62b6 018248 fetch 1 ,mem_connection_options 
+0x62b7 018249 bbit1 connection_switch ,host_create_conn_switch 
+0x62b8 018250 bbit1 connection_auth ,host_create_conn_auth_pair_true 
+:      018251 host_create_conn_sm_done:
+0x62b9 018252 jam conn_sm_done ,mem_conn_sm 
+0x62ba 018253 rtn 
+:      018254 host_create_conn_auth_pair_true:
+0x62bb 018255 fetch 1 ,mem_link_key_exists 
+0x62bc 018256 branch host_create_conn_auth_pair_nokey ,blank 
+0x62bd 018257 fetch 1 ,mem_lmp_conn_state 
+0x62be 018258 rtnbit0 sent_setup_complete 
+0x62bf 018259 rtnbit0 received_setup_complete 
+0x62c0 018260 fetch 4 ,mem_aurand_send_delay_time 
+0x62c1 018261 arg 100 ,temp 
+0x62c2 018262 iadd temp ,temp 
+0x62c3 018263 copy clkn_bt ,pdata 
+0x62c4 018264 isub temp ,null 
+0x62c5 018265 nrtn positive 
+0x62c6 018266 branch host_create_conn_auth 
+:      018270 host_create_conn_auth_pair_nokey:
+0x62c7 018271 jam conn_sm_pairing ,mem_conn_sm 
+0x62c8 018272 jam 4 ,mem_pin_length 
+0x62c9 018273 setarg 0x3030 
+0x62ca 018274 store 2 ,mem_pin 
+0x62cb 018275 istore 2 ,contw 
+0x62cc 018276 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x62cd 018277 branch host_create_conn_pairing 
+:      018279 host_create_conn_auth_pair_wait:
+0x62ce 018280 rtn 
+:      018281 host_create_conn_encrypt:
+0x62cf 018282 fetch 1 ,mem_connection_options 
+0x62d0 018283 bbit1 connection_encrypt ,host_create_conn_encrypt_start 
+0x62d1 018284 jam conn_sm_done ,mem_conn_sm 
+0x62d2 018285 rtn 
+:      018287 host_create_conn_encrypt_start:
+0x62d3 018288 fetch 1 ,mem_connection_options 
+0x62d4 018289 set0 connection_encrypt ,pdata 
+0x62d5 018290 store 1 ,mem_connection_options 
+0x62d6 018291 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x62d7 018292 rtn 
+:      018294 host_create_conn_encrypt_wait:
+0x62d8 018295 fetch 1 ,mem_wait_encryption 
+0x62d9 018296 rtn blank 
+0x62da 018297 jam conn_sm_standby ,mem_conn_sm 
+0x62db 018298 branch host_create_conn_encrypt_start 
+:      018300 host_create_conn_encrypt_wait_clear:
+0x62dc 018301 jam conn_sm_send_setup_complete ,mem_conn_sm 
+0x62dd 018302 rtn 
+:      018304 host_auth:
+0x62de 018305 fetch 1 ,mem_op 
+0x62df 018306 bbit1 op_inrand_req ,remote_auth 
+0x62e0 018307 call tid_initiate 
+0x62e1 018308 jam lmp_in_rand ,mem_lmo_opcode2 
+0x62e2 018309 branch cmd_exit 
+:      018310 remote_auth:
+0x62e3 018311 fetch 1 ,mem_op 
+0x62e4 018312 set0 op_inrand_req ,pdata 
+0x62e5 018313 store 1 ,mem_op 
+0x62e6 018314 call lmp_accept_inrand 
+0x62e7 018315 call tid_set_reply 
+0x62e8 018316 branch cmd_exit 
+:      018318 pincode_reinit:
+0x62e9 018319 setarg 4 
+0x62ea 018320 store 1 ,mem_pin_length 
+0x62eb 018321 setarg 0x3030 
+0x62ec 018322 istore 2 ,contw 
+0x62ed 018323 istore 2 ,contw 
+0x62ee 018324 rtn 
+:      018332 module_init:
+0x62ef 018333 rtn wake 
+0x62f0 018334 jam 0 ,mem_module_task 
+0x62f1 018335 call module_gpio_init 
+0x62f2 018336 call module_init_static_string 
+0x62f3 018337 setarg module_process_idle 
+0x62f4 018338 store 2 ,mem_cb_idle_process 
+0x62f5 018339 setarg module_conn_process 
+0x62f6 018340 store 2 ,mem_cb_bt_process 
+0x62f7 018341 setarg module_process_bb_event 
+0x62f8 018342 store 2 ,mem_cb_bb_event_process 
+0x62f9 018343 setarg module_le_rx 
+0x62fa 018344 store 2 ,mem_cb_att_write 
+0x62fb 018345 setarg module_conn_process 
+0x62fc 018346 store 2 ,mem_cb_le_process 
+0x62fd 018347 set1 mark_ext_patch ,mark 
+0x62fe 018348 bpatch patch30_0 ,mem_patch30 
+0x62ff 018349 setarg module_lpm_lock 
+0x6300 018350 store 2 ,mem_cb_check_wakelock 
+0x6301 018351 setarg module_le_tx_update_data 
+0x6302 018352 store 2 ,mem_cb_update_notify_value 
+0x6303 018353 setarg 0 
+0x6304 018354 store 4 ,mem_last_uart_clock 
+0x6305 018355 store 2 ,mem_module_prepare_tx_len 
+0x6306 018356 call module_hardware_init 
+0x6307 018357 call init_module_environment 
+0x6308 018358 call check_module_disabled 
+0x6309 018359 branch eeprom_load_reconn_info 
+:      018361 module_hardware_init:
+0x630a 018362 rtn wake 
+0x630b 018363 setarg uart_baud_115200 
+0x630c 018364 store uart_baud_len ,mem_baud 
+:      018365 module_lpm_uart_init:
+0x630d 018366 call init_filter_ram 
+0x630e 018367 setarg mem_module_rx_buf 
+0x630f 018368 hstore 2 ,core_uart_rsaddr 
+0x6310 018369 setarg mem_module_rx_buf_end 
+0x6311 018370 hstore 2 ,core_uart_readdr 
+0x6312 018371 setarg mem_module_tx_buf 
+0x6313 018372 hstore 2 ,core_uart_tsaddr 
+0x6314 018373 setarg mem_module_tx_buf_end 
+0x6315 018374 hstore 2 ,core_uart_teaddr 
+0x6316 018375 hjam 0x4 ,core_gpio_sel1 
+0x6317 018376 jam 0xff ,mem_ucode_id_local 
+0x6318 018377 hjam 0x0 ,core_uart_ctrl 
+0x6319 018378 setarg mem_module_tx_buf 
+0x631a 018379 hstore 2 ,core_uart_twptr 
+0x631b 018380 hstore 2 ,core_uart_trptrp 
+0x631c 018381 setarg mem_module_rx_buf 
+0x631d 018382 hstore 2 ,core_uart_rrptr 
+0x631e 018383 branch hci_init_common 
+:      018386 module_lpm_init:
+0x631f 018387 call module_lpm_uart_init 
+0x6320 018388 branch module_gpio_init 
+:      018390 module_gpio_init:
+0x6321 018392 call ui_led_init 
+0x6322 018393 call app_led_start_blink 
+0x6323 018395 fetcht 1 ,mem_module_connect_state_gpio 
+0x6324 018396 call gpio_config_output 
+0x6325 018397 call module_set_conn_pin_low 
+0x6326 018399 fetcht 1 ,mem_module_wake_up_gpio 
+0x6327 018400 call gpio_config_input 
+0x6328 018401 fetcht 1 ,mem_at_gpio 
+0x6329 018402 branch gpio_config_input_without_wake 
+:      018404 module_lpm_lock:
+0x632a 018405 fetcht 1 ,mem_module_wake_up_gpio 
+0x632b 018406 call gpio_get_bit 
+0x632c 018407 nbranch app_put_lpm_wake_lock ,true 
+0x632d 018408 branch app_get_lpm_wake_lock 
+:      018412 module_process_idle:
+0x632e 018413 branch module_app_dispatch 
+:      018414 module_conn_process:
+0x632f 018415 branch module_app_dispatch 
+:      018416 module_app_dispatch:
+0x6330 018417 set1 mark_ext_patch ,mark 
+0x6331 018418 bpatch patch30_1 ,mem_patch30 
+0x6332 018419 call module_control_air_flow 
+0x6333 018420 call module_uart_set 
+0x6334 018421 call l2cap_malloc_is_fifo_full 
+0x6335 018422 nrtn blank 
+0x6336 018423 branch module_process 
+:      018424 module_process_bb_event:
+0x6337 018425 copy regc ,pdata 
+0x6338 018426 beq bt_evt_pincode_req ,module_process_evt_pincode_req 
+0x6339 018427 beq bt_evt_reconn_failed ,module_reconn_fail 
+0x633a 018428 beq bt_evt_reconn_page_timeout ,module_page_time_out 
+0x633b 018429 beq bt_evt_bb_disconnected ,module_process_bb_event_disconned 
+0x633c 018430 beq bt_evt_switch_not_accept ,module_process_switch_not_accept 
+0x633d 018431 beq bt_evt_switch_accept ,module_process_switch_accept 
+0x633e 018432 beq bt_evt_sniff_accept ,module_process_sniff_accept 
+0x633f 018433 beq bt_evt_sniff_not_accept ,module_process_sniff_not_accept 
+0x6340 018434 beq bt_evt_unsniff_accept ,module_process_unsniff_accept 
+0x6341 018435 beq bt_evt_unsniff_not_accept ,module_process_unsniff_not_accept 
+0x6342 018436 beq bt_evt_le_connected ,module_process_le_conn 
+0x6343 018437 beq bt_evt_bb_connected ,module_process_bb_conn 
+0x6344 018438 beq bt_evt_le_disconnected ,module_process_bb_even_le_disconn 
+0x6345 018439 beq bt_evt_setup_complete ,module_process_setup_complete 
+0x6346 018440 beq bt_evt_enter_sniff ,module_sniff_param_check 
+0x6347 018441 beq bt_evt_exit_sniff ,app_lpm_mult_disable 
+0x6348 018442 and pdata ,0x0f ,temp 
+0x6349 018443 and_into bt_evt_timer_mask ,pdata 
+0x634a 018444 beq bt_evt_timer_init ,module_bb_event_timer 
+0x634b 018445 rtn 
+:      018447 module_process_bb_event_disconned:
+0x634c 018448 call module_disconn_start 
+0x634d 018449 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x634e 018450 rtnbit0 app_disc_after_setup_done 
+0x634f 018451 arg 3 ,loopcnt 
+0x6350 018452 arg mem_prarm_dis ,contr 
+0x6351 018453 branch send_mem_to_uart 
+:      018455 module_sniff_param_check:
+0x6352 018458 fetch 2 ,mem_context + coffset_tsniff 
+0x6353 018459 rshift pdata ,pdata 
+0x6354 018460 fetcht 2 ,mem_sniff_param_interval 
+0x6355 018461 isub temp ,null 
+0x6356 018462 nbranch module_sniff_param_check_unsniff ,zero 
+0x6357 018463 branch app_lpm_mult_enable 
+:      018464 module_sniff_param_check_unsniff:
+0x6358 018465 fetch 1 ,mem_module_task 
+0x6359 018466 rtnbit1 at_task_unsinff 
+0x635a 018467 hfetch 2 ,core_uart_rxitems 
+0x635b 018468 ncall at_set_unsniff_task_flag ,blank 
+0x635c 018469 branch app_bt_sniff_exit 
+:      018471 module_process_setup_complete:
+0x635d 018472 call module_conn_start 
+0x635e 018473 call module_check_cmode 
+0x635f 018474 branch module_uart_send_conn ,zero 
+0x6360 018475 branch app_bt_disconnect 
+:      018476 module_uart_send_conn:
+0x6361 018477 arg 4 ,loopcnt 
+0x6362 018478 arg mem_prarm_conn ,contr 
+0x6363 018479 branch send_mem_to_uart 
+:      018481 module_process_bb_even_le_disconn:
+0x6364 018482 call module_disconn_start 
+0x6365 018483 arg 5 ,loopcnt 
+0x6366 018484 arg mem_prarm_bledis ,contr 
+0x6367 018485 branch send_mem_to_uart 
+:      018487 module_process_evt_pincode_req:
+0x6368 018488 call at_restore_pin_code 
+0x6369 018489 branch app_bt_set_pincode 
+:      018490 module_process_switch_not_accept:
+0x636a 018491 fetch 1 ,mem_module_task 
+0x636b 018492 rtnbit0 at_task_switch 
+0x636c 018493 set0 at_task_switch ,pdata 
+0x636d 018494 store 1 ,mem_module_task 
+0x636e 018495 branch at_error_rev_end 
+:      018497 module_process_switch_accept:
+0x636f 018498 fetch 1 ,mem_module_task 
+0x6370 018499 rtnbit0 at_task_switch 
+0x6371 018500 set0 at_task_switch ,pdata 
+0x6372 018501 store 1 ,mem_module_task 
+0x6373 018502 branch at_nomal_rev_end 
+:      018504 module_process_sniff_accept:
+0x6374 018505 rtn 
+:      018507 module_process_sniff_not_accept:
+0x6375 018508 rtn 
+:      018510 module_process_unsniff_accept:
+0x6376 018511 fetch 1 ,mem_module_task 
+0x6377 018512 bbit0 at_task_unsinff ,app_bt_enter_sniff 
+0x6378 018513 branch at_clear_unsniff_task_flag 
+:      018515 module_process_unsniff_not_accept:
+0x6379 018516 rtn 
+:      018518 module_process_le_conn:
+0x637a 018519 call module_conn_start 
+0x637b 018520 arg mem_le_plap ,regb 
+0x637c 018521 call module_check_cmode 
+0x637d 018522 branch module_uart_send_leconn ,zero 
+0x637e 018523 branch app_ble_disconnect 
+:      018524 module_uart_send_leconn:
+0x637f 018525 arg 6 ,loopcnt 
+0x6380 018526 arg mem_prarm_bleconn ,contr 
+0x6381 018527 branch send_mem_to_uart 
+:      018529 module_process_bb_conn:
+0x6382 018530 rtn 
+:      018533 module_reconn_fail:
+0x6383 018534 arg 7 ,loopcnt 
+0x6384 018535 arg mem_prarm_recfail ,contr 
+0x6385 018536 call send_mem_to_uart 
+0x6386 018537 branch module_disconn_start 
+:      018538 module_page_time_out:
+0x6387 018539 arg 7 ,loopcnt 
+0x6388 018540 arg mem_prarm_pageout ,contr 
+0x6389 018541 call send_mem_to_uart 
+:      018542 module_disconn_start:
+0x638a 018543 call module_start_adv_discovery 
+0x638b 018544 branch module_set_conn_pin_high 
+:      018546 module_start_adv_discovery:
+0x638c 018547 fetch 1 ,mem_module_state 
+0x638d 018548 isolate1 at_state_set30 ,pdata 
+0x638e 018549 call app_bt_start_discovery ,true 
+0x638f 018550 fetch 1 ,mem_module_state 
+0x6390 018551 isolate1 at_state_set40 ,pdata 
+0x6391 018552 call app_ble_start_adv ,true 
+0x6392 018553 rtn 
+:      018554 module_set_conn_pin_high:
+0x6393 018555 fetcht 1 ,mem_module_connect_state_gpio 
+0x6394 018556 branch gpio_out_active 
+:      018558 module_conn_start:
+0x6395 018559 call module_stop_adv_discovery 
+0x6396 018560 branch module_set_conn_pin_low 
+:      018562 module_stop_adv_discovery:
+0x6397 018563 fetch 1 ,mem_module_state 
+0x6398 018564 isolate1 at_state_set30 ,pdata 
+0x6399 018565 call app_bt_stop_discovery ,true 
+0x639a 018566 fetch 1 ,mem_module_state 
+0x639b 018567 isolate1 at_state_set40 ,pdata 
+0x639c 018568 call app_ble_stop_adv ,true 
+0x639d 018569 rtn 
+:      018570 module_set_conn_pin_low:
+0x639e 018571 fetcht 1 ,mem_module_connect_state_gpio 
+0x639f 018572 branch gpio_out_inactive 
+:      018577 module_process:
+0x63a0 018578 fetch 1 ,mem_device_option 
+0x63a1 018579 rtnne dvc_op_module 
+0x63a2 018580 hfetch 2 ,core_uart_rxitems 
+0x63a3 018581 rtn blank 
+0x63a4 018582 store 2 ,mem_current_packet_length 
+0x63a5 018584 call spp_mode 
+0x63a6 018585 branch at_process ,true 
+0x63a7 018586 call at_ckeck_send_buff 
+0x63a8 018587 branch module_tx_packet 
+:      018590 spp_mode:
+0x63a9 018591 fetcht 1 ,mem_at_gpio 
+0x63aa 018592 branch gpio_get_bit 
+:      018595 module_exit_sniff:
+0x63ab 018596 fetch 1 ,mem_module_task 
+0x63ac 018597 rtnbit1 at_task_unsinff 
+0x63ad 018598 call at_set_unsniff_task_flag 
+0x63ae 018599 branch app_bt_sniff_exit 
+:      018601 module_tx_packet:
+0x63af 018602 fetch 1 ,mem_context 
+0x63b0 018603 bbit0 state_inconn ,spp_send_end 
+0x63b1 018604 fetch 1 ,mem_context + coffset_mode 
+0x63b2 018605 bbit1 mode_le ,modle_le_tx 
+0x63b3 018606 call app_check_sniff 
+0x63b4 018607 branch module_exit_sniff ,true 
+0x63b5 018608 branch spp_tx_rfcomm_packet 
+:      018610 module_le_rx:
+0x63b6 018611 call le_att_get_handle_ptr 
+0x63b7 018612 ifetch 1 ,contr 
+0x63b8 018613 copy contr ,rega 
+0x63b9 018614 call get_uart_twptr 
+0x63ba 018615 copy regb ,loopcnt 
+0x63bb 018616 copy rega ,contr 
+0x63bc 018617 call uart_copy_tx_bytes 
+0x63bd 018618 branch uartd_send 
+:      018621 module_le_tx_update_data:
+0x63be 018623 fetch 2 ,mem_module_prepare_tx_len 
+0x63bf 018624 rtn blank 
+0x63c0 018625 arg dm_le_buff_len ,temp 
+0x63c1 018626 call not_greater_than 
+0x63c2 018627 store 2 ,mem_module_temp_len 
+0x63c3 018629 copy pdata ,temp 
+0x63c4 018630 fetch 2 ,mem_module_prepare_tx_len 
+0x63c5 018631 isub temp ,pdata 
+0x63c6 018632 store 2 ,mem_module_prepare_tx_len 
+0x63c7 018633 nbranch assert ,positive 
+0x63c8 018635 arg prcp_tx_le ,temp 
+0x63c9 018636 storet 2 ,mem_le_notify_handle 
+0x63ca 018637 call le_att_get_handle_ptr 
+0x63cb 018638 branch assert ,blank 
+0x63cc 018639 add contr ,1 ,contw 
+0x63cd 018641 fetch 2 ,mem_module_temp_len 
+0x63ce 018642 copy pdata ,loopcnt 
+0x63cf 018644 call get_uart_rrptr 
+0x63d0 018646 call uart_copy_rx_bytes 
+0x63d1 018648 fetch 2 ,mem_module_temp_len 
+0x63d2 018649 store 2 ,mem_current_packet_length 
+0x63d3 018650 store 2 ,mem_le_notify_len 
+0x63d4 018651 branch spp_send_end 
+:      018654 modle_le_tx:
+0x63d5 018655 rtnmark0 mark_context 
+0x63d6 018656 call modle_le_tx_once 
+0x63d7 018657 call modle_le_tx_once 
+:      018658 modle_le_tx_once:
+0x63d8 018659 call le_xtype_fifo_is_near_full 
+0x63d9 018660 nrtn blank 
+0x63da 018661 hfetch 2 ,core_uart_rxitems 
+0x63db 018662 rtn blank 
+0x63dc 018663 fetcht 2 ,mem_module_prepare_tx_len 
+0x63dd 018664 isub temp ,pdata 
+0x63de 018665 nbranch assert ,positive 
+0x63df 018666 store 2 ,mem_current_packet_length 
+0x63e0 018667 rtn blank 
+0x63e1 018668 call at_ckeck_send_buff_le 
+0x63e2 018669 fetch 2 ,mem_module_prepare_tx_len 
+0x63e3 018670 fetcht 2 ,mem_current_packet_length 
+0x63e4 018671 iadd temp ,pdata 
+0x63e5 018672 store 2 ,mem_module_prepare_tx_len 
+0x63e6 018673 fetcht 2 ,mem_module_prepare_tx_len 
+0x63e7 018674 hfetch 2 ,core_uart_rxitems 
+0x63e8 018675 isub temp ,rega 
+0x63e9 018676 nbranch assert ,positive 
+0x63ea 018677 jam attop_handle_value_notification ,mem_fifo_temp 
+0x63eb 018678 branch le_xtype_fifo_in 
+:      018680 module_bb_event_timer:
+0x63ec 018681 storet 1 ,mem_app_evt_timer_count 
+:      018682 module_bb_event_100ms_loop:
+0x63ed 018683 fetch 1 ,mem_app_evt_timer_count 
+0x63ee 018684 rtn blank 
+0x63ef 018685 increase -1 ,pdata 
+0x63f0 018686 store 1 ,mem_app_evt_timer_count 
+0x63f1 018687 call module_bb_event_hud_ms 
+0x63f2 018688 branch module_bb_event_100ms_loop 
+:      018690 module_bb_event_hud_ms:
+0x63f3 018691 fetch 2 ,mem_at_scan_time 
+0x63f4 018692 rtn blank 
+0x63f5 018693 increase -1 ,pdata 
+0x63f6 018694 store 2 ,mem_at_scan_time 
+0x63f7 018695 nrtn blank 
+0x63f8 018696 fetch 1 ,mem_at_using_flag 
+0x63f9 018697 jam 0 ,mem_at_using_flag 
+0x63fa 018698 bbit1 at_flag_leinq ,modue_le_inq 
+0x63fb 018699 bbit1 at_flag_inq ,module_inq 
+0x63fc 018700 branch assert 
+:      018701 modue_le_inq:
+0x63fd 018702 branch app_ble_stop_scan 
+:      018703 module_inq:
+0x63fe 018704 jam hci_cmd_inquiry_cancel ,mem_hci_cmd 
+0x63ff 018705 rtn 
+:      018707 at_ckeck_send_buff:
+0x6400 018708 fetch 1 ,mem_context + coffset_mode 
+0x6401 018709 bbit1 mode_le ,at_ckeck_send_buff_le 
+0x6402 018710 fetch 2 ,mem_current_packet_length 
+0x6403 018711 arg dm_refcom_buff_len ,temp 
+0x6404 018713 call not_greater_than 
+0x6405 018714 store 2 ,mem_current_packet_length 
+0x6406 018715 rtn 
+:      018716 at_ckeck_send_buff_le:
+0x6407 018717 fetch 2 ,mem_current_packet_length 
+0x6408 018718 arg dm_le_buff_len ,temp 
+0x6409 018719 call not_greater_than 
+0x640a 018720 store 2 ,mem_current_packet_length 
+0x640b 018721 rtn 
+:      018723 at_set_unsniff_task_flag:
+0x640c 018724 fetch 1 ,mem_module_task 
+0x640d 018725 set1 at_task_unsinff ,pdata 
+0x640e 018726 store 1 ,mem_module_task 
+0x640f 018727 rtn 
+:      018729 at_clear_unsniff_task_flag:
+0x6410 018730 fetch 1 ,mem_module_task 
+0x6411 018731 set0 at_task_unsinff ,pdata 
+0x6412 018732 store 1 ,mem_module_task 
+0x6413 018733 rtn 
+:      018735 at_set_cmd_task_flag:
+0x6414 018736 fetch 1 ,mem_module_task 
+0x6415 018737 set1 at_task_cmd_flag ,pdata 
+0x6416 018738 store 1 ,mem_module_task 
+0x6417 018739 rtn 
+:      018741 at_clear_cmd_task_flag:
+0x6418 018742 fetch 1 ,mem_module_task 
+0x6419 018743 set0 at_task_cmd_flag ,pdata 
+0x641a 018744 store 1 ,mem_module_task 
+0x641b 018745 rtn 
+:      018747 module_control_air_flow:
+0x641c 018748 set1 mark_ext_patch ,mark 
+0x641d 018749 bpatch patch30_2 ,mem_patch30 
+0x641e 018750 call check_uart_tx_buff 
+0x641f 018751 branch app_l2cap_flow_control_enable ,positive 
+0x6420 018752 branch app_l2cap_flow_control_disable 
+:      018754 module_uart_set:
+0x6421 018755 call spp_mode 
+0x6422 018756 branch module_set_baud_115200 ,true 
+0x6423 018757 hfetcht uart_baud_len ,core_uart_baud 
+0x6424 018758 fetch 2 ,mem_baud 
+0x6425 018759 isub temp ,null 
+0x6426 018760 rtn zero 
+0x6427 018761 branch uart_set_baud_by_mem 
+:      018764 module_set_baud_115200:
+0x6428 018765 hfetcht uart_baud_len ,core_uart_baud 
+0x6429 018766 setarg at_baud_115200 
+0x642a 018767 isub temp ,null 
+0x642b 018768 rtn zero 
+0x642c 018769 hstore uart_baud_len ,core_uart_baud 
+0x642d 018770 rtn 
+:      018772 module_check_cmode:
+0x642e 018773 set1 mark_ext_patch ,mark 
+0x642f 018774 bpatch patch30_3 ,mem_patch30 
+0x6430 018775 fetch 1 ,mem_module_state 
+0x6431 018776 isolate0 at_state_cmode ,pdata 
+0x6432 018777 branch module_check_cmode_close ,true 
+0x6433 018778 arg mem_cmode_addr ,rega 
+0x6434 018779 arg 6 ,loopcnt 
+0x6435 018780 branch string_compare 
+:      018781 module_check_cmode_close:
+0x6436 018782 force 0 ,null 
+0x6437 018783 rtn 
+:      018785 module_init_static_string:
+0x6438 018786 set1 mark_ext_patch ,mark 
+0x6439 018787 bpatch patch30_4 ,mem_patch30 
+0x643a 018788 arg mem_prarm_pswd ,contw 
+0x643b 018789 setsect 0 ,0x35350 
+0x643c 018790 setsect 1 ,0x15115 
+0x643d 018791 setsect 2 ,0x12415 
+0x643e 018792 setsect 3 ,0x10951 
+0x643f 018793 istore 9 ,contw 
+0x6440 018794 setsect 0 ,0x2454c 
+0x6441 018795 setsect 1 ,0x35053 
+0x6442 018796 setsect 2 ,0x2454 
+0x6443 018797 setsect 3 ,0x11531 
+0x6444 018798 istore 9 ,contw 
+0x6445 018799 setsect 0 ,0x34441 
+0x6446 018800 setsect 1 ,0x194d4 
+0x6447 018801 setsect 2 ,0x12455 
+0x6448 018802 setsect 3 ,0x10d4d 
+0x6449 018803 istore 9 ,contw 
+0x644a 018804 setsect 0 ,0x3414c 
+0x644b 018805 setsect 1 ,0xd4d4 
+0x644c 018806 setsect 2 ,0x124c4 
+0x644d 018807 setsect 3 ,0x13119 
+0x644e 018808 istore 9 ,contw 
+0x644f 018809 setsect 0 ,0x15247 
+0x6450 018810 setsect 1 ,0x3d0d1 
+0x6451 018811 setsect 2 ,0xe4e4 
+0x6452 018812 setsect 3 ,0x11531 
+0x6453 018813 istore 9 ,contw 
+0x6454 018814 setsect 0 ,0x34944 
+0x6455 018815 setsect 1 ,0x114d4 
+0x6456 018816 setsect 2 ,0xe535 
+0x6457 018817 setsect 3 ,0x15105 
+0x6458 018818 istore 9 ,contw 
+0x6459 018819 setsect 0 ,0x14c2b 
+0x645a 018820 setsect 1 ,0x114d2 
+0x645b 018821 setsect 2 ,0xf525 
+0x645c 018822 setsect 3 ,0x11531 
+0x645d 018823 istore 9 ,contw 
+0x645e 018824 setsect 0 ,0x14e53 
+0x645f 018825 setsect 1 ,0x19192 
+0x6460 018826 setsect 2 ,0x44c4 
+0x6461 018827 setsect 3 ,0x15915 
+0x6462 018828 istore 9 ,contw 
+0x6463 018829 setsect 0 ,0x35352 
+0x6464 018830 setsect 1 ,0xd254 
+0x6465 018831 setsect 2 ,0x5444 
+0x6466 018832 setsect 3 ,0x10959 
+0x6467 018833 istore 9 ,contw 
+0x6468 018834 setsect 0 ,0x1454c 
+0x6469 018835 setsect 1 ,0x5392 
+0x646a 018836 setsect 2 ,0x3525 
+0x646b 018837 setsect 3 ,0x13d35 
+0x646c 018838 istore 9 ,contw 
+0x646d 018839 setsect 0 ,0x14544 
+0x646e 018840 setsect 1 ,0x113d3 
+0x646f 018841 setsect 2 ,0x4454 
+0x6470 018842 setsect 3 ,0x14d35 
+0x6471 018843 istore 9 ,contw 
+0x6472 018844 setsect 0 ,0x4154 
+0x6473 018845 setsect 1 ,0x11155 
+0x6474 018846 setsect 2 ,0x13494 
+0x6475 018847 setsect 3 ,0x13d0d 
+0x6476 018848 istore 9 ,contw 
+0x6477 018849 setsect 0 ,0x4f56 
+0x6478 018850 setsect 1 ,0x31055 
+0x6479 018851 setsect 2 ,0x3454 
+0x647a 018852 setsect 3 ,0x1393d 
+0x647b 018853 istore 9 ,contw 
+0x647c 018854 setsect 0 ,0x1504e 
+0x647d 018855 setsect 1 ,0x151d0 
+0x647e 018856 setsect 2 ,0x154f4 
+0x647f 018857 setsect 3 ,0x14951 
+0x6480 018858 istore 9 ,contw 
+0x6481 018859 setsect 0 ,0x24345 
+0x6482 018860 setsect 1 ,0x25051 
+0x6483 018861 setsect 2 ,0x4c4 
+0x6484 018862 istore 6 ,contw 
+0x6485 018863 rtn 
+:      018867 mouse_init:
+0x6486 018868 setarg le_mouse 
+0x6487 018869 store 2 ,mem_cb_le_process 
+0x6488 018870 setarg mouse_send_process 
+0x6489 018871 store 2 ,mem_cb_bt_process 
+0x648a 018872 setarg mouse_process_lpm_before 
+0x648b 018873 store 2 ,mem_cb_before_lpm 
+0x648c 018874 setarg mouse_priority_bb_event 
+0x648d 018875 store 2 ,mem_cb_bb_event_process 
+0x648e 018876 setarg mouse_idle 
+0x648f 018877 store 2 ,mem_cb_idle_process 
+0x6490 018878 setarg mouse_le_notify_update_data 
+0x6491 018879 store 2 ,mem_cb_update_notify_value 
+0x6492 018880 jam 0 ,mem_sp_flag 
+0x6493 018881 jam 0 ,mem_master_sp_flag 
+0x6494 018882 set0 mark_ext_patch ,mark 
+0x6495 018883 bpatch patch18_0 ,mem_patch18 
+0x6496 018884 call mouse_init_common 
+0x6497 018885 rtn wake 
+0x6498 018886 call mouse_init_environment 
+0x6499 018887 call mouse_dpi_init 
+0x649a 018888 setarg mouse_before_hibernate 
+0x649b 018889 store 2 ,mem_cb_before_hibernate 
+0x649c 018890 fetch 2 ,mem_ui_state_map 
+0x649d 018891 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x649e 018892 branch mouse_check_reconn_target 
+:      018894 mouse_init_environment:
+0x649f 018895 call app_initflag_check 
+0x64a0 018896 branch mouse_load_eeprom_param ,zero 
+0x64a1 018897 call eeprom_store_le_local_addr 
+0x64a2 018898 call eeprom_store_mouse_dpi 
+0x64a3 018899 branch app_initflag_store 
+:      018900 mouse_load_eeprom_param:
+0x64a4 018901 call eeprom_load_reconn_info 
+0x64a5 018902 call eeprom_load_le_loacal_addr 
+0x64a6 018903 branch eeprom_load_mouse_dpi 
+:      018905 mouse_dpi_init:
+0x64a7 018906 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x64a8 018907 branch mouse_modified_dpi 
+:      018909 mouse_idle:
+0x64a9 018910 call ui_check_paring_button 
+0x64aa 018911 call mouse_check_dpi 
+0x64ab 018912 branch mouse_wheel_check 
+:      018914 mouse_check_dpi:
+0x64ac 018915 fetcht 1 ,mem_dpi_button_gpio 
+0x64ad 018916 call gpio_get_bit 
+0x64ae 018917 nbranch mouse_dpi_up ,true 
+:      018918 mouse_dpi_down:
+0x64af 018919 fetch 1 ,mem_mouse_dpi_button_state 
+0x64b0 018920 rtneq dpi_button_state_down 
+0x64b1 018921 jam dpi_button_state_down ,mem_mouse_dpi_button_state 
+0x64b2 018922 rtn 
+:      018923 mouse_dpi_up:
+0x64b3 018924 fetch 1 ,mem_mouse_dpi_button_state 
+0x64b4 018925 rtneq dpi_button_state_up 
+0x64b5 018926 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x64b6 018927 fetch 1 ,mem_mouse_dpi 
+0x64b7 018928 increase 1 ,pdata 
+0x64b8 018929 and pdata ,0x03 ,pdata 
+0x64b9 018930 store 1 ,mem_mouse_dpi 
+0x64ba 018931 branch mouse_modified_dpi 
+:      018932 mouse_modified_dpi:
+0x64bb 018933 setarg mouse_dpi_address 
+0x64bc 018934 call twspi_read 
+0x64bd 018935 and pdata ,0xfc ,temp 
+0x64be 018936 fetch 1 ,mem_mouse_dpi 
+0x64bf 018937 iadd temp ,pdata 
+0x64c0 018938 lshift8 pdata ,pdata 
+0x64c1 018939 add pdata ,mouse_dpi_address ,pdata 
+0x64c2 018940 call twspi_write 
+0x64c3 018941 branch eeprom_store_mouse_dpi 
+:      018943 mouse_init_common:
+0x64c4 018944 call mouse_init_sunt 
+0x64c5 018945 call mouse_gpio_init 
+0x64c6 018946 hfetch 2 ,core_clkoff 
+0x64c7 018947 set0 clock_off_qdecoder ,pdata 
+0x64c8 018948 hstore 2 ,core_clkoff 
+0x64c9 018949 rtn 
+:      018951 mouse_gpio_init:
+0x64ca 018952 call lpm_disable_exen_output 
+0x64cb 018953 fetcht 1 ,mem_whee_a_data_gpio 
+0x64cc 018954 call gpio_config_input 
+0x64cd 018955 fetcht 1 ,mem_whee_b_data_gpio 
+0x64ce 018956 call gpio_config_input 
+0x64cf 018957 fetcht 1 ,mem_lbutton_gpio 
+0x64d0 018958 call gpio_config_input 
+0x64d1 018959 fetcht 1 ,mem_rbutton_gpio 
+0x64d2 018960 call gpio_config_input 
+0x64d3 018961 fetcht 1 ,mem_mbutton_gpio 
+0x64d4 018962 call gpio_config_input 
+0x64d5 018963 fetcht 1 ,mem_sensor_data_gpio 
+0x64d6 018964 call gpio_config_input 
+0x64d7 018965 fetcht 1 ,mem_dpi_button_gpio 
+0x64d8 018966 call gpio_config_input 
+0x64d9 018967 hfetch 1 ,core_gpio_pu3 
+0x64da 018968 or_into 0x18 ,pdata 
+0x64db 018969 hstore 1 ,core_gpio_pu3 
+0x64dc 018970 hfetch 1 ,core_gpio_pd2 + 1 
+0x64dd 018971 and_into 0xe7 ,pdata 
+0x64de 018972 hstore 1 ,core_gpio_pd2 + 1 
+0x64df 018973 rtn 
+:      018976 mouse_before_hibernate:
+0x64e0 018977 setarg 0xbc05 
+0x64e1 018978 call twspi_write 
+0x64e2 018979 jam 1 ,mem_lpm_current_mult 
+:      018981 mouse_process_lpm_before:
+0x64e3 018982 call mouse_wheel_check 
+0x64e4 018983 arg 25 ,temp 
+0x64e5 018984 call gpio_config_output 
+0x64e6 018985 hjam 0 ,core_gpio_sel1 
+0x64e7 018986 fetcht 1 ,mem_whee_a_data_gpio 
+0x64e8 018987 call gpio_set_wake_by_current_state 
+0x64e9 018988 fetcht 1 ,mem_whee_b_data_gpio 
+0x64ea 018989 call gpio_set_wake_by_current_state 
+0x64eb 018990 fetcht 1 ,mem_lbutton_gpio 
+0x64ec 018991 call gpio_set_wake_by_current_state 
+0x64ed 018992 fetcht 1 ,mem_rbutton_gpio 
+0x64ee 018993 call gpio_set_wake_by_current_state 
+0x64ef 018994 fetcht 1 ,mem_mbutton_gpio 
+0x64f0 018995 call gpio_set_wake_by_current_state 
+0x64f1 018996 fetcht 1 ,mem_sensor_data_gpio 
+0x64f2 018997 call gpio_set_wake 
+0x64f3 018998 fetch 1 ,mem_lpm_current_mult 
+0x64f4 018999 nrtn blank 
+0x64f5 019000 branch gpio_clr_wake 
+:      019002 mouse_wheel_check:
+0x64f6 019003 set0 mark_ext_patch ,mark 
+0x64f7 019004 bpatch patch18_1 ,mem_patch18 
+0x64f8 019005 arg 0 ,rega 
+0x64f9 019006 fetcht 1 ,mem_whee_a_data_gpio 
+0x64fa 019007 call gpio_get_bit 
+0x64fb 019008 setflag true ,0 ,rega 
+0x64fc 019009 fetcht 1 ,mem_whee_b_data_gpio 
+0x64fd 019010 call gpio_get_bit 
+0x64fe 019011 setflag true ,1 ,rega 
+0x64ff 019012 copy rega ,pdata 
+0x6500 019014 and_into 0x3 ,pdata 
+0x6501 019015 fetcht 1 ,mem_mouse_z_now 
+0x6502 019016 store 1 ,mem_mouse_z_now 
+0x6503 019017 isub temp ,null 
+0x6504 019018 branch mouse_wheel_clear ,zero 
+0x6505 019019 fetch 1 ,mem_mouse_z_before 
+0x6506 019020 store 1 ,mem_mouse_z_last 
+0x6507 019021 storet 1 ,mem_mouse_z_before 
+0x6508 019022 fetch 1 ,mem_mouse_z_now 
+0x6509 019023 lshift4 pdata ,pdata 
+0x650a 019024 fetcht 1 ,mem_mouse_z_before 
+0x650b 019025 lshift2 temp ,temp 
+0x650c 019026 iadd temp ,pdata 
+0x650d 019027 fetcht 1 ,mem_mouse_z_last 
+0x650e 019028 iadd temp ,pdata 
+0x650f 019029 beq 0x38 ,mouse_wheel_forward 
+0x6510 019030 beq 0x34 ,mouse_wheel_back 
+0x6511 019031 beq 0x0b ,mouse_wheel_back 
+0x6512 019032 beq 0x07 ,mouse_wheel_forward 
+0x6513 019033 rtn 
+:      019035 mouse_wheel_clear:
+0x6514 019036 rtn 
+:      019038 mouse_wheel_forward:
+0x6515 019039 fetch 1 ,mem_mouse_z_data 
+0x6516 019040 increase 1 ,pdata 
+0x6517 019041 store 1 ,mem_mouse_z_data 
+0x6518 019042 rtn 
+:      019044 mouse_wheel_back:
+0x6519 019045 fetch 1 ,mem_mouse_z_data 
+0x651a 019046 increase -1 ,pdata 
+0x651b 019047 store 1 ,mem_mouse_z_data 
+0x651c 019048 rtn 
+:      019050 mouse_process_ble:
+0x651d 019052 rtn 
+:      019053 mouse_sleep_sensor:
+0x651e 019054 setarg 0xB805 
+0x651f 019055 branch twspi_write 
+:      019057 mouse_bb_connected:
+0x6520 019058 rtn 
+:      019060 le_mouse_bb_event_write_request:
+0x6521 019061 call app_ble_store_reconn_info 
+0x6522 019062 jam mouse_mode_state_ble ,mem_mouse_mode_state 
+0x6523 019063 call app_lpm_mult_enable 
+:      019064 le_mouse_bb_event_enc_info:
+0x6524 019065 branch app_ble_start_write 
+:      019067 le_hibernate_timer:
+0x6525 019068 fetch 2 ,mem_le_hibernate_timer 
+0x6526 019069 rtn blank 
+0x6527 019070 increase -1 ,pdata 
+0x6528 019071 store 2 ,mem_le_hibernate_timer 
+0x6529 019072 nrtn blank 
+0x652a 019073 branch app_enter_hibernate 
+:      019075 mouse_hid_connected:
+0x652b 019076 setarg hid_handshake_timeout 
+0x652c 019077 store 1 ,mem_hid_handshake_timer_count 
+0x652d 019078 rtn 
+:      019080 mouse_send_process:
+0x652e 019081 fetch 1 ,mem_app_handshake_flag 
+0x652f 019082 rtn blank 
+0x6530 019083 call l2cap_malloc_is_fifo_nearly_full 
+0x6531 019084 nrtn blank 
+0x6532 019085 call mouse_motion 
+0x6533 019086 nrtn user 
+0x6534 019087 call mouse_no_data_timer_init 
+0x6535 019088 call mouse_send_blank_packet_timer_init 
+:      019089 mouse_send_data:
+0x6536 019090 arg 8 ,rega 
+0x6537 019091 call hid_malloc_tx_buff 
+0x6538 019092 fetch 2 ,mem_hid_int_remote_cid 
+0x6539 019093 istore 2 ,contw 
+0x653a 019094 setarg 0x02a1 
+0x653b 019095 istore 2 ,contw 
+0x653c 019096 fetch 1 ,mem_mouse_key 
+0x653d 019097 istore 1 ,contw 
+0x653e 019098 fetch 2 ,mem_mouse_x 
+0x653f 019099 arg 0xfff ,temp 
+0x6540 019100 iand temp ,pdata 
+0x6541 019101 fetcht 2 ,mem_mouse_y 
+0x6542 019102 lshift4 temp ,temp 
+0x6543 019103 lshift8 temp ,temp 
+0x6544 019104 ior temp ,pdata 
+0x6545 019105 istore 3 ,contw 
+0x6546 019106 fetch 1 ,mem_mouse_z 
+0x6547 019107 istore 1 ,contw 
+0x6548 019108 setarg 0 
+0x6549 019109 istore 1 ,contw 
+0x654a 019110 jam 8 ,mem_ui_data_txbuff_length 
+0x654b 019111 rtn 
+:      019114 mouse_send_blank_packet_timer:
+0x654c 019115 set0 mark_ext_patch ,mark 
+0x654d 019116 bpatch patch18_2 ,mem_patch18 
+0x654e 019117 fetch 1 ,mem_mouse_send_blank_timer 
+0x654f 019118 rtn blank 
+0x6550 019119 increase -1 ,pdata 
+0x6551 019120 store 1 ,mem_mouse_send_blank_timer 
+0x6552 019121 nrtn blank 
+0x6553 019122 call l2cap_malloc_is_fifo_empty 
+0x6554 019123 nrtn blank 
+0x6555 019124 setarg 0 
+0x6556 019125 store 5 ,mem_mouse_x 
+0x6557 019126 call mouse_send_data 
+0x6558 019127 jam mouse_send_blank_timer ,mem_mouse_send_blank_timer 
+0x6559 019128 rtn 
+:      019129 mouse_send_blank_packet_timer_init:
+0x655a 019130 fetch 2 ,mem_mouse_blank_data_timeout 
+0x655b 019131 store 2 ,mem_mouse_blank_data_timer 
+0x655c 019132 jam mouse_send_blank_timer ,mem_mouse_send_blank_timer 
+0x655d 019133 rtn 
+:      019135 mouse_no_data_timer_init:
+0x655e 019136 fetch 2 ,mem_mouse_no_data_timeout 
+0x655f 019137 store 2 ,mem_mouse_no_data_timer 
+0x6560 019138 rtn 
+:      019141 mouse_le_notify_update_data:
+0x6561 019142 fetcht 2 ,mem_le_notify_handle 
+0x6562 019143 call le_att_get_handle_ptr 
+0x6563 019144 ifetch 1 ,contr 
+0x6564 019145 store 1 ,mem_le_notify_len 
+0x6565 019146 rtn 
+:      019149 mouse_fill_data_le:
+0x6566 019150 set0 mark_ext_patch ,mark 
+0x6567 019151 bpatch patch18_3 ,mem_patch18 
+0x6568 019152 fetcht 2 ,mem_le_notify_handle 
+0x6569 019153 call le_att_get_handle_ptr 
+0x656a 019154 add contr ,1 ,contw 
+:      019155 mouse_fill_data:
+0x656b 019156 fetch 1 ,mem_mouse_key 
+0x656c 019157 istore 1 ,contw 
+0x656d 019158 fetch 2 ,mem_mouse_x 
+0x656e 019159 arg 0xfff ,temp 
+0x656f 019160 iand temp ,pdata 
+0x6570 019161 fetcht 2 ,mem_mouse_y 
+0x6571 019162 lshift4 temp ,temp 
+0x6572 019163 lshift8 temp ,temp 
+0x6573 019164 ior temp ,pdata 
+0x6574 019165 istore 3 ,contw 
+0x6575 019166 fetch 1 ,mem_mouse_z 
+0x6576 019167 istore 1 ,contw 
+0x6577 019168 rtn 
+:      019170 mouse_motion:
+0x6578 019171 set0 mark_ext_patch ,mark 
+0x6579 019172 bpatch patch18_4 ,mem_patch18 
+0x657a 019173 disable user 
+0x657b 019174 setarg 0 
+0x657c 019175 store 5 ,mem_mouse_x 
+0x657d 019176 call p3204_motion 
+0x657e 019177 call p3204_sdio_low 
+0x657f 019178 call mouse_zwheel 
+0x6580 019179 branch mouse_key 
+:      019181 p3204_motion:
+0x6581 019182 fetch 1 ,mem_sensor_type 
+0x6582 019183 rtnne sensor_type_p3204 
+0x6583 019184 fetch 1 ,mem_mouse_move_flag 
+0x6584 019185 call p3204_clear_data ,blank 
+0x6585 019186 jam 1 ,mem_mouse_move_flag 
+0x6586 019187 disable user 
+0x6587 019188 fetcht 1 ,mem_sensor_data_gpio 
+0x6588 019189 call gpio_get_bit 
+0x6589 019190 nrtn true 
+0x658a 019191 setarg 0 
+0x658b 019192 call twspi_read 
+0x658c 019193 bne p3204_id ,twspi_reset 
+0x658d 019194 setarg 2 
+0x658e 019195 call twspi_read 
+0x658f 019196 rtnbit0 7 
+0x6590 019197 setarg 3 
+0x6591 019198 call twspi_read 
+0x6592 019199 call extsign 
+0x6593 019200 store 2 ,mem_mouse_x 
+0x6594 019201 setarg 4 
+0x6595 019202 call twspi_read 
+0x6596 019203 call extsign 
+0x6597 019204 sub pdata ,0 ,pdata 
+0x6598 019205 store 2 ,mem_mouse_y 
+0x6599 019206 fetch 4 ,mem_mouse_x 
+0x659a 019207 enable user 
+0x659b 019208 rtn 
+:      019209 mouse_zwheel:
+0x659c 019210 fetch 1 ,mem_mouse_z_data 
+0x659d 019211 rtn blank 
+0x659e 019212 store 1 ,mem_mouse_z 
+0x659f 019213 jam 0 ,mem_mouse_z_data 
+0x65a0 019214 enable user 
+0x65a1 019215 rtn 
+:      019216 mouse_key:
+0x65a2 019217 arg 0 ,rega 
+0x65a3 019218 fetcht 1 ,mem_lbutton_gpio 
+0x65a4 019219 call gpio_get_bit 
+0x65a5 019220 setflag true ,0 ,rega 
+0x65a6 019221 fetcht 1 ,mem_rbutton_gpio 
+0x65a7 019222 call gpio_get_bit 
+0x65a8 019223 setflag true ,1 ,rega 
+0x65a9 019224 fetcht 1 ,mem_mbutton_gpio 
+0x65aa 019225 call gpio_get_bit 
+0x65ab 019226 setflag true ,2 ,rega 
+0x65ac 019227 deposit rega 
+0x65ad 019228 fetcht 1 ,mem_mouse_key 
+0x65ae 019229 store 1 ,mem_mouse_key 
+0x65af 019230 ixor temp ,pdata 
+0x65b0 019231 sub pdata ,0 ,null 
+0x65b1 019232 rtn zero 
+0x65b2 019233 enable user 
+0x65b3 019234 rtn 
+:      019239 p3204_sdio_low:
+0x65b4 019240 arg 26 ,temp 
+0x65b5 019241 call gpio_get_bit 
+0x65b6 019242 rtn true 
+0x65b7 019243 setarg 0 
+0x65b8 019244 call twspi_read 
+0x65b9 019245 branch p3204_sdio_low 
+:      019247 p3204_clear_data:
+0x65ba 019248 arg 0 ,loopcnt 
+:      019249 p3204_clear_data_loop:
+0x65bb 019250 setarg 2 
+0x65bc 019251 call twspi_read 
+0x65bd 019252 nop 100 
+0x65be 019253 increase 1 ,loopcnt 
+0x65bf 019254 fetcht 1 ,mem_sensor_data_gpio 
+0x65c0 019255 call gpio_get_bit 
+0x65c1 019256 branch p3204_clear_data_loop ,true 
+0x65c2 019257 deposit loopcnt 
+0x65c3 019258 store 2 ,mem_init_cnt 
+0x65c4 019259 rtn 
+:      019260 mouse_init_sunt:
+0x65c5 019261 call spid_init 
+0x65c6 019262 rtn wake 
+:      019264 mouse_init_p3204:
+0x65c7 019265 setarg 0 
+0x65c8 019266 call twspi_read 
+0x65c9 019267 store 1 ,mem_sensor_id 
+0x65ca 019268 beq p3204_id ,mouse_init_p3204_cont 
+0x65cb 019269 call twspi_reset 
+0x65cc 019270 nop 10000 
+0x65cd 019271 branch mouse_init_p3204 
+:      019272 mouse_init_p3204_cont:
+0x65ce 019273 setarg 0x8006 
+0x65cf 019274 call twspi_write 
+0x65d0 019275 nop 1000 
+0x65d1 019276 jam sensor_type_p3204 ,mem_sensor_type 
+0x65d2 019277 rtn 
+:      019281 extsign:
+0x65d3 019282 rtnbit0 7 
+0x65d4 019283 arg 0xff00 ,temp 
+0x65d5 019284 ior temp ,pdata 
+0x65d6 019285 rtn 
+:      019289 le_mouse:
+0x65d7 019290 call le_xtype_fifo_is_near_full 
+0x65d8 019291 nrtn blank 
+0x65d9 019292 fetcht 2 ,mem_le_notify_handle 
+0x65da 019293 call le_att_check_notification_enable 
+0x65db 019294 rtnbit0 0 
+0x65dc 019295 fetch 1 ,mem_le_switch_send_data 
+0x65dd 019296 rtnbit0 0 
+0x65de 019297 call mouse_motion 
+0x65df 019299 nrtn user 
+0x65e0 019300 call mouse_no_data_timer_init 
+0x65e1 019302 jam attop_handle_value_notification ,mem_fifo_temp 
+0x65e2 019303 call le_xtype_fifo_in 
+0x65e3 019304 branch mouse_fill_data_le 
+:      019306 mouse_test:
+0x65e4 019307 rtn user 
+0x65e5 019308 fetch 1 ,mem_mouse_test_cnt 
+0x65e6 019309 increase 1 ,pdata 
+0x65e7 019310 store 1 ,mem_mouse_test_cnt 
+0x65e8 019311 arg 1 ,temp 
+0x65e9 019312 bbit0 7 ,mouse_test_pos 
+0x65ea 019313 arg 0xffff ,temp 
+:      019314 mouse_test_pos:
+0x65eb 019315 storet 5 ,mem_mouse_x 
+0x65ec 019316 enable user 
+0x65ed 019317 rtn 
+:      019319 mouse_check_mode_state:
+0x65ee 019320 disable user 
+0x65ef 019321 fetch 1 ,mem_mouse_mode_state 
+0x65f0 019322 rtneq mouse_mode_state_ble 
+0x65f1 019323 enable user 
+0x65f2 019324 rtn 
+:      019326 mouse_priority_bb_event:
+0x65f3 019327 copy regc ,pdata 
+0x65f4 019328 beq bt_evt_le_connected ,le_mouse_bb_event_connected 
+0x65f5 019329 beq bt_evt_bb_connected ,mouse_stop_discovery 
+0x65f6 019330 beq bt_evt_le_disconnected ,mouse_bb_disconnected 
+0x65f7 019331 beq bt_evt_bb_disconnected ,mouse_bb_disconnected 
+0x65f8 019332 beq bt_evt_setup_complete ,mouse_bt_event_setup_complete 
+0x65f9 019333 beq bt_evt_button_long_pressed ,mouse_bb_event_discovery_btn 
+0x65fa 019334 beq bt_evt_hid_handshake ,mouse_bt_hid_handshake 
+0x65fb 019335 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+0x65fc 019336 beq bt_evt_le_write_request ,le_mouse_bb_event_write_request 
+0x65fd 019337 beq bt_evt_le_enc_info ,le_mouse_bb_event_enc_info 
+0x65fe 019338 beq bt_evt_reconn_failed ,mouse_bb_event_reconn_failed 
+0x65ff 019339 beq bt_evt_reconn_page_timeout ,mouse_bb_event_reconn_failed 
+0x6600 019340 beq bt_evt_pincode_req ,mouse_bb_event_pincode 
+0x6601 019341 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x6602 019342 and pdata ,0x0f ,temp 
+0x6603 019343 and_into bt_evt_timer_mask ,pdata 
+0x6604 019344 beq bt_evt_timer_init ,mouse_bb_event_timer 
+0x6605 019345 rtn 
+:      019347 le_mouse_bb_event_connected:
+0x6606 019348 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x6607 019349 set0 app_disc_by_button ,pdata 
+0x6608 019350 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x6609 019351 setarg 0 
+0x660a 019352 store 2 ,mem_mouse_direct_timer 
+0x660b 019353 fetch 1 ,mem_conn_cnt 
+0x660c 019354 increase 1 ,pdata 
+0x660d 019355 store 1 ,mem_conn_cnt 
+0x660e 019356 branch mouse_stop_discovery 
+:      019358 mouse_bb_event_pincode:
+0x660f 019359 call pincode_reinit 
+0x6610 019360 branch app_bt_set_pincode 
+:      019362 mouse_bb_event_reconn_failed:
+0x6611 019363 fetch 2 ,mem_ui_state_map 
+0x6612 019364 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x6613 019365 branch app_bb_hibernate 
+:      019368 mouse_bt_hid_connected:
+0x6614 019369 call mouse_hid_connected 
+0x6615 019370 rtn 
+:      019371 mouse_bt_event_setup_complete:
+0x6616 019372 rtn 
+:      019374 mouse_bb_disconnected:
+0x6617 019375 set0 mark_ext_patch ,mark 
+0x6618 019376 bpatch patch18_5 ,mem_patch18 
+0x6619 019377 call mouse_bb_discon_clear_stack 
+0x661a 019378 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x661b 019379 bbit1 app_disc_ble ,mouse4_0_event_bb_disconn 
+0x661c 019380 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x661d 019381 bbit1 app_disc_after_pairing ,mouse_event_light_state_pairing 
+0x661e 019382 bbit1 app_disc_after_reconn ,mouse_event_light_state_hibernate 
+0x661f 019383 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x6620 019384 branch mouse_start_discovery 
+:      019385 mouse_bb_discon_clear_stack:
+0x6621 019386 setarg 0 
+0x6622 019387 store 4 ,mem_mouse_z_last 
+0x6623 019388 jam 0 ,mem_mouse_send_blank_timer 
+0x6624 019389 jam 0 ,mem_mouse_move_flag 
+0x6625 019390 jam app_handshake_null ,mem_app_handshake_flag 
+0x6626 019391 jam 0 ,mem_ltk_exists 
+0x6627 019392 jam 0 ,mem_mouse_mode_state 
+0x6628 019393 jam 0 ,mem_reconnect_timeout 
+0x6629 019394 rtn 
+:      019396 mouse_event_light_state_pairing:
+0x662a 019397 bbit1 app_disc_after_handshake ,mouse_event_light_state_hibernate 
+0x662b 019398 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x662c 019399 branch mouse_start_discovery 
+:      019400 mouse_event_light_state_hibernate:
+0x662d 019401 fetch 2 ,mem_ui_state_map 
+0x662e 019402 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x662f 019403 branch app_bb_hibernate 
+:      019405 mouse4_0_event_bb_disconn:
+0x6630 019406 call le_clean_att_list_handle_enable 
+0x6631 019407 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x6632 019408 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x6633 019409 branch app_bb_hibernate 
+:      019411 mouse_bb_event_timer:
+0x6634 019412 set0 mark_ext_patch ,mark 
+0x6635 019413 bpatch patch18_6 ,mem_patch18 
+0x6636 019414 storet 1 ,mem_app_evt_timer_count 
+:      019415 mouse_bb_event_100ms_loop:
+0x6637 019416 fetch 1 ,mem_app_evt_timer_count 
+0x6638 019417 rtn blank 
+0x6639 019418 increase -1 ,pdata 
+0x663a 019419 store 1 ,mem_app_evt_timer_count 
+0x663b 019422 call mouse_check_hid_handshake_timer 
+0x663c 019423 call mouse_check_discovery_timeout_timer 
+0x663d 019424 call mouse_check_direct_timeout_timer 
+0x663e 019425 call mouse_check_no_data_timeout_timer 
+0x663f 019427 fetch 1 ,mem_mouse_mode_state 
+0x6640 019428 compare mouse_mode_state_ble ,pdata ,0xff 
+0x6641 019429 call mouse4_0_bb_event_100ms ,true 
+0x6642 019430 fetch 1 ,mem_mouse_mode_state 
+0x6643 019431 compare mouse_mode_state_bt ,pdata ,0xff 
+0x6644 019432 call mouse3_0_bb_event_100ms ,true 
+0x6645 019433 branch mouse_bb_event_100ms_loop 
+:      019435 mouse3_0_bb_event_100ms:
+0x6646 019437 call mouse_check_blank_data_timeout_timer 
+0x6647 019438 branch mouse_send_blank_packet_timer 
+:      019440 mouse4_0_bb_event_100ms:
+0x6648 019442 rtn 
+:      019444 mouse_check_hid_handshake_timer:
+0x6649 019445 fetch 1 ,mem_hid_handshake_timer_count 
+0x664a 019446 rtn blank 
+0x664b 019447 increase -1 ,pdata 
+0x664c 019448 store 1 ,mem_hid_handshake_timer_count 
+0x664d 019449 nrtn blank 
+0x664e 019450 branch mouse_bt_hid_handshake 
+:      019452 mouse_check_discovery_timeout_timer:
+0x664f 019453 fetch 2 ,mem_mouse_discovery_timer 
+0x6650 019454 rtn blank 
+0x6651 019455 increase -1 ,pdata 
+0x6652 019456 store 2 ,mem_mouse_discovery_timer 
+0x6653 019457 nrtn blank 
+0x6654 019458 call mouse_stop_discovery 
+0x6655 019459 branch app_enter_hibernate 
+:      019461 mouse_check_direct_timeout_timer:
+0x6656 019462 fetch 2 ,mem_mouse_direct_timer 
+0x6657 019463 rtn blank 
+0x6658 019464 increase -1 ,pdata 
+0x6659 019465 store 2 ,mem_mouse_direct_timer 
+0x665a 019466 nrtn blank 
+0x665b 019467 call app_ble_stop_direct_adv 
+0x665c 019468 branch app_enter_hibernate 
+:      019470 mouse_check_blank_data_timeout_timer:
+0x665d 019471 fetch 2 ,mem_mouse_blank_data_timer 
+0x665e 019472 rtn blank 
+0x665f 019473 increase -1 ,pdata 
+0x6660 019474 store 2 ,mem_mouse_blank_data_timer 
+0x6661 019475 nrtn blank 
+0x6662 019476 jam 0 ,mem_mouse_send_blank_timer 
+0x6663 019477 rtn 
+:      019479 mouse_check_no_data_timeout_timer:
+0x6664 019480 fetch 2 ,mem_mouse_no_data_timer 
+0x6665 019481 rtn blank 
+0x6666 019482 increase -1 ,pdata 
+0x6667 019483 store 2 ,mem_mouse_no_data_timer 
+0x6668 019484 nrtn blank 
+0x6669 019485 branch mouse_disconnect 
+:      019487 mouse_bb_event_discovery_btn:
+0x666a 019488 set0 mark_ext_patch ,mark 
+0x666b 019489 bpatch patch18_7 ,mem_patch18 
+0x666c 019490 jam 0 ,mem_mouse_send_blank_timer 
+0x666d 019491 jam 1 ,mem_reconnect_timeout 
+0x666e 019492 setarg 0 
+0x666f 019493 store 2 ,mem_mouse_direct_timer 
+0x6670 019494 call mouse_disconnect 
+0x6671 019495 fetch 1 ,mem_device_option 
+0x6672 019496 isolate1 mode_4_mouse ,pdata 
+0x6673 019497 call mouse4_0_bb_event_discovery_btn ,true 
+0x6674 019498 fetch 1 ,mem_device_option 
+0x6675 019499 isolate1 mode_3_mouse ,pdata 
+0x6676 019500 call mouse3_0_bb_event_discovery_btn ,true 
+0x6677 019501 call app_lpm_mult_disable 
+0x6678 019502 branch mouse_start_discovery 
+:      019506 mouse3_0_check_reconn_target:
+0x6679 019507 fetch 6 ,mem_hci_plap 
+0x667a 019508 branch app_bt_start_discovery_short ,blank 
+0x667b 019509 branch app_bt_start_reconnect 
+:      019511 mouse4_0_check_reconn_target:
+0x667c 019512 fetch 6 ,mem_hci_plap 
+0x667d 019513 branch mouse4_0_no_reconn_target ,blank 
+0x667e 019514 fetch 2 ,mem_mouse_direct_timeout 
+0x667f 019515 store 2 ,mem_mouse_direct_timer 
+0x6680 019516 call app_lpm_mult_enable 
+0x6681 019517 branch app_ble_start_direct_adv 
+:      019518 mouse4_0_no_reconn_target:
+0x6682 019519 call app_led_start_blink 
+0x6683 019520 branch app_ble_start_adv 
+:      019522 mouse3_0_bb_event_discovery_btn:
+0x6684 019523 fetch 2 ,mem_ui_state_map 
+0x6685 019524 isolate1 ui_state_bt_reconnect ,pdata 
+0x6686 019525 call app_bt_reconnect_cancel ,true 
+0x6687 019526 rtn 
+:      019527 mouse4_0_bb_event_discovery_btn:
+0x6688 019528 call le_clean_att_list_handle_enable 
+0x6689 019529 rtn 
+:      019531 mouse_bt_hid_handshake:
+0x668a 019532 jam app_handshake_done ,mem_app_handshake_flag 
+0x668b 019533 call app_lpm_mult_enable 
+0x668c 019534 call app_bt_store_reconn_info 
+0x668d 019535 jam mouse_mode_state_bt ,mem_mouse_mode_state 
+0x668e 019536 setarg 0 
+0x668f 019537 store 2 ,mem_discovery_timeout_timer_count 
+0x6690 019538 store 1 ,mem_hid_handshake_timer_count 
+0x6691 019539 call app_bt_enter_sniff 
+0x6692 019540 branch mouse_send_blank_packet_timer_init 
+:      019542 mouse_check_reconn_target:
+0x6693 019543 fetch 1 ,mem_xrecord_mode 
+0x6694 019544 beq rec_3_mode ,mouse3_0_check_reconn_target 
+0x6695 019545 beq rec_4_mode ,mouse4_0_check_reconn_target 
+0x6696 019546 branch mouse_start_discovery 
+:      019548 mouse_start_discovery:
+0x6697 019549 set0 mark_ext_patch ,mark 
+0x6698 019550 bpatch patch19_0 ,mem_patch19 
+0x6699 019551 fetch 1 ,mem_le_lap 
+0x669a 019552 increase 1 ,pdata 
+0x669b 019553 store 1 ,mem_le_lap 
+0x669c 019554 call app_lpm_mult_disable 
+0x669d 019555 fetch 2 ,mem_discovery_timeout 
+0x669e 019556 store 2 ,mem_mouse_discovery_timer 
+0x669f 019557 fetch 1 ,mem_device_option 
+0x66a0 019558 isolate1 mode_4_mouse ,pdata 
+0x66a1 019559 call app_ble_start_adv ,true 
+0x66a2 019560 fetch 1 ,mem_device_option 
+0x66a3 019561 isolate1 mode_3_mouse ,pdata 
+0x66a4 019562 call app_bt_start_discovery ,true 
+0x66a5 019563 branch app_led_start_blink 
+:      019565 mouse_stop_discovery:
+0x66a6 019566 set0 mark_ext_patch ,mark 
+0x66a7 019567 bpatch patch19_1 ,mem_patch19 
+0x66a8 019568 setarg 0 
+0x66a9 019569 store 2 ,mem_mouse_discovery_timer 
+0x66aa 019570 fetch 1 ,mem_device_option 
+0x66ab 019571 isolate1 mode_4_mouse ,pdata 
+0x66ac 019572 call app_ble_stop_adv ,true 
+0x66ad 019573 fetch 1 ,mem_device_option 
+0x66ae 019574 isolate1 mode_3_mouse ,pdata 
+0x66af 019575 call app_bt_stop_discovery ,true 
+0x66b0 019576 branch app_led_stop_blink 
+:      019578 mouse_disconnect:
+0x66b1 019579 set0 mark_ext_patch ,mark 
+0x66b2 019580 bpatch patch19_2 ,mem_patch19 
+0x66b3 019581 setarg 0 
+0x66b4 019582 store 2 ,mem_mouse_no_data_timer 
+0x66b5 019583 fetch 2 ,mem_ui_state_map 
+0x66b6 019584 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+0x66b7 019585 fetch 2 ,mem_ui_state_map 
+0x66b8 019586 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x66b9 019587 rtn 
+:      019589 eeprom_store_mouse_dpi:
+0x66ba 019590 set0 mark_ext_patch ,mark 
+0x66bb 019591 bpatch patch19_3 ,mem_patch19 
+0x66bc 019592 arg 1 ,temp 
+0x66bd 019593 arg mem_mouse_dpi ,rega 
+0x66be 019594 arg mouse_dpi_eeprom_addr ,regb 
+0x66bf 019595 branch iicd_write_eep_data 
+:      019597 eeprom_load_mouse_dpi:
+0x66c0 019598 set0 mark_ext_patch ,mark 
+0x66c1 019599 bpatch patch19_4 ,mem_patch19 
+0x66c2 019600 arg 1 ,temp 
+0x66c3 019601 arg mem_mouse_dpi ,rega 
+0x66c4 019602 arg mouse_dpi_eeprom_addr ,regb 
+0x66c5 019603 branch iicd_read_eep_data 
+:      019611 twspi_reset:
+0x66c6 019612 set0 mark_ext_patch ,mark 
+0x66c7 019613 bpatch patch1f_6 ,mem_patch1f 
+0x66c8 019614 hfetch 1 ,core_gpio_oe3 
+0x66c9 019615 arg 0x06 ,temp 
+0x66ca 019616 ior temp ,pdata 
+0x66cb 019617 hstore 1 ,core_gpio_oe3 
+0x66cc 019618 hfetch 1 ,core_gpio_out3 
+0x66cd 019619 ior temp ,pdata 
+0x66ce 019620 hstore 1 ,core_gpio_out3 
+0x66cf 019621 hjam 0 ,core_gpio_sel1 
+0x66d0 019622 hfetch 1 ,core_gpio_out3 
+0x66d1 019623 set0 1 ,pdata 
+0x66d2 019624 set0 2 ,pdata 
+0x66d3 019625 hstore 1 ,core_gpio_out3 
+0x66d4 019626 nop 30 
+0x66d5 019627 hjam 1 ,core_gpio_sel1 
+0x66d6 019628 rtn 
+:      019629 twspi_write:
+0x66d7 019630 branch spid_write_reg 
+:      019632 twspi_read:
+0x66d8 019633 branch spid_read_reg 
+:      019640 read_function_aes:
+0x66d9 019641 nbranch read_function ,user 
+0x66da 019642 hfetch 1 ,core_gpio_key2 
+0x66db 019643 or_into 0x20 ,pdata 
+0x66dc 019644 hstore 1 ,core_gpio_key2 
+:      019645 read_function:
+0x66dd 019646 copy temp ,null 
+0x66de 019647 branch read_fuction_zero ,zero 
+0x66df 019648 copy regc ,pc 
+:      019649 read_fuction_zero:
+0x66e0 019650 isolate0 0 ,null 
+0x66e1 019651 branch set_ucode_status 
+:      019654 get_block_header:
+0x66e2 019655 force 4 ,temp 
+:      019656 get_block_header0:
+0x66e3 019657 arg mem_ucode_buf ,rega 
+0x66e4 019658 hfetch 1 ,core_gpio_key2 
+0x66e5 019659 and_into 0xdf ,pdata 
+0x66e6 019660 hstore 1 ,core_gpio_key2 
+0x66e7 019661 call read_function 
+0x66e8 019662 arg 0x55aa ,rega 
+0x66e9 019663 fetch 2 ,mem_ucode_buf 
+0x66ea 019664 ifetcht 2 ,contr 
+0x66eb 019665 isub rega ,null 
+0x66ec 019666 rtn 
+:      019668 read_first_block:
+0x66ed 019669 arg 2 ,temp 
+0x66ee 019670 arg mem_ucode_ptr ,rega 
+0x66ef 019671 call read_function 
+0x66f0 019672 fetch 2 ,mem_ucode_ptr 
+0x66f1 019673 store 2 ,mem_addr_mi 
+0x66f2 019674 call get_iv ,user 
+0x66f3 019675 rtn 
+:      019677 get_iv:
+0x66f4 019678 arg 16 ,temp 
+0x66f5 019679 arg mem_ucode_keybuf ,rega 
+0x66f6 019680 hfetch 1 ,core_gpio_key2 
+0x66f7 019681 and_into 0xdf ,pdata 
+0x66f8 019682 hstore 1 ,core_gpio_key2 
+0x66f9 019683 call read_function 
+0x66fa 019684 arg mem_ucode_keybuf ,contr 
+0x66fb 019685 arg 16 ,loopcnt 
+0x66fc 019686 call aes_load_data 
+0x66fd 019687 call aes_init 
+0x66fe 019688 call aes_clear_data 
+0x66ff 019689 branch do_aes_cbc 
+:      019691 load_storage:
+0x6700 019692 disable match 
+0x6701 019693 call get_block_header 
+0x6702 019694 nrtn zero 
+0x6703 019695 enable match 
+0x6704 019696 hjam 0x80 ,core_ucode_ctrl 
+0x6705 019697 hjam 0 ,core_ucode_hi 
+0x6706 019698 hjam 0 ,core_ucode_low 
+0x6707 019699 arg core_ucode_data ,rega 
+0x6708 019700 call read_function_aes 
+0x6709 019701 hjam 0x0 ,core_ucode_ctrl 
+0x670a 019702 call get_block_header 
+0x670b 019703 nrtn zero 
+0x670c 019704 force 0 ,pdata 
+0x670d 019705 hstore 2 ,core_docd_paddr 
+0x670e 019706 arg core_docd_pdata ,rega 
+0x670f 019707 call read_function_aes 
+:      019708 load_storage_loop:
+0x6710 019709 arg 6 ,temp 
+0x6711 019710 call get_block_header0 
+0x6712 019711 nrtn zero 
+0x6713 019712 ifetch 2 ,contr 
+0x6714 019713 iforce rega 
+0x6715 019714 call read_function 
+0x6716 019715 branch load_storage_loop 
+:      019721 reload_eeprom:
+0x6717 019722 call clean_mem 
+0x6718 019723 setarg 0x1000 
+0x6719 019724 store 2 ,mem_addr_mi 
+0x671a 019725 arg iicd_read_eep ,regc 
+0x671b 019726 arg 2 ,loopcnt 
+:      019727 reload_eeprom_loop:
+0x671c 019728 call get_block_header 
+0x671d 019729 nrtn zero 
+0x671e 019730 fetch 2 ,mem_addr_mi 
+0x671f 019731 byteswap pdata ,pdata 
+0x6720 019732 iadd temp ,pdata 
+0x6721 019733 byteswap pdata ,pdata 
+0x6722 019734 store 2 ,mem_addr_mi 
+0x6723 019735 loop reload_eeprom_loop 
+0x6724 019736 branch load_storage_loop 
+:      019738 loadcode:
+0x6725 019739 hjam 0x25 ,core_clkoff 
+0x6726 019740 hjam 5 ,core_docd_ctrl 
+0x6727 019741 call clean_mem 
+:      019742 loadcode_lpm:
+0x6728 019743 disable user 
+0x6729 019744 call otp_enable_chgpump 
+0x672a 019745 setarg otp_ucode_flag 
+0x672b 019746 arg mem_otp_ucode_flag ,rega 
+0x672c 019747 arg 2 ,temp 
+0x672d 019748 call otpd_read_data 
+0x672e 019749 fetch 2 ,mem_otp_ucode_flag 
+0x672f 019750 bbit0 otp_uflag_aes ,loadcode_otp 
+0x6730 019751 setarg otp_ucode_aeskey 
+0x6731 019752 arg mem_ucode_keybuf ,rega 
+0x6732 019753 arg 16 ,temp 
+0x6733 019754 call otpd_read_data 
+0x6734 019755 hjam lock_otp ,core_misc_ctrl 
+0x6735 019756 arg mem_ucode_keybuf ,contr 
+0x6736 019757 call load_key 
+0x6737 019758 enable user 
+:      019759 loadcode_otp:
+0x6738 019760 fetch 2 ,mem_otp_ucode_flag 
+0x6739 019761 byteswap pdata ,pdata 
+0x673a 019762 arg 0x7ff ,temp 
+0x673b 019763 iand temp ,pdata 
+0x673c 019764 branch loadcode_spi ,zero 
+0x673d 019765 call otp_set_addr 
+0x673e 019766 arg otpd_read_code ,regc 
+0x673f 019767 call get_iv ,user 
+0x6740 019768 call load_storage 
+0x6741 019769 fetch 1 ,mem_ucode_status 
+0x6742 019770 compare 3 ,pdata ,3 
+0x6743 019771 nbranch loadcode_otp ,true 
+:      019772 loadcode_spi:
+0x6744 019773 call otp_disable_chgpump 
+0x6745 019774 fetch 1 ,mem_otp_ucode_flag 
+0x6746 019775 bbit1 otp_uflag_skip_flash ,loadcode_iic 
+0x6747 019776 setarg 0x0 
+0x6748 019777 store 3 ,mem_addr_hi 
+0x6749 019778 call spid_init_flash 
+0x674a 019779 arg spid_read_flash ,regc 
+0x674b 019780 call read_first_block 
+0x674c 019781 call load_storage 
+0x674d 019782 nbranch loadcode_iic ,match 
+0x674e 019783 fetch 1 ,mem_ucode_status 
+0x674f 019784 compare 3 ,pdata ,3 
+0x6750 019785 nbranch loadcode_spi ,true 
+:      019786 loadcode_iic:
+0x6751 019787 fetch 1 ,mem_otp_ucode_flag 
+0x6752 019788 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+0x6753 019789 setarg 0x0 
+0x6754 019790 store 2 ,mem_addr_mi 
+0x6755 019791 arg iicd_read_eep ,regc 
+0x6756 019792 call iicd_init_12m 
+0x6757 019793 call read_first_block 
+0x6758 019794 call load_storage 
+0x6759 019795 nbranch loadcode_hci ,match 
+0x675a 019796 fetch 1 ,mem_ucode_status 
+0x675b 019797 compare 3 ,pdata ,3 
+0x675c 019798 nbranch loadcode_iic ,true 
+:      019799 loadcode_hci:
+0x675d 019800 hjam 0x21 ,core_clkoff 
+0x675e 019801 fetch 1 ,mem_otp_ucode_flag 
+0x675f 019802 rtnbit0 otp_uflag_hci 
+0x6760 019803 call hci_init 
+:      019804 loadcode_hci_loop:
+0x6761 019805 call hci_rx_packet 
+0x6762 019806 branch loadcode_hci_loop 
+:      019809 set_ucode_status:
+0x6763 019810 fetch 1 ,mem_ucode_status 
+0x6764 019811 lshift pdata ,pdata 
+0x6765 019812 setflag true ,0 ,pdata 
+0x6766 019813 isolate0 15 ,rega 
+0x6767 019814 rtn true 
+0x6768 019815 store 1 ,mem_ucode_status 
+0x6769 019816 rtn 
+:      019819 decrypt_code:
+0x676a 019820 hfetch 1 ,core_gpio_key2 
+0x676b 019821 rtnbit0 5 
+0x676c 019822 branch decrypt_code_skip 
+:      019823 decrypt_code_loop:
+0x676d 019824 hfetch 1 ,core_dma_status 
+0x676e 019825 qisolate1 pdata 
+0x676f 019826 rtn true 
+:      019827 decrypt_code_skip:
+0x6770 019828 hfetch 1 ,core_misc_status 
+0x6771 019829 bbit0 1 ,decrypt_code_loop 
+0x6772 019830 call do_aes_cbc 
+0x6773 019831 branch decrypt_code_loop 
+:      019835 save_ucode:
+0x6774 019836 copy loopcnt ,temp 
+0x6775 019837 storet 2 ,mem_patch_len 
+0x6776 019838 hjam 0x80 ,core_ucode_ctrl 
+0x6777 019839 hjam 0 ,core_ucode_hi 
+0x6778 019840 hjam 0 ,core_ucode_low 
+0x6779 019841 store 2 ,mem_patch_ptr 
+0x677a 019842 iforce contw 
+0x677b 019843 lshift2 loopcnt ,loopcnt 
+:      019844 save_ucode_loop:
+0x677c 019845 hfetch 1 ,core_ucode_data 
+0x677d 019846 istore 1 ,contw 
+0x677e 019847 loop save_ucode_loop 
+0x677f 019848 hjam 0x0 ,core_ucode_ctrl 
+0x6780 019849 rtn 
+:      019851 load_ucode:
+0x6781 019852 fetch 2 ,mem_patch_ptr 
+0x6782 019853 rtn blank 
+0x6783 019854 hjam 0x80 ,core_ucode_ctrl 
+0x6784 019855 hjam 0 ,core_ucode_hi 
+0x6785 019856 hjam 0 ,core_ucode_low 
+0x6786 019857 fetcht 2 ,mem_patch_len 
+0x6787 019858 lshift2 temp ,loopcnt 
+0x6788 019859 iforce contr 
+:      019860 load_ucode_loop:
+0x6789 019861 ifetch 1 ,contr 
+0x678a 019862 hstore 1 ,core_ucode_data 
+0x678b 019863 loop load_ucode_loop 
+0x678c 019864 hjam 0x0 ,core_ucode_ctrl 
+0x678d 019865 rtn 
+:      019870 spid_init:
+0x678e 019871 set0 mark_ext_patch ,mark 
+0x678f 019872 bpatch patch1f_7 ,mem_patch1f 
+0x6790 019873 hjam 0x75 ,core_spid_ctrl 
+0x6791 019874 hjam 10 ,core_spid_delay 
+0x6792 019875 setarg mem_spid_tbuf 
+0x6793 019876 hstore 2 ,core_spid_txaddr 
+0x6794 019877 setarg mem_spid_rbuf 
+0x6795 019878 hstore 2 ,core_spid_rxaddr 
+0x6796 019879 hfetch 1 ,core_gpio_sel1 
+0x6797 019880 set1 0 ,pdata 
+0x6798 019881 set0 1 ,pdata 
+0x6799 019882 hstore 1 ,core_gpio_sel1 
+0x679a 019883 rtn 
+:      019885 spid_reset:
+0x679b 019886 hfetch 1 ,core_spid_ctrl 
+0x679c 019887 set1 7 ,pdata 
+0x679d 019888 hstore 1 ,core_spid_ctrl 
+0x679e 019889 set0 7 ,pdata 
+0x679f 019890 hstore 1 ,core_spid_ctrl 
+0x67a0 019891 rtn 
+:      019895 spid_write_reg:
+0x67a1 019896 set1 7 ,pdata 
+0x67a2 019897 store 2 ,mem_spid_tbuf 
+0x67a3 019898 set1 mark_ext_patch ,mark 
+0x67a4 019899 bpatch patch20_0 ,mem_patch20 
+0x67a5 019900 hjam 2 ,core_spid_txlen 
+0x67a6 019901 hjam 0 ,core_spid_rxlen 
+0x67a7 019902 hjam spid_start ,core_misc_ctrl 
+0x67a8 019903 branch wait_spid_done 
+:      019906 spid_read_reg:
+0x67a9 019907 force 1 ,temp 
+:      019909 spid_read_regs:
+0x67aa 019911 store 1 ,mem_spid_tbuf 
+0x67ab 019912 set1 mark_ext_patch ,mark 
+0x67ac 019913 bpatch patch20_1 ,mem_patch20 
+0x67ad 019914 hjam 1 ,core_spid_txlen 
+0x67ae 019915 hstoret 2 ,core_spid_rxlen 
+0x67af 019916 hjam spid_start ,core_misc_ctrl 
+0x67b0 019917 call wait_spid_done 
+0x67b1 019918 fetch 1 ,mem_spid_rbuf 
+0x67b2 019919 rtn 
+:      019921 wait_spid_done:
+0x67b3 019922 fetch 2 ,mem_afh_error_total 
+0x67b4 019923 increase 1 ,pdata 
+0x67b5 019924 store 2 ,mem_afh_error_total 
+0x67b6 019925 hfetch 1 ,core_dma_status 
+0x67b7 019926 bbit0 spid_done ,wait_spid_done 
+0x67b8 019927 rtn 
+:      019929 spid_init_flash:
+0x67b9 019930 hjam 0x40 ,core_spid_ctrl 
+0x67ba 019931 hjam 0x0 ,core_spid_delay 
+0x67bb 019932 hfetch 1 ,core_gpio_sel1 
+0x67bc 019933 set0 0 ,pdata 
+0x67bd 019934 set1 1 ,pdata 
+0x67be 019935 hstore 1 ,core_gpio_sel1 
+0x67bf 019936 setarg 0 
+0x67c0 019937 store 4 ,mem_spid_tbuf 
+0x67c1 019938 rtn 
+:      019940 spid_unlock_flash:
+0x67c2 019941 setarg 0 
+0x67c3 019942 hstore 2 ,core_spid_rxlen 
+0x67c4 019943 setarg 1 
+0x67c5 019944 hstore 1 ,core_spid_txlen 
+0x67c6 019945 setarg mem_spid_tbuf 
+0x67c7 019946 hstore 2 ,core_spid_txaddr 
+0x67c8 019947 jam 6 ,mem_spid_tbuf 
+0x67c9 019948 hjam spid_start ,core_misc_ctrl 
+0x67ca 019949 branch wait_spid_done 
+:      019953 spid_write_flash:
+0x67cb 019954 increase 4 ,temp 
+0x67cc 019955 hstoret 2 ,core_spid_txlen 
+0x67cd 019956 increase -4 ,rega 
+0x67ce 019957 arg 2 ,temp 
+0x67cf 019958 istoret 1 ,rega 
+0x67d0 019959 rshift16 pdata ,temp 
+0x67d1 019960 istoret 1 ,contw 
+0x67d2 019961 rshift8 pdata ,temp 
+0x67d3 019962 istoret 1 ,contw 
+0x67d4 019963 istore 1 ,contw 
+0x67d5 019964 deposit rega 
+0x67d6 019965 hstore 2 ,core_spid_txaddr 
+0x67d7 019966 setarg 0 
+0x67d8 019967 hstore 2 ,core_spid_rxlen 
+0x67d9 019968 hjam spid_start ,core_misc_ctrl 
+0x67da 019969 branch wait_spid_done 
+:      019973 spid_read_flash:
+0x67db 019974 hstoret 2 ,core_spid_rxlen 
+0x67dc 019975 setarg 4 
+0x67dd 019976 hstore 2 ,core_spid_txlen 
+0x67de 019977 jam 3 ,mem_spid_tbuf 
+0x67df 019978 setarg mem_spid_tbuf 
+0x67e0 019979 hstore 2 ,core_spid_txaddr 
+0x67e1 019980 deposit rega 
+0x67e2 019981 hstore 2 ,core_spid_rxaddr 
+0x67e3 019982 hfetch 1 ,core_spid_ctrl 
+0x67e4 019983 isolate0 15 ,rega 
+0x67e5 019984 setflag true ,6 ,pdata 
+0x67e6 019985 hstore 1 ,core_spid_ctrl 
+0x67e7 019986 hjam spid_start ,core_misc_ctrl 
+:      019987 spi_read_flash_wait:
+0x67e8 019988 hfetch 1 ,core_dma_status 
+0x67e9 019989 bbit1 7 ,spi_read_flash_wait 
+0x67ea 019990 arg spid_done ,queue 
+0x67eb 019991 call decrypt_code 
+0x67ec 019992 call wait_spid_done 
+0x67ed 019993 isolate1 spid_crcok ,pdata 
+0x67ee 019994 call set_ucode_status 
+0x67ef 019995 fetch 1 ,mem_addr_hi 
+0x67f0 019996 lshift16 pdata ,regb 
+0x67f1 019997 fetch 1 ,mem_addr_mi 
+0x67f2 019998 lshift8 pdata ,pdata 
+0x67f3 019999 ior regb ,regb 
+0x67f4 020000 fetch 1 ,mem_addr_lo 
+0x67f5 020001 ior regb ,pdata 
+0x67f6 020002 iadd temp ,pdata 
+0x67f7 020003 store 1 ,mem_addr_lo 
+0x67f8 020004 rshift8 pdata ,pdata 
+0x67f9 020005 store 1 ,mem_addr_mi 
+0x67fa 020006 rshift8 pdata ,pdata 
+0x67fb 020007 store 1 ,mem_addr_hi 
+0x67fc 020008 rtn 
+:      020012 iicd_init_5m:
+0x67fd 020013 hjam 0xa ,core_clksel 
+0x67fe 020014 hjam 2 ,core_iicd_scl_low 
+0x67ff 020015 hjam 3 ,core_iicd_scl_high 
+0x6800 020016 hjam 3 ,core_iicd_start_setup 
+0x6801 020017 hjam 3 ,core_iicd_start_hold 
+0x6802 020018 hjam 3 ,core_iicd_stop_setup 
+0x6803 020019 hjam 2 ,core_iicd_data_setup 
+0x6804 020020 rtn 
+:      020022 iicd_init_12m:
+0x6805 020023 hjam 5 ,core_iicd_scl_low 
+0x6806 020024 hjam 7 ,core_iicd_scl_high 
+0x6807 020025 hjam 7 ,core_iicd_start_setup 
+0x6808 020026 hjam 7 ,core_iicd_start_hold 
+0x6809 020027 hjam 7 ,core_iicd_stop_setup 
+0x680a 020028 hjam 5 ,core_iicd_data_setup 
+0x680b 020029 rtn 
+:      020033 wait_iicd_done:
+0x680c 020034 hfetch 1 ,core_dma_status 
+0x680d 020035 bbit0 iicd_done ,wait_iicd_done 
+0x680e 020036 rtn 
+:      020039 iicd_read_data:
+0x680f 020040 store 1 ,mem_iicd_tbuf 
+0x6810 020041 setarg mem_iicd_tbuf 
+0x6811 020042 hstore 2 ,core_iicd_txaddr 
+0x6812 020043 setarg 1 
+0x6813 020044 hstore 2 ,core_iicd_txlen 
+0x6814 020045 hstoret 2 ,core_iicd_rxlen 
+0x6815 020046 deposit rega 
+0x6816 020047 hstore 2 ,core_iicd_rxaddr 
+0x6817 020048 hjam 1 ,core_iicd_ctrl 
+0x6818 020049 hjam iicd_start ,core_misc_ctrl 
+0x6819 020050 branch wait_iicd_done 
+:      020052 byteswap_addr_mi:
+0x681a 020053 byteswap pdata ,pdata 
+0x681b 020054 store 2 ,mem_addr_mi 
+0x681c 020055 rtn 
+:      020061 iicd_read_eep_data:
+0x681d 020062 set1 mark_ext_patch ,mark 
+0x681e 020063 bpatch patch20_2 ,mem_patch20 
+0x681f 020064 fetch 2 ,mem_eeprom_base 
+0x6820 020065 iadd regb ,pdata 
+:      020068 iicd_read_eep_adr:
+0x6821 020069 byteswap pdata ,pdata 
+0x6822 020070 store 2 ,mem_addr_mi 
+:      020073 iicd_read_eep:
+0x6823 020074 set1 mark_ext_patch ,mark 
+0x6824 020075 bpatch patch20_3 ,mem_patch20 
+0x6825 020076 setarg 4 
+0x6826 020077 hstore 2 ,core_iicd_txlen 
+0x6827 020078 jam 0xa0 ,mem_iicd_tbuf 
+0x6828 020079 jam 0xa1 ,mem_iicd_tbuf + 3 
+0x6829 020080 setarg mem_iicd_tbuf 
+0x682a 020081 hstore 2 ,core_iicd_txaddr 
+0x682b 020082 hstoret 2 ,core_iicd_rxlen 
+0x682c 020083 deposit rega 
+0x682d 020084 hstore 2 ,core_iicd_rxaddr 
+0x682e 020085 setarg 2 
+0x682f 020086 isolate0 15 ,rega 
+0x6830 020087 setflag true ,0 ,pdata 
+0x6831 020088 hstore 1 ,core_iicd_ctrl 
+0x6832 020089 hjam iicd_start ,core_misc_ctrl 
+0x6833 020090 arg iicd_done ,queue 
+0x6834 020091 call decrypt_code 
+0x6835 020092 call wait_iicd_done 
+0x6836 020093 isolate1 iicd_crcok ,pdata 
+0x6837 020094 call set_ucode_status 
+0x6838 020095 fetch 2 ,mem_addr_mi 
+0x6839 020096 byteswap pdata ,pdata 
+0x683a 020097 iadd temp ,pdata 
+0x683b 020098 byteswap pdata ,pdata 
+0x683c 020099 store 2 ,mem_addr_mi 
+0x683d 020100 rtn 
+:      020106 iicd_write_eep_data:
+0x683e 020107 set1 mark_ext_patch ,mark 
+0x683f 020108 bpatch patch20_4 ,mem_patch20 
+0x6840 020109 fetch 2 ,mem_eeprom_base 
+0x6841 020110 iadd regb ,pdata 
+:      020113 iicd_write_ota_data:
+0x6842 020114 store 2 ,mem_pdatatemp 
+0x6843 020115 set1 mark_ext_patch ,mark 
+0x6844 020116 bpatch patch20_5 ,mem_patch20 
+0x6845 020117 storet 2 ,mem_temp 
+0x6846 020118 copy rega ,pdata 
+0x6847 020119 store 2 ,mem_contr 
+:      020120 iicd_write_eep_loop:
+0x6848 020121 call iicd_eep_transparency 
+0x6849 020123 fetcht 2 ,mem_regb 
+0x684a 020124 fetch 2 ,mem_contr 
+0x684b 020125 copy pdata ,rega 
+0x684c 020126 fetch 2 ,mem_pdatatemp 
+0x684d 020128 call iicd_write_eep 
+0x684e 020130 fetch 2 ,mem_regb 
+0x684f 020131 fetcht 2 ,mem_contr 
+0x6850 020132 iadd temp ,temp 
+0x6851 020133 storet 2 ,mem_contr 
+0x6852 020134 fetcht 2 ,mem_pdatatemp 
+0x6853 020135 iadd temp ,temp 
+0x6854 020136 storet 2 ,mem_pdatatemp 
+0x6855 020137 fetch 2 ,mem_temp 
+0x6856 020138 nbranch iicd_write_eep_loop ,blank 
+0x6857 020139 rtn 
+:      020147 iicd_eep_transparency:
+0x6858 020148 set1 mark_ext_patch ,mark 
+0x6859 020149 bpatch patch20_6 ,mem_patch20 
+0x685a 020150 fetch 2 ,mem_eeprom_block_size 
+0x685b 020151 increase -1 ,pdata 
+0x685c 020152 fetcht 2 ,mem_pdatatemp 
+0x685d 020153 ior temp ,pdata 
+0x685e 020154 increase 1 ,pdata 
+0x685f 020155 store 3 ,mem_regc 
+0x6860 020157 fetch 2 ,mem_temp 
+0x6861 020158 iadd temp ,pdata 
+0x6862 020160 fetcht 3 ,mem_regc 
+0x6863 020161 isub temp ,pdata 
+0x6864 020162 nbranch iicd_eep_deal_short_packet ,positive 
+0x6865 020163 store 2 ,mem_temp 
+0x6866 020164 fetch 3 ,mem_regc 
+0x6867 020165 fetcht 2 ,mem_pdatatemp 
+0x6868 020166 isub temp ,pdata 
+0x6869 020167 store 2 ,mem_regb 
+0x686a 020168 rtn 
+:      020169 iicd_eep_deal_short_packet:
+0x686b 020170 fetch 2 ,mem_temp 
+0x686c 020171 store 2 ,mem_regb 
+0x686d 020172 setarg 0 
+0x686e 020173 store 2 ,mem_temp 
+0x686f 020174 rtn 
+:      020179 iicd_write_eep:
+0x6870 020180 copy pdata ,regb 
+0x6871 020181 set1 mark_ext_patch ,mark 
+0x6872 020182 bpatch patch20_7 ,mem_patch20 
+0x6873 020183 copy regb ,pdata 
+0x6874 020184 increase 3 ,temp 
+0x6875 020185 hstoret 2 ,core_iicd_txlen 
+0x6876 020186 increase -3 ,rega 
+0x6877 020187 ifetcht 3 ,rega 
+0x6878 020188 copy temp ,regb 
+0x6879 020189 arg 0xa0 ,temp 
+0x687a 020190 istoret 1 ,rega 
+0x687b 020191 byteswap pdata ,pdata 
+0x687c 020192 istore 2 ,contw 
+0x687d 020193 deposit rega 
+0x687e 020194 hstore 2 ,core_iicd_txaddr 
+0x687f 020195 setarg 0 
+0x6880 020196 hstore 2 ,core_iicd_rxlen 
+0x6881 020197 hjam 1 ,core_iicd_ctrl 
+0x6882 020198 hjam iicd_start ,core_misc_ctrl 
+0x6883 020199 call wait_iicd_done 
+0x6884 020200 copy regb ,pdata 
+0x6885 020201 istore 3 ,rega 
+0x6886 020202 nop 10000 
+0x6887 020203 nop 10000 
+0x6888 020204 nop 10000 
+0x6889 020205 rtn 
+:      020209 otp_enable_chgpump:
+0x688a 020210 hjam 0x70 ,rfen_chgpump 
+0x688b 020211 nop param_chgpump_delay 
+0x688c 020212 rtn 
+:      020214 otp_disable_chgpump:
+0x688d 020215 hjam 0x30 ,rfen_chgpump 
+0x688e 020216 rtn 
+:      020218 otp_set_addr:
+0x688f 020219 lshift3 pdata ,pdata 
+0x6890 020220 hstore 2 ,core_otp_addr 
+0x6891 020221 hjam 0 ,core_otpd_ctrl 
+0x6892 020222 rtn 
+:      020225 otp_write:
+0x6893 020226 call otp_set_addr 
+0x6894 020227 call otp_ce 
+:      020228 otp_program:
+0x6895 020229 ifetcht 1 ,rega 
+0x6896 020230 increase 1 ,rega 
+0x6897 020231 force 0 ,queue 
+:      020232 otp_program_bit:
+0x6898 020233 qisolate0 temp 
+0x6899 020234 branch otp_skip_0 ,true 
+0x689a 020235 hfetch 1 ,core_otp_din 
+0x689b 020236 set1 6 ,pdata 
+0x689c 020237 set1 7 ,pdata 
+0x689d 020238 hstore 1 ,core_otp_din 
+0x689e 020239 hjam 0x02 ,core_otp_ctrl 
+0x689f 020240 hjam 0x82 ,core_otp_ctrl 
+0x68a0 020241 set0 7 ,pdata 
+0x68a1 020242 hstore 1 ,core_otp_din 
+0x68a2 020243 hjam 0x8a ,core_otp_ctrl 
+0x68a3 020244 nop 11 
+0x68a4 020245 hjam 0xca ,core_otp_ctrl 
+0x68a5 020246 nop 33 
+0x68a6 020247 hjam 0x4a ,core_otp_ctrl 
+0x68a7 020248 nop 44 
+0x68a8 020249 hjam 0xca ,core_otp_ctrl 
+0x68a9 020250 nop 22 
+0x68aa 020251 hjam 0x8a ,core_otp_ctrl 
+0x68ab 020252 nop 33 
+0x68ac 020253 hjam 0x82 ,core_otp_ctrl 
+0x68ad 020254 nop 1 
+0x68ae 020255 hjam 0x92 ,core_otp_ctrl 
+0x68af 020256 nop 10 
+0x68b0 020257 hjam 0xb2 ,core_otp_ctrl 
+0x68b1 020258 hfetch 1 ,core_otp_rdata 
+0x68b2 020259 hjam 0x92 ,core_otp_ctrl 
+0x68b3 020260 nop 1 
+0x68b4 020261 hjam 0x82 ,core_otp_ctrl 
+0x68b5 020262 qisolate0 pdata 
+0x68b6 020263 branch otp_program_bit ,true 
+:      020264 otp_skip_0:
+0x68b7 020265 hfetch 2 ,core_otp_addr 
+0x68b8 020266 increase 1 ,pdata 
+0x68b9 020267 hstore 2 ,core_otp_addr 
+0x68ba 020268 increase 1 ,queue 
+0x68bb 020269 compare 8 ,queue ,0xf 
+0x68bc 020270 nbranch otp_program_bit ,true 
+0x68bd 020271 loop otp_program 
+0x68be 020272 hjam 0x83 ,core_otp_ctrl 
+0x68bf 020273 rtn 
+:      020275 otp_ce:
+0x68c0 020276 hjam 0x82 ,core_otp_ctrl 
+0x68c1 020277 nop 12 
+0x68c2 020278 hjam 0x80 ,core_otp_ctrl 
+0x68c3 020279 hjam 0x82 ,core_otp_ctrl 
+0x68c4 020280 nop 150 
+0x68c5 020281 rtn 
+:      020284 otpd_read_init:
+0x68c6 020285 call otp_ce 
+:      020286 otpd_read_special:
+0x68c7 020287 hjam 0xa2 ,core_otp_ctrl 
+0x68c8 020288 deposit rega 
+0x68c9 020289 hstore 2 ,core_otpd_addr 
+0x68ca 020290 set1 11 ,temp 
+0x68cb 020291 isolate0 15 ,pdata 
+0x68cc 020292 setflag true ,15 ,temp 
+0x68cd 020293 hstoret 2 ,core_otpd_len 
+0x68ce 020294 hjam otpd_start ,core_misc_ctrl 
+0x68cf 020295 rtn 
+:      020297 otpd_wait_end:
+0x68d0 020298 hfetch 1 ,core_dma_status 
+0x68d1 020299 bbit0 otpd_done ,otpd_wait_end 
+0x68d2 020300 rtn 
+:      020303 otpd_read_data:
+0x68d3 020304 call otp_set_addr 
+0x68d4 020305 call otpd_read_init 
+0x68d5 020306 call otpd_wait_end 
+0x68d6 020307 hjam 0x83 ,core_otp_ctrl 
+0x68d7 020308 rtn 
+:      020313 otpd_read_code:
+0x68d8 020314 hfetch 2 ,core_current_otp_addr 
+0x68d9 020315 hstore 2 ,core_otp_addr 
+0x68da 020316 call otpd_read_init 
+0x68db 020317 arg otpd_done ,queue 
+0x68dc 020318 call decrypt_code 
+0x68dd 020319 call otpd_wait_end 
+0x68de 020320 isolate1 otpd_crcok ,pdata 
+0x68df 020321 call set_ucode_status 
+0x68e0 020322 hjam 0x83 ,core_otp_ctrl 
+0x68e1 020323 rtn 
+:      020326 uartd_rx_cnt_got_first_byte:
+0x68e2 020327 jam 1 ,mem_uartd_rxitems_got_data 
+0x68e3 020328 force uart_rx_timer ,queue 
+0x68e4 020329 fetch 2 ,mem_uartd_rx_timeout 
+0x68e5 020330 branch timer_init 
+:      020331 uartd_rx_cnt_with_threshold:
+0x68e6 020332 hfetch 2 ,core_uart_rxitems 
+0x68e7 020333 rtn blank 
+0x68e8 020334 fetcht 1 ,mem_uartd_rxitems_threshold 
+0x68e9 020335 isub temp ,null 
+0x68ea 020336 branch uartd_rx_cnt_rtn_value ,positive 
+0x68eb 020337 fetch 1 ,mem_uartd_rxitems_got_data 
+0x68ec 020338 branch uartd_rx_cnt_got_first_byte ,blank 
+0x68ed 020339 arg uart_rx_timer ,queue 
+0x68ee 020340 call timer_check 
+0x68ef 020341 branch uartd_rx_cnt_rtn_value ,blank 
+0x68f0 020342 setarg 0 
+0x68f1 020343 rtn 
+:      020344 uartd_rx_cnt_rtn_value:
+0x68f2 020345 force uart_rx_timer ,queue 
+0x68f3 020346 call timer_stop 
+0x68f4 020347 jam 0 ,mem_uartd_rxitems_got_data 
+0x68f5 020348 hfetch 2 ,core_uart_rxitems 
+0x68f6 020349 rtn 
+:      020356 uartd_prepare_tx:
+0x68f7 020357 hfetch 2 ,core_uart_twptr 
+0x68f8 020358 iforce contwu 
+0x68f9 020359 rtn 
+:      020361 uartd_send:
+0x68fa 020362 deposit contwu 
+0x68fb 020363 hstore 2 ,core_uart_twptr 
+0x68fc 020364 rtn 
+:      020366 uartd_prepare_rx:
+0x68fd 020367 hfetch 2 ,core_uart_rxitems 
+0x68fe 020368 rtn blank 
+0x68ff 020369 iforce loopcnt 
+0x6900 020370 hfetch 2 ,core_uart_rrptr 
+0x6901 020371 iforce contru 
+0x6902 020372 rtn 
+:      020375 uartd_rxdone_by_len:
+0x6903 020376 hfetch 2 ,core_uart_rrptr 
+0x6904 020377 iadd temp ,pdata 
+0x6905 020378 copy pdata ,contru 
+:      020379 uartd_rxdone:
+0x6906 020380 deposit contru 
+0x6907 020381 hstore 2 ,core_uart_rrptr 
+0x6908 020382 rtn 
+:      020384 uart_set_baud_by_mem:
+0x6909 020385 fetch uart_baud_len ,mem_baud 
+0x690a 020386 hstore uart_baud_len ,core_uart_baud 
+0x690b 020387 rtn 
+:      020391 eeprom_store_le_reconn_info:
+0x690c 020392 fetch 6 ,mem_le_plap 
+0x690d 020393 store 6 ,mem_temp_lap 
+0x690e 020394 jam rec_4_mode ,mem_record_bt_mode 
+0x690f 020395 branch eeprom_store_reconn_info 
+:      020396 eeprom_store_bd_reconn_info:
+0x6910 020397 fetch 6 ,mem_plap 
+0x6911 020398 store 6 ,mem_temp_lap 
+0x6912 020399 jam rec_3_mode ,mem_record_bt_mode 
+:      020400 eeprom_store_reconn_info:
+0x6913 020401 set1 mark_ext_patch ,mark 
+0x6914 020402 bpatch patch21_0 ,mem_patch21 
+0x6915 020403 call eeprom_store_remote_bdaddr 
+0x6916 020404 call eeprom_store_last_record_index 
+0x6917 020405 fetch 1 ,mem_record_bt_mode 
+0x6918 020406 beq rec_4_mode ,eeprom_store_rec_4_mode 
+0x6919 020407 beq rec_3_mode ,eeprom_store_link_key 
+0x691a 020408 rtn 
+:      020409 eeprom_store_rec_4_mode:
+0x691b 020410 call eeprom_store_le_ltl 
+0x691c 020411 branch eeprom_store_le_local_addr 
+:      020414 eeprom_load_reconn_info:
+0x691d 020415 set1 mark_ext_patch ,mark 
+0x691e 020416 bpatch patch21_1 ,mem_patch21 
+0x691f 020417 call eeprom_load_reconn_bdaddr 
+0x6920 020418 fetch 1 ,mem_select_list_item 
+0x6921 020419 rtneq 0xff 
+0x6922 020420 fetch 6 ,mem_temp_lap 
+0x6923 020421 store 6 ,mem_hci_plap 
+0x6924 020422 fetch 1 ,mem_record_bt_mode 
+0x6925 020423 store 1 ,mem_xrecord_mode 
+0x6926 020424 beq rec_3_mode ,eeprom_load_rec_3_mode 
+0x6927 020425 beq rec_4_mode ,eeprom_load_rec_4_mode 
+0x6928 020426 rtn 
+:      020427 eeprom_load_reconn_bdaddr:
+0x6929 020428 call eeprom_load_last_record_index 
+0x692a 020429 fetch 1 ,mem_select_list_item 
+0x692b 020430 rtneq 0xff 
+0x692c 020431 branch eeprom_load_remote_bdaddr 
+:      020432 eeprom_load_rec_3_mode:
+0x692d 020433 call eeprom_load_link_key 
+0x692e 020434 branch check_link_key_load 
+:      020435 eeprom_load_rec_4_mode:
+0x692f 020436 call eeprom_load_ltk_key 
+0x6930 020437 branch check_ltk_load 
+:      020438 eeprom_clear_bd_reconn_info:
+0x6931 020439 call eeprom_load_bdaddr_list 
+0x6932 020440 disable user 
+0x6933 020441 call find_addr_from_bd_list 
+0x6934 020442 nbranch at_error_rev_end ,user 
+:      020443 eeprom_clear_reconn_info_common:
+0x6935 020444 fetcht 2 ,mem_list_item_ptr 
+0x6936 020445 increase -1 ,temp 
+0x6937 020446 setarg 0 
+0x6938 020447 istore 7 ,temp 
+0x6939 020448 arg 28 ,temp 
+0x693a 020449 arg mem_bdaddr_list_buff + 7 ,rega 
+0x693b 020450 arg eeprom_bdaddr_list ,regb 
+0x693c 020451 branch iicd_write_eep_data 
+:      020453 eeprom_clear_all_reconn_info:
+0x693d 020454 set1 mark_ext_patch ,mark 
+0x693e 020455 bpatch patch21_2 ,mem_patch21 
+0x693f 020456 arg mem_bdaddr_list_buff ,contw 
+0x6940 020457 force 4 ,loopcnt 
+0x6941 020458 call memset0 
+0x6942 020459 arg 28 ,temp 
+0x6943 020460 arg mem_bdaddr_list_buff ,rega 
+0x6944 020461 arg eeprom_bdaddr_list ,regb 
+0x6945 020462 branch iicd_write_eep_data 
+:      020464 eeprom_erase_reconn_info:
+0x6946 020465 set1 mark_ext_patch ,mark 
+0x6947 020466 bpatch patch21_3 ,mem_patch21 
+0x6948 020467 setarg 0x0 
+0x6949 020468 store 3 ,mem_plap 
+0x694a 020469 istore 3 ,contw 
+0x694b 020470 branch eeprom_store_remote_bdaddr 
+:      020472 eeprom_load_last_record_index:
+0x694c 020473 arg 1 ,temp 
+0x694d 020474 arg mem_select_list_item ,rega 
+0x694e 020475 arg eeprom_last_record ,regb 
+0x694f 020476 branch iicd_read_eep_data 
+:      020478 eeprom_store_last_record_index:
+0x6950 020479 arg 1 ,temp 
+0x6951 020480 arg mem_select_list_item ,rega 
+0x6952 020481 arg eeprom_last_record ,regb 
+0x6953 020482 branch iicd_write_eep_data 
+:      020485 eeprom_store_remote_bdaddr:
+0x6954 020486 set1 mark_ext_patch ,mark 
+0x6955 020487 bpatch patch21_4 ,mem_patch21 
+0x6956 020488 call eeprom_load_bdaddr_list 
+0x6957 020489 disable user 
+0x6958 020490 call find_addr_from_bd_list 
+0x6959 020491 rtn user 
+:      020492 eeprom_store_remote_addr_unfind:
+0x695a 020493 jam 0 ,mem_select_list_item 
+0x695b 020494 fetch 6 ,mem_temp_lap 
+0x695c 020495 store 6 ,mem_bdaddr_list_buff + 1 
+0x695d 020496 fetch 1 ,mem_record_bt_mode 
+0x695e 020497 store 1 ,mem_bdaddr_list_buff 
+0x695f 020498 arg 28 ,temp 
+0x6960 020499 arg mem_bdaddr_list_buff ,rega 
+0x6961 020500 arg eeprom_bdaddr_list ,regb 
+0x6962 020501 branch iicd_write_eep_data 
+:      020504 eeprom_store_le_local_addr:
+0x6963 020505 arg 6 ,temp 
+0x6964 020506 arg mem_le_lap ,rega 
+0x6965 020507 arg eeprom_le_reconn_local_addr ,regb 
+0x6966 020508 branch iicd_write_eep_data 
+:      020510 eeprom_load_le_loacal_addr:
+0x6967 020511 arg 6 ,temp 
+0x6968 020512 arg mem_le_lap ,rega 
+0x6969 020513 arg eeprom_le_reconn_local_addr ,regb 
+0x696a 020514 branch iicd_read_eep_data 
+:      020517 eeprom_load_remote_bdaddr:
+0x696b 020518 set1 mark_ext_patch ,mark 
+0x696c 020519 bpatch patch21_5 ,mem_patch21 
+0x696d 020520 arg 7 ,temp 
+0x696e 020521 arg mem_temp_reconn_record ,rega 
+0x696f 020522 arg eeprom_bdaddr_list ,regb 
+0x6970 020523 fetch 1 ,mem_select_list_item 
+0x6971 020524 mul32 pdata ,7 ,pdata 
+0x6972 020525 iadd regb ,regb 
+0x6973 020526 branch iicd_read_eep_data 
+:      020528 eeprom_linkkey_addr:
+0x6974 020529 arg 0x10 ,temp 
+0x6975 020530 arg eeprom_linkkey_list ,regb 
+0x6976 020531 fetch 1 ,mem_select_list_item 
+0x6977 020532 lshift4 pdata ,pdata 
+0x6978 020533 iadd regb ,regb 
+0x6979 020534 rtn 
+:      020536 eeprom_store_le_ltl:
+0x697a 020537 arg mem_le_ltk ,rega 
+0x697b 020538 branch eeprom_store_link_key_common 
+:      020539 eeprom_store_link_key:
+0x697c 020540 arg mem_link_key ,rega 
+:      020541 eeprom_store_link_key_common:
+0x697d 020542 set1 mark_ext_patch ,mark 
+0x697e 020543 bpatch patch21_6 ,mem_patch21 
+0x697f 020544 call eeprom_linkkey_addr 
+0x6980 020545 branch iicd_write_eep_data 
+:      020547 eeprom_load_ltk_key:
+0x6981 020548 arg mem_le_ltk ,rega 
+0x6982 020549 branch eeprom_load_link_key_common 
+:      020550 eeprom_load_link_key:
+0x6983 020551 arg mem_link_key ,rega 
+:      020552 eeprom_load_link_key_common:
+0x6984 020553 set1 mark_ext_patch ,mark 
+0x6985 020554 bpatch patch21_7 ,mem_patch21 
+0x6986 020555 call eeprom_linkkey_addr 
+0x6987 020556 branch iicd_read_eep_data 
+:      020560 eeprom_load_bdaddr_list:
+0x6988 020561 arg 28 ,temp 
+0x6989 020562 arg mem_bdaddr_list_buff + 7 ,rega 
+0x698a 020563 arg eeprom_bdaddr_list ,regb 
+0x698b 020564 branch iicd_read_eep_data 
+:      020566 find_addr_from_bd_list:
+0x698c 020567 set1 mark_ext_patch ,mark 
+0x698d 020568 bpatch patch22_0 ,mem_patch22 
+0x698e 020569 setarg mem_bdaddr_list_buff + 7 
+0x698f 020570 store 2 ,mem_list_item_ptr 
+0x6990 020571 jam 0 ,mem_select_list_item 
+0x6991 020572 arg 4 ,loopcnt 
+:      020573 find_addr_from_list:
+0x6992 020574 copy loopcnt ,pdata 
+0x6993 020575 store 1 ,mem_pdatatemp 
+0x6994 020576 fetch 2 ,mem_list_item_ptr 
+0x6995 020577 copy pdata ,rega 
+0x6996 020578 call find_addr_from_list_compare 
+0x6997 020579 rtn user 
+0x6998 020580 fetch 2 ,mem_list_item_ptr 
+0x6999 020581 increase 7 ,pdata 
+0x699a 020582 store 2 ,mem_list_item_ptr 
+0x699b 020583 fetch 1 ,mem_select_list_item 
+0x699c 020584 increase 1 ,pdata 
+0x699d 020585 store 1 ,mem_select_list_item 
+0x699e 020586 fetch 1 ,mem_pdatatemp 
+0x699f 020587 copy pdata ,loopcnt 
+0x69a0 020588 loop find_addr_from_list 
+0x69a1 020589 rtn 
+:      020591 check_link_key_load:
+0x69a2 020592 fetch 8 ,mem_link_key 
+0x69a3 020593 fetcht 8 ,mem_link_key + 8 
+0x69a4 020594 ior temp ,pdata 
+0x69a5 020595 rtn blank 
+0x69a6 020596 jam 1 ,mem_link_key_exists 
+0x69a7 020597 rtn 
+:      020598 check_ltk_load:
+0x69a8 020599 fetch 6 ,mem_hci_plap 
+0x69a9 020600 rtn blank 
+0x69aa 020601 jam 1 ,mem_ltk_exists 
+0x69ab 020602 rtn 
+:      020604 find_addr_from_list_compare:
+0x69ac 020605 arg mem_temp_reconn_record ,regb 
+0x69ad 020606 arg 7 ,loopcnt 
+0x69ae 020607 call string_compare 
+0x69af 020608 branch enable_usr ,zero 
+0x69b0 020609 rtn 
+:      020610 enable_usr:
+0x69b1 020611 enable user 
+0x69b2 020612 rtn 
+:      020613 le_eeprom_load_reconn_info:
+0x69b3 020614 branch assert 
+:      020621 gpio_set_wake_by_current_state:
+0x69b4 020622 set1 mark_ext_patch ,mark 
+0x69b5 020623 bpatch patch22_1 ,mem_patch22 
+0x69b6 020624 set1 7 ,temp 
+0x69b7 020625 call gpio_get_bit 
+0x69b8 020626 nsetflag true ,7 ,temp 
+:      020631 gpio_set_wake:
+0x69b9 020632 set1 mark_ext_patch ,mark 
+0x69ba 020633 bpatch patch22_2 ,mem_patch22 
+0x69bb 020634 isolate0 7 ,temp 
+0x69bc 020635 and temp ,0x1f ,queue 
+0x69bd 020636 fetch 4 ,mem_gpio_wakeup_low 
+0x69be 020637 qsetflag true ,pdata 
+0x69bf 020638 store 4 ,mem_gpio_wakeup_low 
+0x69c0 020639 fetch 4 ,mem_gpio_wakeup_high 
+0x69c1 020640 nqsetflag true ,pdata 
+0x69c2 020641 store 4 ,mem_gpio_wakeup_high 
+0x69c3 020642 rtn 
+:      020645 gpio_clr_wake:
+0x69c4 020646 set1 mark_ext_patch ,mark 
+0x69c5 020647 bpatch patch22_3 ,mem_patch22 
+0x69c6 020648 isolate0 7 ,temp 
+0x69c7 020649 and temp ,0x1f ,queue 
+0x69c8 020650 fetch 4 ,mem_gpio_wakeup_low 
+0x69c9 020651 qset0 pdata 
+0x69ca 020652 store 4 ,mem_gpio_wakeup_low 
+0x69cb 020653 fetch 4 ,mem_gpio_wakeup_high 
+0x69cc 020654 qset0 pdata 
+0x69cd 020655 store 4 ,mem_gpio_wakeup_high 
+0x69ce 020656 rtn 
+:      020659 gpio_config_input_nowake:
+0x69cf 020660 call gpio_clr_wake 
+0x69d0 020661 branch gpio_config_input_without_wake 
+:      020664 gpio_config_input:
+0x69d1 020665 ncall gpio_set_wake ,wake 
+:      020667 gpio_config_input_without_wake:
+0x69d2 020668 arg core_gpio_pd0 ,contw 
+0x69d3 020669 call gpio_set_bit 
+0x69d4 020670 setflip gpio_active_bit ,temp 
+0x69d5 020671 arg core_gpio_pu0 ,contw 
+0x69d6 020672 call gpio_set_bit 
+0x69d7 020673 set0 gpio_active_bit ,temp 
+0x69d8 020674 arg core_gpio_oe0 ,contw 
+0x69d9 020675 branch gpio_set_bit 
+:      020678 gpio_config_output:
+0x69da 020679 setflip gpio_active_bit ,temp 
+0x69db 020680 call gpio_out 
+0x69dc 020681 set1 gpio_active_bit ,temp 
+0x69dd 020682 arg core_gpio_oe0 ,contw 
+0x69de 020683 branch gpio_set_bit 
+:      020685 gpio_common:
+0x69df 020686 and temp ,0x07 ,queue 
+0x69e0 020687 rshift3 temp ,pdata 
+0x69e1 020688 and_into 3 ,pdata 
+0x69e2 020689 iadd contw ,contw 
+0x69e3 020690 ifetch 1 ,contw 
+0x69e4 020691 rtn 
+:      020695 gpio_get_bit:
+0x69e5 020696 arg core_gpio_in ,contw 
+0x69e6 020697 call gpio_common 
+0x69e7 020698 isolate1 gpio_active_bit ,temp 
+0x69e8 020699 branch gpio_get_bit_reverse ,true 
+0x69e9 020700 qisolate0 pdata 
+0x69ea 020701 rtn 
+:      020702 gpio_get_bit_reverse:
+0x69eb 020703 qisolate1 pdata 
+0x69ec 020704 rtn 
+:      020706 gpio_out_inactive:
+0x69ed 020707 isolate1 7 ,null 
+0x69ee 020708 branch gpio_out_flag 
+:      020710 gpio_out_active:
+0x69ef 020711 isolate0 7 ,null 
+:      020714 gpio_out_flag:
+0x69f0 020715 setarg 0 
+0x69f1 020716 nsetflag true ,gpio_active_bit ,pdata 
+0x69f2 020717 ixor temp ,temp 
+:      020720 gpio_out:
+0x69f3 020721 arg core_gpio_out0 ,contw 
+:      020724 gpio_set_bit:
+0x69f4 020725 call gpio_common 
+0x69f5 020726 isolate1 gpio_active_bit ,temp 
+0x69f6 020727 qsetflag true ,pdata 
+0x69f7 020728 istore 1 ,contw 
+0x69f8 020729 rtn 
+:      020731 gpio_test:
+0x69f9 020732 fetch 1 ,mem_seqi 
+0x69fa 020733 rtneq 0x7f 
+0x69fb 020734 hjam 0 ,core_gpio_out3 
+0x69fc 020735 nop 30 
+0x69fd 020736 hjam 8 ,core_gpio_out3 
+0x69fe 020737 rtn 
+:      020742 set_pwm_blink:
+0x69ff 020743 lshift8 pdata ,pdata 
+0x6a00 020744 lshift4 pdata ,pdata 
+0x6a01 020745 hstore 2 ,core_pwm_ncnt0 
+0x6a02 020746 hstore 2 ,core_pwm_pcnt0 
+0x6a03 020747 rtn 
+:      020749 set_pwm_steadyon:
+0x6a04 020750 setarg 0 
+0x6a05 020751 hstore 2 ,core_pwm_ncnt0 
+0x6a06 020752 setarg 1 
+0x6a07 020753 hstore 2 ,core_pwm_pcnt0 
+0x6a08 020754 rtn 
+:      020756 set_pwm_off:
+0x6a09 020757 setarg 0 
+0x6a0a 020758 hstore 2 ,core_pwm_ncnt0 
+0x6a0b 020759 hstore 2 ,core_pwm_pcnt0 
+0x6a0c 020760 rtn 
+:      020765 init_filter_ram:
+0x6a0d 020766 arg 0x8800 ,contw 
+0x6a0e 020767 arg 0x20 ,loopcnt 
+0x6a0f 020768 call memset0 
+0x6a10 020769 setarg 0x4f9 
+0x6a11 020770 hstore 2 ,0x8848 
+0x6a12 020771 hstore 2 ,0x884a 
+0x6a13 020772 hstore 2 ,0x884c 
+0x6a14 020773 hstore 2 ,0x886c 
+0x6a15 020774 hstore 2 ,0x888c 
+0x6a16 020775 hstore 2 ,0x88ac 
+0x6a17 020776 setarg 0x204 
+0x6a18 020777 hstore 2 ,0x88ae 
+0x6a19 020778 setarg 0x0506 
+0x6a1a 020779 hstore 2 ,0x88b0 
+0x6a1b 020780 setarg 0x0504 
+0x6a1c 020781 hstore 2 ,0x88b2 
+0x6a1d 020782 setarg 0x0200 
+0x6a1e 020783 hstore 2 ,0x88b4 
+0x6a1f 020784 setarg 0xFEFB 
+0x6a20 020785 hstore 2 ,0x88b6 
+0x6a21 020786 setarg 0xFAF9 
+0x6a22 020787 hstore 2 ,0x88b8 
+0x6a23 020788 setarg 0xFAFB 
+0x6a24 020789 hstore 2 ,0x88ba 
+0x6a25 020790 setarg 0xFD00 
+0x6a26 020791 hstore 2 ,0x88bc 
+0x6a27 020792 setarg 0x0408 
+0x6a28 020793 hstore 2 ,0x88be 
+0x6a29 020794 setarg 0x0A0C 
+0x6a2a 020795 hstore 2 ,0x88c0 
+0x6a2b 020796 setarg 0x0B09 
+0x6a2c 020797 hstore 2 ,0x88c2 
+0x6a2d 020798 setarg 0x0500 
+0x6a2e 020799 hstore 2 ,0x88c4 
+0x6a2f 020800 setarg 0xF8F1 
+0x6a30 020801 hstore 2 ,0x88c6 
+0x6a31 020802 setarg 0xECE8 
+0x6a32 020803 hstore 2 ,0x88c8 
+0x6a33 020804 setarg 0xE9EB 
+0x6a34 020805 hstore 2 ,0x88ca 
+0x6a35 020806 setarg 0xF500 
+0x6a36 020807 hstore 2 ,0x88cc 
+0x6a37 020808 setarg 0x1223 
+0x6a38 020809 hstore 2 ,0x88ce 
+0x6a39 020810 setarg 0x374B 
+0x6a3a 020811 hstore 2 ,0x88d0 
+0x6a3b 020812 setarg 0x5E71 
+0x6a3c 020813 hstore 2 ,0x88d2 
+0x6a3d 020814 setarg 0x787F 
+0x6a3e 020815 hstore 2 ,0x88d4 
+0x6a3f 020816 rtn 
+:      020818 enable_pcm:
+0x6a40 020819 set1 mark_ext_patch ,mark 
+0x6a41 020820 bpatch patch22_4 ,mem_patch22 
+0x6a42 020821 hfetch 2 ,core_clkoff 
+0x6a43 020822 set0 clock_off_codec ,pdata 
+0x6a44 020823 hstore 2 ,core_clkoff 
+0x6a45 020824 hjam 0x11 ,core_enc_ctrl 
+0x6a46 020825 hjam 0x1 ,core_cvsd_ctrl 
+0x6a47 020826 hjam 0x1 ,core_codec_ctrl 
+0x6a48 020827 hjam 0x11 ,core_dec_ctrl 
+0x6a49 020828 rtn 
+:      020830 disable_pcm:
+0x6a4a 020831 set1 mark_ext_patch ,mark 
+0x6a4b 020832 bpatch patch22_5 ,mem_patch22 
+0x6a4c 020833 hfetch 2 ,core_clkoff 
+0x6a4d 020834 set1 clock_off_codec ,pdata 
+0x6a4e 020835 hstore 2 ,core_clkoff 
+0x6a4f 020836 hjam 0x4 ,core_enc_ctrl 
+0x6a50 020837 hjam 0x4 ,core_dec_ctrl 
+0x6a51 020838 hjam 0x0 ,core_cvsd_ctrl 
+0x6a52 020839 hjam 0x0 ,core_codec_ctrl 
+0x6a53 020840 rtn 
+:      020844 get_sco_data:
+0x6a54 020845 fetch 1 ,mem_state 
+0x6a55 020846 rtnbit0 state_insco 
+0x6a56 020847 arg mem_sco_obuf ,contw 
+0x6a57 020848 arg 30 ,loopcnt 
+:      020849 get_sco_data_loop:
+0x6a58 020850 hfetch 1 ,core_pcminfifo 
+0x6a59 020851 istore 1 ,contw 
+0x6a5a 020852 loop get_sco_data_loop 
+0x6a5b 020853 rtn 
+:      020856 process_sco_data:
+0x6a5c 020857 fetch 1 ,mem_state 
+0x6a5d 020858 rtnbit0 state_insco 
+0x6a5e 020859 arg mem_sco_ibuf ,contr 
+0x6a5f 020860 force 30 ,loopcnt 
+:      020861 process_sco_loop:
+0x6a60 020862 ifetch 1 ,contr 
+0x6a61 020863 hstore 1 ,core_pcmoutfifo 
+0x6a62 020864 loop process_sco_loop 
+0x6a63 020865 rtn 
+:      020867 init_sched:
+0x6a64 020868 rtn 
+:      020873 gpio_cfg_uart_tx_output:
+0x6a65 020874 call gpio_uart2gpio 
+0x6a66 020875 arg uart_wakeup_tx ,temp 
+0x6a67 020876 branch gpio_config_output 
+:      020878 gpio_pu_uart_tx:
+0x6a68 020879 call gpio_cfg_uart_tx_output 
+0x6a69 020880 arg uart_wakeup_tx ,temp 
+0x6a6a 020881 branch gpio_out_inactive 
+:      020883 gpio_pd_uart_tx:
+0x6a6b 020884 call gpio_cfg_uart_tx_output 
+0x6a6c 020885 arg uart_wakeup_tx ,temp 
+0x6a6d 020886 branch gpio_out_active 
+:      020888 gpio_cfg_uart_rx_output:
+0x6a6e 020889 call gpio_uart2gpio 
+0x6a6f 020890 arg uart_wakeup_rx ,temp 
+0x6a70 020891 branch gpio_config_output 
+:      020893 gpio_pu_uart_rx:
+0x6a71 020894 call gpio_cfg_uart_rx_output 
+0x6a72 020895 arg uart_wakeup_rx ,temp 
+0x6a73 020896 branch gpio_out_inactive 
+:      020898 gpio_pd_uart_rx:
+0x6a74 020899 call gpio_cfg_uart_rx_output 
+0x6a75 020900 arg uart_wakeup_rx ,temp 
+0x6a76 020901 branch gpio_out_active 
+:      020903 gpio_tx_config_input_with_pu:
+0x6a77 020904 call gpio_uart2gpio 
+0x6a78 020905 hfetch 1 ,core_gpio_pu0 
+0x6a79 020906 set1 uart_wakeup_tx ,pdata 
+0x6a7a 020907 hstore 1 ,core_gpio_pu0 
+0x6a7b 020908 arg uart_wakeup_tx ,temp 
+0x6a7c 020909 branch gpio_config_input 
+:      020911 gpio_rx_config_input_with_pu:
+0x6a7d 020912 call gpio_uart2gpio 
+0x6a7e 020913 hfetch 1 ,core_gpio_pu0 
+0x6a7f 020914 set1 uart_wakeup_rx ,pdata 
+0x6a80 020915 hstore 1 ,core_gpio_pu0 
+0x6a81 020916 arg uart_wakeup_rx ,temp 
+0x6a82 020917 branch gpio_config_input 
+:      020919 gpio_gpio2uart:
+0x6a83 020920 hfetch 1 ,core_gpio_sel1 
+0x6a84 020921 or_into 0x04 ,pdata 
+0x6a85 020922 hstore 1 ,core_gpio_sel1 
+0x6a86 020923 rtn 
+:      020925 gpio_uart2gpio:
+0x6a87 020926 hfetch 1 ,core_gpio_sel1 
+0x6a88 020927 and_into 0xfb ,pdata 
+0x6a89 020928 hstore 1 ,core_gpio_sel1 
+0x6a8a 020929 rtn 
+:      020931 gpio_check_uart_state:
+0x6a8b 020932 hfetch 1 ,core_gpio_sel1 
+0x6a8c 020933 isolate1 2 ,pdata 
+0x6a8d 020934 rtn 
+:      020937 prcp_init:
+0x6a8e 020938 setarg prcp_process 
+0x6a8f 020939 store 2 ,mem_cb_att_write 
+0x6a90 020940 rtn 
+:      020941 prcp_process:
+0x6a91 020942 call clear_prcp_sendbuff 
+0x6a92 020943 fetch 1 ,mem_prcp 
+0x6a93 020944 beq prcp_le ,le_prcp 
+0x6a94 020945 beq prcp_ssp ,prcp 
+0x6a95 020946 branch assert 
+:      020947 le_prcp:
+0x6a96 020948 arg prcp_rx_le ,temp 
+0x6a97 020949 storet 2 ,mem_le_notify_handle 
+0x6a98 020950 call le_att_get_handle_ptr 
+0x6a99 020951 ifetch 1 ,contr 
+0x6a9a 020952 call prcp_parse 
+0x6a9b 020953 branch prcp_le_tx 
+:      020954 prcp:
+0x6a9c 020955 call prcp_parse 
+0x6a9d 020956 branch prcp_tx 
+:      020957 prcp_parse:
+0x6a9e 020958 copy contr ,rega 
+0x6a9f 020959 set1 mark_ext_patch ,mark 
+0x6aa0 020960 bpatch patch26_1 ,mem_patch26 
+0x6aa1 020961 ifetch 1 ,contr 
+0x6aa2 020962 beq common_res ,prcp_parse_common_res 
+0x6aa3 020963 beq read_registers_req ,prcp_parse_read_registers_req 
+0x6aa4 020964 beq read_registers_res ,prcp_parse_read_registers_res 
+0x6aa5 020965 beq write_registers_req ,prcp_parse_write_registers_req 
+0x6aa6 020966 beq i2c_config_req ,prcp_parse_i2c_config_req 
+0x6aa7 020967 beq i2c_read_req ,prcp_parse_i2c_read_req 
+0x6aa8 020968 beq i2c_read_res ,prcp_parse_i2c_read_res 
+0x6aa9 020969 beq i2c_write_req ,prcp_parse_i2c_write_req 
+0x6aaa 020970 beq spi_config_req ,prcp_parse_spi_config_req 
+0x6aab 020971 beq spi_read_req ,prcp_parse_spi_read_req 
+0x6aac 020972 beq spi_read_res ,prcp_parse_spi_read_res 
+0x6aad 020973 beq spi_write_req ,prcp_parse_spi_write_req 
+0x6aae 020974 beq pwm_config_req ,prcp_parse_pwm_config_req 
+0x6aaf 020975 beq pwm_write_req ,prcp_parse_pwm_write_req 
+0x6ab0 020976 beq gpio_config_req ,prcp_parse_gpio_config_req 
+0x6ab1 020977 beq gpio_read_req ,prcp_parse_gpio_read_req 
+0x6ab2 020978 beq gpio_read_res ,prcp_parse_gpio_read_res 
+0x6ab3 020979 beq gpio_write_req ,prcp_parse_gpio_write_req 
+0x6ab4 020980 beq ota_write_req ,prcp_parse_ota_write_req 
+0x6ab5 020981 beq ota_end_cmd ,prcp_parse_ota_end_cmd 
+0x6ab6 020982 rtn 
+:      020985 prcp_parse_common_res:
+0x6ab7 020986 copy rega ,contr 
+0x6ab8 020987 ifetch 1 ,contr 
+0x6ab9 020988 lshift8 pdata ,pdata 
+0x6aba 020989 store 3 ,mem_prcp_data 
+0x6abb 020990 rtn 
+:      020991 prcp_parse_read_registers_req:
+0x6abc 020992 rtn 
+:      020993 prcp_parse_read_registers_res:
+0x6abd 020994 rtn 
+:      020995 prcp_parse_write_registers_req:
+0x6abe 020996 rtn 
+:      021000 prcp_parse_spi_config_req:
+0x6abf 021001 rtn 
+:      021002 prcp_parse_spi_read_req:
+0x6ac0 021003 rtn 
+:      021004 prcp_parse_spi_read_res:
+0x6ac1 021005 rtn 
+:      021006 prcp_parse_spi_write_req:
+0x6ac2 021007 rtn 
+:      021011 prcp_parse_pwm_config_req:
+0x6ac3 021012 ifetch 4 ,contr 
+0x6ac4 021013 hstore 1 ,core_gpio_sel2 
+0x6ac5 021014 rshift8 pdata ,pdata 
+0x6ac6 021015 hfetcht 1 ,core_gpio_sel1 
+0x6ac7 021016 and_into 0x7f ,temp 
+0x6ac8 021017 ior temp ,temp 
+0x6ac9 021018 hstoret 1 ,core_gpio_sel1 
+0x6aca 021019 rshift8 pdata ,pdata 
+0x6acb 021020 hfetcht 1 ,core_clkoff + 1 
+0x6acc 021021 and_into 0xdf ,temp 
+0x6acd 021022 ior temp ,temp 
+0x6ace 021023 hstoret 1 ,core_clkoff + 1 
+0x6acf 021024 rshift8 pdata ,pdata 
+0x6ad0 021025 hfetcht 1 ,core_clksel 
+0x6ad1 021026 and_into 0x3f ,temp 
+0x6ad2 021027 ior temp ,temp 
+0x6ad3 021028 hstoret 1 ,core_clksel 
+0x6ad4 021029 branch prcp_parse_common_res 
+:      021030 prcp_parse_pwm_write_req:
+0x6ad5 021031 ifetch 9 ,contr 
+0x6ad6 021032 hfetcht 1 ,core_gpio_key2 
+0x6ad7 021033 and_into 0x3f ,temp 
+0x6ad8 021034 ior temp ,temp 
+0x6ad9 021035 hstoret 1 ,core_gpio_key2 
+0x6ada 021036 rshift8 pdata ,pdata 
+0x6adb 021037 hstore 2 ,core_pwm_pcnt0 
+0x6adc 021038 rshift16 pdata ,pdata 
+0x6add 021039 hstore 2 ,core_pwm_ncnt0 
+0x6ade 021040 rshift16 pdata ,pdata 
+0x6adf 021041 hstore 2 ,core_pwm_pcnt1 
+0x6ae0 021042 rshift16 pdata ,pdata 
+0x6ae1 021043 hstore 2 ,core_pwm_ncnt1 
+0x6ae2 021044 branch prcp_parse_common_res 
+:      021048 prcp_parse_gpio_config_req:
+0x6ae3 021049 ifetch 4 ,contr 
+0x6ae4 021050 hstore 4 ,core_gpio_oe0 
+0x6ae5 021051 ifetch 4 ,contr 
+0x6ae6 021052 hstore 4 ,core_gpio_pu0 
+0x6ae7 021053 ifetch 4 ,contr 
+0x6ae8 021054 hstore 4 ,core_gpio_pd0 
+0x6ae9 021055 ifetch 1 ,contr 
+0x6aea 021056 hstore 1 ,core_gpio_sel 
+0x6aeb 021057 ifetch 1 ,contr 
+0x6aec 021058 hstore 1 ,core_gpio_sel1 
+0x6aed 021059 ifetch 1 ,contr 
+0x6aee 021060 hstore 1 ,core_gpio_sel2 
+0x6aef 021061 branch prcp_parse_common_res 
+:      021062 prcp_parse_gpio_read_req:
+0x6af0 021063 branch prcp_parse_gpio_read_res 
+:      021064 prcp_parse_gpio_read_res:
+0x6af1 021065 jam 0x10 ,mem_prcp_data 
+0x6af2 021066 arg mem_prcp_data + 1 ,contw 
+0x6af3 021067 hfetch 4 ,core_gpio_out0 
+0x6af4 021068 istore 4 ,contw 
+0x6af5 021069 hfetch 4 ,core_gpio_in 
+0x6af6 021070 istore 4 ,contw 
+0x6af7 021071 rtn 
+:      021072 prcp_parse_gpio_write_req:
+0x6af8 021073 ifetcht 1 ,contr 
+0x6af9 021074 ifetch 1 ,contr 
+0x6afa 021075 lshift3 pdata ,pdata 
+0x6afb 021076 lshift4 pdata ,pdata 
+0x6afc 021077 ior temp ,temp 
+0x6afd 021078 call gpio_out 
+0x6afe 021079 branch prcp_parse_common_res 
+:      021084 prcp_parse_i2c_read_req:
+0x6aff 021085 ifetcht 1 ,contr 
+0x6b00 021086 hstoret 1 ,iic_slave_addr 
+0x6b01 021087 ifetch 1 ,contr 
+0x6b02 021088 compare 1 ,pdata ,0xff 
+0x6b03 021089 ifetch 1 ,contr 
+0x6b04 021090 hstore 1 ,iic_fifo 
+0x6b05 021091 branch iic_read_data_len ,true 
+0x6b06 021092 ifetch 1 ,contr 
+0x6b07 021093 hstore 1 ,iic_fifo 
+:      021094 iic_read_data_len:
+0x6b08 021095 ifetch 1 ,contr 
+0x6b09 021096 copy pdata ,loopcnt 
+0x6b0a 021097 increase -1 ,pdata 
+0x6b0b 021098 or_into 0x90 ,pdata 
+0x6b0c 021099 hstore 1 ,iic_ctr 
+0x6b0d 021100 hjam 2 ,iic_cr 
+0x6b0e 021101 nop 1 
+0x6b0f 021103 arg mem_prcp_data ,contw 
+:      021104 iic_read_loop:
+0x6b10 021105 hfetch 1 ,iic_fifo 
+0x6b11 021106 istore 1 ,contw 
+0x6b12 021107 loop iic_read_loop 
+0x6b13 021108 rtn 
+:      021110 clear_prcp_sendbuff:
+0x6b14 021111 setarg 0 
+0x6b15 021112 store 4 ,mem_prcp_data 
+0x6b16 021113 istore 8 ,contw 
+0x6b17 021114 istore 8 ,contw 
+0x6b18 021115 rtn 
+:      021121 prcp_parse_ota_write_req:
+0x6b19 021122 copy rega ,pdata 
+0x6b1a 021123 increase 1 ,pdata 
+0x6b1b 021124 store 2 ,rx_buf_data_ptr 
+0x6b1c 021125 fetch 2 ,mem_eeprom_ota_base_addr 
+0x6b1d 021126 beq 0x0000 ,prcp_parse_ota_start1 
+:      021127 prcp_parse_ota_load:
+0x6b1e 021128 fetch 2 ,mem_eeprom_ota_base_addr 
+0x6b1f 021129 fetcht 2 ,rx_buf_data_ptr 
+0x6b20 021130 ifetcht 2 ,temp 
+0x6b21 021131 iadd temp ,pdata 
+0x6b22 021132 fetcht 2 ,rx_buf_data_ptr 
+0x6b23 021133 increase 2 ,temp 
+0x6b24 021134 copy temp ,contr 
+0x6b25 021135 ifetcht 1 ,contr 
+0x6b26 021136 copy contr ,rega 
+0x6b27 021137 branch iicd_write_ota_data 
+:      021139 prcp_parse_ota_start1:
+0x6b28 021140 setarg 0x0002 
+0x6b29 021141 byteswap pdata ,pdata 
+0x6b2a 021142 store 2 ,mem_addr_mi 
+0x6b2b 021143 arg iicd_read_eep ,regc 
+0x6b2c 021144 arg 0x2 ,loopcnt 
+:      021145 prcp_parse_ota_loop1:
+0x6b2d 021146 call get_block_header 
+0x6b2e 021147 nbranch prcp_parse_ota_start2 ,zero 
+0x6b2f 021148 fetch 2 ,mem_addr_mi 
+0x6b30 021149 byteswap pdata ,pdata 
+0x6b31 021150 iadd temp ,pdata 
+0x6b32 021151 store 2 ,mem_eeprom_ota_base_addr 
+0x6b33 021152 byteswap pdata ,pdata 
+0x6b34 021153 store 2 ,mem_addr_mi 
+0x6b35 021154 loop prcp_parse_ota_loop1 
+:      021155 prcp_parse_ota_start2:
+0x6b36 021156 fetch 2 ,mem_eeprom_ota_base_addr 
+0x6b37 021157 byteswap pdata ,pdata 
+0x6b38 021158 store 2 ,mem_addr_mi 
+0x6b39 021159 arg iicd_read_eep ,regc 
+0x6b3a 021160 arg 0xffff ,loopcnt 
+:      021161 prcp_parse_ota_loop2:
+0x6b3b 021162 call get_block_header 
+0x6b3c 021163 nbranch prcp_parse_ota_load ,zero 
+0x6b3d 021164 fetch 2 ,mem_addr_mi 
+0x6b3e 021165 byteswap pdata ,pdata 
+0x6b3f 021166 iadd temp ,pdata 
+0x6b40 021167 increase 2 ,pdata 
+0x6b41 021168 store 2 ,mem_eeprom_ota_base_addr 
+0x6b42 021169 byteswap pdata ,pdata 
+0x6b43 021170 store 2 ,mem_addr_mi 
+0x6b44 021171 loop prcp_parse_ota_loop2 
+:      021173 prcp_parse_ota_end_cmd:
+0x6b45 021174 fetch 2 ,mem_eeprom_ota_base_addr 
+0x6b46 021175 increase 2 ,pdata 
+0x6b47 021176 byteswap pdata ,pdata 
+0x6b48 021177 store 2 ,mem_eeprom_ota_base_addr 
+0x6b49 021178 arg mem_eeprom_ota_base_addr ,rega 
+0x6b4a 021179 arg 0x02 ,temp 
+0x6b4b 021180 arg 0x0000 ,pdata 
+0x6b4c 021181 call iicd_write_ota_data 
+0x6b4d 021182 setarg 0x0000 
+0x6b4e 021183 store 2 ,mem_eeprom_ota_base_addr 
+0x6b4f 021184 rtn 
+:      021186 prcp_parse_i2c_config_req:
+0x6b50 021187 rtn 
+:      021188 prcp_parse_i2c_read_res:
+0x6b51 021189 rtn 
+:      021190 prcp_parse_i2c_write_req:
+0x6b52 021191 rtn 
+:      021196 rfcomm_init:
+0x6b53 021197 rtn wake 
+0x6b54 021198 jam 0 ,mem_rfcomm_send_more_pkt 
+0x6b55 021199 jam bits9600 ,memremoterpnbitrate 
+0x6b56 021200 jam databits8 ,memremoteprndatabits 
+0x6b57 021201 jam 0x11 ,memremoteprnxon 
+0x6b58 021202 jam 0x13 ,memremoteprnxoff 
+0x6b59 021203 setarg 0 
+0x6b5a 021204 store 3 ,memremoteprnstopbit 
+0x6b5b 021205 store 1 ,mem_spp_state 
+0x6b5c 021206 jam 0 ,memui_reconnect_mode 
+:      021208 rfcomm_init_spp:
+0x6b5d 021209 set1 mark_ext_patch ,mark 
+0x6b5e 021210 bpatch patch37_7 ,mem_patch37 
+0x6b5f 021211 setarg 0 
+0x6b60 021212 store 1 ,mem_spp_state 
+0x6b61 021213 store 1 ,mem_remote_spp_channel 
+0x6b62 021214 store 1 ,mem_pn_dlci 
+0x6b63 021215 jam 0x50 ,mem_credit_given 
+0x6b64 021216 rtn 
+:      021218 set_cr_bit:
+0x6b65 021219 or_into 0x02 ,temp 
+0x6b66 021220 rtn 
+:      021232 rfcomm_calculate_fcs_sabm:
+0x6b67 021233 copy temp ,pdata 
+0x6b68 021234 reverse pdata ,pdata 
+0x6b69 021235 store 1 ,memfcstemp3 
+0x6b6a 021236 force ini_tx_sabm ,pdata 
+0x6b6b 021237 reverse pdata ,pdata 
+0x6b6c 021238 store 1 ,memfcstemp2 
+0x6b6d 021239 force 0x01 ,pdata 
+0x6b6e 021240 reverse pdata ,pdata 
+0x6b6f 021241 store 1 ,memfcstemp1 
+0x6b70 021242 call caculate_fcs 
+0x6b71 021243 copy temp ,pdata 
+0x6b72 021244 rtn 
+:      021245 rfcomm_calculate_fcs_ua:
+0x6b73 021246 reverse pdata ,pdata 
+0x6b74 021247 store 1 ,memfcstemp3 
+0x6b75 021248 force rsp_tx_ua ,pdata 
+0x6b76 021249 reverse pdata ,pdata 
+0x6b77 021250 store 1 ,memfcstemp2 
+0x6b78 021251 force 0x01 ,pdata 
+0x6b79 021252 reverse pdata ,pdata 
+0x6b7a 021253 store 1 ,memfcstemp1 
+0x6b7b 021254 branch caculate_fcs 
+:      021256 rfcomm_calculate_fcs_dlci0:
+0x6b7c 021257 fetch 1 ,mem_rfcomm_initiator 
+0x6b7d 021258 branch rfcomm_calculate_fcs_dlci0_res ,blank 
+0x6b7e 021259 setarg 0x70 
+0x6b7f 021260 rtn 
+:      021261 rfcomm_calculate_fcs_dlci0_res:
+0x6b80 021262 setarg 0xaa 
+0x6b81 021263 rtn 
+:      021265 rfcomm_save_fcs_uih:
+0x6b82 021266 reverse pdata ,pdata 
+0x6b83 021267 store 1 ,memfcstemp3 
+0x6b84 021268 force rsp_rx_uih ,pdata 
+0x6b85 021269 call caculate_uihdata_fcs 
+0x6b86 021270 fetcht 2 ,mem_contw_temp 
+0x6b87 021271 copy temp ,contw 
+0x6b88 021272 istore 1 ,contw 
+0x6b89 021273 copy contw ,temp 
+0x6b8a 021274 storet 2 ,mem_contw_temp 
+0x6b8b 021275 force rsp_rx_uih_wdata ,pdata 
+0x6b8c 021276 call caculate_uihdata_fcs 
+0x6b8d 021277 fetcht 2 ,mem_contw_temp 
+0x6b8e 021278 copy temp ,contw 
+0x6b8f 021279 istore 1 ,contw 
+0x6b90 021280 rtn 
+:      021289 caculate_uihdata_fcs:
+0x6b91 021290 reverse pdata ,pdata 
+0x6b92 021291 store 1 ,memfcstemp2 
+0x6b93 021292 fetch 2 ,memfcstemp2 
+0x6b94 021293 lshift8 pdata ,pdata 
+0x6b95 021294 store 3 ,mem_mod2div_temp 
+0x6b96 021295 arg 0x107 ,rega 
+0x6b97 021296 arg 0xf ,regb 
+0x6b98 021297 call mod2div 
+0x6b99 021298 xor_into 0xd7 ,pdata 
+0x6b9a 021299 invert pdata ,pdata 
+0x6b9b 021300 reverse pdata ,pdata 
+0x6b9c 021301 rtn 
+:      021311 caculate_fcs:
+0x6b9d 021312 fetch 3 ,memfcstemp1 
+0x6b9e 021313 store 3 ,mem_mod2div_temp 
+0x6b9f 021314 arg 0x107 ,rega 
+0x6ba0 021315 arg 0xf ,regb 
+0x6ba1 021316 call mod2div 
+0x6ba2 021317 lshift8 pdata ,pdata 
+0x6ba3 021318 arg 0x7 ,regb 
+0x6ba4 021319 call mod2div 
+0x6ba5 021320 xor_into 0x2b ,pdata 
+0x6ba6 021321 invert pdata ,pdata 
+0x6ba7 021322 reverse pdata ,pdata 
+0x6ba8 021323 copy pdata ,temp 
+0x6ba9 021324 rtn 
+:      021326 mod2div:
+0x6baa 021327 arg 0 ,regc 
+0x6bab 021328 copy regb ,loopcnt 
+0x6bac 021329 call right_shift_n 
+0x6bad 021330 icopy temp 
+:      021331 mod2div_loop:
+0x6bae 021336 copy temp ,pdata 
+0x6baf 021337 lshift regc ,regc 
+0x6bb0 021338 bbit0 8 ,mod2div_not_enough_reduction 
+0x6bb1 021339 ixor rega ,temp 
+0x6bb2 021340 increase 1 ,regc 
+:      021341 mod2div_not_enough_reduction:
+0x6bb3 021342 lshift temp ,temp 
+0x6bb4 021343 fetch 3 ,mem_mod2div_temp 
+0x6bb5 021344 increase -1 ,regb 
+0x6bb6 021345 compare 0xff ,regb ,0xff 
+0x6bb7 021346 branch mod2div_end ,true 
+0x6bb8 021347 copy regb ,loopcnt 
+0x6bb9 021348 call right_shift_n 
+0x6bba 021349 isolate1 0 ,pdata 
+0x6bbb 021350 setflag true ,0 ,temp 
+0x6bbc 021351 branch mod2div_loop 
+:      021352 mod2div_end:
+0x6bbd 021354 rshift temp ,pdata 
+0x6bbe 021355 rtn 
+:      021357 get_rfcomm_snd_adss:
+0x6bbf 021358 fetcht 1 ,mem_pn_dlci 
+:      021359 dlci_to_address_cmd:
+0x6bc0 021361 lshift2 temp ,temp 
+0x6bc1 021362 set1 rfcomm_address_ext_len ,temp 
+0x6bc2 021363 fetch 1 ,mem_rfcomm_initiator 
+0x6bc3 021364 ncall set_cr_bit ,blank 
+0x6bc4 021365 storet 1 ,mem_rfcomm_send_adss 
+0x6bc5 021366 rtn 
+:      021368 dlci_to_address_res:
+0x6bc6 021370 lshift2 temp ,temp 
+0x6bc7 021371 set1 rfcomm_address_ext_len ,temp 
+0x6bc8 021372 fetch 1 ,mem_rfcomm_initiator 
+0x6bc9 021373 call set_cr_bit ,blank 
+0x6bca 021374 rtn 
+:      021375 channel_to_dlci:
+0x6bcb 021377 lshift temp ,temp 
+0x6bcc 021378 fetch 1 ,mem_rfcomm_initiator 
+0x6bcd 021379 setflag blank ,0 ,temp 
+0x6bce 021381 rtn 
+:      021382 rfcomm_rx_process_dlci0_sabm:
+0x6bcf 021383 fetcht 1 ,mem_current_channel 
+0x6bd0 021384 jam 0xd7 ,mem_current_fcs 
+0x6bd1 021385 call rfcomm_send_ua 
+0x6bd2 021386 fetch 1 ,mem_rfcomm_state 
+0x6bd3 021387 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x6bd4 021388 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x6bd5 021389 store 1 ,mem_rfcomm_state 
+0x6bd6 021390 jam 0 ,mem_rfcomm_initiator 
+0x6bd7 021391 branch rfcomm_rx_process_end 
+:      021392 rfcomm_rx_process_dlci0_ua:
+0x6bd8 021393 fetch 1 ,mem_rfcomm_state 
+0x6bd9 021394 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x6bda 021395 store 1 ,mem_rfcomm_state 
+0x6bdb 021396 branch rfcomm_rx_process_end 
+:      021399 rfcomm_rx_process:
+0x6bdc 021400 set1 mark_ext_patch ,mark 
+0x6bdd 021401 bpatch patch38_0 ,mem_patch38 
+0x6bde 021402 fetch 1 ,memui_reconnect_mode 
+0x6bdf 021403 beq no_reconnection ,rfcomm_rx_process_remote_page 
+0x6be0 021404 branch rfcomm_rx_process_reconn 
+:      021406 rfcomm_rx_process_remote_page:
+0x6be1 021407 fetch 2 ,mem_l2cap_payload_ptr 
+0x6be2 021408 copy pdata ,contr 
+0x6be3 021409 call get_rfcomm_head_struct 
+0x6be4 021410 fetch 1 ,mem_current_channel 
+0x6be5 021411 beq 0 ,parse_dlci0_rp 
+0x6be6 021412 branch parse_uih_rp 
+:      021413 parse_dlci0_rp:
+0x6be7 021414 set1 mark_ext_patch ,mark 
+0x6be8 021415 bpatch patch38_1 ,mem_patch38 
+0x6be9 021416 fetch 1 ,mem_current_frame_type 
+0x6bea 021417 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x6beb 021418 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x6bec 021419 beq rfcomm_frame_type_uih ,parse_dlci0_rp_uih 
+0x6bed 021420 rtneq rfcomm_frame_type_disconn 
+0x6bee 021421 branch assert 
+:      021424 parse_dlci0_rp_uih:
+0x6bef 021425 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6bf0 021426 copy pdata ,contr 
+0x6bf1 021427 call get_rfcomm_uih_head_struct 
+0x6bf2 021428 fetch 1 ,mem_uih_cmd_type 
+0x6bf3 021429 beq uih_param_neg_cmd ,parse_dlci0_rp_uih_pn_cmd 
+0x6bf4 021430 beq uih_param_neg_res ,parse_dlci0_rp_uih_pn_res 
+0x6bf5 021431 beq uih_modem_status_cmd ,parse_dlci0_rp_uih_ms_cmd 
+0x6bf6 021432 beq uih_modem_status_res ,parse_dlci0_rp_uih_ms_res 
+0x6bf7 021433 branch rfcomm_rx_process_end 
+:      021435 parse_dlci0_rp_uih_pn_cmd:
+0x6bf8 021436 call parse_dlci0_rp_uih_pn_res_common 
+0x6bf9 021437 fetch 1 ,mem_pn_dlci 
+0x6bfa 021438 rshift pdata ,pdata 
+0x6bfb 021439 sub pdata ,spp_slave_channel ,null 
+0x6bfc 021440 branch parse_dlci0_rp_uih_pn_cmd_spp ,zero 
+0x6bfd 021441 branch assert 
+:      021442 parse_dlci0_rp_uih_pn_cmd_spp:
+0x6bfe 021443 fetch 1 ,mem_spp_state 
+0x6bff 021444 set1 rfcomm_channel_state_pn_cmd ,pdata 
+0x6c00 021445 set1 rfcomm_channel_state_pn_res ,pdata 
+0x6c01 021446 store 1 ,mem_spp_state 
+0x6c02 021447 call rfcomm_send_param_neg_res 
+0x6c03 021448 branch rfcomm_rx_process_end 
+:      021450 parse_dlci0_rp_uih_pn_res:
+0x6c04 021451 call parse_dlci0_rp_uih_pn_res_common 
+0x6c05 021452 branch rfcomm_rx_process_end 
+:      021454 parse_dlci0_rp_uih_pn_res_common:
+0x6c06 021455 call get_param_payload_ptr 
+0x6c07 021456 branch get_rfcomm_prarmer_negotiation 
+:      021458 get_rfcomm_param_modem_status:
+0x6c08 021459 call get_param_payload_ptr 
+0x6c09 021460 ifetch 1 ,contr 
+0x6c0a 021461 rshift3 pdata ,pdata 
+0x6c0b 021462 store 1 ,mem_ms_channel 
+0x6c0c 021463 ifetch 1 ,contr 
+0x6c0d 021464 store 1 ,mem_ms_param 
+0x6c0e 021465 rtn 
+:      021468 get_rfcomm_head_struct:
+0x6c0f 021469 ifetch 1 ,contr 
+0x6c10 021470 store 1 ,mem_current_adss 
+0x6c11 021471 rshift3 pdata ,pdata 
+0x6c12 021472 store 1 ,mem_current_channel 
+0x6c13 021473 ifetch 1 ,contr 
+0x6c14 021474 store 1 ,mem_current_frame_type 
+:      021475 get_rfcomm_current_length:
+0x6c15 021476 call get_rfcomm_length_common 
+0x6c16 021477 storet 2 ,mem_current_length 
+0x6c17 021478 copy contr ,pdata 
+0x6c18 021479 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x6c19 021480 rtn 
+:      021482 get_rfcomm_uih_head_struct:
+0x6c1a 021483 ifetch 1 ,contr 
+0x6c1b 021484 rshift pdata ,pdata 
+0x6c1c 021485 store 1 ,mem_uih_cmd_type 
+0x6c1d 021486 call get_rfcomm_length_common 
+0x6c1e 021487 storet 2 ,mem_uih_length 
+0x6c1f 021488 copy contr ,pdata 
+0x6c20 021489 store 2 ,mem_param_payload_ptr 
+0x6c21 021490 rtn 
+:      021493 get_param_payload_ptr:
+0x6c22 021494 fetch 2 ,mem_param_payload_ptr 
+0x6c23 021495 copy pdata ,contr 
+0x6c24 021496 rtn 
+:      021498 get_rfcomm_param_length_common:
+0x6c25 021499 fetch 2 ,mem_param_payload_ptr 
+0x6c26 021500 copy pdata ,contr 
+:      021501 get_rfcomm_length_common:
+0x6c27 021502 ifetch 1 ,contr 
+0x6c28 021503 copy pdata ,temp 
+0x6c29 021504 rshift temp ,temp 
+0x6c2a 021505 rtnbit1 0 
+0x6c2b 021506 ifetch 1 ,contr 
+0x6c2c 021507 lshift3 pdata ,pdata 
+0x6c2d 021508 lshift4 pdata ,pdata 
+0x6c2e 021509 iadd temp ,temp 
+0x6c2f 021510 rtn 
+:      021512 get_rfcomm_prarmer_negotiation:
+0x6c30 021513 ifetch 1 ,contr 
+0x6c31 021514 store 1 ,mem_pn_dlci 
+0x6c32 021515 ifetch 1 ,contr 
+0x6c33 021516 store 1 ,mem_pn_credit_flow_type_info 
+0x6c34 021517 ifetch 1 ,contr 
+0x6c35 021518 store 1 ,mem_pn_priority 
+0x6c36 021519 ifetch 1 ,contr 
+0x6c37 021520 store 1 ,mem_pn_acknowledg_timer 
+0x6c38 021521 ifetch 2 ,contr 
+0x6c39 021522 store 2 ,mem_pn_max_frame_size 
+0x6c3a 021523 ifetch 1 ,contr 
+0x6c3b 021524 store 1 ,mem_pn_max_retrans 
+0x6c3c 021525 ifetch 1 ,contr 
+0x6c3d 021526 store 1 ,mem_remote_credits 
+0x6c3e 021527 rtn 
+:      021530 parse_dlci0_rp_uih_ms_cmd:
+0x6c3f 021531 call get_rfcomm_param_modem_status 
+0x6c40 021532 fetch 1 ,mem_ms_channel 
+0x6c41 021533 sub pdata ,1 ,null 
+0x6c42 021534 branch parse_dlci0_rp_uih_ms_cmd_spp ,zero 
+0x6c43 021535 branch assert 
+:      021536 parse_dlci0_rp_uih_ms_cmd_spp:
+0x6c44 021537 fetch 1 ,mem_spp_state 
+0x6c45 021538 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x6c46 021539 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x6c47 021540 store 1 ,mem_spp_state 
+0x6c48 021541 fetcht 1 ,mem_pn_dlci 
+0x6c49 021542 lshift2 temp ,temp 
+0x6c4a 021543 or_into 3 ,temp 
+0x6c4b 021544 call rfcomm_send_modem_status_res 
+0x6c4c 021545 jam more_pkt_msc_cmd_spp ,mem_rfcomm_send_more_pkt 
+0x6c4d 021546 branch rfcomm_rx_process_end 
+:      021548 parse_dlci0_rp_uih_ms_res:
+0x6c4e 021549 call get_rfcomm_param_modem_status 
+0x6c4f 021550 fetch 1 ,mem_ms_channel 
+0x6c50 021551 sub pdata ,1 ,null 
+0x6c51 021552 branch parse_dlci0_rp_uih_ms_res_spp ,zero 
+0x6c52 021553 branch assert 
+:      021554 parse_dlci0_rp_uih_ms_res_spp:
+0x6c53 021555 fetch 1 ,mem_spp_state 
+0x6c54 021556 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x6c55 021557 store 1 ,mem_spp_state 
+0x6c56 021558 branch rfcomm_rx_process_end 
+:      021560 parse_uih_rp:
+0x6c57 021561 fetch 1 ,mem_current_channel 
+0x6c58 021562 sub pdata ,spp_slave_channel ,null 
+0x6c59 021563 branch parse_uih_rp_spp ,zero 
+0x6c5a 021564 branch assert 
+:      021565 parse_uih_rp_spp:
+0x6c5b 021566 fetch 1 ,mem_current_frame_type 
+0x6c5c 021567 beq rfcomm_frame_type_ua ,parse_uih_rp_spp_ua 
+0x6c5d 021568 beq rfcomm_frame_type_sabm ,parse_uih_rp_spp_sabm 
+0x6c5e 021569 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6c5f 021570 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x6c60 021571 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn 
+0x6c61 021572 branch assert 
+:      021573 parse_uih_rp_spp_ua:
+0x6c62 021574 fetch 1 ,mem_spp_state 
+0x6c63 021575 set1 rfcomm_channel_state_ua ,pdata 
+0x6c64 021576 store 1 ,mem_spp_state 
+0x6c65 021577 branch rfcomm_rx_process_end 
+:      021578 parse_uih_rp_spp_sabm:
+0x6c66 021579 fetch 1 ,mem_spp_state 
+0x6c67 021580 set1 rfcomm_channel_state_ua ,pdata 
+0x6c68 021581 set1 rfcomm_channel_state_sabm ,pdata 
+0x6c69 021582 store 1 ,mem_spp_state 
+0x6c6a 021583 fetch 1 ,mem_current_adss 
+0x6c6b 021584 call rfcomm_calculate_fcs_ua 
+0x6c6c 021585 store 1 ,mem_current_fcs 
+0x6c6d 021586 call rfcomm_send_ua 
+0x6c6e 021587 fetch 1 ,mem_current_adss 
+0x6c6f 021588 rshift2 pdata ,pdata 
+0x6c70 021589 store 1 ,mem_pn_dlci 
+0x6c71 021590 lshift2 pdata ,pdata 
+0x6c72 021591 set0 rfcomm_address_cr ,pdata 
+0x6c73 021592 set1 rfcomm_address_ext_len ,pdata 
+0x6c74 021593 arg mem_hiufcs_spp ,temp 
+0x6c75 021594 storet 2 ,mem_contw_temp 
+0x6c76 021595 call rfcomm_save_fcs_uih 
+0x6c77 021596 branch rfcomm_rx_process_end 
+:      021598 parse_uih_spp_uih_credits:
+0x6c78 021599 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6c79 021600 copy pdata ,contr 
+0x6c7a 021601 increase 1 ,pdata 
+0x6c7b 021602 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x6c7c 021603 ifetch 1 ,contr 
+0x6c7d 021604 fetcht 1 ,mem_remote_credits 
+0x6c7e 021605 iadd temp ,pdata 
+0x6c7f 021606 store 1 ,mem_remote_credits 
+:      021607 parse_uih_spp_uih:
+0x6c80 021608 call rfcomm_increase_credit_given 
+:      021609 parse_uih_spp_uih_cont:
+0x6c81 021610 call get_rfcomm_snd_adss 
+0x6c82 021611 call rfcomm_send_uih_without_payload 
+0x6c83 021612 call spp_process_rx_data 
+0x6c84 021613 branch rfcomm_rx_process_end 
+:      021615 parse_uih_rp_spp_disconn:
+0x6c85 021616 call rfcomm_init_spp 
+0x6c86 021617 fetch 1 ,mem_current_adss 
+0x6c87 021618 call rfcomm_calculate_fcs_ua 
+0x6c88 021619 store 1 ,mem_current_fcs 
+0x6c89 021620 call rfcomm_send_ua 
+0x6c8a 021621 branch rfcomm_rx_process_end 
+:      021626 rfcomm_rx_process_reconn:
+0x6c8b 021627 fetch 2 ,mem_l2cap_payload_ptr 
+0x6c8c 021628 copy pdata ,contr 
+0x6c8d 021629 call get_rfcomm_head_struct 
+0x6c8e 021630 fetch 1 ,mem_current_channel 
+0x6c8f 021631 beq 0 ,parse_dlci0_reconn 
+0x6c90 021632 branch parse_uih_reconn 
+:      021634 parse_dlci0_reconn:
+0x6c91 021635 set1 mark_ext_patch ,mark 
+0x6c92 021636 bpatch patch38_2 ,mem_patch38 
+0x6c93 021637 fetch 1 ,mem_current_frame_type 
+0x6c94 021638 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x6c95 021639 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x6c96 021640 beq rfcomm_frame_type_uih ,parse_dlci0_reconn_uih 
+0x6c97 021641 branch rfcomm_rx_process_end 
+:      021642 parse_dlci0_reconn_uih:
+0x6c98 021643 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6c99 021644 copy pdata ,contr 
+0x6c9a 021645 call get_rfcomm_uih_head_struct 
+0x6c9b 021646 fetch 1 ,mem_uih_cmd_type 
+0x6c9c 021647 beq uih_param_neg_cmd ,parse_dlci0_reconn_uih_pn_cmd 
+0x6c9d 021648 beq uih_param_neg_res ,parse_dlci0_reconn_uih_pn_cmd 
+0x6c9e 021649 beq uih_modem_status_cmd ,parse_dlci0_reconn_uih_ms_cmd 
+0x6c9f 021650 beq uih_modem_status_res ,parse_dlci0_reconn_uih_ms_res 
+0x6ca0 021651 branch rfcomm_rx_process_end 
+:      021653 parse_dlci0_reconn_uih_pn_cmd:
+0x6ca1 021654 call parse_dlci0_rp_uih_pn_res_common 
+0x6ca2 021655 fetch 1 ,mem_pn_dlci 
+0x6ca3 021656 rshift pdata ,pdata 
+0x6ca4 021657 fetcht 1 ,mem_remote_spp_channel 
+0x6ca5 021658 isub temp ,null 
+0x6ca6 021659 branch parse_dlci0_reconn_uih_pn_cmd_spp ,zero 
+0x6ca7 021660 branch assert 
+:      021661 parse_dlci0_reconn_uih_pn_cmd_spp:
+0x6ca8 021662 fetch 1 ,mem_spp_state 
+0x6ca9 021663 set1 rfcomm_channel_state_pn_res ,pdata 
+0x6caa 021664 store 1 ,mem_spp_state 
+0x6cab 021665 branch rfcomm_rx_process_end 
+:      021667 parse_dlci0_reconn_uih_ms_cmd:
+0x6cac 021668 call get_rfcomm_param_modem_status 
+0x6cad 021669 fetch 1 ,mem_ms_channel 
+0x6cae 021670 fetcht 1 ,mem_remote_spp_channel 
+0x6caf 021671 isub temp ,null 
+0x6cb0 021672 branch parse_dlci0_reconn_uih_ms_cmd_spp ,zero 
+0x6cb1 021673 branch assert 
+0x6cb2 021674 branch rfcomm_rx_process_end 
+:      021675 parse_dlci0_reconn_uih_ms_cmd_spp:
+0x6cb3 021676 fetch 1 ,mem_spp_state 
+0x6cb4 021677 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x6cb5 021678 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x6cb6 021679 store 1 ,mem_spp_state 
+0x6cb7 021680 fetcht 1 ,mem_pn_dlci 
+0x6cb8 021681 lshift2 temp ,temp 
+0x6cb9 021682 or_into 3 ,temp 
+0x6cba 021683 call rfcomm_send_modem_status_res 
+0x6cbb 021684 branch rfcomm_rx_process_end 
+:      021686 parse_dlci0_reconn_uih_ms_res:
+0x6cbc 021687 call get_rfcomm_param_modem_status 
+0x6cbd 021688 fetch 1 ,mem_ms_channel 
+0x6cbe 021689 fetcht 1 ,mem_remote_spp_channel 
+0x6cbf 021690 isub temp ,null 
+0x6cc0 021691 branch parse_dlci0_reconn_uih_ms_res_spp ,zero 
+0x6cc1 021692 branch assert 
+:      021693 parse_dlci0_reconn_uih_ms_res_spp:
+0x6cc2 021694 fetch 1 ,mem_spp_state 
+0x6cc3 021695 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x6cc4 021696 store 1 ,mem_spp_state 
+0x6cc5 021697 branch rfcomm_rx_process_end 
+:      021699 parse_uih_reconn:
+0x6cc6 021700 fetch 1 ,mem_current_channel 
+0x6cc7 021701 fetcht 1 ,mem_remote_spp_channel 
+0x6cc8 021702 isub temp ,null 
+0x6cc9 021703 branch parse_uih_reconn_spp ,zero 
+0x6cca 021704 branch assert 
+0x6ccb 021705 branch rfcomm_rx_process_end 
+:      021707 parse_uih_reconn_spp:
+0x6ccc 021708 fetch 1 ,mem_current_frame_type 
+0x6ccd 021709 beq rfcomm_frame_type_ua ,parse_uih_reconn_spp_ua 
+0x6cce 021710 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6ccf 021711 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x6cd0 021712 beq rfcomm_frame_type_disconn ,parse_uih_reconn_spp_disconn 
+:      021713 parse_uih_reconn_spp_ua:
+0x6cd1 021714 fetch 1 ,mem_spp_state 
+0x6cd2 021715 set1 rfcomm_channel_state_ua ,pdata 
+0x6cd3 021716 store 1 ,mem_spp_state 
+0x6cd4 021717 branch rfcomm_rx_process_end 
+:      021718 parse_uih_reconn_spp_sabm:
+0x6cd5 021719 branch parse_uih_reconn_spp_sabm 
+:      021720 parse_uih_reconn_spp_disconn:
+0x6cd6 021721 branch parse_uih_rp_spp_disconn 
+:      021722 rfcomm_rx_process_end:
+0x6cd7 021723 rtn 
+:      021725 rfcomm_send_more_pkt:
+0x6cd8 021726 fetch 1 ,mem_rfcomm_send_more_pkt 
+0x6cd9 021727 rtn blank 
+0x6cda 021728 beq more_pkt_msc_cmd_spp ,rfcomm_send_more_pkt_msc_cmd_spp 
+0x6cdb 021729 branch assert 
+:      021731 rfcomm_send_more_pkt_msc_cmd_spp:
+0x6cdc 021732 jam 0 ,mem_rfcomm_send_more_pkt 
+0x6cdd 021733 call l2cap_malloc_rfcomm_channel 
+0x6cde 021734 arg spp_slave_channel ,temp 
+0x6cdf 021735 lshift3 temp ,temp 
+:      021736 rfcomm_send_more_pkt_msc_cmd_spp0:
+0x6ce0 021737 or_into 0x03 ,temp 
+0x6ce1 021738 arg 0xaa ,rega 
+0x6ce2 021739 call rfcomm_send_modem_status_cmd 
+0x6ce3 021740 call l2cap_get_rfcomm_tx_buff 
+0x6ce4 021741 copy contw ,contr 
+0x6ce5 021742 ifetch 2 ,contr 
+0x6ce6 021743 branch assert ,blank 
+0x6ce7 021744 rtn 
+:      021746 rfcomm_send_sabm:
+0x6ce8 021747 set1 mark_ext_patch ,mark 
+0x6ce9 021748 bpatch patch38_3 ,mem_patch38 
+0x6cea 021749 call l2cap_get_rfcomm_tx_buff 
+0x6ceb 021750 setarg 0x0004 
+0x6cec 021751 istore 2 ,contw 
+0x6ced 021752 fetch 2 ,mem_rfcomm_remote_cid 
+0x6cee 021753 istore 2 ,contw 
+0x6cef 021754 fetch 1 ,mem_current_adss 
+0x6cf0 021755 istore 1 ,contw 
+0x6cf1 021756 setarg 0x013f 
+0x6cf2 021757 istore 2 ,contw 
+0x6cf3 021758 fetch 1 ,mem_current_fcs 
+0x6cf4 021759 istore 1 ,contw 
+0x6cf5 021760 rtn 
+:      021761 rfcomm_send_ua:
+0x6cf6 021762 set1 mark_ext_patch ,mark 
+0x6cf7 021763 bpatch patch38_4 ,mem_patch38 
+0x6cf8 021764 call l2cap_malloc_rfcomm_channel 
+0x6cf9 021765 call l2cap_get_rfcomm_tx_buff 
+0x6cfa 021766 setarg 0x0004 
+0x6cfb 021767 istore 2 ,contw 
+0x6cfc 021768 fetch 2 ,mem_rfcomm_remote_cid 
+0x6cfd 021769 istore 2 ,contw 
+0x6cfe 021770 fetch 1 ,mem_current_adss 
+0x6cff 021771 istore 1 ,contw 
+0x6d00 021772 setarg 0x0173 
+0x6d01 021773 istore 2 ,contw 
+0x6d02 021774 fetch 1 ,mem_current_fcs 
+0x6d03 021775 istore 1 ,contw 
+0x6d04 021776 rtn 
+:      021777 rfcomm_send_param_neg_cmd:
+0x6d05 021778 set1 mark_ext_patch ,mark 
+0x6d06 021779 bpatch patch38_5 ,mem_patch38 
+0x6d07 021780 call l2cap_get_rfcomm_tx_buff 
+0x6d08 021781 setarg 0x000e 
+0x6d09 021782 istore 2 ,contw 
+0x6d0a 021783 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d0b 021784 istore 2 ,contw 
+0x6d0c 021785 fetch 1 ,mem_rfcomm_initiator 
+0x6d0d 021786 lshift pdata ,pdata 
+0x6d0e 021787 set1 0 ,pdata 
+0x6d0f 021788 istore 1 ,contw 
+0x6d10 021789 setarg 0x15ef 
+0x6d11 021790 istore 2 ,contw 
+0x6d12 021791 setarg 0x1183 
+0x6d13 021792 istore 2 ,contw 
+0x6d14 021793 copy temp ,pdata 
+0x6d15 021794 istore 1 ,contw 
+0x6d16 021795 setarg 0x0000f0 
+0x6d17 021796 istore 3 ,contw 
+0x6d18 021797 setarg rfcomm_max_frame_size 
+0x6d19 021798 istore 2 ,contw 
+0x6d1a 021799 setarg 0 
+0x6d1b 021800 istore 1 ,contw 
+0x6d1c 021801 setarg 0x01 
+0x6d1d 021802 istore 1 ,contw 
+0x6d1e 021803 call rfcomm_calculate_fcs_dlci0 
+0x6d1f 021804 istore 1 ,contw 
+0x6d20 021805 jam 0x10 ,mem_credit_given 
+0x6d21 021806 rtn 
+:      021807 rfcomm_send_param_neg_res:
+0x6d22 021808 set1 mark_ext_patch ,mark 
+0x6d23 021809 bpatch patch38_6 ,mem_patch38 
+0x6d24 021810 call l2cap_malloc_rfcomm_channel 
+0x6d25 021811 call l2cap_get_rfcomm_tx_buff 
+0x6d26 021812 setarg 0x000e 
+0x6d27 021813 istore 2 ,contw 
+0x6d28 021814 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d29 021815 istore 2 ,contw 
+0x6d2a 021816 fetch 1 ,mem_rfcomm_initiator 
+0x6d2b 021817 lshift pdata ,pdata 
+0x6d2c 021818 set1 0 ,pdata 
+0x6d2d 021819 istore 1 ,contw 
+0x6d2e 021820 setarg 0x15ef 
+0x6d2f 021821 istore 2 ,contw 
+0x6d30 021822 setarg 0x1181 
+0x6d31 021823 istore 2 ,contw 
+0x6d32 021824 fetch 1 ,mem_pn_dlci 
+0x6d33 021825 istore 1 ,contw 
+0x6d34 021826 setarg 0x0000e0 
+0x6d35 021827 istore 3 ,contw 
+0x6d36 021828 setarg rfcomm_max_frame_size 
+0x6d37 021829 istore 2 ,contw 
+0x6d38 021830 setarg 0x00 
+0x6d39 021831 istore 1 ,contw 
+0x6d3a 021832 setarg 0x07 
+0x6d3b 021833 istore 1 ,contw 
+0x6d3c 021834 call rfcomm_calculate_fcs_dlci0 
+0x6d3d 021835 istore 1 ,contw 
+0x6d3e 021836 rtn 
+:      021837 rfcomm_send_modem_status_cmd:
+0x6d3f 021838 set1 mark_ext_patch ,mark 
+0x6d40 021839 bpatch patch38_7 ,mem_patch38 
+0x6d41 021840 call l2cap_get_rfcomm_tx_buff 
+0x6d42 021841 setarg 0x0008 
+0x6d43 021842 istore 2 ,contw 
+0x6d44 021843 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d45 021844 istore 2 ,contw 
+0x6d46 021845 fetch 1 ,mem_rfcomm_initiator 
+0x6d47 021846 lshift pdata ,pdata 
+0x6d48 021847 set1 0 ,pdata 
+0x6d49 021848 istore 1 ,contw 
+0x6d4a 021849 setarg 0x09ef 
+0x6d4b 021850 istore 2 ,contw 
+0x6d4c 021851 setarg 0x05e3 
+0x6d4d 021852 istore 2 ,contw 
+0x6d4e 021853 copy temp ,pdata 
+0x6d4f 021854 istore 1 ,contw 
+0x6d50 021855 setarg 0x8d 
+0x6d51 021856 istore 1 ,contw 
+0x6d52 021857 call rfcomm_calculate_fcs_dlci0 
+0x6d53 021858 istore 1 ,contw 
+0x6d54 021859 rtn 
+:      021861 rfcomm_send_modem_status_res:
+0x6d55 021862 set1 mark_ext_patch ,mark 
+0x6d56 021863 bpatch patch39_0 ,mem_patch39 
+0x6d57 021864 call l2cap_malloc_rfcomm_channel 
+0x6d58 021865 call l2cap_get_rfcomm_tx_buff 
+0x6d59 021866 setarg 0x0008 
+0x6d5a 021867 istore 2 ,contw 
+0x6d5b 021868 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d5c 021869 istore 2 ,contw 
+0x6d5d 021870 copy temp ,timeup 
+0x6d5e 021871 fetch 1 ,mem_rfcomm_initiator 
+0x6d5f 021872 lshift pdata ,pdata 
+0x6d60 021873 set1 0 ,pdata 
+0x6d61 021874 istore 1 ,contw 
+0x6d62 021875 setarg 0x09ef 
+0x6d63 021876 istore 2 ,contw 
+0x6d64 021877 setarg 0x05e1 
+0x6d65 021878 istore 2 ,contw 
+0x6d66 021879 copy timeup ,pdata 
+0x6d67 021880 istore 1 ,contw 
+0x6d68 021881 setarg 0x8d 
+0x6d69 021882 istore 1 ,contw 
+0x6d6a 021883 call rfcomm_calculate_fcs_dlci0 
+0x6d6b 021884 istore 1 ,contw 
+0x6d6c 021885 rtn 
+:      021887 rfcomm_send_uih_without_payload:
+0x6d6d 021888 set1 mark_ext_patch ,mark 
+0x6d6e 021889 bpatch patch39_1 ,mem_patch39 
+0x6d6f 021890 fetch 1 ,mem_credit_given 
+0x6d70 021891 rtn blank 
+0x6d71 021892 hfetch 2 ,core_uart_rxitems 
+0x6d72 021893 nrtn blank 
+0x6d73 021894 copy rega ,pdata 
+0x6d74 021895 store 1 ,mem_pdatatemp + 1 
+0x6d75 021896 storet 1 ,mem_pdatatemp 
+0x6d76 021897 call l2cap_malloc_is_fifo_full 
+0x6d77 021898 nrtn blank 
+0x6d78 021899 call l2cap_malloc_rfcomm_channel 
+0x6d79 021900 call l2cap_get_rfcomm_tx_buff 
+0x6d7a 021901 setarg 0x05 
+0x6d7b 021902 istore 2 ,contw 
+0x6d7c 021903 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d7d 021904 istore 2 ,contw 
+0x6d7e 021905 fetch 1 ,mem_rfcomm_send_adss 
+0x6d7f 021906 istore 1 ,contw 
+0x6d80 021907 setarg 0x01ff 
+0x6d81 021908 istore 2 ,contw 
+0x6d82 021909 fetch 1 ,mem_credit_given 
+0x6d83 021910 istore 1 ,contw 
+0x6d84 021911 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x6d85 021912 istore 1 ,contw 
+0x6d86 021913 jam 0 ,mem_credit_given 
+0x6d87 021914 rtn 
+:      021916 rfcomm_increase_credit_given:
+0x6d88 021917 fetch 2 ,mem_current_length 
+0x6d89 021918 rtn blank 
+0x6d8a 021919 fetch 1 ,mem_credit_given 
+0x6d8b 021920 increase 1 ,pdata 
+0x6d8c 021921 store 1 ,mem_credit_given 
+0x6d8d 021922 rtn 
+:      021924 spp_process_rx_data:
+0x6d8e 021925 set1 mark_ext_patch ,mark 
+0x6d8f 021926 bpatch patch39_2 ,mem_patch39 
+0x6d90 021927 fetch 2 ,mem_current_length 
+0x6d91 021928 copy pdata ,loopcnt 
+0x6d92 021929 call uartd_prepare_tx 
+0x6d93 021930 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6d94 021931 copy pdata ,contr 
+0x6d95 021932 call uart_copy_tx_bytes 
+0x6d96 021933 branch uartd_send 
+:      021935 spp_tx_rfcomm_packet:
+0x6d97 021936 set1 mark_ext_patch ,mark 
+0x6d98 021937 bpatch patch39_3 ,mem_patch39 
+0x6d99 021939 fetch 1 ,mem_remote_credits 
+0x6d9a 021940 rtn blank 
+0x6d9b 021941 increase -1 ,pdata 
+0x6d9c 021942 store 1 ,mem_remote_credits 
+0x6d9d 021943 fetch 2 ,mem_pn_max_frame_size 
+0x6d9e 021944 fetcht 2 ,mem_current_packet_length 
+0x6d9f 021945 isub temp ,null 
+0x6da0 021946 branch spp_tx_rfcomm_from_uart ,positive 
+0x6da1 021947 store 2 ,mem_current_packet_length 
+:      021948 spp_tx_rfcomm_from_uart:
+0x6da2 021949 fetch 1 ,mem_credit_given 
+0x6da3 021950 branch spp_tx_rfcomm_from_uart_without_credit ,blank 
+0x6da4 021951 jam 1 ,mem_rfcomm_send_offset 
+0x6da5 021952 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x6da6 021953 store 1 ,mem_rfcomm_send_fcs 
+0x6da7 021954 setarg rsp_rx_uih_wdata 
+0x6da8 021955 store 1 ,mem_rfcomm_send_frame_type 
+0x6da9 021956 branch spp_tx_rfcomm_from_uart_common 
+:      021957 spp_tx_rfcomm_from_uart_without_credit:
+0x6daa 021958 jam 0 ,mem_rfcomm_send_offset 
+0x6dab 021959 fetch 1 ,mem_hiufcs_spp 
+0x6dac 021960 store 1 ,mem_rfcomm_send_fcs 
+0x6dad 021961 setarg rsp_tx_uih 
+0x6dae 021962 store 1 ,mem_rfcomm_send_frame_type 
+:      021963 spp_tx_rfcomm_from_uart_common:
+0x6daf 021964 set1 mark_ext_patch ,mark 
+0x6db0 021965 bpatch patch39_4 ,mem_patch39 
+0x6db1 021966 fetch 1 ,mem_current_packet_length 
+0x6db2 021967 sub pdata ,127 ,null 
+0x6db3 021968 branch spp_tx_rfcomm_from_uart_common0 ,positive 
+0x6db4 021969 fetch 1 ,mem_rfcomm_send_offset 
+0x6db5 021970 increase 1 ,pdata 
+0x6db6 021971 store 1 ,mem_rfcomm_send_offset 
+:      021972 spp_tx_rfcomm_from_uart_common0:
+0x6db7 021973 call get_rfcomm_snd_adss 
+0x6db8 021974 fetch 2 ,mem_current_packet_length 
+0x6db9 021975 increase 8 ,pdata 
+0x6dba 021976 fetcht 1 ,mem_rfcomm_send_offset 
+0x6dbb 021977 iadd temp ,rega 
+0x6dbc 021979 call l2cap_malloc 
+0x6dbd 021980 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x6dbe 021981 increase 4 ,pdata 
+0x6dbf 021982 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x6dc0 021983 copy pdata ,contw 
+0x6dc1 021984 fetch 1 ,mem_rfcomm_send_adss 
+0x6dc2 021985 istore 1 ,contw 
+0x6dc3 021986 fetch 1 ,mem_rfcomm_send_frame_type 
+0x6dc4 021987 istore 1 ,contw 
+0x6dc5 021988 call spp_tx_write_length 
+0x6dc6 021989 call spp_tx_write_given_credit 
+0x6dc7 021990 call get_uart_rrptr 
+0x6dc8 021991 fetch 1 ,mem_current_packet_length 
+0x6dc9 021992 copy pdata ,loopcnt 
+0x6dca 021993 call uart_copy_rx_bytes 
+0x6dcb 021994 fetch 1 ,mem_rfcomm_send_fcs 
+0x6dcc 021995 istore 1 ,contw 
+0x6dcd 021996 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x6dce 021997 copy pdata ,contw 
+0x6dcf 021998 fetch 2 ,mem_current_packet_length 
+0x6dd0 021999 fetcht 1 ,mem_rfcomm_send_offset 
+0x6dd1 022000 iadd temp ,pdata 
+0x6dd2 022001 increase 4 ,pdata 
+0x6dd3 022002 istore 2 ,contw 
+0x6dd4 022003 fetch 2 ,mem_rfcomm_remote_cid 
+0x6dd5 022004 istore 2 ,contw 
+0x6dd6 022005 jam 0 ,mem_credit_given 
+0x6dd7 022006 branch spp_send_end 
+:      022008 spp_tx_write_length:
+0x6dd8 022009 fetch 2 ,mem_current_packet_length 
+0x6dd9 022010 sub pdata ,0x7f ,null 
+0x6dda 022011 nbranch spp_tx_write_long_packet ,positive 
+0x6ddb 022012 lshift pdata ,pdata 
+0x6ddc 022013 set1 0 ,pdata 
+0x6ddd 022014 istore 1 ,contw 
+0x6dde 022015 rtn 
+:      022016 spp_tx_write_long_packet:
+0x6ddf 022017 fetch 2 ,mem_current_packet_length 
+0x6de0 022018 rshift3 pdata ,pdata 
+0x6de1 022019 rshift4 pdata ,temp 
+0x6de2 022020 and_into 0x7f ,pdata 
+0x6de3 022021 lshift pdata ,pdata 
+0x6de4 022022 set0 0 ,pdata 
+0x6de5 022023 istore 1 ,contw 
+0x6de6 022024 istoret 1 ,contw 
+0x6de7 022025 rtn 
+:      022026 spp_tx_write_given_credit:
+0x6de8 022027 fetch 1 ,mem_credit_given 
+0x6de9 022028 rtn blank 
+0x6dea 022029 istore 1 ,contw 
+0x6deb 022030 rtn 
+:      022035 scheduler_process:
+0x6dec 022036 set1 mark_ext_patch ,mark 
+0x6ded 022037 bpatch patch33_5 ,mem_patch33 
+0x6dee 022038 call check_51cmd 
+0x6def 022039 call app_process_bb_event 
+0x6df0 022040 call process_conn_sm 
+0x6df1 022042 set1 mark_ext_patch ,mark 
+0x6df2 022043 bpatch patch33_6 ,mem_patch33 
+0x6df3 022044 call sp_calc_sequence 
+0x6df4 022045 call simple_pairing_sequence 
+0x6df5 022046 call master_simple_paring_sequence 
+0x6df6 022048 set1 mark_ext_patch ,mark 
+0x6df7 022049 bpatch patch33_7 ,mem_patch33 
+0x6df8 022050 fetch 1 ,mem_device_option 
+0x6df9 022051 rtneq dvc_op_hci 
+0x6dfa 022053 call l2cap_malloc_is_fifo_full 
+0x6dfb 022054 nrtn blank 
+0x6dfc 022056 call l2cap_call_proc_sigal_pending 
+:      022057 scheduler_process1:
+0x6dfd 022058 call l2cap_malloc_is_fifo_full 
+0x6dfe 022059 nrtn blank 
+0x6dff 022060 set1 mark_ext_patch ,mark 
+0x6e00 022061 bpatch patch34_0 ,mem_patch34 
+0x6e01 022063 call process_upper_sm 
+0x6e02 022064 call l2cap_send_config_req 
+0x6e03 022065 call rfcomm_send_more_pkt 
+:      022066 scheduler_process0:
+0x6e04 022067 call scheduler_tx_disconnect_hid 
+0x6e05 022068 set1 mark_ext_patch ,mark 
+0x6e06 022069 bpatch patch34_1 ,mem_patch34 
+0x6e07 022070 call l2cap_malloc_is_fifo_full 
+0x6e08 022071 nrtn blank 
+0x6e09 022072 branch app_process_bt 
+:      022074 scheduler_tx_disconnect_hid:
+0x6e0a 022075 set1 mark_ext_patch ,mark 
+0x6e0b 022076 bpatch patch34_2 ,mem_patch34 
+0x6e0c 022077 fetch 1 ,mem_control_tasks 
+0x6e0d 022078 bbit1 l2cap_disconnect_interrupt ,l2cap_disconnect_interrupt_req 
+0x6e0e 022079 bbit1 l2cap_disconnect_control ,l2cap_disconnect_control_req 
+0x6e0f 022080 rtn 
+:      022082 scheduler_tx_l2cap_pkt:
+0x6e10 022083 set1 mark_ext_patch ,mark 
+0x6e11 022084 bpatch patch34_3 ,mem_patch34 
+0x6e12 022085 call l2cap_malloc_is_fifo_empty 
+0x6e13 022086 rtn blank 
+0x6e14 022087 fetch 1 ,mem_op 
+0x6e15 022088 rtnbit1 op_txl2cap 
+0x6e16 022089 call l2cap_malloc_fifo_out 
+0x6e17 022090 store 2 ,mem_txptr 
+0x6e18 022091 copy pdata ,contr 
+0x6e19 022092 ifetch 2 ,contr 
+0x6e1a 022093 increase 4 ,pdata 
+0x6e1b 022094 store 2 ,mem_tx_len 
+0x6e1c 022095 jam 6 ,mem_tx_lch 
+0x6e1d 022096 set1 mark_ext_patch ,mark 
+0x6e1e 022097 bpatch patch34_4 ,mem_patch34 
+0x6e1f 022098 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x6e20 022099 branch scheduler_tx_l2cap_start_pkt ,blank 
+0x6e21 022100 fetch 1 ,mem_op 
+0x6e22 022101 rtnbit0 op_pkt_comp 
+0x6e23 022102 set0 op_pkt_comp ,pdata 
+0x6e24 022103 store 1 ,mem_op 
+0x6e25 022104 jam 5 ,mem_tx_lch 
+0x6e26 022105 fetcht 2 ,mem_l2cap_tx_multi_offset 
+0x6e27 022106 fetch 2 ,mem_txptr 
+0x6e28 022107 iadd temp ,pdata 
+0x6e29 022108 store 2 ,mem_txptr 
+0x6e2a 022109 fetch 2 ,mem_tx_len 
+0x6e2b 022110 isub temp ,pdata 
+0x6e2c 022111 store 2 ,mem_tx_len 
+:      022112 scheduler_tx_l2cap_start_pkt:
+0x6e2d 022113 set1 mark_ext_patch ,mark 
+0x6e2e 022114 bpatch patch34_5 ,mem_patch34 
+0x6e2f 022115 fetch 2 ,mem_tx_len 
+0x6e30 022116 branch assert ,blank 
+0x6e31 022117 arg l2cap_max_pkt_len ,temp 
+0x6e32 022118 isub temp ,pdata 
+0x6e33 022119 nbranch scheduler_tx_l2cap_last_pkt ,positive 
+0x6e34 022120 set1 mark_ext_patch ,mark 
+0x6e35 022121 bpatch patch34_6 ,mem_patch34 
+0x6e36 022122 storet 2 ,mem_tx_len 
+0x6e37 022123 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x6e38 022124 iadd temp ,pdata 
+0x6e39 022125 store 2 ,mem_l2cap_tx_multi_offset 
+0x6e3a 022126 branch scheduler_tx_l2cap_pkt_end 
+:      022127 scheduler_tx_l2cap_last_pkt:
+0x6e3b 022128 setarg 0 
+0x6e3c 022129 store 2 ,mem_l2cap_tx_multi_offset 
+:      022130 scheduler_tx_l2cap_pkt_end:
+0x6e3d 022131 fetch 1 ,mem_op 
+0x6e3e 022132 set1 op_txl2cap ,pdata 
+0x6e3f 022133 store 1 ,mem_op 
+0x6e40 022134 rtn 
+:      022136 scheduler_start_upper_sm:
+0x6e41 022137 fetch 1 ,mem_ui_profile_supported 
+0x6e42 022138 bbit1 support_hid ,scheduler_start_upper_sm_hid 
+0x6e43 022139 jam uppersm_reconn_sdp_conn ,mem_upper_sm_reconn 
+0x6e44 022140 rtn 
+:      022141 scheduler_start_upper_sm_hid:
+0x6e45 022142 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x6e46 022143 rtn 
+:      022145 process_upper_sm:
+0x6e47 022146 fetch 1 ,memui_reconnect_mode 
+0x6e48 022147 nbranch process_upper_sm_reconn ,blank 
+:      022148 process_upper_sm_remote_page:
+0x6e49 022149 fetch 1 ,mem_upper_sm_remote_page 
+0x6e4a 022151 rtn blank 
+0x6e4b 022153 jam 0 ,mem_upper_sm_remote_page 
+:      022154 process_upper_sm_rp_wait:
+0x6e4c 022155 rtn 
+:      022158 process_upper_sm_reconn:
+0x6e4d 022159 set1 mark_ext_patch ,mark 
+0x6e4e 022160 bpatch patch34_7 ,mem_patch34 
+0x6e4f 022161 fetch 1 ,mem_upper_sm_reconn 
+0x6e50 022162 rtn blank 
+0x6e51 022163 beq uppersm_reconn_sdp_conn ,process_upper_sm_reconn_sdp_conn 
+0x6e52 022164 beq uppersm_reconn_sdp_conn_wait ,process_upper_sm_reconn_sdp_conn_wait 
+0x6e53 022165 beq uppersm_reconn_sdp_cfg ,process_upper_sm_reconn_sdp_cfg 
+0x6e54 022166 beq uppersm_reconn_sdp_cfg_wait ,process_upper_sm_reconn_sdp_cfg_wait 
+0x6e55 022167 beq uppersm_reconn_ss_spp ,process_upper_sm_reconn_ss_spp 
+0x6e56 022168 beq uppersm_reconn_ss_spp_wait ,process_upper_sm_reconn_ss_spp_wait 
+0x6e57 022169 beq uppersm_reconn_sdp_disconn ,process_upper_sm_reconn_sdp_disconn 
+0x6e58 022170 beq uppersm_reconn_sdp_disconn_wait ,process_upper_sm_reconn_sdp_disconn_wait 
+0x6e59 022171 beq uppersm_reconn_hid_ctrl_conn ,process_upper_sm_reconn_hid_ctrl_conn 
+0x6e5a 022172 beq uppersm_reconn_hid_ctrl_conn_wait ,process_upper_sm_reconn_hid_ctrl_conn_wait 
+0x6e5b 022173 beq uppersm_reconn_hid_ctrl_cfg ,process_upper_sm_reconn_hid_ctrl_cfg 
+0x6e5c 022174 beq uppersm_reconn_hid_ctrl_cfg_wait ,process_upper_sm_reconn_hid_ctrl_cfg_wait 
+0x6e5d 022175 beq uppersm_reconn_hid_int_conn ,process_upper_sm_reconn_hid_int_conn 
+0x6e5e 022176 beq uppersm_reconn_hid_int_conn_wait ,process_upper_sm_reconn_hid_int_conn_wait 
+0x6e5f 022177 beq uppersm_reconn_hid_int_cfg ,process_upper_sm_reconn_hid_int_cfg 
+0x6e60 022178 beq uppersm_reconn_hid_int_cfg_wait ,process_upper_sm_reconn_hid_int_cfg_wait 
+0x6e61 022179 beq uppersm_reconn_rfcomm_conn ,process_upper_sm_reconn_rfcomm_conn 
+0x6e62 022180 beq uppersm_reconn_rfcomm_conn_wait ,process_upper_sm_reconn_rfcomm_conn_wait 
+0x6e63 022181 beq uppersm_reconn_rfcomm_cfg ,process_upper_sm_reconn_rfcomm_cfg 
+0x6e64 022182 beq uppersm_reconn_rfcomm_cfg_wait ,process_upper_sm_reconn_rfcomm_cfg_wait 
+0x6e65 022183 beq uppersm_reconn_rfcomm_sabm ,process_upper_sm_reconn_rfcomm_sabm 
+0x6e66 022184 beq uppersm_reconn_rfcomm_sabm_wait ,process_upper_sm_reconn_rfcomm_sabm_wait 
+0x6e67 022185 beq uppersm_reconn_spp_cmd_pn ,process_upper_sm_reconn_spp_cmd_pn 
+0x6e68 022186 beq uppersm_reconn_spp_cmd_pn_wait ,process_upper_sm_reconn_spp_cmd_pn_wait 
+0x6e69 022187 beq uppersm_reconn_spp_sabm ,process_upper_sm_reconn_spp_sabm 
+0x6e6a 022188 beq uppersm_reconn_spp_sabm_wait ,process_upper_sm_reconn_spp_sabm_wait 
+0x6e6b 022189 beq uppersm_reconn_spp_cmd_ms ,process_upper_sm_reconn_spp_cmd_ms 
+0x6e6c 022190 beq uppersm_reconn_spp_cmd_ms_wait ,process_upper_sm_reconn_spp_cmd_ms_wait 
+:      022191 process_upper_sm_reconn_wait:
+0x6e6d 022192 rtn 
+:      022193 process_upper_sm_reconn_sdp_conn:
+0x6e6e 022194 call upper_sm_send_sdp_conn 
+0x6e6f 022195 jam uppersm_reconn_sdp_conn_wait ,mem_upper_sm_reconn 
+0x6e70 022196 fetch 1 ,mem_sdp_state 
+0x6e71 022197 set1 l2cap_channel_state_conn_req ,pdata 
+0x6e72 022198 store 1 ,mem_sdp_state 
+0x6e73 022199 rtn 
+:      022200 process_upper_sm_reconn_sdp_cfg:
+0x6e74 022201 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6e75 022202 fetch 1 ,mem_sdp_state 
+0x6e76 022203 rtnbit1 l2cap_channel_state_snd_cfg_req 
+0x6e77 022204 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6e78 022205 call upper_sm_send_sdp_cfg 
+0x6e79 022206 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6e7a 022207 fetch 1 ,mem_sdp_state 
+0x6e7b 022208 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6e7c 022209 store 1 ,mem_sdp_state 
+0x6e7d 022210 rtn 
+:      022211 process_upper_sm_reconn_ss_spp:
+0x6e7e 022212 call l2cap_malloc_is_fifo_empty 
+0x6e7f 022213 nrtn blank 
+0x6e80 022214 call upper_sm_send_ss_spp 
+0x6e81 022215 jam uppersm_reconn_ss_spp_wait ,mem_upper_sm_reconn 
+0x6e82 022216 rtn 
+:      022217 process_upper_sm_reconn_sdp_disconn:
+0x6e83 022218 call upper_sm_send_sdp_disconn 
+0x6e84 022219 jam uppersm_reconn_sdp_disconn_wait ,mem_upper_sm_reconn 
+0x6e85 022220 rtn 
+:      022221 process_upper_sm_reconn_hid_ctrl_conn:
+0x6e86 022222 call upper_sm_send_hid_ctrl_conn 
+0x6e87 022223 jam uppersm_reconn_hid_ctrl_conn_wait ,mem_upper_sm_reconn 
+0x6e88 022224 fetch 1 ,mem_hid_control_state 
+0x6e89 022225 set1 l2cap_channel_state_conn_req ,pdata 
+0x6e8a 022226 store 1 ,mem_hid_control_state 
+0x6e8b 022227 rtn 
+:      022228 process_upper_sm_reconn_hid_ctrl_cfg:
+0x6e8c 022229 call upper_sm_send_hid_ctrl_cfg 
+0x6e8d 022230 jam uppersm_reconn_hid_ctrl_cfg_wait ,mem_upper_sm_reconn 
+0x6e8e 022231 fetch 1 ,mem_hid_control_state 
+0x6e8f 022232 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6e90 022233 store 1 ,mem_hid_control_state 
+0x6e91 022234 rtn 
+:      022235 process_upper_sm_reconn_hid_int_conn:
+0x6e92 022236 call upper_sm_send_hid_int_conn 
+0x6e93 022237 jam uppersm_reconn_hid_int_conn_wait ,mem_upper_sm_reconn 
+0x6e94 022238 fetch 1 ,mem_hid_interrupt_state 
+0x6e95 022239 set1 l2cap_channel_state_conn_req ,pdata 
+0x6e96 022240 store 1 ,mem_hid_interrupt_state 
+0x6e97 022241 rtn 
+:      022242 process_upper_sm_reconn_hid_int_cfg:
+0x6e98 022243 call upper_sm_send_hid_int_cfg 
+0x6e99 022244 jam uppersm_reconn_hid_int_cfg_wait ,mem_upper_sm_reconn 
+0x6e9a 022245 fetch 1 ,mem_hid_interrupt_state 
+0x6e9b 022246 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6e9c 022247 store 1 ,mem_hid_interrupt_state 
+0x6e9d 022248 rtn 
+:      022249 process_upper_sm_reconn_rfcomm_conn:
+0x6e9e 022250 call upper_sm_send_rfcomm_conn 
+0x6e9f 022251 jam uppersm_reconn_rfcomm_conn_wait ,mem_upper_sm_reconn 
+0x6ea0 022252 fetch 1 ,mem_rfcomm_state 
+0x6ea1 022253 set1 l2cap_channel_state_conn_req ,pdata 
+0x6ea2 022254 store 1 ,mem_rfcomm_state 
+0x6ea3 022255 rtn 
+:      022256 process_upper_sm_reconn_rfcomm_cfg:
+0x6ea4 022257 call upper_sm_send_rfcomm_cfg 
+0x6ea5 022258 jam uppersm_reconn_rfcomm_cfg_wait ,mem_upper_sm_reconn 
+0x6ea6 022259 fetch 1 ,mem_rfcomm_state 
+0x6ea7 022260 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6ea8 022261 store 1 ,mem_rfcomm_state 
+0x6ea9 022262 rtn 
+:      022263 process_upper_sm_reconn_rfcomm_sabm:
+0x6eaa 022264 call upper_sm_send_rfcomm_sabm 
+0x6eab 022265 jam uppersm_reconn_rfcomm_sabm_wait ,mem_upper_sm_reconn 
+0x6eac 022266 fetch 1 ,mem_rfcomm_state 
+0x6ead 022267 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x6eae 022268 store 1 ,mem_rfcomm_state 
+0x6eaf 022269 rtn 
+:      022270 process_upper_sm_reconn_spp_cmd_pn:
+0x6eb0 022271 call upper_sm_send_spp_cmd_pn 
+0x6eb1 022272 fetch 1 ,mem_spp_state 
+0x6eb2 022273 set1 rfcomm_channel_state_pn_cmd 
+0x6eb3 022274 store 1 ,mem_spp_state 
+0x6eb4 022275 jam uppersm_reconn_spp_cmd_pn_wait ,mem_upper_sm_reconn 
+0x6eb5 022276 rtn 
+:      022277 process_upper_sm_reconn_spp_sabm:
+0x6eb6 022278 call upper_sm_send_spp_sabm 
+0x6eb7 022279 fetch 1 ,mem_spp_state 
+0x6eb8 022280 set1 rfcomm_channel_state_sabm 
+0x6eb9 022281 store 1 ,mem_spp_state 
+0x6eba 022282 jam uppersm_reconn_spp_sabm_wait ,mem_upper_sm_reconn 
+0x6ebb 022283 fetch 1 ,mem_remote_spp_channel 
+0x6ebc 022284 lshift3 pdata ,pdata 
+0x6ebd 022285 or_into 3 ,pdata 
+0x6ebe 022286 arg mem_hiufcs_spp ,temp 
+0x6ebf 022287 storet 2 ,mem_contw_temp 
+0x6ec0 022288 branch rfcomm_save_fcs_uih 
+:      022289 process_upper_sm_reconn_spp_cmd_ms:
+0x6ec1 022290 call upper_sm_send_spp_cmd_ms 
+0x6ec2 022291 fetch 1 ,mem_spp_state 
+0x6ec3 022292 set1 rfcomm_channel_state_snd_ms_cmd 
+0x6ec4 022293 store 1 ,mem_spp_state 
+0x6ec5 022294 jam uppersm_reconn_spp_cmd_ms_wait ,mem_upper_sm_reconn 
+0x6ec6 022295 rtn 
+:      022297 process_upper_sm_reconn_sdp_conn_wait:
+0x6ec7 022298 fetch 1 ,mem_sdp_state 
+0x6ec8 022299 rtnbit0 l2cap_channel_state_conn_res 
+0x6ec9 022300 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6eca 022301 branch process_upper_sm_reconn 
+:      022302 process_upper_sm_reconn_sdp_cfg_wait:
+0x6ecb 022303 fetch 1 ,mem_sdp_state 
+0x6ecc 022304 rtnne l2cap_channel_setup_complete 
+0x6ecd 022305 jam uppersm_reconn_ss_spp ,mem_upper_sm_reconn 
+:      022306 process_upper_sm_reconn_ss_spp_wait:
+0x6ece 022307 fetch 1 ,mem_message_to_uppersm 
+0x6ecf 022308 rtnne recieve_ss_reasult_hf 
+0x6ed0 022309 jam 0 ,mem_message_to_uppersm 
+0x6ed1 022310 jam uppersm_reconn_sdp_disconn ,mem_upper_sm_reconn 
+0x6ed2 022311 branch process_upper_sm_reconn 
+:      022312 process_upper_sm_reconn_sdp_disconn_wait:
+0x6ed3 022313 fetch 1 ,mem_sdp_state 
+0x6ed4 022314 nrtn blank 
+0x6ed5 022315 fetch 1 ,mem_ui_profile_supported 
+0x6ed6 022316 bbit1 support_hid ,process_upper_sm_reconn_setup_hid 
+0x6ed7 022317 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x6ed8 022318 branch process_upper_sm_reconn_termination 
+:      022319 process_upper_sm_reconn_hid_ctrl_conn_wait:
+0x6ed9 022320 fetch 1 ,mem_hid_control_state 
+0x6eda 022321 rtnbit0 l2cap_channel_state_conn_res 
+0x6edb 022322 jam uppersm_reconn_hid_ctrl_cfg ,mem_upper_sm_reconn 
+0x6edc 022323 branch process_upper_sm_reconn 
+:      022324 process_upper_sm_reconn_hid_ctrl_cfg_wait:
+0x6edd 022325 fetch 1 ,mem_hid_control_state 
+0x6ede 022326 rtnne l2cap_channel_setup_complete 
+0x6edf 022327 jam uppersm_reconn_hid_int_conn ,mem_upper_sm_reconn 
+0x6ee0 022328 branch process_upper_sm_reconn 
+:      022329 process_upper_sm_reconn_hid_int_conn_wait:
+0x6ee1 022330 fetch 1 ,mem_hid_interrupt_state 
+0x6ee2 022331 rtnbit0 l2cap_channel_state_conn_res 
+0x6ee3 022332 jam uppersm_reconn_hid_int_cfg ,mem_upper_sm_reconn 
+0x6ee4 022333 branch process_upper_sm_reconn 
+:      022334 process_upper_sm_reconn_hid_int_cfg_wait:
+0x6ee5 022335 fetch 1 ,mem_hid_interrupt_state 
+0x6ee6 022336 rtnne l2cap_channel_setup_complete 
+0x6ee7 022337 fetch 1 ,mem_ui_profile_supported 
+0x6ee8 022338 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x6ee9 022339 branch process_upper_sm_reconn_termination 
+:      022340 process_upper_sm_reconn_rfcomm_conn_wait:
+0x6eea 022341 fetch 1 ,mem_rfcomm_state 
+0x6eeb 022342 rtnbit0 l2cap_channel_state_conn_res 
+0x6eec 022343 jam uppersm_reconn_rfcomm_cfg ,mem_upper_sm_reconn 
+0x6eed 022344 branch process_upper_sm_reconn 
+:      022345 process_upper_sm_reconn_rfcomm_cfg_wait:
+0x6eee 022346 fetch 1 ,mem_rfcomm_state 
+0x6eef 022347 rtnne l2cap_channel_setup_complete 
+0x6ef0 022348 jam uppersm_reconn_rfcomm_sabm ,mem_upper_sm_reconn 
+0x6ef1 022349 branch process_upper_sm_reconn 
+:      022350 process_upper_sm_reconn_rfcomm_sabm_wait:
+0x6ef2 022351 fetch 1 ,mem_rfcomm_state 
+0x6ef3 022352 rtnne l2cap_channel_rfcomm_dlci0_opened 
+0x6ef4 022353 fetch 1 ,mem_ui_profile_supported 
+0x6ef5 022354 bbit1 support_spp ,process_upper_sm_reconn_setup_spp 
+0x6ef6 022355 branch process_upper_sm_reconn_termination 
+:      022356 process_upper_sm_reconn_spp_cmd_pn_wait:
+0x6ef7 022357 fetch 1 ,mem_spp_state 
+0x6ef8 022358 rtnbit0 rfcomm_channel_state_pn_res 
+0x6ef9 022359 jam uppersm_reconn_spp_sabm ,mem_upper_sm_reconn 
+0x6efa 022360 branch process_upper_sm_reconn 
+:      022361 process_upper_sm_reconn_spp_sabm_wait:
+0x6efb 022362 fetch 1 ,mem_spp_state 
+0x6efc 022363 rtnbit0 rfcomm_channel_state_ua 
+0x6efd 022364 jam uppersm_reconn_spp_cmd_ms ,mem_upper_sm_reconn 
+0x6efe 022365 branch process_upper_sm_reconn 
+:      022366 process_upper_sm_reconn_spp_cmd_ms_wait:
+0x6eff 022367 fetch 1 ,mem_spp_state 
+0x6f00 022368 rtnne rfcomm_channel_setup_complete 
+0x6f01 022369 branch process_upper_sm_reconn_termination 
+:      022371 process_upper_sm_reconn_setup_hid:
+0x6f02 022372 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x6f03 022373 branch process_upper_sm_reconn 
+:      022375 process_upper_sm_reconn_setup_rfcomm:
+0x6f04 022376 jam uppersm_reconn_rfcomm_conn ,mem_upper_sm_reconn 
+0x6f05 022377 branch process_upper_sm_reconn 
+:      022378 process_upper_sm_reconn_setup_spp:
+0x6f06 022379 jam uppersm_reconn_spp_cmd_pn ,mem_upper_sm_reconn 
+0x6f07 022380 branch process_upper_sm_reconn 
+:      022384 process_upper_sm_reconn_termination:
+0x6f08 022385 jam 0 ,mem_upper_sm_reconn 
+0x6f09 022386 rtn 
+:      022387 upper_sm_send_sdp_conn:
+0x6f0a 022388 set1 mark_ext_patch ,mark 
+0x6f0b 022389 bpatch patch35_0 ,mem_patch35 
+0x6f0c 022390 call l2cap_malloc_signal_channel 
+0x6f0d 022391 setarg psm_sdp 
+0x6f0e 022392 copy pdata ,temp 
+0x6f0f 022393 setarg l2cap_sdp_channel 
+0x6f10 022394 copy pdata ,timeup 
+0x6f11 022395 branch ml2cap_send_signal_connect_req 
+:      022397 upper_sm_send_sdp_cfg:
+0x6f12 022398 set1 mark_ext_patch ,mark 
+0x6f13 022399 bpatch patch35_1 ,mem_patch35 
+0x6f14 022400 call l2cap_malloc_signal_channel 
+0x6f15 022401 fetch 2 ,mem_sdp_remote_cid 
+0x6f16 022402 copy pdata ,temp 
+0x6f17 022403 branch ml2cap_send_signal_config_req 
+:      022405 upper_sm_send_sdp_disconn:
+0x6f18 022406 set1 mark_ext_patch ,mark 
+0x6f19 022407 bpatch patch35_2 ,mem_patch35 
+0x6f1a 022408 call l2cap_malloc_signal_channel 
+0x6f1b 022409 fetch 2 ,mem_sdp_remote_cid 
+0x6f1c 022410 copy pdata ,temp 
+0x6f1d 022411 arg l2cap_sdp_channel ,timeup 
+0x6f1e 022412 call ml2cap_send_signal_disconn_req 
+0x6f1f 022413 fetch 1 ,mem_sdp_state 
+0x6f20 022414 set0 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x6f21 022415 store 1 ,mem_sdp_state 
+0x6f22 022416 rtn 
+:      022418 upper_sm_send_ss_spp:
+0x6f23 022419 set1 mark_ext_patch ,mark 
+0x6f24 022420 bpatch patch35_3 ,mem_patch35 
+0x6f25 022421 call l2cap_malloc_sdp_channel 
+0x6f26 022422 call sdp_send_spp_request 
+0x6f27 022423 branch msdp_send_req_done 
+:      022425 upper_sm_send_rfcomm_conn:
+0x6f28 022426 set1 mark_ext_patch ,mark 
+0x6f29 022427 bpatch patch35_4 ,mem_patch35 
+0x6f2a 022428 call l2cap_malloc_signal_channel 
+0x6f2b 022429 setarg psm_rfcomm 
+0x6f2c 022430 copy pdata ,temp 
+0x6f2d 022431 setarg l2cap_rfcomm_channel 
+0x6f2e 022432 copy pdata ,timeup 
+0x6f2f 022433 branch ml2cap_send_signal_connect_req 
+:      022435 upper_sm_send_rfcomm_cfg:
+0x6f30 022436 set1 mark_ext_patch ,mark 
+0x6f31 022437 bpatch patch35_5 ,mem_patch35 
+0x6f32 022438 call l2cap_malloc_signal_channel 
+0x6f33 022439 fetch 2 ,mem_rfcomm_remote_cid 
+0x6f34 022440 copy pdata ,temp 
+0x6f35 022441 branch ml2cap_send_signal_config_req 
+:      022443 upper_sm_send_hid_ctrl_conn:
+0x6f36 022444 set1 mark_ext_patch ,mark 
+0x6f37 022445 bpatch patch35_6 ,mem_patch35 
+0x6f38 022446 call l2cap_malloc_signal_channel 
+0x6f39 022447 setarg psm_hid_control 
+0x6f3a 022448 copy pdata ,temp 
+0x6f3b 022449 setarg l2cap_hid_control_channel 
+0x6f3c 022450 copy pdata ,timeup 
+0x6f3d 022451 branch ml2cap_send_signal_connect_req 
+:      022453 upper_sm_send_hid_ctrl_cfg:
+0x6f3e 022454 set1 mark_ext_patch ,mark 
+0x6f3f 022455 bpatch patch35_7 ,mem_patch35 
+0x6f40 022456 call l2cap_malloc_signal_channel 
+0x6f41 022457 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x6f42 022458 copy pdata ,temp 
+0x6f43 022459 branch ml2cap_send_signal_config_req 
+:      022461 upper_sm_send_hid_int_conn:
+0x6f44 022462 set1 mark_ext_patch ,mark 
+0x6f45 022463 bpatch patch36_0 ,mem_patch36 
+0x6f46 022464 call l2cap_malloc_signal_channel 
+0x6f47 022465 setarg psm_hid_interrupt 
+0x6f48 022466 copy pdata ,temp 
+0x6f49 022467 setarg l2cap_hid_interrupt_channel 
+0x6f4a 022468 copy pdata ,timeup 
+0x6f4b 022469 branch ml2cap_send_signal_connect_req 
+:      022471 upper_sm_send_hid_int_cfg:
+0x6f4c 022472 set1 mark_ext_patch ,mark 
+0x6f4d 022473 bpatch patch36_1 ,mem_patch36 
+0x6f4e 022474 call l2cap_malloc_signal_channel 
+0x6f4f 022475 fetch 2 ,mem_hid_int_remote_cid 
+0x6f50 022476 copy pdata ,temp 
+0x6f51 022477 branch ml2cap_send_signal_config_req 
+:      022479 upper_sm_send_rfcomm_sabm:
+0x6f52 022480 set1 mark_ext_patch ,mark 
+0x6f53 022481 bpatch patch36_2 ,mem_patch36 
+0x6f54 022482 call l2cap_malloc_rfcomm_channel 
+0x6f55 022484 jam 3 ,mem_current_adss 
+0x6f56 022485 jam 0x1c ,mem_current_fcs 
+0x6f57 022486 call rfcomm_send_sabm 
+0x6f58 022487 jam 1 ,mem_rfcomm_initiator 
+0x6f59 022488 rtn 
+:      022490 upper_sm_send_spp_cmd_pn:
+0x6f5a 022491 set1 mark_ext_patch ,mark 
+0x6f5b 022492 bpatch patch36_3 ,mem_patch36 
+0x6f5c 022493 call l2cap_malloc_rfcomm_channel 
+0x6f5d 022494 fetcht 1 ,mem_remote_spp_channel 
+0x6f5e 022495 call channel_to_dlci 
+0x6f5f 022496 storet 1 ,mem_pn_dlci 
+0x6f60 022497 branch rfcomm_send_param_neg_cmd 
+:      022499 upper_sm_send_spp_sabm:
+0x6f61 022500 set1 mark_ext_patch ,mark 
+0x6f62 022501 bpatch patch36_4 ,mem_patch36 
+0x6f63 022502 call l2cap_malloc_rfcomm_channel 
+0x6f64 022503 fetcht 1 ,mem_pn_dlci 
+0x6f65 022504 call dlci_to_address_cmd 
+0x6f66 022505 call rfcomm_calculate_fcs_sabm 
+0x6f67 022506 store 1 ,mem_current_fcs 
+0x6f68 022507 fetcht 1 ,mem_pn_dlci 
+0x6f69 022508 call dlci_to_address_cmd 
+0x6f6a 022509 storet 1 ,mem_current_adss 
+0x6f6b 022510 branch rfcomm_send_sabm 
+:      022512 upper_sm_send_spp_cmd_ms:
+0x6f6c 022513 set1 mark_ext_patch ,mark 
+0x6f6d 022514 bpatch patch36_5 ,mem_patch36 
+0x6f6e 022515 call l2cap_malloc_rfcomm_channel 
+0x6f6f 022516 fetcht 1 ,mem_pn_dlci 
+0x6f70 022517 call dlci_to_address_cmd 
+0x6f71 022518 branch rfcomm_send_modem_status_cmd 
+:      022531 sdp_process:
+0x6f72 022532 set1 mark_ext_patch ,mark 
+0x6f73 022533 bpatch patch3c_7 ,mem_patch3c 
+0x6f74 022534 fetch 2 ,mem_l2cap_payload_ptr 
+0x6f75 022535 iforce contr 
+0x6f76 022536 ifetch 1 ,contr 
+0x6f77 022537 copy pdata ,regb 
+0x6f78 022538 store 1 ,mem_sdp_pduid 
+0x6f79 022539 ifetch 2 ,contr 
+0x6f7a 022540 store 2 ,mem_sdp_transactionid 
+0x6f7b 022541 ifetch 1 ,contr 
+0x6f7c 022542 lshift8 pdata ,timeup 
+0x6f7d 022543 ifetch 1 ,contr 
+0x6f7e 022544 iadd timeup ,timeup 
+0x6f7f 022545 set1 mark_ext_patch ,mark 
+0x6f80 022546 bpatch patch3d_0 ,mem_patch3d 
+0x6f81 022547 deposit regb 
+0x6f82 022548 beq sdp_service_search_request ,servicesearch_req 
+0x6f83 022549 beq sdp_service_attribute_request ,serviceattribute_req 
+0x6f84 022550 beq sdp_service_search_attribute_request ,servicesearchattribute_req 
+0x6f85 022551 beq sdp_service_search_attribute_response ,servicesearchattribute_res 
+0x6f86 022552 branch sdp_insufficient_resource 
+:      022563 servicesearch_req:
+0x6f87 022564 call ask_serviceclassid 
+0x6f88 022565 compare 1 ,temp ,0xff 
+0x6f89 022566 branch empth_sa_rsp ,true 
+0x6f8a 022567 compare 0xff ,temp ,0xff 
+0x6f8b 022568 branch sdp_invalid_reqest_syntax ,true 
+0x6f8c 022570 ifetch 2 ,contr 
+0x6f8d 022571 store 2 ,mem_sdp_record_maxcnt 
+0x6f8e 022572 increase -2 ,timeup 
+0x6f8f 022574 increase -1 ,timeup 
+0x6f90 022575 nbranch sdp_invalid_pdu_size ,zero 
+0x6f91 022576 arg mem_uuid_search_pat ,timeup 
+0x6f92 022577 ifetch 2 ,timeup 
+0x6f93 022578 rtn blank 
+0x6f94 022579 increase 2 ,timeup 
+0x6f95 022580 call search_uuid 
+0x6f96 022581 call l2cap_get_sdp_tx_payload 
+0x6f97 022582 force 3 ,pdata 
+0x6f98 022583 istore 1 ,contw 
+0x6f99 022584 fetch 2 ,mem_sdp_transactionid 
+0x6f9a 022585 istore 2 ,contw 
+0x6f9b 022586 lshift2 queue ,pdata 
+0x6f9c 022587 add pdata ,5 ,pdata 
+0x6f9d 022588 add pdata ,5 ,regc 
+0x6f9e 022589 byteswap pdata ,pdata 
+0x6f9f 022590 istore 2 ,contw 
+0x6fa0 022591 deposit queue 
+0x6fa1 022592 byteswap pdata ,pdata 
+0x6fa2 022593 istore 2 ,contw 
+0x6fa3 022594 istore 2 ,contw 
+0x6fa4 022595 arg mem_handle_list ,contr 
+0x6fa5 022596 copy queue ,loopcnt 
+0x6fa6 022597 branch servicesearch_req_blank ,zero 
+:      022598 servicesearch_req_loop:
+0x6fa7 022599 ifetch 4 ,contr 
+0x6fa8 022600 istore 4 ,contw 
+0x6fa9 022601 loop servicesearch_req_loop 
+:      022602 servicesearch_req_blank:
+0x6faa 022603 force 0 ,pdata 
+0x6fab 022604 istore 1 ,contw 
+0x6fac 022605 deposit regc 
+0x6fad 022606 store 1 ,mem_sdp_tx_pkt_length 
+0x6fae 022607 branch assert ,blank 
+0x6faf 022608 rtn 
+:      022619 serviceattribute_req:
+0x6fb0 022620 ifetch 4 ,contr 
+0x6fb1 022621 store 4 ,mem_sdp_record_handle 
+0x6fb2 022622 increase -4 ,timeup 
+0x6fb3 022623 iforce temp 
+0x6fb4 022624 ifetch 2 ,contr 
+0x6fb5 022625 byteswap pdata ,pdata 
+0x6fb6 022626 increase -18 ,pdata 
+0x6fb7 022627 store 2 ,mem_sdp_attribute_maxbyte 
+0x6fb8 022628 increase -2 ,timeup 
+0x6fb9 022629 call dataelementtype6 
+0x6fba 022630 branch sdp_invalid_reqest_syntax ,zero 
+0x6fbb 022631 compare 5 ,rega ,0xff 
+0x6fbc 022633 branch serviceattribute_judge_wholerangle ,true 
+:      022634 serviceattribute_isnot_wholerangle:
+0x6fbd 022635 arg mem_attrib_list ,contw 
+0x6fbe 022636 force 0 ,queue 
+0x6fbf 022637 branch serviceattribute_req_loop 
+:      022638 serviceattribute_judge_wholerangle:
+0x6fc0 022639 ifetch 1 ,contr 
+0x6fc1 022640 bne 0xa ,sdp_invalid_reqest_syntax 
+0x6fc2 022641 ifetch 2 ,contr 
+0x6fc3 022642 nbranch serviceattribute_judge_wholerangle_false1 ,blank 
+0x6fc4 022643 ifetch 1 ,contr 
+0x6fc5 022644 bne 0xff ,serviceattribute_judge_wholerangle_false2 
+0x6fc6 022645 ifetch 1 ,contr 
+0x6fc7 022646 bne 0xff ,serviceattribute_judge_wholerangle_false3 
+0x6fc8 022647 increase -5 ,contr 
+0x6fc9 022648 branch serviceattribute_req_all 
+:      022649 serviceattribute_judge_wholerangle_false3:
+0x6fca 022650 increase -5 ,contr 
+0x6fcb 022651 branch serviceattribute_isnot_wholerangle 
+:      022652 serviceattribute_judge_wholerangle_false2:
+0x6fcc 022653 increase -4 ,contr 
+0x6fcd 022654 branch serviceattribute_isnot_wholerangle 
+:      022655 serviceattribute_judge_wholerangle_false1:
+0x6fce 022656 increase -3 ,contr 
+0x6fcf 022657 branch serviceattribute_isnot_wholerangle 
+:      022658 serviceattribute_req_loop:
+0x6fd0 022659 ifetch 1 ,contr 
+0x6fd1 022660 beq 0x09 ,serviceattribute_req_one_id 
+0x6fd2 022661 beq 0x0a ,serviceattribute_req_range_id 
+:      022662 serviceattribute_req_range_id:
+0x6fd3 022663 ifetch 2 ,contr 
+0x6fd4 022664 istore 2 ,contw 
+0x6fd5 022665 increase 1 ,queue 
+0x6fd6 022666 byteswap pdata ,regb 
+0x6fd7 022667 ifetch 2 ,contr 
+0x6fd8 022668 byteswap pdata ,pdata 
+:      022669 serviceattribute_req_range_id_increase:
+0x6fd9 022670 increase 1 ,regb 
+0x6fda 022671 isub regb ,null 
+0x6fdb 022672 nbranch serviceattribute_req_range_id_finish ,positive 
+0x6fdc 022673 copy pdata ,regc 
+0x6fdd 022674 byteswap regb ,pdata 
+0x6fde 022675 istore 2 ,contw 
+0x6fdf 022676 increase 1 ,queue 
+0x6fe0 022677 copy regc ,pdata 
+0x6fe1 022678 branch serviceattribute_req_range_id_increase 
+:      022679 serviceattribute_req_range_id_finish:
+0x6fe2 022680 increase -5 ,timeup 
+0x6fe3 022681 increase -5 ,rega 
+0x6fe4 022682 branch serviceattribute_req_check_next_id 
+:      022683 serviceattribute_req_one_id:
+0x6fe5 022684 ifetch 2 ,contr 
+0x6fe6 022685 istore 2 ,contw 
+0x6fe7 022686 increase 1 ,queue 
+0x6fe8 022687 increase -3 ,timeup 
+0x6fe9 022688 increase -3 ,rega 
+:      022689 serviceattribute_req_check_next_id:
+0x6fea 022690 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6feb 022691 nbranch serviceattribute_req_loop ,zero 
+0x6fec 022692 increase -1 ,timeup 
+0x6fed 022693 nbranch sdp_invalid_reqest_syntax ,zero 
+0x6fee 022695 call l2cap_get_sdp_tx_payload 
+0x6fef 022696 increase 10 ,contw 
+0x6ff0 022697 arg mem_attrib_list ,rega 
+:      022698 answer_handle_attributelist_next:
+0x6ff1 022699 copy queue ,pdata 
+0x6ff2 022700 branch answer_handle_attributelist_end ,blank 
+0x6ff3 022701 ifetch 2 ,rega 
+0x6ff4 022702 branch answer_handle_attributelist_end ,blank 
+0x6ff5 022703 iforce regb 
+0x6ff6 022704 fetch 4 ,mem_sdp_record_handle 
+0x6ff7 022705 iforce temp 
+0x6ff8 022706 call search_handle_attrib 
+0x6ff9 022707 branch answer_handle_attributelist_notfound ,blank 
+0x6ffa 022708 increase -3 ,contr 
+0x6ffb 022709 ifetch 3 ,contr 
+0x6ffc 022710 istore 3 ,contw 
+0x6ffd 022711 call sdp_data_len_obs 
+0x6ffe 022712 branch answer_handle_attributelist_notfound ,blank 
+0x6fff 022713 iforce loopcnt 
+0x7000 022714 call memcpy 
+:      022715 answer_handle_attributelist_notfound:
+0x7001 022716 increase 2 ,rega 
+0x7002 022717 increase -1 ,queue 
+0x7003 022718 branch answer_handle_attributelist_next 
+:      022720 answer_handle_attributelist_end:
+0x7004 022721 force 0 ,pdata 
+0x7005 022722 istore 1 ,contw 
+0x7006 022723 increase -1 ,contw 
+0x7007 022724 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x7008 022725 add temp ,10 ,pdata 
+0x7009 022726 isub contw ,pdata 
+0x700a 022727 sub pdata ,0 ,rega 
+0x700b 022728 byteswap rega ,pdata 
+0x700c 022729 add temp ,8 ,regb 
+0x700d 022730 istore 2 ,regb 
+0x700e 022731 increase 3 ,rega 
+0x700f 022732 byteswap rega ,pdata 
+0x7010 022733 add temp ,5 ,regb 
+0x7011 022734 istore 2 ,regb 
+0x7012 022735 increase 3 ,rega 
+0x7013 022736 byteswap rega ,pdata 
+0x7014 022737 add temp ,3 ,regb 
+0x7015 022738 istore 2 ,regb 
+0x7016 022739 increase 5 ,rega 
+0x7017 022740 copy rega ,pdata 
+0x7018 022741 store 2 ,mem_sdp_tx_pkt_length 
+0x7019 022742 setarg 0x36 
+0x701a 022743 add temp ,7 ,regb 
+0x701b 022744 istore 1 ,regb 
+0x701c 022745 setarg 5 
+0x701d 022746 istore 1 ,temp 
+0x701e 022747 fetch 2 ,mem_sdp_transactionid 
+0x701f 022748 add temp ,1 ,regb 
+0x7020 022749 istore 2 ,regb 
+0x7021 022750 rtn 
+:      022751 serviceattribute_req_all:
+0x7022 022752 ifetch 1 ,contr 
+0x7023 022753 bne 0xa ,sdp_invalid_reqest_syntax 
+0x7024 022754 ifetch 2 ,contr 
+0x7025 022755 nbranch sdp_invalid_reqest_syntax ,blank 
+0x7026 022756 ifetch 1 ,contr 
+0x7027 022757 bne 0xff ,sdp_invalid_reqest_syntax 
+0x7028 022758 ifetch 1 ,contr 
+0x7029 022759 bne 0xff ,sdp_invalid_reqest_syntax 
+0x702a 022760 increase -5 ,timeup 
+0x702b 022761 ifetch 1 ,contr 
+0x702c 022762 beq 0 ,continue_zero 
+0x702d 022763 beq 1 ,continue_one_byte 
+0x702e 022764 beq 2 ,continue_two_byte 
+:      022765 continue_zero:
+0x702f 022766 store 2 ,mem_sdp_continue_byte 
+0x7030 022767 increase -1 ,timeup 
+0x7031 022768 branch continue_end 
+:      022769 continue_one_byte:
+0x7032 022770 ifetch 1 ,contr 
+0x7033 022771 store 2 ,mem_sdp_continue_byte 
+0x7034 022772 increase -2 ,timeup 
+0x7035 022773 branch continue_end 
+:      022774 continue_two_byte:
+0x7036 022775 ifetch 2 ,contr 
+0x7037 022776 byteswap pdata ,pdata 
+0x7038 022777 store 2 ,mem_sdp_continue_byte 
+0x7039 022778 increase -3 ,timeup 
+:      022779 continue_end:
+0x703a 022780 nbranch sdp_invalid_pdu_size ,zero 
+0x703b 022781 call search_handle 
+0x703c 022782 nbranch sdp_invalid_service_record_handle ,zero 
+0x703d 022783 copy contr ,rega 
+0x703e 022784 call l2cap_get_sdp_tx_payload 
+0x703f 022785 copy rega ,contr 
+0x7040 022786 increase 3 ,contw 
+0x7041 022787 copy contr ,timeup 
+0x7042 022788 call sdp_get_data 
+0x7043 022789 copy pdata ,rega 
+0x7044 022790 fetch 2 ,mem_sdp_continue_byte 
+0x7045 022791 copy pdata ,regb 
+0x7046 022792 copy rega ,pdata 
+0x7047 022793 isub regb ,regb 
+0x7048 022794 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x7049 022795 isub regb ,null 
+0x704a 022796 nbranch fragment_sdp ,positive 
+0x704b 022798 disable user 
+0x704c 022799 fetch 2 ,mem_sdp_continue_byte 
+0x704d 022800 branch fisrt_fragment ,blank 
+0x704e 022801 iadd timeup ,contr 
+0x704f 022802 increase 3 ,regb 
+0x7050 022803 copy regb ,loopcnt 
+0x7051 022804 copy loopcnt ,pdata 
+0x7052 022805 increase 3 ,pdata 
+0x7053 022806 byteswap pdata ,pdata 
+0x7054 022807 istore 2 ,contw 
+0x7055 022808 copy loopcnt ,pdata 
+0x7056 022809 byteswap pdata ,pdata 
+0x7057 022810 istore 2 ,contw 
+0x7058 022811 branch answer_attributelist_full_loop 
+:      022812 fisrt_fragment:
+0x7059 022813 add rega ,6 ,loopcnt 
+0x705a 022814 branch parlength_continue_byte ,user 
+0x705b 022815 byteswap loopcnt ,pdata 
+0x705c 022816 branch parlength_continue_byte_end 
+:      022817 parlength_continue_byte:
+0x705d 022818 copy loopcnt ,pdata 
+0x705e 022819 increase 2 ,pdata 
+0x705f 022820 byteswap pdata ,pdata 
+:      022821 parlength_continue_byte_end:
+0x7060 022822 istore 2 ,contw 
+0x7061 022823 increase -3 ,loopcnt 
+0x7062 022824 byteswap loopcnt ,pdata 
+0x7063 022825 istore 2 ,contw 
+0x7064 022826 copy timeup ,contr 
+0x7065 022827 branch answer_attributelist_full_loop 
+:      022828 fragment_sdp:
+0x7066 022829 enable user 
+0x7067 022830 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x7068 022831 copy pdata ,rega 
+0x7069 022832 copy pdata ,loopcnt 
+0x706a 022833 fetch 2 ,mem_sdp_continue_byte 
+0x706b 022834 branch fisrt_fragment ,blank 
+0x706c 022835 iadd timeup ,contr 
+0x706d 022836 copy rega ,pdata 
+0x706e 022837 increase 5 ,pdata 
+0x706f 022838 byteswap pdata ,pdata 
+0x7070 022839 istore 2 ,contw 
+0x7071 022840 copy rega ,pdata 
+0x7072 022841 byteswap pdata ,pdata 
+0x7073 022842 istore 2 ,contw 
+:      022843 answer_attributelist_full_loop:
+0x7074 022844 ifetch 1 ,contr 
+0x7075 022845 istore 1 ,contw 
+0x7076 022846 loop answer_attributelist_full_loop 
+0x7077 022847 nbranch last_frag_continue ,user 
+0x7078 022848 force 2 ,pdata 
+0x7079 022849 istore 1 ,contw 
+0x707a 022850 copy contr ,pdata 
+0x707b 022851 isub timeup ,pdata 
+0x707c 022852 byteswap pdata ,pdata 
+0x707d 022853 istore 2 ,contw 
+0x707e 022854 branch sdp_frag_end 
+:      022855 last_frag_continue:
+0x707f 022856 force 0 ,pdata 
+0x7080 022857 istore 1 ,contw 
+:      022858 sdp_frag_end:
+0x7081 022859 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x7082 022860 isub contw ,pdata 
+0x7083 022861 sub pdata ,0 ,pdata 
+0x7084 022862 store 2 ,mem_sdp_tx_pkt_length 
+0x7085 022863 call l2cap_get_sdp_tx_payload 
+0x7086 022864 setarg 5 
+0x7087 022865 istore 1 ,contw 
+0x7088 022866 fetch 2 ,mem_sdp_transactionid 
+0x7089 022867 istore 2 ,contw 
+0x708a 022868 rtn 
+:      022878 servicesearchattribute_req:
+0x708b 022881 call ask_serviceclassid 
+0x708c 022882 compare 0xff ,temp ,0xff 
+0x708d 022883 branch servicesearchattribute_req_all ,true 
+0x708e 022884 ifetch 2 ,contr 
+0x708f 022885 store 2 ,mem_sdp_attribute_maxbyte 
+0x7090 022886 increase -2 ,timeup 
+0x7091 022887 call dataelementtype6 
+0x7092 022888 arg mem_attrib_list ,contw 
+0x7093 022889 force 0 ,queue 
+:      022890 servicesearchattribute_req_loop:
+0x7094 022891 ifetch 3 ,contr 
+0x7095 022892 bne 0x09 ,servicesearchattribute_req_all 
+:      022893 servicesearchattribute_req_uuid:
+0x7096 022894 rshift8 pdata ,pdata 
+0x7097 022895 istore 2 ,contw 
+0x7098 022896 increase 1 ,queue 
+0x7099 022897 increase -3 ,timeup 
+0x709a 022898 increase -3 ,rega 
+0x709b 022899 nbranch sdp_invalid_reqest_syntax ,positive 
+0x709c 022900 nbranch servicesearchattribute_req_loop ,zero 
+0x709d 022901 increase -1 ,timeup 
+0x709e 022902 nbranch sdp_invalid_reqest_syntax ,zero 
+:      022903 servicesearchattribute_req_search:
+0x709f 022904 call l2cap_get_sdp_tx_payload 
+0x70a0 022905 increase 13 ,contw 
+0x70a1 022906 fetch 2 ,mem_uuid_search_pat 
+0x70a2 022907 iforce regc 
+0x70a3 022908 arg mem_attrib_list ,rega 
+:      022909 answer_attributelist_next:
+0x70a4 022910 ifetch 4 ,rega 
+0x70a5 022911 branch answer_attributelist_end ,blank 
+0x70a6 022912 ifetch 2 ,rega 
+0x70a7 022913 iforce regb 
+0x70a8 022914 call search_attrib 
+0x70a9 022915 branch answer_attributelist_notfound ,blank 
+0x70aa 022916 increase -3 ,contr 
+0x70ab 022917 ifetch 3 ,contr 
+0x70ac 022918 istore 3 ,contw 
+0x70ad 022919 call sdp_data_len_obs 
+0x70ae 022920 iforce loopcnt 
+:      022921 answer_attributelist_attrib_loop:
+0x70af 022922 ifetch 1 ,contr 
+0x70b0 022923 istore 1 ,contw 
+0x70b1 022924 loop answer_attributelist_attrib_loop 
+:      022925 answer_attributelist_notfound:
+0x70b2 022926 increase 2 ,rega 
+0x70b3 022927 branch answer_attributelist_next 
+:      022928 servicesearchattribute_req_all:
+0x70b4 022932 ifetch 1 ,contr 
+0x70b5 022934 ifetch 1 ,contr 
+0x70b6 022936 increase -5 ,timeup 
+0x70b7 022937 increase -5 ,rega 
+0x70b8 022938 nbranch sdp_invalid_reqest_syntax ,positive 
+0x70b9 022939 arg mem_uuid_search_pat ,timeup 
+0x70ba 022940 ifetch 2 ,timeup 
+0x70bb 022942 increase 2 ,timeup 
+0x70bc 022943 call search_uuid 
+0x70bd 022944 deposit queue 
+0x70be 022945 store 1 ,mem_handle_humber 
+0x70bf 022946 branch empty_ssa_rsp ,blank 
+0x70c0 022947 arg 0 ,queue 
+0x70c1 022948 call l2cap_get_sdp_tx_payload 
+0x70c2 022949 increase 10 ,contw 
+0x70c3 022950 branch servicesearchattribute_req_next_handle 
+:      022951 answer_attributelist_end:
+0x70c4 022952 force 0 ,pdata 
+0x70c5 022953 istore 1 ,contw 
+0x70c6 022954 increase -1 ,contw 
+0x70c7 022955 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x70c8 022956 add temp ,13 ,pdata 
+0x70c9 022957 isub contw ,pdata 
+0x70ca 022958 branch no_attribute_return ,zero 
+0x70cb 022959 sub pdata ,0 ,pdata 
+0x70cc 022960 add temp ,12 ,regb 
+0x70cd 022961 istore 1 ,regb 
+0x70ce 022962 increase 3 ,pdata 
+0x70cf 022963 add temp ,9 ,regb 
+0x70d0 022964 istore 1 ,regb 
+0x70d1 022965 increase 3 ,pdata 
+0x70d2 022966 byteswap pdata ,pdata 
+0x70d3 022967 add temp ,5 ,regb 
+0x70d4 022968 istore 2 ,regb 
+0x70d5 022969 rshift8 pdata ,pdata 
+0x70d6 022970 increase 3 ,pdata 
+0x70d7 022971 byteswap pdata ,pdata 
+0x70d8 022972 add temp ,3 ,regb 
+0x70d9 022973 istore 2 ,regb 
+0x70da 022974 rshift8 pdata ,pdata 
+0x70db 022975 increase 5 ,pdata 
+0x70dc 022976 store 1 ,mem_sdp_tx_pkt_length 
+0x70dd 022978 fetch 2 ,mem_sdp_transactionid 
+0x70de 022979 add temp ,1 ,regb 
+0x70df 022980 istore 2 ,regb 
+0x70e0 022981 setarg 7 
+0x70e1 022982 istore 1 ,temp 
+0x70e2 022987 setarg 0x0036 
+0x70e3 022988 add temp ,7 ,regb 
+0x70e4 022989 istore 2 ,regb 
+0x70e5 022990 add temp ,10 ,regb 
+0x70e6 022991 istore 2 ,regb 
+0x70e7 022992 rtn 
+:      022993 no_attribute_return:
+0x70e8 022994 jam 10 ,mem_sdp_tx_pkt_length 
+0x70e9 022995 call l2cap_get_sdp_tx_payload 
+0x70ea 022997 setarg 7 
+0x70eb 022998 istore 1 ,contw 
+0x70ec 022999 fetch 2 ,mem_sdp_transactionid 
+0x70ed 023000 istore 2 ,contw 
+0x70ee 023004 setarg 0x0500 
+0x70ef 023005 istore 2 ,contw 
+0x70f0 023008 setarg 0x0200 
+0x70f1 023009 istore 2 ,contw 
+0x70f2 023013 setarg 0x000035 
+0x70f3 023014 istore 3 ,contw 
+0x70f4 023015 rtn 
+:      023017 servicesearchattribute_req_attributelist_loop:
+0x70f5 023018 ifetch 1 ,contr 
+0x70f6 023019 istore 1 ,contw 
+0x70f7 023020 increase 1 ,regb 
+0x70f8 023021 increase -1 ,rega 
+0x70f9 023022 branch servicesearchattribute_req_check_next_ctn ,zero 
+0x70fa 023023 loop servicesearchattribute_req_attributelist_loop 
+:      023024 servicesearchattribute_req_check_next_ctn:
+0x70fb 023025 copy contw ,timeup 
+0x70fc 023026 copy regb ,pdata 
+0x70fd 023027 store 2 ,mem_sdp_continue_byte 
+0x70fe 023028 copy rega ,pdata 
+0x70ff 023029 store 2 ,mem_sdp_attribute_maxbyte 
+0x7100 023030 branch answer_attributelist_with_ctn_bytes ,blank 
+0x7101 023031 branch answer_attributelist_with_ctn_end ,user 
+0x7102 023032 copy timeup ,contw 
+:      023033 servicesearchattribute_req_check_handle:
+0x7103 023034 increase 1 ,queue 
+0x7104 023035 fetch 1 ,mem_handle_humber 
+0x7105 023036 isub queue ,null 
+0x7106 023037 nbranch servicesearchattribute_req_next_handle ,zero 
+0x7107 023038 branch answer_attributelist_end_long 
+:      023039 servicesearchattribute_req_next_handle:
+0x7108 023040 arg mem_handle_list ,contr 
+0x7109 023041 lshift2 queue ,pdata 
+0x710a 023042 iadd contr ,contr 
+0x710b 023043 ifetch 4 ,contr 
+0x710c 023044 iforce temp 
+0x710d 023045 call search_handle 
+0x710e 023046 copy contr ,timeup 
+0x710f 023047 call sdp_get_data 
+0x7110 023048 add pdata ,3 ,loopcnt 
+0x7111 023049 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x7112 023050 copy pdata ,rega 
+0x7113 023051 fetch 2 ,mem_sdp_continue_byte 
+0x7114 023052 copy pdata ,regb 
+0x7115 023053 copy timeup ,contr 
+0x7116 023054 branch servicesearchattribute_req_attributelist_loop 
+:      023055 answer_attributelist_with_ctn_bytes:
+0x7117 023056 arg 0 ,queue 
+0x7118 023057 arg 0 ,regb 
+:      023058 answer_attributelist_calc_attribute_length:
+0x7119 023059 arg mem_handle_list ,contr 
+0x711a 023060 lshift2 queue ,pdata 
+0x711b 023061 iadd contr ,contr 
+0x711c 023062 ifetch 4 ,contr 
+0x711d 023063 iforce temp 
+0x711e 023064 call search_handle 
+0x711f 023065 call sdp_get_data 
+0x7120 023066 add pdata ,3 ,pdata 
+0x7121 023067 iadd regb ,regb 
+0x7122 023068 increase 1 ,queue 
+0x7123 023069 fetch 1 ,mem_handle_humber 
+0x7124 023070 isub queue ,null 
+0x7125 023071 nbranch answer_attributelist_calc_attribute_length ,zero 
+0x7126 023073 copy timeup ,contw 
+0x7127 023074 force 2 ,pdata 
+0x7128 023075 istore 1 ,contw 
+0x7129 023076 fetch 2 ,mem_sdp_continue_byte 
+0x712a 023077 byteswap pdata ,pdata 
+0x712b 023078 istore 2 ,contw 
+0x712c 023079 increase -3 ,contw 
+0x712d 023080 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x712e 023081 add temp ,10 ,pdata 
+0x712f 023082 isub contw ,pdata 
+0x7130 023083 sub pdata ,0 ,pdata 
+0x7131 023084 iforce rega 
+0x7132 023086 deposit regb 
+0x7133 023087 add temp ,9 ,regb 
+0x7134 023088 istore 1 ,regb 
+0x7135 023089 rshift8 pdata ,pdata 
+0x7136 023090 add temp ,8 ,regb 
+0x7137 023091 istore 1 ,regb 
+0x7138 023092 increase 3 ,rega 
+0x7139 023093 deposit rega 
+0x713a 023094 add temp ,6 ,regb 
+0x713b 023095 istore 1 ,regb 
+0x713c 023096 rshift8 pdata ,pdata 
+0x713d 023097 add temp ,5 ,regb 
+0x713e 023098 istore 1 ,regb 
+0x713f 023099 increase 5 ,rega 
+0x7140 023100 deposit rega 
+0x7141 023101 add temp ,4 ,regb 
+0x7142 023102 istore 1 ,regb 
+0x7143 023103 rshift8 pdata ,pdata 
+0x7144 023104 add temp ,3 ,regb 
+0x7145 023105 istore 1 ,regb 
+0x7146 023106 increase 5 ,rega 
+0x7147 023107 deposit rega 
+0x7148 023108 store 2 ,mem_sdp_tx_pkt_length 
+0x7149 023109 setarg 7 
+0x714a 023110 istore 1 ,temp 
+0x714b 023111 setarg 0x36 
+0x714c 023112 add temp ,7 ,regb 
+0x714d 023113 istore 1 ,regb 
+0x714e 023114 add temp ,1 ,regb 
+0x714f 023115 fetch 2 ,mem_sdp_transactionid 
+0x7150 023116 istore 2 ,regb 
+0x7151 023117 rtn 
+:      023118 answer_attributelist_with_ctn_end:
+0x7152 023119 copy timeup ,contw 
+0x7153 023120 force 0 ,pdata 
+0x7154 023121 istore 1 ,contw 
+0x7155 023122 increase -1 ,contw 
+0x7156 023123 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x7157 023124 add temp ,7 ,pdata 
+0x7158 023125 isub contw ,pdata 
+0x7159 023126 sub pdata ,0 ,pdata 
+0x715a 023127 iforce rega 
+0x715b 023129 deposit rega 
+0x715c 023130 add temp ,6 ,regb 
+0x715d 023131 istore 1 ,regb 
+0x715e 023132 rshift8 pdata ,pdata 
+0x715f 023133 add temp ,5 ,regb 
+0x7160 023134 istore 1 ,regb 
+0x7161 023135 increase 3 ,rega 
+0x7162 023136 deposit rega 
+0x7163 023137 add temp ,4 ,regb 
+0x7164 023138 istore 1 ,regb 
+0x7165 023139 rshift8 pdata ,pdata 
+0x7166 023140 add temp ,3 ,regb 
+0x7167 023141 istore 1 ,regb 
+0x7168 023142 increase 5 ,rega 
+0x7169 023143 deposit rega 
+0x716a 023144 store 2 ,mem_sdp_tx_pkt_length 
+0x716b 023146 setarg 7 
+0x716c 023147 istore 1 ,temp 
+0x716d 023149 fetch 2 ,mem_sdp_transactionid 
+0x716e 023150 add temp ,1 ,regb 
+0x716f 023151 istore 2 ,regb 
+0x7170 023152 rtn 
+:      023154 answer_attributelist_end_long:
+0x7171 023155 force 0 ,pdata 
+0x7172 023156 istore 1 ,contw 
+0x7173 023157 increase -1 ,contw 
+0x7174 023158 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x7175 023159 add temp ,10 ,pdata 
+0x7176 023160 isub contw ,pdata 
+0x7177 023161 sub pdata ,0 ,pdata 
+0x7178 023162 iforce rega 
+0x7179 023164 deposit rega 
+0x717a 023165 add temp ,9 ,regb 
+0x717b 023166 istore 1 ,regb 
+0x717c 023167 rshift8 pdata ,pdata 
+0x717d 023168 add temp ,8 ,regb 
+0x717e 023169 istore 1 ,regb 
+0x717f 023171 increase 3 ,rega 
+0x7180 023172 deposit rega 
+0x7181 023173 add temp ,6 ,regb 
+0x7182 023174 istore 1 ,regb 
+0x7183 023175 rshift8 pdata ,pdata 
+0x7184 023176 add temp ,5 ,regb 
+0x7185 023177 istore 1 ,regb 
+0x7186 023178 increase 3 ,rega 
+0x7187 023179 deposit rega 
+0x7188 023180 add temp ,4 ,regb 
+0x7189 023181 istore 1 ,regb 
+0x718a 023182 rshift8 pdata ,pdata 
+0x718b 023183 add temp ,3 ,regb 
+0x718c 023184 istore 1 ,regb 
+0x718d 023185 increase 5 ,rega 
+0x718e 023186 deposit rega 
+0x718f 023187 store 2 ,mem_sdp_tx_pkt_length 
+0x7190 023188 setarg 0x36 
+0x7191 023189 add temp ,7 ,regb 
+0x7192 023190 istore 1 ,regb 
+0x7193 023191 setarg 7 
+0x7194 023192 istore 1 ,temp 
+0x7195 023193 fetch 2 ,mem_sdp_transactionid 
+0x7196 023194 add temp ,1 ,regb 
+0x7197 023195 istore 2 ,regb 
+0x7198 023196 rtn 
+:      023197 sdp_data_len_obs:
+0x7199 023198 copy contr ,timeup 
+0x719a 023199 ifetch 1 ,contr 
+0x719b 023200 and pdata ,0x07 ,loopcnt 
+0x719c 023201 rshift3 pdata ,pdata 
+0x719d 023202 beq 6 ,sdp_data_len_6_obs 
+0x719e 023203 beq 1 ,sdp_data_len_1 
+0x719f 023204 beq 4 ,sdp_data_len_6 
+0x71a0 023205 beq 5 ,sdp_data_len_5 
+0x71a1 023206 branch sdp_data_len_rtn 
+:      023207 sdp_data_len_6_obs:
+0x71a2 023208 call sdp_get_data_6_obs 
+0x71a3 023209 branch sdp_data_len_rtn 
+:      023210 sdp_get_data_6_obs:
+0x71a4 023211 deposit loopcnt 
+0x71a5 023212 beq 5 ,sdp_get_data_6_8bit_obs 
+0x71a6 023213 beq 6 ,sdp_get_data_6_16bit_obs 
+0x71a7 023214 force 3 ,loopcnt 
+0x71a8 023215 branch sdp_get_data_1 
+:      023216 sdp_get_data_6_8bit_obs:
+0x71a9 023217 ifetch 1 ,contr 
+0x71aa 023218 increase 2 ,pdata 
+0x71ab 023219 rtn 
+:      023220 sdp_get_data_6_16bit_obs:
+0x71ac 023221 ifetch 2 ,contr 
+0x71ad 023222 byteswap pdata ,pdata 
+0x71ae 023223 increase 3 ,pdata 
+0x71af 023224 rtn 
+:      023226 sdp_send_spp_request:
+0x71b0 023227 call l2cap_get_sdp_tx_payload 
+0x71b1 023228 copy pdata ,contw 
+0x71b2 023229 setarg 6 
+0x71b3 023230 istore 1 ,contw 
+0x71b4 023231 setarg sdp_tid_spp 
+0x71b5 023232 istore 2 ,contw 
+0x71b6 023233 setarg 0x0f00 
+0x71b7 023234 istore 2 ,contw 
+0x71b8 023235 setarg 0x1a0535 
+0x71b9 023236 istore 3 ,contw 
+0x71ba 023237 setarg 0x0111 
+0x71bb 023238 lshift16 pdata ,pdata 
+0x71bc 023239 istore 4 ,contw 
+0x71bd 023240 setarg 0x2600 
+0x71be 023241 istore 2 ,contw 
+0x71bf 023242 setarg 0x0335 
+0x71c0 023243 istore 2 ,contw 
+0x71c1 023244 setarg 0x0009 
+0x71c2 023245 istore 2 ,contw 
+0x71c3 023246 setarg 0x0004 
+0x71c4 023247 istore 2 ,contw 
+0x71c5 023248 jam 0x14 ,mem_sdp_tx_pkt_length 
+0x71c6 023249 rtn 
+:      023259 servicesearchattribute_res:
+0x71c7 023260 copy contr ,temp 
+0x71c8 023261 fetch 2 ,mem_sdp_transactionid 
+0x71c9 023262 beq sdp_tid_spp ,servicesearchattribute_res_spp 
+0x71ca 023265 branch srchfail 
+:      023267 servicesearchattribute_res_spp:
+0x71cb 023268 copy temp ,contr 
+0x71cc 023269 increase -3 ,timeup 
+0x71cd 023270 copy timeup ,pdata 
+0x71ce 023271 beq 2 ,srchfail 
+0x71cf 023272 call find_rfcomm_channel_number 
+0x71d0 023273 rtn user 
+0x71d1 023274 store 1 ,mem_remote_spp_channel 
+0x71d2 023275 jam recieve_ss_reasult_hf ,mem_message_to_uppersm 
+0x71d3 023276 rtn 
+:      023278 srchfail:
+0x71d4 023279 rtn 
+:      023285 find_rfcomm_channel_number:
+0x71d5 023286 enable user 
+0x71d6 023287 copy pdata ,loopcnt 
+0x71d7 023288 arg 0x0400 ,temp 
+:      023289 find_rfcomm_channel_number_loop:
+0x71d8 023290 ifetch 2 ,contr 
+0x71d9 023291 isub temp ,null 
+0x71da 023292 branch find_rfcomm_channel_number_find_adl ,zero 
+0x71db 023293 increase -1 ,contr 
+0x71dc 023294 loop find_rfcomm_channel_number_loop 
+0x71dd 023295 rtn 
+:      023296 find_rfcomm_channel_number_find_adl:
+0x71de 023297 arg 0x0300 ,temp 
+:      023298 find_rfcomm_channel_number_loop2:
+0x71df 023299 ifetch 2 ,contr 
+0x71e0 023300 isub temp ,null 
+0x71e1 023301 branch find_rfcomm_channel_number_find_rfcomm ,zero 
+0x71e2 023302 increase -1 ,contr 
+0x71e3 023303 loop find_rfcomm_channel_number_loop2 
+0x71e4 023304 rtn 
+:      023305 find_rfcomm_channel_number_find_rfcomm:
+0x71e5 023306 ifetch 1 ,contr 
+0x71e6 023307 ifetch 1 ,contr 
+0x71e7 023308 disable user 
+0x71e8 023309 rtn 
+:      023320 attribute_reading:
+0x71e9 023321 call dataelementtype6 
+0x71ea 023322 branch rdnortn ,zero 
+0x71eb 023323 force 0 ,regb 
+0x71ec 023324 ifetch 1 ,contr 
+0x71ed 023325 increase -1 ,rega 
+0x71ee 023326 increase -1 ,timeup 
+0x71ef 023327 compare 0x18 ,pdata ,0xf8 
+0x71f0 023328 nbranch rduuid3 ,true 
+0x71f1 023329 compare 0x04 ,pdata ,0x07 
+0x71f2 023330 nbranch is032 ,true 
+0x71f3 023331 force 1 ,regb 
+:      023332 skp2bytes:
+0x71f4 023333 increase 2 ,contr 
+0x71f5 023334 increase -2 ,rega 
+0x71f6 023335 increase -2 ,timeup 
+0x71f7 023336 branch rduuid1 
+:      023337 is032:
+0x71f8 023338 compare 0x02 ,pdata ,0x07 
+0x71f9 023339 nbranch is016 ,true 
+0x71fa 023340 branch skp2bytes 
+:      023341 is016:
+0x71fb 023342 compare 0x01 ,pdata ,0x07 
+0x71fc 023343 nbranch rduuid3 ,true 
+:      023344 rduuid1:
+0x71fd 023345 ifetch 1 ,contr 
+0x71fe 023346 increase -1 ,rega 
+0x71ff 023347 increase -1 ,timeup 
+0x7200 023348 bne 0x01 ,rduuid2 
+0x7201 023349 ifetch 1 ,contr 
+0x7202 023350 increase -1 ,rega 
+0x7203 023351 increase -1 ,timeup 
+0x7204 023352 bne 0x00 ,rduuid3 
+0x7205 023353 jam 0xff ,mem_sdp_lacap_found 
+0x7206 023354 branch rduuid3 
+:      023355 rduuid2:
+0x7207 023356 bne 0x00 ,rduuid3 
+0x7208 023357 ifetch 1 ,contr 
+0x7209 023358 increase -1 ,rega 
+0x720a 023359 increase -1 ,timeup 
+0x720b 023360 bne 0x03 ,rduuid3 
+0x720c 023361 copy regb ,null 
+0x720d 023362 branch not16by ,zero 
+0x720e 023363 increase -12 ,contr 
+0x720f 023364 increase -12 ,timeup 
+:      023365 not16by:
+0x7210 023366 force 0xff ,pdata 
+0x7211 023367 store 1 ,mem_sdp_rfcomm_found 
+0x7212 023368 ifetch 1 ,contr 
+0x7213 023369 increase -1 ,rega 
+0x7214 023370 increase -1 ,timeup 
+0x7215 023371 compare 0x08 ,pdata ,0xf8 
+0x7216 023372 nbranch rduuid3 ,true 
+0x7217 023373 compare 0x00 ,pdata ,0x07 
+0x7218 023374 branch unsign1 ,true 
+0x7219 023375 compare 0x01 ,pdata ,0x07 
+0x721a 023376 branch unsign2 ,true 
+0x721b 023377 compare 0x02 ,pdata ,0x07 
+0x721c 023378 branch unsign4 ,true 
+0x721d 023379 compare 0x03 ,pdata ,0x07 
+0x721e 023380 branch unsign8 ,true 
+0x721f 023381 compare 0x04 ,pdata ,0x07 
+0x7220 023382 nbranch rduuid3 ,true 
+0x7221 023383 increase 8 ,contr 
+0x7222 023384 increase -8 ,rega 
+0x7223 023385 increase -8 ,timeup 
+:      023386 unsign8:
+0x7224 023387 increase 4 ,contr 
+0x7225 023388 increase -4 ,rega 
+0x7226 023389 increase -4 ,timeup 
+:      023390 unsign4:
+0x7227 023391 increase 2 ,contr 
+0x7228 023392 increase -2 ,rega 
+0x7229 023393 increase -2 ,timeup 
+:      023394 unsign2:
+0x722a 023395 increase 1 ,contr 
+0x722b 023396 increase -1 ,rega 
+0x722c 023397 increase -1 ,timeup 
+:      023398 unsign1:
+0x722d 023399 ifetch 1 ,contr 
+0x722e 023400 increase -1 ,rega 
+0x722f 023401 increase -1 ,timeup 
+:      023402 rduuid3:
+0x7230 023403 increase -1 ,timeup 
+0x7231 023404 increase -1 ,rega 
+0x7232 023405 branch rduuid3 ,positive 
+0x7233 023406 increase 1 ,timeup 
+0x7234 023407 force 0x01 ,pdata 
+0x7235 023408 rtn ,
+:      023409 rdnortn:
+0x7236 023410 force 0x00 ,pdata 
+0x7237 023411 rtn ,
+:      023413 sdp_invalid_service_record_handle:
+0x7238 023414 setarg 0x0200 
+0x7239 023415 store 2 ,mem_sdp_error_code 
+0x723a 023416 branch sdp_error_rsp 
+:      023417 sdp_invalid_pdu_size:
+0x723b 023418 setarg 0x0400 
+0x723c 023419 store 2 ,mem_sdp_error_code 
+0x723d 023420 branch sdp_error_rsp 
+:      023421 sdp_insufficient_resource:
+0x723e 023422 setarg 0x0600 
+0x723f 023423 store 2 ,mem_sdp_error_code 
+0x7240 023424 branch sdp_error_rsp 
+:      023425 sdp_invalid_reqest_syntax:
+0x7241 023426 setarg 0x0300 
+0x7242 023427 store 2 ,mem_sdp_error_code 
+:      023428 sdp_error_rsp:
+0x7243 023429 call l2cap_get_sdp_tx_payload 
+0x7244 023430 istore 1 ,contw 
+0x7245 023431 fetch 2 ,mem_sdp_transactionid 
+0x7246 023432 istore 2 ,contw 
+0x7247 023433 setarg 0x0200 
+0x7248 023434 istore 2 ,contw 
+0x7249 023435 fetch 2 ,mem_sdp_error_code 
+0x724a 023436 istore 2 ,contw 
+0x724b 023437 jam 7 ,mem_sdp_tx_pkt_length 
+0x724c 023438 rtn 
+:      023440 ask_serviceclassid:
+0x724d 023441 force 0 ,temp 
+0x724e 023442 arg mem_uuid_search_pat ,contw 
+0x724f 023443 call dataelementtype6 
+0x7250 023444 branch asksrv_error ,zero 
+:      023445 classidloop:
+0x7251 023446 ifetch 1 ,contr 
+0x7252 023447 increase -1 ,rega 
+0x7253 023448 increase -1 ,timeup 
+0x7254 023449 compare 0x18 ,pdata ,0xf8 
+0x7255 023450 nbranch asksrv_error ,true 
+0x7256 023451 compare 0x04 ,pdata ,0x07 
+0x7257 023452 nbranch cmp032 ,true 
+0x7258 023453 force 1 ,temp 
+:      023454 skip2bytes:
+0x7259 023455 ifetch 1 ,contr 
+0x725a 023456 increase -1 ,rega 
+0x725b 023457 increase -1 ,timeup 
+0x725c 023458 bne 0x00 ,frstbwrong 
+0x725d 023459 ifetch 1 ,contr 
+0x725e 023460 increase -1 ,rega 
+0x725f 023461 increase -1 ,timeup 
+0x7260 023462 beq 0x00 ,cmpuuid 
+0x7261 023463 branch scndbwrong 
+:      023464 frstbwrong:
+0x7262 023465 increase 1 ,contr 
+0x7263 023466 increase -1 ,rega 
+0x7264 023467 increase -1 ,timeup 
+:      023468 scndbwrong:
+0x7265 023469 increase 2 ,contr 
+0x7266 023470 increase -2 ,rega 
+0x7267 023471 increase -2 ,timeup 
+0x7268 023472 compare 0x00 ,temp ,0xff 
+0x7269 023473 branch loopornot ,true 
+0x726a 023474 increase 12 ,contr 
+0x726b 023475 increase -12 ,rega 
+0x726c 023476 increase -12 ,timeup 
+0x726d 023477 branch loopornot 
+:      023478 cmp032:
+0x726e 023479 compare 0x02 ,pdata ,0x07 
+0x726f 023480 nbranch cmp016 ,true 
+0x7270 023481 branch skip2bytes 
+:      023482 cmp016:
+0x7271 023483 compare 0x01 ,pdata ,0x07 
+0x7272 023484 nbranch asksrv_error ,true 
+:      023485 cmpuuid:
+0x7273 023486 ifetch 2 ,contr 
+0x7274 023487 increase -2 ,rega 
+0x7275 023488 increase -2 ,timeup 
+0x7276 023489 istore 2 ,contw 
+:      023490 uuidsize:
+0x7277 023491 compare 0x00 ,temp ,0xff 
+0x7278 023492 branch loopornot ,true 
+0x7279 023493 copy contr ,temp 
+0x727a 023494 ifetch 1 ,contr 
+0x727b 023495 bne 0x00 ,wrong12b 
+0x727c 023496 ifetch 1 ,contr 
+0x727d 023497 bne 0x00 ,wrong12b 
+0x727e 023498 ifetch 1 ,contr 
+0x727f 023499 bne 0x10 ,wrong12b 
+0x7280 023500 ifetch 1 ,contr 
+0x7281 023501 bne 0x00 ,wrong12b 
+0x7282 023502 ifetch 1 ,contr 
+0x7283 023503 bne 0x80 ,wrong12b 
+0x7284 023504 ifetch 1 ,contr 
+0x7285 023505 bne 0x00 ,wrong12b 
+0x7286 023506 ifetch 1 ,contr 
+0x7287 023507 bne 0x00 ,wrong12b 
+0x7288 023508 ifetch 1 ,contr 
+0x7289 023509 bne 0x80 ,wrong12b 
+0x728a 023510 ifetch 1 ,contr 
+0x728b 023511 bne 0x5f ,wrong12b 
+0x728c 023512 ifetch 1 ,contr 
+0x728d 023513 bne 0x9b ,wrong12b 
+0x728e 023514 ifetch 1 ,contr 
+0x728f 023515 bne 0x34 ,wrong12b 
+0x7290 023516 ifetch 1 ,contr 
+0x7291 023517 beq 0xfb ,chck12dn 
+:      023518 wrong12b:
+0x7292 023519 copy temp ,contr 
+:      023520 wrong12b1:
+0x7293 023521 increase 12 ,contr 
+0x7294 023522 force 0x00 ,queue 
+0x7295 023523 force 0x00 ,temp 
+0x7296 023524 branch chck12dn 
+:      023525 noclass:
+0x7297 023526 ifetch 1 ,contr 
+0x7298 023527 increase -1 ,rega 
+0x7299 023528 increase -1 ,timeup 
+0x729a 023529 branch uuidsize 
+:      023530 chck12dn:
+0x729b 023531 increase -12 ,timeup 
+0x729c 023532 increase -12 ,rega 
+:      023533 loopornot:
+0x729d 023534 compare 0x00 ,rega ,0xff 
+0x729e 023535 nbranch classidloop ,true 
+0x729f 023536 force 0 ,pdata 
+0x72a0 023537 istore 2 ,contw 
+0x72a1 023538 rtn ,
+:      023539 asksrv_error:
+0x72a2 023540 arg 0xff ,temp 
+0x72a3 023541 rtn 
+:      023551 dataelementtype6:
+0x72a4 023552 ifetch 1 ,contr 
+0x72a5 023553 increase -1 ,timeup 
+0x72a6 023554 compare 0x30 ,pdata ,0xf8 
+0x72a7 023555 nbranch dsize_error ,true 
+0x72a8 023556 compare 0x07 ,pdata ,0x07 
+0x72a9 023557 branch dsize32 ,true 
+0x72aa 023558 compare 0x06 ,pdata ,0x07 
+0x72ab 023559 branch dsize16 ,true 
+0x72ac 023560 compare 0x05 ,pdata ,0x07 
+0x72ad 023561 nbranch dsize_error ,true 
+0x72ae 023562 ifetch 1 ,contr 
+0x72af 023563 copy pdata ,rega 
+0x72b0 023564 increase -1 ,timeup 
+0x72b1 023565 branch dsize 
+:      023566 dsize32:
+0x72b2 023567 increase 2 ,contr 
+0x72b3 023568 increase -2 ,timeup 
+:      023569 dsize16:
+0x72b4 023570 ifetch 2 ,contr 
+0x72b5 023571 byteswap pdata ,rega 
+0x72b6 023572 increase -2 ,timeup 
+:      023573 set_nblank:
+:      023574 dsize:
+0x72b7 023575 force 0x01 ,pdata 
+0x72b8 023576 rtn 
+:      023577 set_blank:
+:      023578 dsize_error:
+0x72b9 023579 force 0x00 ,pdata 
+0x72ba 023580 rtn 
+:      023590 empth_sa_rsp:
+0x72bb 023591 setarg 0x03 
+0x72bc 023592 store 1 ,mem_sdp_pduid 
+0x72bd 023593 branch empty_response 
+:      023594 empty_ssa_rsp:
+0x72be 023595 setarg 0x07 
+0x72bf 023596 store 1 ,mem_sdp_pduid 
+:      023597 empty_response:
+0x72c0 023598 call l2cap_get_sdp_tx_payload 
+0x72c1 023599 fetch 1 ,mem_sdp_pduid 
+0x72c2 023600 istore 1 ,contw 
+0x72c3 023601 copy pdata ,regb 
+0x72c4 023602 fetch 2 ,mem_sdp_transactionid 
+0x72c5 023603 istore 2 ,contw 
+0x72c6 023605 setarg 0x0500 
+0x72c7 023606 istore 2 ,contw 
+0x72c8 023607 compare 0x05 ,regb ,0xff 
+0x72c9 023608 branch fullsearch ,true 
+0x72ca 023609 compare 0x07 ,regb ,0xff 
+0x72cb 023610 branch fullsearch ,true 
+0x72cc 023611 setarg 0x000000 
+0x72cd 023612 istore 3 ,contw 
+0x72ce 023613 istore 2 ,contw 
+0x72cf 023614 branch outempty 
+:      023616 fullsearch:
+0x72d0 023623 setarg 0x350200 
+0x72d1 023624 istore 3 ,contw 
+0x72d2 023629 setarg 0 
+0x72d3 023630 istore 2 ,contw 
+:      023631 outempty:
+0x72d4 023632 jam 10 ,mem_sdp_tx_pkt_length 
+0x72d5 023633 rtn 
+:      023635 sdp_data_len:
+0x72d6 023636 copy contr ,timeup 
+0x72d7 023637 ifetch 1 ,contr 
+0x72d8 023638 and pdata ,0x7 ,loopcnt 
+0x72d9 023639 rshift3 pdata ,pdata 
+0x72da 023640 beq 6 ,sdp_data_len_6 
+0x72db 023641 beq 1 ,sdp_data_len_1 
+0x72dc 023642 beq 4 ,sdp_data_len_6 
+0x72dd 023643 beq 5 ,sdp_data_len_5 
+:      023644 sdp_data_len_rtn:
+0x72de 023645 copy timeup ,contr 
+0x72df 023646 rtn 
+:      023647 sdp_data_len_1:
+0x72e0 023648 call sdp_data_size 
+0x72e1 023649 increase 1 ,pdata 
+0x72e2 023650 branch sdp_data_len_rtn 
+:      023651 sdp_data_len_5:
+0x72e3 023652 force 2 ,pdata 
+0x72e4 023653 branch sdp_data_len_rtn 
+:      023654 sdp_data_len_6:
+0x72e5 023655 call sdp_get_data_6 
+0x72e6 023656 increase 2 ,pdata 
+0x72e7 023657 branch sdp_data_len_rtn 
+:      023659 sdp_get_data:
+0x72e8 023660 ifetch 1 ,contr 
+0x72e9 023661 and pdata ,0x7 ,loopcnt 
+0x72ea 023662 rshift3 pdata ,pdata 
+0x72eb 023663 beq 6 ,sdp_get_data_6 
+0x72ec 023664 beq 1 ,sdp_get_data_1 
+0x72ed 023665 beq 5 ,sdp_get_data_6_8bit 
+0x72ee 023666 rtn 
+:      023667 sdp_get_data_1:
+0x72ef 023668 call sdp_data_size 
+0x72f0 023669 iforce loopcnt 
+0x72f1 023670 force 0 ,temp 
+:      023671 sdp_get_data_1_loop:
+0x72f2 023672 lshift8 temp ,temp 
+0x72f3 023673 ifetch 1 ,contr 
+0x72f4 023674 ior temp ,temp 
+0x72f5 023675 loop sdp_get_data_1_loop 
+0x72f6 023676 rtn 
+:      023677 sdp_get_data_6:
+0x72f7 023678 deposit loopcnt 
+0x72f8 023679 beq 5 ,sdp_get_data_6_8bit 
+0x72f9 023680 beq 6 ,sdp_get_data_6_16bit 
+0x72fa 023681 force 3 ,loopcnt 
+0x72fb 023682 branch sdp_get_data_1 
+:      023683 sdp_get_data_6_8bit:
+0x72fc 023684 ifetch 1 ,contr 
+0x72fd 023685 rtn 
+:      023686 sdp_get_data_6_16bit:
+0x72fe 023687 ifetch 2 ,contr 
+0x72ff 023688 byteswap pdata ,pdata 
+0x7300 023689 rtn 
+:      023692 sdp_data_size:
+0x7301 023693 force 1 ,pdata 
+0x7302 023694 copy loopcnt ,null 
+0x7303 023695 rtn zero 
+:      023696 sdp_data_size_loop:
+0x7304 023697 lshift pdata ,pdata 
+0x7305 023698 loop sdp_data_size_loop 
+0x7306 023699 rtn 
+:      023704 search_uuid:
+0x7307 023705 iforce regc 
+0x7308 023706 set1 mark_ext_patch ,mark 
+0x7309 023707 bpatch patch3d_1 ,mem_patch3d 
+0x730a 023708 force 0 ,queue 
+0x730b 023709 fetch 2 ,memui_uuid_table 
+0x730c 023710 iforce contr 
+0x730d 023711 arg mem_handle_list ,contw 
+:      023712 search_uuid_next:
+0x730e 023713 disable user 
+0x730f 023714 ifetch 1 ,contr 
+0x7310 023715 rtn blank 
+0x7311 023716 iforce loopcnt 
+:      023717 search_uuid_loop:
+0x7312 023718 ifetch 2 ,contr 
+0x7313 023719 isub regc ,null 
+0x7314 023720 nbranch search_uuid_not_found ,zero 
+0x7315 023721 enable user 
+:      023722 search_uuid_not_found:
+0x7316 023723 loop search_uuid_loop 
+0x7317 023724 ifetch 4 ,contr 
+0x7318 023725 nbranch search_uuid_nomatch ,user 
+0x7319 023726 istore 4 ,contw 
+0x731a 023727 increase 1 ,queue 
+:      023728 search_uuid_nomatch:
+0x731b 023729 call sdp_get_data 
+0x731c 023730 iadd contr ,contr 
+0x731d 023731 branch search_uuid_next 
+:      023734 search_handle:
+0x731e 023735 fetch 2 ,memui_uuid_table 
+0x731f 023736 iforce contr 
+:      023737 search_handle_loop:
+0x7320 023738 ifetch 1 ,contr 
+0x7321 023739 rtn blank 
+0x7322 023740 lshift pdata ,pdata 
+0x7323 023741 iadd contr ,contr 
+0x7324 023742 ifetch 4 ,contr 
+0x7325 023743 isub temp ,null 
+0x7326 023744 rtn zero 
+0x7327 023745 call sdp_get_data 
+0x7328 023746 iadd contr ,contr 
+0x7329 023747 branch search_handle_loop 
+:      023754 search_attrib:
+0x732a 023755 set1 mark_ext_patch ,mark 
+0x732b 023756 bpatch patch3d_2 ,mem_patch3d 
+0x732c 023757 fetch 2 ,memui_uuid_table 
+0x732d 023758 iforce contr 
+:      023759 search_attrib_next:
+0x732e 023760 ifetch 1 ,contr 
+0x732f 023761 branch search_attrib_end ,blank 
+0x7330 023762 iforce loopcnt 
+:      023763 search_attrib_loop:
+0x7331 023764 ifetch 2 ,contr 
+0x7332 023765 isub regc ,null 
+0x7333 023766 branch search_attrib_found_uuid ,zero 
+0x7334 023767 loop search_attrib_loop 
+0x7335 023768 increase 4 ,contr 
+0x7336 023769 call sdp_get_data 
+0x7337 023770 iadd contr ,contr 
+0x7338 023771 branch search_attrib_next 
+:      023772 search_attrib_found_uuid:
+0x7339 023773 increase -1 ,loopcnt 
+0x733a 023774 lshift loopcnt ,pdata 
+0x733b 023775 iadd contr ,contr 
+0x733c 023776 increase 4 ,contr 
+0x733d 023777 call sdp_get_data 
+0x733e 023778 iadd contr ,temp 
+:      023779 search_attrib_loop_attribs:
+0x733f 023780 increase 1 ,contr 
+0x7340 023781 ifetch 2 ,contr 
+0x7341 023782 isub regb ,timeup 
+0x7342 023784 setflag zero ,0 ,pdata 
+0x7343 023785 copy timeup ,timeup 
+0x7344 023786 rtn zero 
+0x7345 023787 call sdp_data_len 
+0x7346 023788 iadd contr ,contr 
+0x7347 023789 deposit temp 
+0x7348 023790 isub contr ,null 
+0x7349 023791 branch search_attrib_end ,zero 
+0x734a 023792 branch search_attrib_loop_attribs 
+:      023793 search_attrib_end:
+0x734b 023794 force 0 ,contr 
+0x734c 023795 force 0 ,pdata 
+0x734d 023796 rtn 
+:      023802 search_handle_attrib:
+0x734e 023803 set1 mark_ext_patch ,mark 
+0x734f 023804 bpatch patch3d_3 ,mem_patch3d 
+0x7350 023805 fetch 2 ,memui_uuid_table 
+0x7351 023806 iforce contr 
+:      023807 search_handle_attrib_next:
+0x7352 023808 ifetch 1 ,contr 
+0x7353 023809 branch search_handle_attrib_end ,blank 
+0x7354 023810 lshift pdata ,pdata 
+0x7355 023811 iadd contr ,contr 
+0x7356 023812 ifetch 4 ,contr 
+0x7357 023813 isub temp ,null 
+0x7358 023814 branch search_handl_attrib_found_handle ,zero 
+0x7359 023815 call sdp_get_data 
+0x735a 023816 iadd contr ,contr 
+0x735b 023817 branch search_handle_attrib_next 
+:      023818 search_handl_attrib_found_handle:
+0x735c 023819 call sdp_get_data 
+0x735d 023820 iadd contr ,temp 
+:      023821 search_handle_attrib_loop_attribs:
+0x735e 023822 increase 1 ,contr 
+0x735f 023823 ifetch 2 ,contr 
+0x7360 023824 isub regb ,null 
+0x7361 023825 rtn zero 
+0x7362 023826 call sdp_data_len 
+0x7363 023827 iadd contr ,contr 
+0x7364 023828 deposit temp 
+0x7365 023829 isub contr ,null 
+0x7366 023830 branch search_handle_attrib_end ,zero 
+0x7367 023831 branch search_handle_attrib_loop_attribs 
+:      023832 search_handle_attrib_end:
+0x7368 023833 force 0 ,contr 
+0x7369 023834 rtn 
+:      023837 generate_kinit:
+0x736a 023838 call function_e22 
+0x736b 023839 arg mem_input_store ,contr 
+0x736c 023840 arg mem_kinit ,contw 
+0x736d 023841 branch memcpy16 
+:      023844 function_e21:
+0x736e 023845 disable user 
+0x736f 023846 call function_expand 
+0x7370 023847 arg mem_random_number ,contr 
+0x7371 023848 arg mem_x ,contw 
+0x7372 023849 force 15 ,loopcnt 
+0x7373 023850 call memcpy 
+0x7374 023851 ifetch 1 ,contr 
+0x7375 023852 xor_into 6 ,pdata 
+0x7376 023853 istore 1 ,contw 
+0x7377 023854 setarg mem_y 
+0x7378 023855 store 2 ,memp_ar_input 
+0x7379 023856 setarg mem_x 
+0x737a 023857 store 2 ,memp_ar_key 
+0x737b 023858 set1 mark_ar2 ,mark 
+0x737c 023859 branch function_ar 
+:      023863 function_e22:
+0x737d 023864 fetcht 1 ,mem_pin_length 
+0x737e 023865 force 16 ,regb 
+0x737f 023866 add temp ,6 ,regc 
+0x7380 023867 sub regc ,16 ,null 
+0x7381 023868 branch function_e22_pin_init ,positive 
+0x7382 023869 force 16 ,regc 
+:      023870 function_e22_pin_init:
+0x7383 023871 arg mem_x ,contw 
+:      023872 function_e22_genx_pin:
+0x7384 023873 arg mem_pin ,contr 
+0x7385 023874 copy temp ,loopcnt 
+0x7386 023875 disable user 
+:      023876 function_e22_genx_loop:
+0x7387 023877 ifetch 1 ,contr 
+0x7388 023878 istore 1 ,contw 
+0x7389 023879 increase -1 ,regb 
+0x738a 023880 branch function_e22_genx_end ,zero 
+0x738b 023881 loop function_e22_genx_loop 
+0x738c 023882 branch function_e22_genx_pin ,user 
+0x738d 023883 enable user 
+0x738e 023884 force 6 ,loopcnt 
+0x738f 023885 copy rega ,contr 
+0x7390 023886 branch function_e22_genx_loop 
+:      023887 function_e22_genx_end:
+0x7391 023888 arg mem_random_number ,contr 
+0x7392 023889 arg mem_y ,contw 
+0x7393 023890 call memcpy16 
+0x7394 023891 fetch 1 ,mem_y15 
+0x7395 023892 ixor regc ,pdata 
+0x7396 023893 store 1 ,mem_y15 
+0x7397 023894 setarg mem_y 
+0x7398 023895 store 2 ,memp_ar_input 
+0x7399 023896 setarg mem_x 
+0x739a 023897 store 2 ,memp_ar_key 
+0x739b 023898 set1 mark_ar2 ,mark 
+0x739c 023899 branch function_ar 
+:      023904 function_e1:
+0x739d 023905 disable user 
+0x739e 023906 call function_expand 
+0x739f 023907 branch function_hash 
+:      023909 function_e3:
+0x73a0 023910 arg mem_aco ,rega 
+0x73a1 023911 enable user 
+0x73a2 023912 call function_expand 
+0x73a3 023913 call function_hash 
+0x73a4 023914 arg mem_input_store ,contr 
+0x73a5 023915 arg mem_kc ,contw 
+0x73a6 023916 branch memcpy16 
+:      023919 function_hash:
+0x73a7 023920 setarg mem_random_number 
+0x73a8 023921 store 2 ,memp_ar_input 
+0x73a9 023922 setarg mem_link_key 
+0x73aa 023923 store 2 ,memp_ar_key 
+0x73ab 023924 set0 mark_ar2 ,mark 
+0x73ac 023925 call function_ar 
+0x73ad 023926 arg mem_input_store ,rega 
+0x73ae 023927 arg mem_random_number ,regb 
+0x73af 023928 arg mem_x ,contw 
+0x73b0 023929 call xor16 
+0x73b1 023930 arg mem_x ,rega 
+0x73b2 023931 arg mem_y ,regb 
+0x73b3 023932 copy regb ,contw 
+0x73b4 023933 enable user 
+0x73b5 023934 call add16 
+0x73b6 023935 call key_offset 
+0x73b7 023936 setarg mem_y 
+0x73b8 023937 store 2 ,memp_ar_input 
+0x73b9 023938 setarg mem_x 
+0x73ba 023939 store 2 ,memp_ar_key 
+0x73bb 023940 set1 mark_ar2 ,mark 
+0x73bc 023941 branch function_ar 
+:      023945 function_ar:
+0x73bd 023946 jam 0 ,mem_ar_hround 
+0x73be 023947 fetch 2 ,memp_ar_key 
+0x73bf 023948 iforce contr 
+0x73c0 023949 arg mem_key_store ,contw 
+0x73c1 023950 call memcpy16 
+0x73c2 023951 fetch 2 ,memp_ar_input 
+0x73c3 023952 iforce contr 
+0x73c4 023953 arg mem_input_store ,contw 
+0x73c5 023954 call memcpy16 
+:      023956 function_ar_loop:
+0x73c6 023957 call key_scheduling 
+0x73c7 023958 disable user 
+0x73c8 023959 bmark0 mark_ar2 ,function_ar_original 
+0x73c9 023960 fetch 1 ,mem_ar_hround 
+0x73ca 023961 bne 4 ,function_ar_original 
+0x73cb 023962 fetch 2 ,memp_ar_input 
+0x73cc 023963 iforce regb 
+0x73cd 023964 call xor_mod32_ar2 
+:      023965 function_ar_original:
+0x73ce 023966 call xor_mod32 
+0x73cf 023967 call el_boxes 
+0x73d0 023968 fetch 1 ,mem_ar_hround 
+0x73d1 023969 increase 1 ,pdata 
+0x73d2 023970 store 1 ,mem_ar_hround 
+0x73d3 023972 call key_scheduling 
+0x73d4 023973 enable user 
+0x73d5 023974 call xor_mod32 
+0x73d6 023975 call pht 
+0x73d7 023976 call permute 
+0x73d8 023977 call pht 
+0x73d9 023978 call permute 
+0x73da 023979 call pht 
+0x73db 023980 call permute 
+0x73dc 023981 call pht 
+0x73dd 023982 fetch 1 ,mem_ar_hround 
+0x73de 023983 increase 1 ,pdata 
+0x73df 023984 store 1 ,mem_ar_hround 
+0x73e0 023985 bne 16 ,function_ar_loop 
+0x73e1 023986 call key_scheduling 
+0x73e2 023987 disable user 
+0x73e3 023988 branch xor_mod32 
+:      023992 key_scheduling:
+0x73e4 023993 fetch 1 ,mem_ar_hround 
+0x73e5 023994 arg mem_key_store ,contr 
+0x73e6 023995 branch key_sched_zero ,blank 
+0x73e7 023996 iforce regb 
+0x73e8 023997 force 17 ,loopcnt 
+0x73e9 023998 copy contr ,contw 
+:      023999 key_rotateloop:
+0x73ea 024000 ifetch 1 ,contr 
+0x73eb 024001 lshift3 pdata ,temp 
+0x73ec 024002 rshift2 pdata ,pdata 
+0x73ed 024003 rshift3 pdata ,pdata 
+0x73ee 024004 ior temp ,pdata 
+0x73ef 024005 istore 1 ,contw 
+0x73f0 024006 loop key_rotateloop 
+0x73f1 024007 setarg mem_key_store 
+0x73f2 024008 iadd regb ,contr 
+0x73f3 024009 force 16 ,loopcnt 
+0x73f4 024010 arg mem_round_key ,contw 
+:      024011 key_select_octet_loop:
+0x73f5 024012 ifetch 1 ,contr 
+0x73f6 024013 istore 1 ,contw 
+0x73f7 024014 compare mem_key_store_end ,contr ,0xff 
+0x73f8 024015 nbranch key_select_octet_nwrap ,true 
+0x73f9 024016 increase -17 ,contr 
+:      024017 key_select_octet_nwrap:
+0x73fa 024018 loop key_select_octet_loop 
+0x73fb 024019 force 0 ,rega 
+0x73fc 024020 add regb ,-1 ,regc 
+0x73fd 024021 lshift2 regc ,regc 
+0x73fe 024022 lshift2 regc ,regc 
+0x73ff 024023 call enable_authrom 
+0x7400 024024 setarg mem_b_box 
+0x7401 024025 iadd regc ,regc 
+0x7402 024026 arg mem_round_key ,contw 
+0x7403 024027 force 16 ,loopcnt 
+:      024028 bias_round_key_loop:
+0x7404 024029 ifetcht 1 ,regc 
+0x7405 024030 ifetch 1 ,contw 
+0x7406 024031 iadd temp ,pdata 
+0x7407 024032 istore 1 ,contw 
+0x7408 024033 increase 1 ,regc 
+0x7409 024034 loop bias_round_key_loop 
+0x740a 024035 branch disable_authrom 
+:      024037 key_sched_zero:
+0x740b 024038 force 16 ,loopcnt 
+0x740c 024039 force 0 ,temp 
+:      024040 create_byte_16_loop:
+0x740d 024041 ifetch 1 ,contr 
+0x740e 024042 ixor temp ,temp 
+0x740f 024043 loop create_byte_16_loop 
+0x7410 024044 deposit temp 
+0x7411 024045 istore 1 ,contr 
+0x7412 024046 arg mem_key_store ,contr 
+0x7413 024047 arg mem_round_key ,contw 
+0x7414 024048 branch memcpy16 
+:      024050 xor_mod32:
+0x7415 024051 arg mem_round_key ,regb 
+:      024052 xor_mod32_ar2:
+0x7416 024053 force 16 ,loopcnt 
+0x7417 024054 arg mem_input_store ,rega 
+0x7418 024055 copy rega ,contw 
+:      024056 xor_mod32_loop:
+0x7419 024057 ifetcht 1 ,rega 
+0x741a 024058 ifetch 1 ,regb 
+0x741b 024059 ixor temp ,alarm 
+0x741c 024060 and loopcnt ,3 ,regc 
+0x741d 024061 nbranch xor_mod32_invert ,user 
+0x741e 024062 xor_into 3 ,regc 
+:      024063 xor_mod32_invert:
+0x741f 024064 sub regc ,1 ,regc 
+0x7420 024065 branch xor_even ,positive 
+0x7421 024066 iadd temp ,alarm 
+:      024067 xor_even:
+0x7422 024068 deposit alarm 
+0x7423 024069 istore 1 ,contw 
+0x7424 024070 increase 1 ,rega 
+0x7425 024071 increase 1 ,regb 
+0x7426 024072 loop xor_mod32_loop 
+0x7427 024073 rtn 
+:      024075 el_boxes:
+0x7428 024076 call enable_authrom 
+0x7429 024077 force 16 ,loopcnt 
+0x742a 024078 arg mem_input_store ,rega 
+:      024079 el_box_loop:
+0x742b 024080 ifetch 1 ,rega 
+0x742c 024081 arg mem_e_box ,contr 
+0x742d 024082 and loopcnt ,3 ,regc 
+0x742e 024083 sub regc ,1 ,null 
+0x742f 024084 branch e_boxes ,positive 
+0x7430 024085 arg mem_l_box ,contr 
+:      024086 e_boxes:
+0x7431 024087 iadd contr ,contr 
+0x7432 024088 ifetch 1 ,contr 
+0x7433 024089 istore 1 ,rega 
+0x7434 024090 increase 1 ,rega 
+0x7435 024091 loop el_box_loop 
+0x7436 024092 branch disable_authrom 
+:      024094 pht:
+0x7437 024095 force 8 ,loopcnt 
+0x7438 024096 arg mem_input_store ,contr 
+0x7439 024097 copy contr ,contw 
+:      024098 pht_loop:
+0x743a 024099 ifetch 1 ,contr 
+0x743b 024100 iforce rega 
+0x743c 024101 ifetch 1 ,contr 
+0x743d 024102 iforce regb 
+0x743e 024103 lshift rega ,pdata 
+0x743f 024104 iadd regb ,pdata 
+0x7440 024105 istore 1 ,contw 
+0x7441 024106 deposit rega 
+0x7442 024107 iadd regb ,pdata 
+0x7443 024108 istore 1 ,contw 
+0x7444 024109 loop pht_loop 
+0x7445 024110 rtn 
+:      024113 permute:
+0x7446 024114 setarg 0x8ae42c 
+0x7447 024115 iforce temp 
+0x7448 024116 force 7 ,loopcnt 
+0x7449 024117 call permute_exchange 
+0x744a 024118 setarg 0xd751b 
+0x744b 024119 iforce temp 
+0x744c 024120 force 5 ,loopcnt 
+0x744d 024121 call permute_exchange 
+0x744e 024122 fetch 1 ,mem_input_store + 15 
+0x744f 024123 iforce rega 
+0x7450 024124 fetch 1 ,mem_input_store + 3 
+0x7451 024125 store 1 ,mem_input_store + 15 
+0x7452 024126 deposit rega 
+0x7453 024127 store 1 ,mem_input_store + 3 
+0x7454 024128 rtn 
+:      024130 permute_exchange:
+0x7455 024131 and temp ,0xf ,regb 
+:      024132 permute_loop:
+0x7456 024133 and temp ,0xf ,pdata 
+0x7457 024134 arg mem_input_store ,contw 
+0x7458 024135 iadd contw ,contw 
+0x7459 024136 ifetch 1 ,contw 
+0x745a 024137 iforce regc 
+0x745b 024138 deposit rega 
+0x745c 024139 istore 1 ,contw 
+0x745d 024140 copy regc ,rega 
+0x745e 024141 rshift4 temp ,temp 
+0x745f 024142 loop permute_loop 
+0x7460 024143 setarg mem_input_store 
+0x7461 024144 iadd regb ,contw 
+0x7462 024145 deposit rega 
+0x7463 024146 istore 1 ,contw 
+0x7464 024147 rtn 
+:      024149 add16:
+0x7465 024150 enable user 
+0x7466 024151 branch xor_add16 
+:      024153 xor16:
+0x7467 024154 disable user 
+:      024155 xor_add16:
+0x7468 024156 force 16 ,loopcnt 
+:      024157 xoradd_loop:
+0x7469 024158 ifetcht 1 ,rega 
+0x746a 024159 ifetch 1 ,regb 
+0x746b 024160 branch xoradd_add ,user 
+0x746c 024161 ixor temp ,pdata 
+0x746d 024162 branch xoradd_store 
+:      024163 xoradd_add:
+0x746e 024164 iadd temp ,pdata 
+:      024165 xoradd_store:
+0x746f 024166 istore 1 ,contw 
+0x7470 024167 increase 1 ,rega 
+0x7471 024168 increase 1 ,regb 
+0x7472 024169 loop xoradd_loop 
+0x7473 024170 rtn 
+:      024173 function_expand:
+0x7474 024174 arg mem_y ,contw 
+0x7475 024175 ifetch 6 ,rega 
+0x7476 024176 istore 6 ,contw 
+0x7477 024177 branch expand_12 ,user 
+0x7478 024178 ifetch 6 ,rega 
+0x7479 024179 branch expand_cont 
+:      024180 expand_12:
+0x747a 024181 ifetch 6 ,contr 
+:      024182 expand_cont:
+0x747b 024183 istore 6 ,contw 
+0x747c 024184 ifetch 4 ,rega 
+0x747d 024185 istore 4 ,contw 
+0x747e 024186 rtn 
+:      024188 key_offset:
+0x747f 024189 arg mem_link_key ,contr 
+0x7480 024190 arg mem_x ,contw 
+0x7481 024191 arg 0 ,temp 
+0x7482 024192 setarg 0x8395a7 
+0x7483 024193 call concatenate_temp24 
+0x7484 024194 setarg 0xb3c1df 
+0x7485 024195 call concatenate_temp24 
+0x7486 024196 setarg 0xe5e9 
+0x7487 024197 call concatenate_temp16 
+0x7488 024198 copy temp ,regab 
+0x7489 024199 disable user 
+0x748a 024200 call key_addxor 
+0x748b 024201 copy regab ,temp 
+0x748c 024202 enable user 
+0x748d 024203 branch key_addxor 
+:      024205 key_addxor:
+0x748e 024206 force 8 ,loopcnt 
+:      024207 key_addxor_loop:
+0x748f 024208 ifetch 1 ,contr 
+0x7490 024209 compare 1 ,loopcnt ,1 
+0x7491 024210 branch key_high ,user 
+0x7492 024211 branch key_xor ,true 
+:      024212 key_add:
+0x7493 024213 iadd temp ,pdata 
+0x7494 024214 branch key_store 
+:      024215 key_high:
+0x7495 024216 branch key_add ,true 
+:      024217 key_xor:
+0x7496 024218 ixor temp ,pdata 
+:      024219 key_store:
+0x7497 024220 istore 1 ,contw 
+0x7498 024221 rshift8 temp ,temp 
+0x7499 024222 loop key_addxor_loop 
+0x749a 024223 rtn 
+:      024225 copy_aco:
+0x749b 024226 fetch 6 ,mem_input_store + 4 
+0x749c 024227 store 6 ,mem_aco 
+0x749d 024228 ifetch 6 ,contr 
+0x749e 024229 istore 6 ,contw 
+0x749f 024230 rtn 
+:      024232 concatenate_temp24:
+0x74a0 024233 lshift8 temp ,temp 
+:      024234 concatenate_temp16:
+0x74a1 024235 lshift16 temp ,temp 
+0x74a2 024236 ior temp ,temp 
+0x74a3 024237 rtn 
+:      024240 loop1:
+0x74a4 024241 branch loop1 
+:      024245 generate_stk:
+0x74a5 024246 call function_s1 
+0x74a6 024247 arg mem_le_ltk ,contw 
+0x74a7 024248 branch store_aes_result 
+:      024251 authenticate_rconfirm:
+0x74a8 024252 arg mem_le_srand ,contw 
+0x74a9 024253 branch authenticate_mconfirm ,master 
+0x74aa 024254 arg mem_le_mrand ,contw 
+:      024255 authenticate_mconfirm:
+0x74ab 024256 copy contr ,rega 
+0x74ac 024257 call memcpy16 
+0x74ad 024258 call function_c1 
+0x74ae 024259 arg mem_le_rconfirm ,contr 
+0x74af 024260 branch compare_res 
+:      024262 generate_confirm:
+0x74b0 024263 arg mem_le_mrand ,rega 
+0x74b1 024264 branch generate_mrand ,master 
+0x74b2 024265 arg mem_le_srand ,rega 
+:      024266 generate_mrand:
+0x74b3 024267 copy rega ,contw 
+0x74b4 024268 call generate_random 
+0x74b5 024269 branch function_c1 
+:      024271 generate_sk:
+0x74b6 024272 arg mem_le_skdm ,contr 
+0x74b7 024273 call load_data128 
+0x74b8 024274 arg mem_le_ltk ,contr 
+0x74b9 024275 call load_regext 
+0x74ba 024276 force 0x38 ,aes_ctrl 
+0x74bb 024277 force 0x0 ,aes_ctrl 
+0x74bc 024278 call wait_aes 
+0x74bd 024279 arg mem_le_sk ,contw 
+0x74be 024280 branch store_aes_result 
+:      024283 first_block_counter:
+0x74bf 024284 force 0x49 ,pdata 
+0x74c0 024285 branch first_block 
+:      024286 first_block_data:
+0x74c1 024287 force 1 ,pdata 
+:      024288 first_block:
+0x74c2 024289 force regidx_data ,regext_index 
+0x74c3 024290 lshift8 temp ,regext 
+0x74c4 024291 ior regext ,regext 
+0x74c5 024292 increase 1 ,regext_index 
+0x74c6 024293 rshift8 temp ,regext 
+0x74c7 024294 rshift16 regext ,regext 
+0x74c8 024295 fetch 2 ,mem_le_ivm 
+0x74c9 024296 lshift16 ,pdata ,pdata 
+0x74ca 024297 ior regext ,regext 
+0x74cb 024298 increase 1 ,regext_index 
+0x74cc 024299 ifetch 4 ,contr 
+0x74cd 024300 iforce regext 
+0x74ce 024301 increase 1 ,regext_index 
+0x74cf 024302 ifetch 2 ,contr 
+0x74d0 024303 byteswap rega ,regext 
+0x74d1 024304 lshift16 regext ,regext 
+0x74d2 024305 ior regext ,regext 
+0x74d3 024306 increase 1 ,regext_index 
+0x74d4 024307 rtn 
+:      024311 generate_mic:
+0x74d5 024312 add regc ,1 ,contr 
+0x74d6 024313 ifetch 1 ,contr 
+0x74d7 024314 iforce rega 
+0x74d8 024315 call first_block_counter 
+0x74d9 024316 call do_aes_ocb 
+0x74da 024318 force regidx_data ,regext_index 
+0x74db 024319 ifetch 1 ,regc 
+0x74dc 024320 and_into 0x3 ,pdata 
+0x74dd 024321 lshift16 pdata ,regext 
+0x74de 024322 set1 8 ,regext 
+0x74df 024323 call clear_hidata 
+0x74e0 024324 call do_aes_cbc 
+0x74e1 024326 copy rega ,loopcnt 
+0x74e2 024327 add regc ,2 ,contr 
+0x74e3 024328 call padding_data 
+:      024329 generate_mic_loop:
+0x74e4 024330 call aes_load_data 
+0x74e5 024331 call do_aes_cbc 
+0x74e6 024332 deposit loopcnt 
+0x74e7 024333 branch generate_mic_end ,blank 
+0x74e8 024334 branch generate_mic_loop 
+:      024335 generate_mic_end:
+0x74e9 024336 force regidx_result ,regext_index 
+0x74ea 024337 deposit regext 
+0x74eb 024338 store 4 ,mem_le_mic 
+0x74ec 024339 rtn 
+:      024341 aes_crypt_data:
+0x74ed 024342 increase 1 ,rega 
+0x74ee 024343 call first_block_data 
+0x74ef 024344 copy regc ,contr 
+0x74f0 024345 call aes_load_xor 
+0x74f1 024346 call do_aes_ctr 
+0x74f2 024347 call store_enc_data 
+0x74f3 024348 increase 16 ,regc 
+0x74f4 024349 increase -16 ,regb 
+0x74f5 024350 branch aes_crypt_data ,positive 
+0x74f6 024351 rtn 
+:      024353 le_encrypt:
+0x74f7 024354 arg mem_le_txheader ,regc 
+0x74f8 024355 fetcht 5 ,mem_le_pcnt_tx 
+0x74f9 024356 call generate_mic 
+0x74fa 024357 force regidx_xor ,regext_index 
+0x74fb 024358 iforce regext 
+0x74fc 024359 force 0 ,rega 
+0x74fd 024360 call first_block_data 
+0x74fe 024361 call do_aes_ctr 
+0x74ff 024362 arg mem_le_txpayload ,regc 
+0x7500 024363 fetch 1 ,mem_le_txlen 
+0x7501 024364 add pdata ,-1 ,regb 
+0x7502 024365 iadd regc ,contw 
+0x7503 024366 force regidx_result ,regext_index 
+0x7504 024367 deposit regext 
+0x7505 024368 istore 4 ,contw 
+0x7506 024369 call aes_crypt_data 
+0x7507 024370 fetch 1 ,mem_le_txlen 
+0x7508 024371 increase 4 ,pdata 
+0x7509 024372 store 1 ,mem_le_txlen 
+0x750a 024373 fetcht 5 ,mem_le_pcnt_tx 
+0x750b 024374 increase 1 ,temp 
+0x750c 024375 storet 5 ,mem_le_pcnt_tx 
+0x750d 024376 rtn 
+:      024378 le_decrypt:
+0x750e 024379 fetch 1 ,mem_le_rxbuf + 1 
+0x750f 024380 sub pdata ,20 ,null 
+0x7510 024381 branch le_dec_cont ,positive 
+:      024382 le_dec_cont:
+0x7511 024383 arg mem_le_rxbuf + 2 ,regc 
+0x7512 024384 add pdata ,-1 ,regb 
+0x7513 024385 increase -4 ,pdata 
+0x7514 024386 store 1 ,mem_le_rxbuf + 1 
+0x7515 024387 iadd regc ,contr 
+0x7516 024388 ifetch 4 ,contr 
+0x7517 024389 force regidx_xor ,regext_index 
+0x7518 024390 iforce regext 
+0x7519 024391 force 0 ,rega 
+0x751a 024392 fetcht 5 ,mem_le_pcnt_rx 
+0x751b 024393 call first_block_data 
+0x751c 024394 call do_aes_ctr 
+0x751d 024395 force regidx_result ,regext_index 
+0x751e 024396 deposit regext 
+0x751f 024397 store 4 ,mem_le_peer_mic 
+0x7520 024398 call aes_crypt_data 
+0x7521 024399 arg mem_le_rxbuf ,regc 
+0x7522 024400 call generate_mic 
+0x7523 024401 fetcht 4 ,mem_le_peer_mic 
+0x7524 024402 isub temp ,pdata 
+0x7525 024403 nrtn blank 
+0x7526 024404 fetch 4 ,mem_le_last_mic 
+0x7527 024405 isub temp ,pdata 
+0x7528 024406 rtn blank 
+0x7529 024407 storet 4 ,mem_le_last_mic 
+0x752a 024408 fetch 5 ,mem_le_pcnt_rx 
+0x752b 024409 increase 1 ,pdata 
+0x752c 024410 store 5 ,mem_le_pcnt_rx 
+0x752d 024411 force 0 ,pdata 
+0x752e 024412 rtn 
+:      024414 wait_aes:
+0x752f 024415 nbranch wait_aes ,aes_ready 
+0x7530 024416 rtn 
+:      024418 do_aes_ocb:
+0x7531 024419 force 0x30 ,aes_ctrl 
+0x7532 024420 force 0x0 ,aes_ctrl 
+0x7533 024421 branch wait_aes 
+:      024423 do_aes_cbc:
+0x7534 024424 force 0x32 ,aes_ctrl 
+0x7535 024425 force 0x2 ,aes_ctrl 
+0x7536 024426 branch wait_aes 
+:      024428 do_aes_ctr:
+0x7537 024429 force 0x34 ,aes_ctrl 
+0x7538 024430 force 0x4 ,aes_ctrl 
+0x7539 024431 branch wait_aes 
+:      024433 do_aes_cfb:
+0x753a 024434 force 0x36 ,aes_ctrl 
+0x753b 024435 force 0x6 ,aes_ctrl 
+0x753c 024436 branch wait_aes 
+:      024438 aes_init:
+0x753d 024439 force 1 ,aes_ctrl 
+0x753e 024440 force 0 ,aes_ctrl 
+0x753f 024441 rtn 
+:      024442 function_s1:
+0x7540 024443 force regidx_data ,regext_index 
+0x7541 024444 fetch 4 ,mem_le_mrand 
+0x7542 024445 iforce regext 
+0x7543 024446 increase 1 ,regext_index 
+0x7544 024447 ifetch 4 ,contr 
+0x7545 024448 iforce regext 
+0x7546 024449 increase 1 ,regext_index 
+0x7547 024450 fetch 4 ,mem_le_srand 
+0x7548 024451 iforce regext 
+0x7549 024452 increase 1 ,regext_index 
+0x754a 024453 ifetch 4 ,contr 
+0x754b 024454 iforce regext 
+0x754c 024455 increase 1 ,regext_index 
+0x754d 024456 call aes_clear 
+0x754e 024457 force 0x38 ,aes_ctrl 
+0x754f 024458 force 0x8 ,aes_ctrl 
+0x7550 024459 branch wait_aes 
+:      024462 function_c1:
+0x7551 024463 fetch 6 ,mem_le_lap 
+0x7552 024464 fetcht 6 ,mem_le_plap 
+0x7553 024465 branch function_c1_master ,master 
+0x7554 024466 fetch 6 ,mem_le_plap 
+0x7555 024467 fetcht 6 ,mem_le_lap 
+:      024468 function_c1_master:
+0x7556 024469 force regidx_xor ,regext_index 
+0x7557 024470 copy temp ,regext 
+0x7558 024471 increase 1 ,regext_index 
+0x7559 024472 rshift32 temp ,regext 
+0x755a 024473 lshift16 pdata ,pdata 
+0x755b 024474 ior regext ,regext 
+0x755c 024475 increase 1 ,regext_index 
+0x755d 024476 rshift32 pdata ,regext 
+0x755e 024477 increase 1 ,regext_index 
+0x755f 024478 force 0 ,regext 
+0x7560 024479 force 0 ,pdata 
+0x7561 024480 fetch 1 ,mem_le_conn_peer_addr_type 
+0x7562 024481 fetcht 1 ,mem_le_adv_own_addr_type 
+0x7563 024482 nbranch function_c1_irat ,master 
+0x7564 024484 fetch 1 ,mem_le_conn_own_addr_type 
+0x7565 024485 fetcht 1 ,mem_le_conn_peer_addr_type 
+:      024486 function_c1_irat:
+0x7566 024487 store 1 ,mem_le_iat 
+0x7567 024488 storet 1 ,mem_le_rat 
+0x7568 024489 force regidx_data ,regext_index 
+0x7569 024490 arg mem_le_iat ,regb 
+0x756a 024491 force 4 ,loopcnt 
+:      024492 function_c1_loop1:
+0x756b 024493 ifetch 4 ,rega 
+0x756c 024494 ifetcht 4 ,regb 
+0x756d 024495 ixor temp ,regext 
+0x756e 024496 increase 1 ,regext_index 
+0x756f 024497 increase 4 ,rega 
+0x7570 024498 increase 4 ,regb 
+0x7571 024499 loop function_c1_loop1 
+0x7572 024500 call aes_clear 
+0x7573 024501 force 0x38 ,aes_ctrl 
+0x7574 024502 force 0xc ,aes_ctrl 
+0x7575 024503 call wait_aes 
+0x7576 024505 call aes_clear_data 
+0x7577 024506 force 0x3a ,aes_ctrl 
+0x7578 024507 force 0x8 ,aes_ctrl 
+0x7579 024508 branch wait_aes 
+:      024510 padding_data:
+0x757a 024511 compare 0 ,loopcnt ,3 
+0x757b 024512 rtn true 
+0x757c 024513 deposit contr 
+0x757d 024514 iadd loopcnt ,contw 
+0x757e 024515 force 0 ,pdata 
+:      024516 padding_loop:
+0x757f 024517 istore 1 ,contw 
+0x7580 024518 increase 1 ,loopcnt 
+0x7581 024519 compare 0 ,loopcnt ,3 
+0x7582 024520 rtn true 
+0x7583 024521 branch padding_loop 
+:      024523 aes_load_data:
+0x7584 024524 force regidx_data ,regext_index 
+:      024525 load_data_loop:
+0x7585 024526 deposit loopcnt 
+0x7586 024527 branch load_data_padding ,blank 
+0x7587 024528 ifetch 4 ,contr 
+0x7588 024529 increase -4 ,loopcnt 
+:      024530 load_data_padding:
+0x7589 024531 iforce regext 
+0x758a 024532 increase 1 ,regext_index 
+0x758b 024533 compare regidx_key ,regext_index ,0xf 
+0x758c 024534 rtn true 
+0x758d 024535 branch load_data_loop 
+:      024537 aes_load_xor:
+0x758e 024538 force regidx_xor ,regext_index 
+0x758f 024539 branch load_regext 
+:      024540 load_key:
+0x7590 024541 force regidx_key ,regext_index 
+0x7591 024542 branch load_regext 
+:      024543 load_data128:
+0x7592 024544 force regidx_data ,regext_index 
+:      024545 load_regext:
+0x7593 024546 force 4 ,loopcnt 
+:      024547 load_regext_loop:
+0x7594 024548 ifetch 4 ,contr 
+0x7595 024549 iforce regext 
+0x7596 024550 increase 1 ,regext_index 
+0x7597 024551 loop load_regext_loop 
+0x7598 024552 rtn 
+:      024554 load_sk:
+0x7599 024555 arg mem_le_sk ,contr 
+0x759a 024556 branch load_key 
+:      024558 clear_hidata:
+0x759b 024559 force 4 ,loopcnt 
+0x759c 024560 branch clear_data_rest 
+:      024562 aes_clear_data:
+0x759d 024563 force regidx_data ,regext_index 
+:      024564 aes_clear:
+0x759e 024565 force 4 ,loopcnt 
+:      024566 clear_loop:
+0x759f 024567 force 0 ,regext 
+:      024568 clear_data_rest:
+0x75a0 024569 increase 1 ,regext_index 
+0x75a1 024570 loop clear_loop 
+0x75a2 024571 rtn 
+:      024573 store_aes_result:
+0x75a3 024574 force regidx_result ,regext_index 
+0x75a4 024575 force 4 ,loopcnt 
+:      024576 send_aes_result_loop:
+0x75a5 024577 deposit regext 
+0x75a6 024578 istore 4 ,contw 
+0x75a7 024579 increase 1 ,regext_index 
+0x75a8 024580 loop send_aes_result_loop 
+0x75a9 024581 rtn 
+:      024583 store_enc_data:
+0x75aa 024584 force regidx_result ,regext_index 
+0x75ab 024585 copy regc ,contw 
+0x75ac 024586 add regb ,1 ,loopcnt 
+0x75ad 024587 sub loopcnt ,15 ,null 
+0x75ae 024588 branch store_enc_loop ,positive 
+0x75af 024589 force 16 ,loopcnt 
+:      024590 store_enc_loop:
+0x75b0 024591 deposit regext 
+0x75b1 024592 sub loopcnt ,3 ,null 
+0x75b2 024593 branch store_enc_byte ,positive 
+0x75b3 024594 istore 4 ,contw 
+0x75b4 024595 increase -4 ,loopcnt 
+0x75b5 024596 rtn zero 
+0x75b6 024597 increase 1 ,regext_index 
+0x75b7 024598 branch store_enc_loop 
+:      024599 store_enc_byte:
+0x75b8 024600 istore 1 ,contw 
+0x75b9 024601 rshift8 pdata ,pdata 
+0x75ba 024602 loop store_enc_byte 
+0x75bb 024603 rtn 
+:      024606 compare_res:
+0x75bc 024607 force regidx_result ,regext_index 
+0x75bd 024608 force 4 ,loopcnt 
+:      024609 compare_res_loop:
+0x75be 024610 ifetch 4 ,contr 
+0x75bf 024611 isub regext ,null 
+0x75c0 024612 nrtn zero 
+0x75c1 024613 increase 1 ,regext_index 
+0x75c2 024614 loop compare_res_loop 
+0x75c3 024615 force 0 ,null 
+0x75c4 024616 rtn 
+:      024618 enable_authrom:
+0x75c5 024619 hfetch 1 ,core_clkoff 
+0x75c6 024620 set0 clock_off_auth_rom ,pdata 
+0x75c7 024621 hstore 1 ,core_clkoff 
+0x75c8 024622 rtn 
+:      024624 disable_authrom:
+0x75c9 024625 hfetch 1 ,core_clkoff 
+0x75ca 024626 set1 clock_off_auth_rom ,pdata 
+0x75cb 024627 hstore 1 ,core_clkoff 
+0x75cc 024628 rtn 
+:      024630 init_memp:
+0x75cd 024631 arg mem_p ,contw 
+0x75ce 024632 setsect 0 ,0x3ffff 
+0x75cf 024633 setsect 1 ,0x3ffff 
+0x75d0 024634 setsect 2 ,0x3ffff 
+0x75d1 024635 setsect 3 ,0x3fbff 
+0x75d2 024636 istore 9 ,contw 
+0x75d3 024637 setsect 0 ,0x3ffff 
+0x75d4 024638 setsect 1 ,0x3ffff 
+0x75d5 024639 setsect 2 ,0x3ffff 
+0x75d6 024640 setsect 3 ,0x3ffff 
+0x75d7 024641 istore 9 ,contw 
+0x75d8 024642 setsect 0 ,0x3ffff 
+0x75d9 024643 setsect 1 ,0x3ffff 
+0x75da 024644 setsect 2 ,0x3cfff 
+0x75db 024645 setsect 3 ,0x3ffff 
+0x75dc 024646 istore 9 ,contw 
+0x75dd 024647 setsect 0 ,0x3ffff 
+0x75de 024648 setsect 1 ,0x3ffff 
+0x75df 024649 setsect 2 ,0x3ffef 
+0x75e0 024650 setsect 3 ,0x3ffff 
+0x75e1 024651 istore 9 ,contw 
+0x75e2 024652 setsect 0 ,0x3ffff 
+0x75e3 024653 setsect 1 ,0x3ffff 
+0x75e4 024654 setsect 2 ,0x3ffff 
+0x75e5 024655 setsect 3 ,0x3ffff 
+0x75e6 024656 istore 9 ,contw 
+0x75e7 024657 setsect 0 ,0x3ffff 
+0x75e8 024658 setsect 1 ,0x26c7f 
+0x75e9 024659 setsect 2 ,0x146b 
+0x75ea 024660 setsect 3 ,0x37bb3 
+0x75eb 024661 istore 9 ,contw 
+0x75ec 024662 setsect 0 ,0x1feb8 
+0x75ed 024663 setsect 1 ,0x10c12 
+0x75ee 024664 setsect 2 ,0x2b722 
+0x75ef 024665 setsect 3 ,0x29fa6 
+0x75f0 024666 istore 9 ,contw 
+0x75f1 024667 setsect 0 ,0xe70f 
+0x75f2 024668 setsect 1 ,0x16720 
+0x75f3 024669 setsect 2 ,0x519e 
+0x75f4 024670 setsect 3 ,0x19084 
+0x75f5 024671 istore 9 ,contw 
+0x75f6 024672 setsect 0 ,0x31012 
+0x75f7 024673 setsect 1 ,0x360bf 
+0x75f8 024674 setsect 2 ,0x3f0af 
+0x75f9 024675 setsect 3 ,0x3d3 
+0x75fa 024676 istore 9 ,contw 
+0x75fb 024677 setsect 0 ,0x3a188 
+0x75fc 024678 setsect 1 ,0x3ad0 
+0x75fd 024679 setsect 2 ,0x3cbf2 
+0x75fe 024680 setsect 3 ,0x243d9 
+0x75ff 024681 istore 9 ,contw 
+0x7600 024682 setsect 0 ,0x2b030 
+0x7601 024683 setsect 1 ,0x36a03 
+0x7602 024684 setsect 2 ,0x11188 
+0x7603 024685 setsect 3 ,0x1e520 
+0x7604 024686 istore 9 ,contw 
+0x7605 024687 setsect 0 ,0x3a11e 
+0x7606 024688 setsect 1 ,0xfe5d 
+0x7607 024689 setsect 2 ,0xdd57 
+0x7608 024690 setsect 3 ,0x1ac93 
+0x7609 024691 istore 9 ,contw 
+0x760a 024692 setsect 0 ,0x11ed 
+0x760b 024693 setsect 1 ,0x218c4 
+0x760c 024694 setsect 2 ,0x8da7 
+0x760d 024695 setsect 3 ,0x257ff 
+0x760e 024696 istore 9 ,contw 
+0x760f 024697 setsect 0 ,0x3192b 
+0x7610 024698 setsect 1 ,0x34641 
+0x7611 024699 setsect 2 ,0x1be0c 
+0x7612 024700 setsect 3 ,0x366ad 
+0x7613 024701 istore 9 ,contw 
+0x7614 024702 setsect 0 ,0x1f83 
+0x7615 024703 setsect 1 ,0x15a23 
+0x7616 024704 setsect 2 ,0x3f9b0 
+0x7617 024705 setsect 3 ,0x3949 
+0x7618 024706 istore 9 ,contw 
+0x7619 024707 setsect 0 ,0x13a51 
+0x761a 024708 setsect 1 ,0x153fd 
+0x761b 024709 setsect 2 ,0x3372a 
+0x761c 024710 setsect 3 ,0xf1bb 
+0x761d 024711 istore 9 ,contw 
+0x761e 024712 setsect 0 ,0x3ae85 
+0x761f 024713 setsect 1 ,0x1eed9 
+0x7620 024714 setsect 2 ,0x9e66 
+0x7621 024715 setsect 3 ,0x1a8 
+0x7622 024716 istore 8 ,contw 
+0x7623 024717 rtn 
+:      024721 shutter_init:
+0x7624 024722 setarg shutter_send_process 
+0x7625 024723 store 2 ,mem_cb_bt_process 
+0x7626 024724 setarg shutter_process_idle 
+0x7627 024725 store 2 ,mem_cb_idle_process 
+0x7628 024726 setarg shutter_process_bb_event 
+0x7629 024727 store 2 ,mem_cb_bb_event_process 
+0x762a 024728 setarg shutter_process_lpm_before 
+0x762b 024729 store 2 ,mem_cb_before_lpm 
+0x762c 024730 setarg shutter_discovery_timeout_sleep 
+0x762d 024731 store 2 ,mem_cb_discovry_timeout 
+0x762e 024732 set1 mark_ext_patch ,mark 
+0x762f 024733 bpatch patch3f_1 ,mem_patch3f 
+0x7630 024734 rtn wake 
+0x7631 024736 hjam 0x00 ,core_gpio_sel1 
+0x7632 024737 call shutter_key_and_wake_gpio_setup 
+0x7633 024739 setarg shutter_before_hibernate 
+0x7634 024740 store 2 ,mem_cb_before_hibernate 
+0x7635 024742 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
+0x7636 024743 jam 0 ,mem_shutter_key 
+0x7637 024744 jam flag_shutter_default ,mem_shutter_flag 
+0x7638 024745 setarg 0 
+0x7639 024746 store 4 ,mem_shutter_send_data 
+0x763a 024747 call app_check_reconn_target 
+0x763b 024748 branch app_bt_start_discovery_short ,blank 
+0x763c 024749 call app_led_on 
+0x763d 024750 call app_bt_stop_discovery 
+0x763e 024751 branch app_bt_start_reconnect 
+:      024753 shutter_key_and_wake_gpio_setup:
+0x763f 024754 fetcht 1 ,mem_shutter_iphonekey_gpio 
+0x7640 024755 call gpio_config_input 
+0x7641 024756 fetcht 1 ,mem_shutter_androidkey_gpio 
+0x7642 024757 branch gpio_config_input 
+:      024759 shutter_cancel_key_shake:
+0x7643 024760 set1 mark_ext_patch ,mark 
+0x7644 024761 bpatch patch3f_2 ,mem_patch3f 
+0x7645 024762 fetcht 4 ,mem_shutter_clkn_bt_last 
+0x7646 024763 deposit clkn_bt 
+0x7647 024764 store 4 ,mem_shutter_clkn_bt_last 
+0x7648 024765 isub temp ,pdata 
+0x7649 024766 nrtn positive 
+0x764a 024767 sub pdata ,200 ,pdata 
+0x764b 024768 rtn 
+:      024770 shutter_send_process:
+0x764c 024771 fetch 1 ,mem_hid_interrupt_state 
+0x764d 024772 rtnne 0x3f 
+:      024773 shutter_scan_key_start:
+0x764e 024774 set1 mark_ext_patch ,mark 
+0x764f 024775 bpatch patch3f_3 ,mem_patch3f 
+0x7650 024776 fetch 1 ,mem_device_option 
+0x7651 024777 rtnne dvc_op_shutter 
+0x7652 024778 disable user 
+0x7653 024779 call shutter_scan_key 
+0x7654 024780 nrtn user 
+0x7655 024781 disable user 
+0x7656 024782 fetch 1 ,mem_scan_mode 
+0x7657 024783 beq 0x03 ,shutter_reconnect_scan_2 
+0x7658 024785 fetch 1 ,mem_shutter_flag 
+0x7659 024786 beq flag_shutter_iphonekey_send ,shutter_iphonekey_release 
+0x765a 024787 beq flag_shutter_androidkey_send ,shutter_androidkey_release 
+0x765b 024788 call shutter_cancel_key_shake 
+0x765c 024789 branch shutter_send_process_end ,positive 
+0x765d 024791 fetch 1 ,mem_shutter_key 
+0x765e 024792 bbit1 flag_shutter_iphonekey_press ,shutter_iphonekey_press 
+0x765f 024793 bbit1 flag_shutter_androidkey_press ,shutter_androidkey_press 
+:      024795 shutter_send_process_end:
+0x7660 024796 jam 0 ,mem_shutter_key 
+0x7661 024797 jam flag_shutter_default ,mem_shutter_flag 
+0x7662 024798 rtn 
+:      024801 shutter_iphonekey_release:
+0x7663 024802 jam flag_shutter_default ,mem_shutter_flag 
+0x7664 024803 call ui_led_blink_stop 
+0x7665 024804 fetch 1 ,mem_shutter_key_number 
+0x7666 024805 beq flag_shutter_1key ,shutter_1key_iphonekey_release 
+:      024806 shutter_2key_iphonekey_release:
+:      024807 shutter_iphonekey_release_package:
+0x7667 024808 jam 0x05 ,mem_shutter_send_length 
+0x7668 024809 jam 0x03 ,mem_shutter_send_data 
+0x7669 024810 branch shutter_send_keydata 
+:      024811 shutter_1key_iphonekey_release:
+0x766a 024812 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
+0x766b 024813 branch shutter_1key_send_step1 
+:      024815 shutter_1key_send_step1:
+0x766c 024816 jam flag_shutter_1key_send_step2 ,mem_shutter_1key_send_sm 
+0x766d 024817 branch shutter_androidkey_press_package 
+:      024818 shutter_1key_send_step2:
+0x766e 024819 jam flag_shutter_1key_send_step3 ,mem_shutter_1key_send_sm 
+0x766f 024820 branch shutter_androidkey_release_package 
+:      024821 shutter_1key_send_step3:
+0x7670 024822 jam flag_shutter_1key_send_step4 ,mem_shutter_1key_send_sm 
+0x7671 024823 branch shutter_iphonekey_press_package 
+:      024824 shutter_1key_send_step4:
+0x7672 024825 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
+0x7673 024826 branch shutter_iphonekey_release_package 
+:      024828 shutter_iphonekey_press:
+0x7674 024829 jam flag_shutter_iphonekey_send ,mem_shutter_flag 
+0x7675 024830 call ui_led_on 
+0x7676 024831 fetch 1 ,mem_shutter_key_number 
+0x7677 024832 beq flag_shutter_1key ,shutter_1key_iphonekey_press 
+:      024833 shutter_2key_iphonekey_press:
+:      024834 shutter_iphonekey_press_package:
+0x7678 024835 jam 0x05 ,mem_shutter_send_length 
+0x7679 024836 setarg 0x20003 
+0x767a 024837 store 3 ,mem_shutter_send_data 
+0x767b 024838 branch shutter_send_keydata 
+:      024839 shutter_1key_iphonekey_press:
+0x767c 024840 rtn 
+:      024842 shutter_androidkey_release:
+0x767d 024843 jam flag_shutter_default ,mem_shutter_flag 
+0x767e 024844 call ui_led_blink_stop 
+:      024845 shutter_androidkey_release_package:
+0x767f 024846 jam 0x0a ,mem_shutter_send_length 
+0x7680 024847 jam 0x01 ,mem_shutter_send_data 
+0x7681 024848 branch shutter_send_keydata 
+:      024849 shutter_androidkey_press:
+0x7682 024850 jam flag_shutter_androidkey_send ,mem_shutter_flag 
+0x7683 024851 call ui_led_on 
+:      024852 shutter_androidkey_press_package:
+0x7684 024853 jam 0x0a ,mem_shutter_send_length 
+0x7685 024854 jam 0x01 ,mem_shutter_send_data 
+0x7686 024855 setarg 0x280000 
+0x7687 024856 store 3 ,mem_shutter_send_data + 1 
+:      024858 shutter_send_keydata:
+0x7688 024859 set1 mark_ext_patch ,mark 
+0x7689 024860 bpatch patch3f_4 ,mem_patch3f 
+0x768a 024861 fetch 1 ,mem_shutter_send_length 
+0x768b 024862 copy pdata ,rega 
+0x768c 024863 call hid_malloc_tx_buff 
+0x768d 024864 fetch 2 ,mem_hid_int_remote_cid 
+0x768e 024865 istore 2 ,contw 
+0x768f 024866 setarg 0xa1 
+0x7690 024867 istore 1 ,contw 
+0x7691 024868 fetcht 4 ,mem_shutter_send_data 
+0x7692 024869 istoret 8 ,contw 
+0x7693 024870 setarg 0 
+0x7694 024871 istore 1 ,contw 
+0x7695 024872 store 4 ,mem_shutter_send_data 
+0x7696 024874 fetch 1 ,mem_shutter_1key_send_sm 
+0x7697 024875 beq flag_shutter_1key_send_step2 ,shutter_1key_send_step2 
+0x7698 024876 beq flag_shutter_1key_send_step3 ,shutter_1key_send_step3 
+0x7699 024877 beq flag_shutter_1key_send_step4 ,shutter_1key_send_step4 
+0x769a 024878 rtn 
+:      024880 shutter_scan_key:
+0x769b 024881 fetcht 1 ,mem_shutter_iphonekey_gpio 
+0x769c 024882 call gpio_get_bit 
+0x769d 024883 setarg 0 
+0x769e 024884 setflag true ,flag_shutter_iphonekey_press ,pdata 
+0x769f 024885 store 1 ,mem_shutter_key_temp 
+0x76a0 024886 fetcht 1 ,mem_shutter_androidkey_gpio 
+0x76a1 024887 call gpio_get_bit 
+0x76a2 024888 setarg 0 
+0x76a3 024889 setflag true ,flag_shutter_androidkey_press ,pdata 
+0x76a4 024890 fetcht 1 ,mem_shutter_key_temp 
+0x76a5 024891 ior temp ,pdata 
+0x76a6 024892 fetcht 1 ,mem_shutter_key 
+0x76a7 024893 store 1 ,mem_shutter_key 
+0x76a8 024894 ixor temp ,null 
+0x76a9 024895 rtn zero 
+0x76aa 024896 enable user 
+0x76ab 024897 rtn 
+:      024899 shutter_process_bb_event:
+0x76ac 024900 copy regc ,pdata 
+0x76ad 024901 beq bt_evt_setup_complete ,shutter_bb_event_setup_complete 
+0x76ae 024902 beq bt_evt_hid_connected ,shutter_bb_event_hid_connected 
+0x76af 024903 beq bt_evt_hid_disconnected ,shutter_bb_event_hid_disconn 
+0x76b0 024904 beq bt_evt_virtual_cable_unplug ,shutter_bb_event_unplug 
+0x76b1 024905 beq bt_evt_bb_disconnected ,shutter_bb_event_bb_disconn 
+0x76b2 024906 beq bt_evt_reconn_failed ,shutter_bb_event_reconn_failed 
+0x76b3 024907 beq bt_evt_reconn_page_timeout ,shutter_bb_event_reconn_failed 
+0x76b4 024908 beq bt_evt_bb_connected ,shutter_process_bb_conn 
+0x76b5 024909 beq bt_evt_hid_handshake ,shutter_event_hid_handshake 
+0x76b6 024910 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x76b7 024911 and pdata ,0x0f ,temp 
+0x76b8 024912 and_into bt_evt_timer_mask ,pdata 
+0x76b9 024913 beq bt_evt_timer_init ,shutter_bb_event_timer 
+0x76ba 024914 rtn 
+:      024916 shutter_hid_handshake_timer:
+0x76bb 024917 fetch 1 ,mem_hid_handshake_timer_count 
+0x76bc 024918 rtn blank 
+0x76bd 024919 increase -1 ,pdata 
+0x76be 024920 store 1 ,mem_hid_handshake_timer_count 
+0x76bf 024921 nrtn blank 
+:      024922 shutter_event_hid_handshake:
+0x76c0 024923 jam app_handshake_done ,mem_app_handshake_flag 
+0x76c1 024924 call app_lpm_mult_enable 
+0x76c2 024925 call app_bt_store_reconn_info 
+0x76c3 024926 call app_bt_stop_discovery 
+0x76c4 024927 call app_led_off 
+0x76c5 024928 branch app_bt_enter_sniff 
+:      024931 shutter_process_bb_conn:
+0x76c6 024932 jam 0 ,mem_shutter_hid_disconn_count 
+0x76c7 024933 jam 0 ,mem_shutter_cable_unplug_conut 
+0x76c8 024934 rtn 
+:      024936 shutter_bb_event_bb_disconn:
+0x76c9 024937 set1 mark_ext_patch ,mark 
+0x76ca 024938 bpatch patch3f_5 ,mem_patch3f 
+0x76cb 024939 jam 0 ,mem_unsniff2sniff_timer_count 
+0x76cc 024940 jam 0 ,mem_shutter_cable_unplug_conut 
+0x76cd 024941 jam 0 ,mem_shutter_hid_disconn_count 
+0x76ce 024942 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x76cf 024943 bbit0 app_disc_after_sniff ,shutter_check_pairing 
+:      024944 shutter_bb_event_reconn_failed:
+0x76d0 024946 fetch 2 ,mem_discovery_timeout 
+0x76d1 024947 store 2 ,mem_discovery_timeout_timer_count 
+:      024948 shutter_discovery_on_not_renew_timer:
+0x76d2 024949 call app_disconn_reason_clear 
+0x76d3 024950 branch app_bt_start_discovery_led_blink 
+:      024952 shutter_check_pairing:
+0x76d4 024953 bbit0 app_disc_after_pairing ,shutter_check_reconn 
+0x76d5 024954 branch shutter_bb_event_reconn_failed 
+:      024956 shutter_check_reconn:
+0x76d6 024957 bbit0 app_disc_after_reconn ,shutter_discovery_on_not_renew_timer 
+0x76d7 024958 branch shutter_bb_event_reconn_failed 
+:      024961 shutter_bb_event_setup_complete:
+0x76d8 024962 call app_bt_stop_discovery 
+0x76d9 024963 branch app_led_stop_blink 
+:      024965 shutter_bb_event_hid_connected:
+0x76da 024966 setarg hid_handshake_timeout 
+0x76db 024967 store 1 ,mem_hid_handshake_timer_count 
+0x76dc 024968 rtn 
+:      024970 shutter_bb_event_hid_disconn:
+0x76dd 024971 jam 0 ,mem_shutter_cable_unplug_conut 
+0x76de 024972 setarg flag_shutter_hid_disconn_timeout 
+0x76df 024973 store 1 ,mem_shutter_hid_disconn_count 
+0x76e0 024974 rtn 
+:      024976 shutter_bb_event_unplug:
+0x76e1 024977 setarg flag_shutter_cable_unplug_timeout 
+0x76e2 024978 store 1 ,mem_shutter_cable_unplug_conut 
+0x76e3 024979 rtn 
+:      024981 shutter_bb_event_timer:
+0x76e4 024982 set1 mark_ext_patch ,mark 
+0x76e5 024983 bpatch patch3f_6 ,mem_patch3f 
+0x76e6 024984 storet 1 ,mem_app_evt_timer_count 
+:      024985 shutter_bb_event_100ms_loop:
+0x76e7 024986 fetch 1 ,mem_app_evt_timer_count 
+0x76e8 024987 rtn blank 
+0x76e9 024988 increase -1 ,pdata 
+0x76ea 024989 store 1 ,mem_app_evt_timer_count 
+0x76eb 024990 call shutter_check_unplug_timer 
+0x76ec 024991 call shutter_hid_handshake_timer 
+0x76ed 024992 call shutter_check_hid_disconn_timer 
+0x76ee 024993 branch shutter_bb_event_100ms_loop 
+:      024995 shutter_check_unplug_timer:
+0x76ef 024996 fetch 1 ,mem_shutter_cable_unplug_conut 
+0x76f0 024997 rtn blank 
+0x76f1 024998 fetch 1 ,mem_shutter_cable_unplug_conut 
+0x76f2 024999 increase -1 ,pdata 
+0x76f3 025000 store 1 ,mem_shutter_cable_unplug_conut 
+0x76f4 025001 nrtn blank 
+0x76f5 025002 fetch 1 ,mem_control_tasks 
+0x76f6 025003 set1 l2cap_disconnect_interrupt ,pdata 
+0x76f7 025004 set1 l2cap_disconnect_control ,pdata 
+0x76f8 025005 store 1 ,mem_control_tasks 
+0x76f9 025006 rtn 
+:      025008 shutter_check_hid_disconn_timer:
+0x76fa 025009 fetch 1 ,mem_shutter_hid_disconn_count 
+0x76fb 025010 rtn blank 
+0x76fc 025011 fetch 1 ,mem_shutter_hid_disconn_count 
+0x76fd 025012 increase -1 ,pdata 
+0x76fe 025013 store 1 ,mem_shutter_hid_disconn_count 
+0x76ff 025014 nrtn blank 
+0x7700 025015 branch app_bt_disconnect 
+:      025017 shutter_reconnect_scan:
+0x7701 025018 set1 mark_ext_patch ,mark 
+0x7702 025019 bpatch patch3f_7 ,mem_patch3f 
+0x7703 025020 fetch 1 ,mem_scan_mode 
+0x7704 025021 rtnne 0x03 
+0x7705 025022 branch shutter_scan_key_start 
+:      025023 shutter_reconnect_scan_2:
+0x7706 025024 call shutter_cancel_key_shake 
+0x7707 025025 rtn positive 
+0x7708 025026 fetch 1 ,mem_shutter_key 
+0x7709 025027 rtn blank 
+0x770a 025028 call app_check_reconn_target 
+0x770b 025029 branch app_bt_start_discovery_short ,blank 
+0x770c 025030 call app_led_on 
+0x770d 025031 call app_bt_stop_discovery 
+0x770e 025032 branch app_bt_start_reconnect 
+:      025035 shutter_process_idle:
+0x770f 025036 branch shutter_reconnect_scan 
+:      025039 shutter_process_lpm_before:
+0x7710 025040 fetcht 1 ,mem_shutter_iphonekey_gpio 
+0x7711 025041 call gpio_set_wake_by_current_state 
+0x7712 025042 fetch 1 ,mem_shutter_key_number 
+0x7713 025043 bne flag_shutter_1key ,shutter_process_lpm_before_key2 
+0x7714 025044 rtn 
+:      025045 shutter_process_lpm_before_key2:
+0x7715 025046 fetcht 1 ,mem_shutter_androidkey_gpio 
+0x7716 025047 branch gpio_set_wake_by_current_state 
+:      025049 shutter_before_hibernate:
+0x7717 025050 branch shutter_key_and_wake_gpio_setup 
+:      025053 shutter_discovery_timeout_sleep:
+0x7718 025054 branch app_enter_hibernate 
+:      025058 sp_initialize:
+0x7719 025059 set1 mark_ext_patch ,mark 
+0x771a 025060 bpatch patch3e_2 ,mem_patch3e 
+0x771b 025061 fetch 1 ,mem_ssp_enable 
+0x771c 025062 branch ssp_disable ,blank 
+0x771d 025063 call ssp_enable 
+0x771e 025064 setarg 0 
+0x771f 025065 store 8 ,mem_sp_state_start 
+0x7720 025066 store 4 ,mem_sp_flag_start 
+0x7721 025068 arg mem_sp_iocap_remote ,contw 
+0x7722 025069 istore 7 ,contw 
+0x7723 025070 jam default_statemachine ,mem_sp_localsm 
+0x7724 025071 branch sp_pubkey_calc 
+:      025073 sp_generate_local_key:
+0x7725 025074 jam sp_flag_commit ,mem_sp_flag 
+0x7726 025075 branch sp_generate_local_key0 
+:      025076 sp_master_generate_local_key:
+0x7727 025077 fetch 1 ,mem_sp_local_key_invalid 
+0x7728 025078 beq sp_key_valid ,sp_dhkey_calc 
+0x7729 025079 branch assert 
+:      025080 sp_generate_local_key0:
+0x772a 025081 fetch 1 ,mem_sp_local_key_invalid 
+0x772b 025082 beq sp_key_valid ,sp_start_send_pubkey 
+0x772c 025083 branch sp_pubkey_calc 
+:      025085 sp_start_send_pubkey:
+0x772d 025086 call sp_dhkey_calc 
+0x772e 025087 fetch 1 ,mem_master_sp_state 
+0x772f 025088 nrtn blank 
+0x7730 025089 jam sp_stat_key_send ,mem_sp_state 
+0x7731 025090 rtn 
+:      025092 sp_calculate_commitment:
+0x7732 025093 fetch 1 ,mem_sp_calc 
+0x7733 025094 bne sp_calc_standby ,sp_calculate_commitment_wait_dhkey_calc 
+0x7734 025095 call sp_local_random_key_generator 
+0x7735 025096 arg mem_sp_prarm_stack ,contw 
+0x7736 025097 setarg mem_sp_random_local_end 
+0x7737 025098 istore 2 ,contw 
+0x7738 025099 setarg mem_sp_pubkey_local_x_end 
+0x7739 025100 istore 2 ,contw 
+0x773a 025101 setarg mem_sp_pubkey_remote_x_end 
+0x773b 025102 istore 2 ,contw 
+0x773c 025103 branch sp_calculate_commitment0 
+:      025104 master_sp_calculate_commitment:
+0x773d 025105 arg mem_sp_prarm_stack ,contw 
+0x773e 025106 setarg mem_sp_random_remote_end 
+0x773f 025107 istore 2 ,contw 
+0x7740 025108 setarg mem_sp_pubkey_remote_x_end 
+0x7741 025109 istore 2 ,contw 
+0x7742 025110 setarg mem_sp_pubkey_local_x_end 
+0x7743 025111 istore 2 ,contw 
+:      025112 sp_calculate_commitment0:
+0x7744 025113 call function_f1 
+0x7745 025114 fetch 1 ,mem_master_sp_state 
+0x7746 025115 beq sp_stat_commit_calc ,master_sp_calculate_commitment0 
+0x7747 025116 jam sp_flag_commit ,mem_sp_flag 
+0x7748 025117 jam sp_stat_commit_send ,mem_sp_state 
+0x7749 025118 rtn 
+:      025119 master_sp_calculate_commitment0:
+0x774a 025120 jam sp_stat_commitment_compare ,mem_master_sp_state 
+0x774b 025121 call sp_master_generate_local_key 
+0x774c 025122 branch master_set_mem_master_sp_flag 
+:      025124 sp_local_random_key_generator:
+0x774d 025125 arg mem_sp_random_local ,contw 
+0x774e 025126 force 8 ,queue 
+0x774f 025127 branch random_generator 
+:      025129 sp_calculate_commitment_wait_dhkey_calc:
+0x7750 025130 jam sp_flag_commit ,mem_sp_flag 
+0x7751 025131 rtn 
+:      025133 sp_confirm_check:
+0x7752 025135 arg mem_addr_value ,contw 
+0x7753 025136 fetch 6 ,mem_lap 
+0x7754 025137 istore 6 ,contw 
+0x7755 025138 fetch 6 ,mem_plap 
+0x7756 025139 istore 6 ,contw 
+0x7757 025140 fetch 3 ,mem_sp_iocap_remote 
+0x7758 025141 istore 3 ,contw 
+0x7759 025143 call function_f3a 
+0x775a 025145 arg mem_sp_calc_result_high ,rega 
+0x775b 025146 arg mem_sp_check_result ,regb 
+0x775c 025147 force 4 ,queue 
+0x775d 025148 call compare4 
+0x775e 025149 nbranch sp_confirm_check_failed ,true 
+:      025151 sp_confirm_check_success:
+0x775f 025152 fetch 1 ,mem_master_sp_state 
+0x7760 025153 beq sp_stat_confirm_check ,sp_confirm_check_success_master 
+0x7761 025154 jam sp_stat_confirm_calc ,mem_sp_state 
+0x7762 025155 jam sp_flag_commit ,mem_sp_flag 
+0x7763 025156 jam lmp_accepted ,mem_lmo_opcode2 
+0x7764 025157 rtn 
+:      025158 sp_confirm_check_success_master:
+0x7765 025159 jam lmp_accepted ,mem_lmo_opcode2 
+0x7766 025160 jam sp_state_end ,mem_master_sp_state 
+0x7767 025161 branch master_set_mem_master_sp_flag 
+:      025164 sp_confirm_check_failed:
+0x7768 025165 fetch 1 ,mem_master_sp_state 
+0x7769 025166 beq sp_stat_confirm_check ,sp_confirm_check_failed_master 
+0x776a 025167 jam sp_stat_null ,mem_sp_state 
+0x776b 025168 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x776c 025170 jam authentication_failure_error ,mem_lmo_reason2 
+0x776d 025171 rtn 
+:      025172 sp_confirm_check_failed_master:
+0x776e 025173 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x776f 025174 jam sp_stat_null ,mem_master_sp_state 
+0x7770 025175 rtn 
+:      025177 sp_confirm_calc:
+0x7771 025178 fetch 1 ,mem_sp_dh_ready 
+0x7772 025179 beq sp_flag_commit ,sp_confirm_calc_ready 
+0x7773 025180 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x7774 025181 branch master_set_mem_master_sp_flag 
+:      025182 sp_confirm_calc_ready:
+0x7775 025183 arg mem_addr_value ,contw 
+0x7776 025184 fetch 6 ,mem_plap 
+0x7777 025185 istore 6 ,contw 
+0x7778 025186 fetch 6 ,mem_lap 
+0x7779 025187 istore 6 ,contw 
+0x777a 025188 fetch 3 ,mem_sp_iocap_local 
+0x777b 025189 istore 3 ,contw 
+0x777c 025191 call function_f3b 
+0x777d 025192 fetch 1 ,mem_master_sp_state 
+0x777e 025193 beq sp_stat_confirm_calc ,sp_confirm_calc_master 
+0x777f 025194 jam sp_stat_confirm_send ,mem_sp_state 
+0x7780 025195 jam sp_flag_commit ,mem_sp_flag 
+0x7781 025196 rtn 
+:      025197 sp_confirm_calc_master:
+0x7782 025198 jam sp_stat_confirm_send ,mem_master_sp_state 
+0x7783 025199 jam sp_flag_commit ,mem_master_sp_flag 
+0x7784 025200 rtn 
+:      025202 sp_master_key_prarm_push:
+0x7785 025203 arg mem_sp_prarm_stack ,contw 
+0x7786 025204 fetch 6 ,mem_plap 
+0x7787 025205 istore 6 ,contw 
+0x7788 025206 fetch 6 ,mem_lap 
+0x7789 025207 istore 6 ,contw 
+0x778a 025208 setarg mem_sp_random_local_end 
+0x778b 025209 istore 2 ,contw 
+0x778c 025210 setarg mem_sp_random_remote_end 
+0x778d 025211 istore 2 ,contw 
+0x778e 025212 branch sp_link_key_calc 
+:      025213 sp_link_key_prarm_push:
+0x778f 025214 jam sp_stat_done ,mem_sp_state 
+0x7790 025215 arg mem_sp_prarm_stack ,contw 
+0x7791 025216 fetch 6 ,mem_lap 
+0x7792 025217 istore 6 ,contw 
+0x7793 025218 fetch 6 ,mem_plap 
+0x7794 025219 istore 6 ,contw 
+0x7795 025220 setarg mem_sp_random_remote_end 
+0x7796 025221 istore 2 ,contw 
+0x7797 025222 setarg mem_sp_random_local_end 
+0x7798 025223 istore 2 ,contw 
+:      025224 sp_link_key_calc:
+0x7799 025226 arg mem_addr_value ,contw 
+0x779a 025227 fetch 6 ,mem_sp_prarm_stack 
+0x779b 025228 istore 6 ,contw 
+0x779c 025229 fetch 6 ,mem_sp_prarm_stack + 6 
+0x779d 025230 istore 6 ,contw 
+0x779e 025232 call function_f2 
+0x779f 025235 jam 1 ,mem_link_key_exists 
+0x77a0 025236 arg mem_link_key ,contw 
+0x77a1 025237 arg mem_sp_calc_result_high ,contr 
+0x77a2 025238 call memcpy16 
+0x77a3 025239 branch generate_linkkey_continue 
+:      025242 sp_pubkey_calc:
+0x77a4 025243 set1 mark_ext_patch ,mark 
+0x77a5 025244 bpatch patch3e_3 ,mem_patch3e 
+0x77a6 025245 fetch 1 ,mem_sp_local_key_invalid 
+0x77a7 025246 rtnne sp_key_invalid 
+0x77a8 025247 fetch 1 ,mem_sp_calc 
+0x77a9 025248 rtnne sp_calc_standby 
+0x77aa 025249 arg mem_sp_private_key ,contw 
+0x77ab 025250 force 11 ,queue 
+0x77ac 025251 call random_generator 
+0x77ad 025252 random pdata 
+0x77ae 025253 rshift pdata ,pdata 
+0x77af 025254 istore 2 ,contw 
+0x77b0 025256 arg mem_k ,contw 
+0x77b1 025257 arg mem_sp_private_key ,contr 
+0x77b2 025258 call memcpy24 
+0x77b3 025260 arg mem_ax ,contw 
+0x77b4 025261 arg mem_gx ,contr 
+0x77b5 025262 call memcpy48 
+0x77b6 025264 arg mem_az ,contw 
+0x77b7 025265 call bn_zero 
+0x77b8 025266 jam 1 ,mem_az 
+0x77b9 025268 call eckp_calc_init 
+0x77ba 025269 jam sp_calc_pubkey ,mem_sp_calc 
+0x77bb 025270 rtn 
+:      025272 sp_pubkey_generated:
+0x77bc 025273 arg mem_sp_pubkey_local ,contw 
+0x77bd 025274 arg mem_bx ,contr 
+0x77be 025275 call memcpy48 
+0x77bf 025276 jam sp_key_valid ,mem_sp_local_key_invalid 
+0x77c0 025277 jam sp_calc_standby ,mem_sp_calc 
+0x77c1 025278 rtn 
+:      025280 sp_dhkey_calc:
+0x77c2 025281 set1 mark_ext_patch ,mark 
+0x77c3 025282 bpatch patch3e_4 ,mem_patch3e 
+0x77c4 025283 fetch 1 ,mem_sp_dhkey_invalid 
+0x77c5 025284 rtnne sp_key_invalid 
+0x77c6 025285 fetch 1 ,mem_sp_calc 
+0x77c7 025286 rtnne sp_calc_standby 
+0x77c8 025288 arg mem_k ,contw 
+0x77c9 025289 arg mem_sp_private_key ,contr 
+0x77ca 025290 call memcpy24 
+0x77cb 025292 arg mem_ax ,contw 
+0x77cc 025293 arg mem_sp_pubkey_remote ,contr 
+0x77cd 025294 call memcpy48 
+0x77ce 025296 arg mem_az ,contw 
+0x77cf 025297 call bn_zero 
+0x77d0 025298 jam 1 ,mem_az 
+0x77d1 025300 call eckp_calc_init 
+0x77d2 025301 jam sp_calc_dhkey ,mem_sp_calc 
+0x77d3 025302 rtn 
+:      025304 sp_dhkey_generated:
+0x77d4 025305 jam sp_flag_commit ,mem_sp_dh_ready 
+0x77d5 025306 arg mem_sp_dhkey ,contw 
+0x77d6 025307 arg mem_bx ,contr 
+0x77d7 025308 call memcpy24 
+0x77d8 025309 jam sp_key_valid ,mem_sp_dhkey_invalid 
+0x77d9 025310 jam sp_calc_standby ,mem_sp_calc 
+0x77da 025311 rtn 
+:      025313 random_generator:
+0x77db 025314 increase -1 ,queue 
+0x77dc 025315 nrtn positive 
+0x77dd 025316 random pdata 
+0x77de 025317 istore 2 ,contw 
+0x77df 025318 branch random_generator 
+:      025319 compare4:
+0x77e0 025320 increase -1 ,queue 
+0x77e1 025321 nbranch compare4_success ,positive 
+0x77e2 025322 ifetch 4 ,rega 
+0x77e3 025323 copy pdata ,temp 
+0x77e4 025324 ifetch 4 ,regb 
+0x77e5 025325 iflip temp ,pdata 
+0x77e6 025326 nbranch compare4_failed ,zero 
+0x77e7 025327 increase 4 ,rega 
+0x77e8 025328 increase 4 ,regb 
+0x77e9 025329 branch compare4 
+:      025330 compare4_failed:
+0x77ea 025331 disable true 
+0x77eb 025332 rtn 
+:      025333 compare4_success:
+0x77ec 025334 enable true 
+0x77ed 025335 rtn 
+:      025342 simple_pairing_sequence:
+0x77ee 025343 set1 mark_ext_patch ,mark 
+0x77ef 025344 bpatch patch3e_5 ,mem_patch3e 
+0x77f0 025345 fetch 1 ,mem_sp_flag 
+0x77f1 025346 rtn blank 
+0x77f2 025347 jam sp_flag_standby ,mem_sp_flag 
+0x77f3 025348 fetch 1 ,mem_sp_state 
+0x77f4 025349 beq sp_stat_key_send ,sp_send_lmp_encapsulated_header 
+0x77f5 025350 beq sp_stat_commit_send ,sp_send_lmp_simple_pairing_comfirm 
+0x77f6 025351 beq sp_stat_random_send ,sp_send_lmp_simple_pairing_number 
+0x77f7 025352 beq sp_stat_confirm_send ,sp_send_lmp_dhkey_check 
+0x77f8 025353 beq sp_stat_key_generate ,sp_generate_local_key 
+0x77f9 025354 beq sp_stat_commit_calc ,sp_calculate_commitment 
+0x77fa 025355 beq sp_stat_confirm_check ,sp_confirm_check 
+0x77fb 025356 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x77fc 025357 beq sp_stat_link_key_calc ,sp_link_key_prarm_push 
+0x77fd 025359 rtn 
+:      025361 master_simple_paring_sequence:
+0x77fe 025362 set1 mark_ext_patch ,mark 
+0x77ff 025363 bpatch patch3e_6 ,mem_patch3e 
+0x7800 025364 fetch 1 ,mem_master_sp_flag 
+0x7801 025365 rtn blank 
+0x7802 025366 jam sp_flag_standby ,mem_master_sp_flag 
+0x7803 025367 fetch 1 ,mem_master_sp_state 
+0x7804 025368 beq sp_master_stat_start_skip ,sp_master_send_io_cap_get 
+0x7805 025369 beq sp_master_stat_start_done ,sp_master_send_io_cap_send 
+0x7806 025370 beq sp_stat_key_send ,sp_master_send_lmp_encapsulated_header 
+0x7807 025371 beq sp_stat_commit_calc ,master_sp_calculate_commitment 
+0x7808 025372 beq sp_stat_commitment_compare ,sp_master_commitment_compare 
+0x7809 025373 beq sp_stat_random_send ,sp_master_send_lmp_simple_pairing_number 
+0x780a 025374 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x780b 025375 beq sp_stat_confirm_send ,master_sp_send_lmp_dhkey_check 
+0x780c 025376 beq sp_stat_confirm_check ,sp_confirm_check 
+0x780d 025377 beq sp_state_end ,master_sp_sm_end 
+0x780e 025378 rtn 
+:      025380 master_set_mem_master_sp_flag:
+0x780f 025381 jam sp_flag_commit ,mem_master_sp_flag 
+0x7810 025382 rtn 
+:      025384 master_clear_mem_master_sp_flag:
+0x7811 025385 jam sp_flag_standby ,mem_master_sp_flag 
+0x7812 025386 rtn 
+:      025387 sp_calc_sequence:
+0x7813 025388 set1 mark_ext_patch ,mark 
+0x7814 025389 bpatch patch3e_7 ,mem_patch3e 
+0x7815 025390 fetch 1 ,mem_sp_calc 
+0x7816 025391 rtn blank 
+0x7817 025392 increase 0x80 ,pdata 
+0x7818 025393 store 1 ,mem_sp_calc 
+0x7819 025394 rtnbit1 7 
+0x781a 025395 fetch 1 ,mem_ec_loopc 
+0x781b 025396 branch sp_calc_sequence_done ,blank 
+0x781c 025397 branch eckp_calc 
+:      025399 sp_calc_sequence_done:
+0x781d 025400 call ecunmapz 
+0x781e 025401 fetch 1 ,mem_sp_calc 
+0x781f 025402 beq sp_calc_pubkey ,sp_pubkey_generated 
+0x7820 025403 beq sp_calc_dhkey ,sp_dhkey_generated 
+0x7821 025404 rtn 
+:      025407 bn_testbit:
+0x7822 025408 and pdata ,7 ,queue 
+0x7823 025409 rshift3 pdata ,pdata 
+0x7824 025410 iadd contr ,contr 
+0x7825 025411 ifetch 1 ,contr 
+0x7826 025412 qisolate0 pdata 
+0x7827 025413 rtn 
+:      025416 ec_copy:
+0x7828 025417 call memcpy24 
+0x7829 025418 call memcpy24 
+0x782a 025419 branch memcpy24 
+:      025422 bn_eq_zero:
+0x782b 025423 ifetch 8 ,contr 
+0x782c 025424 nrtn blank 
+0x782d 025425 ifetch 8 ,contr 
+0x782e 025426 nrtn blank 
+0x782f 025427 ifetch 8 ,contr 
+0x7830 025428 rtn 
+:      025432 bn_eq:
+0x7831 025433 force 6 ,loopcnt 
+:      025434 bn_eq_0:
+0x7832 025435 ifetch 4 ,rega 
+0x7833 025436 iforce temp 
+0x7834 025437 ifetch 4 ,regb 
+0x7835 025438 isub temp ,null 
+0x7836 025439 nrtn zero 
+0x7837 025440 increase 4 ,rega 
+0x7838 025441 increase 4 ,regb 
+0x7839 025442 loop bn_eq_0 
+0x783a 025443 rtn 
+:      025446 bn_bigeq:
+0x783b 025447 force 6 ,loopcnt 
+0x783c 025448 increase 20 ,rega 
+0x783d 025449 increase 20 ,regb 
+:      025450 bn_bigeq_0:
+0x783e 025451 ifetch 4 ,regb 
+0x783f 025452 iforce temp 
+0x7840 025453 ifetch 4 ,rega 
+0x7841 025454 isub temp ,pdata 
+0x7842 025455 nrtn positive 
+0x7843 025456 nrtn blank 
+0x7844 025457 increase -4 ,rega 
+0x7845 025458 increase -4 ,regb 
+0x7846 025459 loop bn_bigeq_0 
+0x7847 025460 rtn 
+:      025462 bn_add:
+0x7848 025463 force 6 ,loopcnt 
+0x7849 025464 force 0 ,regc 
+:      025465 bn_add_0:
+0x784a 025466 ifetch 4 ,rega 
+0x784b 025467 iforce temp 
+0x784c 025468 ifetch 4 ,regb 
+0x784d 025469 iadd temp ,pdata 
+0x784e 025470 iadd regc ,pdata 
+0x784f 025471 istore 4 ,contw 
+0x7850 025472 isolate1 32 ,pdata 
+0x7851 025473 setflag true ,0 ,regc 
+0x7852 025474 increase 4 ,rega 
+0x7853 025475 increase 4 ,regb 
+0x7854 025476 loop bn_add_0 
+0x7855 025477 rtn 
+:      025479 bn_sub:
+0x7856 025480 force 6 ,loopcnt 
+0x7857 025481 force 0 ,regc 
+:      025482 bn_sub_0:
+0x7858 025483 ifetch 4 ,regb 
+0x7859 025484 iforce temp 
+0x785a 025485 ifetch 4 ,rega 
+0x785b 025486 isub temp ,pdata 
+0x785c 025487 isub regc ,pdata 
+0x785d 025488 istore 4 ,contw 
+0x785e 025489 isolate1 32 ,pdata 
+0x785f 025490 setflag true ,0 ,regc 
+0x7860 025491 increase 4 ,rega 
+0x7861 025492 increase 4 ,regb 
+0x7862 025493 loop bn_sub_0 
+0x7863 025494 rtn 
+:      025496 bn_rshift6:
+0x7864 025497 force 6 ,loopcnt 
+0x7865 025498 increase 20 ,rega 
+:      025499 bn_rshift:
+0x7866 025500 force 0 ,regc 
+:      025501 bn_rshift_0:
+0x7867 025502 ifetch 4 ,rega 
+0x7868 025503 isolate1 0 ,pdata 
+0x7869 025504 setflag true ,1 ,regc 
+0x786a 025505 rshift pdata ,pdata 
+0x786b 025506 isolate1 0 ,regc 
+0x786c 025507 setflag true ,31 ,pdata 
+0x786d 025508 istore 4 ,rega 
+0x786e 025509 increase -4 ,rega 
+0x786f 025510 rshift regc ,regc 
+0x7870 025511 loop bn_rshift_0 
+0x7871 025512 rtn 
+:      025514 bn_lshift:
+0x7872 025515 force 6 ,loopcnt 
+0x7873 025516 force 0 ,regc 
+:      025517 bn_lshift_0:
+0x7874 025518 ifetch 4 ,rega 
+0x7875 025519 isolate1 31 ,pdata 
+0x7876 025520 setflag true ,1 ,regc 
+0x7877 025521 lshift pdata ,pdata 
+0x7878 025522 isolate1 0 ,regc 
+0x7879 025523 setflag true ,0 ,pdata 
+0x787a 025524 istore 4 ,rega 
+0x787b 025525 increase 4 ,rega 
+0x787c 025526 rshift regc ,regc 
+0x787d 025527 loop bn_lshift_0 
+0x787e 025528 rtn 
+:      025530 bn_lshiftmod:
+0x787f 025531 call bn_lshift 
+:      025532 bn_lshiftmod_ismod:
+0x7880 025533 isolate1 0 ,regc 
+0x7881 025534 branch bn_lshiftmod_0 ,true 
+0x7882 025535 arg mem_p ,regb 
+0x7883 025536 copy rega ,regc 
+0x7884 025537 increase -24 ,rega 
+0x7885 025538 call bn_bigeq 
+0x7886 025539 nrtn positive 
+0x7887 025540 copy regc ,rega 
+:      025541 bn_lshiftmod_0:
+0x7888 025542 increase -24 ,rega 
+0x7889 025543 arg mem_p ,regb 
+0x788a 025544 copy rega ,contw 
+0x788b 025545 branch bn_sub 
+:      025548 bn_addmod:
+0x788c 025549 call bn_add 
+0x788d 025550 copy contw ,rega 
+0x788e 025551 branch bn_lshiftmod_ismod 
+:      025553 bn_submod:
+0x788f 025554 call bn_sub 
+0x7890 025555 isolate0 0 ,regc 
+0x7891 025556 rtn true 
+0x7892 025557 arg mem_p ,regb 
+0x7893 025558 add contw ,-24 ,rega 
+0x7894 025559 copy rega ,contw 
+0x7895 025560 branch bn_add 
+:      025563 bn_p192mod:
+0x7896 025564 copy contw ,timeup 
+0x7897 025565 copy rega ,alarm 
+0x7898 025566 arg mem_tmp2 ,regb 
+0x7899 025567 copy regb ,contw 
+0x789a 025568 add rega ,24 ,contr 
+0x789b 025569 ifetch 8 ,contr 
+0x789c 025570 istore 8 ,contw 
+0x789d 025571 istore 8 ,contw 
+0x789e 025572 force 0 ,pdata 
+0x789f 025573 istore 8 ,contw 
+0x78a0 025574 copy timeup ,contw 
+0x78a1 025575 call bn_addmod 
+0x78a2 025576 arg mem_tmp2 ,regb 
+0x78a3 025577 copy regb ,contw 
+0x78a4 025578 force 0 ,pdata 
+0x78a5 025579 istore 8 ,contw 
+0x78a6 025580 add alarm ,32 ,contr 
+0x78a7 025581 ifetch 8 ,contr 
+0x78a8 025582 istore 8 ,contw 
+0x78a9 025583 istore 8 ,contw 
+0x78aa 025584 copy timeup ,rega 
+0x78ab 025585 copy rega ,contw 
+0x78ac 025586 call bn_addmod 
+0x78ad 025587 arg mem_tmp2 ,regb 
+0x78ae 025588 copy regb ,contw 
+0x78af 025589 add alarm ,40 ,contr 
+0x78b0 025590 ifetch 8 ,contr 
+0x78b1 025591 istore 8 ,contw 
+0x78b2 025592 istore 8 ,contw 
+0x78b3 025593 istore 8 ,contw 
+0x78b4 025594 copy timeup ,rega 
+0x78b5 025595 copy rega ,contw 
+0x78b6 025596 branch bn_addmod 
+:      025599 bn_load:
+0x78b7 025600 force 6 ,loopcnt 
+:      025601 bn_load_0:
+0x78b8 025602 ifetch 4 ,contr 
+0x78b9 025603 iforce regext 
+0x78ba 025604 increase 1 ,regext_index 
+0x78bb 025605 loop bn_load_0 
+0x78bc 025606 rtn 
+:      025610 bn_mulmod:
+0x78bd 025611 copy contw ,timeup 
+0x78be 025612 arg mem_tmp1 ,contw 
+0x78bf 025613 call bn_zero 
+0x78c0 025614 arg mem_tmp1 ,contw 
+0x78c1 025615 copy rega ,contr 
+0x78c2 025616 force 0 ,regext_index 
+0x78c3 025617 call bn_load 
+0x78c4 025618 copy regb ,contr 
+0x78c5 025619 call bn_load 
+0x78c6 025620 force 0 ,regb 
+:      025621 bn_mulmod_1:
+0x78c7 025622 force 0 ,temp 
+0x78c8 025623 force 6 ,regc 
+:      025624 bn_mulmod_0:
+0x78c9 025625 ifetch 4 ,contw 
+0x78ca 025626 iforce rega 
+0x78cb 025627 copy regb ,regext_index 
+0x78cc 025628 deposit regext 
+0x78cd 025629 copy regc ,regext_index 
+0x78ce 025630 imul32 regext ,pdata 
+0x78cf 025631 iadd rega ,pdata 
+0x78d0 025632 iadd temp ,pdata 
+0x78d1 025633 istore 4 ,contw 
+0x78d2 025634 rshift32 pdata ,temp 
+0x78d3 025635 increase 1 ,regc 
+0x78d4 025636 compare 12 ,regc ,0xff 
+0x78d5 025637 nbranch bn_mulmod_0 ,true 
+0x78d6 025638 deposit temp 
+0x78d7 025639 istore 4 ,contw 
+0x78d8 025640 increase -24 ,contw 
+0x78d9 025641 increase 1 ,regb 
+0x78da 025642 compare 6 ,regb ,0xff 
+0x78db 025643 nbranch bn_mulmod_1 ,true 
+0x78dc 025644 arg mem_tmp1 ,rega 
+0x78dd 025645 copy timeup ,contw 
+0x78de 025646 branch bn_p192mod 
+:      025649 bn_sqrmod:
+0x78df 025650 copy rega ,regb 
+0x78e0 025651 branch bn_mulmod 
+:      025653 bn_rshifteven:
+0x78e1 025654 copy rega ,alarm 
+:      025655 bn_rshifteven_1:
+0x78e2 025656 copy alarm ,rega 
+0x78e3 025657 ifetch 1 ,rega 
+0x78e4 025658 isolate1 0 ,pdata 
+0x78e5 025659 rtn true 
+0x78e6 025660 call bn_rshift6 
+0x78e7 025661 ifetch 1 ,regb 
+0x78e8 025662 isolate0 0 ,pdata 
+0x78e9 025663 branch bn_rshifteven_0 ,true 
+0x78ea 025664 arg mem_p ,rega 
+0x78eb 025665 copy regb ,contw 
+0x78ec 025666 call bn_add 
+0x78ed 025667 ifetch 1 ,regb 
+0x78ee 025668 iadd regc ,pdata 
+0x78ef 025669 istore 1 ,regb 
+0x78f0 025670 increase -24 ,regb 
+:      025671 bn_rshifteven_0:
+0x78f1 025672 add regb ,24 ,rega 
+0x78f2 025673 force 7 ,loopcnt 
+0x78f3 025674 call bn_rshift 
+0x78f4 025675 branch bn_rshifteven_1 
+:      025678 bn_invmod:
+0x78f5 025679 copy contw ,timeup 
+0x78f6 025680 arg mem_tmp0 ,contw 
+0x78f7 025681 call bn_zero 
+0x78f8 025682 force 0 ,pdata 
+0x78f9 025683 store 4 ,mem_tmp5 
+0x78fa 025684 store 4 ,mem_t2 
+0x78fb 025685 jam 1 ,mem_tmp0 
+0x78fc 025686 arg mem_tmp1 ,contw 
+0x78fd 025687 call bn_zero 
+0x78fe 025688 arg mem_p ,contr 
+0x78ff 025689 arg mem_tmp2 ,contw 
+0x7900 025690 call memcpy24 
+0x7901 025691 copy rega ,contr 
+0x7902 025692 arg mem_tmp3 ,contw 
+0x7903 025693 call memcpy24 
+:      025694 bn_invmod_2:
+0x7904 025695 arg mem_tmp3 ,contr 
+0x7905 025696 call bn_eq_zero 
+0x7906 025697 branch bn_invmod_0 ,blank 
+0x7907 025698 arg mem_tmp3 ,rega 
+0x7908 025699 arg mem_tmp0 ,regb 
+0x7909 025700 call bn_rshifteven 
+0x790a 025702 arg mem_tmp2 ,rega 
+0x790b 025703 arg mem_tmp1 ,regb 
+0x790c 025704 call bn_rshifteven 
+0x790d 025705 arg mem_tmp3 ,rega 
+0x790e 025706 arg mem_tmp2 ,regb 
+0x790f 025707 call bn_bigeq 
+0x7910 025708 branch bn_invmod_1 ,positive 
+0x7911 025709 arg mem_tmp2 ,rega 
+0x7912 025710 arg mem_tmp3 ,regb 
+0x7913 025711 copy rega ,contw 
+0x7914 025712 call bn_sub 
+0x7915 025713 arg mem_tmp0 ,rega 
+0x7916 025714 arg mem_tmp1 ,regb 
+0x7917 025715 copy regb ,contw 
+0x7918 025716 call bn_add 
+0x7919 025717 ifetch 1 ,rega 
+0x791a 025718 iadd regc ,regc 
+0x791b 025719 ifetch 1 ,regb 
+0x791c 025720 iadd regc ,pdata 
+0x791d 025721 istore 1 ,regb 
+0x791e 025722 branch bn_invmod_2 
+:      025723 bn_invmod_1:
+0x791f 025724 arg mem_tmp3 ,rega 
+0x7920 025725 arg mem_tmp2 ,regb 
+0x7921 025726 copy rega ,contw 
+0x7922 025727 call bn_sub 
+0x7923 025728 arg mem_tmp1 ,rega 
+0x7924 025729 arg mem_tmp0 ,regb 
+0x7925 025730 copy regb ,contw 
+0x7926 025731 call bn_add 
+0x7927 025732 ifetch 1 ,rega 
+0x7928 025733 iadd regc ,regc 
+0x7929 025734 ifetch 1 ,regb 
+0x792a 025735 iadd regc ,pdata 
+0x792b 025736 istore 1 ,regb 
+0x792c 025737 branch bn_invmod_2 
+:      025738 bn_invmod_0:
+0x792d 025739 arg mem_tmp0 ,contw 
+0x792e 025740 call bn_zero 
+0x792f 025741 fetch 1 ,mem_tmp5 
+0x7930 025742 store 1 ,mem_tmp0 
+0x7931 025743 store 1 ,mem_tmp0a 
+0x7932 025744 arg mem_tmp0 ,rega 
+0x7933 025745 arg mem_tmp1 ,regb 
+0x7934 025746 copy regb ,contw 
+0x7935 025747 call bn_addmod 
+0x7936 025748 arg mem_p ,rega 
+0x7937 025749 arg mem_tmp1 ,regb 
+0x7938 025750 copy timeup ,contw 
+0x7939 025751 branch bn_submod 
+:      025756 ecdbl:
+0x793a 025757 arg mem_cz ,rega 
+0x793b 025758 arg mem_t2 ,contw 
+0x793c 025759 call bn_sqrmod 
+0x793d 025760 arg mem_t2 ,rega 
+0x793e 025761 arg mem_t3 ,contw 
+0x793f 025762 call bn_sqrmod 
+0x7940 025763 arg mem_a ,rega 
+0x7941 025764 arg mem_t3 ,regb 
+0x7942 025765 arg mem_t3 ,contw 
+0x7943 025766 call bn_mulmod 
+0x7944 025767 arg mem_cx ,rega 
+0x7945 025768 arg mem_t2 ,contw 
+0x7946 025769 call bn_sqrmod 
+0x7947 025770 arg mem_t2 ,contr 
+0x7948 025771 arg mem_t1 ,contw 
+0x7949 025772 call memcpy24 
+0x794a 025773 arg mem_t1 ,rega 
+0x794b 025774 call bn_lshiftmod 
+0x794c 025775 arg mem_t2 ,rega 
+0x794d 025776 arg mem_t1 ,regb 
+0x794e 025777 arg mem_t2 ,contw 
+0x794f 025778 call bn_addmod 
+0x7950 025779 arg mem_t2 ,rega 
+0x7951 025780 arg mem_t3 ,regb 
+0x7952 025781 arg mem_t2 ,contw 
+0x7953 025782 call bn_addmod 
+0x7954 025783 arg mem_cx ,contr 
+0x7955 025784 arg mem_t1 ,contw 
+0x7956 025785 call memcpy24 
+0x7957 025786 arg mem_cy ,rega 
+0x7958 025787 arg mem_t3 ,contw 
+0x7959 025788 call bn_sqrmod 
+0x795a 025789 arg mem_t1 ,rega 
+0x795b 025790 call bn_lshiftmod 
+0x795c 025791 arg mem_t1 ,rega 
+0x795d 025792 call bn_lshiftmod 
+0x795e 025793 arg mem_t1 ,rega 
+0x795f 025794 arg mem_t3 ,regb 
+0x7960 025795 arg mem_t1 ,contw 
+0x7961 025796 call bn_mulmod 
+0x7962 025797 arg mem_t3 ,rega 
+0x7963 025798 arg mem_t0 ,contw 
+0x7964 025799 call bn_sqrmod 
+0x7965 025800 arg mem_t0 ,rega 
+0x7966 025801 call bn_lshiftmod 
+0x7967 025802 arg mem_t0 ,rega 
+0x7968 025803 call bn_lshiftmod 
+0x7969 025804 arg mem_t0 ,rega 
+0x796a 025805 call bn_lshiftmod 
+0x796b 025806 arg mem_cy ,contr 
+0x796c 025807 arg mem_t3 ,contw 
+0x796d 025808 call memcpy24 
+0x796e 025809 arg mem_t3 ,rega 
+0x796f 025810 call bn_lshiftmod 
+0x7970 025811 arg mem_t3 ,rega 
+0x7971 025812 arg mem_cz ,regb 
+0x7972 025813 arg mem_cz ,contw 
+0x7973 025814 call bn_mulmod 
+0x7974 025815 arg mem_t2 ,rega 
+0x7975 025816 arg mem_t3 ,contw 
+0x7976 025817 call bn_sqrmod 
+0x7977 025818 arg mem_t3 ,rega 
+0x7978 025819 arg mem_t1 ,regb 
+0x7979 025820 arg mem_t3 ,contw 
+0x797a 025821 call bn_submod 
+0x797b 025822 arg mem_t3 ,rega 
+0x797c 025823 arg mem_t1 ,regb 
+0x797d 025824 arg mem_cx ,contw 
+0x797e 025825 call bn_submod 
+0x797f 025826 arg mem_t1 ,rega 
+0x7980 025827 arg mem_cx ,regb 
+0x7981 025828 arg mem_t3 ,contw 
+0x7982 025829 call bn_submod 
+0x7983 025830 arg mem_t3 ,rega 
+0x7984 025831 arg mem_t2 ,regb 
+0x7985 025832 arg mem_t3 ,contw 
+0x7986 025833 call bn_mulmod 
+0x7987 025834 arg mem_t3 ,rega 
+0x7988 025835 arg mem_t0 ,regb 
+0x7989 025836 arg mem_cy ,contw 
+0x798a 025837 branch bn_submod 
+:      025841 ecadd:
+0x798b 025842 arg mem_az ,rega 
+0x798c 025843 arg mem_t7 ,contw 
+0x798d 025844 call bn_sqrmod 
+0x798e 025845 arg mem_cx ,rega 
+0x798f 025846 arg mem_t7 ,regb 
+0x7990 025847 arg mem_t0 ,contw 
+0x7991 025848 call bn_mulmod 
+0x7992 025849 arg mem_az ,rega 
+0x7993 025850 arg mem_t7 ,regb 
+0x7994 025851 arg mem_t7 ,contw 
+0x7995 025852 call bn_mulmod 
+0x7996 025853 arg mem_cy ,rega 
+0x7997 025854 arg mem_t7 ,regb 
+0x7998 025855 arg mem_t1 ,contw 
+0x7999 025856 call bn_mulmod 
+0x799a 025857 arg mem_cz ,rega 
+0x799b 025858 arg mem_t7 ,contw 
+0x799c 025859 call bn_sqrmod 
+0x799d 025860 arg mem_ax ,rega 
+0x799e 025861 arg mem_t7 ,regb 
+0x799f 025862 arg mem_t2 ,contw 
+0x79a0 025863 call bn_mulmod 
+0x79a1 025864 arg mem_cz ,rega 
+0x79a2 025865 arg mem_t7 ,regb 
+0x79a3 025866 arg mem_t7 ,contw 
+0x79a4 025867 call bn_mulmod 
+0x79a5 025868 arg mem_ay ,rega 
+0x79a6 025869 arg mem_t7 ,regb 
+0x79a7 025870 arg mem_t3 ,contw 
+0x79a8 025871 call bn_mulmod 
+0x79a9 025872 arg mem_t0 ,rega 
+0x79aa 025873 arg mem_t2 ,regb 
+0x79ab 025874 arg mem_t7 ,contw 
+0x79ac 025875 call bn_submod 
+0x79ad 025876 arg mem_t0 ,rega 
+0x79ae 025877 arg mem_t2 ,regb 
+0x79af 025878 arg mem_t0 ,contw 
+0x79b0 025879 call bn_addmod 
+0x79b1 025880 arg mem_t1 ,rega 
+0x79b2 025881 arg mem_t3 ,regb 
+0x79b3 025882 arg mem_t2 ,contw 
+0x79b4 025883 call bn_submod 
+0x79b5 025884 arg mem_t1 ,rega 
+0x79b6 025885 arg mem_t3 ,regb 
+0x79b7 025886 arg mem_t1 ,contw 
+0x79b8 025887 call bn_addmod 
+0x79b9 025888 arg mem_t1 ,rega 
+0x79ba 025889 arg mem_t7 ,regb 
+0x79bb 025890 arg mem_t1 ,contw 
+0x79bc 025891 call bn_mulmod 
+0x79bd 025892 arg mem_cz ,rega 
+0x79be 025893 arg mem_az ,regb 
+0x79bf 025894 arg mem_t3 ,contw 
+0x79c0 025895 call bn_mulmod 
+0x79c1 025896 arg mem_t3 ,rega 
+0x79c2 025897 arg mem_t7 ,regb 
+0x79c3 025898 arg mem_cz ,contw 
+0x79c4 025899 call bn_mulmod 
+0x79c5 025900 arg mem_t7 ,rega 
+0x79c6 025901 arg mem_t7 ,contw 
+0x79c7 025902 call bn_sqrmod 
+0x79c8 025903 arg mem_t7 ,rega 
+0x79c9 025904 arg mem_t0 ,regb 
+0x79ca 025905 arg mem_t3 ,contw 
+0x79cb 025906 call bn_mulmod 
+0x79cc 025907 arg mem_t7 ,rega 
+0x79cd 025908 arg mem_t1 ,regb 
+0x79ce 025909 arg mem_t1 ,contw 
+0x79cf 025910 call bn_mulmod 
+0x79d0 025911 arg mem_t2 ,rega 
+0x79d1 025912 arg mem_cx ,contw 
+0x79d2 025913 call bn_sqrmod 
+0x79d3 025914 arg mem_cx ,rega 
+0x79d4 025915 arg mem_t3 ,regb 
+0x79d5 025916 arg mem_cx ,contw 
+0x79d6 025917 call bn_submod 
+0x79d7 025918 arg mem_cx ,contr 
+0x79d8 025919 arg mem_t7 ,contw 
+0x79d9 025920 call memcpy24 
+0x79da 025921 arg mem_t7 ,rega 
+0x79db 025922 call bn_lshiftmod 
+0x79dc 025923 arg mem_t3 ,rega 
+0x79dd 025924 arg mem_t7 ,regb 
+0x79de 025925 arg mem_t3 ,contw 
+0x79df 025926 call bn_submod 
+0x79e0 025927 arg mem_t3 ,rega 
+0x79e1 025928 arg mem_t2 ,regb 
+0x79e2 025929 arg mem_t2 ,contw 
+0x79e3 025930 call bn_mulmod 
+0x79e4 025931 arg mem_t2 ,rega 
+0x79e5 025932 arg mem_t1 ,regb 
+0x79e6 025933 arg mem_cy ,contw 
+0x79e7 025934 call bn_submod 
+0x79e8 025935 arg mem_cy ,rega 
+0x79e9 025936 arg mem_p ,regb 
+0x79ea 025937 arg mem_cy ,contw 
+0x79eb 025938 force 0 ,regc 
+0x79ec 025939 fetch 1 ,mem_cy 
+0x79ed 025940 isolate1 0 ,pdata 
+0x79ee 025941 call bn_add ,true 
+0x79ef 025942 copy regc ,alarm 
+0x79f0 025943 arg mem_cy ,rega 
+0x79f1 025944 call bn_rshift6 
+0x79f2 025945 fetch 1 ,mem_cy5 
+0x79f3 025946 isolate1 0 ,alarm 
+0x79f4 025947 setflag true ,7 ,pdata 
+0x79f5 025948 store 1 ,mem_cy5 
+0x79f6 025949 rtn 
+:      025952 eckp:
+0x79f7 025953 jam 192 ,mem_ec_loopc 
+0x79f8 025954 jam 1 ,mem_ec_infinite 
+:      025955 eckp_0:
+0x79f9 025956 fetch 1 ,mem_ec_loopc 
+0x79fa 025957 increase -1 ,pdata 
+0x79fb 025958 nrtn positive 
+0x79fc 025959 store 1 ,mem_ec_loopc 
+0x79fd 025960 fetch 1 ,mem_ec_infinite 
+0x79fe 025961 call ecdbl ,blank 
+0x79ff 025962 fetch 1 ,mem_ec_loopc 
+0x7a00 025963 arg mem_k ,contr 
+0x7a01 025964 call bn_testbit 
+0x7a02 025965 branch eckp_0 ,true 
+0x7a03 025966 fetch 1 ,mem_ec_infinite 
+0x7a04 025967 nbranch eckp_1 ,blank 
+0x7a05 025968 call ecadd 
+0x7a06 025969 branch eckp_0 
+:      025970 eckp_1:
+0x7a07 025971 jam 0 ,mem_ec_infinite 
+0x7a08 025972 arg mem_ax ,contr 
+0x7a09 025973 arg mem_cx ,contw 
+0x7a0a 025974 call ec_copy 
+0x7a0b 025975 branch eckp_0 
+:      025978 ecunmapz:
+0x7a0c 025979 arg mem_cz ,rega 
+0x7a0d 025980 arg mem_t3 ,contw 
+0x7a0e 025981 call bn_invmod 
+0x7a0f 025982 arg mem_t3 ,rega 
+0x7a10 025983 arg mem_t1 ,contw 
+0x7a11 025984 call bn_sqrmod 
+0x7a12 025985 arg mem_cx ,rega 
+0x7a13 025986 arg mem_t1 ,regb 
+0x7a14 025987 arg mem_bx ,contw 
+0x7a15 025988 call bn_mulmod 
+0x7a16 025989 arg mem_t3 ,rega 
+0x7a17 025990 arg mem_t1 ,regb 
+0x7a18 025991 arg mem_t2 ,contw 
+0x7a19 025992 call bn_mulmod 
+0x7a1a 025993 arg mem_cy ,rega 
+0x7a1b 025994 arg mem_t2 ,regb 
+0x7a1c 025995 arg mem_by ,contw 
+0x7a1d 025996 branch bn_mulmod 
+:      025999 sha_endian_swap:
+0x7a1e 026000 force 16 ,loopcnt 
+:      026001 sha_endian_swap2:
+0x7a1f 026002 ifetch 4 ,contr 
+0x7a20 026003 force 4 ,rega 
+0x7a21 026004 increase 3 ,contw 
+:      026005 sha_endian_loop:
+0x7a22 026006 istore 1 ,contw 
+0x7a23 026007 rshift8 pdata ,pdata 
+0x7a24 026008 increase -2 ,contw 
+0x7a25 026009 increase -1 ,rega 
+0x7a26 026010 nbranch sha_endian_loop ,zero 
+0x7a27 026011 increase 5 ,contw 
+0x7a28 026012 loop sha_endian_swap2 
+0x7a29 026013 rtn 
+:      026016 sha_getw:
+0x7a2a 026017 lshift2 queue ,pdata 
+0x7a2b 026018 iadd timeup ,contr 
+0x7a2c 026019 ifetch 4 ,contr 
+0x7a2d 026020 rtn 
+:      026022 sha_r:
+0x7a2e 026023 force 16 ,alarm 
+0x7a2f 026024 arg memdat ,timeup 
+:      026025 sha_r_loop:
+0x7a30 026026 add alarm ,-7 ,queue 
+0x7a31 026027 call sha_getw 
+0x7a32 026028 iforce temp 
+0x7a33 026029 add alarm ,-16 ,queue 
+0x7a34 026030 call sha_getw 
+0x7a35 026031 iadd temp ,temp 
+0x7a36 026032 add alarm ,-2 ,queue 
+0x7a37 026033 call sha_getw 
+0x7a38 026034 shasx pdata ,1 ,pdata 
+0x7a39 026035 iadd temp ,temp 
+0x7a3a 026036 add alarm ,-15 ,queue 
+0x7a3b 026037 call sha_getw 
+0x7a3c 026038 shasx pdata ,0 ,pdata 
+0x7a3d 026039 iadd temp ,temp 
+0x7a3e 026040 lshift2 alarm ,pdata 
+0x7a3f 026041 iadd timeup ,contw 
+0x7a40 026042 istoret 4 ,contw 
+0x7a41 026043 increase 1 ,alarm 
+0x7a42 026044 compare 64 ,alarm ,0xff 
+0x7a43 026045 nbranch sha_r_loop ,true 
+0x7a44 026046 rtn 
+:      026049 sha_init:
+0x7a45 026050 arg memh0 ,contr 
+0x7a46 026051 force 7 ,regext_index 
+:      026052 sha_init_0:
+0x7a47 026053 ifetch 4 ,contr 
+0x7a48 026054 iforce regext 
+0x7a49 026055 increase -1 ,regext_index 
+0x7a4a 026056 branch sha_init_0 ,positive 
+0x7a4b 026057 rtn 
+:      026059 sha:
+0x7a4c 026060 set1 mark_ext_patch ,mark 
+0x7a4d 026061 bpatch patch3f_0 ,mem_patch3f 
+0x7a4e 026062 call sha_r 
+0x7a4f 026063 arg memahbak ,contw 
+0x7a50 026064 force 0 ,regext_index 
+:      026065 sha_0:
+0x7a51 026066 deposit regext 
+0x7a52 026067 istore 4 ,contw 
+0x7a53 026068 increase 1 ,regext_index 
+0x7a54 026069 compare 8 ,regext_index ,0xff 
+0x7a55 026070 nbranch sha_0 ,true 
+0x7a56 026071 call enable_authrom 
+0x7a57 026072 arg memk ,timeup 
+0x7a58 026073 arg memdat ,alarm 
+0x7a59 026074 force 64 ,loopcnt 
+:      026075 sha_loop:
+0x7a5a 026076 ifetcht 4 ,alarm 
+0x7a5b 026077 ifetch 4 ,timeup 
+0x7a5c 026078 increase 4 ,timeup 
+0x7a5d 026079 increase 4 ,alarm 
+0x7a5e 026080 iadd temp ,pdata 
+0x7a5f 026081 force 7 ,regext_index 
+0x7a60 026082 iadd regext ,temp 
+0x7a61 026083 force 4 ,regext_index 
+0x7a62 026084 shasx regext ,3 ,pdata 
+0x7a63 026085 iadd temp ,temp 
+0x7a64 026086 force 5 ,regext_index 
+0x7a65 026087 deposit regext 
+0x7a66 026088 force 6 ,regext_index 
+0x7a67 026089 ixor regext ,pdata 
+0x7a68 026090 force 4 ,regext_index 
+0x7a69 026091 iand regext ,pdata 
+0x7a6a 026092 force 6 ,regext_index 
+0x7a6b 026093 ixor regext ,pdata 
+0x7a6c 026094 iadd temp ,temp 
+0x7a6d 026095 force 7 ,regext_index 
+0x7a6e 026096 copy temp ,regext 
+0x7a6f 026097 force 3 ,regext_index 
+0x7a70 026098 deposit regext 
+0x7a71 026099 iadd temp ,regext 
+0x7a72 026100 force 0 ,regext_index 
+0x7a73 026101 deposit regext 
+0x7a74 026102 force 1 ,regext_index 
+0x7a75 026103 iand regext ,temp 
+0x7a76 026104 ior regext ,pdata 
+0x7a77 026105 force 2 ,regext_index 
+0x7a78 026106 iand regext ,pdata 
+0x7a79 026107 ior temp ,temp 
+0x7a7a 026108 force 0 ,regext_index 
+0x7a7b 026109 shasx regext ,2 ,pdata 
+0x7a7c 026110 iadd temp ,pdata 
+0x7a7d 026111 force 7 ,regext_index 
+0x7a7e 026112 iadd regext ,regext 
+0x7a7f 026113 regexrot 
+0x7a80 026114 loop sha_loop 
+0x7a81 026115 arg memahbak ,contr 
+0x7a82 026116 force 0 ,regext_index 
+:      026117 sha_1:
+0x7a83 026118 ifetch 4 ,contr 
+0x7a84 026119 iadd regext ,regext 
+0x7a85 026120 increase 1 ,regext_index 
+0x7a86 026121 compare 8 ,regext_index ,0xff 
+0x7a87 026122 nbranch sha_1 ,true 
+0x7a88 026123 branch disable_authrom 
+:      026126 sha_result:
+0x7a89 026127 arg memresult ,contw 
+0x7a8a 026128 force 7 ,regext_index 
+:      026129 sha_regext_save:
+0x7a8b 026130 deposit regext 
+0x7a8c 026131 istore 4 ,contw 
+0x7a8d 026132 increase -1 ,regext_index 
+0x7a8e 026133 branch sha_regext_save ,positive 
+0x7a8f 026134 rtn 
+:      026136 pad_xor:
+0x7a90 026138 arg memdat ,contw 
+0x7a91 026139 increase -4 ,contr 
+0x7a92 026140 sub loopcnt ,16 ,rega 
+:      026141 pad_xor_0:
+0x7a93 026142 ifetch 4 ,contr 
+0x7a94 026143 ixor temp ,pdata 
+0x7a95 026144 istore 4 ,contw 
+0x7a96 026145 increase -8 ,contr 
+0x7a97 026146 loop pad_xor_0 
+0x7a98 026147 copy rega ,loopcnt 
+0x7a99 026148 deposit temp 
+:      026149 pad_xor_1:
+0x7a9a 026150 istore 4 ,contw 
+0x7a9b 026151 loop pad_xor_1 
+0x7a9c 026152 rtn 
+:      026154 g_noninit:
+0x7a9d 026155 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7a9e 026156 arg memdat ,contw 
+0x7a9f 026157 force 6 ,loopcnt 
+0x7aa0 026158 call memcpy_dword_swap 
+0x7aa1 026159 arg mem_sp_pubkey_local_x_end ,contr 
+0x7aa2 026160 force 6 ,loopcnt 
+0x7aa3 026161 call memcpy_dword_swap 
+0x7aa4 026162 arg mem_sp_random_remote_end ,contr 
+0x7aa5 026163 call memcpy_dword_swap4 
+0x7aa6 026164 call sha_init 
+0x7aa7 026165 call sha 
+0x7aa8 026166 arg mem_sp_random_local_end ,contr 
+0x7aa9 026167 arg memdat ,contw 
+0x7aaa 026168 branch g_common 
+:      026170 g_init:
+0x7aab 026171 arg mem_sp_pubkey_local_x_end ,contr 
+0x7aac 026172 arg memdat ,contw 
+0x7aad 026173 force 6 ,loopcnt 
+0x7aae 026174 call memcpy_dword_swap 
+0x7aaf 026175 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7ab0 026176 force 6 ,loopcnt 
+0x7ab1 026177 call memcpy_dword_swap 
+0x7ab2 026178 arg mem_sp_random_local_end ,contr 
+0x7ab3 026179 call memcpy_dword_swap4 
+0x7ab4 026180 call sha_init 
+0x7ab5 026181 call sha 
+0x7ab6 026182 arg mem_sp_random_remote_end ,contr 
+0x7ab7 026183 arg memdat ,contw 
+:      026184 g_common:
+0x7ab8 026185 call memcpy_dword_swap4 
+0x7ab9 026186 setarg 0x800000 
+0x7aba 026187 lshift8 pdata ,pdata 
+0x7abb 026188 istore 4 ,contw 
+0x7abc 026189 force 5 ,loopcnt 
+0x7abd 026190 call memset0 
+0x7abe 026191 setarg 640 
+0x7abf 026192 istore 4 ,contw 
+0x7ac0 026193 call sha 
+0x7ac1 026195 fetch 4 ,memresult 
+0x7ac2 026197 arg 1000 ,rega 
+0x7ac3 026198 idiv rega 
+0x7ac4 026199 call wait_div_end 
+0x7ac5 026200 remainder pdata 
+0x7ac6 026201 store 4 ,mem_sp_gkey 
+0x7ac7 026202 quotient pdata 
+0x7ac8 026203 arg 1000 ,rega 
+0x7ac9 026204 idiv rega 
+0x7aca 026205 call wait_div_end 
+0x7acb 026206 remainder pdata 
+0x7acc 026207 arg 1000 ,rega 
+0x7acd 026208 imul32 rega ,pdata 
+0x7ace 026209 fetcht 4 ,mem_sp_gkey 
+0x7acf 026210 iadd temp ,pdata 
+0x7ad0 026211 store 4 ,mem_sp_gkey 
+0x7ad1 026212 rtn 
+:      026214 function_f1:
+0x7ad2 026215 setarg 0x363636 
+0x7ad3 026216 lshift8 pdata ,temp 
+0x7ad4 026217 or_into 0x36 ,temp 
+0x7ad5 026218 fetch 2 ,mem_sp_prarm_stack 
+0x7ad6 026219 copy pdata ,contr 
+0x7ad7 026220 force 4 ,loopcnt 
+0x7ad8 026221 call pad_xor 
+0x7ad9 026222 call sha_init 
+0x7ada 026223 call sha 
+0x7adb 026224 fetch 2 ,mem_sp_prarm_stack + 2 
+0x7adc 026225 copy pdata ,contr 
+0x7add 026226 arg memdat ,contw 
+0x7ade 026227 force 6 ,loopcnt 
+0x7adf 026228 call memcpy_dword_swap 
+0x7ae0 026229 fetch 2 ,mem_sp_prarm_stack + 4 
+0x7ae1 026230 copy pdata ,contr 
+0x7ae2 026231 force 6 ,loopcnt 
+0x7ae3 026232 call memcpy_dword_swap 
+0x7ae4 026233 setarg 0x800000 
+0x7ae5 026234 istore 3 ,contw 
+0x7ae6 026235 force 0 ,pdata 
+0x7ae7 026236 istore 1 ,contw 
+0x7ae8 026237 force 0 ,pdata 
+0x7ae9 026238 istore 8 ,contw 
+0x7aea 026239 setarg 0x0388 
+0x7aeb 026240 istore 4 ,contw 
+0x7aec 026241 call sha 
+0x7aed 026242 call sha_result 
+0x7aee 026243 arg memresult ,contr 
+0x7aef 026244 arg memahsave ,contw 
+0x7af0 026245 call memcpy32 
+0x7af1 026247 setarg 0x5c5c5c 
+0x7af2 026248 lshift8 pdata ,temp 
+0x7af3 026249 or_into 0x5c ,temp 
+0x7af4 026250 fetch 2 ,mem_sp_prarm_stack 
+0x7af5 026251 copy pdata ,contr 
+0x7af6 026252 force 4 ,loopcnt 
+0x7af7 026253 call pad_xor 
+0x7af8 026254 call sha_init 
+0x7af9 026255 call sha 
+0x7afa 026256 arg memahsave_end ,contr 
+0x7afb 026257 arg memdat ,contw 
+0x7afc 026258 force 8 ,loopcnt 
+0x7afd 026259 call memcpy_dword_swap 
+0x7afe 026260 setarg 0x800000 
+0x7aff 026261 lshift8 pdata ,pdata 
+0x7b00 026262 istore 4 ,contw 
+0x7b01 026263 call bn_zero 
+0x7b02 026264 setarg 0x0300 
+0x7b03 026265 istore 4 ,contw 
+0x7b04 026266 call sha 
+0x7b05 026267 branch sha_result 
+:      026270 function_f2:
+0x7b06 026271 setarg 0x363636 
+0x7b07 026272 lshift8 pdata ,temp 
+0x7b08 026273 or_into 0x36 ,temp 
+0x7b09 026274 arg mem_sp_dhkey_end ,contr 
+0x7b0a 026275 force 6 ,loopcnt 
+0x7b0b 026276 call pad_xor 
+0x7b0c 026277 call sha_init 
+0x7b0d 026278 call sha 
+0x7b0e 026279 fetch 2 ,mem_sp_prarm_stack + 12 
+0x7b0f 026280 copy pdata ,contr 
+0x7b10 026281 arg memdat ,contw 
+0x7b11 026282 call memcpy_dword_swap4 
+0x7b12 026283 fetch 2 ,mem_sp_prarm_stack + 14 
+0x7b13 026284 copy pdata ,contr 
+0x7b14 026285 call memcpy_dword_swap4 
+0x7b15 026287 setarg 0x62746c 
+0x7b16 026288 lshift8 pdata ,pdata 
+0x7b17 026289 or_into 0x6b ,pdata 
+0x7b18 026290 istore 4 ,contw 
+0x7b19 026291 arg mem_addr_value_end ,contr 
+0x7b1a 026292 force 3 ,loopcnt 
+0x7b1b 026293 call memcpy_dword_swap 
+0x7b1c 026295 setarg 0x800000 
+0x7b1d 026296 lshift8 pdata ,pdata 
+0x7b1e 026297 istore 4 ,contw 
+0x7b1f 026298 force 0 ,pdata 
+0x7b20 026299 istore 8 ,contw 
+0x7b21 026300 setarg 0x0380 
+0x7b22 026301 istore 4 ,contw 
+0x7b23 026302 call sha 
+0x7b24 026304 call sha_result 
+0x7b25 026305 arg memresult ,contr 
+0x7b26 026306 arg memahsave ,contw 
+0x7b27 026307 call memcpy32 
+0x7b28 026309 setarg 0x5c5c5c 
+0x7b29 026310 lshift8 pdata ,temp 
+0x7b2a 026311 or_into 0x5c ,temp 
+0x7b2b 026312 arg mem_sp_dhkey_end ,contr 
+0x7b2c 026313 force 6 ,loopcnt 
+0x7b2d 026314 call pad_xor 
+0x7b2e 026315 call sha_init 
+0x7b2f 026316 call sha 
+0x7b30 026317 arg memahsave_end ,contr 
+0x7b31 026318 arg memdat ,contw 
+0x7b32 026319 force 8 ,loopcnt 
+0x7b33 026320 call memcpy_dword_swap 
+0x7b34 026321 setarg 0x800000 
+0x7b35 026322 lshift8 pdata ,pdata 
+0x7b36 026323 istore 4 ,contw 
+0x7b37 026324 call bn_zero 
+0x7b38 026325 setarg 0x0300 
+0x7b39 026326 istore 4 ,contw 
+0x7b3a 026327 call sha 
+0x7b3b 026328 branch sha_result 
+:      026331 function_f3a:
+0x7b3c 026332 setarg 0x363636 
+0x7b3d 026333 lshift8 pdata ,temp 
+0x7b3e 026334 or_into 0x36 ,temp 
+0x7b3f 026335 arg mem_sp_dhkey_end ,contr 
+0x7b40 026336 force 6 ,loopcnt 
+0x7b41 026337 call pad_xor 
+0x7b42 026338 call sha_init 
+0x7b43 026339 call sha 
+0x7b44 026340 arg mem_sp_random_remote_end ,contr 
+0x7b45 026341 arg memdat ,contw 
+0x7b46 026342 call memcpy_dword_swap4 
+0x7b47 026343 arg mem_sp_random_local_end ,contr 
+0x7b48 026344 call memcpy_dword_swap4 
+0x7b49 026345 branch function_f3b_common 
+:      026347 function_f3b:
+0x7b4a 026348 setarg 0x363636 
+0x7b4b 026349 lshift8 pdata ,temp 
+0x7b4c 026350 or_into 0x36 ,temp 
+0x7b4d 026351 arg mem_sp_dhkey_end ,contr 
+0x7b4e 026352 force 6 ,loopcnt 
+0x7b4f 026353 call pad_xor 
+0x7b50 026354 call sha_init 
+0x7b51 026355 call sha 
+0x7b52 026357 arg mem_sp_random_local_end ,contr 
+0x7b53 026358 arg memdat ,contw 
+0x7b54 026359 call memcpy_dword_swap4 
+0x7b55 026360 arg mem_sp_random_remote_end ,contr 
+0x7b56 026361 call memcpy_dword_swap4 
+:      026362 function_f3b_common:
+0x7b57 026363 setarg 0x0 
+0x7b58 026364 istore 8 ,contw 
+0x7b59 026365 istore 8 ,contw 
+0x7b5a 026367 copy contw ,temp 
+0x7b5b 026368 jam 0x80 ,mem_addr_padding 
+0x7b5c 026369 copy temp ,contw 
+0x7b5d 026370 arg mem_addr_iocap_end ,contr 
+0x7b5e 026371 call memcpy_dword_swap4 
+0x7b5f 026373 call sha 
+0x7b60 026375 arg memdat ,contw 
+0x7b61 026376 force 7 ,loopcnt 
+0x7b62 026377 call memset0 
+0x7b63 026378 istore 4 ,contw 
+0x7b64 026379 setarg 0x03F8 
+0x7b65 026380 istore 4 ,contw 
+0x7b66 026381 call sha 
+0x7b67 026382 call sha_result 
+0x7b68 026384 arg memresult ,contr 
+0x7b69 026385 arg memahsave ,contw 
+0x7b6a 026386 call memcpy32 
+0x7b6b 026388 setarg 0x5c5c5c 
+0x7b6c 026389 lshift8 pdata ,temp 
+0x7b6d 026390 or_into 0x5c ,temp 
+0x7b6e 026391 arg mem_sp_dhkey_end ,contr 
+0x7b6f 026392 force 6 ,loopcnt 
+0x7b70 026393 call pad_xor 
+0x7b71 026394 call sha_init 
+0x7b72 026395 call sha 
+0x7b73 026396 arg memahsave_end ,contr 
+0x7b74 026397 arg memdat ,contw 
+0x7b75 026398 force 8 ,loopcnt 
+0x7b76 026399 call memcpy_dword_swap 
+0x7b77 026400 setarg 0x800000 
+0x7b78 026401 lshift8 pdata ,pdata 
+0x7b79 026402 istore 4 ,contw 
+0x7b7a 026403 call bn_zero 
+0x7b7b 026404 setarg 0x0300 
+0x7b7c 026405 istore 4 ,contw 
+0x7b7d 026406 call sha 
+0x7b7e 026407 branch sha_result 
+:      026414 eckp_calc_init:
+0x7b7f 026415 jam 192 ,mem_ec_loopc 
+:      026416 eckp_calc_init_1:
+0x7b80 026417 fetch 1 ,mem_ec_loopc 
+0x7b81 026418 rtn blank 
+0x7b82 026419 increase -1 ,pdata 
+0x7b83 026420 store 1 ,mem_ec_loopc 
+0x7b84 026421 arg mem_k ,contr 
+0x7b85 026422 call bn_testbit 
+0x7b86 026423 branch eckp_calc_init_1 ,true 
+0x7b87 026424 arg mem_ax ,contr 
+0x7b88 026425 arg mem_cx ,contw 
+0x7b89 026426 branch ec_copy 
+:      026428 eckp_calc:
+0x7b8a 026429 call ecdbl 
+0x7b8b 026430 fetch 1 ,mem_ec_loopc 
+0x7b8c 026431 increase -1 ,pdata 
+0x7b8d 026432 store 1 ,mem_ec_loopc 
+0x7b8e 026433 arg mem_k ,contr 
+0x7b8f 026434 call bn_testbit 
+0x7b90 026435 rtn true 
+0x7b91 026436 branch ecadd 
+:      026438 eckp_cp_1:
+0x7b92 026439 jam 0 ,mem_ec_infinite 
+0x7b93 026440 arg mem_ax ,contr 
+0x7b94 026441 arg mem_cx ,contw 
+0x7b95 026442 branch ec_copy 
+:      026444 memcpy_dword_swap4:
+0x7b96 026445 force 4 ,loopcnt 
+:      026446 memcpy_dword_swap:
+0x7b97 026447 increase -4 ,contr 
+:      026448 memcpy_dword_swap_loop:
+0x7b98 026449 ifetch 4 ,contr 
+0x7b99 026450 istore 4 ,contw 
+0x7b9a 026451 increase -8 ,contr 
+0x7b9b 026452 loop memcpy_dword_swap_loop 
+0x7b9c 026453 rtn 
+:      026456 ui_init:
+0x7b9d 026457 rtn wake 
+0x7b9e 026458 call ui_button_init 
+0x7b9f 026459 call ui_timer_init 
+0x7ba0 026460 branch ui_led_init 
+:      026462 ui_dispatch:
+0x7ba1 026463 fetch 1 ,mem_device_option 
+0x7ba2 026464 rtneq dvc_op_hci 
+0x7ba3 026465 call ui_led_blink_polling 
+0x7ba4 026467 branch ui_timer_check 
+:      026469 ui_button_init:
+0x7ba5 026470 fetch 1 ,mem_ui_button_gpio 
+0x7ba6 026471 rtneq ui_button_gpio_disable 
+0x7ba7 026472 iforce temp 
+0x7ba8 026473 call gpio_config_output 
+0x7ba9 026474 fetcht 1 ,mem_ui_button_gpio 
+0x7baa 026475 call gpio_out_inactive 
+0x7bab 026476 nop 100 
+0x7bac 026477 fetcht 1 ,mem_ui_button_gpio 
+0x7bad 026478 call gpio_config_input 
+0x7bae 026479 branch ui_button_polling 
+:      026481 ui_button_disable:
+0x7baf 026482 jam ui_button_gpio_disable ,mem_ui_button_gpio 
+0x7bb0 026483 rtn 
+:      026485 ui_button_polling:
+0x7bb1 026486 set1 mark_ext_patch ,mark 
+0x7bb2 026487 bpatch patch30_5 ,mem_patch30 
+0x7bb3 026488 fetch 1 ,mem_ui_button_gpio 
+0x7bb4 026489 rtneq ui_button_gpio_disable 
+0x7bb5 026490 copy pdata ,temp 
+0x7bb6 026491 call gpio_get_bit 
+0x7bb7 026492 nbranch ui_button_up ,true 
+:      026494 ui_button_down:
+0x7bb8 026495 call ui_button_check_long_press 
+0x7bb9 026496 fetch 2 ,mem_ui_state_map 
+0x7bba 026497 set1 ui_state_btn_down 
+0x7bbb 026498 store 2 ,mem_ui_state_map 
+0x7bbc 026499 fetch 1 ,mem_ui_button_last_state 
+0x7bbd 026500 rtneq ui_button_state_down 
+0x7bbe 026501 jam ui_button_state_down ,mem_ui_button_last_state 
+0x7bbf 026503 fetch 1 ,mem_ui_button_timeout 
+0x7bc0 026504 store 1 ,mem_ui_button_timer 
+0x7bc1 026505 call lpm_button_get_wake_lock 
+0x7bc2 026506 jam bt_evt_button_down ,mem_fifo_temp 
+0x7bc3 026507 branch ui_ipc_send_event 
+:      026508 ui_button_up:
+0x7bc4 026509 fetch 2 ,mem_ui_state_map 
+0x7bc5 026510 set0 ui_state_btn_down 
+0x7bc6 026511 store 2 ,mem_ui_state_map 
+0x7bc7 026512 fetch 1 ,mem_ui_button_last_state 
+0x7bc8 026513 rtneq ui_button_state_up 
+0x7bc9 026514 jam ui_button_state_up ,mem_ui_button_last_state 
+0x7bca 026516 jam 0 ,mem_ui_button_timer 
+0x7bcb 026517 call lpm_button_clean_wake_lock 
+0x7bcc 026518 jam bt_evt_button_up ,mem_fifo_temp 
+0x7bcd 026519 branch ui_ipc_send_event 
+:      026521 ui_button_check_long_press:
+0x7bce 026522 fetch 1 ,mem_ui_button_timer 
+0x7bcf 026523 rtn blank 
+0x7bd0 026524 increase -1 ,pdata 
+0x7bd1 026525 store 1 ,mem_ui_button_timer 
+0x7bd2 026526 nrtn blank 
+0x7bd3 026528 jam bt_evt_button_long_pressed ,mem_fifo_temp 
+0x7bd4 026529 branch ui_ipc_send_event 
+:      026531 lpm_button_get_wake_lock:
+0x7bd5 026532 arg wake_lock_button ,queue 
+0x7bd6 026533 branch lpm_get_wake_lock 
+:      026535 lpm_button_clean_wake_lock:
+0x7bd7 026536 arg wake_lock_button ,queue 
+0x7bd8 026537 branch lpm_put_wake_lock 
+:      026539 ui_led_init:
+0x7bd9 026540 fetch 1 ,mem_led_gpio 
+0x7bda 026541 rtneq ui_button_gpio_disable 
+0x7bdb 026542 iforce temp 
+0x7bdc 026543 call gpio_config_output 
+0x7bdd 026544 branch ui_led_off 
+:      026546 ui_led_blink_stop:
+0x7bde 026547 fetch 2 ,mem_ui_state_map 
+0x7bdf 026548 set0 ui_state_led_blink 
+0x7be0 026549 store 2 ,mem_ui_state_map 
+0x7be1 026550 jam ui_led_stop ,mem_led_switch 
+:      026551 ui_led_off:
+0x7be2 026552 fetch 2 ,mem_ui_state_map 
+0x7be3 026553 set0 ui_state_led_on 
+0x7be4 026554 store 2 ,mem_ui_state_map 
+0x7be5 026555 fetcht 1 ,mem_led_gpio 
+0x7be6 026556 branch gpio_out_inactive 
+:      026558 ui_led_on:
+0x7be7 026559 fetch 2 ,mem_ui_state_map 
+0x7be8 026560 set1 ui_state_led_on 
+0x7be9 026561 store 2 ,mem_ui_state_map 
+0x7bea 026562 jam ui_led_stop ,mem_led_switch 
+0x7beb 026563 fetcht 1 ,mem_led_gpio 
+0x7bec 026564 branch gpio_out_active 
+:      026566 ui_led_blink_start:
+0x7bed 026567 fetch 2 ,mem_ui_state_map 
+0x7bee 026568 set1 ui_state_led_blink 
+0x7bef 026569 store 2 ,mem_ui_state_map 
+0x7bf0 026570 jam ui_led_start ,mem_led_switch 
+0x7bf1 026571 rtn 
+:      026573 ui_led_blink_polling:
+0x7bf2 026574 set1 mark_ext_patch ,mark 
+0x7bf3 026575 bpatch patch30_6 ,mem_patch30 
+0x7bf4 026576 fetch 1 ,mem_led_switch 
+0x7bf5 026577 rtneq ui_led_stop 
+0x7bf6 026578 arg ui_led_blink ,queue 
+0x7bf7 026579 call timer_check 
+0x7bf8 026580 nrtn blank 
+0x7bf9 026581 fetch 1 ,mem_led_switch 
+0x7bfa 026582 beq ui_led_dark_time ,ui_led_blink_polling_dark 
+0x7bfb 026583 call ui_led_on 
+0x7bfc 026584 jam ui_led_dark_time ,mem_led_switch 
+0x7bfd 026585 fetch 2 ,mem_led_light_time 
+0x7bfe 026586 branch ui_led_blink_timer_start 
+:      026587 ui_led_blink_polling_dark:
+0x7bff 026588 call ui_led_off 
+0x7c00 026589 jam ui_led_light_time ,mem_led_switch 
+0x7c01 026590 fetch 2 ,mem_led_dark_time 
+:      026591 ui_led_blink_timer_start:
+0x7c02 026592 arg ui_led_blink ,queue 
+0x7c03 026593 branch timer_init 
+:      026596 ui_timer_check:
+0x7c04 026597 set1 mark_ext_patch ,mark 
+0x7c05 026598 bpatch patch30_7 ,mem_patch30 
+0x7c06 026599 arg 0 ,rega 
+0x7c07 026600 fetcht 4 ,mem_ui_timer_last_btclk 
+0x7c08 026601 copy clkn_bt ,regb 
+:      026603 ui_timer_check_loop:
+0x7c09 026604 copy regb ,pdata 
+0x7c0a 026605 increase 160 ,temp 
+0x7c0b 026606 increase 160 ,temp 
+0x7c0c 026607 isub temp ,null 
+0x7c0d 026608 nbranch ui_timer_check_end ,positive 
+0x7c0e 026609 increase 1 ,rega 
+0x7c0f 026610 and rega ,0x0f ,pdata 
+0x7c10 026611 nbranch ui_timer_check_loop ,blank 
+0x7c11 026612 arg 0 ,rega 
+0x7c12 026613 call ui_timer_check_send_evt 
+:      026614 ui_timer_init:
+0x7c13 026615 copy clkn_bt ,pdata 
+0x7c14 026616 store 4 ,mem_ui_timer_last_btclk 
+0x7c15 026617 rtn 
+:      026618 ui_timer_check_end:
+0x7c16 026619 set1 mark_ext_patch ,mark 
+0x7c17 026620 bpatch patch31_0 ,mem_patch31 
+0x7c18 026621 copy rega ,pdata 
+0x7c19 026622 rtn blank 
+0x7c1a 026623 increase -160 ,temp 
+0x7c1b 026624 increase -160 ,temp 
+0x7c1c 026625 storet 4 ,mem_ui_timer_last_btclk 
+:      026626 ui_timer_check_send_evt:
+0x7c1d 026627 increase bt_evt_timer_init ,pdata 
+0x7c1e 026628 store 1 ,mem_fifo_temp 
+0x7c1f 026629 branch ui_ipc_send_event 
+:      026635 ui_ipc_get_lock:
+0x7c20 026636 jam 1 ,mem_ipc_lock_bt 
+:      026637 ui_ipc_get_lock_wait:
+0x7c21 026638 fetch 1 ,mem_ipc_lock_c51 
+0x7c22 026639 nbranch ui_ipc_get_lock_wait ,blank 
+0x7c23 026640 rtn 
+:      026642 ui_ipc_put_lock:
+0x7c24 026643 jam 0 ,mem_ipc_lock_bt 
+0x7c25 026644 rtn 
+:      026646 ui_ipc_fifo_out:
+0x7c26 026647 branch fifo_out 
+:      026651 ui_ipc_send_event:
+0x7c27 026652 set1 mark_ext_patch ,mark 
+0x7c28 026653 bpatch patch31_1 ,mem_patch31 
+0x7c29 026654 fetch 1 ,mem_device_option 
+0x7c2a 026655 rtneq dvc_op_hci 
+0x7c2b 026656 call ui_ipc_get_lock 
+0x7c2c 026657 copy rega ,pdata 
+0x7c2d 026658 store 4 ,mem_ipc_rega_temp 
+0x7c2e 026659 arg mem_ipc_fifo_bt2c51 ,rega 
+0x7c2f 026660 call fifo_in 
+0x7c30 026661 fetch 4 ,mem_ipc_rega_temp 
+0x7c31 026662 copy pdata ,rega 
+0x7c32 026663 branch ui_ipc_put_lock 
+:      026665 ui_ipc_send_cmd:
+0x7c33 026666 set1 mark_ext_patch ,mark 
+0x7c34 026667 bpatch patch31_2 ,mem_patch31 
+0x7c35 026668 fetch 1 ,mem_device_option 
+0x7c36 026669 rtneq dvc_op_hci 
+0x7c37 026670 call ui_ipc_get_lock 
+0x7c38 026671 copy rega ,pdata 
+0x7c39 026672 store 4 ,mem_ipc_rega_temp 
+0x7c3a 026673 arg mem_ipc_fifo_c512bt ,rega 
+0x7c3b 026674 call fifo_in 
+0x7c3c 026675 fetch 4 ,mem_ipc_rega_temp 
+0x7c3d 026676 copy pdata ,rega 
+0x7c3e 026677 branch ui_ipc_put_lock 
+:      026679 ui_ipc_clean_all_fifo:
+0x7c3f 026680 set1 mark_ext_patch ,mark 
+0x7c40 026681 bpatch patch31_3 ,mem_patch31 
+0x7c41 026682 setarg 0 
+0x7c42 026683 store util_fifo_len ,mem_ipc_fifo_c512bt 
+0x7c43 026684 store util_fifo_len ,mem_ipc_fifo_bt2c51 
+0x7c44 026685 rtn 
+:      026687 check_51cmd:
+0x7c45 026688 set1 mark_ext_patch ,mark 
+0x7c46 026689 bpatch patch31_4 ,mem_patch31 
+0x7c47 026690 fetch 1 ,mem_hci_cmd 
+0x7c48 026691 nrtn blank 
+0x7c49 026692 arg mem_ipc_fifo_c512bt ,rega 
+0x7c4a 026693 call fifo_is_empty 
+0x7c4b 026694 rtn blank 
+0x7c4c 026695 jam ipc_continue_process ,mem_ipc_skip_continue_proc 
+0x7c4d 026696 call check_51cmd_once 
+0x7c4e 026697 fetch 1 ,mem_ipc_skip_continue_proc 
+0x7c4f 026698 branch check_51cmd ,blank 
+0x7c50 026699 rtn 
+:      026701 check_51cmd_once:
+0x7c51 026702 set1 mark_ext_patch ,mark 
+0x7c52 026703 bpatch patch31_5 ,mem_patch31 
+0x7c53 026704 call ui_ipc_get_lock 
+0x7c54 026705 arg mem_ipc_fifo_c512bt ,rega 
+0x7c55 026706 call fifo_out 
+0x7c56 026707 copy pdata ,temp 
+0x7c57 026708 call ui_ipc_put_lock 
+0x7c58 026709 copy temp ,pdata 
+0x7c59 026710 rtn blank 
+0x7c5a 026711 beq bt_cmd_start_discovery ,check_51cmd_start_discovery 
+0x7c5b 026712 beq bt_cmd_stop_discovery ,check_51cmd_stop_discovery 
+0x7c5c 026713 beq bt_cmd_reconnect ,check_51cmd_reconnect 
+0x7c5d 026714 beq bt_cmd_enter_sniff_subrating ,check_51cmd_enter_sniff_subrating 
+0x7c5e 026715 beq bt_cmd_exit_sniff_subrating ,check_51cmd_exit_sniff_subrating 
+0x7c5f 026716 beq bt_cmd_sniff_test ,check_51cmd_sniff_test 
+0x7c60 026717 beq bt_cmd_start_inquiry ,check_51cmd_inq 
+0x7c61 026718 beq bt_cmd_stop_inquiry ,check_51cmd_stop_inq 
+0x7c62 026719 beq bt_cmd_start_adv ,check_51cmd_adv 
+0x7c63 026720 beq bt_cmd_stop_adv ,check_51cmd_stop_adv 
+0x7c64 026721 beq bt_cmd_start_direct_adv ,check_51cmd_direct_adv 
+0x7c65 026722 beq bt_cmd_stop_direct_adv ,check_51cmd_stop_direct_adv 
+0x7c66 026723 beq bt_cmd_le_update_conn ,check_51cmd_le_update_conn 
+0x7c67 026724 beq bt_cmd_led_blink ,ui_led_blink_start 
+0x7c68 026725 beq bt_cmd_led_on ,ui_led_on 
+0x7c69 026726 beq bt_cmd_led_off ,ui_led_blink_stop 
+0x7c6a 026727 beq bt_cmd_le_start_conn ,check_51cmd_le_start_con 
+0x7c6b 026728 beq bt_cmd_le_start_scan ,check_51cmd_start_scan 
+0x7c6c 026729 beq bt_cmd_le_stop_scan ,check_51cmd_stop_scan 
+0x7c6d 026730 beq bt_cmd_enter_hibernate ,check_51cmd_hibernate 
+0x7c6e 026731 beq bt_cmd_le_smp_security_request ,check_51cmd_le_smp_sec_req 
+0x7c6f 026732 beq bt_cmd_le_start_write ,check_51cmd_le_start_write 
+0x7c70 026733 beq bt_cmd_bb_reconn_cancel ,check_51cmd_bb_reconn_cancel 
+0x7c71 026735 store 1 ,mem_fifo_temp 
+0x7c72 026736 set1 mark_ext_patch ,mark 
+0x7c73 026737 bpatch patch31_6 ,mem_patch31 
+0x7c74 026738 fetch 1 ,mem_lmo_opcode2 
+0x7c75 026739 branch check_51cmd_once_continue ,blank 
+0x7c76 026740 call lmo_fifo_process 
+0x7c77 026741 fetch 1 ,mem_lmo_opcode2 
+0x7c78 026742 nbranch check_51cmd_restore ,blank 
+:      026743 check_51cmd_once_continue:
+0x7c79 026744 fetch 1 ,mem_fifo_temp 
+0x7c7a 026745 bmark0 mark_context ,check_51cmd_check_idle 
+:      026746 check_51cmd_once_continue0:
+0x7c7b 026747 beq bt_cmd_enter_sniff ,cmd_in_sniff 
+0x7c7c 026748 beq bt_cmd_exit_sniff ,cmd_exit_sniff 
+0x7c7d 026749 beq bt_cmd_set_pin_code ,check_51cmd_pincode 
+0x7c7e 026750 beq bt_cmd_disconnect ,check_51cmd_disconnect 
+0x7c7f 026751 beq bt_cmd_le_disconnect ,check_51cmd_le_disconnect 
+0x7c80 026752 beq bt_cmd_role_switch ,check_51cmd_role_switch 
+0x7c81 026753 beq bt_cmd_store_reconn_info_le ,eeprom_store_le_reconn_info 
+0x7c82 026754 beq bt_cmd_store_reconn_info_bt ,eeprom_store_bd_reconn_info 
+0x7c83 026755 beq bt_cmd_le_update_conn ,bt_cmd_le_update_conn_1 
+0x7c84 026756 rtn 
+:      026759 bt_cmd_le_update_conn_1:
+0x7c85 026760 jam xt_ll_connection_param_req ,mem_fifo_temp 
+0x7c86 026761 branch le_xtype_fifo_in 
+:      026762 check_51cmd_check_idle:
+0x7c87 026763 store 1 ,mem_fifo_temp 
+0x7c88 026764 call context_check_idle 
+0x7c89 026765 branch check_51cmd_restore ,zero 
+0x7c8a 026766 call context_search_plap 
+0x7c8b 026767 nrtn zero 
+:      026768 check_51cmd_restore:
+0x7c8c 026769 jam ipc_skip_continue_process ,mem_ipc_skip_continue_proc 
+0x7c8d 026770 branch ui_ipc_send_cmd 
+:      026773 check_51cmd_role_switch:
+0x7c8e 026774 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x7c8f 026775 set1 mark_switch_initiated ,mark 
+0x7c90 026776 nrtn master 
+0x7c91 026777 jam switch_flag_init ,mem_switch_flag 
+0x7c92 026778 jam lmp_switch_req ,mem_lmo_opcode2 
+0x7c93 026779 fetch 1 ,mem_connection_options 
+0x7c94 026780 set0 connection_switch ,pdata 
+0x7c95 026781 store 1 ,mem_connection_options 
+0x7c96 026782 rtn 
+:      026784 check_51cmd_start_discovery:
+0x7c97 026785 fetch 2 ,mem_ui_state_map 
+0x7c98 026786 set1 ui_state_bt_discovery 
+0x7c99 026787 store 2 ,mem_ui_state_map 
+0x7c9a 026788 jam 3 ,mem_scan_mode 
+0x7c9b 026789 rtn 
+:      026791 check_51cmd_stop_discovery:
+0x7c9c 026792 jam 0 ,mem_hid_handshake_timer_count 
+0x7c9d 026793 jam 0 ,mem_scan_mode 
+0x7c9e 026794 fetch 2 ,mem_ui_state_map 
+0x7c9f 026795 set0 ui_state_bt_discovery 
+0x7ca0 026796 store 2 ,mem_ui_state_map 
+0x7ca1 026797 rtn 
+:      026799 check_51cmd_reconnect:
+0x7ca2 026800 jam hci_cmd_create_conn ,mem_hci_cmd 
+0x7ca3 026801 rtn 
+:      026803 check_51cmd_disconnect:
+0x7ca4 026804 jam lmp_detach ,mem_lmo_opcode2 
+0x7ca5 026805 jam other_end_terminated ,mem_disconn_reason_send 
+0x7ca6 026806 rtn 
+:      026809 check_51cmd_enter_sniff_subrating:
+0x7ca7 026810 rtn 
+:      026812 check_51cmd_exit_sniff_subrating:
+0x7ca8 026813 rtn 
+:      026815 check_51cmd_sniff_test:
+0x7ca9 026816 rtn 
+:      026818 check_51cmd_pincode:
+0x7caa 026819 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x7cab 026820 branch cmd_pair 
+:      026822 check_51cmd_inq:
+0x7cac 026823 rtn 
+:      026824 check_51cmd_stop_inq:
+0x7cad 026825 rtn 
+:      026826 check_51cmd_adv:
+0x7cae 026827 jam on ,mem_le_adv_enable 
+0x7caf 026828 jam adv_ind ,mem_le_adv_type 
+0x7cb0 026829 rtn 
+:      026830 check_51cmd_stop_adv:
+0x7cb1 026831 jam off ,mem_le_adv_enable 
+0x7cb2 026832 rtn 
+:      026833 check_51cmd_direct_adv:
+0x7cb3 026834 jam on ,mem_le_adv_enable 
+0x7cb4 026835 jam adv_direct_ind ,mem_le_adv_type 
+0x7cb5 026836 rtn 
+:      026837 check_51cmd_stop_direct_adv:
+0x7cb6 026838 jam off ,mem_le_adv_enable 
+0x7cb7 026839 rtn 
+:      026840 check_51cmd_le_disconnect:
+0x7cb8 026841 setarg 1 
+0x7cb9 026842 store 2 ,mem_le_superto 
+0x7cba 026843 rtn 
+:      026844 check_51cmd_le_update_conn:
+0x7cbb 026845 rtn 
+:      026846 check_51cmd_le_start_con:
+0x7cbc 026847 jam on ,mem_le_scan_enable 
+0x7cbd 026848 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x7cbe 026849 fetch 6 ,mem_app_peer_addr 
+0x7cbf 026850 store 6 ,mem_le_conn_peer_addr 
+0x7cc0 026851 rtn 
+:      026852 check_51cmd_start_scan:
+0x7cc1 026853 jam on ,mem_le_scan_enable 
+0x7cc2 026854 rtn 
+:      026855 check_51cmd_stop_scan:
+0x7cc3 026856 jam off ,mem_le_scan_enable 
+0x7cc4 026857 jam 0 ,mem_hci_cmd 
+0x7cc5 026858 rtn 
+:      026859 check_51cmd_le_smp_sec_req:
+0x7cc6 026860 jam xt_smp_security_request ,mem_fifo_temp 
+0x7cc7 026861 branch le_xtype_fifo_in 
+:      026862 check_51cmd_hibernate:
+0x7cc8 026863 set1 mark_ext_patch ,mark 
+0x7cc9 026864 bpatch patch31_7 ,mem_patch31 
+0x7cca 026865 fetch 2 ,mem_cb_before_hibernate 
+0x7ccb 026866 call callback_func 
+0x7ccc 026867 fetch 1 ,mem_ui_button_gpio 
+0x7ccd 026868 beq ui_button_gpio_disable ,check_51cmd_hibernate_btn_disabled 
+0x7cce 026869 copy pdata ,temp 
+0x7ccf 026870 call gpio_config_input 
+:      026871 check_51cmd_hibernate_btn_disabled:
+0x7cd0 026872 call ui_led_off 
+0x7cd1 026873 call ui_ipc_clean_all_fifo 
+0x7cd2 026874 branch lpm_hibernate 
+:      026876 check_51cmd_le_start_write:
+0x7cd3 026877 jam 1 ,mem_le_switch_send_data 
+0x7cd4 026878 rtn 
+:      026880 check_51cmd_bb_reconn_cancel:
+0x7cd5 026881 force page_length_timer ,queue 
+0x7cd6 026882 branch timer_stop 
+:      026884 ui_check_paring_button:
+0x7cd7 026885 fetch 1 ,mem_ui_state_map 
+0x7cd8 026886 rtnbit0 ui_state_btn_down 
+0x7cd9 026887 rtnbit0 ui_state_bt_reconnect 
+0x7cda 026888 branch check_51cmd_bb_reconn_cancel 
+:      026892 usb_isr:
+0x7cdb 026893 set1 mark_ext_patch ,mark 
+0x7cdc 026894 bpatch patch3a_5 ,mem_patch3a 
+0x7cdd 026895 call usb_tx_test 
+0x7cde 026896 hfetch 1 ,core_usb_status 
+0x7cdf 026897 store 1 ,mem_usb_status 
+0x7ce0 026898 hfetch 1 ,core_usb_fifo_empty 
+0x7ce1 026899 store 1 ,mem_usb_fifo_empty 
+0x7ce2 026900 hjam 0xe0 ,core_usb_status 
+0x7ce3 026901 fetch 1 ,mem_usb_fifo_empty 
+0x7ce4 026902 compare 0x1 ,pdata ,0x1 
+0x7ce5 026903 call usb0_fifo_empty ,true 
+0x7ce6 026904 set1 mark_ext_patch ,mark 
+0x7ce7 026905 bpatch patch3a_6 ,mem_patch3a 
+0x7ce8 026906 fetch 1 ,mem_usb_status 
+0x7ce9 026907 compare 0x1 ,pdata ,0x1 
+0x7cea 026908 call usb_status1 ,true 
+0x7ceb 026909 fetch 1 ,mem_usb_state 
+0x7cec 026910 bne usb_connected ,usb_tx 
+0x7ced 026911 fetch 2 ,mem_usb_idle_cnt 
+0x7cee 026912 increase 1 ,pdata 
+0x7cef 026913 store 2 ,mem_usb_idle_cnt 
+0x7cf0 026914 fetcht 2 ,mem_usb_idle_timeout 
+0x7cf1 026915 isub temp ,null 
+0x7cf2 026916 branch usb_init ,positive 
+0x7cf3 026917 fetch 1 ,mem_usb_status 
+0x7cf4 026918 bbit0 usb_status_nak ,usb_tx 
+0x7cf5 026919 setarg 0 
+0x7cf6 026920 store 2 ,mem_usb_idle_cnt 
+0x7cf7 026921 branch usb_tx 
+:      026924 usb_status1:
+0x7cf8 026925 set1 mark_ext_patch ,mark 
+0x7cf9 026926 bpatch patch3a_7 ,mem_patch3a 
+0x7cfa 026927 hjam 0x11 ,core_usb_status 
+0x7cfb 026928 hfetch 1 ,core_usb_ep_len 
+0x7cfc 026929 store 1 ,mem_usb_read_len 
+0x7cfd 026930 copy pdata ,loopcnt 
+0x7cfe 026931 branch usb_rx_no_data ,blank 
+0x7cff 026932 arg mem_usb_setup ,contw 
+0x7d00 026933 call usb_rx_read 
+0x7d01 026934 fetch 1 ,mem_usb_read_len 
+0x7d02 026935 sub pdata ,7 ,null 
+0x7d03 026936 rtn positive 
+:      026937 usb_class_type:
+0x7d04 026938 set1 mark_ext_patch ,mark 
+0x7d05 026939 bpatch patch3b_0 ,mem_patch3b 
+0x7d06 026940 fetch 1 ,mem_usb_setup_bmrequesttype 
+0x7d07 026941 beq hci_class_request_type ,usb_hci_class_req_type 
+0x7d08 026942 beq hid_class_request_type ,usb_hid_class_req_type 
+0x7d09 026943 beq zero_class_request_type ,usb_zero_class_req_type 
+0x7d0a 026944 fetch 1 ,mem_usb_setup_brequest 
+0x7d0b 026945 beq set_address ,usb0_request_set_address 
+0x7d0c 026946 beq get_descriptor ,usb0_request_get_descriptor 
+0x7d0d 026947 beq set_configuration ,usb0_request_set_configuration 
+0x7d0e 026948 beq set_interface ,usb0_request_set_interface 
+0x7d0f 026949 branch usb0_force_stall 
+:      026951 usb_zero_class_req_type:
+0x7d10 026952 fetch 1 ,mem_usb_setup_brequest 
+0x7d11 026953 beq clear_feature ,usb0_request_clear_feature 
+0x7d12 026954 beq set_feature ,usb0_request_set_feature 
+0x7d13 026955 beq set_configuration ,usb0_reply_zerolen 
+0x7d14 026956 beq set_address ,usb0_request_set_address 
+0x7d15 026957 branch usb0_force_stall 
+:      026958 usb_hci_class_req_type:
+0x7d16 026959 call usb0_reply_zerolen 
+0x7d17 026960 rtn 
+:      026962 usb_rx_no_data:
+0x7d18 026963 fetch 1 ,mem_usb_status 
+0x7d19 026964 bbit1 usb_status_setup ,usb_class_type 
+0x7d1a 026965 rtn 
+:      026966 usb_set_protocol_req:
+0x7d1b 026967 fetch 1 ,mem_usb_set_protocol_count 
+0x7d1c 026968 increase 1 ,pdata 
+0x7d1d 026969 store 1 ,mem_usb_set_protocol_count 
+0x7d1e 026970 compare 2 ,pdata ,0xff 
+0x7d1f 026971 nbranch usb0_reply_zerolen ,true 
+0x7d20 026972 jam 1 ,mem_usb_desc 
+0x7d21 026973 branch usb0_reply_zerolen 
+:      026974 usb_hid_class_req_type:
+0x7d22 026975 fetch 1 ,mem_usb_setup_brequest 
+0x7d23 026976 beq set_idle ,usb_set_idle 
+0x7d24 026977 beq set_report ,usb_set_report 
+0x7d25 026978 beq set_protocol ,usb_set_protocol_req 
+0x7d26 026979 branch usb0_force_stall 
+:      026980 usb_set_idle:
+0x7d27 026981 fetch 1 ,mem_usb_state 
+0x7d28 026982 beq usb_setidle_1 ,usb_set_idle_connected 
+0x7d29 026983 bne usb_resume ,usb0_reply_zerolen 
+0x7d2a 026984 jam usb_setidle_1 ,mem_usb_state 
+0x7d2b 026985 branch usb0_reply_zerolen 
+:      026986 usb_set_idle_connected:
+0x7d2c 026987 jam usb_connected ,mem_usb_state 
+0x7d2d 026988 branch usb0_reply_zerolen 
+:      026990 usb_set_report:
+0x7d2e 026991 jam 1 ,mem_usb_desc 
+0x7d2f 026992 arg mem_usb_desc ,rega 
+0x7d30 026993 arg 1 ,regb 
+0x7d31 026994 branch usb0_respond 
+:      026995 usb0_force_stall:
+0x7d32 026996 hjam 1 ,core_usb_stall 
+0x7d33 026997 rtn 
+:      026998 usb0_reply_zerolen:
+0x7d34 026999 hjam 0x40 ,core_usb_clear 
+0x7d35 027000 rtn 
+:      027002 usb_rx_read:
+0x7d36 027003 hfetch 1 ,core_usb_ep 
+0x7d37 027004 istore 1 ,contw 
+0x7d38 027005 loop usb_rx_read 
+0x7d39 027006 rtn 
+:      027008 usb0_fifo_empty:
+0x7d3a 027009 hjam 0x1 ,core_usb_fifo_empty 
+0x7d3b 027010 call usb0_tx 
+0x7d3c 027011 rtn 
+:      027013 usb0_request_get_descriptor:
+0x7d3d 027014 set1 mark_ext_patch ,mark 
+0x7d3e 027015 bpatch patch3b_1 ,mem_patch3b 
+0x7d3f 027016 set0 mark_isstr ,mark 
+0x7d40 027017 fetch 1 ,mem_usb_setup_bvalueh 
+0x7d41 027018 beq dsc_device ,dsc_device_info 
+0x7d42 027019 beq dsc_config ,dsc_config_info 
+0x7d43 027020 beq dsc_string ,dsc_string_info 
+0x7d44 027021 beq dsc_hid ,dsc_hid_info 
+0x7d45 027022 beq dsc_hid_report ,dsc_hid_report_info 
+0x7d46 027023 rtn 
+:      027025 dsc_device_info:
+0x7d47 027026 arg mem_devicedesc ,rega 
+0x7d48 027027 branch usb0_respond_length 
+:      027028 dsc_config_info:
+0x7d49 027029 arg mem_confdesc ,rega 
+0x7d4a 027030 branch usb0_respond_length 
+:      027031 dsc_string_info:
+0x7d4b 027032 fetch 1 ,mem_usb_setup_bvalue 
+0x7d4c 027033 and_into 3 ,pdata 
+0x7d4d 027034 arg mem_string0 ,rega 
+0x7d4e 027035 beq 0 ,usb0_respond_length 
+0x7d4f 027036 set1 mark_isstr ,mark 
+0x7d50 027037 arg mem_string1 ,rega 
+0x7d51 027038 beq 1 ,usb0_respond_length 
+0x7d52 027039 arg mem_string2 ,rega 
+0x7d53 027040 beq 2 ,usb0_respond_length 
+0x7d54 027041 arg mem_string3 ,rega 
+0x7d55 027042 beq 3 ,usb0_respond_length 
+0x7d56 027043 branch assert 
+:      027044 dsc_hid_info:
+0x7d57 027045 arg mem_confdesc + 18 ,rega 
+0x7d58 027046 fetch 1 ,mem_confdesc + 18 
+0x7d59 027047 copy pdata ,regb 
+0x7d5a 027048 branch usb0_respond 
+:      027049 dsc_hid_report_info:
+0x7d5b 027050 fetch 2 ,mem_usb_setup_windex 
+0x7d5c 027051 beq 1 ,dsc_hid_report_info0 
+0x7d5d 027052 arg mem_hidreportdesc_kb ,rega 
+0x7d5e 027053 branch usb0_respond_length 
+:      027054 dsc_hid_report_info0:
+0x7d5f 027055 jam usb_got_report_req ,mem_usb_state 
+0x7d60 027056 arg mem_hidreportdesc_m ,rega 
+0x7d61 027057 branch usb0_respond_length 
+:      027059 usb0_respond_length:
+0x7d62 027060 ifetch 1 ,rega 
+0x7d63 027061 iforce regb 
+0x7d64 027062 increase 1 ,rega 
+:      027065 usb0_respond:
+0x7d65 027066 set1 mark_ext_patch ,mark 
+0x7d66 027067 bpatch patch3b_2 ,mem_patch3b 
+0x7d67 027068 bmark0 mark_isstr ,usb0_respond0 
+0x7d68 027069 add regb ,1 ,pdata 
+0x7d69 027070 lshift pdata ,pdata 
+0x7d6a 027071 hstore 1 ,core_usb_dfifo0 
+0x7d6b 027072 hjam 3 ,core_usb_dfifo0 
+0x7d6c 027073 fetch 1 ,mem_usb_setup_blength 
+0x7d6d 027074 increase -2 ,pdata 
+0x7d6e 027075 rshift pdata ,pdata 
+0x7d6f 027076 store 1 ,mem_usb_setup_blength 
+0x7d70 027077 beq 0 ,usb_no_respond_data 
+:      027078 usb0_respond0:
+0x7d71 027079 fetch 1 ,mem_usb_setup_blength 
+0x7d72 027080 isub regb ,null 
+0x7d73 027081 branch usb0_respond1 ,positive 
+0x7d74 027082 copy pdata ,regb 
+:      027083 usb0_respond1:
+0x7d75 027084 copy rega ,pdata 
+0x7d76 027085 store 2 ,mem_bufptr 
+0x7d77 027086 copy regb ,pdata 
+0x7d78 027087 store 1 ,mem_remain 
+0x7d79 027088 branch usb0_tx 
+:      027090 usb_no_respond_data:
+0x7d7a 027091 arg 0 ,queue 
+0x7d7b 027092 branch usb_trig 
+:      027096 usb0_tx:
+0x7d7c 027097 set1 mark_ext_patch ,mark 
+0x7d7d 027098 bpatch patch3b_3 ,mem_patch3b 
+0x7d7e 027099 fetch 1 ,mem_remain 
+0x7d7f 027100 rtn blank 
+0x7d80 027101 copy pdata ,loopcnt 
+0x7d81 027102 sub pdata ,ep0_packet_size ,null 
+0x7d82 027103 branch usb0_tx_info ,positive 
+0x7d83 027104 arg ep0_packet_size ,loopcnt 
+:      027105 usb0_tx_info:
+0x7d84 027106 fetch 1 ,mem_remain 
+0x7d85 027107 isub loopcnt ,pdata 
+0x7d86 027108 store 1 ,mem_remain 
+0x7d87 027109 fetch 2 ,mem_bufptr 
+0x7d88 027110 copy pdata ,contr 
+:      027111 usb0_tx0:
+0x7d89 027112 ifetch 1 ,contr 
+0x7d8a 027113 hstore 1 ,core_usb_dfifo0 
+0x7d8b 027114 bmark0 mark_isstr ,usb0_tx1 
+0x7d8c 027115 hjam 0 ,core_usb_dfifo0 
+:      027116 usb0_tx1:
+0x7d8d 027117 loop usb0_tx0 
+0x7d8e 027118 copy contr ,pdata 
+0x7d8f 027119 store 2 ,mem_bufptr 
+0x7d90 027120 arg 0 ,queue 
+0x7d91 027121 call usb_trig 
+0x7d92 027122 fetch 1 ,mem_remain 
+0x7d93 027123 nrtn blank 
+0x7d94 027124 fetch 1 ,mem_usb_state 
+0x7d95 027125 rtnne usb_got_report_req 
+0x7d96 027126 jam usb_connected ,mem_usb_state 
+0x7d97 027127 rtn 
+:      027130 usb0_request_set_configuration:
+0x7d98 027131 fetch 1 ,mem_usb_setup_bvalue 
+0x7d99 027132 sub pdata ,1 ,null 
+0x7d9a 027133 nbranch usb0_force_stall ,positive 
+:      027134 usb0_request_set_address:
+0x7d9b 027135 fetch 1 ,mem_usb_setup_bmrequesttype 
+0x7d9c 027136 bne in_device ,usb0_force_stall 
+0x7d9d 027137 fetch 2 ,mem_usb_setup_windex 
+0x7d9e 027138 bne 0 ,usb0_force_stall 
+0x7d9f 027139 fetch 1 ,mem_usb_setup_blength 
+0x7da0 027140 bne 0 ,usb0_force_stall 
+0x7da1 027141 branch usb0_reply_zerolen 
+:      027143 usb0_request_set_interface:
+0x7da2 027144 fetch 1 ,mem_usb_setup_bmrequesttype 
+0x7da3 027145 bne in_interface ,usb0_force_stall 
+0x7da4 027146 fetch 1 ,mem_usb_setup_bvalue 
+0x7da5 027147 bne 0 ,usb0_force_stall 
+0x7da6 027148 fetch 1 ,mem_usb_setup_bvalueh 
+0x7da7 027149 bne 0 ,usb0_force_stall 
+0x7da8 027150 fetch 1 ,mem_usb_setup_blength 
+0x7da9 027151 bne 0 ,usb0_force_stall 
+0x7daa 027152 branch usb0_reply_zerolen 
+:      027154 usb0_request_set_feature:
+0x7dab 027155 fetch 1 ,mem_usb_setup_bvalue 
+0x7dac 027156 bne 1 ,usb0_force_stall 
+0x7dad 027157 jam usb_sleep ,mem_usb_state 
+0x7dae 027158 branch usb0_reply_zerolen 
+:      027160 usb0_request_clear_feature:
+0x7daf 027161 fetch 1 ,mem_usb_setup_bvalue 
+0x7db0 027162 bne 1 ,usb0_force_stall 
+0x7db1 027163 branch usb0_reply_zerolen 
+:      027165 usb_init:
+0x7db2 027166 set1 mark_ext_patch ,mark 
+0x7db3 027167 bpatch patch3b_4 ,mem_patch3b 
+0x7db4 027168 hjam 0x00 ,core_usb_config 
+0x7db5 027169 nop 10000 
+0x7db6 027170 hjam 0xc0 ,core_usb_trig 
+0x7db7 027171 hfetch 2 ,core_clkoff 
+0x7db8 027172 set0 clock_off_usb ,pdata 
+0x7db9 027173 hstore 2 ,core_clkoff 
+0x7dba 027174 hjam 0x3c ,core_usb_config 
+0x7dbb 027175 hjam 0xff ,core_usb_status 
+0x7dbc 027176 hjam 0xff ,core_usb_fifo_empty 
+0x7dbd 027177 jam 0 ,mem_mcmd 
+0x7dbe 027178 jam 0 ,mem_usb_state 
+0x7dbf 027179 setarg 0 
+0x7dc0 027180 store 2 ,mem_usb_idle_cnt 
+0x7dc1 027181 rtn 
+:      027184 usb_tx:
+0x7dc2 027185 set1 mark_ext_patch ,mark 
+0x7dc3 027186 bpatch patch3b_5 ,mem_patch3b 
+0x7dc4 027187 fetch 1 ,mem_mcmd 
+0x7dc5 027188 rtn blank 
+0x7dc6 027189 fetch 1 ,mem_usb_state 
+0x7dc7 027190 beq usb_sleep ,usb_wakeup 
+0x7dc8 027191 rtnne usb_connected 
+0x7dc9 027192 fetch 1 ,mem_mcmd 
+0x7dca 027193 jam 0 ,mem_mcmd 
+0x7dcb 027194 arg 6 ,loopcnt 
+0x7dcc 027195 arg mem_mouse_data ,contr 
+0x7dcd 027196 beq send_kb_data_cmd ,usb_tx_ep1 
+0x7dce 027197 beq send_mouse_data_cmd ,usb_tx_ep2 
+0x7dcf 027198 branch assert 
+:      027200 usb_tx_ep1:
+0x7dd0 027201 arg core_usb_dfifo1 ,rega 
+0x7dd1 027202 arg 1 ,queue 
+:      027203 usb_tx_loop:
+0x7dd2 027204 ifetch 1 ,contr 
+0x7dd3 027205 istore 1 ,rega 
+0x7dd4 027206 loop usb_tx_loop 
+:      027207 usb_trig:
+0x7dd5 027208 set1 mark_ext_patch ,mark 
+0x7dd6 027209 bpatch patch3b_6 ,mem_patch3b 
+0x7dd7 027210 disable swfine 
+0x7dd8 027211 fetch 2 ,mem_usb_trig_timeout 
+0x7dd9 027212 iforce stop_watch 
+0x7dda 027213 hjam 0x40 ,core_usb_status 
+:      027214 usb_trig_waitnak_loop:
+0x7ddb 027215 hfetch 1 ,core_usb_status 
+0x7ddc 027216 branch usb_init ,timeout 
+0x7ddd 027217 bbit0 usb_status_nak ,usb_trig_waitnak_loop 
+0x7dde 027218 fetch 2 ,mem_usb_trig_timeout 
+0x7ddf 027219 iforce stop_watch 
+0x7de0 027220 arg 0 ,temp 
+0x7de1 027221 qset1 temp 
+0x7de2 027222 hstoret 1 ,core_usb_fifo_empty 
+:      027223 usb_trig_loop:
+0x7de3 027224 branch usb_init ,timeout 
+0x7de4 027225 hstoret 1 ,core_usb_trig 
+0x7de5 027226 hfetch 1 ,core_usb_fifo_empty 
+0x7de6 027227 qisolate0 pdata 
+0x7de7 027228 branch usb_trig_loop ,true 
+0x7de8 027229 rtn 
+:      027232 usb_tx_ep2:
+0x7de9 027233 arg 2 ,queue 
+0x7dea 027234 arg core_usb_dfifo2 ,rega 
+0x7deb 027235 branch usb_tx_loop 
+:      027238 usb_wakeup:
+0x7dec 027239 set1 mark_ext_patch ,mark 
+0x7ded 027240 bpatch patch3b_7 ,mem_patch3b 
+0x7dee 027241 hjam 0xfc ,core_usb_config 
+0x7def 027242 nop 10000 
+0x7df0 027243 hjam 0x3c ,core_usb_config 
+0x7df1 027244 jam usb_resume ,mem_usb_state 
+0x7df2 027245 rtn 
+:      027247 usb_tx_test:
+0x7df3 027248 fetch 1 ,mem_mcmd 
+0x7df4 027249 nrtn blank 
+0x7df5 027250 fetch 2 ,mem_usb_cnt 
+0x7df6 027251 rtn blank 
+0x7df7 027252 increase -1 ,pdata 
+0x7df8 027253 store 2 ,mem_usb_cnt 
+0x7df9 027254 jam send_mouse_data_cmd ,mem_mcmd 
+0x7dfa 027255 rtn 
+:      027258 right_shift_n:
+0x7dfb 027259 sub loopcnt ,0 ,null 
+0x7dfc 027260 rtn zero 
+:      027261 right_shift_n_loop:
+0x7dfd 027262 rshift pdata ,pdata 
+0x7dfe 027263 loop right_shift_n_loop 
+0x7dff 027264 rtn 
+:      027266 push_stack:
+0x7e00 027267 deposit contw 
+0x7e01 027268 store 2 ,mem_contw 
+0x7e02 027269 storet 8 ,mem_temp 
+0x7e03 027270 deposit timeup 
+0x7e04 027271 store 4 ,mem_timeup 
+0x7e05 027272 deposit rega 
+0x7e06 027273 store 4 ,mem_rega 
+0x7e07 027274 deposit regb 
+0x7e08 027275 store 4 ,mem_regb 
+0x7e09 027276 deposit regc 
+0x7e0a 027277 store 3 ,mem_regc 
+0x7e0b 027278 deposit contr 
+0x7e0c 027279 store 2 ,mem_contr 
+0x7e0d 027280 rtn 
+:      027281 pop_stack:
+0x7e0e 027282 fetcht 8 ,mem_temp 
+0x7e0f 027283 fetch 4 ,mem_timeup 
+0x7e10 027284 iforce timeup 
+0x7e11 027285 fetch 4 ,mem_rega 
+0x7e12 027286 iforce rega 
+0x7e13 027287 fetch 4 ,mem_regb 
+0x7e14 027288 iforce regb 
+0x7e15 027289 fetch 3 ,mem_regc 
+0x7e16 027290 iforce regc 
+0x7e17 027291 fetch 2 ,mem_contw 
+0x7e18 027292 iforce contw 
+0x7e19 027293 fetch 2 ,mem_contr 
+0x7e1a 027294 iforce contr 
+0x7e1b 027295 rtn 
+:      027301 save_cont_pointers:
+0x7e1c 027302 copy contw ,pdata 
+0x7e1d 027303 store 2 ,mem_hold_contw 
+0x7e1e 027304 copy contr ,pdata 
+0x7e1f 027305 store 2 ,mem_hold_contr 
+0x7e20 027306 rtn 
+:      027307 load_cont_pointers:
+0x7e21 027308 fetch 2 ,mem_hold_contw 
+0x7e22 027309 copy pdata ,contw 
+0x7e23 027310 fetch 2 ,mem_hold_contr 
+0x7e24 027311 copy pdata ,contr 
+0x7e25 027312 rtn 
+:      027316 delay_10ms:
+0x7e26 027317 copy clkn_bt ,pdata 
+0x7e27 027318 increase 16 ,pdata 
+0x7e28 027319 increase 16 ,pdata 
+:      027320 delay_ms_wait:
+0x7e29 027321 copy clkn_bt ,temp 
+0x7e2a 027322 isub temp ,null 
+0x7e2b 027323 branch delay_ms_wait ,positive 
+0x7e2c 027324 rtn 
+:      027326 memcpy48:
+0x7e2d 027327 ifetch 8 ,contr 
+0x7e2e 027328 istore 8 ,contw 
+0x7e2f 027329 ifetch 8 ,contr 
+0x7e30 027330 istore 8 ,contw 
+:      027331 memcpy32:
+0x7e31 027332 ifetch 8 ,contr 
+0x7e32 027333 istore 8 ,contw 
+:      027334 memcpy24:
+0x7e33 027335 ifetch 8 ,contr 
+0x7e34 027336 istore 8 ,contw 
+:      027337 memcpy16:
+0x7e35 027338 ifetch 8 ,contr 
+0x7e36 027339 istore 8 ,contw 
+0x7e37 027340 ifetch 8 ,contr 
+0x7e38 027341 istore 8 ,contw 
+0x7e39 027342 rtn 
+:      027344 bn_zero:
+0x7e3a 027345 force 3 ,loopcnt 
+:      027346 memset0:
+0x7e3b 027347 force 0 ,pdata 
+:      027348 memset8:
+0x7e3c 027349 istore 8 ,contw 
+0x7e3d 027350 loop memset8 
+0x7e3e 027351 rtn 
+:      027354 clear_mem:
+0x7e3f 027355 deposit loopcnt 
+0x7e40 027356 rtn blank 
+0x7e41 027357 setarg 0 
+:      027358 clear_mem_loop:
+0x7e42 027359 istore 1 ,contw 
+0x7e43 027360 loop clear_mem_loop 
+0x7e44 027361 rtn 
+:      027365 memcpy:
+0x7e45 027366 deposit loopcnt 
+0x7e46 027367 rtn blank 
+:      027368 memcpy_loop:
+0x7e47 027369 ifetch 1 ,contr 
+0x7e48 027370 istore 1 ,contw 
+0x7e49 027371 loop memcpy_loop 
+0x7e4a 027372 rtn 
+:      027374 timer_stop:
+0x7e4b 027375 setarg 0 
+:      027376 timer_init:
+0x7e4c 027377 arg mem_timers ,contw 
+0x7e4d 027378 iforce temp 
+0x7e4e 027379 lshift queue ,pdata 
+0x7e4f 027380 iadd contw ,contw 
+0x7e50 027381 istoret 2 ,contw 
+0x7e51 027382 rtn 
+:      027384 timer_reinit:
+0x7e52 027385 arg 0 ,queue 
+:      027386 timer_check:
+0x7e53 027387 set1 mark_ext_patch ,mark 
+0x7e54 027388 bpatch patch37_4 ,mem_patch37 
+0x7e55 027389 fetcht 4 ,mem_last_clkn 
+0x7e56 027390 rshift clkn_bt ,pdata 
+0x7e57 027391 store 4 ,mem_last_clkn 
+0x7e58 027392 isub temp ,timeup 
+0x7e59 027393 copy timeup ,temp 
+0x7e5a 027394 arg mem_timers ,contr 
+0x7e5b 027395 copy contr ,contw 
+0x7e5c 027396 arg 16 ,loopcnt 
+:      027397 timer_loop:
+0x7e5d 027398 ifetch 2 ,contr 
+0x7e5e 027399 isub temp ,pdata 
+0x7e5f 027400 branch timer_counting ,positive 
+0x7e60 027401 force 0 ,pdata 
+:      027402 timer_counting:
+0x7e61 027403 istore 2 ,contw 
+0x7e62 027404 loop timer_loop 
+0x7e63 027405 arg mem_timers ,contr 
+0x7e64 027406 lshift queue ,pdata 
+0x7e65 027407 iadd contr ,contr 
+0x7e66 027408 ifetch 2 ,contr 
+0x7e67 027409 rtn 
+:      027412 lshift8_queue:
+0x7e68 027413 increase 1 ,queue 
+:      027414 lshift8_queue_loop:
+0x7e69 027415 increase -1 ,queue 
+0x7e6a 027416 rtn zero 
+0x7e6b 027417 lshift8 pdata ,pdata 
+0x7e6c 027418 branch lshift8_queue_loop 
+:      027422 clk_add:
+0x7e6d 027423 iadd temp ,temp 
+0x7e6e 027424 copy temp ,loopcnt 
+0x7e6f 027425 setarg 3750 
+0x7e70 027426 isub loopcnt ,pdata 
+0x7e71 027427 rtn positive 
+0x7e72 027428 sub pdata ,0 ,pdata 
+0x7e73 027429 rshift16 temp ,temp 
+0x7e74 027430 increase 1 ,temp 
+0x7e75 027431 lshift16 temp ,temp 
+0x7e76 027432 ior temp ,temp 
+0x7e77 027433 rtn 
+:      027435 clk_diff_rt:
+0x7e78 027436 call clk_diff 
+0x7e79 027437 branch clk2rt 
+:      027440 clk_diff:
+0x7e7a 027441 disable user 
+0x7e7b 027442 isub temp ,pdata 
+0x7e7c 027443 branch clk_diff_pos ,positive 
+0x7e7d 027444 enable user 
+0x7e7e 027445 sub pdata ,0 ,pdata 
+:      027446 clk_diff_pos:
+0x7e7f 027447 rtnbit0 15 
+0x7e80 027448 arg -61786 ,temp 
+0x7e81 027449 iadd temp ,pdata 
+0x7e82 027450 set0 64 ,pdata 
+0x7e83 027451 rtn 
+:      027453 clk2rt:
+0x7e84 027454 iforce contr 
+0x7e85 027455 rshift16 pdata ,pdata 
+0x7e86 027456 arg 3750 ,temp 
+0x7e87 027457 imul32 temp ,pdata 
+0x7e88 027458 iadd contr ,pdata 
+0x7e89 027459 rtn 
+:      027462 clk2lpo:
+0x7e8a 027463 lshift8 pdata ,pdata 
+0x7e8b 027464 lshift4 pdata ,pdata 
+0x7e8c 027465 fetcht 3 ,mem_clks_per_lpo 
+0x7e8d 027466 idiv temp 
+0x7e8e 027467 call wait_div_end 
+0x7e8f 027468 quotient temp 
+0x7e90 027469 rtn 
+:      027472 clk2bt:
+0x7e91 027473 arg 3750 ,temp 
+0x7e92 027474 idiv temp 
+0x7e93 027475 call wait_div_end 
+0x7e94 027476 quotient pdata 
+0x7e95 027477 lshift16 pdata ,pdata 
+0x7e96 027478 remainder temp 
+0x7e97 027479 ior temp ,temp 
+0x7e98 027480 rtn 
+:      027483 mem3_hex2string_to_uart:
+0x7e99 027484 arg 3 ,loopcnt 
+0x7e9a 027485 branch hex2string_to_uart0 
+:      027486 mem2_hex2string_to_uart:
+0x7e9b 027487 arg 2 ,loopcnt 
+0x7e9c 027488 branch hex2string_to_uart0 
+:      027492 adss_hex2string_to_uart:
+0x7e9d 027493 arg 6 ,loopcnt 
+:      027494 hex2string_to_uart0:
+0x7e9e 027495 ifetch 1 ,rega 
+0x7e9f 027496 copy pdata ,temp 
+0x7ea0 027497 rshift4 pdata ,pdata 
+0x7ea1 027498 call dialog2uchar 
+0x7ea2 027499 istore 1 ,contwu 
+0x7ea3 027500 copy temp ,pdata 
+0x7ea4 027501 and pdata ,0xf ,pdata 
+0x7ea5 027502 call dialog2uchar 
+0x7ea6 027503 istore 1 ,contwu 
+0x7ea7 027504 increase 1 ,rega 
+0x7ea8 027505 loop hex2string_to_uart0 
+0x7ea9 027506 rtn 
+:      027507 dialog2uchar:
+0x7eaa 027508 sub pdata ,9 ,null 
+0x7eab 027509 branch dialog2uchar0to9 ,positive 
+0x7eac 027510 increase 87 ,pdata 
+0x7ead 027511 rtn 
+:      027512 dialog2uchar0to9:
+0x7eae 027513 add pdata ,0x30 ,pdata 
+0x7eaf 027514 rtn 
+:      027520 string2dec_from_uart:
+0x7eb0 027521 arg 0 ,temp 
+:      027522 string2dec_from_uart_done:
+0x7eb1 027523 copy temp ,regc 
+0x7eb2 027524 ifetch 1 ,contru 
+0x7eb3 027525 sub pdata ,at_comma ,null 
+0x7eb4 027526 rtn zero 
+0x7eb5 027527 call uchar2dialog 
+0x7eb6 027528 copy regc ,temp 
+0x7eb7 027529 call swap 
+0x7eb8 027530 arg 10 ,regb 
+0x7eb9 027531 imul32 regb ,pdata 
+0x7eba 027532 iadd temp ,pdata 
+0x7ebb 027533 copy pdata ,temp 
+0x7ebc 027534 branch string2dec_from_uart_done 
+:      027537 mem2_string2hex_from_uart:
+0x7ebd 027538 arg 2 ,loopcnt 
+0x7ebe 027539 branch string2hex_from_uart 
+:      027540 adss_string2hex_from_uart:
+0x7ebf 027541 arg 6 ,loopcnt 
+:      027545 string2hex_from_uart:
+0x7ec0 027546 ifetch 1 ,contru 
+0x7ec1 027547 call uchar2dialog 
+0x7ec2 027548 lshift4 pdata ,regc 
+0x7ec3 027549 ifetch 1 ,contru 
+0x7ec4 027550 call uchar2dialog 
+0x7ec5 027551 iadd regc ,pdata 
+0x7ec6 027552 istore 1 ,contw 
+0x7ec7 027553 loop string2hex_from_uart 
+0x7ec8 027554 rtn 
+:      027556 uchar2dialog:
+0x7ec9 027557 arg 0x3a ,temp 
+0x7eca 027558 isub temp ,null 
+0x7ecb 027559 nbranch uchar2dialog_number ,positive 
+0x7ecc 027560 arg 0x61 ,temp 
+0x7ecd 027561 isub temp ,null 
+0x7ece 027562 branch uchar2dialog_a2f ,positive 
+0x7ecf 027563 arg 0x37 ,temp 
+0x7ed0 027564 isub temp ,pdata 
+0x7ed1 027565 rtn 
+:      027566 uchar2dialog_number:
+0x7ed2 027567 arg 0x30 ,temp 
+0x7ed3 027568 isub temp ,pdata 
+0x7ed4 027569 rtn 
+:      027570 uchar2dialog_a2f:
+0x7ed5 027571 arg 0x57 ,temp 
+0x7ed6 027572 isub temp ,pdata 
+0x7ed7 027573 rtn 
+:      027575 pn9:
+0x7ed8 027576 copy temp ,alarm 
+0x7ed9 027577 setarg 0x1ff 
+0x7eda 027578 force 0 ,regb 
+:      027579 pn9_loop:
+0x7edb 027580 rshift3 pdata ,rega 
+0x7edc 027581 rshift rega ,rega 
+0x7edd 027582 ixor rega ,rega 
+0x7ede 027583 isolate1 0 ,rega 
+0x7edf 027584 setflag true ,9 ,pdata 
+0x7ee0 027585 rshift temp ,temp 
+0x7ee1 027586 isolate1 0 ,pdata 
+0x7ee2 027587 setflag true ,7 ,temp 
+0x7ee3 027588 rshift pdata ,pdata 
+0x7ee4 027589 increase 1 ,regb 
+0x7ee5 027590 compare 0 ,regb ,0x7 
+0x7ee6 027591 nbranch pn9_loop ,true 
+0x7ee7 027592 istoret 1 ,contw 
+0x7ee8 027593 loop pn9_loop 
+0x7ee9 027594 copy alarm ,temp 
+0x7eea 027595 rtn 
+:      027597 bcd_byte:
+0x7eeb 027598 div pdata ,10 
+0x7eec 027599 call wait_div_end 
+0x7eed 027600 quotient pdata 
+0x7eee 027601 lshift2 pdata ,rega 
+0x7eef 027602 lshift2 rega ,rega 
+0x7ef0 027603 remainder pdata 
+0x7ef1 027604 ior rega ,pdata 
+0x7ef2 027605 rtn 
+:      027607 bcd_pack:
+0x7ef3 027608 isolate1 0 ,rega 
+0x7ef4 027609 branch bcd_pack_hi ,true 
+0x7ef5 027610 iforce regb 
+0x7ef6 027611 rtn 
+:      027612 bcd_pack_hi:
+0x7ef7 027613 lshift2 pdata ,pdata 
+0x7ef8 027614 lshift2 pdata ,pdata 
+0x7ef9 027615 ior regb ,pdata 
+0x7efa 027616 istore 1 ,contw 
+0x7efb 027617 increase -2 ,contw 
+0x7efc 027618 rtn 
+:      027620 wait_div_end:
+0x7efd 027621 rtn modone 
+0x7efe 027622 branch wait_div_end 
+:      027625 bcd2:
+0x7eff 027626 store 8 ,mem_pdatatemp 
+0x7f00 027627 force 0x20 ,pdata 
+0x7f01 027628 force 8 ,loopcnt 
+0x7f02 027629 arg mem_bcd ,contw 
+:      027630 lpo_clear:
+0x7f03 027631 istore 1 ,contw 
+0x7f04 027632 loop lpo_clear 
+0x7f05 027633 arg mem_bcd ,contw 
+0x7f06 027634 increase 7 ,contw 
+0x7f07 027635 fetch 8 ,mem_pdatatemp 
+:      027636 bcd_loop:
+0x7f08 027637 div pdata ,10 
+0x7f09 027638 call wait_div_end 
+0x7f0a 027639 remainder pdata 
+0x7f0b 027640 or_into 0x30 ,pdata 
+0x7f0c 027641 istore 1 ,contw 
+0x7f0d 027642 increase -2 ,contw 
+0x7f0e 027643 quotient pdata 
+0x7f0f 027644 rtn blank 
+0x7f10 027645 branch bcd_loop 
+:      027650 bcd:
+0x7f11 027651 store 8 ,mem_pdatatemp 
+0x7f12 027652 force 0 ,pdata 
+0x7f13 027653 store 8 ,mem_bcd 
+0x7f14 027654 arg mem_bcd ,contw 
+0x7f15 027655 increase 7 ,contw 
+0x7f16 027656 fetch 8 ,mem_pdatatemp 
+0x7f17 027657 force 0 ,rega 
+:      027658 bcd_pack_loop:
+0x7f18 027659 div pdata ,10 
+0x7f19 027660 call wait_div_end 
+0x7f1a 027661 remainder pdata 
+0x7f1b 027662 call bcd_pack 
+0x7f1c 027663 increase 1 ,rega 
+0x7f1d 027664 quotient pdata 
+0x7f1e 027665 sub pdata ,9 ,null 
+0x7f1f 027666 nbranch bcd_pack_loop ,positive 
+0x7f20 027667 call bcd_pack 
+0x7f21 027668 isolate1 0 ,rega 
+0x7f22 027669 rtn true 
+0x7f23 027670 istore 1 ,contw 
+0x7f24 027671 rtn 
+:      027679 string_compare:
+0x7f25 027680 ifetch 1 ,rega 
+0x7f26 027681 ifetcht 1 ,regb 
+0x7f27 027682 isub temp ,null 
+0x7f28 027683 nrtn zero 
+0x7f29 027684 increase 1 ,rega 
+0x7f2a 027685 increase 1 ,regb 
+0x7f2b 027686 loop string_compare 
+0x7f2c 027687 force 0 ,null 
+0x7f2d 027688 rtn 
+:      027691 ceiling:
+0x7f2e 027692 isub temp ,null 
+0x7f2f 027693 nrtn positive 
+0x7f30 027694 deposit temp 
+0x7f31 027695 rtn 
+:      027697 swap:
+0x7f32 027698 iadd temp ,pdata 
+0x7f33 027699 isub temp ,temp 
+0x7f34 027700 isub temp ,pdata 
+0x7f35 027701 rtn 
+:      027703 clean_mem:
+0x7f36 027704 arg 0x200 ,loopcnt 
+0x7f37 027705 arg 0x4000 ,contw 
+0x7f38 027706 branch memset0 
+:      027708 slave_savelist:
+0x7f39 027709 fetch 5 ,mem_sync_clke 
+0x7f3a 027710 store 5 ,mem_pdatatemp 
+0x7f3b 027711 fetch 2 ,mem_clks_per_lpo 
+0x7f3c 027712 istore 2 ,contw 
+0x7f3d 027713 setarg 0 
+0x7f3e 027714 setflag match ,7 ,pdata 
+0x7f3f 027715 setflag wake ,6 ,pdata 
+0x7f40 027716 setflag sync ,5 ,pdata 
+0x7f41 027717 setflag attempt ,4 ,pdata 
+0x7f42 027718 istore 1 ,contw 
+0x7f43 027719 branch savelist_2 
+:      027722 le_savelist:
+0x7f44 027723 fetch 5 ,mem_sync_clke 
+0x7f45 027724 store 5 ,mem_pdatatemp 
+0x7f46 027725 fetch 1 ,mem_le_ch_mapped 
+0x7f47 027726 istore 1 ,contw 
+0x7f48 027727 fetch 2 ,mem_le_event_count 
+0x7f49 027728 arg 0x0fff ,contr 
+0x7f4a 027729 iand contr ,pdata 
+0x7f4b 027730 setflag match ,15 ,pdata 
+0x7f4c 027731 setflag wake ,14 ,pdata 
+0x7f4d 027732 setflag sync ,13 ,pdata 
+0x7f4e 027733 setflag attempt ,12 ,pdata 
+0x7f4f 027734 istore 2 ,contw 
+0x7f50 027735 branch savelist_2 
+:      027736 savelist:
+0x7f51 027737 store 8 ,mem_pdatatemp 
+:      027738 savelist_2:
+0x7f52 027739 fetch 1 ,mem_seqi 
+0x7f53 027740 rtneq 0x7f 
+0x7f54 027741 and_into 0x7f ,pdata 
+0x7f55 027742 lshift3 pdata ,pdata 
+0x7f56 027743 arg mem_savelist ,contw 
+0x7f57 027744 iadd contw ,contw 
+0x7f58 027745 fetch 8 ,mem_pdatatemp 
+0x7f59 027746 istore 8 ,contw 
+0x7f5a 027747 fetch 1 ,mem_seqi 
+0x7f5b 027748 isolate1 7 ,pdata 
+0x7f5c 027749 increase 1 ,pdata 
+0x7f5d 027750 and_into 0x7f ,pdata 
+0x7f5e 027751 setflag true ,7 ,pdata 
+0x7f5f 027752 store 1 ,mem_seqi 
+0x7f60 027753 fetch 8 ,mem_pdatatemp 
+0x7f61 027754 rtn 
+:      027756 dirty_mem:
+0x7f62 027757 arg 0x800 ,loopcnt 
+0x7f63 027758 arg 0 ,contw 
+0x7f64 027759 setarg 0x01010101 
+0x7f65 027760 branch memset8 
+:      027763 callback_func:
+0x7f66 027764 rtn blank 
+0x7f67 027765 copy pdata ,pc 
+:      027768 wait_uarttx:
+0x7f68 027769 hfetch 2 ,core_uart_txitems 
+0x7f69 027770 nbranch wait_uarttx ,blank 
+0x7f6a 027771 rtn 
+:      027773 get_uart_rrptr:
+0x7f6b 027774 hfetch 2 ,core_uart_rrptr 
+0x7f6c 027775 copy pdata ,contru 
+0x7f6d 027776 rtn 
+:      027778 get_uart_twptr:
+0x7f6e 027779 hfetch 2 ,core_uart_twptr 
+0x7f6f 027780 copy pdata ,contwu 
+0x7f70 027781 rtn 
+:      027783 send_mem_to_uart:
+0x7f71 027784 copy contr ,rega 
+0x7f72 027785 call get_uart_twptr 
+0x7f73 027786 copy rega ,contr 
+:      027787 send_mem_to_uart0:
+0x7f74 027788 call uart_copy_tx_bytes 
+0x7f75 027789 call uartd_send 
+0x7f76 027790 branch wait_uarttx 
+:      027792 ice_break:
+0x7f77 027793 hjam 0x1 ,core_ice_ctrl 
+0x7f78 027794 rtn 
+:      027796 ice_setbp:
+0x7f79 027797 hstore 2 ,core_ice_break0 
+0x7f7a 027798 hfetch 1 ,core_ice_ctrl 
+0x7f7b 027799 set1 4 ,pdata 
+0x7f7c 027800 hstore 1 ,core_ice_ctrl 
+0x7f7d 027801 rtn 
+:      027802 ice_setbp2:
+0x7f7e 027803 hstore 2 ,core_ice_break1 
+0x7f7f 027804 hfetch 1 ,core_ice_ctrl 
+0x7f80 027805 set1 6 ,pdata 
+0x7f81 027806 hstore 1 ,core_ice_ctrl 
+0x7f82 027807 rtn 
+:      027809 ice_set_write_bp:
+0x7f83 027810 hstore 2 ,core_ice_break0 
+0x7f84 027811 hjam 0x30 ,core_ice_ctrl 
+0x7f85 027812 rtn 
+:      027814 test_no_white:
+0x7f86 027815 hfetch 1 ,core_config 
+0x7f87 027816 set1 whiteoff_bit ,pdata 
+0x7f88 027817 hstore 1 ,core_config 
+0x7f89 027818 rtn 
+:      027820 test_enable_white:
+0x7f8a 027821 hfetch 1 ,core_config 
+0x7f8b 027822 set0 whiteoff_bit ,pdata 
+0x7f8c 027823 hstore 1 ,core_config 
+0x7f8d 027824 rtn 
+:      027826 check_uart_tx_buff:
+0x7f8e 027827 hfetch 2 ,core_uart_txitems 
+0x7f8f 027828 arg uart_air_control_threshold ,temp 
+:      027829 pdata_sub_temp:
+0x7f90 027830 isub temp ,null 
+0x7f91 027831 rtn 
+:      027837 fifo_in:
+0x7f92 027838 set1 mark_ext_patch ,mark 
+0x7f93 027839 bpatch patch37_5 ,mem_patch37 
+0x7f94 027840 ifetcht util_fifo_len ,rega 
+0x7f95 027841 and temp ,0xff ,pdata 
+0x7f96 027842 nbranch fifo_in_push ,blank 
+0x7f97 027843 rshift8 temp ,pdata 
+0x7f98 027844 istore util_fifo_len ,rega 
+:      027845 fifo_in_push:
+0x7f99 027846 increase util_fifo_len + util_fifo_offset ,rega 
+0x7f9a 027847 ifetch 1 ,rega 
+0x7f9b 027848 nbranch assert ,blank 
+0x7f9c 027849 fetch 1 ,mem_fifo_temp 
+0x7f9d 027850 istore 1 ,rega 
+0x7f9e 027851 rtn 
+:      027856 fifo_out:
+0x7f9f 027857 set1 mark_ext_patch ,mark 
+0x7fa0 027858 bpatch patch37_6 ,mem_patch37 
+0x7fa1 027859 arg util_fifo_len ,loopcnt 
+0x7fa2 027860 ifetch util_fifo_len ,rega 
+0x7fa3 027861 rtn blank 
+:      027862 fifo_out_loop:
+0x7fa4 027863 ifetch 1 ,rega 
+0x7fa5 027864 nbranch fifo_out_end ,blank 
+0x7fa6 027865 increase 1 ,rega 
+0x7fa7 027866 loop fifo_out_loop 
+0x7fa8 027867 branch assert 
+:      027868 fifo_out_end:
+0x7fa9 027869 arg 0 ,temp 
+0x7faa 027870 istoret 1 ,rega 
+0x7fab 027871 rtn 
+:      027876 fifo_is_empty:
+0x7fac 027877 ifetch util_fifo_len ,rega 
+0x7fad 027878 rtn 
+:      027883 fifo_is_full:
+0x7fae 027884 ifetch 1 ,rega 
+0x7faf 027885 rtn 
+:      027888 fifo_is_near_full:
+0x7fb0 027889 ifetch 2 ,rega 
+0x7fb1 027890 rtn 
+:      027894 fifo_content_count:
+0x7fb2 027895 arg 0 ,temp 
+:      027896 fifo_content_count_loop:
+0x7fb3 027897 fetch 1 ,contr 
+0x7fb4 027898 loop fifo_content_count_loop ,blank 
+0x7fb5 027899 increase 1 ,temp 
+0x7fb6 027900 loop fifo_content_count_loop 
+0x7fb7 027901 copy temp ,pdata 
+0x7fb8 027902 rtn 
+:      027904 not_greater_than:
+0x7fb9 027905 isub temp ,null 
+0x7fba 027906 nrtn positive 
+0x7fbb 027907 copy temp ,pdata 
+0x7fbc 027908 rtn 
Index: btkb/output/bt_program23.meta
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/output/bt_program23.meta	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/output/bt_program23.meta	(working copy)
@@ -30,6 +30,7 @@
 define P24G
 //define GPIO_TEST_01
 //define WAKE_DEV
+//define TP_MAX
 
 	bmark1 mark_ext_patch,patch_ext
 	beq patch00_0,p_soft_reset
@@ -62,8 +63,6 @@
 p_soft_reset: 
 	hfetch 1,0x813b
 	store 1,mem_wakup_from_power_flag
-	setarg 0x280520			// 2020 05 28
-	store 3,mem_version_yy_mm_dd
 	hjam lock_otp,core_misc_ctrl
 	branch soft_reset+2
 
Index: btkb/output/bt_program23.rom
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/output/bt_program23.rom	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/output/bt_program23.rom	(working copy)
@@ -1,71 +1,69 @@
 11000101000100101000000000001111
 11000000000000000000000000010111
-11000000000000011000000000011101
-11000000000000101000000000100000
-11000000010010000000000101001110
-11000000010010010000000100011000
-11000000010010100000000100011110
-11000000010010101000000100001000
-11000000010110000000000011001010
-11000000010110001000000011001100
-11000000010110010000000011100000
-11000000010110011000000011111010
-11000000010110110000000100000011
-11000000010111001000000011010100
+11000000000000011000000000011011
+11000000000000101000000000011110
+11000000010010000000000101001100
+11000000010010010000000100010110
+11000000010010100000000100011100
+11000000010010101000000100000110
+11000000010110000000000011001000
+11000000010110001000000011001010
+11000000010110010000000011011110
+11000000010110011000000011111000
+11000000010110110000000100000001
+11000000010111001000000011010010
 00100000001000000011101111110001
-11000000000111110000000111000001
-11000000000111111000000111000101
-11000000010000111000000010101001
-11000000010001101000000111010011
-11000000010001111000000111001001
-11000000011001101000000101011000
-11000000011010000000000010110100
+11000000000111110000000110111111
+11000000000111111000000111000011
+11000000010000111000000010100111
+11000000010001101000000111010001
+11000000010001111000000111000111
+11000000011001101000000101010110
+11000000011010000000000010110010
 00100000001000000011101111110001
 01101000000100001000000100111011
 01100000000000001000101110000001
-01011000001010000000010100100000
-01100000000000011100110101001100
 01110000100000000000011000001000
 00100000001000000011000000000011
-00100000010000000000000001000100
-00100000010000000000000000100101
+00100000010000000000000001000010
+00100000010000000000000000100011
 00100000001000000011000000010101
 00100000010000000011001110010010
 00100000010000000011010000000111
 00100000010000000011000000100100
-00100000010000000000000111101001
+00100000010000000000000111100111
 00100000001000000011000000100010
-00100000010000000000000010100100
+00100000010000000000000010100010
 00100000011101000000000000000000
 00011111111100001111111000000000
 00011111111000100000110000000000
-00100000010000000000000010000101
+00100000010000000000000010000011
 01100000000000001100101110100111
-11000000000000001000000000111000
-11000000000000110000000001000010
+11000000000000001000000000110110
+11000000000000110000000001000000
 00011111111000100000010000000000
 00011000110000100010001000000000
 01101000000000001100000001000000
-11000011000000000000000000110101
+11000011000000000000000000110011
 00011010001000100000110000000000
 11000110100001001000000000000000
 00011000010000100111111000000000
 00100000011000000000000000000000
 00011010001000100000110000000000
 11011000101000000000000011111000
-00100000001000000000000001111101
-00100000010000000000000010000101
-00100000010000000000000010000101
+00100000001000000000000001111011
+00100000010000000000000010000011
+00100000010000000000000010000011
 01100000000000001000101101111101
-00100000010000000000000000111101
+00100000010000000000000000111011
 00100000001000000111110000110011
-00100000010000000000000010001000
+00100000010000000000000010000110
 00011000110000100000010000000000
 00011000010100001000010000000000
 01100000000010010100101110011010
 00100000011000000000000000000000
 11011000101000000000110011010101
-00100000001000000000000001111101
+00100000001000000000000001111011
 01101000000010100100110001011001
 00011100010000100111111000000000
 10011000010001100111111000000000
@@ -85,18 +83,18 @@
 00011111111000010111111000000011
 11000001100000000000000000000000
 01101000000000001100110010001111
-11000010100000000000000001100001
-11000010100000001000000001100011
+11000010100000000000000001011111
+11000010100000001000000001100001
 11011010001000000000000000000000
-00100000010000000000000001110100
+00100000010000000000000001110010
 01110000100010010111000110001111
 01101000000000001100110010010000
 01100000000100001000100101110011
-00100000010000000000000001100100
+00100000010000000000000001100010
 11011010001000000000000000000001
-00100000001000000000000001110100
+00100000001000000000000001110010
 01110000100010010111000110111111
-00100000001000000000000001100100
+00100000001000000000000001100010
 01110000100010010111000110101111
 01101000000100001000000001010011
 01111001001000000111111000000111
@@ -119,19 +117,19 @@
 10011000010001100000010000000000
 00011010001000100111111000000000
 01111001001000000000010000000111
-00100100001110100000000001111011
+00100100001110100000000001111001
 01111001001111111000010000000111
 11011000101000001000000001111000
 00100000001000000110100111110100
-00100000010000000000000010000101
+00100000010000000000000010000011
 00011111111000100111001000000000
-00100000010000000000000010000001
-00100000001000000000000000111101
-00100000010000000000000010000101
+00100000010000000000000001111111
+00100000001000000000000000111011
+00100000010000000000000010000011
 11100000101000001000000000000000
-11000010000000000000000010000001
+11000010000000000000000001111111
 00100000011000000000000000000000
-00100000010000000000000010001000
+00100000010000000000000010000110
 11101000110000001000000000000000
 00100000011000000000000000000000
 01011000000000000100101100110110
@@ -148,8 +146,8 @@
 00011010001000100000110000000000
 11101000110000001000000000000000
 11100000101000001000000000000000
-00100000010000000000000010011100
-11000010000000000000000010010100
+00100000010000000000000010011010
+11000010000000000000000010010010
 00011000101000100111111000000000
 00011111111100001111111000000000
 01100000000000010100101110100000
@@ -161,7 +159,7 @@
 00100000011000000000000000000000
 01101000000000010100101110011110
 01101000000010010100101110100000
-00100000001000000000000010100110
+00100000001000000000000010100100
 01101000000000010100101110011010
 01101000000010010100101110011100
 10011000010001100111110000000000
@@ -172,7 +170,7 @@
 01101000000010001100011111101111
 01101000000000001100110101001011
 10011000010001100111110000000000
-00100100010000010000000010110000
+00100100010000010000000010101110
 00100000001000000111110000000110
 01101000000010100100110101001000
 01100000000010100100011111101100
@@ -186,8 +184,8 @@
 00100000011110100000000000000000
 00011111111000001111111111111111
 01100000000000001000001001011001
-00100000010000000000000010111110
-00100000001000000000000010111000
+00100000010000000000000010111100
+00100000001000000000000010110110
 01101000000000001100110000010101
 00100000011110100000000000000000
 00011111111000001111111111111111
@@ -199,7 +197,7 @@
 00011010011000100111111000000000
 00100000011110100000000000000000
 01100000000000001100101110100100
-00100000001000000000000010001101
+00100000001000000000000010001011
 00100000010000000011101100110110
 00100000001000000011110011011100
 01110000010000010110111001111111
@@ -240,32 +238,32 @@
 01101000000000001100011110010011
 00100000011110100000000000000000
 00100000001000000011110100100101
-00100000010000000000000010100100
+00100000010000000000000010100010
 00100100011101000000000000000000
-00100000010000000000000010100001
+00100000010000000000000010011111
 00100100011101000000000000000000
 01110000000010110111111100000001
 01110000000010110111111000000001
-00100000010000000000000011111111
-00100000001000000000000010100100
-00100000010000000000000011110010
+00100000010000000000000011111101
+00100000001000000000000010100010
+00100000010000000000000011110000
 00100100011101000000000000000000
 01101000000000001000101101111111
 00100100011110100000000000000000
 00100000001000000011110100101101
 01101000000000001000101101111110
 00100000000000000000000000001010
-11000000100000000000000011111111
+11000000100000000000000011111101
 00100000011000000000000000000000
-00100000010000000000000011110010
+00100000010000000000000011110000
 00100100011101000000000000000000
 01101000000000001000101101111111
 00100100011110100000000000000000
 00100000001000000011110101001111
-00100000010000000000000100001010
+00100000010000000000000100001000
 00100000001000000011101010101111
 01101000000000001100001000011001
-00100100001110100000000100010000
+00100100001110100000000100001110
 00100000010000000011110110010001
 00100000000000000111010100110000
 00100000000000000111010100110000
@@ -284,7 +282,7 @@
 01100000000010001000000000010111
 00011000010000001010001000000000
 00100000001000000011101010110110
-00100000010000000000000100011011
+00100000010000000000000100011001
 01011000000000000000010100000000
 00100000010000000011101111110011
 01110000100010010000011000000001
@@ -299,13 +297,13 @@
 00100000000000000000000000001010
 01110000100010010000001001111101
 01101000000000001100101111101111
-11000000111111111000000100110110
+11000000111111111000000100110100
 01101000000000101100101010010001
 11100000101000101000000000000000
 11101000110000101000000000000000
 11100000101000101000000000000000
 01110000100010010101011011011111
-00100000010000000000000100111101
+00100000010000000000000100111011
 01110000100010010101010111011111
 00100000011000000000000000000000
 01101000000000101100101010000111
@@ -333,7 +331,7 @@
 01110000100010010101011011000000
 00100000011000000000000000000000
 00100000001100001011101001101111
-00100000010000000000000101000101
+00100000010000000000000101000011
 00100000001000000011101001101111
 01111000001101000111110000000000
 01101000000100100000000100111000
@@ -345,15 +343,15 @@
 01110000000010110111111000000000
 01110000000000010111011100000110
 00100000010000000011111110100100
-01011000000000000000000101010111
+01011000000000000000000101010101
 01100000000000010100001010001010
-01011000000000000000000011000011
+01011000000000000000000011000001
 01100000000000010100001010010010
-01011000000000000000000111001000
+01011000000000000000000111000110
 01100000000000010100001010010000
-01011000000000000000000000100101
+01011000000000000000000000100011
 01100000000000010100001010001100
-01011000000000000000000101010001
+01011000000000000000000101001111
 01100000000000010100001010001000
 01011000000000000100101010100000
 00011111111100001111111000000000
@@ -365,31 +363,31 @@
 01100000000000010100101110011110
 01100000000000010100101110100000
 01101000000000001100110010010111
-11000000001011010000000110000110
-00100000001101011000000110000100
+11000000001011010000000110000100
+00100000001101011000000110000010
 01101000000000010100110010010001
 00011111111100001111111000000000
 01100000000000010100110010010001
 01101000000000010100110010010011
 00011111111100001111111000000000
 01100000000000010100110010010011
-00100000010000000000000110010001
+00100000010000000000000110001111
 01101000000001000000001010100000
-00100100001110100000000101111110
+00100100001110100000000101111100
 01101000000000010100101011010100
 00011111111100001111111000000000
-00100000001110100000000101111110
+00100000001110100000000101111100
 01100000000000010100110010010011
-00100000010000000000000111100110
+00100000010000000000000111100100
 01110000010010111010010000101111
-00100000010000000000000010001101
+00100000010000000000000010001011
 01110000010011001001011100000000
 01110000100000101000000000000011
 00100000011000000000000000000000
 01110000010010111010010000110000
-00100000001000000000000110000000
+00100000001000000000000101111110
 00011100111000100111111000000000
-00100000001110100000000111001011
+00100000001110100000000111001001
 00100000010000000101101101100011
 00100000010000000100110110011001
 01011000000000000000000000000000
@@ -398,7 +396,7 @@
 00011100010000100111111000000000
 01100000000000100100110001011001
 01110000010010111010010000110011
-00100000001000000000000110000000
+00100000001000000000000101111110
 00100000010000000110100010001010
 01011000000000000000011111100010
 11011010001000000000001010100000
@@ -408,8 +406,8 @@
 01101000000001000000001010100000
 00100000011110100000000000000000
 01101000000000001100110010001111
-11000010100000000000000110100011
-11000010100000001000000110110001
+11000010100000000000000110100001
+11000010100000001000000110101111
 01101000000000010000001010100000
 00011111111100001111111000000000
 01100000000000010100110010010001
@@ -456,7 +454,7 @@
 00100000001000000101001111011001
 00100000011000000000000000000000
 01110000000010110111111000000011
-00100000010000000000000011111111
+00100000010000000000000011111101
 01110000010011001001011101011010
 00100000010000000011110110111000
 01101000000100100000000100111000
@@ -472,32 +470,32 @@
 00100000010000000111110000100100
 00011000010000100111111000000000
 00100000011110100000000000000000
-11000000000100001000000111011110
-11000000000100010000000111100000
-11000000000100011000000111100011
+11000000000100001000000111011100
+11000000000100010000000111011110
+11000000000100011000000111100001
 00100000001000000111110001011010
 01110000010010111110111111111111
-00100000001000000000001011101100
+00100000001000000000001011101010
 01111001001111111000000000100011
 01110000010010111110111111111111
-00100000001000000000001001100110
+00100000001000000000001001100100
 01011111111111111111111111111111
 01100000000000100100110000000000
-00100000001000000000001010110111
+00100000001000000000001010110101
 01011000000000000000000000000000
 01100000000000100100101110101001
 00100000011000000000000000000000
 11000110100100011000000000000000
-00100000010000000000001000001111
-00100100001101000000001000000000
+00100000010000000000001000001101
+00100100001101000000000111111110
 01110000010011000001010100001010
-00100000010000000000001000101010
+00100000010000000000001000101000
 01101000000000001100101111101111
 11000001111111111000000000000000
-00100000010000000000001010001000
+00100000010000000000001010000110
 01101000000000001100110101000110
 00100100011110100000000000000000
-00100000010000000000000011110010
+00100000010000000000000011110000
 00100100011101000000000000000000
 01101000000000001000101101111111
 00100100011110100000000000000000
@@ -510,7 +508,7 @@
 00100000010000000111111010001010
 01100000000010100100000111111100
 00100000001000000011110011011010
-00100000010000000000000011110010
+00100000010000000000000011110000
 00100100011101000000000000000000
 01101000000000001000101101111111
 00100100011110100000000000000000
@@ -520,34 +518,34 @@
 01101000000000001100000100110001
 00100000011110100000000000000000
 01101000000000001100110000010101
-00100100001110100000000111111100
+00100100001110100000000111111010
 01101000000001000100110100111101
 00100000010000000111111010001010
 01100000000010100100000111111100
 00100000001000000011110011011010
 01101000000000001100101111101111
-11000000111111111000001011000000
-00100000010000000000001000010101
-00100000010000000000001101010000
+11000000111111111000001010111110
+00100000010000000000001000010011
+00100000010000000000001101001110
 01110000010010111110011000000001
 00100000011000000000000000000000
 01111000010101000111110000000000
 01110000010010111110001000000010
 01101000000000001000110011010101
-11000000000000001000001000011110
-11000000000000010000001000100010
-11000000000000011000001000100110
+11000000000000001000001000011100
+11000000000000010000001000100000
+11000000000000011000001000100100
 01101000000000001100110101000110
 00100100010110100011010011011111
 00100000011000000000000000000000
 01011000000000000000000000000000
 01100000000000001000110011010101
 01110000010010111110000100001010
-00100000001000000000001000101000
+00100000001000000000001000100110
 01011000000000000000000000000011
 01100000000000001000110011010101
 01110000010010111110000100000100
-00100000001000000000001000101000
+00100000001000000000001000100110
 01110000010010111110001000000001
 01110000010010111110000100001000
 01110000010010111110011100000000
@@ -555,17 +553,17 @@
 01110000010010111110100000000000
 11011001011000000000110100000000
 00110100011100110000001000000000
-00100000010000000000001001010101
-00100100001101111000001000111011
-00100000010000000000001001101001
-00100000010000000000001001111010
+00100000010000000000001001010011
+00100100001101111000001000111001
+00100000010000000000001001100111
+00100000010000000000001001111000
 01101000000000001100101111100000
 00011111111000001111111000000001
 01100000000000001100101111100000
 01110000010011010100011000000000
 01101000000000001100101111101111
-11000000111111111000001001010011
-00100000010000000000001001001101
+11000000111111111000001001010001
+00100000010000000000001001001011
 01110000010010111110011100000000
 01110000010010111110011000000000
 00100000011000000000000000000000
@@ -574,52 +572,52 @@
 00011111111000001111111000000001
 01100000000000001100101111100111
 01101000000000001100101111101111
-11000000111111111000001001100101
+11000000111111111000001001100011
 01101000000000001100101111100111
-11000000011111111000001001100110
+11000000011111111000001001100100
 01101000000000001100101111100111
 11011000010000000000000000010000
 10011000010001100111110000000000
-00100000001000010000001101101010
+00100000001000010000001101101000
 01101000000000001100101111101000
 00011111111000001111111000000001
 01100000000000001100101111101000
 00100000000000000000000000001010
-11000000100000111000001000101011
-00100000001000000000001101101010
+11000000100000111000001000101001
+00100000001000000000001101101000
 01011000000000000000000000000000
 01100000000001001000110011010101
 00100000011000000000000000000000
 11000101100100011111001010111001
 01101000000001000000110011010101
 00100000011000000000000000000000
-00100000010000000000001001110111
-00100000001000000000001011011100
+00100000010000000000001001110101
+00100000001000000000001011011010
 01111000010101111111110000000000
-00100000010000000000001111001000
+00100000010000000000001111000110
 01101000000000001100110000001010
-11000000000000001000001001100010
+11000000000000001000001001100000
 00011000000000000010101000000000
 01101000000000100100110000000000
 10011000000000000001001000000000
 01101000000010001000000000010111
 00100000010000000011101010000010
 00100000010000000011101010000111
-00100000010000000000001110000010
-00100000010101111000001111000000
+00100000010000000000001110000000
+00100000010101111000001110111110
 00100000011000000000000000000000
 01110000000011001011010000000000
 01111000001101111111110000000000
-00100000001000000000001111000000
+00100000001000000000001110111110
 00100000011000000000000000000000
 01110000010011010100011000000000
 01110000000010110111110100110010
 00100000001000000111110000100111
-00100000010000000000001100010010
+00100000010000000000001100010000
 01101000000000001100101111011111
 00100000011110100000000000000000
 10011000000000000111001000000000
-00100000010000000000001001110001
+00100000010000000000001001101111
 11011000110000000000110010110101
 11011000101000000000110100010111
 00100000001000000111111001000101
@@ -638,7 +636,7 @@
 00100000011000000000000000000000
 01101000000000001100110000100111
 00011111111001100111110000000001
-00100100010000010000001010000110
+00100100010000010000001010000100
 01101000000000001100110000100111
 11000001000000000000000000000000
 00011111111000001111111111111111
@@ -647,18 +645,18 @@
 01110000010011000010011100000010
 00100000011000000000000000000000
 11011010001000000100110000101011
-00100000010000000000001100110010
+00100000010000000000001100110000
 01100000000010001100110000101001
 00101000000011111111111000100011
-00100000010000001000001010010110
-00100100010000001000001010011010
+00100000010000001000001010010100
+00100100010000001000001010011000
 10011000010001100111110000000000
-00100100001000010000001010101110
+00100100001000010000001010101100
 01101000000000001100110000100111
 00011111111001100111110000000001
-00100100001000010000001010011110
+00100100001000010000001010011100
 01101000000000001100110000100111
-11000000000000000000001010101110
+11000000000000000000001010101100
 00100000011000000000000000000000
 01011000000000000000000010000010
 00100000011000000000000000000000
@@ -673,49 +671,49 @@
 01110000010011000010011100000000
 01101000000010001100110000101001
 00101000000011111111111000100011
-00100000010000001000001010011000
-00100100010000001000001010011100
+00100000010000001000001010010110
+00100100010000001000001010011010
 10011000010001100111110000000000
 00100100011000010000000000000000
 01101000000000001100110000101000
-11000000000000000000001010110101
+11000000000000000000001010110011
 00011111111000001111111111111111
 01100000000000001100110000101000
-11000000000000000000001010110101
+11000000000000000000001010110011
 01110000010011000011110100000000
 00100000011000000000000000000000
 01101000000000001100110000101000
-11000000000000010000001010110011
+11000000000000010000001010110001
 00011111111000001111111000000001
 01100000000000001100110000101000
-11000000000000001000001010101100
+11000000000000001000001010101010
 01110000010011000011110100000010
 00100000011000000000000000000000
 01110000010011000011110100000100
 00100000011000000000000000000000
 01111001001000000000000000100011
-00100000010000000000001010111100
-00100000010000000000001000110111
+00100000010000000000001010111010
+00100000010000000000001000110101
 01110000010010111110111100000001
 00100000011000000000000000000000
 01110000010010111110000000000000
 01110000010010111110100101001110
 01101000000000100100101111101011
-00100000001000000000001101000010
-00100000010000000000001010111100
+00100000001000000000001101000000
+00100000010000000000001010111010
 01101000000000001100101111100110
 11000000000000001011010011011111
 01101000000000001100101111101111
-11000000000000001000001011001000
-11000000000000010000001011001011
-11000000000000011000001011001110
+11000000000000001000001011000110
+11000000000000010000001011001001
+11000000000000011000001011001100
 00100000001000000011101111110001
 01110000010010111110111100010001
 01110000000011010011011110101010
-00100000001000000000001011010000
+00100000001000000000001011001110
 01110000010010111110111100010010
 01110000000011010011011101010101
-00100000001000000000001011010000
+00100000001000000000001011001110
 01110000010010111110111100010011
 01110000000011010011011100100010
 01101000000000001100101111100010
@@ -726,41 +724,41 @@
 01110000000011010011110100000000
 11011010001000000000110100110111
 11011000010000000000000000000111
-00100000010000000000001100001101
-00100000010000000000001101010000
-00100000010000000000001000010011
+00100000010000000000001100001011
+00100000010000000000001101001110
+00100000010000000000001000010001
 00100000001000000011010011011111
 01101000000000001100101111101111
 11000001011111111000000000000000
-11000000000010001000001011100010
-11000000000010010000001011100100
-11000000000010011000001011100110
+11000000000010001000001011100000
+11000000000010010000001011100010
+11000000000010011000001011100100
 00100000011000000000000000000000
 01110000010010111110111100000010
-00100000001000000000001000110111
+00100000001000000000001000110101
 01110000010010111110111100000011
-00100000001000000000001000110111
+00100000001000000000001000110101
 01110000010010111110111111111111
 01110000000010110111110100110001
 00100000010000000111110000100111
 01101000000000100000110100011001
-00100000010000000000001101000010
-00100000001000000000001000110111
+00100000010000000000001101000000
+00100000001000000000001000110101
 11000110000100011000000000000000
-00100000010000000000001101000011
-00100000010000000000001101101010
+00100000010000000000001101000001
+00100000010000000000001101101000
 01101000000000001100101111101111
 11000001111111111000000000000000
-00100000010000000000001011111111
+00100000010000000000001011111101
 01011000000000000000000000000000
 01100000000000010100110000000100
 00100000010000000011110010101011
 00100000000000000000011111010000
 01101000000000001100110000000100
-11000000011111111000001001100110
-00100000010000000000001001010101
-00100100001101111000001100001000
-00100000010000000000001001001101
+11000000011111111000001001100100
+00100000010000000000001001010011
+00100100001101111000001100000110
+00100000010000000000001001001011
 01110000010011000001001100000011
 01111001001000000000000000100011
 01110000000010110111110100111100
@@ -772,13 +770,13 @@
 01100000000000100000110100111001
 11011000010000000000000000000110
 11011010001000000000110100110111
-00100000010000000000001100001101
-00100000001000000000001101010000
+00100000010000000000001100001011
+00100000001000000000001101001110
 01101000000000010100110000000100
 00011111111000001111111000000001
 01100000000000010100110000000100
-00100000010000000000001101101010
-00100000001000000000001011110100
+00100000010000000000001101101000
+00100000001000000000001011110010
 01100000000010001100101111100001
 00011000010000100111001000000000
 11011000101000000000110011010101
@@ -806,7 +804,7 @@
 00100000011110100000000000000000
 01101000000010001100110000111011
 11011010001000000100110000110011
-00100000010000000000001100101011
+00100000010000000000001100101001
 01100000000010001100110000111011
 00100000011000000000000000000000
 00011010001000100111111000000000
@@ -821,7 +819,7 @@
 00011010001000100000110000000000
 11101000110000001000000000000000
 10011000010000001000010000000000
-11000010000000000000001100110101
+11000010000000000000001100110011
 00011000010010010000010000000000
 00011111111000100000010000000000
 11000110100100011000000000000000
@@ -838,7 +836,7 @@
 11011000110000000100110000000000
 11101000110000001000000000000000
 10011010001000001010001000000000
-11000010000000000000001101000110
+11000010000000000000001101000100
 00011010001000100111111000000000
 01100000000000010100110000010110
 01101000000000001100110000010110
@@ -861,19 +859,19 @@
 10011000010000001111111000000000
 11100000101000001000000000000000
 01101000000000001100101111101111
-11000000111111111000001101100010
+11000000111111111000001101100000
 01101000000000001100101111100010
 11100000101000001000000000000000
 01101000000000001100101111100001
 10011000000000000111001000000000
 01101000000000001100101111100010
-11000000000000001000001101101000
+11000000000000001000001101100110
 11011000110000000000110011010101
 00100000001000000111111001000101
 11011000110000000000110011010110
 00100000001000000111111001000101
 01101000000010001100101111101010
-00100000010000000000001101110000
+00100000010000000000001101101110
 00011000010000001000010000000001
 00011000010000010000010000000011
 01100000000010001100101111101010
@@ -896,7 +894,7 @@
 01111001001000000000010000000001
 00011000010000110001110000000000
 00100000011000000000000000000000
-00100000010000000000001101111001
+00100000010000000000001101110111
 01111000001001101111110000000000
 01111000001100001111110000000000
 01111000010100000111110000000000
@@ -904,7 +902,7 @@
 01101000000000010100101111100100
 10011000000000000011011000000000
 00110111110000011000010000000000
-00100100001011000000001111000011
+00100100001011000000001111000001
 01111000010001101111110000000000
 01111000001001011111110000000000
 01111000001000111111110000000000
@@ -914,27 +912,27 @@
 01100000000000001100110000011001
 01101000000010001100110000011000
 10011000010001100111110000000000
-00100100001000101000001111000000
+00100100001000101000001110111110
 00001001100000000000000000001000
 00011001100010010111111000000000
 01100000000000001000110010110011
 01101000000000001100110000010000
 00011111111001100111110000000010
-00100000001000101000001110011111
+00100000001000101000001110011101
 01101000000000001000110010110011
 01101000000010001100101111100010
 10101000010000000000111000000000
-00100100001000001000001111000000
+00100100001000001000001110111110
 00001001100000000000000000001000
 00011001100010010111111000000000
 11100000101000001000000000000000
 00011111111010010111111000000000
 00011111111000010111001000011111
-00100000001000101000001110101001
+00100000001000101000001110100111
 00001001100000000000000000001000
 00011001100010010111111000000000
 11100000101000001000000000000000
-11000010000000000000001110100101
+11000010000000000000001110100011
 00011000101000100010001000000000
 00001001100000000000000000001000
 00011001100010010111111000000000
@@ -947,7 +945,7 @@
 00011111111100010111111000000000
 11100000101000011000000000000000
 01111000010001011111110000000000
-00100000001000110000001111000000
+00100000001000110000001110111110
 01111000001101111111110000000000
 01101000000000001000000000010111
 00011111111000001010001000000000
@@ -956,21 +954,21 @@
 00100000010000000011101001111010
 01101000000000001100110000101010
 00011111111000100010001000000000
-00100000010000000000001100011011
+00100000010000000000001100011001
 00100000011000000000000000000000
 01111000010011011111110000000000
 01111000010001011111110000000000
 00100000001000000011011101011100
-00100000010000000000001100100100
-00100000001000000000001111000000
+00100000010000000000001100100010
+00100000001000000000001110111110
 00100000010000000011101001111010
 01101000000010001100101111101001
 00100000001000000011101010010001
 00100000010000000101001111010010
 01101000000000100100110000000000
 10011000000000000001001000000000
-00100000010000000000001101111001
-00100000010000000000001111000101
+00100000010000000000001101110111
+00100000010000000000001111000011
 01111001001000000010101000000000
 01111000001011101111110000000000
 01111000001100000111110000000000
@@ -990,7 +988,7 @@
 11011000110000000000110011110101
 11101000110000001000000000000000
 00001000000000001000011000001000
-11000010000000000000001111011110
+11000010000000000000001111011100
 01111000001001000111110000000000
 00001000000000001000011000011000
 01111000010001000111110000000000
@@ -12286,6 +12284,8 @@
                                 
                                 
                                 
+                                
+                                
 00100000010000000011110001110100
 01111001001111111000000000100101
 01000100100000000100000000000000
Index: btkb/output/eeprom.dat
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/output/eeprom.dat	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/output/eeprom.dat	(working copy)
@@ -2,7 +2,7 @@
 02
 aa
 55
-a6
+9e
 0f
 c5
 12
@@ -15,51 +15,51 @@
 c0
 01
 80
-1d
+1b
 c0
 02
 80
-20
+1e
 c0
 48
 01
-4e
+4c
 c0
 49
 01
-18
+16
 c0
 4a
 01
-1e
+1c
 c0
 4a
 81
-08
+06
 c0
 58
 00
-ca
+c8
 c0
 58
 80
-cc
+ca
 c0
 59
 00
-e0
+de
 c0
 59
 80
-fa
+f8
 c0
 5b
 01
-03
+01
 c0
 5c
 80
-d4
+d2
 20
 20
 3b
@@ -67,31 +67,31 @@
 c0
 1f
 01
-c1
+bf
 c0
 1f
 81
-c5
+c3
 c0
 43
 80
-a9
+a7
 c0
 46
 81
-d3
+d1
 c0
 47
 81
-c9
+c7
 c0
 66
 81
-58
+56
 c0
 68
 00
-b4
+b2
 20
 20
 3b
@@ -104,14 +104,6 @@
 00
 8b
 81
-58
-28
-05
-20
-60
-01
-cd
-4c
 70
 80
 06
@@ -123,11 +115,11 @@
 20
 40
 00
-44
+42
 20
 40
 00
-25
+23
 20
 20
 30
@@ -147,7 +139,7 @@
 20
 40
 01
-e9
+e7
 20
 20
 30
@@ -155,7 +147,7 @@
 20
 40
 00
-a4
+a2
 20
 74
 00
@@ -171,7 +163,7 @@
 20
 40
 00
-85
+83
 60
 00
 cb
@@ -179,11 +171,11 @@
 c0
 00
 80
-38
+36
 c0
 03
 00
-42
+40
 1f
 e2
 04
@@ -199,7 +191,7 @@
 c3
 00
 00
-35
+33
 1a
 22
 0c
@@ -227,15 +219,15 @@
 20
 20
 00
-7d
+7b
 20
 40
 00
-85
+83
 20
 40
 00
-85
+83
 60
 00
 8b
@@ -243,7 +235,7 @@
 20
 40
 00
-3d
+3b
 20
 20
 7c
@@ -251,7 +243,7 @@
 20
 40
 00
-88
+86
 18
 c2
 04
@@ -275,7 +267,7 @@
 20
 20
 00
-7d
+7b
 68
 0a
 4c
@@ -355,11 +347,11 @@
 c2
 80
 00
-61
+5f
 c2
 80
 80
-63
+61
 da
 20
 00
@@ -367,7 +359,7 @@
 20
 40
 00
-74
+72
 70
 89
 71
@@ -383,7 +375,7 @@
 20
 40
 00
-64
+62
 da
 20
 00
@@ -391,7 +383,7 @@
 20
 20
 00
-74
+72
 70
 89
 71
@@ -399,7 +391,7 @@
 20
 20
 00
-64
+62
 70
 89
 71
@@ -491,7 +483,7 @@
 24
 3a
 00
-7b
+79
 79
 3f
 84
@@ -507,7 +499,7 @@
 20
 40
 00
-85
+83
 1f
 e2
 72
@@ -515,15 +507,15 @@
 20
 40
 00
-81
+7f
 20
 20
 00
-3d
+3b
 20
 40
 00
-85
+83
 e0
 a0
 80
@@ -531,7 +523,7 @@
 c2
 00
 00
-81
+7f
 20
 60
 00
@@ -539,7 +531,7 @@
 20
 40
 00
-88
+86
 e8
 c0
 80
@@ -607,11 +599,11 @@
 20
 40
 00
-9c
+9a
 c2
 00
 00
-94
+92
 18
 a2
 7e
@@ -659,7 +651,7 @@
 20
 20
 00
-a6
+a4
 68
 01
 4b
@@ -703,7 +695,7 @@
 24
 41
 00
-b0
+ae
 20
 20
 7c
@@ -759,11 +751,11 @@
 20
 40
 00
-be
+bc
 20
 20
 00
-b8
+b6
 68
 00
 cc
@@ -811,7 +803,7 @@
 20
 20
 00
-8d
+8b
 20
 40
 3b
@@ -975,7 +967,7 @@
 20
 40
 00
-a4
+a2
 24
 74
 00
@@ -983,7 +975,7 @@
 20
 40
 00
-a1
+9f
 24
 74
 00
@@ -999,15 +991,15 @@
 20
 40
 00
-ff
+fd
 20
 20
 00
-a4
+a2
 20
 40
 00
-f2
+f0
 24
 74
 00
@@ -1035,7 +1027,7 @@
 c0
 80
 00
-ff
+fd
 20
 60
 00
@@ -1043,7 +1035,7 @@
 20
 40
 00
-f2
+f0
 24
 74
 00
@@ -1063,7 +1055,7 @@
 20
 40
 01
-0a
+08
 20
 20
 3a
@@ -1075,7 +1067,7 @@
 24
 3a
 01
-10
+0e
 20
 40
 3d
@@ -1151,7 +1143,7 @@
 20
 40
 01
-1b
+19
 58
 00
 05
@@ -1211,7 +1203,7 @@
 c0
 ff
 81
-36
+34
 68
 02
 ca
@@ -1235,7 +1227,7 @@
 20
 40
 01
-3d
+3b
 70
 89
 55
@@ -1347,7 +1339,7 @@
 20
 40
 01
-45
+43
 20
 20
 3a
@@ -1395,7 +1387,7 @@
 58
 00
 01
-57
+55
 60
 01
 42
@@ -1403,7 +1395,7 @@
 58
 00
 00
-c3
+c1
 60
 01
 42
@@ -1411,7 +1403,7 @@
 58
 00
 01
-c8
+c6
 60
 01
 42
@@ -1419,7 +1411,7 @@
 58
 00
 00
-25
+23
 60
 01
 42
@@ -1427,7 +1419,7 @@
 58
 00
 01
-51
+4f
 60
 01
 42
@@ -1475,11 +1467,11 @@
 c0
 2d
 01
-86
+84
 20
 35
 81
-84
+82
 68
 01
 4c
@@ -1507,7 +1499,7 @@
 20
 40
 01
-91
+8f
 68
 04
 02
@@ -1515,7 +1507,7 @@
 24
 3a
 01
-7e
+7c
 68
 01
 4a
@@ -1527,7 +1519,7 @@
 20
 3a
 01
-7e
+7c
 60
 01
 4c
@@ -1535,7 +1527,7 @@
 20
 40
 01
-e6
+e4
 70
 4b
 a4
@@ -1543,7 +1535,7 @@
 20
 40
 00
-8d
+8b
 70
 4c
 97
@@ -1563,7 +1555,7 @@
 20
 20
 01
-80
+7e
 1c
 e2
 7e
@@ -1571,7 +1563,7 @@
 20
 3a
 01
-cb
+c9
 20
 40
 5b
@@ -1607,7 +1599,7 @@
 20
 20
 01
-80
+7e
 20
 40
 68
@@ -1647,11 +1639,11 @@
 c2
 80
 01
-a3
+a1
 c2
 80
 81
-b1
+af
 68
 01
 02
@@ -1839,7 +1831,7 @@
 20
 40
 00
-ff
+fd
 70
 4c
 97
@@ -1903,15 +1895,15 @@
 c0
 10
 81
-de
+dc
 c0
 11
 01
-e0
+de
 c0
 11
 81
-e3
+e1
 20
 20
 7c
@@ -1923,7 +1915,7 @@
 20
 20
 02
-ec
+ea
 79
 3f
 80
@@ -1935,7 +1927,7 @@
 20
 20
 02
-66
+64
 5f
 ff
 ff
@@ -1947,7 +1939,7 @@
 20
 20
 02
-b7
+b5
 58
 00
 00
@@ -1967,11 +1959,11 @@
 20
 40
 02
-0f
+0d
 24
 34
-02
-00
+01
+fe
 70
 4c
 15
@@ -1979,7 +1971,7 @@
 20
 40
 02
-2a
+28
 68
 00
 cb
@@ -1991,7 +1983,7 @@
 20
 40
 02
-88
+86
 68
 00
 cd
@@ -2003,7 +1995,7 @@
 20
 40
 00
-f2
+f0
 24
 74
 00
@@ -2055,7 +2047,7 @@
 20
 40
 00
-f2
+f0
 24
 74
 00
@@ -2095,7 +2087,7 @@
 24
 3a
 01
-fc
+fa
 68
 04
 4d
@@ -2119,15 +2111,15 @@
 c0
 ff
 82
-c0
+be
 20
 40
 02
-15
+13
 20
 40
 03
-50
+4e
 70
 4b
 e6
@@ -2151,15 +2143,15 @@
 c0
 00
 82
-1e
+1c
 c0
 01
 02
-22
+20
 c0
 01
 82
-26
+24
 68
 00
 cd
@@ -2187,7 +2179,7 @@
 20
 20
 02
-28
+26
 58
 00
 00
@@ -2203,7 +2195,7 @@
 20
 20
 02
-28
+26
 70
 4b
 e2
@@ -2235,19 +2227,19 @@
 20
 40
 02
-55
+53
 24
 37
 82
-3b
+39
 20
 40
 02
-69
+67
 20
 40
 02
-7a
+78
 68
 00
 cb
@@ -2271,11 +2263,11 @@
 c0
 ff
 82
-53
+51
 20
 40
 02
-4d
+4b
 70
 4b
 e7
@@ -2311,7 +2303,7 @@
 c0
 ff
 82
-65
+63
 68
 00
 cb
@@ -2319,7 +2311,7 @@
 c0
 7f
 82
-66
+64
 68
 00
 cb
@@ -2335,7 +2327,7 @@
 20
 21
 03
-6a
+68
 68
 00
 cb
@@ -2355,11 +2347,11 @@
 c0
 83
 82
-2b
+29
 20
 20
 03
-6a
+68
 58
 00
 00
@@ -2387,11 +2379,11 @@
 20
 40
 02
-77
+75
 20
 20
 02
-dc
+da
 78
 57
 fc
@@ -2399,7 +2391,7 @@
 20
 40
 03
-c8
+c6
 68
 00
 cc
@@ -2407,7 +2399,7 @@
 c0
 00
 82
-62
+60
 18
 00
 2a
@@ -2435,11 +2427,11 @@
 20
 40
 03
-82
+80
 20
 57
 83
-c0
+be
 20
 60
 00
@@ -2455,7 +2447,7 @@
 20
 20
 03
-c0
+be
 20
 60
 00
@@ -2475,7 +2467,7 @@
 20
 40
 03
-12
+10
 68
 00
 cb
@@ -2491,7 +2483,7 @@
 20
 40
 02
-71
+6f
 d8
 c0
 0c
@@ -2567,7 +2559,7 @@
 24
 41
 02
-86
+84
 68
 00
 cc
@@ -2603,7 +2595,7 @@
 20
 40
 03
-32
+30
 60
 08
 cc
@@ -2615,11 +2607,11 @@
 20
 40
 82
-96
+94
 24
 40
 82
-9a
+98
 98
 46
 7c
@@ -2627,7 +2619,7 @@
 24
 21
 02
-ae
+ac
 68
 00
 cc
@@ -2639,7 +2631,7 @@
 24
 21
 02
-9e
+9c
 68
 00
 cc
@@ -2647,7 +2639,7 @@
 c0
 00
 02
-ae
+ac
 20
 60
 00
@@ -2707,11 +2699,11 @@
 20
 40
 82
-98
+96
 24
 40
 82
-9c
+9a
 98
 46
 7c
@@ -2727,7 +2719,7 @@
 c0
 00
 02
-b5
+b3
 1f
 e0
 ff
@@ -2739,7 +2731,7 @@
 c0
 00
 02
-b5
+b3
 70
 4c
 3d
@@ -2755,7 +2747,7 @@
 c0
 01
 02
-b3
+b1
 1f
 e0
 fe
@@ -2767,7 +2759,7 @@
 c0
 00
 82
-ac
+aa
 70
 4c
 3d
@@ -2791,11 +2783,11 @@
 20
 40
 02
-bc
+ba
 20
 40
 02
-37
+35
 70
 4b
 ef
@@ -2819,11 +2811,11 @@
 20
 20
 03
-42
+40
 20
 40
 02
-bc
+ba
 68
 00
 cb
@@ -2839,15 +2831,15 @@
 c0
 00
 82
-c8
+c6
 c0
 01
 02
-cb
+c9
 c0
 01
 82
-ce
+cc
 20
 20
 3b
@@ -2863,7 +2855,7 @@
 20
 20
 02
-d0
+ce
 70
 4b
 ef
@@ -2875,7 +2867,7 @@
 20
 20
 02
-d0
+ce
 70
 4b
 ef
@@ -2919,15 +2911,15 @@
 20
 40
 03
-0d
+0b
 20
 40
 03
-50
+4e
 20
 40
 02
-13
+11
 20
 20
 34
@@ -2943,15 +2935,15 @@
 c0
 08
 82
-e2
+e0
 c0
 09
 02
-e4
+e2
 c0
 09
 82
-e6
+e4
 20
 60
 00
@@ -2963,7 +2955,7 @@
 20
 20
 02
-37
+35
 70
 4b
 ef
@@ -2971,7 +2963,7 @@
 20
 20
 02
-37
+35
 70
 4b
 ef
@@ -2991,11 +2983,11 @@
 20
 40
 03
-42
+40
 20
 20
 02
-37
+35
 c6
 11
 80
@@ -3003,11 +2995,11 @@
 20
 40
 03
-43
+41
 20
 40
 03
-6a
+68
 68
 00
 cb
@@ -3019,7 +3011,7 @@
 20
 40
 02
-ff
+fd
 58
 00
 00
@@ -3043,19 +3035,19 @@
 c0
 7f
 82
-66
+64
 20
 40
 02
-55
+53
 24
 37
 83
-08
+06
 20
 40
 02
-4d
+4b
 70
 4c
 13
@@ -3103,11 +3095,11 @@
 20
 40
 03
-0d
+0b
 20
 20
 03
-50
+4e
 68
 01
 4c
@@ -3123,11 +3115,11 @@
 20
 40
 03
-6a
+68
 20
 20
 02
-f4
+f2
 60
 08
 cb
@@ -3239,7 +3231,7 @@
 20
 40
 03
-2b
+29
 60
 08
 cc
@@ -3299,7 +3291,7 @@
 c2
 00
 03
-35
+33
 18
 49
 04
@@ -3367,7 +3359,7 @@
 c2
 00
 03
-46
+44
 1a
 22
 7e
@@ -3459,7 +3451,7 @@
 c0
 ff
 83
-62
+60
 68
 00
 cb
@@ -3483,7 +3475,7 @@
 c0
 00
 83
-68
+66
 d8
 c0
 0c
@@ -3507,7 +3499,7 @@
 20
 40
 03
-70
+6e
 18
 40
 84
@@ -3599,7 +3591,7 @@
 20
 40
 03
-79
+77
 78
 26
 fc
@@ -3631,7 +3623,7 @@
 24
 2c
 03
-c3
+c1
 78
 46
 fc
@@ -3671,7 +3663,7 @@
 24
 22
 83
-c0
+be
 09
 80
 00
@@ -3695,7 +3687,7 @@
 20
 22
 83
-9f
+9d
 68
 00
 8c
@@ -3711,7 +3703,7 @@
 24
 20
 83
-c0
+be
 09
 80
 00
@@ -3735,7 +3727,7 @@
 20
 22
 83
-a9
+a7
 09
 80
 00
@@ -3751,7 +3743,7 @@
 c2
 00
 03
-a5
+a3
 18
 a2
 22
@@ -3803,7 +3795,7 @@
 20
 23
 03
-c0
+be
 78
 37
 fc
@@ -3839,7 +3831,7 @@
 20
 40
 03
-1b
+19
 20
 60
 00
@@ -3859,11 +3851,11 @@
 20
 40
 03
-24
+22
 20
 20
 03
-c0
+be
 20
 40
 3a
@@ -3891,11 +3883,11 @@
 20
 40
 03
-79
+77
 20
 40
 03
-c5
+c3
 79
 20
 2a
@@ -3975,7 +3967,7 @@
 c2
 00
 03
-de
+dc
 78
 24
 7c
@@ -4008,8 +4000,8 @@
 60
 00
 00
-ca
-6b
+4c
+d1
 aa
 55
 40
@@ -4848,14 +4840,14 @@
 02
 01
 09
-0a
-5c
+04
+e8
 09
 02
 02
 09
-85
-02
+70
+21
 09
 02
 03
@@ -4969,23 +4961,6 @@
 01
 aa
 55
-04
-00
-91
-4c
-9f
-3e
-cd
-4d
-aa
-55
-01
-00
-8f
-4c
-04
-aa
-55
 dd
 01
 04
@@ -5099,10 +5074,10 @@
 2a
 07
 02
-8a
-24
-66
-82
+e8
+04
+21
+70
 01
 00
 0f
@@ -5642,6 +5617,33 @@
 64
 aa
 55
+04
+00
+4c
+4d
+20
+20
+06
+12
+aa
+55
+04
+00
+91
+4c
+9f
+3e
+cd
+4d
+aa
+55
+01
+00
+8f
+4c
+04
+aa
+55
 01
 00
 10
@@ -6029,5 +6031,5 @@
 6c
 59
 50
-c4
-6e
+37
+2c
Index: btkb/output/program.lis
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/output/program.lis	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/output/program.lis	(working copy)
@@ -2,1317 +2,1315 @@
 org 0x0000
 0000 c512800f bmark1 mark_ext_patch ,patch_ext 
 0001 c0000017 beq patch00_0 ,p_soft_reset 
-0002 c001801d beq patch00_3 ,p_main_loop 
-0003 c0028020 beq patch00_5 ,p_main_loop_end 
-0004 c048014e beq patch12_0 ,p_shutdown_radio 
-0005 c0490118 beq patch12_2 ,p_set_freq_rx 
-0006 c04a011e beq patch12_4 ,p_set_freq_tx 
-0007 c04a8108 beq patch12_5 ,p_initialize_radio_cont 
-0008 c05800ca beq patch16_0 ,p_lpm_sleep 
-0009 c05880cc beq patch16_1 ,p_lpm_recover_clk 
-000a c05900e0 beq patch16_2 ,p_lpm_dispatch 
-000b c05980fa beq patch16_3 ,p_lpm_dispatch_next 
-000c c05b0103 beq patch16_6 ,p_lpm_dispatch_unconn 
-000d c05c80d4 beq patch17_1 ,p_lpm_cal_xtal_startup 
+0002 c001801b beq patch00_3 ,p_main_loop 
+0003 c002801e beq patch00_5 ,p_main_loop_end 
+0004 c048014c beq patch12_0 ,p_shutdown_radio 
+0005 c0490116 beq patch12_2 ,p_set_freq_rx 
+0006 c04a011c beq patch12_4 ,p_set_freq_tx 
+0007 c04a8106 beq patch12_5 ,p_initialize_radio_cont 
+0008 c05800c8 beq patch16_0 ,p_lpm_sleep 
+0009 c05880ca beq patch16_1 ,p_lpm_recover_clk 
+000a c05900de beq patch16_2 ,p_lpm_dispatch 
+000b c05980f8 beq patch16_3 ,p_lpm_dispatch_next 
+000c c05b0101 beq patch16_6 ,p_lpm_dispatch_unconn 
+000d c05c80d2 beq patch17_1 ,p_lpm_cal_xtal_startup 
 000e 20203bf1 branch assert 
 
 patch_ext:
-000f c01f01c1 beq patch27_6 ,p_le_enable 
-0010 c01f81c5 beq patch27_7 ,p_le_disable 
-0011 c04380a9 beq patch30_7 ,p_ui_timer_check 
-0012 c04681d3 beq patch31_5 ,p_check_51cmd_once 
-0013 c04781c9 beq patch31_7 ,p_check_enter_hibernate 
-0014 c0668158 beq patch39_5 ,p_kb_init 
-0015 c06800b4 beq patch3a_0 ,p_kb_bb_event_timer 
+000f c01f01bf beq patch27_6 ,p_le_enable 
+0010 c01f81c3 beq patch27_7 ,p_le_disable 
+0011 c04380a7 beq patch30_7 ,p_ui_timer_check 
+0012 c04681d1 beq patch31_5 ,p_check_51cmd_once 
+0013 c04781c7 beq patch31_7 ,p_check_enter_hibernate 
+0014 c0668156 beq patch39_5 ,p_kb_init 
+0015 c06800b2 beq patch3a_0 ,p_kb_bb_event_timer 
 0016 20203bf1 branch assert 
 
 p_soft_reset:
 0017 6810813b hfetch 1 ,0x813b 
 0018 60008b81 store 1 ,mem_wakup_from_power_flag 
-0019 58280520 setarg 0x280520 
-001a 6001cd4c store 3 ,mem_version_yy_mm_dd 
-001b 70800608 hjam lock_otp ,core_misc_ctrl 
-001c 20203003 branch soft_reset + 2 
+0019 70800608 hjam lock_otp ,core_misc_ctrl 
+001a 20203003 branch soft_reset + 2 
 
 p_main_loop:
-001d 20400044 call p_ipc_timer_check 
-001e 20400025 call p_ipc_rx 
-001f 20203015 branch main_loop + 2 
+001b 20400042 call p_ipc_timer_check 
+001c 20400023 call p_ipc_rx 
+001d 20203015 branch main_loop + 2 
 
 p_main_loop_end:
-0020 20403392 call inquiry_scan_dispatch 
-0021 20403407 call page_scan_dispatch 
-0022 20403024 call connection_dispatch 
-0023 204001e9 call p_g24_dispatch 
-0024 20203022 branch main_loop + 15 
+001e 20403392 call inquiry_scan_dispatch 
+001f 20403407 call page_scan_dispatch 
+0020 20403024 call connection_dispatch 
+0021 204001e7 call p_g24_dispatch 
+0022 20203022 branch main_loop + 15 
 
 p_ipc_rx:
 
 p_ipc_rx0:
-0025 204000a4 call p_check_ipc_2bt 
-0026 20740000 rtn user 
-0027 1ff0fe00 byteswap pdata ,pdata 
-0028 1fe20c00 copy pdata ,contr 
-0029 20400085 call p_ipc_rx_byte 
-002a 6000cba7 store 1 ,mem_ipc_rx_type 
-002b c0008038 beq ipc_type_cmd ,p_ipc_rx_cmd 
-002c c0030042 beq ipc_type_24g ,p_ipc_rx_24g 
-002d 1fe20400 copy pdata ,temp 
-002e 18c22200 copy contr ,rega 
-002f 6800c040 fetch 1 ,mem_context 
-0030 c3000035 bbit0 state_inconn ,p_ipc_abondon_rx_data 
-0031 1a220c00 copy rega ,contr 
-0032 c6848000 rtnmark0 mark_context 
-0033 18427e00 copy temp ,pdata 
-0034 20600000 rtn 
+0023 204000a2 call p_check_ipc_2bt 
+0024 20740000 rtn user 
+0025 1ff0fe00 byteswap pdata ,pdata 
+0026 1fe20c00 copy pdata ,contr 
+0027 20400083 call p_ipc_rx_byte 
+0028 6000cba7 store 1 ,mem_ipc_rx_type 
+0029 c0008036 beq ipc_type_cmd ,p_ipc_rx_cmd 
+002a c0030040 beq ipc_type_24g ,p_ipc_rx_24g 
+002b 1fe20400 copy pdata ,temp 
+002c 18c22200 copy contr ,rega 
+002d 6800c040 fetch 1 ,mem_context 
+002e c3000033 bbit0 state_inconn ,p_ipc_abondon_rx_data 
+002f 1a220c00 copy rega ,contr 
+0030 c6848000 rtnmark0 mark_context 
+0031 18427e00 copy temp ,pdata 
+0032 20600000 rtn 
 
 p_ipc_abondon_rx_data:
-0035 1a220c00 copy rega ,contr 
-0036 d8a000f8 arg mem_tst_pktcnt_sync ,contw 
-0037 2020007d branch p_ipc_rx_cpy 
+0033 1a220c00 copy rega ,contr 
+0034 d8a000f8 arg mem_tst_pktcnt_sync ,contw 
+0035 2020007b branch p_ipc_rx_cpy 
 
 p_ipc_rx_cmd:
-0038 20400085 call p_ipc_rx_byte 
-0039 20400085 call p_ipc_rx_byte 
-003a 60008b7d store 1 ,mem_fifo_temp 
-003b 2040003d call p_ipc_next_rx 
-003c 20207c33 branch ui_ipc_send_cmd 
+0036 20400083 call p_ipc_rx_byte 
+0037 20400083 call p_ipc_rx_byte 
+0038 60008b7d store 1 ,mem_fifo_temp 
+0039 2040003b call p_ipc_next_rx 
+003a 20207c33 branch ui_ipc_send_cmd 
 
 p_ipc_next_rx:
-003d 20400088 call p_ipc_rx_updata_contr 
-003e 18c20400 copy contr ,temp 
-003f 18508400 byteswap temp ,temp 
-0040 60094b9a storet 2 ,mem_ipc_2bt_read_index 
-0041 20600000 rtn 
+003b 20400086 call p_ipc_rx_updata_contr 
+003c 18c20400 copy contr ,temp 
+003d 18508400 byteswap temp ,temp 
+003e 60094b9a storet 2 ,mem_ipc_2bt_read_index 
+003f 20600000 rtn 
 
 p_ipc_rx_24g:
-0042 d8a00cd5 arg mem_24g_txbuf ,contw 
-0043 2020007d branch p_ipc_rx_cpy 
+0040 d8a00cd5 arg mem_24g_txbuf ,contw 
+0041 2020007b branch p_ipc_rx_cpy 
 
 p_ipc_timer_check:
-0044 680a4c59 fetcht 4 ,mem_ipc_last_check_timer 
-0045 1c427e00 copy clkn_bt ,pdata 
-0046 98467e00 isub temp ,pdata 
-0047 d8400640 arg 1600 ,temp 
-0048 9846fc00 idiv temp 
-0049 20407efd call wait_div_end 
-004a 1807fe00 quotient pdata 
-004b 207a0000 rtn blank 
-004c 1c420400 copy clkn_bt ,temp 
-004d 600a4c59 storet 4 ,mem_ipc_last_check_timer 
-004e 68094ba5 fetcht 2 ,mem_ipc_bt_timer 
-004f 18508400 byteswap temp ,temp 
-0050 9840fe00 iadd temp ,pdata 
+0042 680a4c59 fetcht 4 ,mem_ipc_last_check_timer 
+0043 1c427e00 copy clkn_bt ,pdata 
+0044 98467e00 isub temp ,pdata 
+0045 d8400640 arg 1600 ,temp 
+0046 9846fc00 idiv temp 
+0047 20407efd call wait_div_end 
+0048 1807fe00 quotient pdata 
+0049 207a0000 rtn blank 
+004a 1c420400 copy clkn_bt ,temp 
+004b 600a4c59 storet 4 ,mem_ipc_last_check_timer 
+004c 68094ba5 fetcht 2 ,mem_ipc_bt_timer 
+004d 18508400 byteswap temp ,temp 
+004e 9840fe00 iadd temp ,pdata 
+004f 1ff0fe00 byteswap pdata ,pdata 
+0050 60014ba5 store 2 ,mem_ipc_bt_timer 
 0051 1ff0fe00 byteswap pdata ,pdata 
-0052 60014ba5 store 2 ,mem_ipc_bt_timer 
-0053 1ff0fe00 byteswap pdata ,pdata 
-0054 1fe17e03 and pdata ,0x3 ,pdata 
-0055 c1800000 rtnne 0 
-0056 6800cc8f fetch 1 ,mem_adc_config_flag 
-0057 c2800061 bbit1 adc_config_vinlpm ,p_adc_check_vinlpm 
-0058 c2808063 bbit1 adc_config_hvin ,p_adc_check_hvin 
+0052 1fe17e03 and pdata ,0x3 ,pdata 
+0053 c1800000 rtnne 0 
+0054 6800cc8f fetch 1 ,mem_adc_config_flag 
+0055 c280005f bbit1 adc_config_vinlpm ,p_adc_check_vinlpm 
+0056 c2808061 bbit1 adc_config_hvin ,p_adc_check_hvin 
 
 p_adc_check_gpio:
-0059 da200000 arg 0 ,rega 
-005a 20400074 call p_setup_adc_gpio_pu_setup 
-005b 7089718f hjam 0x8f ,rf_adc_mode 
-005c 6800cc90 fetch 1 ,mem_adc_channel 
-005d 60108973 hstore 1 ,rf_adc_ch 
-005e 20400064 call p_read_adc 
-005f da200001 arg 1 ,rega 
-0060 20200074 branch p_setup_adc_gpio_pu_setup 
+0057 da200000 arg 0 ,rega 
+0058 20400072 call p_setup_adc_gpio_pu_setup 
+0059 7089718f hjam 0x8f ,rf_adc_mode 
+005a 6800cc90 fetch 1 ,mem_adc_channel 
+005b 60108973 hstore 1 ,rf_adc_ch 
+005c 20400062 call p_read_adc 
+005d da200001 arg 1 ,rega 
+005e 20200072 branch p_setup_adc_gpio_pu_setup 
 
 p_adc_check_vinlpm:
-0061 708971bf hjam 0xbf ,rf_adc_mode 
-0062 20200064 branch p_read_adc 
+005f 708971bf hjam 0xbf ,rf_adc_mode 
+0060 20200062 branch p_read_adc 
 
 p_adc_check_hvin:
-0063 708971af hjam 0xaf ,rf_adc_mode 
+0061 708971af hjam 0xaf ,rf_adc_mode 
 
 p_read_adc:
-0064 68108053 hfetch 1 ,core_uart_baud + 1 
-0065 79207e07 set1 7 ,pdata 
-0066 60108053 hstore 1 ,core_uart_baud + 1 
-0067 68108973 hfetch 1 ,rf_adc_ch 
-0068 1fe1fe30 or_into 0x30 ,pdata 
-0069 60108973 hstore 1 ,rf_adc_ch 
-006a 7089067c hjam 0x7c ,rfen_adc 
-006b 708972aa hjam 0xaa ,rf_adc_gc 
-006c 20001388 nop 5000 
-006d 68190150 hfetcht 2 ,core_adc_sum 
-006e 68108053 hfetch 1 ,core_uart_baud + 1 
-006f 793ffe07 set0 7 ,pdata 
-0070 60108053 hstore 1 ,core_uart_baud + 1 
-0071 18508400 byteswap temp ,temp 
-0072 60094c95 storet 2 ,mem_adc_current_value 
-0073 20600000 rtn 
+0062 68108053 hfetch 1 ,core_uart_baud + 1 
+0063 79207e07 set1 7 ,pdata 
+0064 60108053 hstore 1 ,core_uart_baud + 1 
+0065 68108973 hfetch 1 ,rf_adc_ch 
+0066 1fe1fe30 or_into 0x30 ,pdata 
+0067 60108973 hstore 1 ,rf_adc_ch 
+0068 7089067c hjam 0x7c ,rfen_adc 
+0069 708972aa hjam 0xaa ,rf_adc_gc 
+006a 20001388 nop 5000 
+006b 68190150 hfetcht 2 ,core_adc_sum 
+006c 68108053 hfetch 1 ,core_uart_baud + 1 
+006d 793ffe07 set0 7 ,pdata 
+006e 60108053 hstore 1 ,core_uart_baud + 1 
+006f 18508400 byteswap temp ,temp 
+0070 60094c95 storet 2 ,mem_adc_current_value 
+0071 20600000 rtn 
 
 p_setup_adc_gpio_pu_setup:
-0074 d8400021 arg 0x21 ,temp 
-0075 6800cc90 fetch 1 ,mem_adc_channel 
-0076 98460400 isub temp ,temp 
-0077 1a227e00 copy rega ,pdata 
-0078 79200407 set1 gpio_active_bit ,temp 
-0079 243a007b nbranch p_setup_adc_gpio_pu_setup_exit ,blank 
-007a 793f8407 set0 gpio_active_bit ,temp 
+0072 d8400021 arg 0x21 ,temp 
+0073 6800cc90 fetch 1 ,mem_adc_channel 
+0074 98460400 isub temp ,temp 
+0075 1a227e00 copy rega ,pdata 
+0076 79200407 set1 gpio_active_bit ,temp 
+0077 243a0079 nbranch p_setup_adc_gpio_pu_setup_exit ,blank 
+0078 793f8407 set0 gpio_active_bit ,temp 
 
 p_setup_adc_gpio_pu_setup_exit:
-007b d8a08078 arg core_gpio_pu0 ,contw 
-007c 202069f4 branch gpio_set_bit 
+0079 d8a08078 arg core_gpio_pu0 ,contw 
+007a 202069f4 branch gpio_set_bit 
 
 p_ipc_rx_cpy:
-007d 20400085 call p_ipc_rx_byte 
-007e 1fe27200 copy pdata ,loopcnt 
+007b 20400083 call p_ipc_rx_byte 
+007c 1fe27200 copy pdata ,loopcnt 
 
 p_ipc_copy:
-007f 20400081 call p_ipc_cpy_loop 
-0080 2020003d branch p_ipc_next_rx 
+007d 2040007f call p_ipc_cpy_loop 
+007e 2020003b branch p_ipc_next_rx 
 
 p_ipc_cpy_loop:
-0081 20400085 call p_ipc_rx_byte 
-0082 e0a08000 istore 1 ,contw 
-0083 c2000081 loop p_ipc_cpy_loop 
-0084 20600000 rtn 
+007f 20400083 call p_ipc_rx_byte 
+0080 e0a08000 istore 1 ,contw 
+0081 c200007f loop p_ipc_cpy_loop 
+0082 20600000 rtn 
 
 p_ipc_rx_byte:
-0085 20400088 call p_ipc_rx_updata_contr 
-0086 e8c08000 ifetch 1 ,contr 
-0087 20600000 rtn 
+0083 20400086 call p_ipc_rx_updata_contr 
+0084 e8c08000 ifetch 1 ,contr 
+0085 20600000 rtn 
 
 p_ipc_rx_updata_contr:
-0088 58004b36 setarg mem_ipc_2bt_fifo_end 
-0089 98c67c00 isub contr ,null 
-008a 24628000 nrtn zero 
-008b d8c04aa0 arg mem_ipc_2bt_fifo_head ,contr 
-008c 20600000 rtn 
+0086 58004b36 setarg mem_ipc_2bt_fifo_end 
+0087 98c67c00 isub contr ,null 
+0088 24628000 nrtn zero 
+0089 d8c04aa0 arg mem_ipc_2bt_fifo_head ,contr 
+008a 20600000 rtn 
 
 p_ipc_tx_evt:
-008d df200003 arg 3 ,loopcnt 
-008e d8c04ba2 arg mem_ipc_tx_evt_buff ,contr 
+008b df200003 arg 3 ,loopcnt 
+008c d8c04ba2 arg mem_ipc_tx_evt_buff ,contr 
 
 p_ipc_tx_cpy:
-008f 18c22200 copy contr ,rega 
-0090 68014ba0 fetch 2 ,mem_ipc_2c51_write_index 
-0091 1ff0fe00 byteswap pdata ,pdata 
-0092 1fe20a00 copy pdata ,contw 
-0093 1a220c00 copy rega ,contr 
+008d 18c22200 copy contr ,rega 
+008e 68014ba0 fetch 2 ,mem_ipc_2c51_write_index 
+008f 1ff0fe00 byteswap pdata ,pdata 
+0090 1fe20a00 copy pdata ,contw 
+0091 1a220c00 copy rega ,contr 
 
 p_ipc_tx_loop:
-0094 e8c08000 ifetch 1 ,contr 
-0095 e0a08000 istore 1 ,contw 
-0096 2040009c call p_ipc_tx_updata_contw 
-0097 c2000094 loop p_ipc_tx_loop 
-0098 18a27e00 copy contw ,pdata 
-0099 1ff0fe00 byteswap pdata ,pdata 
-009a 60014ba0 store 2 ,mem_ipc_2c51_write_index 
-009b 20600000 rtn 
+0092 e8c08000 ifetch 1 ,contr 
+0093 e0a08000 istore 1 ,contw 
+0094 2040009a call p_ipc_tx_updata_contw 
+0095 c2000092 loop p_ipc_tx_loop 
+0096 18a27e00 copy contw ,pdata 
+0097 1ff0fe00 byteswap pdata ,pdata 
+0098 60014ba0 store 2 ,mem_ipc_2c51_write_index 
+0099 20600000 rtn 
 
 p_ipc_tx_updata_contw:
-009c 58004b9a setarg mem_ipc_2c51_fifo_end 
-009d 98a67c00 isub contw ,null 
-009e 24628000 nrtn zero 
-009f d8a04b36 arg mem_ipc_2c51_fifo_head ,contw 
-00a0 20600000 rtn 
+009a 58004b9a setarg mem_ipc_2c51_fifo_end 
+009b 98a67c00 isub contw ,null 
+009c 24628000 nrtn zero 
+009d d8a04b36 arg mem_ipc_2c51_fifo_head ,contw 
+009e 20600000 rtn 
 
 p_check_ipc_2c51:
-00a1 68014b9e fetch 2 ,mem_ipc_2c51_read_index 
-00a2 68094ba0 fetcht 2 ,mem_ipc_2c51_write_index 
-00a3 202000a6 branch p_check_ipc_common 
+009f 68014b9e fetch 2 ,mem_ipc_2c51_read_index 
+00a0 68094ba0 fetcht 2 ,mem_ipc_2c51_write_index 
+00a1 202000a4 branch p_check_ipc_common 
 
 p_check_ipc_2bt:
-00a4 68014b9a fetch 2 ,mem_ipc_2bt_read_index 
-00a5 68094b9c fetcht 2 ,mem_ipc_2bt_write_index 
+00a2 68014b9a fetch 2 ,mem_ipc_2bt_read_index 
+00a3 68094b9c fetcht 2 ,mem_ipc_2bt_write_index 
 
 p_check_ipc_common:
-00a6 98467c00 isub temp ,null 
-00a7 2022e9b1 branch enable_usr ,zero 
-00a8 2020320b branch disable_usr 
+00a4 98467c00 isub temp ,null 
+00a5 2022e9b1 branch enable_usr ,zero 
+00a6 2020320b branch disable_usr 
 
 p_ui_timer_check:
-00a9 1c427e00 copy clkn_bt ,pdata 
-00aa 60024d48 store 4 ,mem_ui_timer_last_btclk_temp 
-00ab 6808c7ef fetcht 1 ,mem_ui_timer_last_btclk + 3 
-00ac 6800cd4b fetch 1 ,mem_ui_timer_last_btclk_temp + 3 
-00ad 98467c00 isub temp ,null 
-00ae 244100b0 ncall p_ui_timer_reinit ,positive 
-00af 20207c06 branch ui_timer_check + 2 
+00a7 1c427e00 copy clkn_bt ,pdata 
+00a8 60024d48 store 4 ,mem_ui_timer_last_btclk_temp 
+00a9 6808c7ef fetcht 1 ,mem_ui_timer_last_btclk + 3 
+00aa 6800cd4b fetch 1 ,mem_ui_timer_last_btclk_temp + 3 
+00ab 98467c00 isub temp ,null 
+00ac 244100ae ncall p_ui_timer_reinit ,positive 
+00ad 20207c06 branch ui_timer_check + 2 
 
 p_ui_timer_reinit:
-00b0 680a4d48 fetcht 4 ,mem_ui_timer_last_btclk_temp 
-00b1 600a47ec storet 4 ,mem_ui_timer_last_btclk 
-00b2 600a4c59 storet 4 ,mem_ipc_last_check_timer 
-00b3 20600000 rtn 
+00ae 680a4d48 fetcht 4 ,mem_ui_timer_last_btclk_temp 
+00af 600a47ec storet 4 ,mem_ui_timer_last_btclk 
+00b0 600a4c59 storet 4 ,mem_ipc_last_check_timer 
+00b1 20600000 rtn 
 
 p_kb_bb_event_timer:
-00b4 60088259 storet 1 ,mem_app_evt_timer_count 
-00b5 6800cc8d fetch 1 ,mem_ipc_bt_100ms_timer 
-00b6 1fe0fe01 increase 1 ,pdata 
-00b7 6000cc8d store 1 ,mem_ipc_bt_100ms_timer 
+00b2 60088259 storet 1 ,mem_app_evt_timer_count 
+00b3 6800cc8d fetch 1 ,mem_ipc_bt_100ms_timer 
+00b4 1fe0fe01 increase 1 ,pdata 
+00b5 6000cc8d store 1 ,mem_ipc_bt_100ms_timer 
 
 p_kb_bb_event_100ms_loop:
-00b8 68008259 fetch 1 ,mem_app_evt_timer_count 
-00b9 207a0000 rtn blank 
-00ba 1fe0ffff increase -1 ,pdata 
-00bb 60008259 store 1 ,mem_app_evt_timer_count 
-00bc 204000be call p_kb_long_sleep_timer 
-00bd 202000b8 branch p_kb_bb_event_100ms_loop 
+00b6 68008259 fetch 1 ,mem_app_evt_timer_count 
+00b7 207a0000 rtn blank 
+00b8 1fe0ffff increase -1 ,pdata 
+00b9 60008259 store 1 ,mem_app_evt_timer_count 
+00ba 204000bc call p_kb_long_sleep_timer 
+00bb 202000b6 branch p_kb_bb_event_100ms_loop 
 
 p_kb_long_sleep_timer:
-00be 6800cc15 fetch 1 ,mem_24g_enter_lpm_timer 
-00bf 207a0000 rtn blank 
-00c0 1fe0ffff increase -1 ,pdata 
-00c1 6000cc15 store 1 ,mem_24g_enter_lpm_timer 
-00c2 20600000 rtn 
+00bc 6800cc15 fetch 1 ,mem_24g_enter_lpm_timer 
+00bd 207a0000 rtn blank 
+00be 1fe0ffff increase -1 ,pdata 
+00bf 6000cc15 store 1 ,mem_24g_enter_lpm_timer 
+00c0 20600000 rtn 
 
 p_c51_user_event:
-00c3 1a627e00 copy regc ,pdata 
-00c4 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
-00c5 c1280000 rtneq bt_evt_timer_init 
-00c6 1a627e00 copy regc ,pdata 
-00c7 207a0000 rtn blank 
-00c8 6000cba4 store 1 ,mem_ipc_tx_evt 
-00c9 2020008d branch p_ipc_tx_evt 
+00c1 1a627e00 copy regc ,pdata 
+00c2 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+00c3 c1280000 rtneq bt_evt_timer_init 
+00c4 1a627e00 copy regc ,pdata 
+00c5 207a0000 rtn blank 
+00c6 6000cba4 store 1 ,mem_ipc_tx_evt 
+00c7 2020008b branch p_ipc_tx_evt 
 
 p_lpm_sleep:
-00ca 20403b36 call xtal_fast_wake 
-00cb 20203cdc branch lpm_sleep + 2 
+00c8 20403b36 call xtal_fast_wake 
+00c9 20203cdc branch lpm_sleep + 2 
 
 p_lpm_recover_clk:
-00cc 70416e7f jam 0x7f ,mem_seqi 
-00cd 20403cf3 call lpm_recover_clk + 2 
-00ce 6800cc97 fetch 1 ,mem_hibernate_flag 
-00cf 207a0000 rtn blank 
-00d0 704c9700 jam 0 ,mem_hibernate_flag 
-00d1 1c427e00 copy clkn_bt ,pdata 
-00d2 60024c59 store 4 ,mem_ipc_last_check_timer 
-00d3 20600000 rtn 
+00ca 70416e7f jam 0x7f ,mem_seqi 
+00cb 20403cf3 call lpm_recover_clk + 2 
+00cc 6800cc97 fetch 1 ,mem_hibernate_flag 
+00cd 207a0000 rtn blank 
+00ce 704c9700 jam 0 ,mem_hibernate_flag 
+00cf 1c427e00 copy clkn_bt ,pdata 
+00d0 60024c59 store 4 ,mem_ipc_last_check_timer 
+00d1 20600000 rtn 
 
 p_lpm_cal_xtal_startup:
-00d4 6800c219 fetch 1 ,mem_lpm_xtalcnt 
-00d5 247a0000 nrtn blank 
-00d6 70804206 hjam clksel_rc ,core_clksel 
-00d7 58000f0c setarg 0xf0c 
-00d8 20403da7 call lpm_write_config 
-00d9 58030d40 setarg 200000 
-00da 20403bf3 call sleep 
-00db 37d98200 until null ,lpo_edge 
-00dc 1e226000 copy lpo_time ,alarm 
-00dd 20403b36 call xtal_fast_wake 
-00de 20001388 nop 5000 
-00df 20203d9d branch lpm_cal_xtal_startup + 12 
+00d2 6800c219 fetch 1 ,mem_lpm_xtalcnt 
+00d3 247a0000 nrtn blank 
+00d4 70804206 hjam clksel_rc ,core_clksel 
+00d5 58000f0c setarg 0xf0c 
+00d6 20403da7 call lpm_write_config 
+00d7 58030d40 setarg 200000 
+00d8 20403bf3 call sleep 
+00d9 37d98200 until null ,lpo_edge 
+00da 1e226000 copy lpo_time ,alarm 
+00db 20403b36 call xtal_fast_wake 
+00dc 20001388 nop 5000 
+00dd 20203d9d branch lpm_cal_xtal_startup + 12 
 
 p_lpm_dispatch:
-00e0 c6118000 rtnmark1 mark_24g 
-00e1 680147f4 fetch 2 ,mem_ui_state_map 
-00e2 c284bd1e bbit1 ui_state_ble_connected ,lpm_dispatch + 2 
-00e3 20403cab call lpo_calibration 
-00e4 6801c210 fetch 3 ,mem_clks_per_lpo 
+00de c6118000 rtnmark1 mark_24g 
+00df 680147f4 fetch 2 ,mem_ui_state_map 
+00e0 c284bd1e bbit1 ui_state_ble_connected ,lpm_dispatch + 2 
+00e1 20403cab call lpo_calibration 
+00e2 6801c210 fetch 3 ,mem_clks_per_lpo 
+00e3 207a0000 rtn blank 
+00e4 6800c131 fetch 1 ,mem_lpm_mode 
 00e5 207a0000 rtn blank 
-00e6 6800c131 fetch 1 ,mem_lpm_mode 
-00e7 207a0000 rtn blank 
-00e8 2040527e call l2cap_malloc_is_fifo_empty 
+00e6 2040527e call l2cap_malloc_is_fifo_empty 
+00e7 247a0000 nrtn blank 
+00e8 20403dca call lpm_check_wake_lock 
 00e9 247a0000 nrtn blank 
-00ea 20403dca call lpm_check_wake_lock 
-00eb 247a0000 nrtn blank 
-00ec 20403b36 call xtal_fast_wake 
-00ed 6800c7dc fetch 1 ,mem_ssp_enable 
-00ee 203a3d25 branch lpm_dispatch0 ,blank 
-00ef 6800c793 fetch 1 ,mem_sp_local_key_invalid 
-00f0 207a0000 rtn blank 
-00f1 20203d25 branch lpm_dispatch0 
+00ea 20403b36 call xtal_fast_wake 
+00eb 6800c7dc fetch 1 ,mem_ssp_enable 
+00ec 203a3d25 branch lpm_dispatch0 ,blank 
+00ed 6800c793 fetch 1 ,mem_sp_local_key_invalid 
+00ee 207a0000 rtn blank 
+00ef 20203d25 branch lpm_dispatch0 
 
 p_check_ipc_for_lpm:
-00f2 204000a4 call p_check_ipc_2bt 
+00f0 204000a2 call p_check_ipc_2bt 
+00f1 24740000 nrtn user 
+00f2 2040009f call p_check_ipc_2c51 
 00f3 24740000 nrtn user 
-00f4 204000a1 call p_check_ipc_2c51 
-00f5 24740000 nrtn user 
-00f6 700b7f01 jam 1 ,mem_c51_lpm_lock 
-00f7 700b7e01 jam syc_task_lpm ,mem_c51_flag 
-00f8 204000ff call p_c51_wait 
-00f9 202000a4 branch p_check_ipc_2bt 
+00f4 700b7f01 jam 1 ,mem_c51_lpm_lock 
+00f5 700b7e01 jam syc_task_lpm ,mem_c51_flag 
+00f6 204000fd call p_c51_wait 
+00f7 202000a2 branch p_check_ipc_2bt 
 
 p_lpm_dispatch_next:
-00fa 204000f2 call p_check_ipc_for_lpm 
-00fb 24740000 nrtn user 
-00fc 68008b7f fetch 1 ,mem_c51_lpm_lock 
-00fd 247a0000 nrtn blank 
-00fe 20203d2d branch lpm_dispatch1 
+00f8 204000f0 call p_check_ipc_for_lpm 
+00f9 24740000 nrtn user 
+00fa 68008b7f fetch 1 ,mem_c51_lpm_lock 
+00fb 247a0000 nrtn blank 
+00fc 20203d2d branch lpm_dispatch1 
 
 p_c51_wait:
-00ff 68008b7e fetch 1 ,mem_c51_flag 
-0100 2000000a nop 10 
-0101 c08000ff bne 0 ,p_c51_wait 
-0102 20600000 rtn 
+00fd 68008b7e fetch 1 ,mem_c51_flag 
+00fe 2000000a nop 10 
+00ff c08000fd bne 0 ,p_c51_wait 
+0100 20600000 rtn 
 
 p_lpm_dispatch_unconn:
-0103 204000f2 call p_check_ipc_for_lpm 
-0104 24740000 nrtn user 
-0105 68008b7f fetch 1 ,mem_c51_lpm_lock 
-0106 247a0000 nrtn blank 
-0107 20203d4f branch lpm_dispatch_unconn + 2 
+0101 204000f0 call p_check_ipc_for_lpm 
+0102 24740000 nrtn user 
+0103 68008b7f fetch 1 ,mem_c51_lpm_lock 
+0104 247a0000 nrtn blank 
+0105 20203d4f branch lpm_dispatch_unconn + 2 
 
 p_initialize_radio_cont:
-0108 2040010a call p_switchto_dpllclk 
-0109 20203aaf branch initialize_radio_cont + 4 
+0106 20400108 call p_switchto_dpllclk 
+0107 20203aaf branch initialize_radio_cont + 4 
 
 p_switchto_dpllclk:
-010a 6800c219 fetch 1 ,mem_lpm_xtalcnt 
-010b 243a0110 nbranch p_switchdpll_nocal ,blank 
-010c 20403d91 call lpm_cal_xtal_startup 
+0108 6800c219 fetch 1 ,mem_lpm_xtalcnt 
+0109 243a010e nbranch p_switchdpll_nocal ,blank 
+010a 20403d91 call lpm_cal_xtal_startup 
+010b 20007530 nop 30000 
+010c 20007530 nop 30000 
 010d 20007530 nop 30000 
-010e 20007530 nop 30000 
-010f 20007530 nop 30000 
 
 p_switchdpll_nocal:
-0110 20403b0a call switchto_dpllclk 
-0111 70804204 hjam clksel_xtal ,core_clksel 
-0112 6810896b hfetch 1 ,rf_clkpll_frac + 2 
-0113 1fe17ecf and_into 0xcf ,pdata 
+010e 20403b0a call switchto_dpllclk 
+010f 70804204 hjam clksel_xtal ,core_clksel 
+0110 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+0111 1fe17ecf and_into 0xcf ,pdata 
+0112 6010896b hstore 1 ,rf_clkpll_frac + 2 
+0113 1fe1fe30 or_into 0x30 ,pdata 
 0114 6010896b hstore 1 ,rf_clkpll_frac + 2 
-0115 1fe1fe30 or_into 0x30 ,pdata 
-0116 6010896b hstore 1 ,rf_clkpll_frac + 2 
-0117 20600000 rtn 
+0115 20600000 rtn 
 
 p_set_freq_rx:
-0118 60088017 storet 1 ,mem_last_freq 
-0119 1840a204 add temp ,rx_freq_offset ,rega 
-011a 20203a86 branch set_freq_rx + 4 
+0116 60088017 storet 1 ,mem_last_freq 
+0117 1840a204 add temp ,rx_freq_offset ,rega 
+0118 20203a86 branch set_freq_rx + 4 
 
 p_set_freq_tx_common:
-011b 60088017 storet 1 ,mem_last_freq 
-011c 1840a200 add temp ,0 ,rega 
-011d 20203ab6 branch rf_write_freq 
+0119 60088017 storet 1 ,mem_last_freq 
+011a 1840a200 add temp ,0 ,rega 
+011b 20203ab6 branch rf_write_freq 
 
 p_set_freq_tx:
-011e 2040011b call p_set_freq_tx_common 
-011f 58000500 setarg param_pll_setup 
-0120 20403bf3 call sleep 
+011c 20400119 call p_set_freq_tx_common 
+011d 58000500 setarg param_pll_setup 
+011e 20403bf3 call sleep 
 
 p_txon:
-0121 70890601 hjam 0x1 ,rfen_adc 
-0122 7089003c hjam 0x3c ,rfen_rx 
-0123 708901e0 hjam 0xe0 ,rfen_tx 
-0124 70896d12 hjam 0x12 ,0x96d 
-0125 2000000a nop 10 
-0126 70890201 hjam 0x01 ,rfen_mdm 
-0127 7089023d hjam 0x3d ,rfen_mdm 
+011f 70890601 hjam 0x1 ,rfen_adc 
+0120 7089003c hjam 0x3c ,rfen_rx 
+0121 708901e0 hjam 0xe0 ,rfen_tx 
+0122 70896d12 hjam 0x12 ,0x96d 
+0123 2000000a nop 10 
+0124 70890201 hjam 0x01 ,rfen_mdm 
+0125 7089023d hjam 0x3d ,rfen_mdm 
+0126 2000000a nop 10 
+0127 708903b7 hjam 0xb7 ,rfen_sn 
 0128 2000000a nop 10 
-0129 708903b7 hjam 0xb7 ,rfen_sn 
-012a 2000000a nop 10 
-012b 7089027d hjam 0x7d ,rfen_mdm 
-012c 6800cbef fetch 1 ,mem_24g_pairing_sm 
-012d c0ff8136 bne state_24g_pairing_success ,p_txpower_0dbm 
-012e 6802ca91 fetch 5 ,mem_5db_tx_power_param 
+0129 7089027d hjam 0x7d ,rfen_mdm 
+012a 6800cbef fetch 1 ,mem_24g_pairing_sm 
+012b c0ff8134 bne state_24g_pairing_success ,p_txpower_0dbm 
+012c 6802ca91 fetch 5 ,mem_5db_tx_power_param 
+012d e0a28000 istore 5 ,contw 
+012e e8c28000 ifetch 5 ,contr 
 012f e0a28000 istore 5 ,contw 
-0130 e8c28000 ifetch 5 ,contr 
-0131 e0a28000 istore 5 ,contw 
-0132 708956df hjam 0xdf ,0x956 
-0133 2040013d call p_set_tx_step_power 
-0134 708955df hjam 0xdf ,0x955 
-0135 20600000 rtn 
+0130 708956df hjam 0xdf ,0x956 
+0131 2040013b call p_set_tx_step_power 
+0132 708955df hjam 0xdf ,0x955 
+0133 20600000 rtn 
 
 p_txpower_0dbm:
-0136 6802ca87 fetch 5 ,mem_24g_paring_tx_power_param 
+0134 6802ca87 fetch 5 ,mem_24g_paring_tx_power_param 
+0135 e0a28000 istore 5 ,contw 
+0136 e8c28000 ifetch 5 ,contr 
 0137 e0a28000 istore 5 ,contw 
-0138 e8c28000 ifetch 5 ,contr 
-0139 e0a28000 istore 5 ,contw 
-013a 708956c2 hjam 0xc2 ,0x956 
-013b 708955d0 hjam 0xd0 ,0x955 
-013c 20600000 rtn 
+0138 708956c2 hjam 0xc2 ,0x956 
+0139 708955d0 hjam 0xd0 ,0x955 
+013a 20600000 rtn 
 
 p_set_tx_step_power:
+013b 20000004 nop 4 
+013c 708955d1 hjam 0xd1 ,0x955 
 013d 20000004 nop 4 
-013e 708955d1 hjam 0xd1 ,0x955 
+013e 708955d2 hjam 0xd2 ,0x955 
 013f 20000004 nop 4 
-0140 708955d2 hjam 0xd2 ,0x955 
+0140 708955d4 hjam 0xd4 ,0x955 
 0141 20000004 nop 4 
-0142 708955d4 hjam 0xd4 ,0x955 
-0143 20000004 nop 4 
-0144 20600000 rtn 
+0142 20600000 rtn 
 
 p_tx_ramp_down_common:
-0145 708955d4 hjam 0xd4 ,0x955 
+0143 708955d4 hjam 0xd4 ,0x955 
+0144 20000004 nop 4 
+0145 708955d2 hjam 0xd2 ,0x955 
 0146 20000004 nop 4 
-0147 708955d2 hjam 0xd2 ,0x955 
+0147 708955d1 hjam 0xd1 ,0x955 
 0148 20000004 nop 4 
-0149 708955d1 hjam 0xd1 ,0x955 
-014a 20000004 nop 4 
-014b 708955d0 hjam 0xd0 ,0x955 
-014c 708956c0 hjam 0xc0 ,0x956 
-014d 20600000 rtn 
+0149 708955d0 hjam 0xd0 ,0x955 
+014a 708956c0 hjam 0xc0 ,0x956 
+014b 20600000 rtn 
 
 p_shutdown_radio:
-014e 2030ba6f branch shutdown_radio + 2 ,is_rx 
-014f 20400145 call p_tx_ramp_down_common 
-0150 20203a6f branch shutdown_radio + 2 
+014c 2030ba6f branch shutdown_radio + 2 ,is_rx 
+014d 20400143 call p_tx_ramp_down_common 
+014e 20203a6f branch shutdown_radio + 2 
 
 p_kb_before_hibernate:
-0151 78347c00 enable user 
-0152 68120138 hfetch 4 ,0x8138 
-0153 79347e1a setflag user ,26 ,pdata 
-0154 6012004c hstore 4 ,core_lpm_reg 
-0155 20403db0 call lpm_write_ctrl 
-0156 7000a201 jam 1 ,mem_lpm_current_mult 
+014f 78347c00 enable user 
+0150 68120138 hfetch 4 ,0x8138 
+0151 79347e1a setflag user ,26 ,pdata 
+0152 6012004c hstore 4 ,core_lpm_reg 
+0153 20403db0 call lpm_write_ctrl 
+0154 7000a201 jam 1 ,mem_lpm_current_mult 
 
 p_kb_bt_lpm_before:
-0157 20600000 rtn 
+0155 20600000 rtn 
 
 p_kb_init:
-0158 700b7e00 jam 0 ,mem_c51_flag 
-0159 70017706 jam 6 ,mem_connection_options 
-015a 20403fa4 call app_lpm_mult_enable 
-015b 58000157 setarg p_kb_bt_lpm_before 
-015c 6001428a store 2 ,mem_cb_before_lpm 
-015d 580000c3 setarg p_c51_user_event 
-015e 60014292 store 2 ,mem_cb_bb_event_process 
-015f 580001c8 setarg p_mouse_idle 
-0160 60014290 store 2 ,mem_cb_idle_process 
-0161 58000025 setarg p_ipc_rx 
-0162 6001428c store 2 ,mem_cb_le_process 
-0163 58000151 setarg p_kb_before_hibernate 
-0164 60014288 store 2 ,mem_cb_before_hibernate 
-0165 58004aa0 setarg mem_ipc_2bt_fifo_head 
-0166 1ff0fe00 byteswap pdata ,pdata 
-0167 60014b9a store 2 ,mem_ipc_2bt_read_index 
-0168 60014b9c store 2 ,mem_ipc_2bt_write_index 
-0169 20403e0b call lpm_disable_exen_output 
-016a 58004b36 setarg mem_ipc_2c51_fifo_head 
-016b 1ff0fe00 byteswap pdata ,pdata 
-016c 60014b9e store 2 ,mem_ipc_2c51_read_index 
-016d 60014ba0 store 2 ,mem_ipc_2c51_write_index 
-016e 6800cc97 fetch 1 ,mem_hibernate_flag 
-016f c02d0186 beq 0x5a ,p_device_init_init_hibwake 
-0170 20358184 branch p_deveice_init_wake ,wake 
-0171 68014c91 fetch 2 ,mem_adc_0v 
-0172 1ff0fe00 byteswap pdata ,pdata 
-0173 60014c91 store 2 ,mem_adc_0v 
-0174 68014c93 fetch 2 ,mem_adc_3v 
-0175 1ff0fe00 byteswap pdata ,pdata 
-0176 60014c93 store 2 ,mem_adc_3v 
-0177 20400191 call p_init_adc_from_otp 
-0178 680402a0 fetch 8 ,mem_temp 
-0179 243a017e nbranch p_deveice_init_reset ,blank 
-017a 68014ad4 fetch 2 ,0x4ad4 
-017b 1ff0fe00 byteswap pdata ,pdata 
-017c 203a017e branch p_deveice_init_reset ,blank 
-017d 60014c93 store 2 ,mem_adc_3v 
+0156 700b7e00 jam 0 ,mem_c51_flag 
+0157 70017706 jam 6 ,mem_connection_options 
+0158 20403fa4 call app_lpm_mult_enable 
+0159 58000155 setarg p_kb_bt_lpm_before 
+015a 6001428a store 2 ,mem_cb_before_lpm 
+015b 580000c1 setarg p_c51_user_event 
+015c 60014292 store 2 ,mem_cb_bb_event_process 
+015d 580001c6 setarg p_mouse_idle 
+015e 60014290 store 2 ,mem_cb_idle_process 
+015f 58000023 setarg p_ipc_rx 
+0160 6001428c store 2 ,mem_cb_le_process 
+0161 5800014f setarg p_kb_before_hibernate 
+0162 60014288 store 2 ,mem_cb_before_hibernate 
+0163 58004aa0 setarg mem_ipc_2bt_fifo_head 
+0164 1ff0fe00 byteswap pdata ,pdata 
+0165 60014b9a store 2 ,mem_ipc_2bt_read_index 
+0166 60014b9c store 2 ,mem_ipc_2bt_write_index 
+0167 20403e0b call lpm_disable_exen_output 
+0168 58004b36 setarg mem_ipc_2c51_fifo_head 
+0169 1ff0fe00 byteswap pdata ,pdata 
+016a 60014b9e store 2 ,mem_ipc_2c51_read_index 
+016b 60014ba0 store 2 ,mem_ipc_2c51_write_index 
+016c 6800cc97 fetch 1 ,mem_hibernate_flag 
+016d c02d0184 beq 0x5a ,p_device_init_init_hibwake 
+016e 20358182 branch p_deveice_init_wake ,wake 
+016f 68014c91 fetch 2 ,mem_adc_0v 
+0170 1ff0fe00 byteswap pdata ,pdata 
+0171 60014c91 store 2 ,mem_adc_0v 
+0172 68014c93 fetch 2 ,mem_adc_3v 
+0173 1ff0fe00 byteswap pdata ,pdata 
+0174 60014c93 store 2 ,mem_adc_3v 
+0175 2040018f call p_init_adc_from_otp 
+0176 680402a0 fetch 8 ,mem_temp 
+0177 243a017c nbranch p_deveice_init_reset ,blank 
+0178 68014ad4 fetch 2 ,0x4ad4 
+0179 1ff0fe00 byteswap pdata ,pdata 
+017a 203a017c branch p_deveice_init_reset ,blank 
+017b 60014c93 store 2 ,mem_adc_3v 
 
 p_deveice_init_reset:
-017e 204001e6 call p_le_queue_init 
-017f 704ba42f jam bt_evt_reset ,mem_ipc_tx_evt 
+017c 204001e4 call p_le_queue_init 
+017d 704ba42f jam bt_evt_reset ,mem_ipc_tx_evt 
 
 p_device_init_common:
-0180 2040008d call p_ipc_tx_evt 
-0181 704c9700 jam 0 ,mem_hibernate_flag 
-0182 70828003 hjam start_c51_core ,core_docd_ctrl 
-0183 20600000 rtn 
+017e 2040008b call p_ipc_tx_evt 
+017f 704c9700 jam 0 ,mem_hibernate_flag 
+0180 70828003 hjam start_c51_core ,core_docd_ctrl 
+0181 20600000 rtn 
 
 p_deveice_init_wake:
-0184 704ba430 jam bt_evt_wakeup ,mem_ipc_tx_evt 
-0185 20200180 branch p_device_init_common 
+0182 704ba430 jam bt_evt_wakeup ,mem_ipc_tx_evt 
+0183 2020017e branch p_device_init_common 
 
 p_device_init_init_hibwake:
-0186 1ce27e00 copy auxcnt ,pdata 
-0187 203a01cb branch p_enter_hibernate_continue ,blank 
-0188 20405b63 call init_lmp_work 
-0189 20404d99 call l2cap_init_work 
-018a 58000000 setarg 0 
-018b 60044040 store 8 ,mem_context 
-018c 600147f4 store 2 ,mem_ui_state_map 
-018d 1c427e00 copy clkn_bt ,pdata 
-018e 60024c59 store 4 ,mem_ipc_last_check_timer 
-018f 704ba433 jam bt_evt_hibernate_wake ,mem_ipc_tx_evt 
-0190 20200180 branch p_device_init_common 
+0184 1ce27e00 copy auxcnt ,pdata 
+0185 203a01c9 branch p_enter_hibernate_continue ,blank 
+0186 20405b63 call init_lmp_work 
+0187 20404d99 call l2cap_init_work 
+0188 58000000 setarg 0 
+0189 60044040 store 8 ,mem_context 
+018a 600147f4 store 2 ,mem_ui_state_map 
+018b 1c427e00 copy clkn_bt ,pdata 
+018c 60024c59 store 4 ,mem_ipc_last_check_timer 
+018d 704ba433 jam bt_evt_hibernate_wake ,mem_ipc_tx_evt 
+018e 2020017e branch p_device_init_common 
 
 p_init_adc_from_otp:
-0191 2040688a call otp_enable_chgpump 
-0192 580007e2 setarg 0x7e2 
-0193 da2002a0 arg mem_temp ,rega 
-0194 d840000c arg 12 ,temp 
-0195 204068d3 call otpd_read_data 
-0196 2040688d call otp_disable_chgpump 
-0197 680402a0 fetch 8 ,mem_temp 
-0198 207a0000 rtn blank 
-0199 6800cc8f fetch 1 ,mem_adc_config_flag 
-019a c28001a3 bbit1 adc_config_vinlpm ,p_calc_adc_base_vinlpm 
-019b c28081b1 bbit1 adc_config_hvin ,p_calc_adc_base_hvin 
+018f 2040688a call otp_enable_chgpump 
+0190 580007e2 setarg 0x7e2 
+0191 da2002a0 arg mem_temp ,rega 
+0192 d840000c arg 12 ,temp 
+0193 204068d3 call otpd_read_data 
+0194 2040688d call otp_disable_chgpump 
+0195 680402a0 fetch 8 ,mem_temp 
+0196 207a0000 rtn blank 
+0197 6800cc8f fetch 1 ,mem_adc_config_flag 
+0198 c28001a1 bbit1 adc_config_vinlpm ,p_calc_adc_base_vinlpm 
+0199 c28081af bbit1 adc_config_hvin ,p_calc_adc_base_hvin 
 
 p_calc_adc_check_gpio:
-019c 680102a0 fetch 2 ,mem_temp 
-019d 1ff0fe00 byteswap pdata ,pdata 
-019e 60014c91 store 2 ,mem_adc_0v 
-019f 680102a6 fetch 2 ,mem_temp + 6 
-01a0 1ff0fe00 byteswap pdata ,pdata 
-01a1 60014c93 store 2 ,mem_adc_3v 
-01a2 20600000 rtn 
+019a 680102a0 fetch 2 ,mem_temp 
+019b 1ff0fe00 byteswap pdata ,pdata 
+019c 60014c91 store 2 ,mem_adc_0v 
+019d 680102a6 fetch 2 ,mem_temp + 6 
+019e 1ff0fe00 byteswap pdata ,pdata 
+019f 60014c93 store 2 ,mem_adc_3v 
+01a0 20600000 rtn 
 
 p_calc_adc_base_vinlpm:
-01a3 680902a4 fetcht 2 ,mem_temp + 4 
-01a4 680102aa fetch 2 ,mem_temp + 10 
-01a5 18422400 copy temp ,regb 
-01a6 1fe22200 copy pdata ,rega 
-01a7 1ff0fe00 byteswap pdata ,pdata 
-01a8 60014c93 store 2 ,mem_adc_3v 
-01a9 1a227e00 copy rega ,pdata 
-01aa 98462600 isub temp ,regc 
-01ab 1a63a600 lshift regc ,regc 
-01ac 1a427e00 copy regb ,pdata 
-01ad 9a667e00 isub regc ,pdata 
-01ae 1ff0fe00 byteswap pdata ,pdata 
-01af 60014c91 store 2 ,mem_adc_0v 
-01b0 20600000 rtn 
+01a1 680902a4 fetcht 2 ,mem_temp + 4 
+01a2 680102aa fetch 2 ,mem_temp + 10 
+01a3 18422400 copy temp ,regb 
+01a4 1fe22200 copy pdata ,rega 
+01a5 1ff0fe00 byteswap pdata ,pdata 
+01a6 60014c93 store 2 ,mem_adc_3v 
+01a7 1a227e00 copy rega ,pdata 
+01a8 98462600 isub temp ,regc 
+01a9 1a63a600 lshift regc ,regc 
+01aa 1a427e00 copy regb ,pdata 
+01ab 9a667e00 isub regc ,pdata 
+01ac 1ff0fe00 byteswap pdata ,pdata 
+01ad 60014c91 store 2 ,mem_adc_0v 
+01ae 20600000 rtn 
 
 p_calc_adc_base_hvin:
-01b1 680902a2 fetcht 2 ,mem_temp + 2 
-01b2 680102a8 fetch 2 ,mem_temp + 8 
-01b3 18422400 copy temp ,regb 
-01b4 1fe22200 copy pdata ,rega 
-01b5 98462600 isub temp ,regc 
-01b6 1a6b2600 rshift2 regc ,regc 
-01b7 1a427e00 copy regb ,pdata 
-01b8 9a667e00 isub regc ,pdata 
-01b9 1ff0fe00 byteswap pdata ,pdata 
-01ba 60014c91 store 2 ,mem_adc_0v 
-01bb 1a63a600 lshift regc ,regc 
-01bc 1a227e00 copy rega ,pdata 
-01bd 9a667e00 isub regc ,pdata 
-01be 1ff0fe00 byteswap pdata ,pdata 
-01bf 60014c93 store 2 ,mem_adc_3v 
-01c0 20600000 rtn 
+01af 680902a2 fetcht 2 ,mem_temp + 2 
+01b0 680102a8 fetch 2 ,mem_temp + 8 
+01b1 18422400 copy temp ,regb 
+01b2 1fe22200 copy pdata ,rega 
+01b3 98462600 isub temp ,regc 
+01b4 1a6b2600 rshift2 regc ,regc 
+01b5 1a427e00 copy regb ,pdata 
+01b6 9a667e00 isub regc ,pdata 
+01b7 1ff0fe00 byteswap pdata ,pdata 
+01b8 60014c91 store 2 ,mem_adc_0v 
+01b9 1a63a600 lshift regc ,regc 
+01ba 1a227e00 copy rega ,pdata 
+01bb 9a667e00 isub regc ,pdata 
+01bc 1ff0fe00 byteswap pdata ,pdata 
+01bd 60014c93 store 2 ,mem_adc_3v 
+01be 20600000 rtn 
 
 p_le_enable:
-01c1 70001627 jam 39 ,mem_le_ch_mapped 
-01c2 70890f36 hjam 0x36 ,0x90f 
-01c3 70890b5f hjam 0x5f ,0x90b 
-01c4 202053d4 branch le_enable + 2 
+01bf 70001627 jam 39 ,mem_le_ch_mapped 
+01c0 70890f36 hjam 0x36 ,0x90f 
+01c1 70890b5f hjam 0x5f ,0x90b 
+01c2 202053d4 branch le_enable + 2 
 
 p_le_disable:
-01c5 70890f2e hjam 0x2e ,0x90f 
-01c6 70890bff hjam 0xff ,0x90b 
-01c7 202053d9 branch le_disable + 2 
+01c3 70890f2e hjam 0x2e ,0x90f 
+01c4 70890bff hjam 0xff ,0x90b 
+01c5 202053d9 branch le_disable + 2 
 
 p_mouse_idle:
-01c8 20600000 rtn 
+01c6 20600000 rtn 
 
 p_check_enter_hibernate:
-01c9 700b7e03 jam syc_task_hibernate ,mem_c51_flag 
-01ca 204000ff call p_c51_wait 
+01c7 700b7e03 jam syc_task_hibernate ,mem_c51_flag 
+01c8 204000fd call p_c51_wait 
 
 p_enter_hibernate_continue:
-01cb 704c975a jam 0x5a ,mem_hibernate_flag 
-01cc 20403db8 call lpm_write_gpio_wakeup 
-01cd 68120138 hfetch 4 ,core_lpm_ctrl 
-01ce 793ffe0f set0 15 ,pdata 
-01cf 6012004c hstore 4 ,core_lpm_reg 
-01d0 20403db0 call lpm_write_ctrl 
-01d1 d85fffff arg param_hibernate_clks ,temp 
-01d2 20203cda branch lpm_sleep 
+01c9 704c975a jam 0x5a ,mem_hibernate_flag 
+01ca 20403db8 call lpm_write_gpio_wakeup 
+01cb 68120138 hfetch 4 ,core_lpm_ctrl 
+01cc 793ffe0f set0 15 ,pdata 
+01cd 6012004c hstore 4 ,core_lpm_reg 
+01ce 20403db0 call lpm_write_ctrl 
+01cf d85fffff arg param_hibernate_clks ,temp 
+01d0 20203cda branch lpm_sleep 
 
 p_check_51cmd_once:
-01d3 20407c20 call ui_ipc_get_lock 
-01d4 da2047e4 arg mem_ipc_fifo_c512bt ,rega 
-01d5 20407f9f call fifo_out 
-01d6 1fe20400 copy pdata ,temp 
-01d7 20407c24 call ui_ipc_put_lock 
-01d8 18427e00 copy temp ,pdata 
-01d9 207a0000 rtn blank 
-01da c01081de beq bt_cmd_start_24g ,p_check_51cmd_start24g 
-01db c01101e0 beq bt_cmd_stop_24g ,p_check_51cmd_stop24g 
-01dc c01181e3 beq bt_cmd_pair_24g ,p_check_51_cmd_pairing_24g 
-01dd 20207c5a branch check_51cmd_once + 9 
+01d1 20407c20 call ui_ipc_get_lock 
+01d2 da2047e4 arg mem_ipc_fifo_c512bt ,rega 
+01d3 20407f9f call fifo_out 
+01d4 1fe20400 copy pdata ,temp 
+01d5 20407c24 call ui_ipc_put_lock 
+01d6 18427e00 copy temp ,pdata 
+01d7 207a0000 rtn blank 
+01d8 c01081dc beq bt_cmd_start_24g ,p_check_51cmd_start24g 
+01d9 c01101de beq bt_cmd_stop_24g ,p_check_51cmd_stop24g 
+01da c01181e1 beq bt_cmd_pair_24g ,p_check_51_cmd_pairing_24g 
+01db 20207c5a branch check_51cmd_once + 9 
 
 p_check_51cmd_start24g:
-01de 704befff jam state_24g_pairing_success ,mem_24g_pairing_sm 
-01df 202002ec branch p_g24_start_24g_mode 
+01dc 704befff jam state_24g_pairing_success ,mem_24g_pairing_sm 
+01dd 202002ea branch p_g24_start_24g_mode 
 
 p_check_51cmd_stop24g:
-01e0 793f8023 set0 mark_24g ,mark 
-01e1 704befff jam state_24g_pairing_success ,mem_24g_pairing_sm 
-01e2 20200266 branch p_g24_stop_g24_mode 
+01de 793f8023 set0 mark_24g ,mark 
+01df 704befff jam state_24g_pairing_success ,mem_24g_pairing_sm 
+01e0 20200264 branch p_g24_stop_g24_mode 
 
 p_check_51_cmd_pairing_24g:
-01e3 5fffffff setarg -1 
-01e4 60024c00 store 4 ,mem_24g_addr 
-01e5 202002b7 branch p_g24_start_pairing_sm1 
+01e1 5fffffff setarg -1 
+01e2 60024c00 store 4 ,mem_24g_addr 
+01e3 202002b5 branch p_g24_start_pairing_sm1 
 
 p_le_queue_init:
-01e6 58000000 setarg 0 
-01e7 60024ba9 store 4 ,mem_queue_write 
-01e8 20600000 rtn 
+01e4 58000000 setarg 0 
+01e5 60024ba9 store 4 ,mem_queue_write 
+01e6 20600000 rtn 
 
 p_g24_dispatch:
-01e9 c6918000 rtnmark0 mark_24g 
-01ea 2040020f call p_g24_txdata_prep 
-01eb 24340200 nbranch p_g24_long_sleep ,user 
-01ec 704c150a jam 10 ,mem_24g_enter_lpm_timer 
-01ed 2040022a call p_g24_transmit_packet 
-01ee 6800cbef fetch 1 ,mem_24g_pairing_sm 
-01ef c1ff8000 rtnne state_24g_pairing_success 
-01f0 20400288 call power_ctrl_start 
+01e7 c6918000 rtnmark0 mark_24g 
+01e8 2040020d call p_g24_txdata_prep 
+01e9 243401fe nbranch p_g24_long_sleep ,user 
+01ea 704c150a jam 10 ,mem_24g_enter_lpm_timer 
+01eb 20400228 call p_g24_transmit_packet 
+01ec 6800cbef fetch 1 ,mem_24g_pairing_sm 
+01ed c1ff8000 rtnne state_24g_pairing_success 
+01ee 20400286 call power_ctrl_start 
 
 p_g24_short_sleep:
-01f1 6800cd46 fetch 1 ,mem_mouse_retry_flag 
-01f2 247a0000 nrtn blank 
-01f3 204000f2 call p_check_ipc_for_lpm 
-01f4 24740000 nrtn user 
-01f5 68008b7f fetch 1 ,mem_c51_lpm_lock 
-01f6 247a0000 nrtn blank 
-01f7 20403cab call lpo_calibration 
-01f8 6801c210 fetch 3 ,mem_clks_per_lpo 
+01ef 6800cd46 fetch 1 ,mem_mouse_retry_flag 
+01f0 247a0000 nrtn blank 
+01f1 204000f0 call p_check_ipc_for_lpm 
+01f2 24740000 nrtn user 
+01f3 68008b7f fetch 1 ,mem_c51_lpm_lock 
+01f4 247a0000 nrtn blank 
+01f5 20403cab call lpo_calibration 
+01f6 6801c210 fetch 3 ,mem_clks_per_lpo 
+01f7 207a0000 rtn blank 
+01f8 6800c131 fetch 1 ,mem_lpm_mode 
 01f9 207a0000 rtn blank 
-01fa 6800c131 fetch 1 ,mem_lpm_mode 
-01fb 207a0000 rtn blank 
 
 p_g24_short_sleep_1:
-01fc 5800e290 setarg 58000 
-01fd 20407e8a call clk2lpo 
-01fe 600a41fc storet 4 ,mem_sleep_counter 
-01ff 20203cda branch lpm_sleep 
+01fa 5800e290 setarg 58000 
+01fb 20407e8a call clk2lpo 
+01fc 600a41fc storet 4 ,mem_sleep_counter 
+01fd 20203cda branch lpm_sleep 
 
 p_g24_long_sleep:
-0200 204000f2 call p_check_ipc_for_lpm 
-0201 24740000 nrtn user 
-0202 68008b7f fetch 1 ,mem_c51_lpm_lock 
-0203 247a0000 nrtn blank 
-0204 20403cab call lpo_calibration 
-0205 6801c210 fetch 3 ,mem_clks_per_lpo 
+01fe 204000f0 call p_check_ipc_for_lpm 
+01ff 24740000 nrtn user 
+0200 68008b7f fetch 1 ,mem_c51_lpm_lock 
+0201 247a0000 nrtn blank 
+0202 20403cab call lpo_calibration 
+0203 6801c210 fetch 3 ,mem_clks_per_lpo 
+0204 207a0000 rtn blank 
+0205 6800c131 fetch 1 ,mem_lpm_mode 
 0206 207a0000 rtn blank 
-0207 6800c131 fetch 1 ,mem_lpm_mode 
-0208 207a0000 rtn blank 
-0209 6800cc15 fetch 1 ,mem_24g_enter_lpm_timer 
-020a 243a01fc nbranch p_g24_short_sleep_1 ,blank 
-020b 68044d3d fetch 8 ,mem_24g_enter_hibernate 
-020c 20407e8a call clk2lpo 
-020d 600a41fc storet 4 ,mem_sleep_counter 
-020e 20203cda branch lpm_sleep 
+0207 6800cc15 fetch 1 ,mem_24g_enter_lpm_timer 
+0208 243a01fa nbranch p_g24_short_sleep_1 ,blank 
+0209 68044d3d fetch 8 ,mem_24g_enter_hibernate 
+020a 20407e8a call clk2lpo 
+020b 600a41fc storet 4 ,mem_sleep_counter 
+020c 20203cda branch lpm_sleep 
 
 p_g24_txdata_prep:
-020f 6800cbef fetch 1 ,mem_24g_pairing_sm 
-0210 c0ff82c0 bne state_24g_pairing_success ,p_g24_pairing_sm 
-0211 20400215 call p_g24_package_data 
-0212 20400350 call p_g24_transmit_prep 
+020d 6800cbef fetch 1 ,mem_24g_pairing_sm 
+020e c0ff82be bne state_24g_pairing_success ,p_g24_pairing_sm 
+020f 20400213 call p_g24_package_data 
+0210 2040034e call p_g24_transmit_prep 
 
 p_g24_txdata_enable_tx:
-0213 704be601 jam ensure_on_24g ,mem_24g_ensure 
-0214 20600000 rtn 
+0211 704be601 jam ensure_on_24g ,mem_24g_ensure 
+0212 20600000 rtn 
 
 p_g24_package_data:
-0215 78547c00 disable user 
-0216 704be202 jam 2 ,mem_24g_data_type 
-0217 68008cd5 fetch 1 ,mem_24g_txbuf 
-0218 c000821e beq 0x01 ,p_g24_dataready 
-0219 c0010222 beq 0x02 ,p_g24_dataready_mk 
-021a c0018226 beq 0x03 ,p_g24_dataready_ms 
-021b 6800cd46 fetch 1 ,mem_mouse_retry_flag 
-021c 245a34df ncall enable_user ,blank 
-021d 20600000 rtn 
+0213 78547c00 disable user 
+0214 704be202 jam 2 ,mem_24g_data_type 
+0215 68008cd5 fetch 1 ,mem_24g_txbuf 
+0216 c000821c beq 0x01 ,p_g24_dataready 
+0217 c0010220 beq 0x02 ,p_g24_dataready_mk 
+0218 c0018224 beq 0x03 ,p_g24_dataready_ms 
+0219 6800cd46 fetch 1 ,mem_mouse_retry_flag 
+021a 245a34df ncall enable_user ,blank 
+021b 20600000 rtn 
 
 p_g24_dataready:
-021e 58000000 setarg 0 
-021f 60008cd5 store 1 ,mem_24g_txbuf 
-0220 704be10a jam 10 ,mem_24g_datalen 
-0221 20200228 branch p_g24_package_data_rtn 
+021c 58000000 setarg 0 
+021d 60008cd5 store 1 ,mem_24g_txbuf 
+021e 704be10a jam 10 ,mem_24g_datalen 
+021f 20200226 branch p_g24_package_data_rtn 
 
 p_g24_dataready_mk:
-0222 58000003 setarg 0x03 
-0223 60008cd5 store 1 ,mem_24g_txbuf 
-0224 704be104 jam 4 ,mem_24g_datalen 
-0225 20200228 branch p_g24_package_data_rtn 
+0220 58000003 setarg 0x03 
+0221 60008cd5 store 1 ,mem_24g_txbuf 
+0222 704be104 jam 4 ,mem_24g_datalen 
+0223 20200226 branch p_g24_package_data_rtn 
 
 p_g24_dataready_ms:
-0226 704be201 jam 1 ,mem_24g_data_type 
-0227 704be108 jam 8 ,mem_24g_datalen 
+0224 704be201 jam 1 ,mem_24g_data_type 
+0225 704be108 jam 8 ,mem_24g_datalen 
 
 p_g24_package_data_rtn:
-0228 704be700 jam 0 ,mem_24g_get_ack_fail 
-0229 202034df branch enable_user 
+0226 704be700 jam 0 ,mem_24g_get_ack_fail 
+0227 202034df branch enable_user 
 
 p_g24_transmit_packet:
-022a 704be800 jam 0 ,mem_24g_retry 
+0228 704be800 jam 0 ,mem_24g_retry 
 
 p_g24_transmit_loop:
-022b d9600d00 arg param_rx_setup ,timeup 
-022c 34730200 until clkn_rt ,meet 
-022d 20400255 call p_g24_transmit_receive_ack 
-022e 2437823b nbranch p_g24_retransmit ,user3 
-022f 20400269 call p_g24_ackpayload_parse 
-0230 2040027a call power_ctrl_pac_succ_incrs 
-0231 6800cbe0 fetch 1 ,mem_24g_pid 
-0232 1fe0fe01 increase 1 ,pdata 
-0233 6000cbe0 store 1 ,mem_24g_pid 
-0234 704d4600 jam 0 ,mem_mouse_retry_flag 
-0235 6800cbef fetch 1 ,mem_24g_pairing_sm 
-0236 c0ff8253 bne state_24g_pairing_success ,p_g24_paring_mode_start 
+0229 d9600d00 arg param_rx_setup ,timeup 
+022a 34730200 until clkn_rt ,meet 
+022b 20400253 call p_g24_transmit_receive_ack 
+022c 24378239 nbranch p_g24_retransmit ,user3 
+022d 20400267 call p_g24_ackpayload_parse 
+022e 20400278 call power_ctrl_pac_succ_incrs 
+022f 6800cbe0 fetch 1 ,mem_24g_pid 
+0230 1fe0fe01 increase 1 ,pdata 
+0231 6000cbe0 store 1 ,mem_24g_pid 
+0232 704d4600 jam 0 ,mem_mouse_retry_flag 
+0233 6800cbef fetch 1 ,mem_24g_pairing_sm 
+0234 c0ff8251 bne state_24g_pairing_success ,p_g24_paring_mode_start 
 
 p_g24_transmit_abandon:
-0237 2040024d call p_g24_clear_txbuf 
-0238 704be700 jam 0 ,mem_24g_get_ack_fail 
-0239 704be600 jam ensure_off_24g ,mem_24g_ensure 
-023a 20600000 rtn 
+0235 2040024b call p_g24_clear_txbuf 
+0236 704be700 jam 0 ,mem_24g_get_ack_fail 
+0237 704be600 jam ensure_off_24g ,mem_24g_ensure 
+0238 20600000 rtn 
 
 p_g24_retransmit:
-023b 704d4601 jam 1 ,mem_mouse_retry_flag 
-023c 6800cbe7 fetch 1 ,mem_24g_get_ack_fail 
-023d 1fe0fe01 increase 1 ,pdata 
-023e 6000cbe7 store 1 ,mem_24g_get_ack_fail 
-023f 6800cbef fetch 1 ,mem_24g_pairing_sm 
-0240 c0ff8265 bne state_24g_pairing_success ,p_g24_tx_paring_retry 
+0239 704d4601 jam 1 ,mem_mouse_retry_flag 
+023a 6800cbe7 fetch 1 ,mem_24g_get_ack_fail 
+023b 1fe0fe01 increase 1 ,pdata 
+023c 6000cbe7 store 1 ,mem_24g_get_ack_fail 
+023d 6800cbef fetch 1 ,mem_24g_pairing_sm 
+023e c0ff8263 bne state_24g_pairing_success ,p_g24_tx_paring_retry 
+023f 6800cbe7 fetch 1 ,mem_24g_get_ack_fail 
+0240 c07f8264 beq 0xff ,p_g24_stop_g24_mode 
 0241 6800cbe7 fetch 1 ,mem_24g_get_ack_fail 
-0242 c07f8266 beq 0xff ,p_g24_stop_g24_mode 
-0243 6800cbe7 fetch 1 ,mem_24g_get_ack_fail 
-0244 d8400010 arg 16 ,temp 
-0245 98467c00 isub temp ,null 
-0246 2021036a branch p_g24_ch ,positive 
-0247 6800cbe8 fetch 1 ,mem_24g_retry 
-0248 1fe0fe01 increase 1 ,pdata 
-0249 6000cbe8 store 1 ,mem_24g_retry 
-024a 2000000a nop 10 
-024b c083822b bne retry_24g ,p_g24_transmit_loop 
-024c 2020036a branch p_g24_ch 
+0242 d8400010 arg 16 ,temp 
+0243 98467c00 isub temp ,null 
+0244 20210368 branch p_g24_ch ,positive 
+0245 6800cbe8 fetch 1 ,mem_24g_retry 
+0246 1fe0fe01 increase 1 ,pdata 
+0247 6000cbe8 store 1 ,mem_24g_retry 
+0248 2000000a nop 10 
+0249 c0838229 bne retry_24g ,p_g24_transmit_loop 
+024a 20200368 branch p_g24_ch 
 
 p_g24_clear_txbuf:
-024d 58000000 setarg 0 
-024e 60048cd5 store 9 ,mem_24g_txbuf 
-024f 20600000 rtn 
+024b 58000000 setarg 0 
+024c 60048cd5 store 9 ,mem_24g_txbuf 
+024d 20600000 rtn 
 
 p_g24_check_txbuf:
-0250 c591f2b9 bmark0 mark_24g ,set_blank 
-0251 68040cd5 fetch 8 ,mem_24g_txbuf 
-0252 20600000 rtn 
+024e c591f2b9 bmark0 mark_24g ,set_blank 
+024f 68040cd5 fetch 8 ,mem_24g_txbuf 
+0250 20600000 rtn 
 
 p_g24_paring_mode_start:
-0253 20400277 call power_ctrl_pac_succ_cnt_init 
-0254 202002dc branch p_g24_paring_mode 
+0251 20400275 call power_ctrl_pac_succ_cnt_init 
+0252 202002da branch p_g24_paring_mode 
 
 p_g24_transmit_receive_ack:
-0255 7857fc00 disable user3 
-0256 204003c8 call p_g24_transmit 
-0257 6800cc0a fetch 1 ,mem_24g_no_ack 
-0258 c0008262 beq no_ack_24g ,p_g24_transmit_no_ack 
-0259 18002a00 force 0 ,radio_ctrl 
-025a 68024c00 fetch 4 ,mem_24g_addr 
-025b 98001200 iforce access 
-025c 68088017 fetcht 1 ,mem_last_freq 
-025d 20403a82 call set_freq_rx 
-025e 20403a87 call rf_rx_enable 
-025f 20400382 call p_g24_receive_rxon 
-0260 205783c0 call p_g24_end_of_packet ,user3 
-0261 20600000 rtn 
+0253 7857fc00 disable user3 
+0254 204003c6 call p_g24_transmit 
+0255 6800cc0a fetch 1 ,mem_24g_no_ack 
+0256 c0008260 beq no_ack_24g ,p_g24_transmit_no_ack 
+0257 18002a00 force 0 ,radio_ctrl 
+0258 68024c00 fetch 4 ,mem_24g_addr 
+0259 98001200 iforce access 
+025a 68088017 fetcht 1 ,mem_last_freq 
+025b 20403a82 call set_freq_rx 
+025c 20403a87 call rf_rx_enable 
+025d 20400380 call p_g24_receive_rxon 
+025e 205783be call p_g24_end_of_packet ,user3 
+025f 20600000 rtn 
 
 p_g24_transmit_no_ack:
-0262 700cb400 jam 0 ,mem_24g_rxbuf + 1 
-0263 7837fc00 enable user3 
-0264 202003c0 branch p_g24_end_of_packet 
+0260 700cb400 jam 0 ,mem_24g_rxbuf + 1 
+0261 7837fc00 enable user3 
+0262 202003be branch p_g24_end_of_packet 
 
 p_g24_tx_paring_retry:
-0265 20600000 rtn 
+0263 20600000 rtn 
 
 p_g24_stop_g24_mode:
-0266 704d4600 jam 0 ,mem_mouse_retry_flag 
-0267 700b7d32 jam bt_evt_24g_attempt_fail ,mem_fifo_temp 
-0268 20207c27 branch ui_ipc_send_event 
+0264 704d4600 jam 0 ,mem_mouse_retry_flag 
+0265 700b7d32 jam bt_evt_24g_attempt_fail ,mem_fifo_temp 
+0266 20207c27 branch ui_ipc_send_event 
 
 p_g24_ackpayload_parse:
-0269 20400312 call p_g24_read_len_pid_crc 
-026a 6800cbdf fetch 1 ,mem_24g_rxdata_length 
-026b 207a0000 rtn blank 
-026c 98007200 iforce loopcnt 
-026d 20400271 call p_24g_kb_led 
-026e d8c00cb5 arg mem_24g_rxbuf + 2 ,contr 
-026f d8a00d17 arg mem_24g_rxpayload ,contw 
-0270 20207e45 branch memcpy 
+0267 20400310 call p_g24_read_len_pid_crc 
+0268 6800cbdf fetch 1 ,mem_24g_rxdata_length 
+0269 207a0000 rtn blank 
+026a 98007200 iforce loopcnt 
+026b 2040026f call p_24g_kb_led 
+026c d8c00cb5 arg mem_24g_rxbuf + 2 ,contr 
+026d d8a00d17 arg mem_24g_rxpayload ,contw 
+026e 20207e45 branch memcpy 
 
 p_24g_kb_led:
-0271 68008cb4 fetch 1 ,mem_24g_rxbuf + 1 
-0272 2fe1f008 compare 0x08 ,pdata ,0xf8 
-0273 24608000 nrtn true 
-0274 68088cb5 fetcht 1 ,mem_24g_rxbuf + 2 
-0275 6008ccb7 storet 1 ,mem_caps_num_lock 
-0276 20600000 rtn 
+026f 68008cb4 fetch 1 ,mem_24g_rxbuf + 1 
+0270 2fe1f008 compare 0x08 ,pdata ,0xf8 
+0271 24608000 nrtn true 
+0272 68088cb5 fetcht 1 ,mem_24g_rxbuf + 2 
+0273 6008ccb7 storet 1 ,mem_caps_num_lock 
+0274 20600000 rtn 
 
 power_ctrl_pac_succ_cnt_init:
-0277 704c2801 jam 1 ,mem_power_ctrl_level 
-0278 704c2700 jam 0 ,mem_power_ctrl_pac_succ_cnt 
-0279 20600000 rtn 
+0275 704c2801 jam 1 ,mem_power_ctrl_level 
+0276 704c2700 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+0277 20600000 rtn 
 
 power_ctrl_pac_succ_incrs:
-027a 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-027b 1fe0fe01 increase 1 ,pdata 
-027c 6000cc27 store 1 ,mem_power_ctrl_pac_succ_cnt 
-027d 20600000 rtn 
+0278 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0279 1fe0fe01 increase 1 ,pdata 
+027a 6000cc27 store 1 ,mem_power_ctrl_pac_succ_cnt 
+027b 20600000 rtn 
 
 power_ctrl_pac_succ_decrs:
-027e 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-027f 1fe67c01 sub pdata ,1 ,null 
-0280 24410286 ncall power_ctrl_pac_succ_cnt_reinit ,positive 
-0281 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0282 c1000000 rtneq 0 
-0283 1fe0ffff increase -1 ,pdata 
-0284 6000cc27 store 1 ,mem_power_ctrl_pac_succ_cnt 
-0285 20600000 rtn 
+027c 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+027d 1fe67c01 sub pdata ,1 ,null 
+027e 24410284 ncall power_ctrl_pac_succ_cnt_reinit ,positive 
+027f 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0280 c1000000 rtneq 0 
+0281 1fe0ffff increase -1 ,pdata 
+0282 6000cc27 store 1 ,mem_power_ctrl_pac_succ_cnt 
+0283 20600000 rtn 
 
 power_ctrl_pac_succ_cnt_reinit:
-0286 704c2702 jam 2 ,mem_power_ctrl_pac_succ_cnt 
-0287 20600000 rtn 
+0284 704c2702 jam 2 ,mem_power_ctrl_pac_succ_cnt 
+0285 20600000 rtn 
 
 power_ctrl_start:
-0288 da204c2b arg mem_rssi_signal_buf ,rega 
-0289 20400332 call p_rssi_average 
-028a 6008cc29 storet 1 ,mem_rssi_avg_received 
-028b 280ffe23 isolate1 mark_24g ,mark 
-028c 20408296 call power_ctrl_24g_dis_max ,true 
-028d 2440829a ncall power_ctrl_le_dis_max ,true 
-028e 98467c00 isub temp ,null 
-028f 242102ae nbranch power_ctrl_txpower_incrs ,positive 
-0290 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0291 1fe67c01 sub pdata ,1 ,null 
-0292 2421029e nbranch power_ctrl_txpower_decrs_check ,positive 
-0293 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0294 c00002ae beq 0 ,power_ctrl_txpower_incrs 
-0295 20600000 rtn 
+0286 da204c2b arg mem_rssi_signal_buf ,rega 
+0287 20400330 call p_rssi_average 
+0288 6008cc29 storet 1 ,mem_rssi_avg_received 
+0289 280ffe23 isolate1 mark_24g ,mark 
+028a 20408294 call power_ctrl_24g_dis_max ,true 
+028b 24408298 ncall power_ctrl_le_dis_max ,true 
+028c 98467c00 isub temp ,null 
+028d 242102ac nbranch power_ctrl_txpower_incrs ,positive 
+028e 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+028f 1fe67c01 sub pdata ,1 ,null 
+0290 2421029c nbranch power_ctrl_txpower_decrs_check ,positive 
+0291 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0292 c00002ac beq 0 ,power_ctrl_txpower_incrs 
+0293 20600000 rtn 
 
 power_ctrl_24g_dis_max:
-0296 58000082 setarg rssi_dis_max_24g 
-0297 20600000 rtn 
+0294 58000082 setarg rssi_dis_max_24g 
+0295 20600000 rtn 
 
 power_ctrl_24g_dis_min:
-0298 58000077 setarg rssi_dis_min_24g 
-0299 20600000 rtn 
+0296 58000077 setarg rssi_dis_min_24g 
+0297 20600000 rtn 
 
 power_ctrl_le_dis_max:
-029a 58000080 setarg rssi_dis_max_ble 
-029b 20600000 rtn 
+0298 58000080 setarg rssi_dis_max_ble 
+0299 20600000 rtn 
 
 power_ctrl_le_dis_min:
-029c 58000075 setarg rssi_dis_min_ble 
-029d 20600000 rtn 
+029a 58000075 setarg rssi_dis_min_ble 
+029b 20600000 rtn 
 
 power_ctrl_txpower_decrs_check:
-029e 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-029f c1a30000 rtnne 70 
-02a0 704c2700 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+029c 6800cc27 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+029d c1a30000 rtnne 70 
+029e 704c2700 jam 0 ,mem_power_ctrl_pac_succ_cnt 
 
 power_ctrl_txpower_decrs:
-02a1 6808cc29 fetcht 1 ,mem_rssi_avg_received 
-02a2 280ffe23 isolate1 mark_24g ,mark 
-02a3 20408298 call power_ctrl_24g_dis_min ,true 
-02a4 2440829c ncall power_ctrl_le_dis_min ,true 
-02a5 98467c00 isub temp ,null 
-02a6 24610000 nrtn positive 
-02a7 6800cc28 fetch 1 ,mem_power_ctrl_level 
-02a8 c00002b5 beq 0 ,power_ctrl_decrs_level0 
-02a9 1fe0ffff increase -1 ,pdata 
-02aa 6000cc28 store 1 ,mem_power_ctrl_level 
-02ab c00002b5 beq 0 ,power_ctrl_decrs_level0 
+029f 6808cc29 fetcht 1 ,mem_rssi_avg_received 
+02a0 280ffe23 isolate1 mark_24g ,mark 
+02a1 20408296 call power_ctrl_24g_dis_min ,true 
+02a2 2440829a ncall power_ctrl_le_dis_min ,true 
+02a3 98467c00 isub temp ,null 
+02a4 24610000 nrtn positive 
+02a5 6800cc28 fetch 1 ,mem_power_ctrl_level 
+02a6 c00002b3 beq 0 ,power_ctrl_decrs_level0 
+02a7 1fe0ffff increase -1 ,pdata 
+02a8 6000cc28 store 1 ,mem_power_ctrl_level 
+02a9 c00002b3 beq 0 ,power_ctrl_decrs_level0 
 
 power_ctrl_decrs_level1:
 
 power_ctrl_incrs_level1:
-02ac 704c3d00 jam tx_power_0db ,mem_tx_power 
-02ad 20600000 rtn 
+02aa 704c3d00 jam tx_power_0db ,mem_tx_power 
+02ab 20600000 rtn 
 
 power_ctrl_txpower_incrs:
-02ae 6800cc28 fetch 1 ,mem_power_ctrl_level 
-02af c00102b3 beq 2 ,power_ctrl_incrs_level2 
-02b0 1fe0fe01 increase 1 ,pdata 
-02b1 6000cc28 store 1 ,mem_power_ctrl_level 
-02b2 c00082ac beq 1 ,power_ctrl_incrs_level1 
+02ac 6800cc28 fetch 1 ,mem_power_ctrl_level 
+02ad c00102b1 beq 2 ,power_ctrl_incrs_level2 
+02ae 1fe0fe01 increase 1 ,pdata 
+02af 6000cc28 store 1 ,mem_power_ctrl_level 
+02b0 c00082aa beq 1 ,power_ctrl_incrs_level1 
 
 power_ctrl_incrs_level2:
-02b3 704c3d02 jam tx_power_5db ,mem_tx_power 
-02b4 20600000 rtn 
+02b1 704c3d02 jam tx_power_5db ,mem_tx_power 
+02b2 20600000 rtn 
 
 power_ctrl_decrs_level0:
-02b5 704c3d04 jam tx_power_f5db ,mem_tx_power 
-02b6 20600000 rtn 
+02b3 704c3d04 jam tx_power_f5db ,mem_tx_power 
+02b4 20600000 rtn 
 
 p_g24_start_pairing_sm1:
-02b7 79200023 set1 mark_24g ,mark 
-02b8 204002bc call p_g24_pair_init 
-02b9 20400237 call p_g24_transmit_abandon 
-02ba 704bef01 jam state_24g_pairing_1 ,mem_24g_pairing_sm 
-02bb 20600000 rtn 
+02b5 79200023 set1 mark_24g ,mark 
+02b6 204002ba call p_g24_pair_init 
+02b7 20400235 call p_g24_transmit_abandon 
+02b8 704bef01 jam state_24g_pairing_1 ,mem_24g_pairing_sm 
+02b9 20600000 rtn 
 
 p_g24_pair_init:
-02bc 704be000 jam 0 ,mem_24g_pid 
-02bd 704be94e jam g24_pair_ch ,mem_24g_ch 
-02be 68024beb fetch 4 ,mem_24g_paring_addr 
-02bf 20200342 branch p_g24_update_addr_and_synccrc8 
+02ba 704be000 jam 0 ,mem_24g_pid 
+02bb 704be94e jam g24_pair_ch ,mem_24g_ch 
+02bc 68024beb fetch 4 ,mem_24g_paring_addr 
+02bd 20200340 branch p_g24_update_addr_and_synccrc8 
 
 p_g24_pairing_sm:
-02c0 204002bc call p_g24_pair_init 
-02c1 6800cbe6 fetch 1 ,mem_24g_ensure 
-02c2 c000b4df beq ensure_on_24g ,enable_user 
-02c3 6800cbef fetch 1 ,mem_24g_pairing_sm 
-02c4 c00082c8 beq state_24g_pairing_1 ,p_g24_pairing_sm_1 
-02c5 c00102cb beq state_24g_pairing_2 ,p_g24_pairing_sm_2 
-02c6 c00182ce beq state_24g_pairing_3 ,p_g24_pairing_sm_3 
-02c7 20203bf1 branch assert 
+02be 204002ba call p_g24_pair_init 
+02bf 6800cbe6 fetch 1 ,mem_24g_ensure 
+02c0 c000b4df beq ensure_on_24g ,enable_user 
+02c1 6800cbef fetch 1 ,mem_24g_pairing_sm 
+02c2 c00082c6 beq state_24g_pairing_1 ,p_g24_pairing_sm_1 
+02c3 c00102c9 beq state_24g_pairing_2 ,p_g24_pairing_sm_2 
+02c4 c00182cc beq state_24g_pairing_3 ,p_g24_pairing_sm_3 
+02c5 20203bf1 branch assert 
 
 p_g24_pairing_sm_1:
-02c8 704bef11 jam state_24g_pairing_1_waiting_ack ,mem_24g_pairing_sm 
-02c9 700d37aa jam 0xaa ,mem_24g_common_temp 
-02ca 202002d0 branch p_g24_pairing_sm_common 
+02c6 704bef11 jam state_24g_pairing_1_waiting_ack ,mem_24g_pairing_sm 
+02c7 700d37aa jam 0xaa ,mem_24g_common_temp 
+02c8 202002ce branch p_g24_pairing_sm_common 
 
 p_g24_pairing_sm_2:
-02cb 704bef12 jam state_24g_pairing_2_waiting_ack ,mem_24g_pairing_sm 
-02cc 700d3755 jam 0x55 ,mem_24g_common_temp 
-02cd 202002d0 branch p_g24_pairing_sm_common 
+02c9 704bef12 jam state_24g_pairing_2_waiting_ack ,mem_24g_pairing_sm 
+02ca 700d3755 jam 0x55 ,mem_24g_common_temp 
+02cb 202002ce branch p_g24_pairing_sm_common 
 
 p_g24_pairing_sm_3:
-02ce 704bef13 jam state_24g_pairing_3_waiting_ack ,mem_24g_pairing_sm 
-02cf 700d3722 jam 0x22 ,mem_24g_common_temp 
+02cc 704bef13 jam state_24g_pairing_3_waiting_ack ,mem_24g_pairing_sm 
+02cd 700d3722 jam 0x22 ,mem_24g_common_temp 
 
 p_g24_pairing_sm_common:
-02d0 6800cbe2 fetch 1 ,mem_24g_data_type 
-02d1 1fe17e07 and_into bits_data ,pdata 
-02d2 60008d38 store 1 ,mem_24g_common_temp + 1 
-02d3 68024c06 fetch 4 ,mem_24g_device_addr 
-02d4 60020d39 store 4 ,mem_24g_common_temp + 2 
-02d5 700d3d00 jam 0 ,mem_24g_common_temp + 6 
-02d6 da200d37 arg mem_24g_common_temp ,rega 
-02d7 d8400007 arg 7 ,temp 
-02d8 2040030d call p_g24_put_data_in_buff 
-02d9 20400350 call p_g24_transmit_prep 
-02da 20400213 call p_g24_txdata_enable_tx 
-02db 202034df branch enable_user 
+02ce 6800cbe2 fetch 1 ,mem_24g_data_type 
+02cf 1fe17e07 and_into bits_data ,pdata 
+02d0 60008d38 store 1 ,mem_24g_common_temp + 1 
+02d1 68024c06 fetch 4 ,mem_24g_device_addr 
+02d2 60020d39 store 4 ,mem_24g_common_temp + 2 
+02d3 700d3d00 jam 0 ,mem_24g_common_temp + 6 
+02d4 da200d37 arg mem_24g_common_temp ,rega 
+02d5 d8400007 arg 7 ,temp 
+02d6 2040030b call p_g24_put_data_in_buff 
+02d7 2040034e call p_g24_transmit_prep 
+02d8 20400211 call p_g24_txdata_enable_tx 
+02d9 202034df branch enable_user 
 
 p_g24_paring_mode:
-02dc 6800cbef fetch 1 ,mem_24g_pairing_sm 
-02dd c17f8000 rtneq state_24g_pairing_success 
-02de c00882e2 beq state_24g_pairing_1_waiting_ack ,p_g24_pairing_sm_1_waiting_ack 
-02df c00902e4 beq state_24g_pairing_2_waiting_ack ,p_g24_pairing_sm_2_waiting_ack 
-02e0 c00982e6 beq state_24g_pairing_3_waiting_ack ,p_g24_pairing_sm_3_waiting_ack 
-02e1 20600000 rtn 
+02da 6800cbef fetch 1 ,mem_24g_pairing_sm 
+02db c17f8000 rtneq state_24g_pairing_success 
+02dc c00882e0 beq state_24g_pairing_1_waiting_ack ,p_g24_pairing_sm_1_waiting_ack 
+02dd c00902e2 beq state_24g_pairing_2_waiting_ack ,p_g24_pairing_sm_2_waiting_ack 
+02de c00982e4 beq state_24g_pairing_3_waiting_ack ,p_g24_pairing_sm_3_waiting_ack 
+02df 20600000 rtn 
 
 p_g24_pairing_sm_1_waiting_ack:
-02e2 704bef02 jam state_24g_pairing_2 ,mem_24g_pairing_sm 
-02e3 20200237 branch p_g24_transmit_abandon 
+02e0 704bef02 jam state_24g_pairing_2 ,mem_24g_pairing_sm 
+02e1 20200235 branch p_g24_transmit_abandon 
 
 p_g24_pairing_sm_2_waiting_ack:
-02e4 704bef03 jam state_24g_pairing_3 ,mem_24g_pairing_sm 
-02e5 20200237 branch p_g24_transmit_abandon 
+02e2 704bef03 jam state_24g_pairing_3 ,mem_24g_pairing_sm 
+02e3 20200235 branch p_g24_transmit_abandon 
 
 p_g24_pairing_sm_3_waiting_ack:
-02e6 704befff jam state_24g_pairing_success ,mem_24g_pairing_sm 
-02e7 700b7d31 jam bt_evt_24g_pairing_complete ,mem_fifo_temp 
-02e8 20407c27 call ui_ipc_send_event 
-02e9 68020d19 fetch 4 ,mem_24g_rxpayload + 2 
-02ea 20400342 call p_g24_update_addr_and_synccrc8 
-02eb 20200237 branch p_g24_transmit_abandon 
+02e4 704befff jam state_24g_pairing_success ,mem_24g_pairing_sm 
+02e5 700b7d31 jam bt_evt_24g_pairing_complete ,mem_fifo_temp 
+02e6 20407c27 call ui_ipc_send_event 
+02e7 68020d19 fetch 4 ,mem_24g_rxpayload + 2 
+02e8 20400340 call p_g24_update_addr_and_synccrc8 
+02e9 20200235 branch p_g24_transmit_abandon 
 
 p_g24_start_24g_mode:
-02ec c6118000 rtnmark1 mark_24g 
-02ed 20400343 call p_g24_syncword_crc8 
-02ee 2040036a call p_g24_ch 
-02ef 6800cbef fetch 1 ,mem_24g_pairing_sm 
-02f0 c1ff8000 rtnne state_24g_pairing_success 
-02f1 204002ff call p_g24_tx_attemp_data_prep 
-02f2 58000000 setarg 0 
-02f3 60014c04 store 2 ,mem_24g_check_dongle_times 
+02ea c6118000 rtnmark1 mark_24g 
+02eb 20400341 call p_g24_syncword_crc8 
+02ec 20400368 call p_g24_ch 
+02ed 6800cbef fetch 1 ,mem_24g_pairing_sm 
+02ee c1ff8000 rtnne state_24g_pairing_success 
+02ef 204002fd call p_g24_tx_attemp_data_prep 
+02f0 58000000 setarg 0 
+02f1 60014c04 store 2 ,mem_24g_check_dongle_times 
 
 p_g24_tx_attemp_dongle_loop:
-02f4 20403cab call lpo_calibration 
-02f5 200007d0 nop 2000 
-02f6 6800cc04 fetch 1 ,mem_24g_check_dongle_times 
-02f7 c07f8266 beq 0xff ,p_g24_stop_g24_mode 
-02f8 20400255 call p_g24_transmit_receive_ack 
-02f9 24378308 nbranch p_g24_attemp_txdata_retry ,user3 
+02f2 20403cab call lpo_calibration 
+02f3 200007d0 nop 2000 
+02f4 6800cc04 fetch 1 ,mem_24g_check_dongle_times 
+02f5 c07f8264 beq 0xff ,p_g24_stop_g24_mode 
+02f6 20400253 call p_g24_transmit_receive_ack 
+02f7 24378306 nbranch p_g24_attemp_txdata_retry ,user3 
 
 p_g24_tx_attemp_dongle_succ:
-02fa 2040024d call p_g24_clear_txbuf 
-02fb 704c1303 jam 3 ,mem_24g_idle_cnt 
-02fc 79200023 set1 mark_24g ,mark 
-02fd 700b7d3c jam bt_evt_24g_attempt_success ,mem_fifo_temp 
-02fe 20207c27 branch ui_ipc_send_event 
+02f8 2040024b call p_g24_clear_txbuf 
+02f9 704c1303 jam 3 ,mem_24g_idle_cnt 
+02fa 79200023 set1 mark_24g ,mark 
+02fb 700b7d3c jam bt_evt_24g_attempt_success ,mem_fifo_temp 
+02fc 20207c27 branch ui_ipc_send_event 
 
 p_g24_tx_attemp_data_prep:
-02ff 700d37ff jam 0xff ,mem_24g_common_temp 
-0300 6800cbe2 fetch 1 ,mem_24g_data_type 
-0301 60008d38 store 1 ,mem_24g_common_temp + 1 
-0302 68024c06 fetch 4 ,mem_24g_device_addr 
-0303 60020d39 store 4 ,mem_24g_common_temp + 2 
-0304 d8400006 arg 6 ,temp 
-0305 da200d37 arg mem_24g_common_temp ,rega 
-0306 2040030d call p_g24_put_data_in_buff 
-0307 20200350 branch p_g24_transmit_prep 
+02fd 700d37ff jam 0xff ,mem_24g_common_temp 
+02fe 6800cbe2 fetch 1 ,mem_24g_data_type 
+02ff 60008d38 store 1 ,mem_24g_common_temp + 1 
+0300 68024c06 fetch 4 ,mem_24g_device_addr 
+0301 60020d39 store 4 ,mem_24g_common_temp + 2 
+0302 d8400006 arg 6 ,temp 
+0303 da200d37 arg mem_24g_common_temp ,rega 
+0304 2040030b call p_g24_put_data_in_buff 
+0305 2020034e branch p_g24_transmit_prep 
 
 p_g24_attemp_txdata_retry:
-0308 68014c04 fetch 2 ,mem_24g_check_dongle_times 
-0309 1fe0fe01 increase 1 ,pdata 
-030a 60014c04 store 2 ,mem_24g_check_dongle_times 
-030b 2040036a call p_g24_ch 
-030c 202002f4 branch p_g24_tx_attemp_dongle_loop 
+0306 68014c04 fetch 2 ,mem_24g_check_dongle_times 
+0307 1fe0fe01 increase 1 ,pdata 
+0308 60014c04 store 2 ,mem_24g_check_dongle_times 
+0309 20400368 call p_g24_ch 
+030a 202002f2 branch p_g24_tx_attemp_dongle_loop 
 
 p_g24_put_data_in_buff:
-030d 6008cbe1 storet 1 ,mem_24g_datalen 
-030e 18427200 copy temp ,loopcnt 
-030f d8a00cd5 arg mem_24g_txbuf ,contw 
-0310 1a220c00 copy rega ,contr 
-0311 20207e45 branch memcpy 
+030b 6008cbe1 storet 1 ,mem_24g_datalen 
+030c 18427200 copy temp ,loopcnt 
+030d d8a00cd5 arg mem_24g_txbuf ,contw 
+030e 1a220c00 copy rega ,contr 
+030f 20207e45 branch memcpy 
 
 p_g24_read_len_pid_crc:
-0312 68008cb4 fetch 1 ,mem_24g_rxbuf + 1 
-0313 1fe97e00 rshift3 pdata ,pdata 
-0314 6000cbdf store 1 ,mem_24g_rxdata_length 
-0315 1fe0fe01 increase 1 ,pdata 
-0316 d8c00cb4 arg mem_24g_rxbuf + 1 ,contr 
-0317 98c08c00 iadd contr ,contr 
-0318 e8c18000 ifetch 3 ,contr 
-0319 6001cc0b store 3 ,mem_24g_sta_crc 
-031a 20600000 rtn 
+0310 68008cb4 fetch 1 ,mem_24g_rxbuf + 1 
+0311 1fe97e00 rshift3 pdata ,pdata 
+0312 6000cbdf store 1 ,mem_24g_rxdata_length 
+0313 1fe0fe01 increase 1 ,pdata 
+0314 d8c00cb4 arg mem_24g_rxbuf + 1 ,contr 
+0315 98c08c00 iadd contr ,contr 
+0316 e8c18000 ifetch 3 ,contr 
+0317 6001cc0b store 3 ,mem_24g_sta_crc 
+0318 20600000 rtn 
 
 p_rssi_signal:
-031b 6808cc3c fetcht 1 ,mem_rssi_signal_index 
-031c 58004c2b setarg mem_rssi_signal_buf 
-031d 98408a00 iadd temp ,contw 
-031e 1a227e00 copy rega ,pdata 
-031f e0a08000 istore 1 ,contw 
-0320 18408401 increase 1 ,temp 
-0321 18410407 and_into rssi_buf_len_signal ,temp 
-0322 6008cc3c storet 1 ,mem_rssi_signal_index 
-0323 20600000 rtn 
+0319 6808cc3c fetcht 1 ,mem_rssi_signal_index 
+031a 58004c2b setarg mem_rssi_signal_buf 
+031b 98408a00 iadd temp ,contw 
+031c 1a227e00 copy rega ,pdata 
+031d e0a08000 istore 1 ,contw 
+031e 18408401 increase 1 ,temp 
+031f 18410407 and_into rssi_buf_len_signal ,temp 
+0320 6008cc3c storet 1 ,mem_rssi_signal_index 
+0321 20600000 rtn 
 
 p_rssi_noise:
-0324 20403af3 call save_rssi 
-0325 207a0000 rtn blank 
-0326 6808cc3b fetcht 1 ,mem_rssi_noise_index 
-0327 da204c33 arg mem_rssi_noise_buf ,rega 
-0328 2040032b call p_rssi_store 
-0329 6008cc3b storet 1 ,mem_rssi_noise_index 
-032a 20600000 rtn 
+0322 20403af3 call save_rssi 
+0323 207a0000 rtn blank 
+0324 6808cc3b fetcht 1 ,mem_rssi_noise_index 
+0325 da204c33 arg mem_rssi_noise_buf ,rega 
+0326 20400329 call p_rssi_store 
+0327 6008cc3b storet 1 ,mem_rssi_noise_index 
+0328 20600000 rtn 
 
 p_rssi_store:
-032b 1a227e00 copy rega ,pdata 
-032c 98408a00 iadd temp ,contw 
-032d 68008018 fetch 1 ,mem_rssi 
-032e e0a08000 istore 1 ,contw 
-032f 18408401 increase 1 ,temp 
-0330 18410407 and_into rssi_buf_len_signal ,temp 
-0331 20600000 rtn 
+0329 1a227e00 copy rega ,pdata 
+032a 98408a00 iadd temp ,contw 
+032b 68008018 fetch 1 ,mem_rssi 
+032c e0a08000 istore 1 ,contw 
+032d 18408401 increase 1 ,temp 
+032e 18410407 and_into rssi_buf_len_signal ,temp 
+032f 20600000 rtn 
 
 p_rssi_average:
-0332 d8400000 arg 0 ,temp 
-0333 df200008 arg rssi_buf_len_signal + 1 ,loopcnt 
-0334 1a220c00 copy rega ,contr 
+0330 d8400000 arg 0 ,temp 
+0331 df200008 arg rssi_buf_len_signal + 1 ,loopcnt 
+0332 1a220c00 copy rega ,contr 
 
 p_rssi_average_loop:
-0335 e8c08000 ifetch 1 ,contr 
-0336 98408400 iadd temp ,temp 
-0337 c2000335 loop p_rssi_average_loop 
-0338 18490400 rshift3 temp ,temp 
-0339 1fe20400 copy pdata ,temp 
-033a c6918000 rtnmark0 mark_24g 
-033b 1fe6fc0a div pdata ,10 
-033c 20407efd call wait_div_end 
-033d 1807fe00 quotient pdata 
-033e 1ff27e00 lshift4 pdata ,pdata 
-033f 18070400 remainder temp 
-0340 98418400 ior temp ,temp 
-0341 20600000 rtn 
+0333 e8c08000 ifetch 1 ,contr 
+0334 98408400 iadd temp ,temp 
+0335 c2000333 loop p_rssi_average_loop 
+0336 18490400 rshift3 temp ,temp 
+0337 1fe20400 copy pdata ,temp 
+0338 c6918000 rtnmark0 mark_24g 
+0339 1fe6fc0a div pdata ,10 
+033a 20407efd call wait_div_end 
+033b 1807fe00 quotient pdata 
+033c 1ff27e00 lshift4 pdata ,pdata 
+033d 18070400 remainder temp 
+033e 98418400 ior temp ,temp 
+033f 20600000 rtn 
 
 p_g24_update_addr_and_synccrc8:
-0342 60024c00 store 4 ,mem_24g_addr 
+0340 60024c00 store 4 ,mem_24g_addr 
 
 p_g24_syncword_crc8:
-0343 da200000 arg 0 ,rega 
-0344 df200004 arg 4 ,loopcnt 
-0345 d8c04c00 arg mem_24g_addr ,contr 
+0341 da200000 arg 0 ,rega 
+0342 df200004 arg 4 ,loopcnt 
+0343 d8c04c00 arg mem_24g_addr ,contr 
 
 p_g24_syncword_crc8_loop:
-0346 e8c08000 ifetch 1 ,contr 
-0347 9a20a200 iadd rega ,rega 
-0348 c2000346 loop p_g24_syncword_crc8_loop 
-0349 1a227e00 copy rega ,pdata 
-034a 60014c16 store 2 ,mem_24g_syncword 
-034b 6800cc16 fetch 1 ,mem_24g_syncword 
-034c 6808cc17 fetcht 1 ,mem_24g_syncword + 1 
-034d 9840fe00 iadd temp ,pdata 
-034e 6000cc18 store 1 ,mem_24g_syncword_crc8 
-034f 20600000 rtn 
+0344 e8c08000 ifetch 1 ,contr 
+0345 9a20a200 iadd rega ,rega 
+0346 c2000344 loop p_g24_syncword_crc8_loop 
+0347 1a227e00 copy rega ,pdata 
+0348 60014c16 store 2 ,mem_24g_syncword 
+0349 6800cc16 fetch 1 ,mem_24g_syncword 
+034a 6808cc17 fetcht 1 ,mem_24g_syncword + 1 
+034b 9840fe00 iadd temp ,pdata 
+034c 6000cc18 store 1 ,mem_24g_syncword_crc8 
+034d 20600000 rtn 
 
 p_g24_transmit_prep:
-0350 6800cbe1 fetch 1 ,mem_24g_datalen 
-0351 1fe0fe02 increase 2 ,pdata 
-0352 6000cbe3 store 1 ,mem_24g_txlen 
-0353 6800cbe2 fetch 1 ,mem_24g_data_type 
-0354 60008cf5 store 1 ,mem_24g_txpayload 
-0355 6800cbe1 fetch 1 ,mem_24g_datalen 
-0356 1fe9fe00 lshift3 pdata ,pdata 
-0357 6808cbe0 fetcht 1 ,mem_24g_pid 
-0358 18410403 and temp ,0x03 ,temp 
-0359 18438400 lshift temp ,temp 
-035a 9841fe00 ior temp ,pdata 
-035b 6808cc0a fetcht 1 ,mem_24g_no_ack 
-035c 9840fe00 iadd temp ,pdata 
-035d e0a08000 istore 1 ,contw 
-035e 6800cbef fetch 1 ,mem_24g_pairing_sm 
-035f c0ff8362 bne state_24g_pairing_success ,p_g24_transmit_prep_pair 
-0360 6800cbe2 fetch 1 ,mem_24g_data_type 
-0361 e0a08000 istore 1 ,contw 
+034e 6800cbe1 fetch 1 ,mem_24g_datalen 
+034f 1fe0fe02 increase 2 ,pdata 
+0350 6000cbe3 store 1 ,mem_24g_txlen 
+0351 6800cbe2 fetch 1 ,mem_24g_data_type 
+0352 60008cf5 store 1 ,mem_24g_txpayload 
+0353 6800cbe1 fetch 1 ,mem_24g_datalen 
+0354 1fe9fe00 lshift3 pdata ,pdata 
+0355 6808cbe0 fetcht 1 ,mem_24g_pid 
+0356 18410403 and temp ,0x03 ,temp 
+0357 18438400 lshift temp ,temp 
+0358 9841fe00 ior temp ,pdata 
+0359 6808cc0a fetcht 1 ,mem_24g_no_ack 
+035a 9840fe00 iadd temp ,pdata 
+035b e0a08000 istore 1 ,contw 
+035c 6800cbef fetch 1 ,mem_24g_pairing_sm 
+035d c0ff8360 bne state_24g_pairing_success ,p_g24_transmit_prep_pair 
+035e 6800cbe2 fetch 1 ,mem_24g_data_type 
+035f e0a08000 istore 1 ,contw 
 
 p_g24_transmit_prep_pair:
-0362 6800cbe1 fetch 1 ,mem_24g_datalen 
-0363 98007200 iforce loopcnt 
-0364 6800cbe2 fetch 1 ,mem_24g_data_type 
-0365 c0008368 beq 1 ,p_g24_transmit_prep_mouse 
-0366 d8c00cd5 arg mem_24g_txbuf ,contr 
-0367 20207e45 branch memcpy 
+0360 6800cbe1 fetch 1 ,mem_24g_datalen 
+0361 98007200 iforce loopcnt 
+0362 6800cbe2 fetch 1 ,mem_24g_data_type 
+0363 c0008366 beq 1 ,p_g24_transmit_prep_mouse 
+0364 d8c00cd5 arg mem_24g_txbuf ,contr 
+0365 20207e45 branch memcpy 
 
 p_g24_transmit_prep_mouse:
-0368 d8c00cd6 arg mem_24g_txbuf + 1 ,contr 
-0369 20207e45 branch memcpy 
+0366 d8c00cd6 arg mem_24g_txbuf + 1 ,contr 
+0367 20207e45 branch memcpy 
 
 p_g24_ch:
-036a 6808cbea fetcht 1 ,mem_24g_current_ch_number 
-036b 20400370 call p_g24_ch_calc 
-036c 18408401 increase 1 ,temp 
-036d 18410403 and_into 3 ,temp 
-036e 6008cbea storet 1 ,mem_24g_current_ch_number 
-036f 20600000 rtn 
+0368 6808cbea fetcht 1 ,mem_24g_current_ch_number 
+0369 2040036e call p_g24_ch_calc 
+036a 18408401 increase 1 ,temp 
+036b 18410403 and_into 3 ,temp 
+036c 6008cbea storet 1 ,mem_24g_current_ch_number 
+036d 20600000 rtn 
 
 p_g24_ch_calc:
-0370 6800cc00 fetch 1 ,mem_24g_addr 
-0371 1fe17e03 and_into 0x03 ,pdata 
-0372 1fefa204 mul32 pdata ,4 ,rega 
-0373 58004bf0 setarg mem_24g_ch_map1 
-0374 9a20fe00 iadd rega ,pdata 
-0375 98408c00 iadd temp ,contr 
-0376 e8c08000 ifetch 1 ,contr 
-0377 6000cbe9 store 1 ,mem_24g_ch 
-0378 20600000 rtn 
+036e 6800cc00 fetch 1 ,mem_24g_addr 
+036f 1fe17e03 and_into 0x03 ,pdata 
+0370 1fefa204 mul32 pdata ,4 ,rega 
+0371 58004bf0 setarg mem_24g_ch_map1 
+0372 9a20fe00 iadd rega ,pdata 
+0373 98408c00 iadd temp ,contr 
+0374 e8c08000 ifetch 1 ,contr 
+0375 6000cbe9 store 1 ,mem_24g_ch 
+0376 20600000 rtn 
 
 p_g24_prep:
-0379 7844fc00 disable enable_crc 
-037a 7843fc00 disable enable_white 
-037b 58555555 setarg 0x555555 
-037c 98001e00 iforce crc24_init 
-037d 6800cbe9 fetch 1 ,mem_24g_ch 
-037e 1fed8400 reverse pdata ,temp 
-037f 79200401 set1 1 ,temp 
-0380 18431c00 rshift temp ,white_init 
-0381 20600000 rtn 
+0377 7844fc00 disable enable_crc 
+0378 7843fc00 disable enable_white 
+0379 58555555 setarg 0x555555 
+037a 98001e00 iforce crc24_init 
+037b 6800cbe9 fetch 1 ,mem_24g_ch 
+037c 1fed8400 reverse pdata ,temp 
+037d 79200401 set1 1 ,temp 
+037e 18431c00 rshift temp ,white_init 
+037f 20600000 rtn 
 
 p_g24_receive_rxon:
-0382 20400379 call p_g24_prep 
-0383 7826fc00 enable decode_fec0 
-0384 7830fc00 enable is_rx 
-0385 78507c00 disable is_tx 
-0386 78287c00 enable swfine 
-0387 68014be4 fetch 2 ,mem_24g_rx_window 
-0388 98003600 iforce stop_watch 
-0389 37c18400 correlate null ,timeout 
-038a 242c03c3 nbranch p_g24_sync_timeout ,sync 
-038b 7846fc00 disable decode_fec0 
-038c 7825fc00 enable decode_fec1 
-038d 7823fc00 enable enable_white 
-038e 7824fc00 enable enable_crc 
-038f 09800008 parse demod ,bucket ,8 
-0390 19897e00 rshift3 pwindow ,pdata 
-0391 6000cc19 store 1 ,mem_24g_get_syncword_crc8 
-0392 6808cc18 fetcht 1 ,mem_24g_syncword_crc8 
-0393 98467c00 isub temp ,null 
-0394 242283c0 nbranch p_g24_end_of_packet ,zero 
-0395 09800008 parse demod ,bucket ,8 
-0396 19897e00 rshift3 pwindow ,pdata 
-0397 60008cb3 store 1 ,mem_24g_rxbuf 
-0398 6800cc10 fetch 1 ,mem_24g_mode 
-0399 1fe67c02 sub pdata ,rx_24g ,null 
-039a 2022839f branch p_g24_receive_skip ,zero 
-039b 68008cb3 fetch 1 ,mem_24g_rxbuf 
-039c 6808cbe2 fetcht 1 ,mem_24g_data_type 
-039d a8400e00 icompare bits_data ,temp 
-039e 242083c0 nbranch p_g24_end_of_packet ,true 
+0380 20400377 call p_g24_prep 
+0381 7826fc00 enable decode_fec0 
+0382 7830fc00 enable is_rx 
+0383 78507c00 disable is_tx 
+0384 78287c00 enable swfine 
+0385 68014be4 fetch 2 ,mem_24g_rx_window 
+0386 98003600 iforce stop_watch 
+0387 37c18400 correlate null ,timeout 
+0388 242c03c1 nbranch p_g24_sync_timeout ,sync 
+0389 7846fc00 disable decode_fec0 
+038a 7825fc00 enable decode_fec1 
+038b 7823fc00 enable enable_white 
+038c 7824fc00 enable enable_crc 
+038d 09800008 parse demod ,bucket ,8 
+038e 19897e00 rshift3 pwindow ,pdata 
+038f 6000cc19 store 1 ,mem_24g_get_syncword_crc8 
+0390 6808cc18 fetcht 1 ,mem_24g_syncword_crc8 
+0391 98467c00 isub temp ,null 
+0392 242283be nbranch p_g24_end_of_packet ,zero 
+0393 09800008 parse demod ,bucket ,8 
+0394 19897e00 rshift3 pwindow ,pdata 
+0395 60008cb3 store 1 ,mem_24g_rxbuf 
+0396 6800cc10 fetch 1 ,mem_24g_mode 
+0397 1fe67c02 sub pdata ,rx_24g ,null 
+0398 2022839d branch p_g24_receive_skip ,zero 
+0399 68008cb3 fetch 1 ,mem_24g_rxbuf 
+039a 6808cbe2 fetcht 1 ,mem_24g_data_type 
+039b a8400e00 icompare bits_data ,temp 
+039c 242083be nbranch p_g24_end_of_packet ,true 
 
 p_g24_receive_skip:
-039f 09800008 parse demod ,bucket ,8 
-03a0 19897e00 rshift3 pwindow ,pdata 
-03a1 e0a08000 istore 1 ,contw 
-03a2 1fe97e00 rshift3 pdata ,pdata 
-03a3 1fe1721f and pdata ,0x1f ,loopcnt 
-03a4 202283a9 branch p_g24rx_nopayload ,zero 
+039d 09800008 parse demod ,bucket ,8 
+039e 19897e00 rshift3 pwindow ,pdata 
+039f e0a08000 istore 1 ,contw 
+03a0 1fe97e00 rshift3 pdata ,pdata 
+03a1 1fe1721f and pdata ,0x1f ,loopcnt 
+03a2 202283a7 branch p_g24rx_nopayload ,zero 
 
 p_g24rx_loop:
-03a5 09800008 parse demod ,bucket ,8 
-03a6 19897e00 rshift3 pwindow ,pdata 
-03a7 e0a08000 istore 1 ,contw 
-03a8 c20003a5 loop p_g24rx_loop 
+03a3 09800008 parse demod ,bucket ,8 
+03a4 19897e00 rshift3 pwindow ,pdata 
+03a5 e0a08000 istore 1 ,contw 
+03a6 c20003a3 loop p_g24rx_loop 
 
 p_g24rx_nopayload:
-03a9 18a22200 copy contw ,rega 
-03aa 09800008 parse demod ,bucket ,8 
-03ab 19897e00 rshift3 pwindow ,pdata 
-03ac 6000cc2a store 1 ,mem_rssi_hex_received 
-03ad 1a220a00 copy rega ,contw 
-03ae 09800018 parse demod ,bucket ,24 
-03af 78287c00 enable swfine 
-03b0 db600664 arg param_sifs ,stop_watch 
-03b1 1fef7e00 rshift32 pdata ,pdata 
-03b2 1ff17e00 rshift16 pdata ,pdata 
-03b3 e0a18000 istore 3 ,contw 
-03b4 7845fc00 disable decode_fec1 
-03b5 202303c0 branch p_g24_end_of_packet ,crc_failed 
-03b6 7837fc00 enable user3 
-03b7 68008017 fetch 1 ,mem_last_freq 
-03b8 1fe0a200 add pdata ,0 ,rega 
-03b9 20403ab6 call rf_write_freq 
-03ba 7846fc00 disable decode_fec0 
-03bb 20403a7a call set_sync_on 
-03bc 6800cc2a fetch 1 ,mem_rssi_hex_received 
-03bd 1fe22200 copy pdata ,rega 
-03be 2040031b call p_rssi_signal 
-03bf 20600000 rtn 
+03a7 18a22200 copy contw ,rega 
+03a8 09800008 parse demod ,bucket ,8 
+03a9 19897e00 rshift3 pwindow ,pdata 
+03aa 6000cc2a store 1 ,mem_rssi_hex_received 
+03ab 1a220a00 copy rega ,contw 
+03ac 09800018 parse demod ,bucket ,24 
+03ad 78287c00 enable swfine 
+03ae db600664 arg param_sifs ,stop_watch 
+03af 1fef7e00 rshift32 pdata ,pdata 
+03b0 1ff17e00 rshift16 pdata ,pdata 
+03b1 e0a18000 istore 3 ,contw 
+03b2 7845fc00 disable decode_fec1 
+03b3 202303be branch p_g24_end_of_packet ,crc_failed 
+03b4 7837fc00 enable user3 
+03b5 68008017 fetch 1 ,mem_last_freq 
+03b6 1fe0a200 add pdata ,0 ,rega 
+03b7 20403ab6 call rf_write_freq 
+03b8 7846fc00 disable decode_fec0 
+03b9 20403a7a call set_sync_on 
+03ba 6800cc2a fetch 1 ,mem_rssi_hex_received 
+03bb 1fe22200 copy pdata ,rega 
+03bc 20400319 call p_rssi_signal 
+03bd 20600000 rtn 
 
 p_g24_end_of_packet:
-03c0 784dfc00 disable encode_fec1 
-03c1 7845fc00 disable decode_fec1 
-03c2 2020375c branch end_of_packet 
+03be 784dfc00 disable encode_fec1 
+03bf 7845fc00 disable decode_fec1 
+03c0 2020375c branch end_of_packet 
 
 p_g24_sync_timeout:
-03c3 20400324 call p_rssi_noise 
-03c4 202003c0 branch p_g24_end_of_packet 
+03c1 20400322 call p_rssi_noise 
+03c2 202003be branch p_g24_end_of_packet 
 
 p_g24_set_freq_tx:
-03c5 20403a7a call set_sync_on 
-03c6 6808cbe9 fetcht 1 ,mem_24g_ch 
-03c7 20203a91 branch set_freq_tx 
+03c3 20403a7a call set_sync_on 
+03c4 6808cbe9 fetcht 1 ,mem_24g_ch 
+03c5 20203a91 branch set_freq_tx 
 
 p_g24_transmit:
-03c8 204053d2 call le_enable 
-03c9 68024c00 fetch 4 ,mem_24g_addr 
-03ca 98001200 iforce access 
-03cb 20400379 call p_g24_prep 
-03cc 204003c5 call p_g24_set_freq_tx 
-03cd 79202a00 set1 txgfsk ,radio_ctrl 
-03ce 782efc00 enable encode_fec0 
-03cf 78307c00 enable is_tx 
-03d0 7850fc00 disable is_rx 
-03d1 19317e00 rshift16 access ,pdata 
-03d2 1fecfe00 rshift8 pdata ,pdata 
-03d3 1ff1fe00 rshift4 pdata ,pdata 
-03d4 08008628 inject mod ,40 
-03d5 784efc00 disable encode_fec0 
-03d6 782dfc00 enable encode_fec1 
-03d7 7823fc00 enable enable_white 
-03d8 7824fc00 enable enable_crc 
-03d9 6800cc18 fetch 1 ,mem_24g_syncword_crc8 
-03da 08008608 inject mod ,8 
-03db 6800cbe3 fetch 1 ,mem_24g_txlen 
-03dc 98007200 iforce loopcnt 
-03dd d8c00cf5 arg mem_24g_txpayload ,contr 
+03c6 204053d2 call le_enable 
+03c7 68024c00 fetch 4 ,mem_24g_addr 
+03c8 98001200 iforce access 
+03c9 20400377 call p_g24_prep 
+03ca 204003c3 call p_g24_set_freq_tx 
+03cb 79202a00 set1 txgfsk ,radio_ctrl 
+03cc 782efc00 enable encode_fec0 
+03cd 78307c00 enable is_tx 
+03ce 7850fc00 disable is_rx 
+03cf 19317e00 rshift16 access ,pdata 
+03d0 1fecfe00 rshift8 pdata ,pdata 
+03d1 1ff1fe00 rshift4 pdata ,pdata 
+03d2 08008628 inject mod ,40 
+03d3 784efc00 disable encode_fec0 
+03d4 782dfc00 enable encode_fec1 
+03d5 7823fc00 enable enable_white 
+03d6 7824fc00 enable enable_crc 
+03d7 6800cc18 fetch 1 ,mem_24g_syncword_crc8 
+03d8 08008608 inject mod ,8 
+03d9 6800cbe3 fetch 1 ,mem_24g_txlen 
+03da 98007200 iforce loopcnt 
+03db d8c00cf5 arg mem_24g_txpayload ,contr 
 
 p_g24tr_loop:
-03de e8c08000 ifetch 1 ,contr 
-03df 08008608 inject mod ,8 
-03e0 c20003de loop p_g24tr_loop 
-03e1 78247c00 enable enable_parity 
-03e2 08008618 inject mod ,24 
-03e3 78447c00 disable enable_parity 
-03e4 37d38200 until null ,tx_clear 
-03e5 20000064 nop 100 
-03e6 784efc00 disable encode_fec0 
-03e7 784dfc00 disable encode_fec1 
-03e8 20600000 rtn 
+03dc e8c08000 ifetch 1 ,contr 
+03dd 08008608 inject mod ,8 
+03de c20003dc loop p_g24tr_loop 
+03df 78247c00 enable enable_parity 
+03e0 08008618 inject mod ,24 
+03e1 78447c00 disable enable_parity 
+03e2 37d38200 until null ,tx_clear 
+03e3 20000064 nop 100 
+03e4 784efc00 disable encode_fec0 
+03e5 784dfc00 disable encode_fec1 
+03e6 20600000 rtn 
 org 0x3000
 
 start:
Index: btkb/output/ramcode.rom
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/output/ramcode.rom	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/output/ramcode.rom	(working copy)
@@ -1,71 +1,69 @@
 c512800f
 c0000017
-c001801d
-c0028020
-c048014e
-c0490118
-c04a011e
-c04a8108
-c05800ca
-c05880cc
-c05900e0
-c05980fa
-c05b0103
-c05c80d4
+c001801b
+c002801e
+c048014c
+c0490116
+c04a011c
+c04a8106
+c05800c8
+c05880ca
+c05900de
+c05980f8
+c05b0101
+c05c80d2
 20203bf1
-c01f01c1
-c01f81c5
-c04380a9
-c04681d3
-c04781c9
-c0668158
-c06800b4
+c01f01bf
+c01f81c3
+c04380a7
+c04681d1
+c04781c7
+c0668156
+c06800b2
 20203bf1
 6810813b
 60008b81
-58280520
-6001cd4c
 70800608
 20203003
-20400044
-20400025
+20400042
+20400023
 20203015
 20403392
 20403407
 20403024
-204001e9
+204001e7
 20203022
-204000a4
+204000a2
 20740000
 1ff0fe00
 1fe20c00
-20400085
+20400083
 6000cba7
-c0008038
-c0030042
+c0008036
+c0030040
 1fe20400
 18c22200
 6800c040
-c3000035
+c3000033
 1a220c00
 c6848000
 18427e00
 20600000
 1a220c00
 d8a000f8
-2020007d
-20400085
-20400085
+2020007b
+20400083
+20400083
 60008b7d
-2040003d
+2040003b
 20207c33
-20400088
+20400086
 18c20400
 18508400
 60094b9a
 20600000
 d8a00cd5
-2020007d
+2020007b
 680a4c59
 1c427e00
 98467e00
@@ -85,18 +83,18 @@
 1fe17e03
 c1800000
 6800cc8f
-c2800061
-c2808063
+c280005f
+c2808061
 da200000
-20400074
+20400072
 7089718f
 6800cc90
 60108973
-20400064
+20400062
 da200001
-20200074
+20200072
 708971bf
-20200064
+20200062
 708971af
 68108053
 79207e07
@@ -119,19 +117,19 @@
 98460400
 1a227e00
 79200407
-243a007b
+243a0079
 793f8407
 d8a08078
 202069f4
-20400085
+20400083
 1fe27200
-20400081
-2020003d
-20400085
+2040007f
+2020003b
+20400083
 e0a08000
-c2000081
+c200007f
 20600000
-20400088
+20400086
 e8c08000
 20600000
 58004b36
@@ -148,8 +146,8 @@
 1a220c00
 e8c08000
 e0a08000
-2040009c
-c2000094
+2040009a
+c2000092
 18a27e00
 1ff0fe00
 60014ba0
@@ -161,7 +159,7 @@
 20600000
 68014b9e
 68094ba0
-202000a6
+202000a4
 68014b9a
 68094b9c
 98467c00
@@ -172,7 +170,7 @@
 6808c7ef
 6800cd4b
 98467c00
-244100b0
+244100ae
 20207c06
 680a4d48
 600a47ec
@@ -186,8 +184,8 @@
 207a0000
 1fe0ffff
 60008259
-204000be
-202000b8
+204000bc
+202000b6
 6800cc15
 207a0000
 1fe0ffff
@@ -199,7 +197,7 @@
 1a627e00
 207a0000
 6000cba4
-2020008d
+2020008b
 20403b36
 20203cdc
 70416e7f
@@ -240,32 +238,32 @@
 6800c793
 207a0000
 20203d25
-204000a4
+204000a2
 24740000
-204000a1
+2040009f
 24740000
 700b7f01
 700b7e01
-204000ff
-202000a4
-204000f2
+204000fd
+202000a2
+204000f0
 24740000
 68008b7f
 247a0000
 20203d2d
 68008b7e
 2000000a
-c08000ff
+c08000fd
 20600000
-204000f2
+204000f0
 24740000
 68008b7f
 247a0000
 20203d4f
-2040010a
+20400108
 20203aaf
 6800c219
-243a0110
+243a010e
 20403d91
 20007530
 20007530
@@ -284,7 +282,7 @@
 60088017
 1840a200
 20203ab6
-2040011b
+20400119
 58000500
 20403bf3
 70890601
@@ -299,13 +297,13 @@
 2000000a
 7089027d
 6800cbef
-c0ff8136
+c0ff8134
 6802ca91
 e0a28000
 e8c28000
 e0a28000
 708956df
-2040013d
+2040013b
 708955df
 20600000
 6802ca87
@@ -333,7 +331,7 @@
 708956c0
 20600000
 2030ba6f
-20400145
+20400143
 20203a6f
 78347c00
 68120138
@@ -345,15 +343,15 @@
 700b7e00
 70017706
 20403fa4
-58000157
+58000155
 6001428a
-580000c3
+580000c1
 60014292
-580001c8
+580001c6
 60014290
-58000025
+58000023
 6001428c
-58000151
+5800014f
 60014288
 58004aa0
 1ff0fe00
@@ -365,31 +363,31 @@
 60014b9e
 60014ba0
 6800cc97
-c02d0186
-20358184
+c02d0184
+20358182
 68014c91
 1ff0fe00
 60014c91
 68014c93
 1ff0fe00
 60014c93
-20400191
+2040018f
 680402a0
-243a017e
+243a017c
 68014ad4
 1ff0fe00
-203a017e
+203a017c
 60014c93
-204001e6
+204001e4
 704ba42f
-2040008d
+2040008b
 704c9700
 70828003
 20600000
 704ba430
-20200180
+2020017e
 1ce27e00
-203a01cb
+203a01c9
 20405b63
 20404d99
 58000000
@@ -398,7 +396,7 @@
 1c427e00
 60024c59
 704ba433
-20200180
+2020017e
 2040688a
 580007e2
 da2002a0
@@ -408,8 +406,8 @@
 680402a0
 207a0000
 6800cc8f
-c28001a3
-c28081b1
+c28001a1
+c28081af
 680102a0
 1ff0fe00
 60014c91
@@ -456,7 +454,7 @@
 202053d9
 20600000
 700b7e03
-204000ff
+204000fd
 704c975a
 20403db8
 68120138
@@ -472,32 +470,32 @@
 20407c24
 18427e00
 207a0000
-c01081de
-c01101e0
-c01181e3
+c01081dc
+c01101de
+c01181e1
 20207c5a
 704befff
-202002ec
+202002ea
 793f8023
 704befff
-20200266
+20200264
 5fffffff
 60024c00
-202002b7
+202002b5
 58000000
 60024ba9
 20600000
 c6918000
-2040020f
-24340200
+2040020d
+243401fe
 704c150a
-2040022a
+20400228
 6800cbef
 c1ff8000
-20400288
+20400286
 6800cd46
 247a0000
-204000f2
+204000f0
 24740000
 68008b7f
 247a0000
@@ -510,7 +508,7 @@
 20407e8a
 600a41fc
 20203cda
-204000f2
+204000f0
 24740000
 68008b7f
 247a0000
@@ -520,34 +518,34 @@
 6800c131
 207a0000
 6800cc15
-243a01fc
+243a01fa
 68044d3d
 20407e8a
 600a41fc
 20203cda
 6800cbef
-c0ff82c0
-20400215
-20400350
+c0ff82be
+20400213
+2040034e
 704be601
 20600000
 78547c00
 704be202
 68008cd5
-c000821e
-c0010222
-c0018226
+c000821c
+c0010220
+c0018224
 6800cd46
 245a34df
 20600000
 58000000
 60008cd5
 704be10a
-20200228
+20200226
 58000003
 60008cd5
 704be104
-20200228
+20200226
 704be201
 704be108
 704be700
@@ -555,17 +553,17 @@
 704be800
 d9600d00
 34730200
-20400255
-2437823b
-20400269
-2040027a
+20400253
+24378239
+20400267
+20400278
 6800cbe0
 1fe0fe01
 6000cbe0
 704d4600
 6800cbef
-c0ff8253
-2040024d
+c0ff8251
+2040024b
 704be700
 704be600
 20600000
@@ -574,52 +572,52 @@
 1fe0fe01
 6000cbe7
 6800cbef
-c0ff8265
+c0ff8263
 6800cbe7
-c07f8266
+c07f8264
 6800cbe7
 d8400010
 98467c00
-2021036a
+20210368
 6800cbe8
 1fe0fe01
 6000cbe8
 2000000a
-c083822b
-2020036a
+c0838229
+20200368
 58000000
 60048cd5
 20600000
 c591f2b9
 68040cd5
 20600000
-20400277
-202002dc
+20400275
+202002da
 7857fc00
-204003c8
+204003c6
 6800cc0a
-c0008262
+c0008260
 18002a00
 68024c00
 98001200
 68088017
 20403a82
 20403a87
-20400382
-205783c0
+20400380
+205783be
 20600000
 700cb400
 7837fc00
-202003c0
+202003be
 20600000
 704d4600
 700b7d32
 20207c27
-20400312
+20400310
 6800cbdf
 207a0000
 98007200
-20400271
+2040026f
 d8c00cb5
 d8a00d17
 20207e45
@@ -638,7 +636,7 @@
 20600000
 6800cc27
 1fe67c01
-24410286
+24410284
 6800cc27
 c1000000
 1fe0ffff
@@ -647,18 +645,18 @@
 704c2702
 20600000
 da204c2b
-20400332
+20400330
 6008cc29
 280ffe23
-20408296
-2440829a
+20408294
+24408298
 98467c00
-242102ae
+242102ac
 6800cc27
 1fe67c01
-2421029e
+2421029c
 6800cc27
-c00002ae
+c00002ac
 20600000
 58000082
 20600000
@@ -673,49 +671,49 @@
 704c2700
 6808cc29
 280ffe23
-20408298
-2440829c
+20408296
+2440829a
 98467c00
 24610000
 6800cc28
-c00002b5
+c00002b3
 1fe0ffff
 6000cc28
-c00002b5
+c00002b3
 704c3d00
 20600000
 6800cc28
-c00102b3
+c00102b1
 1fe0fe01
 6000cc28
-c00082ac
+c00082aa
 704c3d02
 20600000
 704c3d04
 20600000
 79200023
-204002bc
-20400237
+204002ba
+20400235
 704bef01
 20600000
 704be000
 704be94e
 68024beb
-20200342
-204002bc
+20200340
+204002ba
 6800cbe6
 c000b4df
 6800cbef
-c00082c8
-c00102cb
-c00182ce
+c00082c6
+c00102c9
+c00182cc
 20203bf1
 704bef11
 700d37aa
-202002d0
+202002ce
 704bef12
 700d3755
-202002d0
+202002ce
 704bef13
 700d3722
 6800cbe2
@@ -726,41 +724,41 @@
 700d3d00
 da200d37
 d8400007
-2040030d
-20400350
-20400213
+2040030b
+2040034e
+20400211
 202034df
 6800cbef
 c17f8000
-c00882e2
-c00902e4
-c00982e6
+c00882e0
+c00902e2
+c00982e4
 20600000
 704bef02
-20200237
+20200235
 704bef03
-20200237
+20200235
 704befff
 700b7d31
 20407c27
 68020d19
-20400342
-20200237
+20400340
+20200235
 c6118000
-20400343
-2040036a
+20400341
+20400368
 6800cbef
 c1ff8000
-204002ff
+204002fd
 58000000
 60014c04
 20403cab
 200007d0
 6800cc04
-c07f8266
-20400255
-24378308
-2040024d
+c07f8264
+20400253
+24378306
+2040024b
 704c1303
 79200023
 700b7d3c
@@ -772,13 +770,13 @@
 60020d39
 d8400006
 da200d37
-2040030d
-20200350
+2040030b
+2020034e
 68014c04
 1fe0fe01
 60014c04
-2040036a
-202002f4
+20400368
+202002f2
 6008cbe1
 18427200
 d8a00cd5
@@ -806,7 +804,7 @@
 207a0000
 6808cc3b
 da204c33
-2040032b
+20400329
 6008cc3b
 20600000
 1a227e00
@@ -821,7 +819,7 @@
 1a220c00
 e8c08000
 98408400
-c2000335
+c2000333
 18490400
 1fe20400
 c6918000
@@ -838,7 +836,7 @@
 d8c04c00
 e8c08000
 9a20a200
-c2000346
+c2000344
 1a227e00
 60014c16
 6800cc16
@@ -861,19 +859,19 @@
 9840fe00
 e0a08000
 6800cbef
-c0ff8362
+c0ff8360
 6800cbe2
 e0a08000
 6800cbe1
 98007200
 6800cbe2
-c0008368
+c0008366
 d8c00cd5
 20207e45
 d8c00cd6
 20207e45
 6808cbea
-20400370
+2040036e
 18408401
 18410403
 6008cbea
@@ -896,7 +894,7 @@
 79200401
 18431c00
 20600000
-20400379
+20400377
 7826fc00
 7830fc00
 78507c00
@@ -904,7 +902,7 @@
 68014be4
 98003600
 37c18400
-242c03c3
+242c03c1
 7846fc00
 7825fc00
 7823fc00
@@ -914,27 +912,27 @@
 6000cc19
 6808cc18
 98467c00
-242283c0
+242283be
 09800008
 19897e00
 60008cb3
 6800cc10
 1fe67c02
-2022839f
+2022839d
 68008cb3
 6808cbe2
 a8400e00
-242083c0
+242083be
 09800008
 19897e00
 e0a08000
 1fe97e00
 1fe1721f
-202283a9
+202283a7
 09800008
 19897e00
 e0a08000
-c20003a5
+c20003a3
 18a22200
 09800008
 19897e00
@@ -947,7 +945,7 @@
 1ff17e00
 e0a18000
 7845fc00
-202303c0
+202303be
 7837fc00
 68008017
 1fe0a200
@@ -956,21 +954,21 @@
 20403a7a
 6800cc2a
 1fe22200
-2040031b
+20400319
 20600000
 784dfc00
 7845fc00
 2020375c
-20400324
-202003c0
+20400322
+202003be
 20403a7a
 6808cbe9
 20203a91
 204053d2
 68024c00
 98001200
-20400379
-204003c5
+20400377
+204003c3
 79202a00
 782efc00
 78307c00
@@ -990,7 +988,7 @@
 d8c00cf5
 e8c08000
 08008608
-c20003de
+c20003dc
 78247c00
 08008618
 78447c00
Index: btkb/output/sched.rom
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/output/sched.rom	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/output/sched.rom	(working copy)
@@ -276,9 +276,9 @@
 090101 25084b6579626f617264
 090200 090103
 090201# VendorID
-090a5c
+0904e8
 090202#ProductID
-098502
+097021
 090203 090001
 090204 2801
 090205 090002
@@ -317,9 +317,6 @@
 mem_ipc_tx_evt_buff:02 01
 
 
-mem_adc_0v:9f 3e
-mem_adc_3v:cd 4d
-mem_adc_config_flag:04    #01 VINLPM      #02 HVIN      #04 GPIO
 
 
 #attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
@@ -351,7 +348,7 @@
 0c 00 00 28 02 0a 18 
 #Characteristic: pnp id
 0d 00 03 28 01 02
-0e 00 50 2a 07 02 8a 24 66 82 01 00
+0e 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
 
 #Primary service: HID
 0f 00 00 28 02 12 18
@@ -544,6 +541,11 @@
 mem_le_scan_data:
 '\09BT4.2 Keyboard
 
+mem_version_yy_mm_dd:20 20 06 12		#version data 20200612
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:04    #01 VINLPM      #02 HVIN      #04 GPIO
 
 #24g init
 mem_24g_mode:01#tx
Index: btkb/program/patch.prog
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/program/patch.prog	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/program/patch.prog	(working copy)
@@ -1,6 +1,7 @@
 define P24G
 //define GPIO_TEST_01
 //define WAKE_DEV
+//define TP_MAX
 
 	bmark1 mark_ext_patch,patch_ext
 	beq patch00_0,p_soft_reset
@@ -33,8 +34,6 @@
 p_soft_reset: 
 	hfetch 1,0x813b
 	store 1,mem_wakup_from_power_flag
-	setarg 0x280520			// 2020 05 28
-	store 3,mem_version_yy_mm_dd
 	hjam lock_otp,core_misc_ctrl
 	branch soft_reset+2
 
Index: btkb/sched/kb.dat
===================================================================
--- /YC1026/YC1085_only_24g_SDK/btkb/sched/kb.dat	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/btkb/sched/kb.dat	(working copy)
@@ -276,9 +276,9 @@
 090101 25084b6579626f617264
 090200 090103
 090201# VendorID
-090a5c
+0904e8
 090202#ProductID
-098502
+097021
 090203 090001
 090204 2801
 090205 090002
@@ -317,9 +317,6 @@
 mem_ipc_tx_evt_buff:02 01
 
 
-mem_adc_0v:9f 3e
-mem_adc_3v:cd 4d
-mem_adc_config_flag:04    #01 VINLPM      #02 HVIN      #04 GPIO
 
 
 #attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
@@ -351,7 +348,7 @@
 0c 00 00 28 02 0a 18 
 #Characteristic: pnp id
 0d 00 03 28 01 02
-0e 00 50 2a 07 02 8a 24 66 82 01 00
+0e 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
 
 #Primary service: HID
 0f 00 00 28 02 12 18
@@ -544,6 +541,11 @@
 mem_le_scan_data:
 '\09BT4.2 Keyboard
 
+mem_version_yy_mm_dd:20 20 06 12		#version data 20200612
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:04    #01 VINLPM      #02 HVIN      #04 GPIO
 
 #24g init
 mem_24g_mode:01#tx
Index: c51/YCkbTool.bat
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/YCkbTool.bat	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/YCkbTool.bat	(working copy)
@@ -22,7 +22,13 @@
 
 util\hex2mif.exe < output\fw.hex ram > output\fwram.rom
 copy .\patch\kb.dat + .\patch\rf.dat .\patch\sch.rom 
-util\transform_name2addr.exe .\patch\sch.rom .\output\sched.rom .\patch\memmap.format
+
+cd util
+perl DeleteNote.pl ..\patch\sch.rom
+perl transform_name2addr.pl ..\patch\sch.rom ..\output\sched.rom ..\patch\memmap.format
+perl sortsched.pl ..\output\sched.rom ..\output\sched.rom
+cd ..
+
 copy .\patch\ramcode.rom .\output\
 copy .\patch\geneep.exe .\output\
 copy .\output\*.obj .\patch\*.obj
Index: c51/adc.h
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/adc.h	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/adc.h	(working copy)
@@ -1,16 +1,17 @@
 #ifndef _ADC_H
 #define _ADC_H
 #include "common.h"
+
 #define ADC_ENABLE
+//#define ADC_TYPE_VINLPM			0x01	// 1.8V~3.6V
+//#define ADC_TYPE_HVIN			0x02	// 3.0~5.5V
+#define ADC_TYPE_GPIO			0x04	// 0~1.5V
 
 
 // GPIO5 0x30,   GPIO6 0x31,   GPIO7 0x32,
 //GPIO18 0x33,   GPIO19 0x34,   GPIO20 0x35,   GPIO21 0x36,    GPIO22 0x37
 #define ADC_CHANNEL				0x37	
 
-#define ADC_TYPE_VINLPM			0x01	// 1.8V~3.6V
-#define ADC_TYPE_HVIN			0x02	// 3.0~5.5V
-#define ADC_TYPE_GPIO			0x04	// 0~1.5V
 
 #define BAT_STATUS_NONE			0
 #define BAT_STATUS_LOW				1
@@ -19,6 +20,8 @@
 //battery check
 #define BATTERY_CHECK_INTERVAL 		5			// 500ms*5 = 2.5s
 #define INIT_BATTERY_VALUE   				0x7990
+#define INIT_BATTERY_VALUE_GPIO			0x6262
+#define INIT_BATTERY_VALUE_VINLPM		0x5151
 #define LOW_BATTERY_FLASH_INTERVAL	4	
 
 // battery to gpio R = 1M
@@ -26,6 +29,10 @@
 #define LOW_BATTER_COEFFICIENT_1V0       0.27
 #define LOW_BATTER_COEFFICIENT_0V9	0.19
 
+#define LOW_BATTER_COEFFICIENT_2V2   	0.74
+#define LOW_BATTER_COEFFICIENT_2V0       0.67
+
+
 #define LOW_BATTER_COEFFICIENT_3V3   	1.11
 #define LOW_BATTER_COEFFICIENT_3V2       1.07
 #define LOW_BATTER_COEFFICIENT_3V1	1.04
Index: c51/adc.c
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/adc.c	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/adc.c	(working copy)
@@ -2,45 +2,46 @@
 
 void YC_adc_init()
 {
+#ifdef  ADC_ENABLE
 	byte i;
-	#ifndef  ADC_ENABLE
-		return;
-	#endif	
-	m_adc_channel = ADC_CHANNEL;
+	
 	g_variable.battery_check_interval = BATTERY_CHECK_INTERVAL;
 	g_variable.battery_value_index = 0;
+
+#ifdef ADC_TYPE_HVIN 	
 	for (i = 0; i < BAT_ARRAY_LEN; i++)
 	{
 		g_variable.battery_value[i] = INIT_BATTERY_VALUE;
 	}
 
-	
-	if(m_adc_config_flag == ADC_TYPE_HVIN)
-	{
-		g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V2+m_adc0vBase;
-		g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V0+m_adc0vBase;
-	}
-	else if(m_adc_config_flag == ADC_TYPE_VINLPM)
+	g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V2+m_adc0vBase;
+	g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V0+m_adc0vBase;
+#endif
+#ifdef ADC_TYPE_VINLPM
+		for (i = 0; i < BAT_ARRAY_LEN; i++)
+		{
+			g_variable.battery_value[i] = INIT_BATTERY_VALUE_VINLPM;
+		}
+		g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_2V2+m_adc0vBase;
+		g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_2V0+m_adc0vBase;
+#endif
+#ifdef ADC_TYPE_GPIO
+	m_adc_channel = ADC_CHANNEL;
+	for (i = 0; i < BAT_ARRAY_LEN; i++)
 	{
-
+		g_variable.battery_value[i] = INIT_BATTERY_VALUE_GPIO;
 	}
-	else
-	{
 		g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_1V1+m_adc0vBase;
 		g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_0V9+m_adc0vBase;
-	}
-	
+#endif	
+#endif
 }
 
 void YC_adc_check() 
 {
+#ifdef  ADC_ENABLE
 	byte i;
 	ulong batValue = 0;
-	#ifndef  ADC_ENABLE
-		return;
-	#endif	
-//	if(m_adcCurrentValue < m_adc0vBase) 
-//		return;
 
 	g_variable.battery_value[g_variable.battery_value_index++] = m_adcCurrentValue;
 	if (g_variable.battery_value_index >= BAT_ARRAY_LEN)
@@ -68,12 +69,13 @@
 			m_24g_enter_hibernate[2] = 0x5d;		// 510ms
 		}
 	}
-	
+#endif	
 }
 
 
 void YC_adc_check_timer500ms()
 {
+#ifdef  ADC_ENABLE
 	// adc check timer	
 	if (g_variable.battery_check_interval)
 	{
@@ -84,6 +86,7 @@
 			YC_adc_check();
 		}
 	}
+#endif	
 }
 
 
Index: c51/global_variable.h
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/global_variable.h	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/global_variable.h	(working copy)
@@ -94,6 +94,7 @@
 	 byte key_combination_ctrl;				// 0x4cf5
 	 byte key_combination_keyvalue;		// 0x4cf6
 	 byte battery_low_led_flash_flag;		// 0x4cf7
+	 byte one_key_press_wait_release_timer;
 	
 	 byte mouse_data_send_flag;
 	 byte sensor_key;
Index: c51/global_variable.c
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/global_variable.c	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/global_variable.c	(working copy)
@@ -80,11 +80,11 @@
 24,	    		//C8	
 25,    		//C9
 23,    		//C10
-21,    		//C11
-20,    		//C12
-19,    		//C13
+20,    		//C11
+19,    		//C12
+18,    		//C13
 17,    		//C14
-22,    		//C15
+21,    		//C15
 27,    		//C16
 28,    		//C17
 };
Index: c51/kb_process.h
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/kb_process.h	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/kb_process.h	(working copy)
@@ -24,17 +24,17 @@
 #define CAMBINATION_KEY_COMPLETE			3
 #define CAMBINATION_KEY_WAIT_RELEASE 		4
 #define CAMBINATION_KEY_RELEASE			5	
+#define CAMBINATION_KEY_NULL				6
 
 
 //gipo
-#define NUM_LOCK_LED_GPIO    	0x10
-#define CAPS_LED_GPIO		  	0x0f
+#define NUM_LOCK_LED_GPIO    	0xff
+#define CAPS_LED_GPIO		  	0xff
 
 #define EEPROM_WP_GPIO			0xff
-#define BT_LED_GPIO		  		0x1F
-#define BT2_LED_GPIO				0x1E
-#define LOWPOWER_LED_GPIO		0x1D
-#define G24_LED_GPIO				0x1D
+#define BT_LED_GPIO		  		0xff
+#define LOWPOWER_LED_GPIO		30
+#define G24_LED_GPIO				30
 
 
 
Index: c51/kb_process.c
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/kb_process.c	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/kb_process.c	(working copy)
@@ -170,33 +170,39 @@
 
 void kb_need_keyscan()
 {
-	if((g_variable.key_combination_step == CAMBINATION_KEY_FREE)
-	||(g_variable.key_combination_step == CAMBINATION_KEY_PRESS)
-	||(g_variable.key_combination_step == CAMBINATION_KEY_COMPLETE)
-	)
-		kb_motion();
-	else
-	{
-		
-		if(g_variable.key_combination_step == CAMBINATION_KEY_HOLD)
-		{	
-			g_variable.key_combination_step = CAMBINATION_KEY_COMPLETE;
-			kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
-		}
-		else if(g_variable.key_combination_step == CAMBINATION_KEY_WAIT_RELEASE)
-		{
-			g_variable.key_combination_keyvalue = 0;
-			g_variable.key_combination_step = CAMBINATION_KEY_RELEASE;
-			kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
-		}
-		else if(g_variable.key_combination_step == CAMBINATION_KEY_RELEASE)
+		if((g_variable.key_combination_step == CAMBINATION_KEY_FREE)
+		||(g_variable.key_combination_step == CAMBINATION_KEY_COMPLETE)
+		|| (g_variable.key_combination_step == CAMBINATION_KEY_RELEASE)
+		)
+			kb_motion();
+		else
 		{
-			g_variable.key_combination_ctrl = 0;
-			g_variable.key_combination_keyvalue = 0;
-			g_variable.key_combination_step = CAMBINATION_KEY_FREE;
-			kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+			if(g_variable.key_combination_step == CAMBINATION_KEY_PRESS)
+			{
+				kb_send_combination_key(g_variable.key_combination_ctrl,0);
+				g_variable.key_combination_step = CAMBINATION_KEY_HOLD;
+			}
+			else if(g_variable.key_combination_step == CAMBINATION_KEY_HOLD)
+			{	
+				g_variable.key_combination_step = CAMBINATION_KEY_COMPLETE;
+				kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+			}
+			else if(g_variable.key_combination_step == CAMBINATION_KEY_WAIT_RELEASE)
+			{
+				g_variable.key_combination_keyvalue = 0;
+				kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+				g_variable.key_combination_ctrl = 0;
+				g_variable.key_combination_step = CAMBINATION_KEY_RELEASE;
+			}
+			else if(g_variable.key_combination_step == CAMBINATION_KEY_NULL)
+			{
+				g_variable.key_combination_keyvalue = 0;
+				g_variable.key_combination_ctrl = 0;
+				kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+				g_variable.key_combination_step = CAMBINATION_KEY_FREE;
+			}
 		}
-	}
+
 }
 
 
@@ -249,13 +255,10 @@
 	}
 
 	m_power_on_flag = 1;
-	if(g_variable.key_combination_step == CAMBINATION_KEY_PRESS)
+	if( (g_variable.key_combination_step == CAMBINATION_KEY_PRESS) ||
+	    (g_variable.key_combination_step == CAMBINATION_KEY_WAIT_RELEASE) ||
+	    (g_variable.key_combination_step == CAMBINATION_KEY_HOLD))
 	{
-		hidBuff[0] = HID_REPORTID_1;
-		hidBuff[1] |= g_variable.key_combination_ctrl;
-		hidBuff[3] = 0x00; 
-		IPC_TxHidData(hidBuff, 9);
-		g_variable.key_combination_step = CAMBINATION_KEY_HOLD;
 		return;
 	}
 
@@ -313,31 +316,26 @@
 /////////////////////////////////////////////////////////////////
 
 
-byte key_replace(byte key_state, byte key_value , byte key_replace_value )
+void kb_combination_key_press(byte press_state,byte special_key,byte standrad_key)
 {
-	byte temp_value;
+	g_variable.key_combination_ctrl = special_key;	
+	g_variable.key_combination_keyvalue = standrad_key;
 
-	temp_value = key_value;
-	if (key_state & 1)
+	if(press_state & 1)
 	{
-		fn_tx_flag++;
-		temp_value = key_replace_value;
+		if(g_variable.key_combination_step == CAMBINATION_KEY_COMPLETE) 
+			g_variable.key_combination_step = CAMBINATION_KEY_HOLD;
+		else	
+			g_variable.key_combination_step = CAMBINATION_KEY_PRESS;
 	}
 	else
 	{
-		if(fn_tx_flag != 0)
-		{	
-			fn_tx_flag--;
-			temp_value = key_replace_value;
-		}
+		g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
 	}
 
-	return temp_value;
 }
 
 
-
-
 byte key_fn_function(byte state ,byte key_value)
 {
 	byte temp = 0;
@@ -349,76 +347,43 @@
 		switch (key_value)
 		{ 
 			case HID_KEY_F1:
-				temp = key_replace(state,key_value,HID_MULTIKEY_LIGHT_DOWN);
+				temp = HID_MULTIKEY_LIGHT_DOWN;
 				break;
 			case HID_KEY_F2:
-				temp = key_replace(state,key_value,HID_MULTIKEY_LIGHT_UP);
+				temp = HID_MULTIKEY_LIGHT_UP;
 				break;
 			case HID_KEY_F3:
-				g_variable.key_combination_ctrl = KS_SEL_LALT;
-					
-				g_variable.key_combination_keyvalue = HID_KEY_TAB;
-				
-				if(state & 1)
-				{
-					g_variable.key_combination_step = CAMBINATION_KEY_PRESS;
-				}
-				else
-				{
-					g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
-				}
-				
-				temp = key_replace(state,key_value,HID_KEY_NULL);
+				kb_combination_key_press(state,KS_SEL_LALT,HID_KEY_TAB);
+				temp = HID_KEY_NULL;
 				break;
 			case HID_KEY_F4:
-				g_variable.key_combination_ctrl = KS_SEL_LGUI;
-				g_variable.key_combination_keyvalue = HID_KEY_D;
-				
-				if(state & 1)
-				{
-					g_variable.key_combination_step = CAMBINATION_KEY_PRESS;
-				}
-				else
-				{
-					g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
-				}
-				temp = key_replace(state,key_value,HID_KEY_NULL);
-
+				kb_combination_key_press(state,KS_SEL_LGUI,HID_KEY_D);
+				temp = HID_KEY_NULL;
 				break;
 			case HID_KEY_F5:
-				g_variable.key_combination_ctrl = KS_SEL_LGUI;
-				g_variable.key_combination_keyvalue = HID_KEY_LEFT_ARROW;
-				
-				if(state & 1)
-				{
-					g_variable.key_combination_step = CAMBINATION_KEY_PRESS;
-				}
-				else
-				{
-					g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
-				}
-				temp = key_replace(state,key_value,HID_KEY_NULL);
+				kb_combination_key_press(state,KS_SEL_LGUI,HID_KEY_LEFT_ARROW);
+				temp = HID_KEY_NULL;
 				break;
 			case HID_KEY_F6:
-				temp = key_replace(state,key_value,HID_MULTIKEY_AC_SEARCH);
+				temp = HID_MULTIKEY_AC_SEARCH;
 				break;
 			case HID_KEY_F7:
-				temp = key_replace(state,key_value,HID_MULTIKEY_PRE_TRACK);
+				temp = HID_MULTIKEY_PRE_TRACK;
 				break;
 			case HID_KEY_F8:
-				temp = key_replace(state,key_value,HID_MULTIKEY_PALY);
+				temp = HID_MULTIKEY_PALY;
 				break;
 			case HID_KEY_F9:
-				temp = key_replace(state,key_value,HID_MULTIKEY_NEXT_TRACK);
+				temp = HID_MULTIKEY_NEXT_TRACK;
 				break;
 			case HID_KEY_F10:
-				temp = key_replace(state,key_value,HID_MULTIKEY_MUTE);
+				temp = HID_MULTIKEY_MUTE;
 				break;
 			case HID_KEY_F11:
-				temp = key_replace(state,key_value,HID_MULTIKEY_VOL_DOWN);
+				temp = HID_MULTIKEY_VOL_DOWN;
 				break;
 			case HID_KEY_F12:
-				temp = key_replace(state,key_value,HID_MULTIKEY_VOL_UP);
+				temp = HID_MULTIKEY_VOL_UP;
 				break;
 			default :
 				break;
@@ -439,18 +404,20 @@
 		if ((pEvt->ksPool[i] &0xF0) == 0xf0 
 			|| (pEvt->ksPool[i] &0xD0) == 0xD0)
 		{
+			/*
 			if (pEvt->ksPool[i] ==  HID_MULTIKEY_MEDIA) //media select
 			{
 				kb_set_multikey(0x0183); 
 			}
-			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_PALY) //play / pause
+			else*/ 
+			if (pEvt->ksPool[i] ==  HID_MULTIKEY_PALY) //play / pause
 			{ 
 				kb_set_multikey(0x00cd);
 			}
-			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_STOP)  //stop
+		/*	else if (pEvt->ksPool[i] ==  HID_MULTIKEY_STOP)  //stop
 			{
 				kb_set_multikey(0x00b7);
-			}
+			}	*/
 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_PRE_TRACK) //pre Track
 			{
 				kb_set_multikey(0x00b6);
@@ -471,15 +438,15 @@
 			{
 				kb_set_multikey(0x00e2);
 			}
-			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_MY_COMPUTER) 
+		/*	else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_MY_COMPUTER) 
 			{
 				kb_set_multikey(0x0194);
-			}
+			}	*/
 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_MAIL)  //mail
 			{
 				kb_set_multikey(0x018a);//mail
 			}
-			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_CALCULATOR) //calculator
+		/*	else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_CALCULATOR) //calculator
 			{
 				kb_set_multikey(0x0192);
 			}
@@ -502,16 +469,15 @@
 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_REFRESH) //www refresh
 			{
 				kb_set_multikey(0x0227);
-			}
-			
+			}	*/
 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_SEARCH)  //www search
 			{
 				kb_set_multikey(0x0221);
 			}
-			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_HOME)
+		/*	else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_HOME)
 			{
 				kb_set_multikey(0x0223);
-			}
+			} 	*/
 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_LIGHT_DOWN)
 			{
 				kb_set_multikey(0x0070);
Index: c51/keyscan.c
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/keyscan.c	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/keyscan.c	(working copy)
@@ -36,6 +36,14 @@
 {
 	byte i = 0;
 
+	if(key >= HID_KEY_LEFT_CTL && key <= HID_KEY_RIGHT_GUI)
+	{
+		ksEvtPool.standardSel  |=  0x01 << (key & 0x07);
+		return;
+	}
+
+/*
+
 	if (key == HID_KEY_RIGHT_GUI)
 	{
 		ksEvtPool.standardSel |= KS_SEL_RGUI;
@@ -76,6 +84,7 @@
 		ksEvtPool.standardSel |= KS_SEL_LCTRL;
 		return;
 	}
+*/	
 	//special key
 
 	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
@@ -106,7 +115,13 @@
 	else
 		standard_key_release_flag = 1;
 
+	if(key >= HID_KEY_LEFT_CTL && key <= HID_KEY_RIGHT_GUI)
+	{
+		ksEvtPool.standardSel  &= ~0x01 << (key & 0x07);
+		return;
+	}
 
+/*
 	if (key == HID_KEY_RIGHT_GUI ) 
 	{
 		ksEvtPool.standardSel &= ~KS_SEL_RGUI;
@@ -147,7 +162,7 @@
 		ksEvtPool.standardSel &= ~ KS_SEL_LCTRL;
 		return;
 	}
-	
+*/	
 	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
 	{
 		if (found == 0) 
Index: c51/led.h
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/led.h	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/led.h	(working copy)
@@ -8,8 +8,6 @@
 
 void LED_all_shutdown();
 void LED_handle();
-void LED_device_poweron();
-void LED_device_poweroff();
 
 #endif /* YC_LED_H */
 
Index: c51/led.c
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/led.c	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/led.c	(working copy)
@@ -10,17 +10,6 @@
 }
 
 
-void LED_device_poweron()
-{
-	GPIO_Setout(G24_LED_GPIO,LED_ON);
-
-}
-
-void LED_device_poweroff()
-{
-	GPIO_Setout(G24_LED_GPIO,LED_OFF);
-}
-
 
 void LED_handle()
 {
@@ -60,22 +49,22 @@
 				if(m_caps_num_lock & KB_PC_KEYSEL_NUMLOCK)
 				{
 					g_variable.sys_numlockled_on_timer = KB_NUM_CAPS_LED_ON_TIMER;
-					GPIO_Setout(NUM_LOCK_LED_GPIO, 0);
+					GPIO_Setout(NUM_LOCK_LED_GPIO, LED_ON);
 				}
 				else
 				{
-					GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
+					GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
 					g_variable.sys_numlockled_on_timer = 0;
 				}
 				
 				if(m_caps_num_lock & KB_PC_KEYSEL_CAPSLOCK)
 				{
 					g_variable.sys_capslockled_on_timer = KB_NUM_CAPS_LED_ON_TIMER;
-					GPIO_Setout(CAPS_LED_GPIO, 0);
+					GPIO_Setout(CAPS_LED_GPIO, LED_ON);
 				}
 				else 
 				{
-					GPIO_Setout(CAPS_LED_GPIO, 1);
+					GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
 					g_variable.sys_capslockled_on_timer = 0;
 				}	
 
@@ -89,14 +78,14 @@
 		}
 		else
 		{
-			GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
-			GPIO_Setout(CAPS_LED_GPIO, 1);
+			GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+			GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
 		}
 	}
 	else
 	{
-		GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
-		GPIO_Setout(CAPS_LED_GPIO, 1);
+		GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+
 	}
 
 }
Index: c51/output/FW
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/output/FW.COD
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/output/FW.COD	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/output/FW.COD	(working copy)
@@ -1,4 +1,4 @@
-LX51 LINKER/LOCATER V4.41                                                               05/29/2020  00:09:56  PAGE 1
+LX51 LINKER/LOCATER V4.41                                                               06/12/2020  18:49:04  PAGE 1
 
 
 
@@ -31,208 +31,205 @@
 
 ----- FUNCTION LED_handle (BEGIN) -----
  FILE: 'led.c'
-   25: void LED_handle()
-   26: {
-   27: 	if (power_on_flag != 2)
-   28: 		return;
+   14: void LED_handle()
+   15: {
+   16: 	if (power_on_flag != 2)
+   17: 		return;
 0006CF 904DE1            MOV     DPTR,#power_on_flag
 0006D2 E0                MOVX    A,@DPTR
 0006D3 6402              XRL     A,#02H
 0006D5 6002              JZ      $ + 4H
-0006D7 E18A              AJMP    ?C0005?LED
-0006D9         ?C0004?LED:
-   29: 
-   30: 	if(!g_variable.pairing_timeout)
+0006D7 E183              AJMP    ?C0003?LED
+0006D9         ?C0002?LED:
+   18: 
+   19: 	if(!g_variable.pairing_timeout)
 0006D9 904CE9            MOV     DPTR,#g_variable+02AH
 0006DC E0                MOVX    A,@DPTR
 0006DD 6002              JZ      $ + 4H
-0006DF E17E              AJMP    ?C0006?LED
-   31: 	{
-   32: 		//low battery LED process
-   33: 		if (g_variable.battery_status == BAT_STATUS_SHUT_DOWN)
+0006DF E17D              AJMP    ?C0004?LED
+   20: 	{
+   21: 		//low battery LED process
+   22: 		if (g_variable.battery_status == BAT_STATUS_SHUT_DOWN)
 0006E1 904CD5            MOV     DPTR,#g_variable+016H
 0006E4 E0                MOVX    A,@DPTR
-0006E5 B40205            CJNE    A,#02H,?C0007?LED
-   34: 		{
-   35: 			System_long_sleep();
-0006E8 1209F2            LCALL   System_long_sleep
-   36: 		}
-0006EB 802E              SJMP    ?C0008?LED
-0006ED         ?C0007?LED:
-   37: 		else if (g_variable.battery_status == BAT_STATUS_LOW)
-0006ED 904CD5            MOV     DPTR,#g_variable+016H
-0006F0 E0                MOVX    A,@DPTR
-0006F1 B40114            CJNE    A,#01H,?C0009?LED
-   38: 		{
-   39: 			if (g_variable.battery_low_led_flash_flag == 0)
-0006F4 904CF7            MOV     DPTR,#g_variable+038H
-0006F7 E0                MOVX    A,@DPTR
-0006F8 7021              JNZ     ?C0008?LED
-   40: 			{
-   41: 				g_variable.battery_low_led_flash_interval = LOW_BATTERY_FLASH_INTERVAL;
-0006FA 904CE2            MOV     DPTR,#g_variable+023H
-0006FD 7404              MOV     A,#04H
-0006FF F0                MOVX    @DPTR,A
-   42: 				g_variable.battery_low_led_flash_flag = 1;
-000700 904CF7            MOV     DPTR,#g_variable+038H
-000703 7401              MOV     A,#01H
-000705 F0                MOVX    @DPTR,A
-   43: 			}
-   44: 		}
-000706 8013              SJMP    ?C0008?LED
-000708         ?C0009?LED:
-   45: 		else
+0006E5 B40204            CJNE    A,#02H,?C0005?LED
+   23: 		{
+   24: 			System_long_sleep();
+0006E8 F1F1              ACALL   System_long_sleep
+   25: 		}
+0006EA 802E              SJMP    ?C0006?LED
+0006EC         ?C0005?LED:
+   26: 		else if (g_variable.battery_status == BAT_STATUS_LOW)
+0006EC 904CD5            MOV     DPTR,#g_variable+016H
+0006EF E0                MOVX    A,@DPTR
+0006F0 B40114            CJNE    A,#01H,?C0007?LED
+   27: 		{
+   28: 			if (g_variable.battery_low_led_flash_flag == 0)
+0006F3 904CF7            MOV     DPTR,#g_variable+038H
+0006F6 E0                MOVX    A,@DPTR
+0006F7 7021              JNZ     ?C0006?LED
+   29: 			{
+   30: 				g_variable.battery_low_led_flash_interval = LOW_BATTERY_FLASH_INTERVAL;
+0006F9 904CE2            MOV     DPTR,#g_variable+023H
+0006FC 7404              MOV     A,#04H
+0006FE F0                MOVX    @DPTR,A
+   31: 				g_variable.battery_low_led_flash_flag = 1;
+0006FF 904CF7            MOV     DPTR,#g_variable+038H
+000702 7401              MOV     A,#01H
+000704 F0                MOVX    @DPTR,A
+   32: 			}
+   33: 		}
+000705 8013              SJMP    ?C0006?LED
+000707         ?C0007?LED:
+   34: 		else
+   35: 		{
+   36: 			if (g_variable.battery_low_led_flash_flag == 1)
+000707 904CF7            MOV     DPTR,#g_variable+038H
+00070A E0                MOVX    A,@DPTR
+00070B B4010C            CJNE    A,#01H,?C0006?LED
+   37: 			{
+   38: 				g_variable.battery_low_led_flash_flag = 0;
+00070E E4                CLR     A
+00070F F0                MOVX    @DPTR,A
+   39: 				g_variable.battery_low_led_flash_interval = 0;
+000710 904CE2            MOV     DPTR,#g_variable+023H
+000713 F0                MOVX    @DPTR,A
+   40: 				GPIO_Setout(LOWPOWER_LED_GPIO, LED_OFF);
+000714 C201              CLR     ?_GPIO_Setout?BIT
+000716 7F1E              MOV     R7,#01EH
+000718 F184              ACALL   _GPIO_Setout
+   41: 			}
+   42: 		}
+00071A         ?C0006?LED:
+   43: 
+   44: 		//capslock  numlock  scrolllock LED process
+   45: 		if (YC_check_is_connected())
+00071A D1C2              ACALL   YC_check_is_connected
+00071C EF                MOV     A,R7
+00071D 6052              JZ      ?C0011?LED
    46: 		{
-   47: 			if (g_variable.battery_low_led_flash_flag == 1)
-000708 904CF7            MOV     DPTR,#g_variable+038H
-00070B E0                MOVX    A,@DPTR
-00070C B4010C            CJNE    A,#01H,?C0008?LED
+   47: 			if(m_caps_num_lock != m_caps_num_lock_last)
+00071F 904DD9            MOV     DPTR,#m_caps_num_lock_last
+000722 E0                MOVX    A,@DPTR
+000723 FF                MOV     R7,A
+000724 904CB7            MOV     DPTR,#m_caps_num_lock
+000727 E0                MOVX    A,@DPTR
+000728 6F                XRL     A,R7
+000729 6058              JZ      ?C0003?LED
    48: 			{
-   49: 				g_variable.battery_low_led_flash_flag = 0;
-00070F E4                CLR     A
-000710 F0                MOVX    @DPTR,A
-   50: 				g_variable.battery_low_led_flash_interval = 0;
-000711 904CE2            MOV     DPTR,#g_variable+023H
-000714 F0                MOVX    @DPTR,A
-   51: 				GPIO_Setout(LOWPOWER_LED_GPIO, LED_OFF);
-000715 C201              CLR     ?_GPIO_Setout?BIT
-000717 7F1D              MOV     R7,#01DH
-000719 F18B              ACALL   _GPIO_Setout
-   52: 			}
-   53: 		}
-00071B         ?C0008?LED:
-   54: 
-   55: 		//capslock  numlock  scrolllock LED process
-   56: 		if (YC_check_is_connected())
-00071B D1C2              ACALL   YC_check_is_connected
-00071D EF                MOV     A,R7
-00071E 6052              JZ      ?C0013?LED
-   57: 		{
-   58: 			if(m_caps_num_lock != m_caps_num_lock_last)
-000720 904DD9            MOV     DPTR,#m_caps_num_lock_last
-000723 E0                MOVX    A,@DPTR
-000724 FF                MOV     R7,A
-000725 904CB7            MOV     DPTR,#m_caps_num_lock
-000728 E0                MOVX    A,@DPTR
-000729 6F                XRL     A,R7
-00072A 605E              JZ      ?C0005?LED
-   59: 			{
-   60: 				if(m_caps_num_lock & KB_PC_KEYSEL_NUMLOCK)
-00072C E0                MOVX    A,@DPTR
-00072D 30E00E            JNB     ACC.0,?C0015?LED
+   49: 				if(m_caps_num_lock & KB_PC_KEYSEL_NUMLOCK)
+00072B E0                MOVX    A,@DPTR
+00072C 30E00E            JNB     ACC.0,?C0013?LED
+   50: 				{
+   51: 					g_variable.sys_numlockled_on_timer = KB_NUM_CAPS_LED_ON_TIMER;
+00072F 904CE6            MOV     DPTR,#g_variable+027H
+000732 740C              MOV     A,#0CH
+000734 F0                MOVX    @DPTR,A
+   52: 					GPIO_Setout(NUM_LOCK_LED_GPIO, LED_ON);
+000735 D201              SETB    ?_GPIO_Setout?BIT
+000737 7FFF              MOV     R7,#0FFH
+000739 F184              ACALL   _GPIO_Setout
+   53: 				}
+00073B 800B              SJMP    ?C0014?LED
+00073D         ?C0013?LED:
+   54: 				else
+   55: 				{
+   56: 					GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+00073D C201              CLR     ?_GPIO_Setout?BIT
+00073F 7FFF              MOV     R7,#0FFH
+000741 F184              ACALL   _GPIO_Setout
+   57: 					g_variable.sys_numlockled_on_timer = 0;
+000743 E4                CLR     A
+000744 904CE6            MOV     DPTR,#g_variable+027H
+000747 F0                MOVX    @DPTR,A
+   58: 				}
+000748         ?C0014?LED:
+   59: 				
+   60: 				if(m_caps_num_lock & KB_PC_KEYSEL_CAPSLOCK)
+000748 904CB7            MOV     DPTR,#m_caps_num_lock
+00074B E0                MOVX    A,@DPTR
+00074C 30E10E            JNB     ACC.1,?C0015?LED
    61: 				{
-   62: 					g_variable.sys_numlockled_on_timer = KB_NUM_CAPS_LED_ON_TIMER;
-000730 904CE6            MOV     DPTR,#g_variable+027H
-000733 740C              MOV     A,#0CH
-000735 F0                MOVX    @DPTR,A
-   63: 					GPIO_Setout(NUM_LOCK_LED_GPIO, 0);
-000736 C201              CLR     ?_GPIO_Setout?BIT
-000738 7F10              MOV     R7,#010H
-00073A F18B              ACALL   _GPIO_Setout
+   62: 					g_variable.sys_capslockled_on_timer = KB_NUM_CAPS_LED_ON_TIMER;
+00074F 904CE7            MOV     DPTR,#g_variable+028H
+000752 740C              MOV     A,#0CH
+000754 F0                MOVX    @DPTR,A
+   63: 					GPIO_Setout(CAPS_LED_GPIO, LED_ON);
+000755 D201              SETB    ?_GPIO_Setout?BIT
+000757 7FFF              MOV     R7,#0FFH
+000759 F184              ACALL   _GPIO_Setout
    64: 				}
-00073C 800B              SJMP    ?C0016?LED
-00073E         ?C0015?LED:
-   65: 				else
+00075B 800B              SJMP    ?C0016?LED
+00075D         ?C0015?LED:
+   65: 				else 
    66: 				{
-   67: 					GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
-00073E D201              SETB    ?_GPIO_Setout?BIT
-000740 7F10              MOV     R7,#010H
-000742 F18B              ACALL   _GPIO_Setout
-   68: 					g_variable.sys_numlockled_on_timer = 0;
-000744 E4                CLR     A
-000745 904CE6            MOV     DPTR,#g_variable+027H
-000748 F0                MOVX    @DPTR,A
-   69: 				}
-000749         ?C0016?LED:
-   70: 				
-   71: 				if(m_caps_num_lock & KB_PC_KEYSEL_CAPSLOCK)
-000749 904CB7            MOV     DPTR,#m_caps_num_lock
-00074C E0                MOVX    A,@DPTR
-00074D 30E10E            JNB     ACC.1,?C0017?LED
-   72: 				{
-   73: 					g_variable.sys_capslockled_on_timer = KB_NUM_CAPS_LED_ON_TIMER;
-000750 904CE7            MOV     DPTR,#g_variable+028H
-000753 740C              MOV     A,#0CH
-000755 F0                MOVX    @DPTR,A
-   74: 					GPIO_Setout(CAPS_LED_GPIO, 0);
-000756 C201              CLR     ?_GPIO_Setout?BIT
-000758 7F0F              MOV     R7,#0FH
-00075A F18B              ACALL   _GPIO_Setout
-   75: 				}
-00075C 800B              SJMP    ?C0018?LED
-00075E         ?C0017?LED:
-   76: 				else 
-   77: 				{
-   78: 					GPIO_Setout(CAPS_LED_GPIO, 1);
-00075E D201              SETB    ?_GPIO_Setout?BIT
-000760 7F0F              MOV     R7,#0FH
-000762 F18B              ACALL   _GPIO_Setout
-   79: 					g_variable.sys_capslockled_on_timer = 0;
-000764 E4                CLR     A
-000765 904CE7            MOV     DPTR,#g_variable+028H
-000768 F0                MOVX    @DPTR,A
-   80: 				}	
-000769         ?C0018?LED:
-   81: 
-   82: 				//if(m_caps_num_lock & KB_PC_KEYSEL_SCROLLLOCK)
-   83: 				//	g_variable.sys_scrolllockled_on_timer = KB_NUM_CAPS_LED_ON_TIMER;
-   84: 				//else 
-   85: 				//	g_variable.sys_scrolllockled_on_timer = 0;
-   86: 					
-   87: 				m_caps_num_lock_last = m_caps_num_lock;
-000769 904CB7            MOV     DPTR,#m_caps_num_lock
-00076C E0                MOVX    A,@DPTR
-00076D 904DD9            MOV     DPTR,#m_caps_num_lock_last
-000770 F0                MOVX    @DPTR,A
-   88: 			}
-   89: 		}
-000771 22                RET     
-000772         ?C0013?LED:
-   90: 		else
-   91: 		{
-   92: 			GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
-000772 D201              SETB    ?_GPIO_Setout?BIT
-000774 7F10              MOV     R7,#010H
-000776 F18B              ACALL   _GPIO_Setout
-   93: 			GPIO_Setout(CAPS_LED_GPIO, 1);
-000778 D201              SETB    ?_GPIO_Setout?BIT
-00077A 7F0F              MOV     R7,#0FH
-00077C 800D              SJMP    _GPIO_Setout
-   94: 		}
-   95: 	}
-00077E         ?C0006?LED:
-   96: 	else
-   97: 	{
-   98: 		GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
-00077E D201              SETB    ?_GPIO_Setout?BIT
-000780 7F10              MOV     R7,#010H
-000782 F18B              ACALL   _GPIO_Setout
-   99: 		GPIO_Setout(CAPS_LED_GPIO, 1);
-000784 D201              SETB    ?_GPIO_Setout?BIT
-000786 7F0F              MOV     R7,#0FH
-000788 F18B              ACALL   _GPIO_Setout
-  100: 	}
-  101: 
-  102: }
-00078A         ?C0005?LED:
-00078A 22                RET     
+   67: 					GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+00075D C201              CLR     ?_GPIO_Setout?BIT
+00075F 7FFF              MOV     R7,#0FFH
+000761 F184              ACALL   _GPIO_Setout
+   68: 					g_variable.sys_capslockled_on_timer = 0;
+000763 E4                CLR     A
+000764 904CE7            MOV     DPTR,#g_variable+028H
+000767 F0                MOVX    @DPTR,A
+   69: 				}	
+000768         ?C0016?LED:
+   70: 
+   71: 				//if(m_caps_num_lock & KB_PC_KEYSEL_SCROLLLOCK)
+   72: 				//	g_variable.sys_scrolllockled_on_timer = KB_NUM_CAPS_LED_ON_TIMER;
+   73: 				//else 
+   74: 				//	g_variable.sys_scrolllockled_on_timer = 0;
+   75: 					
+   76: 				m_caps_num_lock_last = m_caps_num_lock;
+000768 904CB7            MOV     DPTR,#m_caps_num_lock
+00076B E0                MOVX    A,@DPTR
+00076C 904DD9            MOV     DPTR,#m_caps_num_lock_last
+00076F F0                MOVX    @DPTR,A
+   77: 			}
+   78: 		}
+000770 22                RET     
+000771         ?C0011?LED:
+   79: 		else
+   80: 		{
+   81: 			GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+000771 C201              CLR     ?_GPIO_Setout?BIT
+000773 7FFF              MOV     R7,#0FFH
+000775 F184              ACALL   _GPIO_Setout
+   82: 			GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+000777 C201              CLR     ?_GPIO_Setout?BIT
+000779 7FFF              MOV     R7,#0FFH
+00077B 8007              SJMP    _GPIO_Setout
+   83: 		}
+   84: 	}
+00077D         ?C0004?LED:
+   85: 	else
+   86: 	{
+   87: 		GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+00077D C201              CLR     ?_GPIO_Setout?BIT
+00077F 7FFF              MOV     R7,#0FFH
+000781 F184              ACALL   _GPIO_Setout
+   88: 
+   89: 	}
+   90: 
+   91: }
+000783         ?C0003?LED:
+000783 22                RET     
 ----- FUNCTION LED_handle (END) -------
 
 
 ----- FUNCTION _GPIO_Setout (BEGIN) -----
 ;---- Variable 'gpio_num' assigned to Register 'R7' ----
-00078B EF                MOV     A,R7
-00078C F4                CPL     A
-00078D 600D              JZ      ?C0007?GPIO
-00078F         ?C0006?GPIO:
-00078F 7B01              MOV     R3,#01H
-000791 7A80              MOV     R2,#080H
-000793 7974              MOV     R1,#074H
-000795 A201              MOV     C,bit_val
-000797 9200              MOV     ?_gpioSetBit?BIT,C
-000799 121073            LCALL   _gpioSetBit
-00079C         ?C0007?GPIO:
-00079C 22                RET     
+000784 EF                MOV     A,R7
+000785 F4                CPL     A
+000786 600D              JZ      ?C0007?GPIO
+000788         ?C0006?GPIO:
+000788 7B01              MOV     R3,#01H
+00078A 7A80              MOV     R2,#080H
+00078C 7974              MOV     R1,#074H
+00078E A201              MOV     C,bit_val
+000790 9200              MOV     ?_gpioSetBit?BIT,C
+000792 1215CF            LCALL   _gpioSetBit
+000795         ?C0007?GPIO:
+000795 22                RET     
 ----- FUNCTION _GPIO_Setout (END) -------
 
 
@@ -242,107 +239,1778 @@
   161: {
   162: 	if (power_on_flag != 2)
   163: 		return;
-00079D 904DE1            MOV     DPTR,#power_on_flag
-0007A0 E0                MOVX    A,@DPTR
-0007A1 6402              XRL     A,#02H
-0007A3 7052              JNZ     ?C0027?SYS
-0007A5         ?C0026?SYS:
+000796 904DE1            MOV     DPTR,#power_on_flag
+000799 E0                MOVX    A,@DPTR
+00079A 6402              XRL     A,#02H
+00079C 7052              JNZ     ?C0027?SYS
+00079E         ?C0026?SYS:
   164:  	if (g_variable.pairing_g24_timeout != 0)
-0007A5 904CEE            MOV     DPTR,#g_variable+02FH
-0007A8 E0                MOVX    A,@DPTR
-0007A9 6005              JZ      ?C0029?SYS
+00079E 904CEE            MOV     DPTR,#g_variable+02FH
+0007A1 E0                MOVX    A,@DPTR
+0007A2 6005              JZ      ?C0029?SYS
   165: 	{
   166: 		GPIO_FlipOutBit(G24_LED_GPIO);
-0007AB 7F1D              MOV     R7,#01DH
-0007AD 122561            LCALL   _GPIO_FlipOutBit
+0007A4 7F1E              MOV     R7,#01EH
+0007A6 1217C3            LCALL   _GPIO_FlipOutBit
   167: 	}
   168: 	else
   169: 	{
   170: 		
   171: 	}
-0007B0         ?C0029?SYS:
+0007A9         ?C0029?SYS:
   172: 
   173: 	
   174: 	if (YC_check_is_connected())
-0007B0 D1C2              ACALL   YC_check_is_connected
-0007B2 EF                MOV     A,R7
-0007B3 6042              JZ      ?C0027?SYS
+0007A9 D1C2              ACALL   YC_check_is_connected
+0007AB EF                MOV     A,R7
+0007AC 6042              JZ      ?C0027?SYS
   175: 	{
   176: 		if(g_variable.sys_numlockled_on_timer)
-0007B5 904CE6            MOV     DPTR,#g_variable+027H
-0007B8 E0                MOVX    A,@DPTR
-0007B9 6016              JZ      ?C0031?SYS
+0007AE 904CE6            MOV     DPTR,#g_variable+027H
+0007B1 E0                MOVX    A,@DPTR
+0007B2 6016              JZ      ?C0031?SYS
   177: 		{
   178: 			g_variable.sys_numlockled_on_timer--;
-0007BB 14                DEC     A
-0007BC F0                MOVX    @DPTR,A
-  179: 			GPIO_Setout(NUM_LOCK_LED_GPIO, 0);
-0007BD C201              CLR     ?_GPIO_Setout?BIT
-0007BF 7F10              MOV     R7,#010H
-0007C1 F18B              ACALL   _GPIO_Setout
+0007B4 14                DEC     A
+0007B5 F0                MOVX    @DPTR,A
+  179: 			GPIO_Setout(NUM_LOCK_LED_GPIO, LED_ON);
+0007B6 D201              SETB    ?_GPIO_Setout?BIT
+0007B8 7FFF              MOV     R7,#0FFH
+0007BA F184              ACALL   _GPIO_Setout
   180: 			if(!g_variable.sys_numlockled_on_timer)
-0007C3 904CE6            MOV     DPTR,#g_variable+027H
-0007C6 E0                MOVX    A,@DPTR
-0007C7 700E              JNZ     ?C0033?SYS
-  181: 				GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
-0007C9 D201              SETB    ?_GPIO_Setout?BIT
-0007CB 7F10              MOV     R7,#010H
-0007CD F18B              ACALL   _GPIO_Setout
+0007BC 904CE6            MOV     DPTR,#g_variable+027H
+0007BF E0                MOVX    A,@DPTR
+0007C0 700E              JNZ     ?C0033?SYS
+  181: 				GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+0007C2 C201              CLR     ?_GPIO_Setout?BIT
+0007C4 7FFF              MOV     R7,#0FFH
+0007C6 F184              ACALL   _GPIO_Setout
   182: 		}
-0007CF 8006              SJMP    ?C0033?SYS
-0007D1         ?C0031?SYS:
+0007C8 8006              SJMP    ?C0033?SYS
+0007CA         ?C0031?SYS:
   183: 		else 
-  184: 			GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
-0007D1 D201              SETB    ?_GPIO_Setout?BIT
-0007D3 7F10              MOV     R7,#010H
-0007D5 F18B              ACALL   _GPIO_Setout
-0007D7         ?C0033?SYS:
-  185: 
-  186: 		if(g_variable.sys_capslockled_on_timer)
-0007D7 904CE7            MOV     DPTR,#g_variable+028H
-0007DA E0                MOVX    A,@DPTR
-0007DB 6014              JZ      ?C0034?SYS
-  187: 		{
-  188: 			g_variable.sys_capslockled_on_timer--;
-0007DD 14                DEC     A
-0007DE F0                MOVX    @DPTR,A
-  189: 			GPIO_Setout(CAPS_LED_GPIO, 0);
-0007DF C201              CLR     ?_GPIO_Setout?BIT
-0007E1 7F0F              MOV     R7,#0FH
-0007E3 F18B              ACALL   _GPIO_Setout
-  190: 			if(!g_variable.sys_capslockled_on_timer)
-0007E5 904CE7            MOV     DPTR,#g_variable+028H
-0007E8 E0                MOVX    A,@DPTR
-0007E9 700C              JNZ     ?C0027?SYS
-  191: 				GPIO_Setout(CAPS_LED_GPIO, 1);
-0007EB D201              SETB    ?_GPIO_Setout?BIT
-0007ED 7F0F              MOV     R7,#0FH
-0007EF 809A              SJMP    _GPIO_Setout
-  192: 		}
-0007F1         ?C0034?SYS:
-  193: 		else
-  194: 			GPIO_Setout(CAPS_LED_GPIO, 1);
-0007F1 D201              SETB    ?_GPIO_Setout?BIT
-0007F3 7F0F              MOV     R7,#0FH
-0007F5 F18B              ACALL   _GPIO_Setout
-  195: 	}	
-  196: }
-0007F7         ?C0027?SYS:
-0007F7 22                RET     
+  184: 			GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+0007CA C201              CLR     ?_GPIO_Setout?BIT
+0007CC 7FFF              MOV     R7,#0FFH
+0007CE F184              ACALL   _GPIO_Setout
+0007D0         ?C0033?SYS:
+  185: 			
+  186: 
+  187: 		if(g_variable.sys_capslockled_on_timer)
+0007D0 904CE7            MOV     DPTR,#g_variable+028H
+0007D3 E0                MOVX    A,@DPTR
+0007D4 6014              JZ      ?C0034?SYS
+  188: 		{
+  189: 			g_variable.sys_capslockled_on_timer--;
+0007D6 14                DEC     A
+0007D7 F0                MOVX    @DPTR,A
+  190: 			GPIO_Setout(CAPS_LED_GPIO, LED_ON);
+0007D8 D201              SETB    ?_GPIO_Setout?BIT
+0007DA 7FFF              MOV     R7,#0FFH
+0007DC F184              ACALL   _GPIO_Setout
+  191: 			if(!g_variable.sys_capslockled_on_timer)
+0007DE 904CE7            MOV     DPTR,#g_variable+028H
+0007E1 E0                MOVX    A,@DPTR
+0007E2 700C              JNZ     ?C0027?SYS
+  192: 				GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+0007E4 C201              CLR     ?_GPIO_Setout?BIT
+0007E6 7FFF              MOV     R7,#0FFH
+0007E8 809A              SJMP    _GPIO_Setout
+  193: 		}
+0007EA         ?C0034?SYS:
+  194: 		else
+  195: 			GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+0007EA C201              CLR     ?_GPIO_Setout?BIT
+0007EC 7FFF              MOV     R7,#0FFH
+0007EE F184              ACALL   _GPIO_Setout
+  196: 	}	
+  197: }
+0007F0         ?C0027?SYS:
+0007F0 22                RET     
 ----- FUNCTION LED_timer500ms (END) -------
 
 
------ FUNCTION LED_device_poweron (BEGIN) -----
- FILE: 'led.c'
-   13: void LED_device_poweron()
-   14: {
-   15: 	GPIO_Setout(G24_LED_GPIO,LED_ON);
-   16: 
-0007F8 D201              SETB    ?_GPIO_Setout?BIT
-0007FA 7F1D              MOV     R7,#01DH
-0007FC 808D              SJMP    _GPIO_Setout
-   17: }
------ FUNCTION LED_device_poweron (END) -------
+----- FUNCTION System_long_sleep (BEGIN) -----
+ FILE: 'sys.c'
+   64: void System_long_sleep()
+   65: { 
+   66: 	m_reconnect_continue = 0;
+   67: 	IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
+0007F1 E4                CLR     A
+0007F2 904D38            MOV     DPTR,#m_reconnect_continue
+0007F5 F0                MOVX    @DPTR,A
+   68: }
+0007F6 7F19              MOV     R7,#019H
+;----                  JMP     _IPC_TxControlCmd
+----- FUNCTION System_long_sleep (END) -------
+
+
+----- FUNCTION _IPC_TxControlCmd (BEGIN) -----
+0007F8 904E71            MOV     DPTR,#cmd
+0007FB EF                MOV     A,R7
+0007FC F0                MOVX    @DPTR,A
+0007FD 7872              MOV     R0,#LOW cmdBuff
+0007FF 7C4E              MOV     R4,#HIGH cmdBuff
+000801 7D01              MOV     R5,#01H
+000803 7BFF              MOV     R3,#0FFH
+000805 7A06              MOV     R2,#HIGH _?ix1000
+000807 79BF              MOV     R1,#LOW _?ix1000
+000809 7E00              MOV     R6,#00H
+00080B 7F03              MOV     R7,#03H
+00080D 120390            LCALL   ?C?COPY
+000810 904E71            MOV     DPTR,#cmd
+000813 E0                MOVX    A,@DPTR
+000814 904E74            MOV     DPTR,#cmdBuff+02H
+000817 F0                MOVX    @DPTR,A
+000818 7B01              MOV     R3,#01H
+00081A 7A4E              MOV     R2,#HIGH cmdBuff
+00081C 7972              MOV     R1,#LOW cmdBuff
+00081E 7D03              MOV     R5,#03H
+;----                  JMP     _ipcTx
+----- FUNCTION _IPC_TxControlCmd (END) -------
+
+
+----- FUNCTION _ipcTx (BEGIN) -----
+000820 904E46            MOV     DPTR,#src
+000823 EB                MOV     A,R3
+000824 F0                MOVX    @DPTR,A
+000825 A3                INC     DPTR
+000826 EA                MOV     A,R2
+000827 F0                MOVX    @DPTR,A
+000828 A3                INC     DPTR
+000829 E9                MOV     A,R1
+00082A F0                MOVX    @DPTR,A
+00082B A3                INC     DPTR
+00082C ED                MOV     A,R5
+00082D F0                MOVX    @DPTR,A
+00082E 904B9C            MOV     DPTR,#ipcTxWritePtr
+000831 E0                MOVX    A,@DPTR
+000832 FF                MOV     R7,A
+000833 A3                INC     DPTR
+000834 E0                MOVX    A,@DPTR
+000835 904E4A            MOV     DPTR,#dest
+000838 CF                XCH     A,R7
+000839 F0                MOVX    @DPTR,A
+00083A A3                INC     DPTR
+00083B EF                MOV     A,R7
+00083C F0                MOVX    @DPTR,A
+00083D         ?C0008?IPC:
+00083D 904B9A            MOV     DPTR,#ipcTxReadPtr
+000840 E0                MOVX    A,@DPTR
+000841 FE                MOV     R6,A
+000842 A3                INC     DPTR
+000843 E0                MOVX    A,@DPTR
+000844 FF                MOV     R7,A
+000845 904B9C            MOV     DPTR,#ipcTxWritePtr
+000848 E0                MOVX    A,@DPTR
+000849 FC                MOV     R4,A
+00084A A3                INC     DPTR
+00084B E0                MOVX    A,@DPTR
+00084C FD                MOV     R5,A
+00084D 7B64              MOV     R3,#064H
+00084F 122129            LCALL   _bufsize
+000852 904E49            MOV     DPTR,#len
+000855 E0                MOVX    A,@DPTR
+000856 FE                MOV     R6,A
+000857 EF                MOV     A,R7
+000858 C3                CLR     C
+000859 9E                SUBB    A,R6
+00085A 40E1              JC      ?C0008?IPC
+00085C         ?C0009?IPC:
+00085C         ?C0010?IPC:
+00085C 904E49            MOV     DPTR,#len
+00085F E0                MOVX    A,@DPTR
+000860 FF                MOV     R7,A
+000861 14                DEC     A
+000862 F0                MOVX    @DPTR,A
+000863 EF                MOV     A,R7
+000864 603F              JZ      ?C0011?IPC
+000866 904E46            MOV     DPTR,#src
+000869 E0                MOVX    A,@DPTR
+00086A FB                MOV     R3,A
+00086B A3                INC     DPTR
+00086C E4                CLR     A
+00086D 75F001            MOV     B,#01H
+000870 120424            LCALL   ?C?ILDIX
+000873 A9F0              MOV     R1,B
+000875 FA                MOV     R2,A
+000876 1203B6            LCALL   ?C?CLDPTR
+000879 FF                MOV     R7,A
+00087A 904E4A            MOV     DPTR,#dest
+00087D E4                CLR     A
+00087E 75F001            MOV     B,#01H
+000881 120424            LCALL   ?C?ILDIX
+000884 85F082            MOV     DPL,B
+000887 F583              MOV     DPH,A
+000889 EF                MOV     A,R7
+00088A F0                MOVX    @DPTR,A
+00088B 904E4A            MOV     DPTR,#dest
+00088E E0                MOVX    A,@DPTR
+00088F FE                MOV     R6,A
+000890 A3                INC     DPTR
+000891 E0                MOVX    A,@DPTR
+000892 FF                MOV     R7,A
+000893 BE4BC6            CJNE    R6,#04BH,?C0010?IPC
+000896 BF36C3            CJNE    R7,#036H,?C0010?IPC
+000899 904E4A            MOV     DPTR,#dest
+00089C 744A              MOV     A,#04AH
+00089E F0                MOVX    @DPTR,A
+00089F A3                INC     DPTR
+0008A0 74A0              MOV     A,#0A0H
+0008A2 F0                MOVX    @DPTR,A
+0008A3 80B7              SJMP    ?C0010?IPC
+0008A5         ?C0011?IPC:
+0008A5 904E4A            MOV     DPTR,#dest
+0008A8 E0                MOVX    A,@DPTR
+0008A9 FF                MOV     R7,A
+0008AA A3                INC     DPTR
+0008AB E0                MOVX    A,@DPTR
+0008AC 904B9C            MOV     DPTR,#ipcTxWritePtr
+0008AF CF                XCH     A,R7
+0008B0 F0                MOVX    @DPTR,A
+0008B1 A3                INC     DPTR
+0008B2 EF                MOV     A,R7
+0008B3 F0                MOVX    @DPTR,A
+0008B4 22                RET     
+----- FUNCTION _ipcTx (END) -------
+
+
+----- FUNCTION _IPC_TxData (BEGIN) -----
+0008B5 904E93            MOV     DPTR,#len
+0008B8 ED                MOV     A,R5
+0008B9 F0                MOVX    @DPTR,A
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+0008BA E0                MOVX    A,@DPTR
+0008BB FD                MOV     R5,A
+0008BC 900BE8            MOV     DPTR,#ipcSendBuff+01H
+0008BF F0                MOVX    @DPTR,A
+0008C0 7E0B              MOV     R6,#HIGH ipcSendBuff+02H
+0008C2 7FE9              MOV     R7,#LOW ipcSendBuff+02H
+0008C4 904E51            MOV     DPTR,#?_xmemcpy?BYTE+05H
+0008C7 ED                MOV     A,R5
+0008C8 F0                MOVX    @DPTR,A
+0008C9 11DA              ACALL   _xmemcpy
+0008CB 7B01              MOV     R3,#01H
+0008CD 7A0B              MOV     R2,#HIGH ipcSendBuff
+0008CF 79E7              MOV     R1,#LOW ipcSendBuff
+0008D1 904E93            MOV     DPTR,#len
+0008D4 E0                MOVX    A,@DPTR
+0008D5 2402              ADD     A,#02H
+0008D7 FD                MOV     R5,A
+0008D8 0120              AJMP    _ipcTx
+----- FUNCTION _IPC_TxData (END) -------
+
+
+----- FUNCTION _xmemcpy (BEGIN) -----
+0008DA 904E4C            MOV     DPTR,#dest
+0008DD EE                MOV     A,R6
+0008DE F0                MOVX    @DPTR,A
+0008DF A3                INC     DPTR
+0008E0 EF                MOV     A,R7
+0008E1 F0                MOVX    @DPTR,A
+0008E2 A3                INC     DPTR
+0008E3 EB                MOV     A,R3
+0008E4 F0                MOVX    @DPTR,A
+0008E5 A3                INC     DPTR
+0008E6 EA                MOV     A,R2
+0008E7 F0                MOVX    @DPTR,A
+0008E8 A3                INC     DPTR
+0008E9 E9                MOV     A,R1
+0008EA F0                MOVX    @DPTR,A
+0008EB         ?C0002?UTILITIES:
+0008EB 904E51            MOV     DPTR,#len
+0008EE E0                MOVX    A,@DPTR
+0008EF FF                MOV     R7,A
+0008F0 14                DEC     A
+0008F1 F0                MOVX    @DPTR,A
+0008F2 EF                MOV     A,R7
+0008F3 6027              JZ      ?C0004?UTILITIES
+0008F5 904E4E            MOV     DPTR,#src
+0008F8 E0                MOVX    A,@DPTR
+0008F9 FB                MOV     R3,A
+0008FA A3                INC     DPTR
+0008FB E4                CLR     A
+0008FC 75F001            MOV     B,#01H
+0008FF 120424            LCALL   ?C?ILDIX
+000902 A9F0              MOV     R1,B
+000904 FA                MOV     R2,A
+000905 1203B6            LCALL   ?C?CLDPTR
+000908 FF                MOV     R7,A
+000909 904E4C            MOV     DPTR,#dest
+00090C E4                CLR     A
+00090D 75F001            MOV     B,#01H
+000910 120424            LCALL   ?C?ILDIX
+000913 85F082            MOV     DPL,B
+000916 F583              MOV     DPH,A
+000918 EF                MOV     A,R7
+000919 F0                MOVX    @DPTR,A
+00091A 80CF              SJMP    ?C0002?UTILITIES
+00091C         ?C0004?UTILITIES:
+00091C 22                RET     
+----- FUNCTION _xmemcpy (END) -------
+
+
+----- FUNCTION _kb_motion_keyscan (BEGIN) -----
+ FILE: 'kb_process.c'
+  210: void kb_motion_keyscan(tKSEVENT *pEvt)
+  211: {
+00091D 904E52            MOV     DPTR,#pEvt
+000920 EB                MOV     A,R3
+000921 F0                MOVX    @DPTR,A
+000922 A3                INC     DPTR
+000923 EA                MOV     A,R2
+000924 F0                MOVX    @DPTR,A
+000925 A3                INC     DPTR
+000926 E9                MOV     A,R1
+000927 F0                MOVX    @DPTR,A
+  212: 	byte temp = 0;
+  213: 	byte i=0;
+000928 E4                CLR     A
+000929 A3                INC     DPTR
+00092A F0                MOVX    @DPTR,A
+  214: 	
+00092B A3                INC     DPTR
+00092C F0                MOVX    @DPTR,A
+  215: 	fn_flag = 0;
+00092D 904DDB            MOV     DPTR,#fn_flag
+000930 F0                MOVX    @DPTR,A
+  216: 	for(i=0; i < KS_BUFF_POLL_LEN-1; i++)
+000931 904E56            MOV     DPTR,#i
+000934 F0                MOVX    @DPTR,A
+000935         ?C0046?KB_PROCESS:
+000935 904E56            MOV     DPTR,#i
+000938 E0                MOVX    A,@DPTR
+000939 FF                MOV     R7,A
+00093A C3                CLR     C
+00093B 9405              SUBB    A,#05H
+00093D 502C              JNC     ?C0047?KB_PROCESS
+  217: 	{
+  218: 		if (pEvt->ksPool[i] == HID_KEY_FN) 		// Fn key check
+00093F 904E52            MOV     DPTR,#pEvt
+000942 E0                MOVX    A,@DPTR
+000943 FB                MOV     R3,A
+000944 A3                INC     DPTR
+000945 E0                MOVX    A,@DPTR
+000946 FA                MOV     R2,A
+000947 A3                INC     DPTR
+000948 E0                MOVX    A,@DPTR
+000949 2401              ADD     A,#01H
+00094B F9                MOV     R1,A
+00094C E4                CLR     A
+00094D 3A                ADDC    A,R2
+00094E FA                MOV     R2,A
+00094F 7E00              MOV     R6,#00H
+000951 E9                MOV     A,R1
+000952 2F                ADD     A,R7
+000953 F9                MOV     R1,A
+000954 EE                MOV     A,R6
+000955 3A                ADDC    A,R2
+000956 FA                MOV     R2,A
+000957 1203B6            LCALL   ?C?CLDPTR
+00095A B4AF06            CJNE    A,#0AFH,?C0048?KB_PROCESS
+  219: 		{
+  220: 			fn_flag = 1;
+00095D 904DDB            MOV     DPTR,#fn_flag
+000960 7401              MOV     A,#01H
+000962 F0                MOVX    @DPTR,A
+  221: 		}
+  222: 	}
+000963         ?C0048?KB_PROCESS:
+000963 904E56            MOV     DPTR,#i
+000966 E0                MOVX    A,@DPTR
+000967 04                INC     A
+000968 F0                MOVX    @DPTR,A
+000969 80CA              SJMP    ?C0046?KB_PROCESS
+00096B         ?C0047?KB_PROCESS:
+  223: 	fn_flag_last = fn_flag;
+00096B 904DDB            MOV     DPTR,#fn_flag
+00096E E0                MOVX    A,@DPTR
+00096F 904DE0            MOV     DPTR,#fn_flag_last
+000972 F0                MOVX    @DPTR,A
+  224: 
+  225: 	
+  226: 	if (pEvt == NULL)
+000973 904E52            MOV     DPTR,#pEvt
+000976 E0                MOVX    A,@DPTR
+000977 A3                INC     DPTR
+000978 E0                MOVX    A,@DPTR
+000979 FA                MOV     R2,A
+00097A A3                INC     DPTR
+00097B E0                MOVX    A,@DPTR
+00097C 4A                ORL     A,R2
+00097D 7002              JNZ     $ + 4H
+00097F 6155              AJMP    ?C0051?KB_PROCESS
+000981         ?C0050?KB_PROCESS:
+  227: 		return;
+  228: 
+  229: 	delayChgInvTimer = 10;
+000981 904DDE            MOV     DPTR,#delayChgInvTimer
+000984 740A              MOV     A,#0AH
+000986 F0                MOVX    @DPTR,A
+  230: 	g_variable.sleepTimer = 0;
+000987 E4                CLR     A
+000988 904CE3            MOV     DPTR,#g_variable+024H
+00098B F0                MOVX    @DPTR,A
+00098C A3                INC     DPTR
+00098D F0                MOVX    @DPTR,A
+  231: 	xmemclear(hidBuff,9);
+00098E 7B01              MOV     R3,#01H
+000990 7A48              MOV     R2,#HIGH hidBuff
+000992 7900              MOV     R1,#LOW hidBuff
+000994 7D09              MOV     R5,#09H
+000996 FC                MOV     R4,A
+000997 91CD              ACALL   _xmemclear
+  232: 	xmemclear(multikey,9);
+000999 7B01              MOV     R3,#01H
+00099B 7A4D              MOV     R2,#HIGH multikey
+00099D 79E5              MOV     R1,#LOW multikey
+00099F 7D09              MOV     R5,#09H
+0009A1 7C00              MOV     R4,#00H
+0009A3 91CD              ACALL   _xmemclear
+  233: 
+  234: 	////////////////////////////2.4g pairing////////////////////////////////////
+  235: 	if ((pEvt->ksPool[0]  == HID_KEY_EQUAL&& pEvt->ksPool[1]  == HID_KEY_ESC) 
+0009A5 904E52            MOV     DPTR,#pEvt
+0009A8 E0                MOVX    A,@DPTR
+0009A9 FB                MOV     R3,A
+0009AA A3                INC     DPTR
+0009AB E0                MOVX    A,@DPTR
+0009AC FA                MOV     R2,A
+0009AD A3                INC     DPTR
+0009AE E0                MOVX    A,@DPTR
+0009AF F9                MOV     R1,A
+0009B0 900001            MOV     DPTR,#01H
+0009B3 1203CF            LCALL   ?C?CLDOPTR
+0009B6 FF                MOV     R7,A
+0009B7 B42E0A            CJNE    A,#02EH,?C0054?KB_PROCESS
+0009BA 900002            MOV     DPTR,#02H
+0009BD 1203CF            LCALL   ?C?CLDOPTR
+0009C0 6429              XRL     A,#029H
+0009C2 600F              JZ      ?C0053?KB_PROCESS
+0009C4         ?C0054?KB_PROCESS:
+0009C4 EF                MOV     A,R7
+0009C5 6429              XRL     A,#029H
+0009C7 7036              JNZ     ?C0052?KB_PROCESS
+0009C9 900002            MOV     DPTR,#02H
+0009CC 1203CF            LCALL   ?C?CLDOPTR
+0009CF 642E              XRL     A,#02EH
+0009D1 702C              JNZ     ?C0052?KB_PROCESS
+0009D3         ?C0053?KB_PROCESS:
+  236: 		||(pEvt->ksPool[0]  == HID_KEY_ESC && pEvt->ksPool[1]  == HID_KEY_EQUAL) 
+  237: 		)
+  238: 	{
+  239: 		m_24g_paring_addr[0] = 0x20;
+0009D3 904BEB            MOV     DPTR,#m_24g_paring_addr
+0009D6 7420              MOV     A,#020H
+0009D8 F0                MOVX    @DPTR,A
+  240: 		m_24g_paring_addr[1] = 0x15;
+0009D9 A3                INC     DPTR
+0009DA 7415              MOV     A,#015H
+0009DC F0                MOVX    @DPTR,A
+  241: 		m_24g_paring_addr[2] = 0x10;
+0009DD A3                INC     DPTR
+0009DE 7410              MOV     A,#010H
+0009E0 F0                MOVX    @DPTR,A
+  242: 		m_24g_paring_addr[3] = 0x05;
+0009E1 A3                INC     DPTR
+0009E2 7405              MOV     A,#05H
+0009E4 F0                MOVX    @DPTR,A
+  243: 		if (g_variable.g24_currentState != CHANGE_TO_24G_PAIRING)
+0009E5 904CC5            MOV     DPTR,#g_variable+06H
+0009E8 E0                MOVX    A,@DPTR
+0009E9 6401              XRL     A,#01H
+0009EB 6009              JZ      ?C0055?KB_PROCESS
+  244: 		{
+  245: 			g_variable.button_flag |= KEY_FLAG_FN_24G_DEVICE_BUTTON;
+0009ED 904CCE            MOV     DPTR,#g_variable+0FH
+0009F0 E0                MOVX    A,@DPTR
+0009F1 4410              ORL     A,#010H
+0009F3 F0                MOVX    @DPTR,A
+  246: 		}
+0009F4 8010              SJMP    ?C0057?KB_PROCESS
+0009F6         ?C0055?KB_PROCESS:
+  247: 		else
+  248: 		{
+  249: 			g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
+0009F6 904CCE            MOV     DPTR,#g_variable+0FH
+0009F9 E0                MOVX    A,@DPTR
+0009FA 54EF              ANL     A,#0EFH
+0009FC F0                MOVX    @DPTR,A
+  250: 		}
+  251: 	}
+0009FD 8007              SJMP    ?C0057?KB_PROCESS
+0009FF         ?C0052?KB_PROCESS:
+  252: 	else
+  253: 	{
+  254: 		g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
+0009FF 904CCE            MOV     DPTR,#g_variable+0FH
+000A02 E0                MOVX    A,@DPTR
+000A03 54EF              ANL     A,#0EFH
+000A05 F0                MOVX    @DPTR,A
+  255: 	}
+000A06         ?C0057?KB_PROCESS:
+  256: 
+  257: 	m_power_on_flag = 1;
+000A06 904CB6            MOV     DPTR,#m_power_on_flag
+000A09 7401              MOV     A,#01H
+000A0B F0                MOVX    @DPTR,A
+  258: 	if( (g_variable.key_combination_step == CAMBINATION_KEY_PRESS) ||
+000A0C 904CF4            MOV     DPTR,#g_variable+035H
+000A0F E0                MOVX    A,@DPTR
+000A10 FF                MOV     R7,A
+000A11 6401              XRL     A,#01H
+000A13 7002              JNZ     $ + 4H
+000A15 6155              AJMP    ?C0051?KB_PROCESS
+000A17 EF                MOV     A,R7
+000A18 6404              XRL     A,#04H
+000A1A 7002              JNZ     $ + 4H
+000A1C 6155              AJMP    ?C0051?KB_PROCESS
+000A1E EF                MOV     A,R7
+000A1F 6402              XRL     A,#02H
+000A21 7002              JNZ     $ + 4H
+000A23 6155              AJMP    ?C0051?KB_PROCESS
+  259: 	    (g_variable.key_combination_step == CAMBINATION_KEY_WAIT_RELEASE) ||
+  260: 	    (g_variable.key_combination_step == CAMBINATION_KEY_HOLD))
+  261: 	{
+  262: 		return;
+  263: 	}
+000A25         ?C0058?KB_PROCESS:
+  264: 
+  265: 	// get 24g led status
+  266: 	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+000A25 904CC5            MOV     DPTR,#g_variable+06H
+000A28 E0                MOVX    A,@DPTR
+000A29 6403              XRL     A,#03H
+000A2B 7045              JNZ     ?C0060?KB_PROCESS
+  267: 	{
+  268: 		for(i=0; i < KS_BUFF_POLL_LEN-1; i++)
+000A2D 904E56            MOV     DPTR,#i
+000A30 F0                MOVX    @DPTR,A
+000A31         ?C0061?KB_PROCESS:
+000A31 904E56            MOV     DPTR,#i
+000A34 E0                MOVX    A,@DPTR
+000A35 FF                MOV     R7,A
+000A36 C3                CLR     C
+000A37 9405              SUBB    A,#05H
+000A39 5037              JNC     ?C0060?KB_PROCESS
+  269: 		{
+  270: 			if ((pEvt->ksPool[i] == HID_KEY_CAPS_LOCK) || (pEvt->ksPool[i] == HID_KEY_NUM_LOCK) 
+000A3B 904E52            MOV     DPTR,#pEvt
+000A3E E0                MOVX    A,@DPTR
+000A3F FB                MOV     R3,A
+000A40 A3                INC     DPTR
+000A41 E0                MOVX    A,@DPTR
+000A42 FA                MOV     R2,A
+000A43 A3                INC     DPTR
+000A44 E0                MOVX    A,@DPTR
+000A45 2401              ADD     A,#01H
+000A47 F9                MOV     R1,A
+000A48 E4                CLR     A
+000A49 3A                ADDC    A,R2
+000A4A FA                MOV     R2,A
+000A4B 7E00              MOV     R6,#00H
+000A4D E9                MOV     A,R1
+000A4E 2F                ADD     A,R7
+000A4F F9                MOV     R1,A
+000A50 EE                MOV     A,R6
+000A51 3A                ADDC    A,R2
+000A52 FA                MOV     R2,A
+000A53 1203B6            LCALL   ?C?CLDPTR
+000A56 FF                MOV     R7,A
+000A57 6439              XRL     A,#039H
+000A59 6009              JZ      ?C0065?KB_PROCESS
+000A5B EF                MOV     A,R7
+000A5C 6453              XRL     A,#053H
+000A5E 6004              JZ      ?C0065?KB_PROCESS
+000A60 EF                MOV     A,R7
+000A61 B44706            CJNE    A,#047H,?C0063?KB_PROCESS
+000A64         ?C0065?KB_PROCESS:
+  271: 			|| (pEvt->ksPool[i] == HID_KEY_SCROLL_LOCK))
+  272: 			{
+  273: 				get_24g_led_send = 1;
+000A64 904DD0            MOV     DPTR,#get_24g_led_send
+000A67 7401              MOV     A,#01H
+000A69 F0                MOVX    @DPTR,A
+  274: 			}
+  275: 		}
+000A6A         ?C0063?KB_PROCESS:
+000A6A 904E56            MOV     DPTR,#i
+000A6D E0                MOVX    A,@DPTR
+000A6E 04                INC     A
+000A6F F0                MOVX    @DPTR,A
+000A70 80BF              SJMP    ?C0061?KB_PROCESS
+  276: 	}
+000A72         ?C0060?KB_PROCESS:
+  277: 
+  278: 	kb_multikey_setup(pEvt);
+000A72 904E52            MOV     DPTR,#pEvt
+000A75 E0                MOVX    A,@DPTR
+000A76 FB                MOV     R3,A
+000A77 A3                INC     DPTR
+000A78 E0                MOVX    A,@DPTR
+000A79 FA                MOV     R2,A
+000A7A A3                INC     DPTR
+000A7B E0                MOVX    A,@DPTR
+000A7C F9                MOV     R1,A
+000A7D 7156              ACALL   _kb_multikey_setup
+  279: 	
+  280: 	if (mult_key_status == KEY_PRESS) 
+000A7F 904DE4            MOV     DPTR,#mult_key_status
+000A82 E0                MOVX    A,@DPTR
+000A83 B40111            CJNE    A,#01H,?C0066?KB_PROCESS
+  281: 	{
+  282: 		mult_key_status = KEY_WAIT_RELEASE;
+000A86 7402              MOV     A,#02H
+000A88 F0                MOVX    @DPTR,A
+  283: 		multikey[0] = HID_REPORTID_2;	
+000A89 904DE5            MOV     DPTR,#multikey
+000A8C F0                MOVX    @DPTR,A
+  284: 		IPC_TxHidData(multikey, 3);
+000A8D 7B01              MOV     R3,#01H
+000A8F 7A4D              MOV     R2,#HIGH multikey
+000A91 79E5              MOV     R1,#LOW multikey
+000A93 7D03              MOV     R5,#03H
+000A95 A183              AJMP    _IPC_TxHidData
+  285: 	}
+000A97         ?C0066?KB_PROCESS:
+  286: 	else if(mult_key_status == KEY_RELEASE)
+000A97 904DE4            MOV     DPTR,#mult_key_status
+000A9A E0                MOVX    A,@DPTR
+000A9B B40316            CJNE    A,#03H,?C0068?KB_PROCESS
+  287: 	{
+  288: 		mult_key_status = KEY_STANDBY;
+000A9E E4                CLR     A
+000A9F F0                MOVX    @DPTR,A
+  289: 		mult_key_value = 0;
+000AA0 904DE3            MOV     DPTR,#mult_key_value
+000AA3 F0                MOVX    @DPTR,A
+  290: 		multikey[0] = HID_REPORTID_2;	
+000AA4 904DE5            MOV     DPTR,#multikey
+000AA7 7402              MOV     A,#02H
+000AA9 F0                MOVX    @DPTR,A
+  291: 		IPC_TxHidData(multikey, 3);
+000AAA 7B01              MOV     R3,#01H
+000AAC 7A4D              MOV     R2,#HIGH multikey
+000AAE 79E5              MOV     R1,#LOW multikey
+000AB0 7D03              MOV     R5,#03H
+000AB2 A183              AJMP    _IPC_TxHidData
+  292: 	}
+000AB4         ?C0068?KB_PROCESS:
+  293: 	else 
+  294: 	{
+  295: 		hidBuff[0] = HID_REPORTID_1;
+000AB4 904800            MOV     DPTR,#hidBuff
+000AB7 7401              MOV     A,#01H
+000AB9 F0                MOVX    @DPTR,A
+  296: 		hidBuff[1] = pEvt->standardSel;
+000ABA 904E52            MOV     DPTR,#pEvt
+000ABD E0                MOVX    A,@DPTR
+000ABE FB                MOV     R3,A
+000ABF A3                INC     DPTR
+000AC0 E0                MOVX    A,@DPTR
+000AC1 FA                MOV     R2,A
+000AC2 A3                INC     DPTR
+000AC3 E0                MOVX    A,@DPTR
+000AC4 F9                MOV     R1,A
+000AC5 1203B6            LCALL   ?C?CLDPTR
+000AC8 904801            MOV     DPTR,#hidBuff+01H
+000ACB F0                MOVX    @DPTR,A
+  297: 		hidBuff[2] = 0;
+000ACC E4                CLR     A
+000ACD A3                INC     DPTR
+000ACE F0                MOVX    @DPTR,A
+  298: 
+  299: 		standard_key_release_flag = 0;
+000ACF 904DD8            MOV     DPTR,#standard_key_release_flag
+000AD2 F0                MOVX    @DPTR,A
+  300: 
+  301: 		if (pEvt->ksPool[0] == HID_KEY_FN)
+000AD3 900001            MOV     DPTR,#01H
+000AD6 1203CF            LCALL   ?C?CLDOPTR
+000AD9 B4AF1E            CJNE    A,#0AFH,?C0070?KB_PROCESS
+  302: 			xmemcpy(&hidBuff[3], &pEvt->ksPool[1], 5);
+000ADC 7E48              MOV     R6,#HIGH hidBuff+03H
+000ADE 7F03              MOV     R7,#LOW hidBuff+03H
+000AE0 904E52            MOV     DPTR,#pEvt
+000AE3 E0                MOVX    A,@DPTR
+000AE4 FB                MOV     R3,A
+000AE5 A3                INC     DPTR
+000AE6 E0                MOVX    A,@DPTR
+000AE7 FA                MOV     R2,A
+000AE8 A3                INC     DPTR
+000AE9 E0                MOVX    A,@DPTR
+000AEA 2402              ADD     A,#02H
+000AEC F9                MOV     R1,A
+000AED E4                CLR     A
+000AEE 3A                ADDC    A,R2
+000AEF FA                MOV     R2,A
+000AF0 904E51            MOV     DPTR,#?_xmemcpy?BYTE+05H
+000AF3 7405              MOV     A,#05H
+000AF5 F0                MOVX    @DPTR,A
+000AF6 11DA              ACALL   _xmemcpy
+000AF8 801C              SJMP    ?C0071?KB_PROCESS
+000AFA         ?C0070?KB_PROCESS:
+  303: 		else
+  304: 			xmemcpy(&hidBuff[3], pEvt->ksPool, 6);
+000AFA 7E48              MOV     R6,#HIGH hidBuff+03H
+000AFC 7F03              MOV     R7,#LOW hidBuff+03H
+000AFE 904E52            MOV     DPTR,#pEvt
+000B01 E0                MOVX    A,@DPTR
+000B02 FB                MOV     R3,A
+000B03 A3                INC     DPTR
+000B04 E0                MOVX    A,@DPTR
+000B05 FA                MOV     R2,A
+000B06 A3                INC     DPTR
+000B07 E0                MOVX    A,@DPTR
+000B08 2401              ADD     A,#01H
+000B0A F9                MOV     R1,A
+000B0B E4                CLR     A
+000B0C 3A                ADDC    A,R2
+000B0D FA                MOV     R2,A
+000B0E 904E51            MOV     DPTR,#?_xmemcpy?BYTE+05H
+000B11 7406              MOV     A,#06H
+000B13 F0                MOVX    @DPTR,A
+000B14 11DA              ACALL   _xmemcpy
+000B16         ?C0071?KB_PROCESS:
+  305: 		
+  306: 		for(i = 3; i<9;i++)
+000B16 904E56            MOV     DPTR,#i
+000B19 7403              MOV     A,#03H
+000B1B F0                MOVX    @DPTR,A
+000B1C         ?C0072?KB_PROCESS:
+000B1C 904E56            MOV     DPTR,#i
+000B1F E0                MOVX    A,@DPTR
+000B20 FF                MOV     R7,A
+000B21 C3                CLR     C
+000B22 9409              SUBB    A,#09H
+000B24 5025              JNC     ?C0073?KB_PROCESS
+  307: 		{
+  308: 			if (hidBuff[i] == HID_KEY_FN)
+000B26 7400              MOV     A,#LOW hidBuff
+000B28 2F                ADD     A,R7
+000B29 F582              MOV     DPL,A
+000B2B E4                CLR     A
+000B2C 3448              ADDC    A,#HIGH hidBuff
+000B2E F583              MOV     DPH,A
+000B30 E0                MOVX    A,@DPTR
+000B31 B4AF0F            CJNE    A,#0AFH,?C0074?KB_PROCESS
+  309: 				hidBuff[i] = 0;
+000B34 904E56            MOV     DPTR,#i
+000B37 E0                MOVX    A,@DPTR
+000B38 2400              ADD     A,#LOW hidBuff
+000B3A F582              MOV     DPL,A
+000B3C E4                CLR     A
+000B3D 3448              ADDC    A,#HIGH hidBuff
+000B3F F583              MOV     DPH,A
+000B41 E4                CLR     A
+000B42 F0                MOVX    @DPTR,A
+  310: 		}
+000B43         ?C0074?KB_PROCESS:
+000B43 904E56            MOV     DPTR,#i
+000B46 E0                MOVX    A,@DPTR
+000B47 04                INC     A
+000B48 F0                MOVX    @DPTR,A
+000B49 80D1              SJMP    ?C0072?KB_PROCESS
+000B4B         ?C0073?KB_PROCESS:
+  311: 		
+  312: 		IPC_TxHidData(hidBuff, 9);
+000B4B 7B01              MOV     R3,#01H
+000B4D 7A48              MOV     R2,#HIGH hidBuff
+000B4F 7900              MOV     R1,#LOW hidBuff
+000B51 7D09              MOV     R5,#09H
+000B53 B183              ACALL   _IPC_TxHidData
+  313: 	}
+  314: 	return;
+  315: }
+000B55         ?C0051?KB_PROCESS:
+000B55 22                RET     
+----- FUNCTION _kb_motion_keyscan (END) -------
+
+
+----- FUNCTION _kb_multikey_setup (BEGIN) -----
+ FILE: 'kb_process.c'
+  398: void kb_multikey_setup(tKSEVENT *pEvt)
+  399: {
+000B56 904E65            MOV     DPTR,#pEvt
+000B59 EB                MOV     A,R3
+000B5A F0                MOVX    @DPTR,A
+000B5B A3                INC     DPTR
+000B5C EA                MOV     A,R2
+000B5D F0                MOVX    @DPTR,A
+000B5E A3                INC     DPTR
+000B5F E9                MOV     A,R1
+000B60 F0                MOVX    @DPTR,A
+  400: 	byte i = 0;
+  401: 	
+000B61 E4                CLR     A
+000B62 A3                INC     DPTR
+000B63 F0                MOVX    @DPTR,A
+  402: 	for (i = 0;i < 6;i++)
+000B64 F0                MOVX    @DPTR,A
+000B65         ?C0097?KB_PROCESS:
+000B65 904E68            MOV     DPTR,#i
+000B68 E0                MOVX    A,@DPTR
+000B69 FF                MOV     R7,A
+000B6A C3                CLR     C
+000B6B 9406              SUBB    A,#06H
+000B6D 4002              JC      $ + 4H
+000B6F 81B1              AJMP    ?C0122?KB_PROCESS
+  403: 	{		
+  404: 		if ((pEvt->ksPool[i] &0xF0) == 0xf0 
+000B71 904E65            MOV     DPTR,#pEvt
+000B74 E0                MOVX    A,@DPTR
+000B75 FB                MOV     R3,A
+000B76 A3                INC     DPTR
+000B77 E0                MOVX    A,@DPTR
+000B78 FA                MOV     R2,A
+000B79 A3                INC     DPTR
+000B7A E0                MOVX    A,@DPTR
+000B7B 2401              ADD     A,#01H
+000B7D F9                MOV     R1,A
+000B7E E4                CLR     A
+000B7F 3A                ADDC    A,R2
+000B80 FA                MOV     R2,A
+000B81 7E00              MOV     R6,#00H
+000B83 E9                MOV     A,R1
+000B84 2F                ADD     A,R7
+000B85 F9                MOV     R1,A
+000B86 EE                MOV     A,R6
+000B87 3A                ADDC    A,R2
+000B88 FA                MOV     R2,A
+000B89 1203B6            LCALL   ?C?CLDPTR
+000B8C FF                MOV     R7,A
+000B8D 54F0              ANL     A,#0F0H
+000B8F 64F0              XRL     A,#0F0H
+000B91 6009              JZ      ?C0101?KB_PROCESS
+000B93 EF                MOV     A,R7
+000B94 54D0              ANL     A,#0D0H
+000B96 64D0              XRL     A,#0D0H
+000B98 6002              JZ      $ + 4H
+000B9A 81A9              AJMP    ?C0099?KB_PROCESS
+000B9C         ?C0101?KB_PROCESS:
+  405: 			|| (pEvt->ksPool[i] &0xD0) == 0xD0)
+  406: 		{
+  407: 			/*
+  408: 			if (pEvt->ksPool[i] ==  HID_MULTIKEY_MEDIA) //media select
+  409: 			{
+  410: 				kb_set_multikey(0x0183); 
+  411: 			}
+  412: 			else*/ 
+  413: 			if (pEvt->ksPool[i] ==  HID_MULTIKEY_PALY) //play / pause
+000B9C 1203B6            LCALL   ?C?CLDPTR
+000B9F FB                MOV     R3,A
+000BA0 B4F208            CJNE    A,#0F2H,?C0102?KB_PROCESS
+  414: 			{ 
+  415: 				kb_set_multikey(0x00cd);
+000BA3 7FCD              MOV     R7,#0CDH
+000BA5 7E00              MOV     R6,#00H
+000BA7 91B2              ACALL   _kb_set_multikey
+  416: 			}
+000BA9 817E              AJMP    ?C0103?KB_PROCESS
+000BAB         ?C0102?KB_PROCESS:
+  417: 		/*	else if (pEvt->ksPool[i] ==  HID_MULTIKEY_STOP)  //stop
+  418: 			{
+  419: 				kb_set_multikey(0x00b7);
+  420: 			}	*/
+  421: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_PRE_TRACK) //pre Track
+000BAB EB                MOV     A,R3
+000BAC B4F408            CJNE    A,#0F4H,?C0104?KB_PROCESS
+  422: 			{
+  423: 				kb_set_multikey(0x00b6);
+000BAF 7FB6              MOV     R7,#0B6H
+000BB1 7E00              MOV     R6,#00H
+000BB3 91B2              ACALL   _kb_set_multikey
+  424: 			}
+000BB5 817E              AJMP    ?C0103?KB_PROCESS
+000BB7         ?C0104?KB_PROCESS:
+  425: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_NEXT_TRACK) //next Track
+000BB7 904E65            MOV     DPTR,#pEvt
+000BBA E0                MOVX    A,@DPTR
+000BBB FB                MOV     R3,A
+000BBC A3                INC     DPTR
+000BBD E0                MOVX    A,@DPTR
+000BBE FA                MOV     R2,A
+000BBF A3                INC     DPTR
+000BC0 E0                MOVX    A,@DPTR
+000BC1 2401              ADD     A,#01H
+000BC3 F9                MOV     R1,A
+000BC4 E4                CLR     A
+000BC5 3A                ADDC    A,R2
+000BC6 FA                MOV     R2,A
+000BC7 A3                INC     DPTR
+000BC8 E0                MOVX    A,@DPTR
+000BC9 7E00              MOV     R6,#00H
+000BCB 29                ADD     A,R1
+000BCC F9                MOV     R1,A
+000BCD EE                MOV     A,R6
+000BCE 3A                ADDC    A,R2
+000BCF FA                MOV     R2,A
+000BD0 1203B6            LCALL   ?C?CLDPTR
+000BD3 FB                MOV     R3,A
+000BD4 B4F506            CJNE    A,#0F5H,?C0106?KB_PROCESS
+  426: 			{
+  427: 				kb_set_multikey(0x00b5);
+000BD7 7FB5              MOV     R7,#0B5H
+000BD9 91B2              ACALL   _kb_set_multikey
+  428: 			}
+000BDB 817E              AJMP    ?C0103?KB_PROCESS
+000BDD         ?C0106?KB_PROCESS:
+  429: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_VOL_DOWN) //vol-
+000BDD EB                MOV     A,R3
+000BDE B4F608            CJNE    A,#0F6H,?C0108?KB_PROCESS
+  430: 			{
+  431: 				kb_set_multikey(0x00ea);
+000BE1 7FEA              MOV     R7,#0EAH
+000BE3 7E00              MOV     R6,#00H
+000BE5 91B2              ACALL   _kb_set_multikey
+  432: 			}
+000BE7 817E              AJMP    ?C0103?KB_PROCESS
+000BE9         ?C0108?KB_PROCESS:
+  433: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_VOL_UP) //vol+
+000BE9 904E65            MOV     DPTR,#pEvt
+000BEC E0                MOVX    A,@DPTR
+000BED FB                MOV     R3,A
+000BEE A3                INC     DPTR
+000BEF E0                MOVX    A,@DPTR
+000BF0 FA                MOV     R2,A
+000BF1 A3                INC     DPTR
+000BF2 E0                MOVX    A,@DPTR
+000BF3 2401              ADD     A,#01H
+000BF5 F9                MOV     R1,A
+000BF6 E4                CLR     A
+000BF7 3A                ADDC    A,R2
+000BF8 FA                MOV     R2,A
+000BF9 A3                INC     DPTR
+000BFA E0                MOVX    A,@DPTR
+000BFB 7E00              MOV     R6,#00H
+000BFD 29                ADD     A,R1
+000BFE F9                MOV     R1,A
+000BFF EE                MOV     A,R6
+000C00 3A                ADDC    A,R2
+000C01 FA                MOV     R2,A
+000C02 1203B6            LCALL   ?C?CLDPTR
+000C05 FB                MOV     R3,A
+000C06 B4F706            CJNE    A,#0F7H,?C0110?KB_PROCESS
+  434: 			{
+  435: 				kb_set_multikey(0x00e9);
+000C09 7FE9              MOV     R7,#0E9H
+000C0B 91B2              ACALL   _kb_set_multikey
+  436: 			}
+000C0D 806F              SJMP    ?C0103?KB_PROCESS
+000C0F         ?C0110?KB_PROCESS:
+  437: 			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_MUTE) //mute
+000C0F EB                MOV     A,R3
+000C10 B4F808            CJNE    A,#0F8H,?C0112?KB_PROCESS
+  438: 			{
+  439: 				kb_set_multikey(0x00e2);
+000C13 7FE2              MOV     R7,#0E2H
+000C15 7E00              MOV     R6,#00H
+000C17 91B2              ACALL   _kb_set_multikey
+  440: 			}
+000C19 8063              SJMP    ?C0103?KB_PROCESS
+000C1B         ?C0112?KB_PROCESS:
+  441: 		/*	else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_MY_COMPUTER) 
+  442: 			{
+  443: 				kb_set_multikey(0x0194);
+  444: 			}	*/
+  445: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_MAIL)  //mail
+000C1B 904E65            MOV     DPTR,#pEvt
+000C1E E0                MOVX    A,@DPTR
+000C1F FB                MOV     R3,A
+000C20 A3                INC     DPTR
+000C21 E0                MOVX    A,@DPTR
+000C22 FA                MOV     R2,A
+000C23 A3                INC     DPTR
+000C24 E0                MOVX    A,@DPTR
+000C25 2401              ADD     A,#01H
+000C27 F9                MOV     R1,A
+000C28 E4                CLR     A
+000C29 3A                ADDC    A,R2
+000C2A FA                MOV     R2,A
+000C2B A3                INC     DPTR
+000C2C E0                MOVX    A,@DPTR
+000C2D 7E00              MOV     R6,#00H
+000C2F 29                ADD     A,R1
+000C30 F9                MOV     R1,A
+000C31 EE                MOV     A,R6
+000C32 3A                ADDC    A,R2
+000C33 FA                MOV     R2,A
+000C34 1203B6            LCALL   ?C?CLDPTR
+000C37 FB                MOV     R3,A
+000C38 B4FA07            CJNE    A,#0FAH,?C0114?KB_PROCESS
+  446: 			{
+  447: 				kb_set_multikey(0x018a);//mail
+000C3B 7F8A              MOV     R7,#08AH
+000C3D 0E                INC     R6
+000C3E 91B2              ACALL   _kb_set_multikey
+  448: 			}
+000C40 803C              SJMP    ?C0103?KB_PROCESS
+000C42         ?C0114?KB_PROCESS:
+  449: 		/*	else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_CALCULATOR) //calculator
+  450: 			{
+  451: 				kb_set_multikey(0x0192);
+  452: 			}
+  453: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_FAVORITES) 
+  454: 			{
+  455: 				kb_set_multikey(0x022a);//www Favorites
+  456: 			}
+  457: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_FORWARD)  
+  458: 			{
+  459: 				kb_set_multikey(0x0225);
+  460: 			}
+  461: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_STOP)  //www Stop
+  462: 			{
+  463: 				kb_set_multikey(0x0226);
+  464: 			}
+  465: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_BACK)  
+  466: 			{
+  467: 				kb_set_multikey(0x0224);
+  468: 			}
+  469: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_REFRESH) //www refresh
+  470: 			{
+  471: 				kb_set_multikey(0x0227);
+  472: 			}	*/
+  473: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_SEARCH)  //www search
+000C42 EB                MOV     A,R3
+000C43 B4D508            CJNE    A,#0D5H,?C0116?KB_PROCESS
+  474: 			{
+  475: 				kb_set_multikey(0x0221);
+000C46 7F21              MOV     R7,#021H
+000C48 7E02              MOV     R6,#02H
+000C4A 91B2              ACALL   _kb_set_multikey
+  476: 			}
+000C4C 8030              SJMP    ?C0103?KB_PROCESS
+000C4E         ?C0116?KB_PROCESS:
+  477: 		/*	else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_HOME)
+  478: 			{
+  479: 				kb_set_multikey(0x0223);
+  480: 			} 	*/
+  481: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_LIGHT_DOWN)
+000C4E 904E65            MOV     DPTR,#pEvt
+000C51 E0                MOVX    A,@DPTR
+000C52 FB                MOV     R3,A
+000C53 A3                INC     DPTR
+000C54 E0                MOVX    A,@DPTR
+000C55 FA                MOV     R2,A
+000C56 A3                INC     DPTR
+000C57 E0                MOVX    A,@DPTR
+000C58 2401              ADD     A,#01H
+000C5A F9                MOV     R1,A
+000C5B E4                CLR     A
+000C5C 3A                ADDC    A,R2
+000C5D FA                MOV     R2,A
+000C5E A3                INC     DPTR
+000C5F E0                MOVX    A,@DPTR
+000C60 7E00              MOV     R6,#00H
+000C62 29                ADD     A,R1
+000C63 F9                MOV     R1,A
+000C64 EE                MOV     A,R6
+000C65 3A                ADDC    A,R2
+000C66 FA                MOV     R2,A
+000C67 1203B6            LCALL   ?C?CLDPTR
+000C6A FB                MOV     R3,A
+000C6B B4D706            CJNE    A,#0D7H,?C0118?KB_PROCESS
+  482: 			{
+  483: 				kb_set_multikey(0x0070);
+000C6E 7F70              MOV     R7,#070H
+000C70 91B2              ACALL   _kb_set_multikey
+  484: 			}
+000C72 800A              SJMP    ?C0103?KB_PROCESS
+000C74         ?C0118?KB_PROCESS:
+  485: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_LIGHT_UP)
+000C74 EB                MOV     A,R3
+000C75 B4D806            CJNE    A,#0D8H,?C0103?KB_PROCESS
+  486: 			{
+  487: 				kb_set_multikey(0x006f);
+000C78 7F6F              MOV     R7,#06FH
+000C7A 7E00              MOV     R6,#00H
+000C7C 91B2              ACALL   _kb_set_multikey
+  488: 			}
+000C7E         ?C0103?KB_PROCESS:
+  489: 			
+  490: 			if(mult_key_status == KEY_WAIT_RELEASE)
+000C7E 904DE4            MOV     DPTR,#mult_key_status
+000C81 E0                MOVX    A,@DPTR
+000C82 B40224            CJNE    A,#02H,?C0099?KB_PROCESS
+  491: 			{
+  492: 				mult_key_value = pEvt->ksPool[i];
+000C85 904E65            MOV     DPTR,#pEvt
+000C88 E0                MOVX    A,@DPTR
+000C89 FB                MOV     R3,A
+000C8A A3                INC     DPTR
+000C8B E0                MOVX    A,@DPTR
+000C8C FA                MOV     R2,A
+000C8D A3                INC     DPTR
+000C8E E0                MOVX    A,@DPTR
+000C8F 2401              ADD     A,#01H
+000C91 F9                MOV     R1,A
+000C92 E4                CLR     A
+000C93 3A                ADDC    A,R2
+000C94 FA                MOV     R2,A
+000C95 A3                INC     DPTR
+000C96 E0                MOVX    A,@DPTR
+000C97 7E00              MOV     R6,#00H
+000C99 29                ADD     A,R1
+000C9A F9                MOV     R1,A
+000C9B EE                MOV     A,R6
+000C9C 3A                ADDC    A,R2
+000C9D FA                MOV     R2,A
+000C9E 1203B6            LCALL   ?C?CLDPTR
+000CA1 904DE3            MOV     DPTR,#mult_key_value
+000CA4 F0                MOVX    @DPTR,A
+  493: 				pEvt->ksPool[i] = 0;
+000CA5 E4                CLR     A
+000CA6 1203FC            LCALL   ?C?CSTPTR
+  494: 			}
+  495: 		}
+  496: 	}
+000CA9         ?C0099?KB_PROCESS:
+000CA9 904E68            MOV     DPTR,#i
+000CAC E0                MOVX    A,@DPTR
+000CAD 04                INC     A
+000CAE F0                MOVX    @DPTR,A
+000CAF 6165              AJMP    ?C0097?KB_PROCESS
+  497: }
+000CB1         ?C0122?KB_PROCESS:
+000CB1 22                RET     
+----- FUNCTION _kb_multikey_setup (END) -------
+
+
+----- FUNCTION _kb_set_multikey (BEGIN) -----
+ FILE: 'kb_process.c'
+   91: void kb_set_multikey(word multikey_value)
+   92: {
+;---- Variable 'multikey_value' assigned to Register 'R4/R5' ----
+000CB2 AD07              MOV     R5,AR7
+000CB4 AC06              MOV     R4,AR6
+   93: 	if(mult_key_status != KEY_WAIT_RELEASE)
+   94: 	{
+000CB6 904DE4            MOV     DPTR,#mult_key_status
+000CB9 E0                MOVX    A,@DPTR
+000CBA 6402              XRL     A,#02H
+000CBC 600E              JZ      ?C0025?KB_PROCESS
+   95: 		mult_key_status = KEY_PRESS;
+   96: 		multikey[0] = HID_REPORTID_2;
+000CBE 7401              MOV     A,#01H
+000CC0 F0                MOVX    @DPTR,A
+   97: 		multikey[1] = (multikey_value&0xff);
+000CC1 904DE5            MOV     DPTR,#multikey
+000CC4 04                INC     A
+000CC5 F0                MOVX    @DPTR,A
+   98: 		multikey[2] = ((multikey_value>>8)&0xff);
+000CC6 EF                MOV     A,R7
+000CC7 A3                INC     DPTR
+000CC8 F0                MOVX    @DPTR,A
+   99: 	}
+000CC9 EE                MOV     A,R6
+000CCA A3                INC     DPTR
+000CCB F0                MOVX    @DPTR,A
+  100: }
+  101: 
+000CCC         ?C0025?KB_PROCESS:
+000CCC 22                RET     
+----- FUNCTION _kb_set_multikey (END) -------
+
+
+----- FUNCTION _xmemclear (BEGIN) -----
+000CCD 904E7E            MOV     DPTR,#dest
+000CD0 EB                MOV     A,R3
+000CD1 F0                MOVX    @DPTR,A
+000CD2 A3                INC     DPTR
+000CD3 EA                MOV     A,R2
+000CD4 F0                MOVX    @DPTR,A
+000CD5 A3                INC     DPTR
+000CD6 E9                MOV     A,R1
+000CD7 F0                MOVX    @DPTR,A
+;---- Variable 'len' assigned to Register 'R4/R5' ----
+000CD8         ?C0008?UTILITIES:
+000CD8 ED                MOV     A,R5
+000CD9 1D                DEC     R5
+000CDA AE04              MOV     R6,AR4
+000CDC 7001              JNZ     ?C0026?UTILITIES
+000CDE 1C                DEC     R4
+000CDF         ?C0026?UTILITIES:
+000CDF 4E                ORL     A,R6
+000CE0 6016              JZ      ?C0010?UTILITIES
+000CE2 904E7E            MOV     DPTR,#dest
+000CE5 E0                MOVX    A,@DPTR
+000CE6 FB                MOV     R3,A
+000CE7 A3                INC     DPTR
+000CE8 E4                CLR     A
+000CE9 75F001            MOV     B,#01H
+000CEC 120424            LCALL   ?C?ILDIX
+000CEF A9F0              MOV     R1,B
+000CF1 FA                MOV     R2,A
+000CF2 E4                CLR     A
+000CF3 1203FC            LCALL   ?C?CSTPTR
+000CF6 80E0              SJMP    ?C0008?UTILITIES
+000CF8         ?C0010?UTILITIES:
+000CF8 22                RET     
+----- FUNCTION _xmemclear (END) -------
+
+
+----- FUNCTION System_clear_mem (BEGIN) -----
+ FILE: 'sys.c'
+   11: static void System_clear_mem()
+   12: {
+   13: 	xmemclear((byte *)&g_variable,sizeof(G_VARIABLE_MAP));
+   14: 	xmemclear(ksSelMapOld,KB_KSCAN_COL_NUM);
+000CF9 7B01              MOV     R3,#01H
+000CFB 7A4C              MOV     R2,#HIGH g_variable
+000CFD 79BF              MOV     R1,#LOW g_variable
+000CFF 7D43              MOV     R5,#043H
+000D01 7C00              MOV     R4,#00H
+000D03 91CD              ACALL   _xmemclear
+   15: 	xmemclear(ksSelMapCheck,KB_KSCAN_COL_NUM);
+000D05 7B01              MOV     R3,#01H
+000D07 7A4D              MOV     R2,#HIGH ksSelMapOld
+000D09 7993              MOV     R1,#LOW ksSelMapOld
+000D0B 7D14              MOV     R5,#014H
+000D0D 7C00              MOV     R4,#00H
+000D0F 91CD              ACALL   _xmemclear
+   16: 	xmemclear(ksSelMapCurr,KB_KSCAN_COL_NUM);
+000D11 7B01              MOV     R3,#01H
+000D13 7A4D              MOV     R2,#HIGH ksSelMapCheck
+000D15 79A8              MOV     R1,#LOW ksSelMapCheck
+000D17 7D14              MOV     R5,#014H
+000D19 7C00              MOV     R4,#00H
+000D1B 91CD              ACALL   _xmemclear
+   17: 	xmemclear(hidBuff,9);
+000D1D 7B01              MOV     R3,#01H
+000D1F 7A4D              MOV     R2,#HIGH ksSelMapCurr
+000D21 79BC              MOV     R1,#LOW ksSelMapCurr
+000D23 7D14              MOV     R5,#014H
+000D25 7C00              MOV     R4,#00H
+000D27 91CD              ACALL   _xmemclear
+   18: 	xmemclear(multikey,9);
+000D29 7B01              MOV     R3,#01H
+000D2B 7A48              MOV     R2,#HIGH hidBuff
+000D2D 7900              MOV     R1,#LOW hidBuff
+000D2F 7D09              MOV     R5,#09H
+000D31 7C00              MOV     R4,#00H
+000D33 91CD              ACALL   _xmemclear
+   19:  
+000D35 7B01              MOV     R3,#01H
+000D37 7A4D              MOV     R2,#HIGH multikey
+000D39 79E5              MOV     R1,#LOW multikey
+000D3B 7D09              MOV     R5,#09H
+000D3D 7C00              MOV     R4,#00H
+000D3F 91CD              ACALL   _xmemclear
+   20: 	delayChgInvTimer = 0;
+000D41 E4                CLR     A
+000D42 904DDE            MOV     DPTR,#delayChgInvTimer
+000D45 F0                MOVX    @DPTR,A
+   21: 	action_timeout = 0;
+000D46 904DE2            MOV     DPTR,#action_timeout
+000D49 F0                MOVX    @DPTR,A
+   22: 
+   23: 
+   24: 	power_on_flag = 0;
+000D4A 904DE1            MOV     DPTR,#power_on_flag
+000D4D F0                MOVX    @DPTR,A
+   25: 	repeat_send_24g = 0;
+000D4E 904DD6            MOV     DPTR,#repeat_send_24g
+000D51 F0                MOVX    @DPTR,A
+   26: 	get_24g_led_send = 0;
+000D52 904DD0            MOV     DPTR,#get_24g_led_send
+000D55 F0                MOVX    @DPTR,A
+   27: 	press_long_time_flag = 0;
+000D56 904DDC            MOV     DPTR,#press_long_time_flag
+000D59 F0                MOVX    @DPTR,A
+   28: 	mult_key_status = 0;
+000D5A 904DE4            MOV     DPTR,#mult_key_status
+000D5D F0                MOVX    @DPTR,A
+   29: 	long_press_flag = 0;
+000D5E 904DD5            MOV     DPTR,#long_press_flag
+000D61 F0                MOVX    @DPTR,A
+   30: 	standard_key_release_flag = 0;
+000D62 904DD8            MOV     DPTR,#standard_key_release_flag
+000D65 F0                MOVX    @DPTR,A
+   31: 	fn_flag = 0;
+000D66 904DDB            MOV     DPTR,#fn_flag
+000D69 F0                MOVX    @DPTR,A
+   32: 	fn_flag_last = 0;
+000D6A 904DE0            MOV     DPTR,#fn_flag_last
+000D6D F0                MOVX    @DPTR,A
+   33: 	fn_tx_flag = 0;
+000D6E 904DD3            MOV     DPTR,#fn_tx_flag
+000D71 F0                MOVX    @DPTR,A
+   34: 	fn_lock_flag = 0;
+000D72 904DDF            MOV     DPTR,#fn_lock_flag
+000D75 F0                MOVX    @DPTR,A
+   35: 
+   36: 	mult_key_value = 0;
+000D76 904DE3            MOV     DPTR,#mult_key_value
+000D79 F0                MOVX    @DPTR,A
+   37: 	m_caps_num_lock_last = 0; 
+000D7A 904DD9            MOV     DPTR,#m_caps_num_lock_last
+000D7D F0                MOVX    @DPTR,A
+   38: 	m_reconnect_continue = 0;
+000D7E 904D38            MOV     DPTR,#m_reconnect_continue
+000D81 F0                MOVX    @DPTR,A
+   39: }
+000D82 22                RET     
+----- FUNCTION System_clear_mem (END) -------
+
+
+----- FUNCTION _IPC_TxHidData (BEGIN) -----
+ FILE: 'kb_process.c'
+   59: void IPC_TxHidData(byte* dt, byte len)
+   60: {
+000D83 904E61            MOV     DPTR,#dt
+000D86 EB                MOV     A,R3
+000D87 F0                MOVX    @DPTR,A
+000D88 A3                INC     DPTR
+000D89 EA                MOV     A,R2
+000D8A F0                MOVX    @DPTR,A
+000D8B A3                INC     DPTR
+000D8C E9                MOV     A,R1
+000D8D F0                MOVX    @DPTR,A
+000D8E A3                INC     DPTR
+000D8F ED                MOV     A,R5
+000D90 F0                MOVX    @DPTR,A
+   61: 	if(!YC_check_need_reconnected()) 
+   62: 		return;
+000D91 F178              ACALL   YC_check_need_reconnected
+000D93 EF                MOV     A,R7
+000D94 6076              JZ      ?C0014?KB_PROCESS
+000D96         ?C0013?KB_PROCESS:
+   63: 	if (g_variable.release_data)
+000D96 904CEB            MOV     DPTR,#g_variable+02CH
+000D99 E0                MOVX    A,@DPTR
+000D9A 7070              JNZ     ?C0014?KB_PROCESS
+000D9C         ?C0015?KB_PROCESS:
+   64: 		return;
+   65: 
+   66: 	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+000D9C 904CC5            MOV     DPTR,#g_variable+06H
+000D9F E0                MOVX    A,@DPTR
+000DA0 6403              XRL     A,#03H
+000DA2 7068              JNZ     ?C0014?KB_PROCESS
+   67: 	{
+   68: 		if (dt[0] == HID_REPORTID_1)
+000DA4 904E61            MOV     DPTR,#dt
+000DA7 E0                MOVX    A,@DPTR
+000DA8 FB                MOV     R3,A
+000DA9 A3                INC     DPTR
+000DAA E0                MOVX    A,@DPTR
+000DAB FA                MOV     R2,A
+000DAC A3                INC     DPTR
+000DAD E0                MOVX    A,@DPTR
+000DAE F9                MOV     R1,A
+000DAF 1203B6            LCALL   ?C?CLDPTR
+000DB2 FF                MOV     R7,A
+000DB3 6401              XRL     A,#01H
+000DB5 702E              JNZ     ?C0017?KB_PROCESS
+   69: 		{
+   70: 			if (dt[1] == 0 && dt[3] == 00 && dt[4] == 00 && dt[5] == 0)
+000DB7 900001            MOV     DPTR,#01H
+000DBA 1203CF            LCALL   ?C?CLDOPTR
+000DBD 701E              JNZ     ?C0018?KB_PROCESS
+000DBF 900003            MOV     DPTR,#03H
+000DC2 1203CF            LCALL   ?C?CLDOPTR
+000DC5 7016              JNZ     ?C0018?KB_PROCESS
+000DC7 900004            MOV     DPTR,#04H
+000DCA 1203CF            LCALL   ?C?CLDOPTR
+000DCD 700E              JNZ     ?C0018?KB_PROCESS
+000DCF 900005            MOV     DPTR,#05H
+000DD2 1203CF            LCALL   ?C?CLDOPTR
+000DD5 7006              JNZ     ?C0018?KB_PROCESS
+   71: 				repeat_send_24g = 0;
+000DD7 904DD6            MOV     DPTR,#repeat_send_24g
+000DDA F0                MOVX    @DPTR,A
+000DDB 8028              SJMP    ?C0020?KB_PROCESS
+000DDD         ?C0018?KB_PROCESS:
+   72: 			else
+   73: 				repeat_send_24g = 1;			
+000DDD 904DD6            MOV     DPTR,#repeat_send_24g
+000DE0 7401              MOV     A,#01H
+000DE2 F0                MOVX    @DPTR,A
+   74: 		}
+000DE3 8020              SJMP    ?C0020?KB_PROCESS
+000DE5         ?C0017?KB_PROCESS:
+   75: 		else if (dt[0] == HID_REPORTID_2)
+000DE5 EF                MOV     A,R7
+000DE6 B4021C            CJNE    A,#02H,?C0020?KB_PROCESS
+   76: 		{
+   77: 			if (dt[1] == 00 && dt[2] == 00)
+000DE9 900001            MOV     DPTR,#01H
+000DEC 1203CF            LCALL   ?C?CLDOPTR
+000DEF 700E              JNZ     ?C0022?KB_PROCESS
+000DF1 900002            MOV     DPTR,#02H
+000DF4 1203CF            LCALL   ?C?CLDOPTR
+000DF7 7006              JNZ     ?C0022?KB_PROCESS
+   78: 			{
+   79: 				repeat_send_24g = 0;
+000DF9 904DD6            MOV     DPTR,#repeat_send_24g
+000DFC F0                MOVX    @DPTR,A
+   80: 			}
+000DFD 8006              SJMP    ?C0020?KB_PROCESS
+000DFF         ?C0022?KB_PROCESS:
+   81: 			else
+   82: 			{
+   83: 				repeat_send_24g = 1;
+000DFF 904DD6            MOV     DPTR,#repeat_send_24g
+000E02 7401              MOV     A,#01H
+000E04 F0                MOVX    @DPTR,A
+   84: 			}
+   85: 		}
+000E05         ?C0020?KB_PROCESS:
+   86: 		IPC_Tx24GData(dt,len);
+000E05 904E64            MOV     DPTR,#len
+000E08 E0                MOVX    A,@DPTR
+000E09 FD                MOV     R5,A
+000E0A F153              ACALL   _IPC_Tx24GData
+   87: 	}
+   88: }
+000E0C         ?C0014?KB_PROCESS:
+000E0C 22                RET     
+----- FUNCTION _IPC_TxHidData (END) -------
+
+
+----- FUNCTION _kb_send_combination_key (BEGIN) -----
+ FILE: 'kb_process.c'
+  103: void kb_send_combination_key(byte ctrl_value,byte key_value)
+  104: {
+000E0D 904E87            MOV     DPTR,#ctrl_value
+000E10 EF                MOV     A,R7
+000E11 F0                MOVX    @DPTR,A
+000E12 A3                INC     DPTR
+000E13 ED                MOV     A,R5
+000E14 F0                MOVX    @DPTR,A
+  105: 	xmemclear(hidBuff,9);
+  106: 	hidBuff[0] = HID_REPORTID_1;
+000E15 7B01              MOV     R3,#01H
+000E17 7A48              MOV     R2,#HIGH hidBuff
+000E19 7900              MOV     R1,#LOW hidBuff
+000E1B 7D09              MOV     R5,#09H
+000E1D 7C00              MOV     R4,#00H
+000E1F 91CD              ACALL   _xmemclear
+  107: 	hidBuff[1] |= ctrl_value;
+000E21 904800            MOV     DPTR,#hidBuff
+000E24 7401              MOV     A,#01H
+000E26 F0                MOVX    @DPTR,A
+  108: 	hidBuff[3] = key_value; 
+000E27 A3                INC     DPTR
+000E28 E0                MOVX    A,@DPTR
+000E29 FF                MOV     R7,A
+000E2A 904E87            MOV     DPTR,#ctrl_value
+000E2D E0                MOVX    A,@DPTR
+000E2E FE                MOV     R6,A
+000E2F EF                MOV     A,R7
+000E30 4E                ORL     A,R6
+000E31 904801            MOV     DPTR,#hidBuff+01H
+000E34 F0                MOVX    @DPTR,A
+  109: 	IPC_TxHidData(hidBuff, 9);
+000E35 904E88            MOV     DPTR,#key_value
+000E38 E0                MOVX    A,@DPTR
+000E39 904803            MOV     DPTR,#hidBuff+03H
+000E3C F0                MOVX    @DPTR,A
+  110: }
+000E3D 7B01              MOV     R3,#01H
+000E3F 7A48              MOV     R2,#HIGH hidBuff
+000E41 7900              MOV     R1,#LOW hidBuff
+000E43 7D09              MOV     R5,#09H
+000E45 A183              AJMP    _IPC_TxHidData
+----- FUNCTION _kb_send_combination_key (END) -------
+
+
+----- FUNCTION kb_need_keyscan (BEGIN) -----
+ FILE: 'kb_process.c'
+  171: void kb_need_keyscan()
+  172: {
+  173: 		if((g_variable.key_combination_step == CAMBINATION_KEY_FREE)
+  174: 		||(g_variable.key_combination_step == CAMBINATION_KEY_COMPLETE)
+000E47 904CF4            MOV     DPTR,#g_variable+035H
+000E4A E0                MOVX    A,@DPTR
+000E4B FF                MOV     R7,A
+000E4C 6008              JZ      ?C0036?KB_PROCESS
+000E4E 6403              XRL     A,#03H
+000E50 6004              JZ      ?C0036?KB_PROCESS
+000E52 EF                MOV     A,R7
+000E53 B40502            CJNE    A,#05H,?C0035?KB_PROCESS
+000E56         ?C0036?KB_PROCESS:
+  175: 		|| (g_variable.key_combination_step == CAMBINATION_KEY_RELEASE)
+  176: 		)
+  177: 			kb_motion();
+000E56 E120              AJMP    kb_motion
+000E58         ?C0035?KB_PROCESS:
+  178: 		else
+  179: 		{
+  180: 			if(g_variable.key_combination_step == CAMBINATION_KEY_PRESS)
+000E58 904CF4            MOV     DPTR,#g_variable+035H
+000E5B E0                MOVX    A,@DPTR
+000E5C B4010E            CJNE    A,#01H,?C0038?KB_PROCESS
+  181: 			{
+  182: 				kb_send_combination_key(g_variable.key_combination_ctrl,0);
+000E5F A3                INC     DPTR
+000E60 E0                MOVX    A,@DPTR
+000E61 FF                MOV     R7,A
+000E62 E4                CLR     A
+000E63 FD                MOV     R5,A
+000E64 D10D              ACALL   _kb_send_combination_key
+  183: 				g_variable.key_combination_step = CAMBINATION_KEY_HOLD;
+000E66 904CF4            MOV     DPTR,#g_variable+035H
+000E69 7402              MOV     A,#02H
+000E6B F0                MOVX    @DPTR,A
+  184: 			}
+000E6C 22                RET     
+000E6D         ?C0038?KB_PROCESS:
+  185: 			else if(g_variable.key_combination_step == CAMBINATION_KEY_HOLD)
+000E6D 904CF4            MOV     DPTR,#g_variable+035H
+000E70 E0                MOVX    A,@DPTR
+000E71 B4020B            CJNE    A,#02H,?C0040?KB_PROCESS
+  186: 			{	
+  187: 				g_variable.key_combination_step = CAMBINATION_KEY_COMPLETE;
+000E74 7403              MOV     A,#03H
+000E76 F0                MOVX    @DPTR,A
+  188: 				kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+000E77 A3                INC     DPTR
+000E78 E0                MOVX    A,@DPTR
+000E79 FF                MOV     R7,A
+000E7A A3                INC     DPTR
+000E7B E0                MOVX    A,@DPTR
+000E7C FD                MOV     R5,A
+000E7D 808E              SJMP    _kb_send_combination_key
+  189: 			}
+000E7F         ?C0040?KB_PROCESS:
+  190: 			else if(g_variable.key_combination_step == CAMBINATION_KEY_WAIT_RELEASE)
+000E7F 904CF4            MOV     DPTR,#g_variable+035H
+000E82 E0                MOVX    A,@DPTR
+000E83 B4041A            CJNE    A,#04H,?C0042?KB_PROCESS
+  191: 			{
+  192: 				g_variable.key_combination_keyvalue = 0;
+000E86 E4                CLR     A
+000E87 904CF6            MOV     DPTR,#g_variable+037H
+000E8A F0                MOVX    @DPTR,A
+  193: 				kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+000E8B 904CF5            MOV     DPTR,#g_variable+036H
+000E8E E0                MOVX    A,@DPTR
+000E8F FF                MOV     R7,A
+000E90 E4                CLR     A
+000E91 FD                MOV     R5,A
+000E92 D10D              ACALL   _kb_send_combination_key
+  194: 				g_variable.key_combination_ctrl = 0;
+000E94 E4                CLR     A
+000E95 904CF5            MOV     DPTR,#g_variable+036H
+000E98 F0                MOVX    @DPTR,A
+  195: 				g_variable.key_combination_step = CAMBINATION_KEY_RELEASE;
+000E99 904CF4            MOV     DPTR,#g_variable+035H
+000E9C 7405              MOV     A,#05H
+000E9E F0                MOVX    @DPTR,A
+  196: 			}
+000E9F 22                RET     
+000EA0         ?C0042?KB_PROCESS:
+  197: 			else if(g_variable.key_combination_step == CAMBINATION_KEY_NULL)
+000EA0 904CF4            MOV     DPTR,#g_variable+035H
+000EA3 E0                MOVX    A,@DPTR
+000EA4 B40615            CJNE    A,#06H,?C0045?KB_PROCESS
+  198: 			{
+  199: 				g_variable.key_combination_keyvalue = 0;
+000EA7 E4                CLR     A
+000EA8 904CF6            MOV     DPTR,#g_variable+037H
+000EAB F0                MOVX    @DPTR,A
+  200: 				g_variable.key_combination_ctrl = 0;
+000EAC 904CF5            MOV     DPTR,#g_variable+036H
+000EAF F0                MOVX    @DPTR,A
+  201: 				kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+000EB0 A3                INC     DPTR
+000EB1 E0                MOVX    A,@DPTR
+000EB2 FD                MOV     R5,A
+000EB3 E4                CLR     A
+000EB4 FF                MOV     R7,A
+000EB5 D10D              ACALL   _kb_send_combination_key
+  202: 				g_variable.key_combination_step = CAMBINATION_KEY_FREE;
+000EB7 E4                CLR     A
+000EB8 904CF4            MOV     DPTR,#g_variable+035H
+000EBB F0                MOVX    @DPTR,A
+  203: 			}
+  204: 		}
+  205: 
+  206: }
+000EBC         ?C0045?KB_PROCESS:
+000EBC 22                RET     
+----- FUNCTION kb_need_keyscan (END) -------
+
+
+----- FUNCTION kb_24g_get_led_status (BEGIN) -----
+ FILE: 'kb_process.c'
+  129: void kb_24g_get_led_status()		//get RF Ack for get numlock/capslock status
+  130: {
+  131: 	if((get_24g_led_send == 1) && (repeat_send_24g == 0))
+  132: 	{
+000EBD 904DD0            MOV     DPTR,#get_24g_led_send
+000EC0 E0                MOVX    A,@DPTR
+000EC1 6401              XRL     A,#01H
+000EC3 702F              JNZ     ?C0027?KB_PROCESS
+000EC5 904DD6            MOV     DPTR,#repeat_send_24g
+000EC8 E0                MOVX    A,@DPTR
+000EC9 7029              JNZ     ?C0027?KB_PROCESS
+  133: 		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+  134: 		{
+000ECB 904CC5            MOV     DPTR,#g_variable+06H
+000ECE E0                MOVX    A,@DPTR
+000ECF 6403              XRL     A,#03H
+000ED1 704C              JNZ     ?C0031?KB_PROCESS
+  135: 			xmemclear(hidBuff,9);
+  136: 			IPC_TxHidData(hidBuff, 9);
+000ED3 7B01              MOV     R3,#01H
+000ED5 7A48              MOV     R2,#HIGH hidBuff
+000ED7 7900              MOV     R1,#LOW hidBuff
+000ED9 7D09              MOV     R5,#09H
+000EDB FC                MOV     R4,A
+000EDC 91CD              ACALL   _xmemclear
+  137: 			get_24g_led_send = 2;
+000EDE 7B01              MOV     R3,#01H
+000EE0 7A48              MOV     R2,#HIGH hidBuff
+000EE2 7900              MOV     R1,#LOW hidBuff
+000EE4 7D09              MOV     R5,#09H
+000EE6 B183              ACALL   _IPC_TxHidData
+  138: 			mult_key_status = 0;
+000EE8 904DD0            MOV     DPTR,#get_24g_led_send
+000EEB 7402              MOV     A,#02H
+000EED F0                MOVX    @DPTR,A
+  139: 		}	
+000EEE E4                CLR     A
+000EEF 904DE4            MOV     DPTR,#mult_key_status
+000EF2 F0                MOVX    @DPTR,A
+  140: 	}
+  141: 	else if ((get_24g_led_send == 2) && (repeat_send_24g == 0))
+000EF3 22                RET     
+000EF4         ?C0027?KB_PROCESS:
+  142: 	{
+000EF4 904DD0            MOV     DPTR,#get_24g_led_send
+000EF7 E0                MOVX    A,@DPTR
+000EF8 B40224            CJNE    A,#02H,?C0031?KB_PROCESS
+000EFB 904DD6            MOV     DPTR,#repeat_send_24g
+000EFE E0                MOVX    A,@DPTR
+000EFF 701E              JNZ     ?C0031?KB_PROCESS
+  143: 		get_24g_led_send = 0;
+  144: 		xmemclear(hidBuff,9);
+000F01 904DD0            MOV     DPTR,#get_24g_led_send
+000F04 F0                MOVX    @DPTR,A
+  145: 		IPC_TxHidData(hidBuff, 9);
+000F05 7B01              MOV     R3,#01H
+000F07 7A48              MOV     R2,#HIGH hidBuff
+000F09 7900              MOV     R1,#LOW hidBuff
+000F0B 7D09              MOV     R5,#09H
+000F0D FC                MOV     R4,A
+000F0E 91CD              ACALL   _xmemclear
+  146: 		mult_key_status = 0;
+000F10 7B01              MOV     R3,#01H
+000F12 7A48              MOV     R2,#HIGH hidBuff
+000F14 7900              MOV     R1,#LOW hidBuff
+000F16 7D09              MOV     R5,#09H
+000F18 B183              ACALL   _IPC_TxHidData
+  147: 	}
+000F1A E4                CLR     A
+000F1B 904DE4            MOV     DPTR,#mult_key_status
+000F1E F0                MOVX    @DPTR,A
+  148: }
+  149: 
+000F1F         ?C0031?KB_PROCESS:
+000F1F 22                RET     
+----- FUNCTION kb_24g_get_led_status (END) -------
+
+
+----- FUNCTION kb_motion (BEGIN) -----
+ FILE: 'kb_process.c'
+  152: static void kb_motion()
+  153: {
+  154: 	tKSEVENT *pEvt = NULL;
+  155: 	
+000F20 904E75            MOV     DPTR,#pEvt
+000F23 E4                CLR     A
+000F24 F0                MOVX    @DPTR,A
+000F25 A3                INC     DPTR
+000F26 F0                MOVX    @DPTR,A
+000F27 A3                INC     DPTR
+000F28 F0                MOVX    @DPTR,A
+  156: 	if (!IPC_IsTxBuffEmpty())
+000F29 F1AD              ACALL   IPC_IsTxBuffEmpty
+000F2B 5025              JNC     ?C0033?KB_PROCESS
+000F2D         ?C0032?KB_PROCESS:
+  157: 		return;
+  158: 	pEvt = KS_GetCurrentEvt();
+000F2D 1218CF            LCALL   KS_GetCurrentEvt
+000F30 904E75            MOV     DPTR,#pEvt
+000F33 EB                MOV     A,R3
+000F34 F0                MOVX    @DPTR,A
+000F35 A3                INC     DPTR
+000F36 EA                MOV     A,R2
+000F37 F0                MOVX    @DPTR,A
+000F38 A3                INC     DPTR
+000F39 E9                MOV     A,R1
+000F3A F0                MOVX    @DPTR,A
+  159: 
+  160: 	if (pEvt == NULL)
+000F3B 4A                ORL     A,R2
+000F3C 7007              JNZ     ?C0034?KB_PROCESS
+  161: 	{
+  162: 		m_power_on_flag = 1;
+000F3E 904CB6            MOV     DPTR,#m_power_on_flag
+000F41 04                INC     A
+000F42 F0                MOVX    @DPTR,A
+  163: 		kb_24g_get_led_status();
+000F43 C1BD              AJMP    kb_24g_get_led_status
+  164: 		return;
+  165: 	}
+000F45         ?C0034?KB_PROCESS:
+  166: 	kb_motion_keyscan(pEvt);
+000F45 904E75            MOV     DPTR,#pEvt
+000F48 E0                MOVX    A,@DPTR
+000F49 FB                MOV     R3,A
+000F4A A3                INC     DPTR
+000F4B E0                MOVX    A,@DPTR
+000F4C FA                MOV     R2,A
+000F4D A3                INC     DPTR
+000F4E E0                MOVX    A,@DPTR
+000F4F F9                MOV     R1,A
+000F50 311D              ACALL   _kb_motion_keyscan
+  167: }
+000F52         ?C0033?KB_PROCESS:
+000F52 22                RET     
+----- FUNCTION kb_motion (END) -------
+
+
+----- FUNCTION _IPC_Tx24GData (BEGIN) -----
+;---- Variable 'len' assigned to Register 'R5' ----
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+000F53 900BE7            MOV     DPTR,#ipcSendBuff
+000F56 7406              MOV     A,#06H
+000F58 F0                MOVX    @DPTR,A
+000F59 01B5              AJMP    _IPC_TxData
+----- FUNCTION _IPC_Tx24GData (END) -------
+
+
+----- FUNCTION System_Software_init (BEGIN) -----
+ FILE: 'sys.c'
+   48: void System_Software_init()
+   49: {
+   50: 	System_clear_mem();
+   51: 	YC_adc_init();
+000F5B 91F9              ACALL   System_clear_mem
+   52: 	g_variable.release_data =1;
+000F5D 122065            LCALL   YC_adc_init
+   53: 	g_variable.powerOn_timer = KB_POWERON_LED_ON_TIMER;
+000F60 904CEB            MOV     DPTR,#g_variable+02CH
+000F63 7401              MOV     A,#01H
+000F65 F0                MOVX    @DPTR,A
+   54: 	g_variable.recon_count = 0;
+000F66 904CE5            MOV     DPTR,#g_variable+026H
+000F69 741E              MOV     A,#01EH
+000F6B F0                MOVX    @DPTR,A
+   55: 	g_variable.test_buff = 0xff;
+000F6C E4                CLR     A
+000F6D 904CF0            MOV     DPTR,#g_variable+031H
+000F70 F0                MOVX    @DPTR,A
+   56: }
+000F71 904D01            MOV     DPTR,#g_variable+042H
+000F74 74FF              MOV     A,#0FFH
+000F76 F0                MOVX    @DPTR,A
+   57: 
+000F77 22                RET     
+----- FUNCTION System_Software_init (END) -------
 
 
 ----- FUNCTION YC_check_need_reconnected (BEGIN) -----
@@ -352,1806 +2020,849 @@
    15: 	byte return_val = 0;
    16: 
 ;---- Variable 'return_val' assigned to Register 'R7' ----
-0007FE E4                CLR     A
-0007FF FF                MOV     R7,A
+000F78 E4                CLR     A
+000F79 FF                MOV     R7,A
    17: 	if(g_variable.pairing_g24_timeout)
-000800 904CEE            MOV     DPTR,#g_variable+02FH
-000803 E0                MOVX    A,@DPTR
-000804 6001              JZ      ?C0003?BLUETOOTH
+000F7A 904CEE            MOV     DPTR,#g_variable+02FH
+000F7D E0                MOVX    A,@DPTR
+000F7E 6001              JZ      ?C0003?BLUETOOTH
    18: 		return return_val;
-000806 22                RET     
-000807         ?C0003?BLUETOOTH:
+000F80 22                RET     
+000F81         ?C0003?BLUETOOTH:
    19: 
    20: 	if (g_variable.g24_currentState != CHANGE_TO_24G_CONNECTED)
-000807 904CC5            MOV     DPTR,#g_variable+06H
-00080A E0                MOVX    A,@DPTR
-00080B 6403              XRL     A,#03H
-00080D 601C              JZ      ?C0005?BLUETOOTH
+000F81 904CC5            MOV     DPTR,#g_variable+06H
+000F84 E0                MOVX    A,@DPTR
+000F85 6403              XRL     A,#03H
+000F87 601C              JZ      ?C0005?BLUETOOTH
    21: 	{
    22: 		if(g_variable.recon_delay == 0)
-00080F 904CEF            MOV     DPTR,#g_variable+030H
-000812 E0                MOVX    A,@DPTR
-000813 701D              JNZ     ?C0008?BLUETOOTH
+000F89 904CEF            MOV     DPTR,#g_variable+030H
+000F8C E0                MOVX    A,@DPTR
+000F8D 701D              JNZ     ?C0008?BLUETOOTH
    23: 		{
    24: 			g_variable.recon_delay = 10;
-000815 740A              MOV     A,#0AH
-000817 F0                MOVX    @DPTR,A
+000F8F 740A              MOV     A,#0AH
+000F91 F0                MOVX    @DPTR,A
    25: 			if ((g_variable.recon_count == 0)
-000818 A3                INC     DPTR
-000819 E0                MOVX    A,@DPTR
-00081A 7016              JNZ     ?C0008?BLUETOOTH
-00081C 904DE1            MOV     DPTR,#power_on_flag
-00081F E0                MOVX    A,@DPTR
-000820 B4020F            CJNE    A,#02H,?C0008?BLUETOOTH
+000F92 A3                INC     DPTR
+000F93 E0                MOVX    A,@DPTR
+000F94 7016              JNZ     ?C0008?BLUETOOTH
+000F96 904DE1            MOV     DPTR,#power_on_flag
+000F99 E0                MOVX    A,@DPTR
+000F9A B4020F            CJNE    A,#02H,?C0008?BLUETOOTH
    26: 			&& (power_on_flag == 2))
    27: 			{				
    28: 				YC_key_action_handle(KEY_OPEN_24G);
-000823 7F09              MOV     R7,#09H
-000825 1133              ACALL   _YC_key_action_handle
+000F9D 7F09              MOV     R7,#09H
+000F9F F1EB              ACALL   _YC_key_action_handle
    29: 				return_val = 1;
-000827 7F01              MOV     R7,#01H
+000FA1 7F01              MOV     R7,#01H
    30: 			}
    31: 		}
    32: 	}
-000829 8007              SJMP    ?C0008?BLUETOOTH
-00082B         ?C0005?BLUETOOTH:
+000FA3 8007              SJMP    ?C0008?BLUETOOTH
+000FA5         ?C0005?BLUETOOTH:
    33: 	else
    34: 	{
    35: 		g_variable.release_data = 0;
-00082B E4                CLR     A
-00082C 904CEB            MOV     DPTR,#g_variable+02CH
-00082F F0                MOVX    @DPTR,A
+000FA5 E4                CLR     A
+000FA6 904CEB            MOV     DPTR,#g_variable+02CH
+000FA9 F0                MOVX    @DPTR,A
    36: 		return_val = 1;
-000830 7F01              MOV     R7,#01H
+000FAA 7F01              MOV     R7,#01H
    37: 	}
-000832         ?C0008?BLUETOOTH:
+000FAC         ?C0008?BLUETOOTH:
    38: 	return return_val;
    39: }
-000832 22                RET     
+000FAC 22                RET     
 ----- FUNCTION YC_check_need_reconnected (END) -------
 
 
------ FUNCTION _YC_key_action_handle (BEGIN) -----
- FILE: 'kb_process.c'
-    3: void YC_key_action_handle(byte key_num)
-    4: {
-000833 904E8D            MOV     DPTR,#key_num
-000836 EF                MOV     A,R7
-000837 F0                MOVX    @DPTR,A
-    5: 	switch (key_num)
-    6: 	{
-000838 24F7              ADD     A,#0F7H
-00083A 6009              JZ      ?C0003?KB_PROCESS
-00083C 14                DEC     A
-00083D 6061              JZ      ?C0007?KB_PROCESS
-00083F 2402              ADD     A,#02H
-000841 6002              JZ      $ + 4H
-000843 01D9              AJMP    ?C0011?KB_PROCESS
-    7: 	case KEY_START_24G:
-    8: 	case KEY_OPEN_24G:
-    9: 		g_variable.recon_count = 0;
-000845         ?C0003?KB_PROCESS:
-   10: 		if (YC_disconnect_all_link())
-000845 E4                CLR     A
-000846 904CF0            MOV     DPTR,#g_variable+031H
-000849 F0                MOVX    @DPTR,A
-   11: 		{
-00084A 11DF              ACALL   YC_disconnect_all_link
-00084C EF                MOV     A,R7
-00084D 6009              JZ      ?C0004?KB_PROCESS
-   12: 			g_variable.key_action = key_num;
+----- FUNCTION IPC_IsTxBuffEmpty (BEGIN) -----
+000FAD 904B9C            MOV     DPTR,#ipcTxWritePtr
+000FB0 E0                MOVX    A,@DPTR
+000FB1 FE                MOV     R6,A
+000FB2 A3                INC     DPTR
+000FB3 E0                MOVX    A,@DPTR
+000FB4 FF                MOV     R7,A
+000FB5 904B9A            MOV     DPTR,#ipcTxReadPtr
+000FB8 E0                MOVX    A,@DPTR
+000FB9 B50607            CJNE    A,AR6,?C0021?IPC
+000FBC A3                INC     DPTR
+000FBD E0                MOVX    A,@DPTR
+000FBE B50702            CJNE    A,AR7,?C0021?IPC
+000FC1 D3                SETB    C
+000FC2 22                RET     
+000FC3         ?C0021?IPC:
+000FC3 C3                CLR     C
+000FC4 22                RET     
+----- FUNCTION IPC_IsTxBuffEmpty (END) -------
+
+
+----- FUNCTION YC_clear_reconnect_flag (BEGIN) -----
+ FILE: 'bluetooth.c'
+   42: void YC_clear_reconnect_flag()  
+   43: {
+   44: 	g_variable.recon_count = 0;
+   45: }
+000FC5 E4                CLR     A
+000FC6 904CF0            MOV     DPTR,#g_variable+031H
+000FC9 F0                MOVX    @DPTR,A
+   46: 
+000FCA 22                RET     
+----- FUNCTION YC_clear_reconnect_flag (END) -------
+
+
+----- FUNCTION YC_disconnect_all_link (BEGIN) -----
+ FILE: 'bluetooth.c'
+   48: byte YC_disconnect_all_link()
+   49: {
+   50: 	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED 
+   51: 		||g_variable.g24_currentState == CHANGE_TO_24G_CONNECTING)
+000FCB 904CC5            MOV     DPTR,#g_variable+06H
+000FCE E0                MOVX    A,@DPTR
+000FCF FF                MOV     R7,A
+000FD0 6403              XRL     A,#03H
+000FD2 6004              JZ      ?C0011?BLUETOOTH
+000FD4 EF                MOV     A,R7
+000FD5 B40208            CJNE    A,#02H,?C0010?BLUETOOTH
+000FD8         ?C0011?BLUETOOTH:
+   52: 	{
+   53: 		IPC_TxControlCmd(IPC_CMD_STOP_24G);
+000FD8 7F22              MOV     R7,#022H
+000FDA 1207F8            LCALL   _IPC_TxControlCmd
+   54: 		return 1;
+000FDD 7F01              MOV     R7,#01H
+000FDF 22                RET     
+   55: 	}
+000FE0         ?C0010?BLUETOOTH:
+   56: 	return 0;
+000FE0 7F00              MOV     R7,#00H
+   57: }
+000FE2 22                RET     
+----- FUNCTION YC_disconnect_all_link (END) -------
+
+
+----- FUNCTION YC_start_reconnect (BEGIN) -----
+ FILE: 'bluetooth.c'
+   60: void YC_start_reconnect()
+   61: {
+   62: 	power_on_flag = 2;
+   63: 	YC_key_action_handle(KEY_START_24G);
+000FE3 904DE1            MOV     DPTR,#power_on_flag
+000FE6 7402              MOV     A,#02H
+000FE8 F0                MOVX    @DPTR,A
+   64: }
+000FE9 7F08              MOV     R7,#08H
+;----                  JMP     _YC_key_action_handle
+----- FUNCTION YC_start_reconnect (END) -------
+
+
+----- FUNCTION _YC_key_action_handle (BEGIN) -----
+ FILE: 'kb_process.c'
+    3: void YC_key_action_handle(byte key_num)
+    4: {
+000FEB 904E8D            MOV     DPTR,#key_num
+000FEE EF                MOV     A,R7
+000FEF F0                MOVX    @DPTR,A
+    5: 	switch (key_num)
+    6: 	{
+000FF0 24F7              ADD     A,#0F7H
+000FF2 600A              JZ      ?C0003?KB_PROCESS
+000FF4 14                DEC     A
+000FF5 6064              JZ      ?C0007?KB_PROCESS
+000FF7 2402              ADD     A,#02H
+000FF9 6003              JZ      $ + 5H
+000FFB 021096            LJMP    ?C0011?KB_PROCESS
+    7: 	case KEY_START_24G:
+    8: 	case KEY_OPEN_24G:
+    9: 		g_variable.recon_count = 0;
+000FFE         ?C0003?KB_PROCESS:
+   10: 		if (YC_disconnect_all_link())
+000FFE E4                CLR     A
+000FFF 904CF0            MOV     DPTR,#g_variable+031H
+001002 F0                MOVX    @DPTR,A
+   11: 		{
+001003 120FCB            LCALL   YC_disconnect_all_link
+001006 EF                MOV     A,R7
+001007 6009              JZ      ?C0004?KB_PROCESS
+   12: 			g_variable.key_action = key_num;
    13: 		}
-00084F 904E8D            MOV     DPTR,#key_num
-000852 E0                MOVX    A,@DPTR
-000853 904CED            MOV     DPTR,#g_variable+02EH
-000856 F0                MOVX    @DPTR,A
+001009 904E8D            MOV     DPTR,#key_num
+00100C E0                MOVX    A,@DPTR
+00100D 904CED            MOV     DPTR,#g_variable+02EH
+001010 F0                MOVX    @DPTR,A
    14: 		else
-000857 22                RET     
-000858         ?C0004?KB_PROCESS:
+001011 22                RET     
+001012         ?C0004?KB_PROCESS:
    15: 		{
    16: 			IIC_Read(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
-000858 7B01              MOV     R3,#01H
-00085A 7A4C              MOV     R2,#HIGH m_24g_addr
-00085C 7900              MOV     R1,#LOW m_24g_addr
-00085E 7D04              MOV     R5,#04H
-000860 7C00              MOV     R4,#00H
-000862 7FF2              MOV     R7,#0F2H
-000864 7E3F              MOV     R6,#03FH
-000866 716C              ACALL   _IIC_Read
+001012 7B01              MOV     R3,#01H
+001014 7A4C              MOV     R2,#HIGH m_24g_addr
+001016 7900              MOV     R1,#LOW m_24g_addr
+001018 7D04              MOV     R5,#04H
+00101A 7C00              MOV     R4,#00H
+00101C 7FF2              MOV     R7,#0F2H
+00101E 7E3F              MOV     R6,#03FH
+001020 517E              ACALL   _IIC_Read
    17: 			Delay1ms(10);
-000868 7F0A              MOV     R7,#0AH
-00086A 517E              ACALL   _Delay1ms
+001022 7F0A              MOV     R7,#0AH
+001024 119C              ACALL   _Delay1ms
    18: 			if (m_24g_addr[0] == 0xff && m_24g_addr[1] == 0xff && m_24g_addr[2] == 0xff && m_24g_addr[3] == 0xff)
-00086C 904C00            MOV     DPTR,#m_24g_addr
-00086F E0                MOVX    A,@DPTR
-000870 B4FF1B            CJNE    A,#0FFH,?C0006?KB_PROCESS
-000873 A3                INC     DPTR
-000874 E0                MOVX    A,@DPTR
-000875 B4FF16            CJNE    A,#0FFH,?C0006?KB_PROCESS
-000878 A3                INC     DPTR
-000879 E0                MOVX    A,@DPTR
-00087A B4FF11            CJNE    A,#0FFH,?C0006?KB_PROCESS
-00087D A3                INC     DPTR
-00087E E0                MOVX    A,@DPTR
-00087F B4FF0C            CJNE    A,#0FFH,?C0006?KB_PROCESS
+001026 904C00            MOV     DPTR,#m_24g_addr
+001029 E0                MOVX    A,@DPTR
+00102A B4FF1B            CJNE    A,#0FFH,?C0006?KB_PROCESS
+00102D A3                INC     DPTR
+00102E E0                MOVX    A,@DPTR
+00102F B4FF16            CJNE    A,#0FFH,?C0006?KB_PROCESS
+001032 A3                INC     DPTR
+001033 E0                MOVX    A,@DPTR
+001034 B4FF11            CJNE    A,#0FFH,?C0006?KB_PROCESS
+001037 A3                INC     DPTR
+001038 E0                MOVX    A,@DPTR
+001039 B4FF0C            CJNE    A,#0FFH,?C0006?KB_PROCESS
    19: 			{
    20: 				m_24g_addr[0] = 0x0f;
-000882 904C00            MOV     DPTR,#m_24g_addr
-000885 740F              MOV     A,#0FH
-000887 F0                MOVX    @DPTR,A
+00103C 904C00            MOV     DPTR,#m_24g_addr
+00103F 740F              MOV     A,#0FH
+001041 F0                MOVX    @DPTR,A
    21: 				m_24g_addr[1] = 0x0f;
-000888 A3                INC     DPTR
-000889 F0                MOVX    @DPTR,A
+001042 A3                INC     DPTR
+001043 F0                MOVX    @DPTR,A
    22: 				m_24g_addr[2] = 0x0f;
-00088A A3                INC     DPTR
-00088B F0                MOVX    @DPTR,A
+001044 A3                INC     DPTR
+001045 F0                MOVX    @DPTR,A
    23: 				m_24g_addr[3] = 0x0f;
-00088C A3                INC     DPTR
-00088D F0                MOVX    @DPTR,A
+001046 A3                INC     DPTR
+001047 F0                MOVX    @DPTR,A
    24: 			}
-00088E         ?C0006?KB_PROCESS:
+001048         ?C0006?KB_PROCESS:
    25: 			IPC_TxControlCmd(IPC_CMD_START_24G);
-00088E 7F21              MOV     R7,#021H
-000890 11F6              ACALL   _IPC_TxControlCmd
+001048 7F21              MOV     R7,#021H
+00104A 1207F8            LCALL   _IPC_TxControlCmd
    26: 			
    27: 			g_variable.g24_currentState = CHANGE_TO_24G_CONNECTING;
-000892 904CC5            MOV     DPTR,#g_variable+06H
-000895 7402              MOV     A,#02H
-000897 F0                MOVX    @DPTR,A
+00104D 904CC5            MOV     DPTR,#g_variable+06H
+001050 7402              MOV     A,#02H
+001052 F0                MOVX    @DPTR,A
    28: 			g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
-000898 E4                CLR     A
-000899 A3                INC     DPTR
-00089A F0                MOVX    @DPTR,A
+001053 E4                CLR     A
+001054 A3                INC     DPTR
+001055 F0                MOVX    @DPTR,A
    29: 			g_variable.key_action = KEY_NONE;
-00089B 904CED            MOV     DPTR,#g_variable+02EH
-00089E F0                MOVX    @DPTR,A
+001056 904CED            MOV     DPTR,#g_variable+02EH
+001059 F0                MOVX    @DPTR,A
    30: 		}
    31: 		break;
-00089F 22                RET     
+00105A 22                RET     
    32: 	case KEY_PAIRING_24G:
-0008A0         ?C0007?KB_PROCESS:
+00105B         ?C0007?KB_PROCESS:
    33: 		g_variable.recon_count = 0;
-0008A0 E4                CLR     A
-0008A1 904CF0            MOV     DPTR,#g_variable+031H
-0008A4 F0                MOVX    @DPTR,A
+00105B E4                CLR     A
+00105C 904CF0            MOV     DPTR,#g_variable+031H
+00105F F0                MOVX    @DPTR,A
    34: 		if (YC_disconnect_all_link())
-0008A5 11DF              ACALL   YC_disconnect_all_link
-0008A7 EF                MOV     A,R7
-0008A8 6009              JZ      ?C0008?KB_PROCESS
+001060 120FCB            LCALL   YC_disconnect_all_link
+001063 EF                MOV     A,R7
+001064 6009              JZ      ?C0008?KB_PROCESS
    35: 		{
    36: 			g_variable.key_action = key_num;
-0008AA 904E8D            MOV     DPTR,#key_num
-0008AD E0                MOVX    A,@DPTR
-0008AE 904CED            MOV     DPTR,#g_variable+02EH
-0008B1 F0                MOVX    @DPTR,A
+001066 904E8D            MOV     DPTR,#key_num
+001069 E0                MOVX    A,@DPTR
+00106A 904CED            MOV     DPTR,#g_variable+02EH
+00106D F0                MOVX    @DPTR,A
    37: 		}
-0008B2 22                RET     
-0008B3         ?C0008?KB_PROCESS:
+00106E 22                RET     
+00106F         ?C0008?KB_PROCESS:
    38: 		else
    39: 		{
    40: 			if (g_variable.g24_currentState != CHANGE_TO_24G_PAIRING)
-0008B3 904CC5            MOV     DPTR,#g_variable+06H
-0008B6 E0                MOVX    A,@DPTR
-0008B7 6401              XRL     A,#01H
-0008B9 6018              JZ      ?C0010?KB_PROCESS
+00106F 904CC5            MOV     DPTR,#g_variable+06H
+001072 E0                MOVX    A,@DPTR
+001073 6401              XRL     A,#01H
+001075 6019              JZ      ?C0010?KB_PROCESS
    41: 			{
    42: 				IPC_TxControlCmd(IPC_CMD_PAIR_24G);
-0008BB 7F23              MOV     R7,#023H
-0008BD 11F6              ACALL   _IPC_TxControlCmd
+001077 7F23              MOV     R7,#023H
+001079 1207F8            LCALL   _IPC_TxControlCmd
    43: 				g_variable.g24_currentState = CHANGE_TO_24G_PAIRING;
-0008BF 904CC5            MOV     DPTR,#g_variable+06H
-0008C2 7401              MOV     A,#01H
-0008C4 F0                MOVX    @DPTR,A
+00107C 904CC5            MOV     DPTR,#g_variable+06H
+00107F 7401              MOV     A,#01H
+001081 F0                MOVX    @DPTR,A
    44: 				g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
-0008C5 E4                CLR     A
-0008C6 A3                INC     DPTR
-0008C7 F0                MOVX    @DPTR,A
+001082 E4                CLR     A
+001083 A3                INC     DPTR
+001084 F0                MOVX    @DPTR,A
    45: 				g_variable.pairing_g24_timeout = BT_PAIRING_TIME_OUT_2MIN;
-0008C8 904CEE            MOV     DPTR,#g_variable+02FH
-0008CB 74F0              MOV     A,#0F0H
-0008CD F0                MOVX    @DPTR,A
+001085 904CEE            MOV     DPTR,#g_variable+02FH
+001088 74F0              MOV     A,#0F0H
+00108A F0                MOVX    @DPTR,A
    46: 				g_variable.pairing_timeout = 0;
-0008CE E4                CLR     A
-0008CF 904CE9            MOV     DPTR,#g_variable+02AH
-0008D2 F0                MOVX    @DPTR,A
+00108B E4                CLR     A
+00108C 904CE9            MOV     DPTR,#g_variable+02AH
+00108F F0                MOVX    @DPTR,A
    47: 			}
-0008D3         ?C0010?KB_PROCESS:
+001090         ?C0010?KB_PROCESS:
    48: 			g_variable.key_action = KEY_NONE;
-0008D3 E4                CLR     A
-0008D4 904CED            MOV     DPTR,#g_variable+02EH
-0008D7 F0                MOVX    @DPTR,A
+001090 E4                CLR     A
+001091 904CED            MOV     DPTR,#g_variable+02EH
+001094 F0                MOVX    @DPTR,A
    49: 		}
    50: 		break;
-0008D8 22                RET     
+001095 22                RET     
    51: 	default:
-0008D9         ?C0011?KB_PROCESS:
+001096         ?C0011?KB_PROCESS:
    52: 		g_variable.key_action = KEY_NONE;
-0008D9 E4                CLR     A
-0008DA 904CED            MOV     DPTR,#g_variable+02EH
-0008DD F0                MOVX    @DPTR,A
+001096 E4                CLR     A
+001097 904CED            MOV     DPTR,#g_variable+02EH
+00109A F0                MOVX    @DPTR,A
    53: 		break;
    54: 	}
    55: }
-0008DE 22                RET     
+00109B 22                RET     
 ----- FUNCTION _YC_key_action_handle (END) -------
 
 
------ FUNCTION YC_disconnect_all_link (BEGIN) -----
- FILE: 'bluetooth.c'
-   48: byte YC_disconnect_all_link()
-   49: {
-   50: 	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED 
-   51: 		||g_variable.g24_currentState == CHANGE_TO_24G_CONNECTING)
-0008DF 904CC5            MOV     DPTR,#g_variable+06H
-0008E2 E0                MOVX    A,@DPTR
-0008E3 FF                MOV     R7,A
-0008E4 6403              XRL     A,#03H
-0008E6 6004              JZ      ?C0011?BLUETOOTH
-0008E8 EF                MOV     A,R7
-0008E9 B40207            CJNE    A,#02H,?C0010?BLUETOOTH
-0008EC         ?C0011?BLUETOOTH:
-   52: 	{
-   53: 		IPC_TxControlCmd(IPC_CMD_STOP_24G);
-0008EC 7F22              MOV     R7,#022H
-0008EE 11F6              ACALL   _IPC_TxControlCmd
-   54: 		return 1;
-0008F0 7F01              MOV     R7,#01H
-0008F2 22                RET     
-   55: 	}
-0008F3         ?C0010?BLUETOOTH:
-   56: 	return 0;
-0008F3 7F00              MOV     R7,#00H
-   57: }
-0008F5 22                RET     
------ FUNCTION YC_disconnect_all_link (END) -------
-
-
------ FUNCTION _IPC_TxControlCmd (BEGIN) -----
-0008F6 904E71            MOV     DPTR,#cmd
-0008F9 EF                MOV     A,R7
-0008FA F0                MOVX    @DPTR,A
-0008FB 7872              MOV     R0,#LOW cmdBuff
-0008FD 7C4E              MOV     R4,#HIGH cmdBuff
-0008FF 7D01              MOV     R5,#01H
-000901 7BFF              MOV     R3,#0FFH
-000903 7A06              MOV     R2,#HIGH _?ix1000
-000905 79BF              MOV     R1,#LOW _?ix1000
-000907 7E00              MOV     R6,#00H
-000909 7F03              MOV     R7,#03H
-00090B 120390            LCALL   ?C?COPY
-00090E 904E71            MOV     DPTR,#cmd
-000911 E0                MOVX    A,@DPTR
-000912 904E74            MOV     DPTR,#cmdBuff+02H
-000915 F0                MOVX    @DPTR,A
-000916 7B01              MOV     R3,#01H
-000918 7A4E              MOV     R2,#HIGH cmdBuff
-00091A 7972              MOV     R1,#LOW cmdBuff
-00091C 7D03              MOV     R5,#03H
-;----                  JMP     _ipcTx
------ FUNCTION _IPC_TxControlCmd (END) -------
-
-
------ FUNCTION _ipcTx (BEGIN) -----
-00091E 904E46            MOV     DPTR,#src
-000921 EB                MOV     A,R3
-000922 F0                MOVX    @DPTR,A
-000923 A3                INC     DPTR
-000924 EA                MOV     A,R2
-000925 F0                MOVX    @DPTR,A
-000926 A3                INC     DPTR
-000927 E9                MOV     A,R1
-000928 F0                MOVX    @DPTR,A
-000929 A3                INC     DPTR
-00092A ED                MOV     A,R5
-00092B F0                MOVX    @DPTR,A
-00092C 904B9C            MOV     DPTR,#ipcTxWritePtr
-00092F E0                MOVX    A,@DPTR
-000930 FF                MOV     R7,A
-000931 A3                INC     DPTR
-000932 E0                MOVX    A,@DPTR
-000933 904E4A            MOV     DPTR,#dest
-000936 CF                XCH     A,R7
-000937 F0                MOVX    @DPTR,A
-000938 A3                INC     DPTR
-000939 EF                MOV     A,R7
-00093A F0                MOVX    @DPTR,A
-00093B         ?C0008?IPC:
-00093B 904B9A            MOV     DPTR,#ipcTxReadPtr
-00093E E0                MOVX    A,@DPTR
-00093F FE                MOV     R6,A
-000940 A3                INC     DPTR
-000941 E0                MOVX    A,@DPTR
-000942 FF                MOV     R7,A
-000943 904B9C            MOV     DPTR,#ipcTxWritePtr
-000946 E0                MOVX    A,@DPTR
-000947 FC                MOV     R4,A
-000948 A3                INC     DPTR
-000949 E0                MOVX    A,@DPTR
-00094A FD                MOV     R5,A
-00094B 7B64              MOV     R3,#064H
-00094D 1223FA            LCALL   _bufsize
-000950 904E49            MOV     DPTR,#len
-000953 E0                MOVX    A,@DPTR
-000954 FE                MOV     R6,A
-000955 EF                MOV     A,R7
-000956 C3                CLR     C
-000957 9E                SUBB    A,R6
-000958 40E1              JC      ?C0008?IPC
-00095A         ?C0009?IPC:
-00095A         ?C0010?IPC:
-00095A 904E49            MOV     DPTR,#len
-00095D E0                MOVX    A,@DPTR
-00095E FF                MOV     R7,A
-00095F 14                DEC     A
-000960 F0                MOVX    @DPTR,A
-000961 EF                MOV     A,R7
-000962 603F              JZ      ?C0011?IPC
-000964 904E46            MOV     DPTR,#src
-000967 E0                MOVX    A,@DPTR
-000968 FB                MOV     R3,A
-000969 A3                INC     DPTR
-00096A E4                CLR     A
-00096B 75F001            MOV     B,#01H
-00096E 120424            LCALL   ?C?ILDIX
-000971 A9F0              MOV     R1,B
-000973 FA                MOV     R2,A
-000974 1203B6            LCALL   ?C?CLDPTR
-000977 FF                MOV     R7,A
-000978 904E4A            MOV     DPTR,#dest
-00097B E4                CLR     A
-00097C 75F001            MOV     B,#01H
-00097F 120424            LCALL   ?C?ILDIX
-000982 85F082            MOV     DPL,B
-000985 F583              MOV     DPH,A
-000987 EF                MOV     A,R7
-000988 F0                MOVX    @DPTR,A
-000989 904E4A            MOV     DPTR,#dest
-00098C E0                MOVX    A,@DPTR
-00098D FE                MOV     R6,A
-00098E A3                INC     DPTR
-00098F E0                MOVX    A,@DPTR
-000990 FF                MOV     R7,A
-000991 BE4BC6            CJNE    R6,#04BH,?C0010?IPC
-000994 BF36C3            CJNE    R7,#036H,?C0010?IPC
-000997 904E4A            MOV     DPTR,#dest
-00099A 744A              MOV     A,#04AH
-00099C F0                MOVX    @DPTR,A
-00099D A3                INC     DPTR
-00099E 74A0              MOV     A,#0A0H
-0009A0 F0                MOVX    @DPTR,A
-0009A1 80B7              SJMP    ?C0010?IPC
-0009A3         ?C0011?IPC:
-0009A3 904E4A            MOV     DPTR,#dest
-0009A6 E0                MOVX    A,@DPTR
-0009A7 FF                MOV     R7,A
-0009A8 A3                INC     DPTR
-0009A9 E0                MOVX    A,@DPTR
-0009AA 904B9C            MOV     DPTR,#ipcTxWritePtr
-0009AD CF                XCH     A,R7
-0009AE F0                MOVX    @DPTR,A
-0009AF A3                INC     DPTR
-0009B0 EF                MOV     A,R7
-0009B1 F0                MOVX    @DPTR,A
-0009B2 22                RET     
------ FUNCTION _ipcTx (END) -------
-
-
------ FUNCTION YC_connect_timeout_500ms (BEGIN) -----
- FILE: 'sys.c'
-  198: void YC_connect_timeout_500ms()
-  199: {
-  200: 	
-  201: //system long sleep timer
-  202: 	if(g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
-0009B3 904CC5            MOV     DPTR,#g_variable+06H
-0009B6 E0                MOVX    A,@DPTR
-0009B7 B40310            CJNE    A,#03H,?C0037?SYS
-  203: 	{
-  204: 		if (g_variable.sleepTimer == STANDBY_TIMER_30MIN)
-0009BA 904CE3            MOV     DPTR,#g_variable+024H
-0009BD E0                MOVX    A,@DPTR
-0009BE 640E              XRL     A,#0EH
-0009C0 7004              JNZ     ?C0092?SYS
-0009C2 A3                INC     DPTR
-0009C3 E0                MOVX    A,@DPTR
-0009C4 6410              XRL     A,#010H
-0009C6         ?C0092?SYS:
-0009C6 7029              JNZ     ?C0044?SYS
-  205: 			System_long_sleep();
-0009C8 8028              SJMP    System_long_sleep
-  206: 	}
-0009CA         ?C0037?SYS:
-  207: 	else if(g_variable.g24_currentState == CHANGE_TO_24G_PAIRING)
-0009CA 904CC5            MOV     DPTR,#g_variable+06H
-0009CD E0                MOVX    A,@DPTR
-0009CE B40112            CJNE    A,#01H,?C0040?SYS
-  208: 	{
-  209: 		if (g_variable.sleepTimer == G24_PAIRING_TIME_OUT_20S)
-0009D1 904CE3            MOV     DPTR,#g_variable+024H
-0009D4 E0                MOVX    A,@DPTR
-0009D5 7004              JNZ     ?C0093?SYS
-0009D7 A3                INC     DPTR
-0009D8 E0                MOVX    A,@DPTR
-0009D9 6428              XRL     A,#028H
-0009DB         ?C0093?SYS:
-0009DB 7014              JNZ     ?C0044?SYS
-  210: 		{
-  211: 			IPC_TxControlCmd(IPC_CMD_STOP_24G);
-0009DD 7F22              MOV     R7,#022H
-0009DF 11F6              ACALL   _IPC_TxControlCmd
-  212: 			System_long_sleep();
-0009E1 800F              SJMP    System_long_sleep
-  213: 		}
-  214: 	}
-0009E3         ?C0040?SYS:
-  215: 	else
-  216: 	{
-  217: 		if (g_variable.sleepTimer == RECONNECT_TIMER_10S)
-0009E3 904CE3            MOV     DPTR,#g_variable+024H
-0009E6 E0                MOVX    A,@DPTR
-0009E7 7004              JNZ     ?C0094?SYS
-0009E9 A3                INC     DPTR
-0009EA E0                MOVX    A,@DPTR
-0009EB 6414              XRL     A,#014H
-0009ED         ?C0094?SYS:
-0009ED 7002              JNZ     ?C0044?SYS
-  218: 		{
-  219: 			System_long_sleep();
-0009EF 31F2              ACALL   System_long_sleep
-  220: 		}
-  221: 	}
-  222: }
-0009F1         ?C0044?SYS:
-0009F1 22                RET     
------ FUNCTION YC_connect_timeout_500ms (END) -------
-
-
------ FUNCTION System_long_sleep (BEGIN) -----
- FILE: 'sys.c'
-   64: void System_long_sleep()
-   65: { 
-   66: 	m_reconnect_continue = 0;
-   67: 	IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
-0009F2 E4                CLR     A
-0009F3 904D38            MOV     DPTR,#m_reconnect_continue
-0009F6 F0                MOVX    @DPTR,A
-   68: }
-0009F7 7F19              MOV     R7,#019H
-0009F9 01F6              AJMP    _IPC_TxControlCmd
------ FUNCTION System_long_sleep (END) -------
-
-
------ FUNCTION kb_button_press_timer500ms (BEGIN) -----
- FILE: 'sys.c'
-  242: void kb_button_press_timer500ms()
-  243: {
-  244: 	
-  245: //key status 
-  246: 	if (g_variable.button_flag & KEY_FLAG_SAME_KEY_PRESS)
-0009FB 904CCE            MOV     DPTR,#g_variable+0FH
-0009FE E0                MOVX    A,@DPTR
-0009FF 30E13D            JNB     ACC.1,?C0048?SYS
-  247: 	{
-  248: 		if (g_variable.button_timer[1] < 250)
-000A02 904CD0            MOV     DPTR,#g_variable+011H
-000A05 E0                MOVX    A,@DPTR
-000A06 C3                CLR     C
-000A07 94FA              SUBB    A,#0FAH
-000A09 5003              JNC     ?C0049?SYS
-  249: 			g_variable.button_timer[1]++;
-000A0B E0                MOVX    A,@DPTR
-000A0C 04                INC     A
-000A0D F0                MOVX    @DPTR,A
-000A0E         ?C0049?SYS:
-  250: 		if (g_variable.button_timer[1] == 180)			// 500ms*180*3 = 4min30s
-000A0E 904CD0            MOV     DPTR,#g_variable+011H
-000A11 E0                MOVX    A,@DPTR
-000A12 64B4              XRL     A,#0B4H
-000A14 702E              JNZ     ?C0054?SYS
-  251: 		{
-  252: 			press_long_time_flag++;
-000A16 904DDC            MOV     DPTR,#press_long_time_flag
-000A19 E0                MOVX    A,@DPTR
-000A1A 04                INC     A
-000A1B F0                MOVX    @DPTR,A
-  253: 			if(press_long_time_flag <= 2)
-000A1C E0                MOVX    A,@DPTR
-000A1D D3                SETB    C
-000A1E 9402              SUBB    A,#02H
-000A20 5007              JNC     ?C0051?SYS
-  254: 			{
-  255: 				g_variable.button_timer[1] = 0;
-000A22 E4                CLR     A
-000A23 904CD0            MOV     DPTR,#g_variable+011H
-000A26 F0                MOVX    @DPTR,A
-  256: 			}
-000A27 801B              SJMP    ?C0054?SYS
-000A29         ?C0051?SYS:
-  257: 			else if(press_long_time_flag == 3)
-000A29 904DDC            MOV     DPTR,#press_long_time_flag
-000A2C E0                MOVX    A,@DPTR
-000A2D B40314            CJNE    A,#03H,?C0054?SYS
-  258: 			{
-  259: 				long_press_flag = 1;
-000A30 904DD5            MOV     DPTR,#long_press_flag
-000A33 7401              MOV     A,#01H
-000A35 F0                MOVX    @DPTR,A
-  260: 				g_variable.button_timer[1] = 0;
-000A36 E4                CLR     A
-000A37 904CD0            MOV     DPTR,#g_variable+011H
-000A3A F0                MOVX    @DPTR,A
-  261: 				System_long_sleep();
-000A3B 31F2              ACALL   System_long_sleep
-  262: 			}
-  263: 		}
-  264: 	}
-000A3D 8005              SJMP    ?C0054?SYS
-000A3F         ?C0048?SYS:
-  265: 	else
-  266: 		press_long_time_flag = 0;
-000A3F E4                CLR     A
-000A40 904DDC            MOV     DPTR,#press_long_time_flag
-000A43 F0                MOVX    @DPTR,A
-000A44         ?C0054?SYS:
-  267: 		
-  268: 	if (g_variable.button_flag & KEY_FLAG_FN_24G_DEVICE_BUTTON)		// G24 pairing
-000A44 904CCE            MOV     DPTR,#g_variable+0FH
-000A47 E0                MOVX    A,@DPTR
-000A48 30E42D            JNB     ACC.4,?C0055?SYS
-  269: 	{
-  270: 		g_variable.delay_enter_lpm_timer = 10;
-000A4B 904CEA            MOV     DPTR,#g_variable+02BH
-000A4E 740A              MOV     A,#0AH
-000A50 F0                MOVX    @DPTR,A
-  271: 		if (g_variable.button_timer[2] < 250)
-000A51 904CD1            MOV     DPTR,#g_variable+012H
-000A54 E0                MOVX    A,@DPTR
-000A55 C3                CLR     C
-000A56 94FA              SUBB    A,#0FAH
-000A58 5003              JNC     ?C0056?SYS
-  272: 			g_variable.button_timer[2]++;
-000A5A E0                MOVX    A,@DPTR
-000A5B 04                INC     A
-000A5C F0                MOVX    @DPTR,A
-000A5D         ?C0056?SYS:
-  273: 		if (g_variable.button_timer[2] == 6)
-000A5D 904CD1            MOV     DPTR,#g_variable+012H
-000A60 E0                MOVX    A,@DPTR
-000A61 B40619            CJNE    A,#06H,?C0061?SYS
-  274: 		{
-  275: 			if( !g_variable.current_device_num || (g_variable.current_device_num == 0xfe))
-000A64 904CC3            MOV     DPTR,#g_variable+04H
-000A67 E0                MOVX    A,@DPTR
-000A68 FF                MOV     R7,A
-000A69 6003              JZ      ?C0059?SYS
-000A6B B4FE0F            CJNE    A,#0FEH,?C0061?SYS
-000A6E         ?C0059?SYS:
-  276: 			{
-  277: 				YC_disconnect_all_link();
-000A6E 11DF              ACALL   YC_disconnect_all_link
-  278: 				Delay1ms(10);
-000A70 7F0A              MOV     R7,#0AH
-000A72 517E              ACALL   _Delay1ms
-  279: 				YC_key_action_handle(KEY_PAIRING_24G);
-000A74 7F0A              MOV     R7,#0AH
-000A76 0133              AJMP    _YC_key_action_handle
-  280: 			}
-  281: 		}
-  282: 	}
-000A78         ?C0055?SYS:
-  283: 	else
-  284: 		g_variable.button_timer[2] = 0;
-000A78 E4                CLR     A
-000A79 904CD1            MOV     DPTR,#g_variable+012H
-000A7C F0                MOVX    @DPTR,A
-  285: 	
-  286: }
-000A7D         ?C0061?SYS:
-000A7D 22                RET     
------ FUNCTION kb_button_press_timer500ms (END) -------
-
-
 ----- FUNCTION _Delay1ms (BEGIN) -----
 ;---- Variable 'Time' assigned to Register 'R7' ----
-000A7E         ?C0014?UTILITIES:
-000A7E EF                MOV     A,R7
-000A7F D3                SETB    C
-000A80 9400              SUBB    A,#00H
-000A82 4011              JC      ?C0020?UTILITIES
+00109C         ?C0014?UTILITIES:
+00109C EF                MOV     A,R7
+00109D D3                SETB    C
+00109E 9400              SUBB    A,#00H
+0010A0 4011              JC      ?C0020?UTILITIES
 ;---- Variable 'j' assigned to Register 'R4/R5' ----
-000A84 E4                CLR     A
-000A85 FD                MOV     R5,A
-000A86 FC                MOV     R4,A
-000A87         ?C0017?UTILITIES:
-000A87 0D                INC     R5
-000A88 BD0001            CJNE    R5,#00H,?C0028?UTILITIES
-000A8B 0C                INC     R4
-000A8C         ?C0028?UTILITIES:
-000A8C BC04F8            CJNE    R4,#04H,?C0017?UTILITIES
-000A8F BDA6F5            CJNE    R5,#0A6H,?C0017?UTILITIES
-000A92         ?C0016?UTILITIES:
-000A92 1F                DEC     R7
-000A93 80E9              SJMP    ?C0014?UTILITIES
-000A95         ?C0020?UTILITIES:
-000A95 22                RET     
+0010A2 E4                CLR     A
+0010A3 FD                MOV     R5,A
+0010A4 FC                MOV     R4,A
+0010A5         ?C0017?UTILITIES:
+0010A5 0D                INC     R5
+0010A6 BD0001            CJNE    R5,#00H,?C0028?UTILITIES
+0010A9 0C                INC     R4
+0010AA         ?C0028?UTILITIES:
+0010AA BC04F8            CJNE    R4,#04H,?C0017?UTILITIES
+0010AD BDA6F5            CJNE    R5,#0A6H,?C0017?UTILITIES
+0010B0         ?C0016?UTILITIES:
+0010B0 1F                DEC     R7
+0010B1 80E9              SJMP    ?C0014?UTILITIES
+0010B3         ?C0020?UTILITIES:
+0010B3 22                RET     
 ----- FUNCTION _Delay1ms (END) -------
 
 
------ FUNCTION _kb_cb_event (BEGIN) -----
- FILE: 'sys.c'
-   89: static void kb_cb_event(byte evt)
-   90: {
-000A96 904E92            MOV     DPTR,#evt
-000A99 EF                MOV     A,R7
-000A9A F0                MOVX    @DPTR,A
-   91: 	switch (evt) 
-   92: 	{
-000A9B 24D0              ADD     A,#0D0H
-000A9D 6047              JZ      ?C0014?SYS
-000A9F 14                DEC     A
-000AA0 6046              JZ      ?C0016?SYS
-000AA2 14                DEC     A
-000AA3 7002              JNZ     $ + 4H
-000AA5 613F              AJMP    ?C0022?SYS
-000AA7 14                DEC     A
-000AA8 600A              JZ      ?C0013?SYS
-000AAA 24F7              ADD     A,#0F7H
-000AAC 603A              JZ      ?C0016?SYS
-000AAE 240D              ADD     A,#0DH
-000AB0 6002              JZ      $ + 4H
-000AB2 616B              AJMP    ?C0025?SYS
-   93: 	case IPC_EVT_HIBERNATE_WAKE:
-   94: //		System_Hardware_init();
-   95: //		System_Software_init();
-   96: //		break;	
-   97: 	case IPC_EVT_RESET:
-000AB4         ?C0013?SYS:
-   98: 		System_Hardware_init();
-000AB4 F1EC              ACALL   System_Hardware_init
-   99: 		System_Software_init();
-000AB6 12214F            LCALL   System_Software_init
-  100: 		IIC_Read(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
-000AB9 7B01              MOV     R3,#01H
-000ABB 7A4C              MOV     R2,#HIGH m_24g_addr
-000ABD 7900              MOV     R1,#LOW m_24g_addr
-000ABF 7D04              MOV     R5,#04H
-000AC1 7C00              MOV     R4,#00H
-000AC3 7FF2              MOV     R7,#0F2H
-000AC5 7E3F              MOV     R6,#03FH
-000AC7 716C              ACALL   _IIC_Read
-  101: 		Delay1ms(10);
-000AC9 7F0A              MOV     R7,#0AH
-000ACB 517E              ACALL   _Delay1ms
-  102: 		IIC_Read(EEPROM_RECON_INFO_SYTEM_MODE,1 , (byte *)g_variable.system_mode);
-000ACD 904CC1            MOV     DPTR,#g_variable+02H
-000AD0 E0                MOVX    A,@DPTR
-000AD1 F9                MOV     R1,A
-000AD2 7A00              MOV     R2,#00H
-000AD4 7B00              MOV     R3,#00H
-000AD6 7D01              MOV     R5,#01H
-000AD8 7C00              MOV     R4,#00H
-000ADA 7FF8              MOV     R7,#0F8H
-000ADC 7E3F              MOV     R6,#03FH
-000ADE 716C              ACALL   _IIC_Read
-  103: 		Delay1ms(10);
-000AE0 7F0A              MOV     R7,#0AH
-000AE2 517E              ACALL   _Delay1ms
-  104: 		YC_start_reconnect();
-000AE4 E1AA              AJMP    YC_start_reconnect
-  105: 		break;
-  106: 	case IPC_EVT_WAKEUP:
-000AE6         ?C0014?SYS:
-  107: 		KS_Initialize();
-000AE6 E1C1              AJMP    KS_Initialize
-  108: 		break;
-  109: 
-  110: 		
-  111: // 2.4G event	
-  112: 	case IPC_EVT_24G_PAIRING_COMPLETE:
-  113: 	case IPC_EVT_24G_ATTEMPT_SUCCESS:
-000AE8         ?C0016?SYS:
-  114: 		g_variable.g24_currentState =  CHANGE_TO_24G_CONNECTED;
-000AE8 904CC5            MOV     DPTR,#g_variable+06H
-000AEB 7403              MOV     A,#03H
-000AED F0                MOVX    @DPTR,A
-  115: 		g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
-000AEE E4                CLR     A
-000AEF A3                INC     DPTR
-000AF0 F0                MOVX    @DPTR,A
-  116: 		YC_clear_reconnect_flag();
-000AF1 F169              ACALL   YC_clear_reconnect_flag
-  117: 		g_variable.pairing_g24_timeout = 0;
-000AF3 E4                CLR     A
-000AF4 904CEE            MOV     DPTR,#g_variable+02FH
-000AF7 F0                MOVX    @DPTR,A
-  118: 		g_variable.release_data = 0;
-000AF8 904CEB            MOV     DPTR,#g_variable+02CH
-000AFB F0                MOVX    @DPTR,A
-  119: 		g_variable.last_device_num = 0xfe;
-000AFC 904CC0            MOV     DPTR,#g_variable+01H
-000AFF 74FE              MOV     A,#0FEH
-000B01 F0                MOVX    @DPTR,A
-  120: 		g_variable.current_device_num = 0xfe;
-000B02 904CC3            MOV     DPTR,#g_variable+04H
-000B05 F0                MOVX    @DPTR,A
-  121: 
-  122: 		if(evt == IPC_EVT_24G_PAIRING_COMPLETE)
-000B06 904E92            MOV     DPTR,#evt
-000B09 E0                MOVX    A,@DPTR
-000B0A 6431              XRL     A,#031H
-000B0C 7024              JNZ     ?C0017?SYS
-  123: 		{
-  124: 			g_variable.powerOn_timer = KB_POWERON_LED_ON_TIMER;
-000B0E 904CE5            MOV     DPTR,#g_variable+026H
-000B11 741E              MOV     A,#01EH
-000B13 F0                MOVX    @DPTR,A
-  125: 			if(m_24g_paring_addr[0] != 0x0f || m_24g_paring_addr[1] != 0x0f ||
-000B14 904BEB            MOV     DPTR,#m_24g_paring_addr
-000B17 E0                MOVX    A,@DPTR
-000B18 B40F10            CJNE    A,#0FH,?C0019?SYS
-000B1B A3                INC     DPTR
-000B1C E0                MOVX    A,@DPTR
-000B1D B40F0B            CJNE    A,#0FH,?C0019?SYS
-000B20 A3                INC     DPTR
-000B21 E0                MOVX    A,@DPTR
-000B22 B40F06            CJNE    A,#0FH,?C0019?SYS
-000B25 A3                INC     DPTR
-000B26 E0                MOVX    A,@DPTR
-000B27 640F              XRL     A,#0FH
-000B29 6040              JZ      ?C0025?SYS
-000B2B         ?C0019?SYS:
-  126: 				m_24g_paring_addr[2] != 0x0f || m_24g_paring_addr[3] != 0x0f)
-  127: 				g_variable.update_eeprom_flag = 1;
-000B2B 904CBF            MOV     DPTR,#g_variable
-000B2E 7401              MOV     A,#01H
-000B30 F0                MOVX    @DPTR,A
-  128: 		}
-000B31 22                RET     
-000B32         ?C0017?SYS:
-  129: 		else
-  130: 		{
-  131: 			if(!g_variable.powerOn_timer)
-000B32 904CE5            MOV     DPTR,#g_variable+026H
-000B35 E0                MOVX    A,@DPTR
-000B36 7033              JNZ     ?C0025?SYS
-  132: 			GPIO_Setout(G24_LED_GPIO,LED_OFF);
-000B38 C201              CLR     ?_GPIO_Setout?BIT
-000B3A 7F1D              MOV     R7,#01DH
-000B3C 02078B            LJMP    _GPIO_Setout
-  133: 		}
-  134: 		break;
-  135: 	
-  136: 	case IPC_EVT_24G_ATTEMPT_FAIL:	
-000B3F         ?C0022?SYS:
-  137: 		g_variable.g24_currentState =  CHANGE_TO_24G_DISCONNECTED;
-000B3F E4                CLR     A
-000B40 904CC5            MOV     DPTR,#g_variable+06H
-000B43 F0                MOVX    @DPTR,A
-  138: 		g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
-000B44 A3                INC     DPTR
-000B45 F0                MOVX    @DPTR,A
-  139: 		g_variable.sleepTimer = 0;
-000B46 904CE3            MOV     DPTR,#g_variable+024H
-000B49 F0                MOVX    @DPTR,A
-000B4A A3                INC     DPTR
-000B4B F0                MOVX    @DPTR,A
-  140: 		g_variable.release_data = 1;
-000B4C 904CEB            MOV     DPTR,#g_variable+02CH
-000B4F 04                INC     A
-000B50 F0                MOVX    @DPTR,A
-  141: 
-  142: 		if (g_variable.key_action != KEY_NONE)
-000B51 904CED            MOV     DPTR,#g_variable+02EH
-000B54 E0                MOVX    A,@DPTR
-000B55 6009              JZ      ?C0023?SYS
-  143: 		{
-  144: 			YC_clear_reconnect_flag();
-000B57 F169              ACALL   YC_clear_reconnect_flag
-  145: 			YC_key_action_handle(g_variable.key_action);
-000B59 904CED            MOV     DPTR,#g_variable+02EH
-000B5C E0                MOVX    A,@DPTR
-000B5D FF                MOV     R7,A
-000B5E 0133              AJMP    _YC_key_action_handle
-  146: 			break;
-  147: 		}
-000B60         ?C0023?SYS:
-  148: 
-  149: 		if (g_variable.lockLpm == 1)
-000B60 904CEC            MOV     DPTR,#g_variable+02DH
-000B63 E0                MOVX    A,@DPTR
-000B64 B40104            CJNE    A,#01H,?C0025?SYS
-  150: 		{
-  151: 			g_variable.lockLpm =0;
-000B67 E4                CLR     A
-000B68 F0                MOVX    @DPTR,A
-  152: 			System_long_sleep();
-000B69 31F2              ACALL   System_long_sleep
-  153: 			break;
-  154: 		}
-  155: 		break;
-  156: 	}
-  157: }
-000B6B         ?C0025?SYS:
-000B6B 22                RET     
------ FUNCTION _kb_cb_event (END) -------
-
-
------ FUNCTION _IIC_Read (BEGIN) -----
-000B6C 904E5C            MOV     DPTR,#len
-000B6F EC                MOV     A,R4
-000B70 F0                MOVX    @DPTR,A
-000B71 A3                INC     DPTR
-000B72 ED                MOV     A,R5
-000B73 F0                MOVX    @DPTR,A
-000B74 A3                INC     DPTR
-000B75 EB                MOV     A,R3
-000B76 F0                MOVX    @DPTR,A
-000B77 A3                INC     DPTR
-000B78 EA                MOV     A,R2
-000B79 F0                MOVX    @DPTR,A
-000B7A A3                INC     DPTR
-000B7B E9                MOV     A,R1
-000B7C F0                MOVX    @DPTR,A
-;---- Variable 'addr' assigned to Register 'R6/R7' ----
-;---- Variable 'mem_src' assigned to Register 'R6/R7' ----
-000B7D 908098            MOV     DPTR,#08098H
-000B80 7404              MOV     A,#04H
-000B82 F0                MOVX    @DPTR,A
-000B83 A3                INC     DPTR
-000B84 E4                CLR     A
-000B85 F0                MOVX    @DPTR,A
-000B86 900CAF            MOV     DPTR,#YC_IICDTbuf
-000B89 74A0              MOV     A,#0A0H
-000B8B F0                MOVX    @DPTR,A
-000B8C A3                INC     DPTR
-000B8D EE                MOV     A,R6
-000B8E F0                MOVX    @DPTR,A
-000B8F A3                INC     DPTR
-000B90 EF                MOV     A,R7
-000B91 F0                MOVX    @DPTR,A
-000B92 900CB2            MOV     DPTR,#YC_IICDTbuf+03H
-000B95 74A1              MOV     A,#0A1H
-000B97 F0                MOVX    @DPTR,A
-000B98 7A0C              MOV     R2,#HIGH YC_IICDTbuf
-000B9A 79AF              MOV     R1,#LOW YC_IICDTbuf
-000B9C 7E0C              MOV     R6,#HIGH YC_IICDTbuf
-000B9E 7FAF              MOV     R7,#LOW YC_IICDTbuf
-000BA0 74AF              MOV     A,#LOW YC_IICDTbuf
-000BA2 FC                MOV     R4,A
-000BA3 740C              MOV     A,#HIGH YC_IICDTbuf
-000BA5 FF                MOV     R7,A
-000BA6 EC                MOV     A,R4
-000BA7 FE                MOV     R6,A
-000BA8 EF                MOV     A,R7
-000BA9 90809A            MOV     DPTR,#0809AH
-000BAC EE                MOV     A,R6
-000BAD F0                MOVX    @DPTR,A
-000BAE A3                INC     DPTR
-000BAF EF                MOV     A,R7
-000BB0 F0                MOVX    @DPTR,A
-000BB1 904E5C            MOV     DPTR,#len
-000BB4 E0                MOVX    A,@DPTR
-000BB5 FC                MOV     R4,A
-000BB6 A3                INC     DPTR
-000BB7 E0                MOVX    A,@DPTR
-000BB8 FA                MOV     R2,A
-000BB9 EC                MOV     A,R4
-000BBA FF                MOV     R7,A
-000BBB EA                MOV     A,R2
-000BBC FE                MOV     R6,A
-000BBD EF                MOV     A,R7
-000BBE 90809E            MOV     DPTR,#0809EH
-000BC1 EE                MOV     A,R6
-000BC2 F0                MOVX    @DPTR,A
-000BC3 A3                INC     DPTR
-000BC4 EF                MOV     A,R7
-000BC5 F0                MOVX    @DPTR,A
-000BC6 7A0B              MOV     R2,#HIGH IIC_TempBuff
-000BC8 7983              MOV     R1,#LOW IIC_TempBuff
-000BCA 7E0B              MOV     R6,#HIGH IIC_TempBuff
-000BCC 7F83              MOV     R7,#LOW IIC_TempBuff
-000BCE 7483              MOV     A,#LOW IIC_TempBuff
-000BD0 FC                MOV     R4,A
-000BD1 740B              MOV     A,#HIGH IIC_TempBuff
-000BD3 FF                MOV     R7,A
-000BD4 EC                MOV     A,R4
-000BD5 FE                MOV     R6,A
-000BD6 EF                MOV     A,R7
-000BD7 90809C            MOV     DPTR,#0809CH
-000BDA EE                MOV     A,R6
-000BDB F0                MOVX    @DPTR,A
-000BDC A3                INC     DPTR
-000BDD EF                MOV     A,R7
-000BDE F0                MOVX    @DPTR,A
-000BDF 908090            MOV     DPTR,#08090H
-000BE2 7402              MOV     A,#02H
-000BE4 F0                MOVX    @DPTR,A
-000BE5 90809C            MOV     DPTR,#0809CH
-000BE8 A3                INC     DPTR
-000BE9 E0                MOVX    A,@DPTR
-000BEA 20E707            JB      ACC.7,?C0004?IIC
-000BED 908090            MOV     DPTR,#08090H
-000BF0 E0                MOVX    A,@DPTR
-000BF1 4401              ORL     A,#01H
-000BF3 F0                MOVX    @DPTR,A
-000BF4         ?C0004?IIC:
-000BF4 908006            MOV     DPTR,#08006H
-000BF7 E0                MOVX    A,@DPTR
-000BF8 4404              ORL     A,#04H
-000BFA F0                MOVX    @DPTR,A
-000BFB 1216DB            LCALL   IIcWaitDone
-000BFE 904E5E            MOV     DPTR,#pbuff
-000C01 E0                MOVX    A,@DPTR
-000C02 A3                INC     DPTR
-000C03 E0                MOVX    A,@DPTR
-000C04 FA                MOV     R2,A
-000C05 A3                INC     DPTR
-000C06 E0                MOVX    A,@DPTR
-000C07 AE02              MOV     R6,AR2
-000C09 FF                MOV     R7,A
-000C0A 7B01              MOV     R3,#01H
-000C0C 7A0B              MOV     R2,#HIGH IIC_TempBuff
-000C0E 7983              MOV     R1,#LOW IIC_TempBuff
-000C10 904E5C            MOV     DPTR,#len
-000C13 E0                MOVX    A,@DPTR
-000C14 A3                INC     DPTR
-000C15 E0                MOVX    A,@DPTR
-000C16 904E51            MOV     DPTR,#?_xmemcpy?BYTE+05H
-000C19 F0                MOVX    @DPTR,A
-;----                  JMP     _xmemcpy
------ FUNCTION _IIC_Read (END) -------
-
-
------ FUNCTION _xmemcpy (BEGIN) -----
-000C1A 904E4C            MOV     DPTR,#dest
-000C1D EE                MOV     A,R6
-000C1E F0                MOVX    @DPTR,A
-000C1F A3                INC     DPTR
-000C20 EF                MOV     A,R7
-000C21 F0                MOVX    @DPTR,A
-000C22 A3                INC     DPTR
-000C23 EB                MOV     A,R3
-000C24 F0                MOVX    @DPTR,A
-000C25 A3                INC     DPTR
-000C26 EA                MOV     A,R2
-000C27 F0                MOVX    @DPTR,A
-000C28 A3                INC     DPTR
-000C29 E9                MOV     A,R1
-000C2A F0                MOVX    @DPTR,A
-000C2B         ?C0002?UTILITIES:
-000C2B 904E51            MOV     DPTR,#len
-000C2E E0                MOVX    A,@DPTR
-000C2F FF                MOV     R7,A
-000C30 14                DEC     A
-000C31 F0                MOVX    @DPTR,A
-000C32 EF                MOV     A,R7
-000C33 6027              JZ      ?C0004?UTILITIES
-000C35 904E4E            MOV     DPTR,#src
-000C38 E0                MOVX    A,@DPTR
-000C39 FB                MOV     R3,A
-000C3A A3                INC     DPTR
-000C3B E4                CLR     A
-000C3C 75F001            MOV     B,#01H
-000C3F 120424            LCALL   ?C?ILDIX
-000C42 A9F0              MOV     R1,B
-000C44 FA                MOV     R2,A
-000C45 1203B6            LCALL   ?C?CLDPTR
-000C48 FF                MOV     R7,A
-000C49 904E4C            MOV     DPTR,#dest
-000C4C E4                CLR     A
-000C4D 75F001            MOV     B,#01H
-000C50 120424            LCALL   ?C?ILDIX
-000C53 85F082            MOV     DPL,B
-000C56 F583              MOV     DPH,A
-000C58 EF                MOV     A,R7
-000C59 F0                MOVX    @DPTR,A
-000C5A 80CF              SJMP    ?C0002?UTILITIES
-000C5C         ?C0004?UTILITIES:
-000C5C 22                RET     
------ FUNCTION _xmemcpy (END) -------
-
-
------ FUNCTION _kb_motion_keyscan (BEGIN) -----
- FILE: 'kb_process.c'
-  204: void kb_motion_keyscan(tKSEVENT *pEvt)
-  205: {
-000C5D 904E52            MOV     DPTR,#pEvt
-000C60 EB                MOV     A,R3
-000C61 F0                MOVX    @DPTR,A
-000C62 A3                INC     DPTR
-000C63 EA                MOV     A,R2
-000C64 F0                MOVX    @DPTR,A
-000C65 A3                INC     DPTR
-000C66 E9                MOV     A,R1
-000C67 F0                MOVX    @DPTR,A
-  206: 	byte temp = 0;
-  207: 	byte i=0;
-000C68 E4                CLR     A
-000C69 A3                INC     DPTR
-000C6A F0                MOVX    @DPTR,A
-  208: 	
-000C6B A3                INC     DPTR
-000C6C F0                MOVX    @DPTR,A
-  209: 	fn_flag = 0;
-000C6D 904DDB            MOV     DPTR,#fn_flag
-000C70 F0                MOVX    @DPTR,A
-  210: 	for(i=0; i < KS_BUFF_POLL_LEN-1; i++)
-000C71 904E56            MOV     DPTR,#i
-000C74 F0                MOVX    @DPTR,A
-000C75         ?C0044?KB_PROCESS:
-000C75 904E56            MOV     DPTR,#i
-000C78 E0                MOVX    A,@DPTR
-000C79 FF                MOV     R7,A
-000C7A C3                CLR     C
-000C7B 9405              SUBB    A,#05H
-000C7D 502C              JNC     ?C0045?KB_PROCESS
-  211: 	{
-  212: 		if (pEvt->ksPool[i] == HID_KEY_FN) 		// Fn key check
-000C7F 904E52            MOV     DPTR,#pEvt
-000C82 E0                MOVX    A,@DPTR
-000C83 FB                MOV     R3,A
-000C84 A3                INC     DPTR
-000C85 E0                MOVX    A,@DPTR
-000C86 FA                MOV     R2,A
-000C87 A3                INC     DPTR
-000C88 E0                MOVX    A,@DPTR
-000C89 2401              ADD     A,#01H
-000C8B F9                MOV     R1,A
-000C8C E4                CLR     A
-000C8D 3A                ADDC    A,R2
-000C8E FA                MOV     R2,A
-000C8F 7E00              MOV     R6,#00H
-000C91 E9                MOV     A,R1
-000C92 2F                ADD     A,R7
-000C93 F9                MOV     R1,A
-000C94 EE                MOV     A,R6
-000C95 3A                ADDC    A,R2
-000C96 FA                MOV     R2,A
-000C97 1203B6            LCALL   ?C?CLDPTR
-000C9A B4AF06            CJNE    A,#0AFH,?C0046?KB_PROCESS
-  213: 		{
-  214: 			fn_flag = 1;
-000C9D 904DDB            MOV     DPTR,#fn_flag
-000CA0 7401              MOV     A,#01H
-000CA2 F0                MOVX    @DPTR,A
-  215: 		}
-  216: 	}
-000CA3         ?C0046?KB_PROCESS:
-000CA3 904E56            MOV     DPTR,#i
-000CA6 E0                MOVX    A,@DPTR
-000CA7 04                INC     A
-000CA8 F0                MOVX    @DPTR,A
-000CA9 80CA              SJMP    ?C0044?KB_PROCESS
-000CAB         ?C0045?KB_PROCESS:
-  217: 	fn_flag_last = fn_flag;
-000CAB 904DDB            MOV     DPTR,#fn_flag
-000CAE E0                MOVX    A,@DPTR
-000CAF 904DE0            MOV     DPTR,#fn_flag_last
-000CB2 F0                MOVX    @DPTR,A
-  218: 
-  219: 	
-  220: 	if (pEvt == NULL)
-000CB3 904E52            MOV     DPTR,#pEvt
-000CB6 E0                MOVX    A,@DPTR
-000CB7 A3                INC     DPTR
-000CB8 E0                MOVX    A,@DPTR
-000CB9 FA                MOV     R2,A
-000CBA A3                INC     DPTR
-000CBB E0                MOVX    A,@DPTR
-000CBC 4A                ORL     A,R2
-000CBD 7002              JNZ     $ + 4H
-000CBF C1B2              AJMP    ?C0049?KB_PROCESS
-000CC1         ?C0048?KB_PROCESS:
-  221: 		return;
-  222: 
-  223: 	delayChgInvTimer = 10;
-000CC1 904DDE            MOV     DPTR,#delayChgInvTimer
-000CC4 740A              MOV     A,#0AH
-000CC6 F0                MOVX    @DPTR,A
-  224: 	g_variable.sleepTimer = 0;
-000CC7 E4                CLR     A
-000CC8 904CE3            MOV     DPTR,#g_variable+024H
-000CCB F0                MOVX    @DPTR,A
-000CCC A3                INC     DPTR
-000CCD F0                MOVX    @DPTR,A
-  225: 	xmemclear(hidBuff,9);
-000CCE 7B01              MOV     R3,#01H
-000CD0 7A48              MOV     R2,#HIGH hidBuff
-000CD2 7900              MOV     R1,#LOW hidBuff
-000CD4 7D09              MOV     R5,#09H
-000CD6 FC                MOV     R4,A
-000CD7 D1B3              ACALL   _xmemclear
-  226: 	xmemclear(multikey,9);
-000CD9 7B01              MOV     R3,#01H
-000CDB 7A4D              MOV     R2,#HIGH multikey
-000CDD 79E5              MOV     R1,#LOW multikey
-000CDF 7D09              MOV     R5,#09H
-000CE1 7C00              MOV     R4,#00H
-000CE3 D1B3              ACALL   _xmemclear
-  227: 
-  228: 	////////////////////////////2.4g pairing////////////////////////////////////
-  229: 	if ((pEvt->ksPool[0]  == HID_KEY_EQUAL&& pEvt->ksPool[1]  == HID_KEY_ESC) 
-000CE5 904E52            MOV     DPTR,#pEvt
-000CE8 E0                MOVX    A,@DPTR
-000CE9 FB                MOV     R3,A
-000CEA A3                INC     DPTR
-000CEB E0                MOVX    A,@DPTR
-000CEC FA                MOV     R2,A
-000CED A3                INC     DPTR
-000CEE E0                MOVX    A,@DPTR
-000CEF F9                MOV     R1,A
-000CF0 900001            MOV     DPTR,#01H
-000CF3 1203CF            LCALL   ?C?CLDOPTR
-000CF6 FF                MOV     R7,A
-000CF7 B42E0A            CJNE    A,#02EH,?C0052?KB_PROCESS
-000CFA 900002            MOV     DPTR,#02H
-000CFD 1203CF            LCALL   ?C?CLDOPTR
-000D00 6429              XRL     A,#029H
-000D02 600F              JZ      ?C0051?KB_PROCESS
-000D04         ?C0052?KB_PROCESS:
-000D04 EF                MOV     A,R7
-000D05 6429              XRL     A,#029H
-000D07 7036              JNZ     ?C0050?KB_PROCESS
-000D09 900002            MOV     DPTR,#02H
-000D0C 1203CF            LCALL   ?C?CLDOPTR
-000D0F 642E              XRL     A,#02EH
-000D11 702C              JNZ     ?C0050?KB_PROCESS
-000D13         ?C0051?KB_PROCESS:
-  230: 		||(pEvt->ksPool[0]  == HID_KEY_ESC && pEvt->ksPool[1]  == HID_KEY_EQUAL) 
-  231: 		)
-  232: 	{
-  233: 		m_24g_paring_addr[0] = 0x20;
-000D13 904BEB            MOV     DPTR,#m_24g_paring_addr
-000D16 7420              MOV     A,#020H
-000D18 F0                MOVX    @DPTR,A
-  234: 		m_24g_paring_addr[1] = 0x15;
-000D19 A3                INC     DPTR
-000D1A 7415              MOV     A,#015H
-000D1C F0                MOVX    @DPTR,A
-  235: 		m_24g_paring_addr[2] = 0x10;
-000D1D A3                INC     DPTR
-000D1E 7410              MOV     A,#010H
-000D20 F0                MOVX    @DPTR,A
-  236: 		m_24g_paring_addr[3] = 0x05;
-000D21 A3                INC     DPTR
-000D22 7405              MOV     A,#05H
-000D24 F0                MOVX    @DPTR,A
-  237: 		if (g_variable.g24_currentState != CHANGE_TO_24G_PAIRING)
-000D25 904CC5            MOV     DPTR,#g_variable+06H
-000D28 E0                MOVX    A,@DPTR
-000D29 6401              XRL     A,#01H
-000D2B 6009              JZ      ?C0053?KB_PROCESS
-  238: 		{
-  239: 			g_variable.button_flag |= KEY_FLAG_FN_24G_DEVICE_BUTTON;
-000D2D 904CCE            MOV     DPTR,#g_variable+0FH
-000D30 E0                MOVX    A,@DPTR
-000D31 4410              ORL     A,#010H
-000D33 F0                MOVX    @DPTR,A
-  240: 		}
-000D34 8010              SJMP    ?C0055?KB_PROCESS
-000D36         ?C0053?KB_PROCESS:
-  241: 		else
-  242: 		{
-  243: 			g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
-000D36 904CCE            MOV     DPTR,#g_variable+0FH
-000D39 E0                MOVX    A,@DPTR
-000D3A 54EF              ANL     A,#0EFH
-000D3C F0                MOVX    @DPTR,A
-  244: 		}
-  245: 	}
-000D3D 8007              SJMP    ?C0055?KB_PROCESS
-000D3F         ?C0050?KB_PROCESS:
-  246: 	else
-  247: 	{
-  248: 		g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
-000D3F 904CCE            MOV     DPTR,#g_variable+0FH
-000D42 E0                MOVX    A,@DPTR
-000D43 54EF              ANL     A,#0EFH
-000D45 F0                MOVX    @DPTR,A
-  249: 	}
-000D46         ?C0055?KB_PROCESS:
-  250: 
-  251: 	m_power_on_flag = 1;
-000D46 904CB6            MOV     DPTR,#m_power_on_flag
-000D49 7401              MOV     A,#01H
-000D4B F0                MOVX    @DPTR,A
-  252: 	if(g_variable.key_combination_step == CAMBINATION_KEY_PRESS)
-000D4C 904CF4            MOV     DPTR,#g_variable+035H
-000D4F E0                MOVX    A,@DPTR
-000D50 B4012B            CJNE    A,#01H,?C0056?KB_PROCESS
-  253: 	{
-  254: 		hidBuff[0] = HID_REPORTID_1;
-000D53 904800            MOV     DPTR,#hidBuff
-000D56 7401              MOV     A,#01H
-000D58 F0                MOVX    @DPTR,A
-  255: 		hidBuff[1] |= g_variable.key_combination_ctrl;
-000D59 A3                INC     DPTR
-000D5A E0                MOVX    A,@DPTR
-000D5B FF                MOV     R7,A
-000D5C 904CF5            MOV     DPTR,#g_variable+036H
-000D5F E0                MOVX    A,@DPTR
-000D60 FE                MOV     R6,A
-000D61 EF                MOV     A,R7
-000D62 4E                ORL     A,R6
-000D63 904801            MOV     DPTR,#hidBuff+01H
-000D66 F0                MOVX    @DPTR,A
-  256: 		hidBuff[3] = 0x00; 
-000D67 E4                CLR     A
-000D68 904803            MOV     DPTR,#hidBuff+03H
-000D6B F0                MOVX    @DPTR,A
-  257: 		IPC_TxHidData(hidBuff, 9);
-000D6C 7B01              MOV     R3,#01H
-000D6E 7A48              MOV     R2,#HIGH hidBuff
-000D70 7900              MOV     R1,#LOW hidBuff
-000D72 7D09              MOV     R5,#09H
-000D74 12140E            LCALL   _IPC_TxHidData
-  258: 		g_variable.key_combination_step = CAMBINATION_KEY_HOLD;
-000D77 904CF4            MOV     DPTR,#g_variable+035H
-000D7A 7402              MOV     A,#02H
-000D7C F0                MOVX    @DPTR,A
-000D7D 22                RET     
-  259: 		return;
-  260: 	}
-000D7E         ?C0056?KB_PROCESS:
-  261: 
-  262: 	// get 24g led status
-  263: 	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
-000D7E 904CC5            MOV     DPTR,#g_variable+06H
-000D81 E0                MOVX    A,@DPTR
-000D82 6403              XRL     A,#03H
-000D84 7045              JNZ     ?C0057?KB_PROCESS
-  264: 	{
-  265: 		for(i=0; i < KS_BUFF_POLL_LEN-1; i++)
-000D86 904E56            MOV     DPTR,#i
-000D89 F0                MOVX    @DPTR,A
-000D8A         ?C0058?KB_PROCESS:
-000D8A 904E56            MOV     DPTR,#i
-000D8D E0                MOVX    A,@DPTR
-000D8E FF                MOV     R7,A
-000D8F C3                CLR     C
-000D90 9405              SUBB    A,#05H
-000D92 5037              JNC     ?C0057?KB_PROCESS
-  266: 		{
-  267: 			if ((pEvt->ksPool[i] == HID_KEY_CAPS_LOCK) || (pEvt->ksPool[i] == HID_KEY_NUM_LOCK) 
-000D94 904E52            MOV     DPTR,#pEvt
-000D97 E0                MOVX    A,@DPTR
-000D98 FB                MOV     R3,A
-000D99 A3                INC     DPTR
-000D9A E0                MOVX    A,@DPTR
-000D9B FA                MOV     R2,A
-000D9C A3                INC     DPTR
-000D9D E0                MOVX    A,@DPTR
-000D9E 2401              ADD     A,#01H
-000DA0 F9                MOV     R1,A
-000DA1 E4                CLR     A
-000DA2 3A                ADDC    A,R2
-000DA3 FA                MOV     R2,A
-000DA4 7E00              MOV     R6,#00H
-000DA6 E9                MOV     A,R1
-000DA7 2F                ADD     A,R7
-000DA8 F9                MOV     R1,A
-000DA9 EE                MOV     A,R6
-000DAA 3A                ADDC    A,R2
-000DAB FA                MOV     R2,A
-000DAC 1203B6            LCALL   ?C?CLDPTR
-000DAF FF                MOV     R7,A
-000DB0 6439              XRL     A,#039H
-000DB2 6009              JZ      ?C0062?KB_PROCESS
-000DB4 EF                MOV     A,R7
-000DB5 6453              XRL     A,#053H
-000DB7 6004              JZ      ?C0062?KB_PROCESS
-000DB9 EF                MOV     A,R7
-000DBA B44706            CJNE    A,#047H,?C0060?KB_PROCESS
-000DBD         ?C0062?KB_PROCESS:
-  268: 			|| (pEvt->ksPool[i] == HID_KEY_SCROLL_LOCK))
-  269: 			{
-  270: 				get_24g_led_send = 1;
-000DBD 904DD0            MOV     DPTR,#get_24g_led_send
-000DC0 7401              MOV     A,#01H
-000DC2 F0                MOVX    @DPTR,A
-  271: 			}
-  272: 		}
-000DC3         ?C0060?KB_PROCESS:
-000DC3 904E56            MOV     DPTR,#i
-000DC6 E0                MOVX    A,@DPTR
-000DC7 04                INC     A
-000DC8 F0                MOVX    @DPTR,A
-000DC9 80BF              SJMP    ?C0058?KB_PROCESS
-  273: 	}
-000DCB         ?C0057?KB_PROCESS:
-  274: 
-  275: 	kb_multikey_setup(pEvt);
-000DCB 904E52            MOV     DPTR,#pEvt
-000DCE E0                MOVX    A,@DPTR
-000DCF FB                MOV     R3,A
-000DD0 A3                INC     DPTR
-000DD1 E0                MOVX    A,@DPTR
-000DD2 FA                MOV     R2,A
-000DD3 A3                INC     DPTR
-000DD4 E0                MOVX    A,@DPTR
-000DD5 F9                MOV     R1,A
-000DD6 121ED3            LCALL   _kb_multikey_setup
-  276: 	
-  277: 	if (mult_key_status == KEY_PRESS) 
-000DD9 904DE4            MOV     DPTR,#mult_key_status
-000DDC E0                MOVX    A,@DPTR
-000DDD B40112            CJNE    A,#01H,?C0063?KB_PROCESS
-  278: 	{
-  279: 		mult_key_status = KEY_WAIT_RELEASE;
-000DE0 7402              MOV     A,#02H
-000DE2 F0                MOVX    @DPTR,A
-  280: 		multikey[0] = HID_REPORTID_2;	
-000DE3 904DE5            MOV     DPTR,#multikey
-000DE6 F0                MOVX    @DPTR,A
-  281: 		IPC_TxHidData(multikey, 3);
-000DE7 7B01              MOV     R3,#01H
-000DE9 7A4D              MOV     R2,#HIGH multikey
-000DEB 79E5              MOV     R1,#LOW multikey
-000DED 7D03              MOV     R5,#03H
-000DEF 02140E            LJMP    _IPC_TxHidData
-  282: 	}
-000DF2         ?C0063?KB_PROCESS:
-  283: 	else if(mult_key_status == KEY_RELEASE)
-000DF2 904DE4            MOV     DPTR,#mult_key_status
-000DF5 E0                MOVX    A,@DPTR
-000DF6 B40317            CJNE    A,#03H,?C0065?KB_PROCESS
-  284: 	{
-  285: 		mult_key_status = KEY_STANDBY;
-000DF9 E4                CLR     A
-000DFA F0                MOVX    @DPTR,A
-  286: 		mult_key_value = 0;
-000DFB 904DE3            MOV     DPTR,#mult_key_value
-000DFE F0                MOVX    @DPTR,A
-  287: 		multikey[0] = HID_REPORTID_2;	
-000DFF 904DE5            MOV     DPTR,#multikey
-000E02 7402              MOV     A,#02H
-000E04 F0                MOVX    @DPTR,A
-  288: 		IPC_TxHidData(multikey, 3);
-000E05 7B01              MOV     R3,#01H
-000E07 7A4D              MOV     R2,#HIGH multikey
-000E09 79E5              MOV     R1,#LOW multikey
-000E0B 7D03              MOV     R5,#03H
-000E0D 02140E            LJMP    _IPC_TxHidData
-  289: 	}
-000E10         ?C0065?KB_PROCESS:
-  290: 	else 
-  291: 	{
-  292: 		hidBuff[0] = HID_REPORTID_1;
-000E10 904800            MOV     DPTR,#hidBuff
-000E13 7401              MOV     A,#01H
-000E15 F0                MOVX    @DPTR,A
-  293: 		hidBuff[1] = pEvt->standardSel;
-000E16 904E52            MOV     DPTR,#pEvt
-000E19 E0                MOVX    A,@DPTR
-000E1A FB                MOV     R3,A
-000E1B A3                INC     DPTR
-000E1C E0                MOVX    A,@DPTR
-000E1D FA                MOV     R2,A
-000E1E A3                INC     DPTR
-000E1F E0                MOVX    A,@DPTR
-000E20 F9                MOV     R1,A
-000E21 1203B6            LCALL   ?C?CLDPTR
-000E24 904801            MOV     DPTR,#hidBuff+01H
-000E27 F0                MOVX    @DPTR,A
-  294: 		hidBuff[2] = 0;
-000E28 E4                CLR     A
-000E29 A3                INC     DPTR
-000E2A F0                MOVX    @DPTR,A
-  295: 
-  296: 		standard_key_release_flag = 0;
-000E2B 904DD8            MOV     DPTR,#standard_key_release_flag
-000E2E F0                MOVX    @DPTR,A
-  297: 
-  298: 		if (pEvt->ksPool[0] == HID_KEY_FN)
-000E2F 900001            MOV     DPTR,#01H
-000E32 1203CF            LCALL   ?C?CLDOPTR
-000E35 B4AF1E            CJNE    A,#0AFH,?C0067?KB_PROCESS
-  299: 			xmemcpy(&hidBuff[3], &pEvt->ksPool[1], 5);
-000E38 7E48              MOV     R6,#HIGH hidBuff+03H
-000E3A 7F03              MOV     R7,#LOW hidBuff+03H
-000E3C 904E52            MOV     DPTR,#pEvt
-000E3F E0                MOVX    A,@DPTR
-000E40 FB                MOV     R3,A
-000E41 A3                INC     DPTR
-000E42 E0                MOVX    A,@DPTR
-000E43 FA                MOV     R2,A
-000E44 A3                INC     DPTR
-000E45 E0                MOVX    A,@DPTR
-000E46 2402              ADD     A,#02H
-000E48 F9                MOV     R1,A
-000E49 E4                CLR     A
-000E4A 3A                ADDC    A,R2
-000E4B FA                MOV     R2,A
-000E4C 904E51            MOV     DPTR,#?_xmemcpy?BYTE+05H
-000E4F 7405              MOV     A,#05H
-000E51 F0                MOVX    @DPTR,A
-000E52 911A              ACALL   _xmemcpy
-000E54 801C              SJMP    ?C0068?KB_PROCESS
-000E56         ?C0067?KB_PROCESS:
-  300: 		else
-  301: 			xmemcpy(&hidBuff[3], pEvt->ksPool, 6);
-000E56 7E48              MOV     R6,#HIGH hidBuff+03H
-000E58 7F03              MOV     R7,#LOW hidBuff+03H
-000E5A 904E52            MOV     DPTR,#pEvt
-000E5D E0                MOVX    A,@DPTR
-000E5E FB                MOV     R3,A
-000E5F A3                INC     DPTR
-000E60 E0                MOVX    A,@DPTR
-000E61 FA                MOV     R2,A
-000E62 A3                INC     DPTR
-000E63 E0                MOVX    A,@DPTR
-000E64 2401              ADD     A,#01H
-000E66 F9                MOV     R1,A
-000E67 E4                CLR     A
-000E68 3A                ADDC    A,R2
-000E69 FA                MOV     R2,A
-000E6A 904E51            MOV     DPTR,#?_xmemcpy?BYTE+05H
-000E6D 7406              MOV     A,#06H
-000E6F F0                MOVX    @DPTR,A
-000E70 911A              ACALL   _xmemcpy
-000E72         ?C0068?KB_PROCESS:
-  302: 		
-  303: 		for(i = 3; i<9;i++)
-000E72 904E56            MOV     DPTR,#i
-000E75 7403              MOV     A,#03H
-000E77 F0                MOVX    @DPTR,A
-000E78         ?C0069?KB_PROCESS:
-000E78 904E56            MOV     DPTR,#i
-000E7B E0                MOVX    A,@DPTR
-000E7C FF                MOV     R7,A
-000E7D C3                CLR     C
-000E7E 9409              SUBB    A,#09H
-000E80 5025              JNC     ?C0070?KB_PROCESS
-  304: 		{
-  305: 			if (hidBuff[i] == HID_KEY_FN)
-000E82 7400              MOV     A,#LOW hidBuff
-000E84 2F                ADD     A,R7
-000E85 F582              MOV     DPL,A
-000E87 E4                CLR     A
-000E88 3448              ADDC    A,#HIGH hidBuff
-000E8A F583              MOV     DPH,A
-000E8C E0                MOVX    A,@DPTR
-000E8D B4AF0F            CJNE    A,#0AFH,?C0071?KB_PROCESS
-  306: 				hidBuff[i] = 0;
-000E90 904E56            MOV     DPTR,#i
-000E93 E0                MOVX    A,@DPTR
-000E94 2400              ADD     A,#LOW hidBuff
-000E96 F582              MOV     DPL,A
-000E98 E4                CLR     A
-000E99 3448              ADDC    A,#HIGH hidBuff
-000E9B F583              MOV     DPH,A
-000E9D E4                CLR     A
-000E9E F0                MOVX    @DPTR,A
-  307: 		}
-000E9F         ?C0071?KB_PROCESS:
-000E9F 904E56            MOV     DPTR,#i
-000EA2 E0                MOVX    A,@DPTR
-000EA3 04                INC     A
-000EA4 F0                MOVX    @DPTR,A
-000EA5 80D1              SJMP    ?C0069?KB_PROCESS
-000EA7         ?C0070?KB_PROCESS:
-  308: 		
-  309: 		IPC_TxHidData(hidBuff, 9);
-000EA7 7B01              MOV     R3,#01H
-000EA9 7A48              MOV     R2,#HIGH hidBuff
-000EAB 7900              MOV     R1,#LOW hidBuff
-000EAD 7D09              MOV     R5,#09H
-000EAF 12140E            LCALL   _IPC_TxHidData
-  310: 	}
-  311: 	return;
-  312: }
-000EB2         ?C0049?KB_PROCESS:
-000EB2 22                RET     
------ FUNCTION _kb_motion_keyscan (END) -------
-
-
------ FUNCTION _xmemclear (BEGIN) -----
-000EB3 904E7E            MOV     DPTR,#dest
-000EB6 EB                MOV     A,R3
-000EB7 F0                MOVX    @DPTR,A
-000EB8 A3                INC     DPTR
-000EB9 EA                MOV     A,R2
-000EBA F0                MOVX    @DPTR,A
-000EBB A3                INC     DPTR
-000EBC E9                MOV     A,R1
-000EBD F0                MOVX    @DPTR,A
-;---- Variable 'len' assigned to Register 'R4/R5' ----
-000EBE         ?C0008?UTILITIES:
-000EBE ED                MOV     A,R5
-000EBF 1D                DEC     R5
-000EC0 AE04              MOV     R6,AR4
-000EC2 7001              JNZ     ?C0026?UTILITIES
-000EC4 1C                DEC     R4
-000EC5         ?C0026?UTILITIES:
-000EC5 4E                ORL     A,R6
-000EC6 6016              JZ      ?C0010?UTILITIES
-000EC8 904E7E            MOV     DPTR,#dest
-000ECB E0                MOVX    A,@DPTR
-000ECC FB                MOV     R3,A
-000ECD A3                INC     DPTR
-000ECE E4                CLR     A
-000ECF 75F001            MOV     B,#01H
-000ED2 120424            LCALL   ?C?ILDIX
-000ED5 A9F0              MOV     R1,B
-000ED7 FA                MOV     R2,A
-000ED8 E4                CLR     A
-000ED9 1203FC            LCALL   ?C?CSTPTR
-000EDC 80E0              SJMP    ?C0008?UTILITIES
-000EDE         ?C0010?UTILITIES:
-000EDE 22                RET     
------ FUNCTION _xmemclear (END) -------
-
-
------ FUNCTION System_clear_mem (BEGIN) -----
- FILE: 'sys.c'
-   11: static void System_clear_mem()
-   12: {
-   13: 	xmemclear((byte *)&g_variable,sizeof(G_VARIABLE_MAP));
-   14: 	xmemclear(ksSelMapOld,KB_KSCAN_COL_NUM);
-000EDF 7B01              MOV     R3,#01H
-000EE1 7A4C              MOV     R2,#HIGH g_variable
-000EE3 79BF              MOV     R1,#LOW g_variable
-000EE5 7D42              MOV     R5,#042H
-000EE7 7C00              MOV     R4,#00H
-000EE9 D1B3              ACALL   _xmemclear
-   15: 	xmemclear(ksSelMapCheck,KB_KSCAN_COL_NUM);
-000EEB 7B01              MOV     R3,#01H
-000EED 7A4D              MOV     R2,#HIGH ksSelMapOld
-000EEF 7993              MOV     R1,#LOW ksSelMapOld
-000EF1 7D14              MOV     R5,#014H
-000EF3 7C00              MOV     R4,#00H
-000EF5 D1B3              ACALL   _xmemclear
-   16: 	xmemclear(ksSelMapCurr,KB_KSCAN_COL_NUM);
-000EF7 7B01              MOV     R3,#01H
-000EF9 7A4D              MOV     R2,#HIGH ksSelMapCheck
-000EFB 79A8              MOV     R1,#LOW ksSelMapCheck
-000EFD 7D14              MOV     R5,#014H
-000EFF 7C00              MOV     R4,#00H
-000F01 D1B3              ACALL   _xmemclear
-   17: 	xmemclear(hidBuff,9);
-000F03 7B01              MOV     R3,#01H
-000F05 7A4D              MOV     R2,#HIGH ksSelMapCurr
-000F07 79BC              MOV     R1,#LOW ksSelMapCurr
-000F09 7D14              MOV     R5,#014H
-000F0B 7C00              MOV     R4,#00H
-000F0D D1B3              ACALL   _xmemclear
-   18: 	xmemclear(multikey,9);
-000F0F 7B01              MOV     R3,#01H
-000F11 7A48              MOV     R2,#HIGH hidBuff
-000F13 7900              MOV     R1,#LOW hidBuff
-000F15 7D09              MOV     R5,#09H
-000F17 7C00              MOV     R4,#00H
-000F19 D1B3              ACALL   _xmemclear
-   19:  
-000F1B 7B01              MOV     R3,#01H
-000F1D 7A4D              MOV     R2,#HIGH multikey
-000F1F 79E5              MOV     R1,#LOW multikey
-000F21 7D09              MOV     R5,#09H
-000F23 7C00              MOV     R4,#00H
-000F25 D1B3              ACALL   _xmemclear
-   20: 	delayChgInvTimer = 0;
-000F27 E4                CLR     A
-000F28 904DDE            MOV     DPTR,#delayChgInvTimer
-000F2B F0                MOVX    @DPTR,A
-   21: 	action_timeout = 0;
-000F2C 904DE2            MOV     DPTR,#action_timeout
-000F2F F0                MOVX    @DPTR,A
-   22: 
-   23: 
-   24: 	power_on_flag = 0;
-000F30 904DE1            MOV     DPTR,#power_on_flag
-000F33 F0                MOVX    @DPTR,A
-   25: 	repeat_send_24g = 0;
-000F34 904DD6            MOV     DPTR,#repeat_send_24g
-000F37 F0                MOVX    @DPTR,A
-   26: 	get_24g_led_send = 0;
-000F38 904DD0            MOV     DPTR,#get_24g_led_send
-000F3B F0                MOVX    @DPTR,A
-   27: 	press_long_time_flag = 0;
-000F3C 904DDC            MOV     DPTR,#press_long_time_flag
-000F3F F0                MOVX    @DPTR,A
-   28: 	mult_key_status = 0;
-000F40 904DE4            MOV     DPTR,#mult_key_status
-000F43 F0                MOVX    @DPTR,A
-   29: 	long_press_flag = 0;
-000F44 904DD5            MOV     DPTR,#long_press_flag
-000F47 F0                MOVX    @DPTR,A
-   30: 	standard_key_release_flag = 0;
-000F48 904DD8            MOV     DPTR,#standard_key_release_flag
-000F4B F0                MOVX    @DPTR,A
-   31: 	fn_flag = 0;
-000F4C 904DDB            MOV     DPTR,#fn_flag
-000F4F F0                MOVX    @DPTR,A
-   32: 	fn_flag_last = 0;
-000F50 904DE0            MOV     DPTR,#fn_flag_last
-000F53 F0                MOVX    @DPTR,A
-   33: 	fn_tx_flag = 0;
-000F54 904DD3            MOV     DPTR,#fn_tx_flag
-000F57 F0                MOVX    @DPTR,A
-   34: 	fn_lock_flag = 0;
-000F58 904DDF            MOV     DPTR,#fn_lock_flag
-000F5B F0                MOVX    @DPTR,A
-   35: 
-   36: 	mult_key_value = 0;
-000F5C 904DE3            MOV     DPTR,#mult_key_value
-000F5F F0                MOVX    @DPTR,A
-   37: 	m_caps_num_lock_last = 0; 
-000F60 904DD9            MOV     DPTR,#m_caps_num_lock_last
-000F63 F0                MOVX    @DPTR,A
-   38: 	m_reconnect_continue = 0;
-000F64 904D38            MOV     DPTR,#m_reconnect_continue
-000F67 F0                MOVX    @DPTR,A
-   39: }
-000F68 22                RET     
------ FUNCTION System_clear_mem (END) -------
-
-
------ FUNCTION YC_clear_reconnect_flag (BEGIN) -----
+----- FUNCTION YC_update_eeprom_data (BEGIN) -----
  FILE: 'bluetooth.c'
-   42: void YC_clear_reconnect_flag()  
-   43: {
-   44: 	g_variable.recon_count = 0;
-   45: }
-000F69 E4                CLR     A
-000F6A 904CF0            MOV     DPTR,#g_variable+031H
-000F6D F0                MOVX    @DPTR,A
-   46: 
-000F6E 22                RET     
------ FUNCTION YC_clear_reconnect_flag (END) -------
+   67: void YC_update_eeprom_data()
+   68: {
+   69: 	if (g_variable.update_eeprom_flag)				//bt3.0  bt4.2 record information save
+   70: 	{
+0010B4 904CBF            MOV     DPTR,#g_variable
+0010B7 E0                MOVX    A,@DPTR
+0010B8 603B              JZ      ?C0015?BLUETOOTH
+   71: 		Delay1ms(200);
+   72: 		GPIO_Setout(EEPROM_WP_GPIO,0);
+0010BA 7FC8              MOV     R7,#0C8H
+0010BC 119C              ACALL   _Delay1ms
+   73: 		IIC_WriteBlock(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
+0010BE C201              CLR     ?_GPIO_Setout?BIT
+0010C0 7FFF              MOV     R7,#0FFH
+0010C2 120784            LCALL   _GPIO_Setout
+   74: 		IIC_WriteBlock(EEPROM_RECON_INFO_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+0010C5 7B01              MOV     R3,#01H
+0010C7 7A4C              MOV     R2,#HIGH m_24g_addr
+0010C9 7900              MOV     R1,#LOW m_24g_addr
+0010CB 7D04              MOV     R5,#04H
+0010CD 7C00              MOV     R4,#00H
+0010CF 7FF2              MOV     R7,#0F2H
+0010D1 7E3F              MOV     R6,#03FH
+0010D3 11F6              ACALL   _IIC_WriteBlock
+   75: 		GPIO_Setout(EEPROM_WP_GPIO,1);
+0010D5 7B01              MOV     R3,#01H
+0010D7 7A4C              MOV     R2,#HIGH g_variable+02H
+0010D9 79C1              MOV     R1,#LOW g_variable+02H
+0010DB 7D01              MOV     R5,#01H
+0010DD 7C00              MOV     R4,#00H
+0010DF 7FF8              MOV     R7,#0F8H
+0010E1 7E3F              MOV     R6,#03FH
+0010E3 11F6              ACALL   _IIC_WriteBlock
+   76: 		Delay1ms(10);
+0010E5 D201              SETB    ?_GPIO_Setout?BIT
+0010E7 7FFF              MOV     R7,#0FFH
+0010E9 120784            LCALL   _GPIO_Setout
+   77: 		g_variable.update_eeprom_flag = 0;
+0010EC 7F0A              MOV     R7,#0AH
+0010EE 119C              ACALL   _Delay1ms
+   78: 	}
+0010F0 E4                CLR     A
+0010F1 904CBF            MOV     DPTR,#g_variable
+0010F4 F0                MOVX    @DPTR,A
+   79: }
+   80: 
+0010F5         ?C0015?BLUETOOTH:
+0010F5 22                RET     
+----- FUNCTION YC_update_eeprom_data (END) -------
 
 
------ FUNCTION YC_pairing_timerout_500ms (BEGIN) -----
- FILE: 'sys.c'
-  226: void YC_pairing_timerout_500ms()
-  227: {
-  228: //pairing timer
-  229: 	if (g_variable.pairing_g24_timeout != 0)
-000F6F 904CEE            MOV     DPTR,#g_variable+02FH
-000F72 E0                MOVX    A,@DPTR
-000F73 601A              JZ      ?C0047?SYS
-  230: 	{
-  231: 		g_variable.sleepTimer = 0;
-000F75 E4                CLR     A
-000F76 904CE3            MOV     DPTR,#g_variable+024H
-000F79 F0                MOVX    @DPTR,A
-000F7A A3                INC     DPTR
-000F7B F0                MOVX    @DPTR,A
-  232: 		g_variable.pairing_g24_timeout--;
-000F7C 904CEE            MOV     DPTR,#g_variable+02FH
-000F7F E0                MOVX    A,@DPTR
-000F80 14                DEC     A
-000F81 F0                MOVX    @DPTR,A
-  233: 		if (g_variable.pairing_g24_timeout == 0)
-000F82 E0                MOVX    A,@DPTR
-000F83 700A              JNZ     ?C0047?SYS
-  234: 		{
-  235: 			IPC_TxControlCmd(IPC_CMD_STOP_24G);
-000F85 7F22              MOV     R7,#022H
-000F87 11F6              ACALL   _IPC_TxControlCmd
-  236: 			Delay1ms(10);
-000F89 7F0A              MOV     R7,#0AH
-000F8B 517E              ACALL   _Delay1ms
-  237: 			System_long_sleep();
-000F8D 31F2              ACALL   System_long_sleep
-  238: 		}
-  239: 	}
-  240: }
-000F8F         ?C0047?SYS:
-000F8F 22                RET     
------ FUNCTION YC_pairing_timerout_500ms (END) -------
+----- FUNCTION _IIC_WriteBlock (BEGIN) -----
+0010F6 904E20            MOV     DPTR,#addr
+0010F9 EE                MOV     A,R6
+0010FA F0                MOVX    @DPTR,A
+0010FB A3                INC     DPTR
+0010FC EF                MOV     A,R7
+0010FD F0                MOVX    @DPTR,A
+0010FE A3                INC     DPTR
+0010FF EC                MOV     A,R4
+001100 F0                MOVX    @DPTR,A
+001101 A3                INC     DPTR
+001102 ED                MOV     A,R5
+001103 F0                MOVX    @DPTR,A
+001104 A3                INC     DPTR
+001105 EB                MOV     A,R3
+001106 F0                MOVX    @DPTR,A
+001107 A3                INC     DPTR
+001108 EA                MOV     A,R2
+001109 F0                MOVX    @DPTR,A
+00110A A3                INC     DPTR
+00110B E9                MOV     A,R1
+00110C F0                MOVX    @DPTR,A
+00110D         ?C0007?IIC:
+00110D 904E22            MOV     DPTR,#len
+001110 E0                MOVX    A,@DPTR
+001111 7002              JNZ     ?C0012?IIC
+001113 A3                INC     DPTR
+001114 E0                MOVX    A,@DPTR
+001115         ?C0012?IIC:
+001115 7002              JNZ     $ + 4H
+001117 21A2              AJMP    ?C0011?IIC
+001119 904E20            MOV     DPTR,#addr
+00111C E0                MOVX    A,@DPTR
+00111D FE                MOV     R6,A
+00111E A3                INC     DPTR
+00111F E0                MOVX    A,@DPTR
+001120 FF                MOV     R7,A
+001121 440F              ORL     A,#0FH
+001123 2401              ADD     A,#01H
+001125 FD                MOV     R5,A
+001126 E4                CLR     A
+001127 3E                ADDC    A,R6
+001128 FC                MOV     R4,A
+;---- Variable 'cris' assigned to Register 'R4/R5' ----
+001129 C3                CLR     C
+00112A ED                MOV     A,R5
+00112B 9F                SUBB    A,R7
+00112C FF                MOV     R7,A
+00112D EC                MOV     A,R4
+00112E 9E                SUBB    A,R6
+00112F FE                MOV     R6,A
+001130 904E27            MOV     DPTR,#curr_len
+001133 F0                MOVX    @DPTR,A
+001134 A3                INC     DPTR
+001135 EF                MOV     A,R7
+001136 F0                MOVX    @DPTR,A
+001137 904E22            MOV     DPTR,#len
+00113A E0                MOVX    A,@DPTR
+00113B FC                MOV     R4,A
+00113C A3                INC     DPTR
+00113D E0                MOVX    A,@DPTR
+00113E FD                MOV     R5,A
+00113F D3                SETB    C
+001140 9F                SUBB    A,R7
+001141 EC                MOV     A,R4
+001142 9E                SUBB    A,R6
+001143 400A              JC      ?C0009?IIC
+001145 904E27            MOV     DPTR,#curr_len
+001148 E0                MOVX    A,@DPTR
+001149 FE                MOV     R6,A
+00114A A3                INC     DPTR
+00114B E0                MOVX    A,@DPTR
+00114C FF                MOV     R7,A
+00114D 8004              SJMP    ?C0010?IIC
+00114F         ?C0009?IIC:
+00114F AE04              MOV     R6,AR4
+001151 AF05              MOV     R7,AR5
+001153         ?C0010?IIC:
+001153 904E27            MOV     DPTR,#curr_len
+001156 EE                MOV     A,R6
+001157 F0                MOVX    @DPTR,A
+001158 FC                MOV     R4,A
+001159 A3                INC     DPTR
+00115A EF                MOV     A,R7
+00115B F0                MOVX    @DPTR,A
+00115C FD                MOV     R5,A
+00115D C3                CLR     C
+00115E 904E23            MOV     DPTR,#len+01H
+001161 E0                MOVX    A,@DPTR
+001162 9D                SUBB    A,R5
+001163 F0                MOVX    @DPTR,A
+001164 904E22            MOV     DPTR,#len
+001167 E0                MOVX    A,@DPTR
+001168 9C                SUBB    A,R4
+001169 F0                MOVX    @DPTR,A
+00116A 904E20            MOV     DPTR,#addr
+00116D E0                MOVX    A,@DPTR
+00116E FE                MOV     R6,A
+00116F A3                INC     DPTR
+001170 E0                MOVX    A,@DPTR
+001171 FF                MOV     R7,A
+001172 904E24            MOV     DPTR,#pbuff
+001175 E0                MOVX    A,@DPTR
+001176 FB                MOV     R3,A
+001177 A3                INC     DPTR
+001178 E0                MOVX    A,@DPTR
+001179 FA                MOV     R2,A
+00117A A3                INC     DPTR
+00117B E0                MOVX    A,@DPTR
+00117C F9                MOV     R1,A
+00117D D14D              ACALL   _IIC_write
+00117F 7F0A              MOV     R7,#0AH
+001181 119C              ACALL   _Delay1ms
+001183 904E27            MOV     DPTR,#curr_len
+001186 E0                MOVX    A,@DPTR
+001187 FE                MOV     R6,A
+001188 A3                INC     DPTR
+001189 E0                MOVX    A,@DPTR
+00118A FF                MOV     R7,A
+00118B 904E25            MOV     DPTR,#pbuff+01H
+00118E EE                MOV     A,R6
+00118F 8FF0              MOV     B,R7
+001191 12040E            LCALL   ?C?IILDX
+001194 904E21            MOV     DPTR,#addr+01H
+001197 E0                MOVX    A,@DPTR
+001198 2F                ADD     A,R7
+001199 F0                MOVX    @DPTR,A
+00119A 904E20            MOV     DPTR,#addr
+00119D E0                MOVX    A,@DPTR
+00119E 3E                ADDC    A,R6
+00119F F0                MOVX    @DPTR,A
+0011A0 210D              AJMP    ?C0007?IIC
+0011A2         ?C0011?IIC:
+0011A2 22                RET     
+----- FUNCTION _IIC_WriteBlock (END) -------
 
 
------ FUNCTION kb_cb_Timer500ms (BEGIN) -----
+----- FUNCTION _kb_cb_event (BEGIN) -----
  FILE: 'sys.c'
-  290: static void kb_cb_Timer500ms()
-  291: {
-  292: 	LED_timer500ms();	
-  293: 
-000F90 12079D            LCALL   LED_timer500ms
-  294: 	g_variable.sleepTimer++;
-000F93 904CE4            MOV     DPTR,#g_variable+025H
-000F96 E0                MOVX    A,@DPTR
-000F97 04                INC     A
-000F98 F0                MOVX    @DPTR,A
-000F99 7006              JNZ     ?C0095?SYS
-000F9B 904CE3            MOV     DPTR,#g_variable+024H
-000F9E E0                MOVX    A,@DPTR
-000F9F 04                INC     A
-000FA0 F0                MOVX    @DPTR,A
-000FA1         ?C0095?SYS:
-  295: 
-  296: 	YC_adc_check_timer500ms();
-000FA1 1223E9            LCALL   YC_adc_check_timer500ms
-  297: 	YC_connect_timeout_500ms();
-000FA4 31B3              ACALL   YC_connect_timeout_500ms
-  298: 	kb_button_press_timer500ms();
-000FA6 31FB              ACALL   kb_button_press_timer500ms
-  299: 	YC_pairing_timerout_500ms();
-000FA8 80C5              SJMP    YC_pairing_timerout_500ms
-  300: 	
-  301: 	return;
------ FUNCTION kb_cb_Timer500ms (END) -------
-
-
------ FUNCTION YC_start_reconnect (BEGIN) -----
- FILE: 'bluetooth.c'
-   60: void YC_start_reconnect()
-   61: {
-   62: 	power_on_flag = 2;
-   63: 	YC_key_action_handle(KEY_START_24G);
-000FAA 904DE1            MOV     DPTR,#power_on_flag
-000FAD 7402              MOV     A,#02H
-000FAF F0                MOVX    @DPTR,A
-   64: }
-000FB0 7F08              MOV     R7,#08H
-000FB2 0133              AJMP    _YC_key_action_handle
------ FUNCTION YC_start_reconnect (END) -------
-
-
------ FUNCTION IPC_WaitLpm (BEGIN) -----
-000FB4 E4                CLR     A
-000FB5 900B7F            MOV     DPTR,#lpm_flag
-000FB8 F0                MOVX    @DPTR,A
-000FB9 900B7E            MOV     DPTR,#current_task
-000FBC F0                MOVX    @DPTR,A
-000FBD 7F01              MOV     R7,#01H
-000FBF 417E              AJMP    _Delay1ms
------ FUNCTION IPC_WaitLpm (END) -------
-
-
------ FUNCTION KS_Initialize (BEGIN) -----
- FILE: 'keyscan.c'
-  191: void KS_Initialize()
-  192: {
-  193: 	REG_GPIO_SELECT(0) = 0;
-  194: 	REG_GPIO_SELECT(1) = 0;
-000FC1 908080            MOV     DPTR,#08080H
-000FC4 E4                CLR     A
-000FC5 F0                MOVX    @DPTR,A
-  195: 	REG_GPIO_SELECT(2) = 0;
-000FC6 A3                INC     DPTR
-000FC7 F0                MOVX    @DPTR,A
-  196: 	ksRawInitialize();
-000FC8 A3                INC     DPTR
-000FC9 F0                MOVX    @DPTR,A
-  197: 	ksColInitialize();
-000FCA 1210D4            LCALL   ksRawInitialize
-;----                  JMP     ksColInitialize
-  198: }
------ FUNCTION KS_Initialize (END) -------
+   89: static void kb_cb_event(byte evt)
+   90: {
+0011A3 904E92            MOV     DPTR,#evt
+0011A6 EF                MOV     A,R7
+0011A7 F0                MOVX    @DPTR,A
+   91: 	switch (evt) 
+   92: 	{
+0011A8 24D0              ADD     A,#0D0H
+0011AA 6048              JZ      ?C0014?SYS
+0011AC 14                DEC     A
+0011AD 6047              JZ      ?C0016?SYS
+0011AF 14                DEC     A
+0011B0 7002              JNZ     $ + 4H
+0011B2 414E              AJMP    ?C0022?SYS
+0011B4 14                DEC     A
+0011B5 600A              JZ      ?C0013?SYS
+0011B7 24F7              ADD     A,#0F7H
+0011B9 603B              JZ      ?C0016?SYS
+0011BB 240D              ADD     A,#0DH
+0011BD 6002              JZ      $ + 4H
+0011BF 417D              AJMP    ?C0025?SYS
+   93: 	case IPC_EVT_HIBERNATE_WAKE:
+   94: //		System_Hardware_init();
+   95: //		System_Software_init();
+   96: //		break;	
+   97: 	case IPC_EVT_RESET:
+0011C1         ?C0013?SYS:
+   98: 		System_Hardware_init();
+0011C1 712E              ACALL   System_Hardware_init
+   99: 		System_Software_init();
+0011C3 120F5B            LCALL   System_Software_init
+  100: 		IIC_Read(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
+0011C6 7B01              MOV     R3,#01H
+0011C8 7A4C              MOV     R2,#HIGH m_24g_addr
+0011CA 7900              MOV     R1,#LOW m_24g_addr
+0011CC 7D04              MOV     R5,#04H
+0011CE 7C00              MOV     R4,#00H
+0011D0 7FF2              MOV     R7,#0F2H
+0011D2 7E3F              MOV     R6,#03FH
+0011D4 517E              ACALL   _IIC_Read
+  101: 		Delay1ms(10);
+0011D6 7F0A              MOV     R7,#0AH
+0011D8 119C              ACALL   _Delay1ms
+  102: 		IIC_Read(EEPROM_RECON_INFO_SYTEM_MODE,1 , (byte *)g_variable.system_mode);
+0011DA 904CC1            MOV     DPTR,#g_variable+02H
+0011DD E0                MOVX    A,@DPTR
+0011DE F9                MOV     R1,A
+0011DF 7A00              MOV     R2,#00H
+0011E1 7B00              MOV     R3,#00H
+0011E3 7D01              MOV     R5,#01H
+0011E5 7C00              MOV     R4,#00H
+0011E7 7FF8              MOV     R7,#0F8H
+0011E9 7E3F              MOV     R6,#03FH
+0011EB 517E              ACALL   _IIC_Read
+  103: 		Delay1ms(10);
+0011ED 7F0A              MOV     R7,#0AH
+0011EF 119C              ACALL   _Delay1ms
+  104: 		YC_start_reconnect();
+0011F1 020FE3            LJMP    YC_start_reconnect
+  105: 		break;
+  106: 	case IPC_EVT_WAKEUP:
+0011F4         ?C0014?SYS:
+  107: 		KS_Initialize();
+0011F4 6162              AJMP    KS_Initialize
+  108: 		break;
+  109: 
+  110: 		
+  111: // 2.4G event	
+  112: 	case IPC_EVT_24G_PAIRING_COMPLETE:
+  113: 	case IPC_EVT_24G_ATTEMPT_SUCCESS:
+0011F6         ?C0016?SYS:
+  114: 		g_variable.g24_currentState =  CHANGE_TO_24G_CONNECTED;
+0011F6 904CC5            MOV     DPTR,#g_variable+06H
+0011F9 7403              MOV     A,#03H
+0011FB F0                MOVX    @DPTR,A
+  115: 		g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+0011FC E4                CLR     A
+0011FD A3                INC     DPTR
+0011FE F0                MOVX    @DPTR,A
+  116: 		YC_clear_reconnect_flag();
+0011FF 120FC5            LCALL   YC_clear_reconnect_flag
+  117: 		g_variable.pairing_g24_timeout = 0;
+001202 E4                CLR     A
+001203 904CEE            MOV     DPTR,#g_variable+02FH
+001206 F0                MOVX    @DPTR,A
+  118: 		g_variable.release_data = 0;
+001207 904CEB            MOV     DPTR,#g_variable+02CH
+00120A F0                MOVX    @DPTR,A
+  119: 		g_variable.last_device_num = 0xfe;
+00120B 904CC0            MOV     DPTR,#g_variable+01H
+00120E 74FE              MOV     A,#0FEH
+001210 F0                MOVX    @DPTR,A
+  120: 		g_variable.current_device_num = 0xfe;
+001211 904CC3            MOV     DPTR,#g_variable+04H
+001214 F0                MOVX    @DPTR,A
+  121: 
+  122: 		if(evt == IPC_EVT_24G_PAIRING_COMPLETE)
+001215 904E92            MOV     DPTR,#evt
+001218 E0                MOVX    A,@DPTR
+001219 6431              XRL     A,#031H
+00121B 7024              JNZ     ?C0017?SYS
+  123: 		{
+  124: 			g_variable.powerOn_timer = KB_POWERON_LED_ON_TIMER;
+00121D 904CE5            MOV     DPTR,#g_variable+026H
+001220 741E              MOV     A,#01EH
+001222 F0                MOVX    @DPTR,A
+  125: 			if(m_24g_paring_addr[0] != 0x0f || m_24g_paring_addr[1] != 0x0f ||
+001223 904BEB            MOV     DPTR,#m_24g_paring_addr
+001226 E0                MOVX    A,@DPTR
+001227 B40F10            CJNE    A,#0FH,?C0019?SYS
+00122A A3                INC     DPTR
+00122B E0                MOVX    A,@DPTR
+00122C B40F0B            CJNE    A,#0FH,?C0019?SYS
+00122F A3                INC     DPTR
+001230 E0                MOVX    A,@DPTR
+001231 B40F06            CJNE    A,#0FH,?C0019?SYS
+001234 A3                INC     DPTR
+001235 E0                MOVX    A,@DPTR
+001236 640F              XRL     A,#0FH
+001238 6043              JZ      ?C0025?SYS
+00123A         ?C0019?SYS:
+  126: 				m_24g_paring_addr[2] != 0x0f || m_24g_paring_addr[3] != 0x0f)
+  127: 				g_variable.update_eeprom_flag = 1;
+00123A 904CBF            MOV     DPTR,#g_variable
+00123D 7401              MOV     A,#01H
+00123F F0                MOVX    @DPTR,A
+  128: 		}
+001240 22                RET     
+001241         ?C0017?SYS:
+  129: 		else
+  130: 		{
+  131: 			if(!g_variable.powerOn_timer)
+001241 904CE5            MOV     DPTR,#g_variable+026H
+001244 E0                MOVX    A,@DPTR
+001245 7036              JNZ     ?C0025?SYS
+  132: 			GPIO_Setout(G24_LED_GPIO,LED_OFF);
+001247 C201              CLR     ?_GPIO_Setout?BIT
+001249 7F1E              MOV     R7,#01EH
+00124B 020784            LJMP    _GPIO_Setout
+  133: 		}
+  134: 		break;
+  135: 	
+  136: 	case IPC_EVT_24G_ATTEMPT_FAIL:	
+00124E         ?C0022?SYS:
+  137: 		g_variable.g24_currentState =  CHANGE_TO_24G_DISCONNECTED;
+00124E E4                CLR     A
+00124F 904CC5            MOV     DPTR,#g_variable+06H
+001252 F0                MOVX    @DPTR,A
+  138: 		g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+001253 A3                INC     DPTR
+001254 F0                MOVX    @DPTR,A
+  139: 		g_variable.sleepTimer = 0;
+001255 904CE3            MOV     DPTR,#g_variable+024H
+001258 F0                MOVX    @DPTR,A
+001259 A3                INC     DPTR
+00125A F0                MOVX    @DPTR,A
+  140: 		g_variable.release_data = 1;
+00125B 904CEB            MOV     DPTR,#g_variable+02CH
+00125E 04                INC     A
+00125F F0                MOVX    @DPTR,A
+  141: 
+  142: 		if (g_variable.key_action != KEY_NONE)
+001260 904CED            MOV     DPTR,#g_variable+02EH
+001263 E0                MOVX    A,@DPTR
+001264 600B              JZ      ?C0023?SYS
+  143: 		{
+  144: 			YC_clear_reconnect_flag();
+001266 120FC5            LCALL   YC_clear_reconnect_flag
+  145: 			YC_key_action_handle(g_variable.key_action);
+001269 904CED            MOV     DPTR,#g_variable+02EH
+00126C E0                MOVX    A,@DPTR
+00126D FF                MOV     R7,A
+00126E 020FEB            LJMP    _YC_key_action_handle
+  146: 			break;
+  147: 		}
+001271         ?C0023?SYS:
+  148: 
+  149: 		if (g_variable.lockLpm == 1)
+001271 904CEC            MOV     DPTR,#g_variable+02DH
+001274 E0                MOVX    A,@DPTR
+001275 B40105            CJNE    A,#01H,?C0025?SYS
+  150: 		{
+  151: 			g_variable.lockLpm =0;
+001278 E4                CLR     A
+001279 F0                MOVX    @DPTR,A
+  152: 			System_long_sleep();
+00127A 1207F1            LCALL   System_long_sleep
+  153: 			break;
+  154: 		}
+  155: 		break;
+  156: 	}
+  157: }
+00127D         ?C0025?SYS:
+00127D 22                RET     
+----- FUNCTION _kb_cb_event (END) -------
 
 
------ FUNCTION ksColInitialize (BEGIN) -----
- FILE: 'keyscan.c'
-  183: static void ksColInitialize()
-  184: {
-  185: 	byte i = 0;
-  186: 	for (i=0; col[i]!=0; i++) {
-000FCD E4                CLR     A
-000FCE 904E90            MOV     DPTR,#i
-000FD1 F0                MOVX    @DPTR,A
-  187: 		GPIO_SetInput(col[i], 0);
-000FD2 F0                MOVX    @DPTR,A
-000FD3         ?C0060?KEYSCAN:
-000FD3 904E90            MOV     DPTR,#i
-000FD6 E0                MOVX    A,@DPTR
-000FD7 90060C            MOV     DPTR,#col
-000FDA 93                MOVC    A,@A+DPTR
-000FDB FF                MOV     R7,A
-000FDC 600D              JZ      ?C0063?KEYSCAN
-  188: 	}
-000FDE C205              CLR     ?_GPIO_SetInput?BIT
-000FE0 121044            LCALL   _GPIO_SetInput
-  189: }
-000FE3 904E90            MOV     DPTR,#i
-000FE6 E0                MOVX    A,@DPTR
-000FE7 04                INC     A
-000FE8 F0                MOVX    @DPTR,A
-000FE9 80E8              SJMP    ?C0060?KEYSCAN
-  190: 
-000FEB         ?C0063?KEYSCAN:
-000FEB 22                RET     
------ FUNCTION ksColInitialize (END) -------
+----- FUNCTION _IIC_Read (BEGIN) -----
+00127E 904E5C            MOV     DPTR,#len
+001281 EC                MOV     A,R4
+001282 F0                MOVX    @DPTR,A
+001283 A3                INC     DPTR
+001284 ED                MOV     A,R5
+001285 F0                MOVX    @DPTR,A
+001286 A3                INC     DPTR
+001287 EB                MOV     A,R3
+001288 F0                MOVX    @DPTR,A
+001289 A3                INC     DPTR
+00128A EA                MOV     A,R2
+00128B F0                MOVX    @DPTR,A
+00128C A3                INC     DPTR
+00128D E9                MOV     A,R1
+00128E F0                MOVX    @DPTR,A
+;---- Variable 'addr' assigned to Register 'R6/R7' ----
+;---- Variable 'mem_src' assigned to Register 'R6/R7' ----
+00128F 908098            MOV     DPTR,#08098H
+001292 7404              MOV     A,#04H
+001294 F0                MOVX    @DPTR,A
+001295 A3                INC     DPTR
+001296 E4                CLR     A
+001297 F0                MOVX    @DPTR,A
+001298 900CAF            MOV     DPTR,#YC_IICDTbuf
+00129B 74A0              MOV     A,#0A0H
+00129D F0                MOVX    @DPTR,A
+00129E A3                INC     DPTR
+00129F EE                MOV     A,R6
+0012A0 F0                MOVX    @DPTR,A
+0012A1 A3                INC     DPTR
+0012A2 EF                MOV     A,R7
+0012A3 F0                MOVX    @DPTR,A
+0012A4 900CB2            MOV     DPTR,#YC_IICDTbuf+03H
+0012A7 74A1              MOV     A,#0A1H
+0012A9 F0                MOVX    @DPTR,A
+0012AA 7A0C              MOV     R2,#HIGH YC_IICDTbuf
+0012AC 79AF              MOV     R1,#LOW YC_IICDTbuf
+0012AE 7E0C              MOV     R6,#HIGH YC_IICDTbuf
+0012B0 7FAF              MOV     R7,#LOW YC_IICDTbuf
+0012B2 74AF              MOV     A,#LOW YC_IICDTbuf
+0012B4 FC                MOV     R4,A
+0012B5 740C              MOV     A,#HIGH YC_IICDTbuf
+0012B7 FF                MOV     R7,A
+0012B8 EC                MOV     A,R4
+0012B9 FE                MOV     R6,A
+0012BA EF                MOV     A,R7
+0012BB 90809A            MOV     DPTR,#0809AH
+0012BE EE                MOV     A,R6
+0012BF F0                MOVX    @DPTR,A
+0012C0 A3                INC     DPTR
+0012C1 EF                MOV     A,R7
+0012C2 F0                MOVX    @DPTR,A
+0012C3 904E5C            MOV     DPTR,#len
+0012C6 E0                MOVX    A,@DPTR
+0012C7 FC                MOV     R4,A
+0012C8 A3                INC     DPTR
+0012C9 E0                MOVX    A,@DPTR
+0012CA FA                MOV     R2,A
+0012CB EC                MOV     A,R4
+0012CC FF                MOV     R7,A
+0012CD EA                MOV     A,R2
+0012CE FE                MOV     R6,A
+0012CF EF                MOV     A,R7
+0012D0 90809E            MOV     DPTR,#0809EH
+0012D3 EE                MOV     A,R6
+0012D4 F0                MOVX    @DPTR,A
+0012D5 A3                INC     DPTR
+0012D6 EF                MOV     A,R7
+0012D7 F0                MOVX    @DPTR,A
+0012D8 7A0B              MOV     R2,#HIGH IIC_TempBuff
+0012DA 7983              MOV     R1,#LOW IIC_TempBuff
+0012DC 7E0B              MOV     R6,#HIGH IIC_TempBuff
+0012DE 7F83              MOV     R7,#LOW IIC_TempBuff
+0012E0 7483              MOV     A,#LOW IIC_TempBuff
+0012E2 FC                MOV     R4,A
+0012E3 740B              MOV     A,#HIGH IIC_TempBuff
+0012E5 FF                MOV     R7,A
+0012E6 EC                MOV     A,R4
+0012E7 FE                MOV     R6,A
+0012E8 EF                MOV     A,R7
+0012E9 90809C            MOV     DPTR,#0809CH
+0012EC EE                MOV     A,R6
+0012ED F0                MOVX    @DPTR,A
+0012EE A3                INC     DPTR
+0012EF EF                MOV     A,R7
+0012F0 F0                MOVX    @DPTR,A
+0012F1 908090            MOV     DPTR,#08090H
+0012F4 7402              MOV     A,#02H
+0012F6 F0                MOVX    @DPTR,A
+0012F7 90809C            MOV     DPTR,#0809CH
+0012FA A3                INC     DPTR
+0012FB E0                MOVX    A,@DPTR
+0012FC 20E707            JB      ACC.7,?C0004?IIC
+0012FF 908090            MOV     DPTR,#08090H
+001302 E0                MOVX    A,@DPTR
+001303 4401              ORL     A,#01H
+001305 F0                MOVX    @DPTR,A
+001306         ?C0004?IIC:
+001306 908006            MOV     DPTR,#08006H
+001309 E0                MOVX    A,@DPTR
+00130A 4404              ORL     A,#04H
+00130C F0                MOVX    @DPTR,A
+00130D D1E6              ACALL   IIcWaitDone
+00130F 904E5E            MOV     DPTR,#pbuff
+001312 E0                MOVX    A,@DPTR
+001313 A3                INC     DPTR
+001314 E0                MOVX    A,@DPTR
+001315 FA                MOV     R2,A
+001316 A3                INC     DPTR
+001317 E0                MOVX    A,@DPTR
+001318 AE02              MOV     R6,AR2
+00131A FF                MOV     R7,A
+00131B 7B01              MOV     R3,#01H
+00131D 7A0B              MOV     R2,#HIGH IIC_TempBuff
+00131F 7983              MOV     R1,#LOW IIC_TempBuff
+001321 904E5C            MOV     DPTR,#len
+001324 E0                MOVX    A,@DPTR
+001325 A3                INC     DPTR
+001326 E0                MOVX    A,@DPTR
+001327 904E51            MOV     DPTR,#?_xmemcpy?BYTE+05H
+00132A F0                MOVX    @DPTR,A
+00132B 0208DA            LJMP    _xmemcpy
+----- FUNCTION _IIC_Read (END) -------
 
 
 ----- FUNCTION System_Hardware_init (BEGIN) -----
@@ -2160,7 +2871,7 @@
    42: {
    43: 	KS_Initialize();
    44: 	LED_all_shutdown();
-000FEC F1C1              ACALL   KS_Initialize
+00132E 7162              ACALL   KS_Initialize
 ;----                  JMP     LED_all_shutdown
    45: }
 ----- FUNCTION System_Hardware_init (END) -------
@@ -2172,1739 +2883,1027 @@
     5: {
     6: 	GPIO_SetOutput(NUM_LOCK_LED_GPIO,LED_OFF);
     7: 	GPIO_SetOutput(CAPS_LED_GPIO,LED_OFF);
-000FEE C206              CLR     ?_GPIO_SetOutput?BIT
-000FF0 7F10              MOV     R7,#010H
-000FF2 121006            LCALL   _GPIO_SetOutput
+001330 C206              CLR     ?_GPIO_SetOutput?BIT
+001332 7FFF              MOV     R7,#0FFH
+001334 7146              ACALL   _GPIO_SetOutput
     8: 	GPIO_SetOutput(LOWPOWER_LED_GPIO,LED_OFF);
-000FF5 C206              CLR     ?_GPIO_SetOutput?BIT
-000FF7 7F0F              MOV     R7,#0FH
-000FF9 121006            LCALL   _GPIO_SetOutput
+001336 C206              CLR     ?_GPIO_SetOutput?BIT
+001338 7FFF              MOV     R7,#0FFH
+00133A 7146              ACALL   _GPIO_SetOutput
     9: 	GPIO_SetOutput(G24_LED_GPIO,LED_OFF);
-000FFC C206              CLR     ?_GPIO_SetOutput?BIT
-000FFE 7F1D              MOV     R7,#01DH
-001000 1106              ACALL   _GPIO_SetOutput
+00133C C206              CLR     ?_GPIO_SetOutput?BIT
+00133E 7F1E              MOV     R7,#01EH
+001340 7146              ACALL   _GPIO_SetOutput
    10: }
-001002 C206              CLR     ?_GPIO_SetOutput?BIT
-001004 7F1D              MOV     R7,#01DH
+001342 C206              CLR     ?_GPIO_SetOutput?BIT
+001344 7F1E              MOV     R7,#01EH
 ;----                  JMP     _GPIO_SetOutput
 ----- FUNCTION LED_all_shutdown (END) -------
 
 
 ----- FUNCTION _GPIO_SetOutput (BEGIN) -----
 ;---- Variable 'gpio_num' assigned to Register 'R4' ----
-001006 AC07              MOV     R4,AR7
-001008 EC                MOV     A,R4
-001009 F4                CPL     A
-00100A 6015              JZ      ?C0017?GPIO
-00100C         ?C0016?GPIO:
-00100C AF04              MOV     R7,AR4
-00100E D204              SETB    ?_GPIO_Setoe?BIT
-001010 1133              ACALL   _GPIO_Setoe
-001012 AF04              MOV     R7,AR4
-001014 A206              MOV     C,st
-001016 9201              MOV     ?_GPIO_Setout?BIT,C
-001018 12078B            LCALL   _GPIO_Setout
-00101B AF04              MOV     R7,AR4
-00101D C202              CLR     ?_GPIO_SetPu?BIT
-00101F 1122              ACALL   _GPIO_SetPu
-001021         ?C0017?GPIO:
-001021 22                RET     
+001346 AC07              MOV     R4,AR7
+001348 EC                MOV     A,R4
+001349 F4                CPL     A
+00134A 6015              JZ      ?C0017?GPIO
+00134C         ?C0016?GPIO:
+00134C AF04              MOV     R7,AR4
+00134E D204              SETB    ?_GPIO_Setoe?BIT
+001350 B1AD              ACALL   _GPIO_Setoe
+001352 AF04              MOV     R7,AR4
+001354 A206              MOV     C,st
+001356 9201              MOV     ?_GPIO_Setout?BIT,C
+001358 120784            LCALL   _GPIO_Setout
+00135B AF04              MOV     R7,AR4
+00135D C202              CLR     ?_GPIO_SetPu?BIT
+00135F B17E              ACALL   _GPIO_SetPu
+001361         ?C0017?GPIO:
+001361 22                RET     
 ----- FUNCTION _GPIO_SetOutput (END) -------
 
 
------ FUNCTION _GPIO_SetPu (BEGIN) -----
-;---- Variable 'gpio_num' assigned to Register 'R7' ----
-001022 EF                MOV     A,R7
-001023 F4                CPL     A
-001024 600C              JZ      ?C0009?GPIO
-001026         ?C0008?GPIO:
-001026 7B01              MOV     R3,#01H
-001028 7A80              MOV     R2,#080H
-00102A 7978              MOV     R1,#078H
-00102C A202              MOV     C,bit_val
-00102E 9200              MOV     ?_gpioSetBit?BIT,C
-001030 1173              ACALL   _gpioSetBit
-001032         ?C0009?GPIO:
-001032 22                RET     
------ FUNCTION _GPIO_SetPu (END) -------
-
-
------ FUNCTION _GPIO_Setoe (BEGIN) -----
-;---- Variable 'gpio_num' assigned to Register 'R7' ----
-001033 EF                MOV     A,R7
-001034 F4                CPL     A
-001035 600C              JZ      ?C0013?GPIO
-001037         ?C0012?GPIO:
-001037 7B01              MOV     R3,#01H
-001039 7A80              MOV     R2,#080H
-00103B 7970              MOV     R1,#070H
-00103D A204              MOV     C,bit_val
-00103F 9200              MOV     ?_gpioSetBit?BIT,C
-001041 1173              ACALL   _gpioSetBit
-001043         ?C0013?GPIO:
-001043 22                RET     
------ FUNCTION _GPIO_Setoe (END) -------
-
-
------ FUNCTION _GPIO_SetInput (BEGIN) -----
-;---- Variable 'gpio_num' assigned to Register 'R4' ----
-001044 AC07              MOV     R4,AR7
-001046 EC                MOV     A,R4
-001047 F4                CPL     A
-001048 6017              JZ      ?C0015?GPIO
-00104A         ?C0014?GPIO:
-00104A AF04              MOV     R7,AR4
-00104C A205              MOV     C,st
-00104E 9203              MOV     ?_GPIO_SetPd?BIT,C
-001050 1162              ACALL   _GPIO_SetPd
-001052 AF04              MOV     R7,AR4
-001054 A205              MOV     C,st
-001056 B3                CPL     C
-001057 9202              MOV     ?_GPIO_SetPu?BIT,C
-001059 1122              ACALL   _GPIO_SetPu
-00105B AF04              MOV     R7,AR4
-00105D C204              CLR     ?_GPIO_Setoe?BIT
-00105F 1133              ACALL   _GPIO_Setoe
-001061         ?C0015?GPIO:
-001061 22                RET     
------ FUNCTION _GPIO_SetInput (END) -------
-
-
------ FUNCTION _GPIO_SetPd (BEGIN) -----
-;---- Variable 'gpio_num' assigned to Register 'R7' ----
-001062 EF                MOV     A,R7
-001063 F4                CPL     A
-001064 600C              JZ      ?C0011?GPIO
-001066         ?C0010?GPIO:
-001066 7B01              MOV     R3,#01H
-001068 7A80              MOV     R2,#080H
-00106A 797C              MOV     R1,#07CH
-00106C A203              MOV     C,bit_val
-00106E 9200              MOV     ?_gpioSetBit?BIT,C
-001070 1173              ACALL   _gpioSetBit
-001072         ?C0011?GPIO:
-001072 22                RET     
------ FUNCTION _GPIO_SetPd (END) -------
-
-
------ FUNCTION _gpioSetBit (BEGIN) -----
-001073 904E84            MOV     DPTR,#reg_base
-001076 EB                MOV     A,R3
-001077 F0                MOVX    @DPTR,A
-001078 A3                INC     DPTR
-001079 EA                MOV     A,R2
-00107A F0                MOVX    @DPTR,A
-00107B A3                INC     DPTR
-00107C E9                MOV     A,R1
-00107D F0                MOVX    @DPTR,A
-;---- Variable 'gpio_num' assigned to Register 'R7' ----
-;---- Variable 'queue' assigned to Register 'R6' ----
-00107E E4                CLR     A
-00107F FE                MOV     R6,A
-;---- Variable 'group' assigned to Register 'R5' ----
-001080 FD                MOV     R5,A
-001081 EF                MOV     A,R7
-001082 5407              ANL     A,#07H
-001084 FE                MOV     R6,A
-001085 EF                MOV     A,R7
-001086 13                RRC     A
-001087 13                RRC     A
-001088 13                RRC     A
-001089 5403              ANL     A,#03H
-00108B FD                MOV     R5,A
-00108C 300022            JNB     bit_val,?C0001?GPIO
-00108F 904E84            MOV     DPTR,#reg_base
-001092 E0                MOVX    A,@DPTR
-001093 FB                MOV     R3,A
-001094 A3                INC     DPTR
-001095 E0                MOVX    A,@DPTR
-001096 FA                MOV     R2,A
-001097 A3                INC     DPTR
-001098 E0                MOVX    A,@DPTR
-001099 2D                ADD     A,R5
-00109A F9                MOV     R1,A
-00109B E4                CLR     A
-00109C 3A                ADDC    A,R2
-00109D FA                MOV     R2,A
-00109E 1203B6            LCALL   ?C?CLDPTR
-0010A1 FF                MOV     R7,A
-0010A2 7401              MOV     A,#01H
-0010A4 A806              MOV     R0,AR6
-0010A6 08                INC     R0
-0010A7 8002              SJMP    ?C0031?GPIO
-0010A9         ?C0030?GPIO:
-0010A9 C3                CLR     C
-0010AA 33                RLC     A
-0010AB         ?C0031?GPIO:
-0010AB D8FC              DJNZ    R0,?C0030?GPIO
-0010AD 4F                ORL     A,R7
-0010AE 0203FC            LJMP    ?C?CSTPTR
-0010B1         ?C0001?GPIO:
-0010B1 904E84            MOV     DPTR,#reg_base
-0010B4 E0                MOVX    A,@DPTR
-0010B5 FB                MOV     R3,A
-0010B6 A3                INC     DPTR
-0010B7 E0                MOVX    A,@DPTR
-0010B8 FA                MOV     R2,A
-0010B9 A3                INC     DPTR
-0010BA E0                MOVX    A,@DPTR
-0010BB 2D                ADD     A,R5
-0010BC F9                MOV     R1,A
-0010BD E4                CLR     A
-0010BE 3A                ADDC    A,R2
-0010BF FA                MOV     R2,A
-0010C0 1203B6            LCALL   ?C?CLDPTR
-0010C3 FF                MOV     R7,A
-0010C4 7401              MOV     A,#01H
-0010C6 A806              MOV     R0,AR6
-0010C8 08                INC     R0
-0010C9 8002              SJMP    ?C0033?GPIO
-0010CB         ?C0032?GPIO:
-0010CB C3                CLR     C
-0010CC 33                RLC     A
-0010CD         ?C0033?GPIO:
-0010CD D8FC              DJNZ    R0,?C0032?GPIO
-0010CF F4                CPL     A
-0010D0 5F                ANL     A,R7
-0010D1 0203FC            LJMP    ?C?CSTPTR
------ FUNCTION _gpioSetBit (END) -------
-
-
------ FUNCTION ksRawInitialize (BEGIN) -----
+----- FUNCTION KS_Initialize (BEGIN) -----
  FILE: 'keyscan.c'
-  174: static void ksRawInitialize()
-  175: {
-  176: 	byte i = 0;
-  177: 	
-0010D4 E4                CLR     A
-0010D5 904E8F            MOV     DPTR,#i
-0010D8 F0                MOVX    @DPTR,A
-  178: 	for (i=0; i<8; i++) {
-0010D9 F0                MOVX    @DPTR,A
-0010DA         ?C0056?KEYSCAN:
-0010DA 904E8F            MOV     DPTR,#i
-0010DD E0                MOVX    A,@DPTR
-0010DE FF                MOV     R7,A
-0010DF C3                CLR     C
-0010E0 9408              SUBB    A,#08H
-0010E2 500C              JNC     ?C0059?KEYSCAN
-  179: 		GPIO_SetInput(i, 0);
-0010E4 C205              CLR     ?_GPIO_SetInput?BIT
-0010E6 1144              ACALL   _GPIO_SetInput
-  180: 	}
-0010E8 904E8F            MOV     DPTR,#i
-0010EB E0                MOVX    A,@DPTR
-0010EC 04                INC     A
-0010ED F0                MOVX    @DPTR,A
-0010EE 80EA              SJMP    ?C0056?KEYSCAN
-  181: }
-0010F0         ?C0059?KEYSCAN:
-0010F0 22                RET     
------ FUNCTION ksRawInitialize (END) -------
-
-
------ FUNCTION YC_update_eeprom_data (BEGIN) -----
- FILE: 'bluetooth.c'
-   67: void YC_update_eeprom_data()
-   68: {
-   69: 	if (g_variable.update_eeprom_flag)				//bt3.0  bt4.2 record information save
-   70: 	{
-0010F1 904CBF            MOV     DPTR,#g_variable
-0010F4 E0                MOVX    A,@DPTR
-0010F5 603D              JZ      ?C0015?BLUETOOTH
-   71: 		Delay1ms(200);
-   72: 		GPIO_Setout(EEPROM_WP_GPIO,0);
-0010F7 7FC8              MOV     R7,#0C8H
-0010F9 120A7E            LCALL   _Delay1ms
-   73: 		IIC_WriteBlock(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
-0010FC C201              CLR     ?_GPIO_Setout?BIT
-0010FE 7FFF              MOV     R7,#0FFH
-001100 12078B            LCALL   _GPIO_Setout
-   74: 		IIC_WriteBlock(EEPROM_RECON_INFO_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
-001103 7B01              MOV     R3,#01H
-001105 7A4C              MOV     R2,#HIGH m_24g_addr
-001107 7900              MOV     R1,#LOW m_24g_addr
-001109 7D04              MOV     R5,#04H
-00110B 7C00              MOV     R4,#00H
-00110D 7FF2              MOV     R7,#0F2H
-00110F 7E3F              MOV     R6,#03FH
-001111 3135              ACALL   _IIC_WriteBlock
-   75: 		GPIO_Setout(EEPROM_WP_GPIO,1);
-001113 7B01              MOV     R3,#01H
-001115 7A4C              MOV     R2,#HIGH g_variable+02H
-001117 79C1              MOV     R1,#LOW g_variable+02H
-001119 7D01              MOV     R5,#01H
-00111B 7C00              MOV     R4,#00H
-00111D 7FF8              MOV     R7,#0F8H
-00111F 7E3F              MOV     R6,#03FH
-001121 3135              ACALL   _IIC_WriteBlock
-   76: 		Delay1ms(10);
-001123 D201              SETB    ?_GPIO_Setout?BIT
-001125 7FFF              MOV     R7,#0FFH
-001127 12078B            LCALL   _GPIO_Setout
-   77: 		g_variable.update_eeprom_flag = 0;
-00112A 7F0A              MOV     R7,#0AH
-00112C 120A7E            LCALL   _Delay1ms
-   78: 	}
-00112F E4                CLR     A
-001130 904CBF            MOV     DPTR,#g_variable
-001133 F0                MOVX    @DPTR,A
-   79: }
-   80: 
-001134         ?C0015?BLUETOOTH:
-001134 22                RET     
------ FUNCTION YC_update_eeprom_data (END) -------
+  206: void KS_Initialize()
+  207: {
+  208: 	REG_GPIO_SELECT(0) = 0;
+  209: 	REG_GPIO_SELECT(1) = 0;
+001362 908080            MOV     DPTR,#08080H
+001365 E4                CLR     A
+001366 F0                MOVX    @DPTR,A
+  210: 	REG_GPIO_SELECT(2) = 0;
+001367 A3                INC     DPTR
+001368 F0                MOVX    @DPTR,A
+  211: 	ksRawInitialize();
+001369 A3                INC     DPTR
+00136A F0                MOVX    @DPTR,A
+  212: 	ksColInitialize();
+00136B D130              ACALL   ksRawInitialize
+;----                  JMP     ksColInitialize
+  213: }
+----- FUNCTION KS_Initialize (END) -------
 
 
------ FUNCTION _IIC_WriteBlock (BEGIN) -----
-001135 904E20            MOV     DPTR,#addr
-001138 EE                MOV     A,R6
-001139 F0                MOVX    @DPTR,A
-00113A A3                INC     DPTR
-00113B EF                MOV     A,R7
-00113C F0                MOVX    @DPTR,A
-00113D A3                INC     DPTR
-00113E EC                MOV     A,R4
-00113F F0                MOVX    @DPTR,A
-001140 A3                INC     DPTR
-001141 ED                MOV     A,R5
-001142 F0                MOVX    @DPTR,A
-001143 A3                INC     DPTR
-001144 EB                MOV     A,R3
-001145 F0                MOVX    @DPTR,A
-001146 A3                INC     DPTR
-001147 EA                MOV     A,R2
-001148 F0                MOVX    @DPTR,A
-001149 A3                INC     DPTR
-00114A E9                MOV     A,R1
-00114B F0                MOVX    @DPTR,A
-00114C         ?C0007?IIC:
-00114C 904E22            MOV     DPTR,#len
-00114F E0                MOVX    A,@DPTR
-001150 7002              JNZ     ?C0012?IIC
-001152 A3                INC     DPTR
-001153 E0                MOVX    A,@DPTR
-001154         ?C0012?IIC:
-001154 7002              JNZ     $ + 4H
-001156 21E2              AJMP    ?C0011?IIC
-001158 904E20            MOV     DPTR,#addr
-00115B E0                MOVX    A,@DPTR
-00115C FE                MOV     R6,A
-00115D A3                INC     DPTR
-00115E E0                MOVX    A,@DPTR
-00115F FF                MOV     R7,A
-001160 440F              ORL     A,#0FH
-001162 2401              ADD     A,#01H
-001164 FD                MOV     R5,A
-001165 E4                CLR     A
-001166 3E                ADDC    A,R6
-001167 FC                MOV     R4,A
-;---- Variable 'cris' assigned to Register 'R4/R5' ----
-001168 C3                CLR     C
-001169 ED                MOV     A,R5
-00116A 9F                SUBB    A,R7
-00116B FF                MOV     R7,A
-00116C EC                MOV     A,R4
-00116D 9E                SUBB    A,R6
-00116E FE                MOV     R6,A
-00116F 904E27            MOV     DPTR,#curr_len
-001172 F0                MOVX    @DPTR,A
-001173 A3                INC     DPTR
-001174 EF                MOV     A,R7
-001175 F0                MOVX    @DPTR,A
-001176 904E22            MOV     DPTR,#len
-001179 E0                MOVX    A,@DPTR
-00117A FC                MOV     R4,A
-00117B A3                INC     DPTR
-00117C E0                MOVX    A,@DPTR
-00117D FD                MOV     R5,A
-00117E D3                SETB    C
-00117F 9F                SUBB    A,R7
-001180 EC                MOV     A,R4
-001181 9E                SUBB    A,R6
-001182 400A              JC      ?C0009?IIC
-001184 904E27            MOV     DPTR,#curr_len
-001187 E0                MOVX    A,@DPTR
-001188 FE                MOV     R6,A
-001189 A3                INC     DPTR
-00118A E0                MOVX    A,@DPTR
-00118B FF                MOV     R7,A
-00118C 8004              SJMP    ?C0010?IIC
-00118E         ?C0009?IIC:
-00118E AE04              MOV     R6,AR4
-001190 AF05              MOV     R7,AR5
-001192         ?C0010?IIC:
-001192 904E27            MOV     DPTR,#curr_len
-001195 EE                MOV     A,R6
-001196 F0                MOVX    @DPTR,A
-001197 FC                MOV     R4,A
-001198 A3                INC     DPTR
-001199 EF                MOV     A,R7
-00119A F0                MOVX    @DPTR,A
-00119B FD                MOV     R5,A
-00119C C3                CLR     C
-00119D 904E23            MOV     DPTR,#len+01H
-0011A0 E0                MOVX    A,@DPTR
-0011A1 9D                SUBB    A,R5
-0011A2 F0                MOVX    @DPTR,A
-0011A3 904E22            MOV     DPTR,#len
-0011A6 E0                MOVX    A,@DPTR
-0011A7 9C                SUBB    A,R4
-0011A8 F0                MOVX    @DPTR,A
-0011A9 904E20            MOV     DPTR,#addr
-0011AC E0                MOVX    A,@DPTR
-0011AD FE                MOV     R6,A
-0011AE A3                INC     DPTR
-0011AF E0                MOVX    A,@DPTR
-0011B0 FF                MOV     R7,A
-0011B1 904E24            MOV     DPTR,#pbuff
-0011B4 E0                MOVX    A,@DPTR
-0011B5 FB                MOV     R3,A
-0011B6 A3                INC     DPTR
-0011B7 E0                MOVX    A,@DPTR
-0011B8 FA                MOV     R2,A
-0011B9 A3                INC     DPTR
-0011BA E0                MOVX    A,@DPTR
-0011BB F9                MOV     R1,A
-0011BC D142              ACALL   _IIC_write
-0011BE 7F0A              MOV     R7,#0AH
-0011C0 120A7E            LCALL   _Delay1ms
-0011C3 904E27            MOV     DPTR,#curr_len
-0011C6 E0                MOVX    A,@DPTR
-0011C7 FE                MOV     R6,A
-0011C8 A3                INC     DPTR
-0011C9 E0                MOVX    A,@DPTR
-0011CA FF                MOV     R7,A
-0011CB 904E25            MOV     DPTR,#pbuff+01H
-0011CE EE                MOV     A,R6
-0011CF 8FF0              MOV     B,R7
-0011D1 12040E            LCALL   ?C?IILDX
-0011D4 904E21            MOV     DPTR,#addr+01H
-0011D7 E0                MOVX    A,@DPTR
-0011D8 2F                ADD     A,R7
-0011D9 F0                MOVX    @DPTR,A
-0011DA 904E20            MOV     DPTR,#addr
-0011DD E0                MOVX    A,@DPTR
-0011DE 3E                ADDC    A,R6
-0011DF F0                MOVX    @DPTR,A
-0011E0 214C              AJMP    ?C0007?IIC
-0011E2         ?C0011?IIC:
-0011E2 22                RET     
------ FUNCTION _IIC_WriteBlock (END) -------
+----- FUNCTION ksColInitialize (BEGIN) -----
+ FILE: 'keyscan.c'
+  198: static void ksColInitialize()
+  199: {
+  200: 	byte i = 0;
+  201: 	for (i=0; col[i]!=0; i++) {
+00136D E4                CLR     A
+00136E 904E90            MOV     DPTR,#i
+001371 F0                MOVX    @DPTR,A
+  202: 		GPIO_SetInput(col[i], 0);
+001372 F0                MOVX    @DPTR,A
+001373         ?C0032?KEYSCAN:
+001373 904E90            MOV     DPTR,#i
+001376 E0                MOVX    A,@DPTR
+001377 90060C            MOV     DPTR,#col
+00137A 93                MOVC    A,@A+DPTR
+00137B FF                MOV     R7,A
+00137C 600C              JZ      ?C0035?KEYSCAN
+  203: 	}
+00137E C205              CLR     ?_GPIO_SetInput?BIT
+001380 B18F              ACALL   _GPIO_SetInput
+  204: }
+001382 904E90            MOV     DPTR,#i
+001385 E0                MOVX    A,@DPTR
+001386 04                INC     A
+001387 F0                MOVX    @DPTR,A
+001388 80E9              SJMP    ?C0032?KEYSCAN
+  205: 
+00138A         ?C0035?KEYSCAN:
+00138A 22                RET     
+----- FUNCTION ksColInitialize (END) -------
 
 
 ----- FUNCTION YC_System_Main (BEGIN) -----
  FILE: 'sys.c'
-  385: void YC_System_Main(void)
-  386: {
-  387: 	kb_cb_init();
-  388: 	while(1) {
-0011E3 9199              ACALL   kb_cb_init
-0011E5         ?C0081?SYS:
-  389: 		IPC_DealSingleStep();
-  390: 		kb_need_keyscan();
-0011E5 D1E3              ACALL   IPC_DealSingleStep
-  391: 		YC_update_eeprom_data();
-0011E7 717F              ACALL   kb_need_keyscan
-  392: 		LED_handle();
-0011E9 11F1              ACALL   YC_update_eeprom_data
-  393: 		
-0011EB 1206CF            LCALL   LED_handle
-  394: 		switch (current_task) {
-0011EE 900B7E            MOV     DPTR,#current_task
-0011F1 E0                MOVX    A,@DPTR
-0011F2 14                DEC     A
-0011F3 600E              JZ      ?C0087?SYS
-0011F5 24FE              ADD     A,#0FEH
-0011F7 70EC              JNZ     ?C0081?SYS
-  395: 		case FIX_ENTER_HIBERNATE:
-0011F9         ?C0084?SYS:
-  396: 			KS_Unistall();
-0011F9 5135              ACALL   KS_Unistall
-  397: 			//GPIO_SetWakeupByCurrentState(BT_BUTTON_GPIO);
-  398: 			LED_all_shutdown();
-0011FB 120FEE            LCALL   LED_all_shutdown
-  399: 			IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
-0011FE 120FB4            LCALL   IPC_WaitLpm
-001201         ?C0085?SYS:
-  400: 			while(1);
-001201 80FE              SJMP    ?C0085?SYS
-  401: 			break;
-  402: 			
-  403: 		case FIX_ENTER_LPM:
-001203         ?C0087?SYS:
-  404: 			if (g_variable.delay_enter_lpm_timer ||g_variable.lockLpm ||g_variable.powerOn_timer ||
-001203 904CEA            MOV     DPTR,#g_variable+02BH
-001206 E0                MOVX    A,@DPTR
-001207 701E              JNZ     ?C0089?SYS
-001209 904CEC            MOV     DPTR,#g_variable+02DH
-00120C E0                MOVX    A,@DPTR
-00120D 7018              JNZ     ?C0089?SYS
-00120F 904CE5            MOV     DPTR,#g_variable+026H
-001212 E0                MOVX    A,@DPTR
-001213 7012              JNZ     ?C0089?SYS
-001215 904CE7            MOV     DPTR,#g_variable+028H
-001218 E0                MOVX    A,@DPTR
-001219 700C              JNZ     ?C0089?SYS
-00121B 904CE6            MOV     DPTR,#g_variable+027H
-00121E E0                MOVX    A,@DPTR
-00121F 7006              JNZ     ?C0089?SYS
-001221 904CE8            MOV     DPTR,#g_variable+029H
-001224 E0                MOVX    A,@DPTR
-001225 6004              JZ      ?C0088?SYS
-001227         ?C0089?SYS:
-  405: 			g_variable.sys_capslockled_on_timer ||g_variable.sys_numlockled_on_timer || g_variable.sys_scrolllockled_on_ti
->> mer) 
-  406: 			{
-  407: 				IPC_AbandonLpm();
-001227 F1B3              ACALL   IPC_AbandonLpm
-  408: 				break;
-001229 80BA              SJMP    ?C0081?SYS
-  409: 			}
-00122B         ?C0088?SYS:
-  410: 			else
-  411: 			{
-  412: 				KS_Unistall();
-00122B 5135              ACALL   KS_Unistall
-  413: 				IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
-00122D 120FB4            LCALL   IPC_WaitLpm
-  414: 				break;
-001230 80B3              SJMP    ?C0081?SYS
-  415: 			}
-  416: 		}
-  417: 	}
-001232 80B1              SJMP    ?C0081?SYS
-001234 22                RET     
+  386: void YC_System_Main(void)
+  387: {
+  388: 	kb_cb_init();
+  389: 	while(1) {
+00138B B126              ACALL   kb_cb_init
+00138D         ?C0081?SYS:
+  390: 		IPC_DealSingleStep();
+  391: 		kb_need_keyscan();
+00138D D1EE              ACALL   IPC_DealSingleStep
+  392: 		YC_update_eeprom_data();
+00138F 120E47            LCALL   kb_need_keyscan
+  393: 		LED_handle();
+001392 11B4              ACALL   YC_update_eeprom_data
+  394: 		
+001394 1206CF            LCALL   LED_handle
+  395: 		switch (current_task) {
+001397 900B7E            MOV     DPTR,#current_task
+00139A E0                MOVX    A,@DPTR
+00139B 14                DEC     A
+00139C 600C              JZ      ?C0087?SYS
+00139E 24FE              ADD     A,#0FEH
+0013A0 70EB              JNZ     ?C0081?SYS
+  396: 		case FIX_ENTER_HIBERNATE:
+0013A2         ?C0084?SYS:
+  397: 			KS_Unistall();
+0013A2 71CF              ACALL   KS_Unistall
+  398: 			//GPIO_SetWakeupByCurrentState(BT_BUTTON_GPIO);
+  399: 			LED_all_shutdown();
+0013A4 7130              ACALL   LED_all_shutdown
+  400: 			IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
+0013A6 B119              ACALL   IPC_WaitLpm
+0013A8         ?C0085?SYS:
+  401: 			while(1);
+0013A8 80FE              SJMP    ?C0085?SYS
+  402: 			break;
+  403: 			
+  404: 		case FIX_ENTER_LPM:
+0013AA         ?C0087?SYS:
+  405: 			if (g_variable.delay_enter_lpm_timer ||g_variable.lockLpm ||g_variable.powerOn_timer ||g_variable.one_key_pres
+>> s_wait_release_timer
+0013AA 904CEA            MOV     DPTR,#g_variable+02BH
+0013AD E0                MOVX    A,@DPTR
+0013AE 7012              JNZ     ?C0089?SYS
+0013B0 904CEC            MOV     DPTR,#g_variable+02DH
+0013B3 E0                MOVX    A,@DPTR
+0013B4 700C              JNZ     ?C0089?SYS
+0013B6 904CE5            MOV     DPTR,#g_variable+026H
+0013B9 E0                MOVX    A,@DPTR
+0013BA 7006              JNZ     ?C0089?SYS
+0013BC 904CF8            MOV     DPTR,#g_variable+039H
+0013BF E0                MOVX    A,@DPTR
+0013C0 6004              JZ      ?C0088?SYS
+0013C2         ?C0089?SYS:
+  406: 			) 
+  407: 			{
+  408: 				IPC_AbandonLpm();
+0013C2 F1B7              ACALL   IPC_AbandonLpm
+  409: 				break;
+0013C4 80C7              SJMP    ?C0081?SYS
+  410: 			}
+0013C6         ?C0088?SYS:
+  411: 			else
+  412: 			{
+  413: 				KS_Unistall();
+0013C6 71CF              ACALL   KS_Unistall
+  414: 				IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
+0013C8 B119              ACALL   IPC_WaitLpm
+  415: 				break;
+0013CA 80C1              SJMP    ?C0081?SYS
+  416: 			}
+  417: 		}
+  418: 	}
+0013CC 80BF              SJMP    ?C0081?SYS
+0013CE 22                RET     
 ----- FUNCTION YC_System_Main (END) -------
 
 
 ----- FUNCTION KS_Unistall (BEGIN) -----
  FILE: 'keyscan.c'
-  200: void KS_Unistall()
-  201: {
-  202: 	byte i = 0;
-  203: 	byte temp = 0;
+  215: void KS_Unistall()
+  216: {
+  217: 	byte i = 0;
+  218: 	byte temp = 0;
 ;---- Variable 'i' assigned to Register 'R7' ----
-001235 E4                CLR     A
-001236 FF                MOV     R7,A
-  204: 	byte tgroup = 0;
-001237 904E91            MOV     DPTR,#temp
-00123A F0                MOVX    @DPTR,A
-  205: 	byte tgpionum = 0;
+0013CF E4                CLR     A
+0013D0 FF                MOV     R7,A
+  219: 	byte tgroup = 0;
+0013D1 904E91            MOV     DPTR,#temp
+0013D4 F0                MOVX    @DPTR,A
+  220: 	byte tgpionum = 0;
 ;---- Variable 'tgroup' assigned to Register 'R6' ----
-00123B FE                MOV     R6,A
-  206: 	for (i=0; col[i]!=0; i++) {
+0013D5 FE                MOV     R6,A
+  221: 	for (i=0; col[i]!=0; i++) {
 ;---- Variable 'tgpionum' assigned to Register 'R5' ----
-00123C FD                MOV     R5,A
-  207: 		tgroup = col[i]  >> 3;
-00123D         ?C0065?KEYSCAN:
-00123D EF                MOV     A,R7
-00123E 90060C            MOV     DPTR,#col
-001241 93                MOVC    A,@A+DPTR
-001242 6049              JZ      ?C0066?KEYSCAN
-  208: 		tgpionum = 1 << (col[i] & 7);
-001244 EF                MOV     A,R7
-001245 93                MOVC    A,@A+DPTR
-001246 FD                MOV     R5,A
-001247 13                RRC     A
-001248 13                RRC     A
-001249 13                RRC     A
-00124A 541F              ANL     A,#01FH
-00124C FE                MOV     R6,A
-  209: 		REG_GPIO_PUP (tgroup) &= ~tgpionum;
-00124D ED                MOV     A,R5
-00124E 5407              ANL     A,#07H
-001250 FD                MOV     R5,A
-001251 7401              MOV     A,#01H
-001253 A805              MOV     R0,AR5
-001255 08                INC     R0
-001256 8002              SJMP    ?C0117?KEYSCAN
-001258         ?C0116?KEYSCAN:
-001258 C3                CLR     C
-001259 33                RLC     A
-00125A         ?C0117?KEYSCAN:
-00125A D8FC              DJNZ    R0,?C0116?KEYSCAN
-00125C FD                MOV     R5,A
-  210: 		REG_GPIO_OE(tgroup) |= tgpionum;
-00125D EE                MOV     A,R6
-00125E 2478              ADD     A,#078H
-001260 FB                MOV     R3,A
-001261 E4                CLR     A
-001262 3480              ADDC    A,#080H
-001264 8B82              MOV     DPL,R3
-001266 F583              MOV     DPH,A
-001268 E0                MOVX    A,@DPTR
-001269 FC                MOV     R4,A
-00126A ED                MOV     A,R5
-00126B F4                CPL     A
-00126C FB                MOV     R3,A
-00126D EC                MOV     A,R4
-00126E 5B                ANL     A,R3
-00126F F0                MOVX    @DPTR,A
-  211: 		REG_GPIO_OUT(tgroup) &= ~tgpionum;
-001270 EE                MOV     A,R6
-001271 2470              ADD     A,#070H
-001273 F582              MOV     DPL,A
-001275 E4                CLR     A
-001276 3480              ADDC    A,#080H
-001278 F583              MOV     DPH,A
-00127A E0                MOVX    A,@DPTR
-00127B 4D                ORL     A,R5
-00127C F0                MOVX    @DPTR,A
-  212: 	}
-00127D EE                MOV     A,R6
-00127E 2474              ADD     A,#074H
-001280 F582              MOV     DPL,A
-001282 E4                CLR     A
-001283 3480              ADDC    A,#080H
-001285 F583              MOV     DPH,A
-001287 E0                MOVX    A,@DPTR
-001288 5B                ANL     A,R3
-001289 F0                MOVX    @DPTR,A
-  213: 	
-00128A 0F                INC     R7
-00128B 80B0              SJMP    ?C0065?KEYSCAN
-00128D         ?C0066?KEYSCAN:
-  214: 	GPIO_fillpd();
-00128D 12257E            LCALL   GPIO_fillpd
-  215: 	
-  216: 	temp = REG_GPIO_IN(0);
-001290 90811C            MOV     DPTR,#0811CH
-001293 E0                MOVX    A,@DPTR
-001294 904E91            MOV     DPTR,#temp
-001297 F0                MOVX    @DPTR,A
-  217: 	if (g_variable.battery_status != 2)
-001298 904CD5            MOV     DPTR,#g_variable+016H
-00129B E0                MOVX    A,@DPTR
-00129C 6402              XRL     A,#02H
-00129E 6036              JZ      ?C0068?KEYSCAN
-  218: 	{
-  219: 		if(long_press_flag)
-0012A0 904DD5            MOV     DPTR,#long_press_flag
-0012A3 E0                MOVX    A,@DPTR
-0012A4 6020              JZ      ?C0069?KEYSCAN
-  220: 		{
-  221: 			GPIO_SetWakeupByCurrentState(0);
-0012A6 E4                CLR     A
-0012A7 FF                MOV     R7,A
-0012A8 51E0              ACALL   _GPIO_SetWakeupByCurrentState
-  222: 			GPIO_SetWakeupByCurrentState(1);
-0012AA 7F01              MOV     R7,#01H
-0012AC 51E0              ACALL   _GPIO_SetWakeupByCurrentState
-  223: 			GPIO_SetWakeupByCurrentState(2);
-0012AE 7F02              MOV     R7,#02H
-0012B0 51E0              ACALL   _GPIO_SetWakeupByCurrentState
-  224: 			GPIO_SetWakeupByCurrentState(3);
-0012B2 7F03              MOV     R7,#03H
-0012B4 51E0              ACALL   _GPIO_SetWakeupByCurrentState
-  225: 			GPIO_SetWakeupByCurrentState(4);
-0012B6 7F04              MOV     R7,#04H
-0012B8 51E0              ACALL   _GPIO_SetWakeupByCurrentState
-  226: 			GPIO_SetWakeupByCurrentState(5);
-0012BA 7F05              MOV     R7,#05H
-0012BC 51E0              ACALL   _GPIO_SetWakeupByCurrentState
-  227: 			GPIO_SetWakeupByCurrentState(6);
-0012BE 7F06              MOV     R7,#06H
-0012C0 51E0              ACALL   _GPIO_SetWakeupByCurrentState
-  228: 			GPIO_SetWakeupByCurrentState(7);
-0012C2 7F07              MOV     R7,#07H
-0012C4 801A              SJMP    _GPIO_SetWakeupByCurrentState
-  229: 		}
-0012C6         ?C0069?KEYSCAN:
-  230: 		else
-  231: 		{
-  232: 			YC_GPIOWakeupL[0] = temp;
-0012C6 904E91            MOV     DPTR,#temp
-0012C9 E0                MOVX    A,@DPTR
-0012CA FF                MOV     R7,A
-0012CB 9000A3            MOV     DPTR,#YC_GPIOWakeupL
-0012CE F0                MOVX    @DPTR,A
-  233: 			YC_GPIOWakeupH[0] = ~temp;
-0012CF EF                MOV     A,R7
-0012D0 F4                CPL     A
-0012D1 9000A7            MOV     DPTR,#YC_GPIOWakeupH
-0012D4 F0                MOVX    @DPTR,A
-  234: 		}
-  235: 
-  236: 	}
-0012D5 22                RET     
-0012D6         ?C0068?KEYSCAN:
-  237: 	else
-  238: 	{
-  239: 		YC_GPIOWakeupL[0] = 0;
-0012D6 E4                CLR     A
-0012D7 9000A3            MOV     DPTR,#YC_GPIOWakeupL
-0012DA F0                MOVX    @DPTR,A
-  240: 		YC_GPIOWakeupH[0] = 0;
-0012DB 9000A7            MOV     DPTR,#YC_GPIOWakeupH
-0012DE F0                MOVX    @DPTR,A
-  241: 	}
-  242: }
-0012DF 22                RET     
+0013D6 FD                MOV     R5,A
+  222: 		tgroup = col[i]  >> 3;
+0013D7         ?C0037?KEYSCAN:
+0013D7 EF                MOV     A,R7
+0013D8 90060C            MOV     DPTR,#col
+0013DB 93                MOVC    A,@A+DPTR
+0013DC 6049              JZ      ?C0038?KEYSCAN
+  223: 		tgpionum = 1 << (col[i] & 7);
+0013DE EF                MOV     A,R7
+0013DF 93                MOVC    A,@A+DPTR
+0013E0 FD                MOV     R5,A
+0013E1 13                RRC     A
+0013E2 13                RRC     A
+0013E3 13                RRC     A
+0013E4 541F              ANL     A,#01FH
+0013E6 FE                MOV     R6,A
+  224: 		REG_GPIO_PUP (tgroup) &= ~tgpionum;
+0013E7 ED                MOV     A,R5
+0013E8 5407              ANL     A,#07H
+0013EA FD                MOV     R5,A
+0013EB 7401              MOV     A,#01H
+0013ED A805              MOV     R0,AR5
+0013EF 08                INC     R0
+0013F0 8002              SJMP    ?C0093?KEYSCAN
+0013F2         ?C0092?KEYSCAN:
+0013F2 C3                CLR     C
+0013F3 33                RLC     A
+0013F4         ?C0093?KEYSCAN:
+0013F4 D8FC              DJNZ    R0,?C0092?KEYSCAN
+0013F6 FD                MOV     R5,A
+  225: 		REG_GPIO_OE(tgroup) |= tgpionum;
+0013F7 EE                MOV     A,R6
+0013F8 2478              ADD     A,#078H
+0013FA FB                MOV     R3,A
+0013FB E4                CLR     A
+0013FC 3480              ADDC    A,#080H
+0013FE 8B82              MOV     DPL,R3
+001400 F583              MOV     DPH,A
+001402 E0                MOVX    A,@DPTR
+001403 FC                MOV     R4,A
+001404 ED                MOV     A,R5
+001405 F4                CPL     A
+001406 FB                MOV     R3,A
+001407 EC                MOV     A,R4
+001408 5B                ANL     A,R3
+001409 F0                MOVX    @DPTR,A
+  226: 		REG_GPIO_OUT(tgroup) &= ~tgpionum;
+00140A EE                MOV     A,R6
+00140B 2470              ADD     A,#070H
+00140D F582              MOV     DPL,A
+00140F E4                CLR     A
+001410 3480              ADDC    A,#080H
+001412 F583              MOV     DPH,A
+001414 E0                MOVX    A,@DPTR
+001415 4D                ORL     A,R5
+001416 F0                MOVX    @DPTR,A
+  227: 	}
+001417 EE                MOV     A,R6
+001418 2474              ADD     A,#074H
+00141A F582              MOV     DPL,A
+00141C E4                CLR     A
+00141D 3480              ADDC    A,#080H
+00141F F583              MOV     DPH,A
+001421 E0                MOVX    A,@DPTR
+001422 5B                ANL     A,R3
+001423 F0                MOVX    @DPTR,A
+  228: 	
+001424 0F                INC     R7
+001425 80B0              SJMP    ?C0037?KEYSCAN
+001427         ?C0038?KEYSCAN:
+  229: 	GPIO_fillpd();
+001427 122290            LCALL   GPIO_fillpd
+  230: 	
+  231: 	temp = REG_GPIO_IN(0);
+00142A 90811C            MOV     DPTR,#0811CH
+00142D E0                MOVX    A,@DPTR
+00142E 904E91            MOV     DPTR,#temp
+001431 F0                MOVX    @DPTR,A
+  232: 	if (g_variable.battery_status != 2)
+001432 904CD5            MOV     DPTR,#g_variable+016H
+001435 E0                MOVX    A,@DPTR
+001436 6402              XRL     A,#02H
+001438 6036              JZ      ?C0040?KEYSCAN
+  233: 	{
+  234: 		if(long_press_flag)
+00143A 904DD5            MOV     DPTR,#long_press_flag
+00143D E0                MOVX    A,@DPTR
+00143E 6020              JZ      ?C0041?KEYSCAN
+  235: 		{
+  236: 			GPIO_SetWakeupByCurrentState(0);
+001440 E4                CLR     A
+001441 FF                MOV     R7,A
+001442 917A              ACALL   _GPIO_SetWakeupByCurrentState
+  237: 			GPIO_SetWakeupByCurrentState(1);
+001444 7F01              MOV     R7,#01H
+001446 917A              ACALL   _GPIO_SetWakeupByCurrentState
+  238: 			GPIO_SetWakeupByCurrentState(2);
+001448 7F02              MOV     R7,#02H
+00144A 917A              ACALL   _GPIO_SetWakeupByCurrentState
+  239: 			GPIO_SetWakeupByCurrentState(3);
+00144C 7F03              MOV     R7,#03H
+00144E 917A              ACALL   _GPIO_SetWakeupByCurrentState
+  240: 			GPIO_SetWakeupByCurrentState(4);
+001450 7F04              MOV     R7,#04H
+001452 917A              ACALL   _GPIO_SetWakeupByCurrentState
+  241: 			GPIO_SetWakeupByCurrentState(5);
+001454 7F05              MOV     R7,#05H
+001456 917A              ACALL   _GPIO_SetWakeupByCurrentState
+  242: 			GPIO_SetWakeupByCurrentState(6);
+001458 7F06              MOV     R7,#06H
+00145A 917A              ACALL   _GPIO_SetWakeupByCurrentState
+  243: 			GPIO_SetWakeupByCurrentState(7);
+00145C 7F07              MOV     R7,#07H
+00145E 801A              SJMP    _GPIO_SetWakeupByCurrentState
+  244: 		}
+001460         ?C0041?KEYSCAN:
+  245: 		else
+  246: 		{
+  247: 			YC_GPIOWakeupL[0] = temp;
+001460 904E91            MOV     DPTR,#temp
+001463 E0                MOVX    A,@DPTR
+001464 FF                MOV     R7,A
+001465 9000A3            MOV     DPTR,#YC_GPIOWakeupL
+001468 F0                MOVX    @DPTR,A
+  248: 			YC_GPIOWakeupH[0] = ~temp;
+001469 EF                MOV     A,R7
+00146A F4                CPL     A
+00146B 9000A7            MOV     DPTR,#YC_GPIOWakeupH
+00146E F0                MOVX    @DPTR,A
+  249: 		}
+  250: 
+  251: 	}
+00146F 22                RET     
+001470         ?C0040?KEYSCAN:
+  252: 	else
+  253: 	{
+  254: 		YC_GPIOWakeupL[0] = 0;
+001470 E4                CLR     A
+001471 9000A3            MOV     DPTR,#YC_GPIOWakeupL
+001474 F0                MOVX    @DPTR,A
+  255: 		YC_GPIOWakeupH[0] = 0;
+001475 9000A7            MOV     DPTR,#YC_GPIOWakeupH
+001478 F0                MOVX    @DPTR,A
+  256: 	}
+  257: }
+001479 22                RET     
 ----- FUNCTION KS_Unistall (END) -------
 
 
 ----- FUNCTION _GPIO_SetWakeupByCurrentState (BEGIN) -----
-0012E0 904E95            MOV     DPTR,#gpio_num
-0012E3 EF                MOV     A,R7
-0012E4 F0                MOVX    @DPTR,A
-0012E5 91D9              ACALL   _GPIO_GetInputStatus
-0012E7 9208              MOV     st,C
-0012E9 904E95            MOV     DPTR,#gpio_num
-0012EC E0                MOVX    A,@DPTR
-0012ED FF                MOV     R7,A
-0012EE A208              MOV     C,st
-0012F0 B3                CPL     C
-0012F1 9207              MOV     ?_GPIO_SetWakeup?BIT,C
+00147A 904E95            MOV     DPTR,#gpio_num
+00147D EF                MOV     A,R7
+00147E F0                MOVX    @DPTR,A
+00147F B139              ACALL   _GPIO_GetInputStatus
+001481 9208              MOV     st,C
+001483 904E95            MOV     DPTR,#gpio_num
+001486 E0                MOVX    A,@DPTR
+001487 FF                MOV     R7,A
+001488 A208              MOV     C,st
+00148A B3                CPL     C
+00148B 9207              MOV     ?_GPIO_SetWakeup?BIT,C
 ;----                  JMP     _GPIO_SetWakeup
 ----- FUNCTION _GPIO_SetWakeupByCurrentState (END) -------
 
 
 ----- FUNCTION _GPIO_SetWakeup (BEGIN) -----
 ;---- Variable 'gpio_num' assigned to Register 'R7' ----
-0012F3 EF                MOV     A,R7
-0012F4 F4                CPL     A
-0012F5 7002              JNZ     $ + 4H
-0012F7 617E              AJMP    ?C0019?GPIO
-0012F9         ?C0018?GPIO:
-0012F9 EF                MOV     A,R7
-0012FA 5407              ANL     A,#07H
-0012FC FE                MOV     R6,A
+00148D EF                MOV     A,R7
+00148E F4                CPL     A
+00148F 7002              JNZ     $ + 4H
+001491 A118              AJMP    ?C0019?GPIO
+001493         ?C0018?GPIO:
+001493 EF                MOV     A,R7
+001494 5407              ANL     A,#07H
+001496 FE                MOV     R6,A
 ;---- Variable 'queue' assigned to Register 'R6' ----
-0012FD EF                MOV     A,R7
-0012FE 13                RRC     A
-0012FF 13                RRC     A
-001300 13                RRC     A
-001301 5403              ANL     A,#03H
-001303 FF                MOV     R7,A
+001497 EF                MOV     A,R7
+001498 13                RRC     A
+001499 13                RRC     A
+00149A 13                RRC     A
+00149B 5403              ANL     A,#03H
+00149D FF                MOV     R7,A
 ;---- Variable 'group' assigned to Register 'R7' ----
-001304 300743            JNB     st,?C0020?GPIO
-001307 24A3              ADD     A,#LOW YC_GPIOWakeupL
-001309 F582              MOV     DPL,A
-00130B E4                CLR     A
-00130C 3400              ADDC    A,#HIGH YC_GPIOWakeupL
-00130E F583              MOV     DPH,A
-001310 C083              PUSH    DPH
-001312 C082              PUSH    DPL
-001314 E0                MOVX    A,@DPTR
-001315 FD                MOV     R5,A
-001316 7401              MOV     A,#01H
-001318 A806              MOV     R0,AR6
-00131A 08                INC     R0
-00131B 8002              SJMP    ?C0037?GPIO
-00131D         ?C0036?GPIO:
-00131D C3                CLR     C
-00131E 33                RLC     A
-00131F         ?C0037?GPIO:
-00131F D8FC              DJNZ    R0,?C0036?GPIO
-001321 F4                CPL     A
-001322 5D                ANL     A,R5
-001323 D082              POP     DPL
-001325 D083              POP     DPH
-001327 F0                MOVX    @DPTR,A
-001328 74A7              MOV     A,#LOW YC_GPIOWakeupH
-00132A 2F                ADD     A,R7
-00132B F582              MOV     DPL,A
-00132D E4                CLR     A
-00132E 3400              ADDC    A,#HIGH YC_GPIOWakeupH
-001330 F583              MOV     DPH,A
-001332 C083              PUSH    DPH
-001334 C082              PUSH    DPL
-001336 E0                MOVX    A,@DPTR
-001337 FF                MOV     R7,A
-001338 7401              MOV     A,#01H
-00133A A806              MOV     R0,AR6
-00133C 08                INC     R0
-00133D 8002              SJMP    ?C0039?GPIO
-00133F         ?C0038?GPIO:
-00133F C3                CLR     C
-001340 33                RLC     A
-001341         ?C0039?GPIO:
-001341 D8FC              DJNZ    R0,?C0038?GPIO
-001343 4F                ORL     A,R7
-001344 D082              POP     DPL
-001346 D083              POP     DPH
-001348 F0                MOVX    @DPTR,A
-001349 22                RET     
-00134A         ?C0020?GPIO:
-00134A 74A3              MOV     A,#LOW YC_GPIOWakeupL
-00134C 2F                ADD     A,R7
-00134D F582              MOV     DPL,A
-00134F E4                CLR     A
-001350 3400              ADDC    A,#HIGH YC_GPIOWakeupL
-001352 F583              MOV     DPH,A
-001354 C083              PUSH    DPH
-001356 C082              PUSH    DPL
-001358 E0                MOVX    A,@DPTR
-001359 FD                MOV     R5,A
-00135A 7401              MOV     A,#01H
-00135C A806              MOV     R0,AR6
-00135E 08                INC     R0
-00135F 8002              SJMP    ?C0041?GPIO
-001361         ?C0040?GPIO:
-001361 C3                CLR     C
-001362 33                RLC     A
-001363         ?C0041?GPIO:
-001363 D8FC              DJNZ    R0,?C0040?GPIO
-001365 FC                MOV     R4,A
-001366 4D                ORL     A,R5
-001367 D082              POP     DPL
-001369 D083              POP     DPH
-00136B F0                MOVX    @DPTR,A
-00136C 74A7              MOV     A,#LOW YC_GPIOWakeupH
-00136E 2F                ADD     A,R7
-00136F F582              MOV     DPL,A
-001371 E4                CLR     A
-001372 3400              ADDC    A,#HIGH YC_GPIOWakeupH
-001374 F583              MOV     DPH,A
-001376 E0                MOVX    A,@DPTR
-001377 FF                MOV     R7,A
-001378 EC                MOV     A,R4
-001379 F4                CPL     A
-00137A FE                MOV     R6,A
-00137B EF                MOV     A,R7
-00137C 5E                ANL     A,R6
-00137D F0                MOVX    @DPTR,A
-00137E         ?C0019?GPIO:
-00137E 22                RET     
+00149E 300743            JNB     st,?C0020?GPIO
+0014A1 24A3              ADD     A,#LOW YC_GPIOWakeupL
+0014A3 F582              MOV     DPL,A
+0014A5 E4                CLR     A
+0014A6 3400              ADDC    A,#HIGH YC_GPIOWakeupL
+0014A8 F583              MOV     DPH,A
+0014AA C083              PUSH    DPH
+0014AC C082              PUSH    DPL
+0014AE E0                MOVX    A,@DPTR
+0014AF FD                MOV     R5,A
+0014B0 7401              MOV     A,#01H
+0014B2 A806              MOV     R0,AR6
+0014B4 08                INC     R0
+0014B5 8002              SJMP    ?C0037?GPIO
+0014B7         ?C0036?GPIO:
+0014B7 C3                CLR     C
+0014B8 33                RLC     A
+0014B9         ?C0037?GPIO:
+0014B9 D8FC              DJNZ    R0,?C0036?GPIO
+0014BB F4                CPL     A
+0014BC 5D                ANL     A,R5
+0014BD D082              POP     DPL
+0014BF D083              POP     DPH
+0014C1 F0                MOVX    @DPTR,A
+0014C2 74A7              MOV     A,#LOW YC_GPIOWakeupH
+0014C4 2F                ADD     A,R7
+0014C5 F582              MOV     DPL,A
+0014C7 E4                CLR     A
+0014C8 3400              ADDC    A,#HIGH YC_GPIOWakeupH
+0014CA F583              MOV     DPH,A
+0014CC C083              PUSH    DPH
+0014CE C082              PUSH    DPL
+0014D0 E0                MOVX    A,@DPTR
+0014D1 FF                MOV     R7,A
+0014D2 7401              MOV     A,#01H
+0014D4 A806              MOV     R0,AR6
+0014D6 08                INC     R0
+0014D7 8002              SJMP    ?C0039?GPIO
+0014D9         ?C0038?GPIO:
+0014D9 C3                CLR     C
+0014DA 33                RLC     A
+0014DB         ?C0039?GPIO:
+0014DB D8FC              DJNZ    R0,?C0038?GPIO
+0014DD 4F                ORL     A,R7
+0014DE D082              POP     DPL
+0014E0 D083              POP     DPH
+0014E2 F0                MOVX    @DPTR,A
+0014E3 22                RET     
+0014E4         ?C0020?GPIO:
+0014E4 74A3              MOV     A,#LOW YC_GPIOWakeupL
+0014E6 2F                ADD     A,R7
+0014E7 F582              MOV     DPL,A
+0014E9 E4                CLR     A
+0014EA 3400              ADDC    A,#HIGH YC_GPIOWakeupL
+0014EC F583              MOV     DPH,A
+0014EE C083              PUSH    DPH
+0014F0 C082              PUSH    DPL
+0014F2 E0                MOVX    A,@DPTR
+0014F3 FD                MOV     R5,A
+0014F4 7401              MOV     A,#01H
+0014F6 A806              MOV     R0,AR6
+0014F8 08                INC     R0
+0014F9 8002              SJMP    ?C0041?GPIO
+0014FB         ?C0040?GPIO:
+0014FB C3                CLR     C
+0014FC 33                RLC     A
+0014FD         ?C0041?GPIO:
+0014FD D8FC              DJNZ    R0,?C0040?GPIO
+0014FF FC                MOV     R4,A
+001500 4D                ORL     A,R5
+001501 D082              POP     DPL
+001503 D083              POP     DPH
+001505 F0                MOVX    @DPTR,A
+001506 74A7              MOV     A,#LOW YC_GPIOWakeupH
+001508 2F                ADD     A,R7
+001509 F582              MOV     DPL,A
+00150B E4                CLR     A
+00150C 3400              ADDC    A,#HIGH YC_GPIOWakeupH
+00150E F583              MOV     DPH,A
+001510 E0                MOVX    A,@DPTR
+001511 FF                MOV     R7,A
+001512 EC                MOV     A,R4
+001513 F4                CPL     A
+001514 FE                MOV     R6,A
+001515 EF                MOV     A,R7
+001516 5E                ANL     A,R6
+001517 F0                MOVX    @DPTR,A
+001518         ?C0019?GPIO:
+001518 22                RET     
 ----- FUNCTION _GPIO_SetWakeup (END) -------
 
 
------ FUNCTION kb_need_keyscan (BEGIN) -----
- FILE: 'kb_process.c'
-  171: void kb_need_keyscan()
-  172: {
-  173: 	if((g_variable.key_combination_step == CAMBINATION_KEY_FREE)
-  174: 	||(g_variable.key_combination_step == CAMBINATION_KEY_PRESS)
-00137F 904CF4            MOV     DPTR,#g_variable+035H
-001382 E0                MOVX    A,@DPTR
-001383 FF                MOV     R7,A
-001384 6008              JZ      ?C0036?KB_PROCESS
-001386 6401              XRL     A,#01H
-001388 6004              JZ      ?C0036?KB_PROCESS
-00138A EF                MOV     A,R7
-00138B B40302            CJNE    A,#03H,?C0035?KB_PROCESS
-00138E         ?C0036?KB_PROCESS:
-  175: 	||(g_variable.key_combination_step == CAMBINATION_KEY_COMPLETE)
-  176: 	)
-  177: 		kb_motion();
-00138E A11E              AJMP    kb_motion
-001390         ?C0035?KB_PROCESS:
-  178: 	else
-  179: 	{
-  180: 		
-  181: 		if(g_variable.key_combination_step == CAMBINATION_KEY_HOLD)
-001390 904CF4            MOV     DPTR,#g_variable+035H
-001393 E0                MOVX    A,@DPTR
-001394 B4020B            CJNE    A,#02H,?C0038?KB_PROCESS
-  182: 		{	
-  183: 			g_variable.key_combination_step = CAMBINATION_KEY_COMPLETE;
-001397 7403              MOV     A,#03H
-001399 F0                MOVX    @DPTR,A
-  184: 			kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
-00139A A3                INC     DPTR
-00139B E0                MOVX    A,@DPTR
-00139C FF                MOV     R7,A
-00139D A3                INC     DPTR
-00139E E0                MOVX    A,@DPTR
-00139F FD                MOV     R5,A
-0013A0 8033              SJMP    _kb_send_combination_key
-  185: 		}
-0013A2         ?C0038?KB_PROCESS:
-  186: 		else if(g_variable.key_combination_step == CAMBINATION_KEY_WAIT_RELEASE)
-0013A2 904CF4            MOV     DPTR,#g_variable+035H
-0013A5 E0                MOVX    A,@DPTR
-0013A6 B40413            CJNE    A,#04H,?C0040?KB_PROCESS
-  187: 		{
-  188: 			g_variable.key_combination_keyvalue = 0;
-0013A9 E4                CLR     A
-0013AA 904CF6            MOV     DPTR,#g_variable+037H
-0013AD F0                MOVX    @DPTR,A
-  189: 			g_variable.key_combination_step = CAMBINATION_KEY_RELEASE;
-0013AE 904CF4            MOV     DPTR,#g_variable+035H
-0013B1 7405              MOV     A,#05H
-0013B3 F0                MOVX    @DPTR,A
-  190: 			kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
-0013B4 A3                INC     DPTR
-0013B5 E0                MOVX    A,@DPTR
-0013B6 FF                MOV     R7,A
-0013B7 A3                INC     DPTR
-0013B8 E0                MOVX    A,@DPTR
-0013B9 FD                MOV     R5,A
-0013BA 8019              SJMP    _kb_send_combination_key
-  191: 		}
-0013BC         ?C0040?KB_PROCESS:
-  192: 		else if(g_variable.key_combination_step == CAMBINATION_KEY_RELEASE)
-0013BC 904CF4            MOV     DPTR,#g_variable+035H
-0013BF E0                MOVX    A,@DPTR
-0013C0 B40511            CJNE    A,#05H,?C0043?KB_PROCESS
-  193: 		{
-  194: 			g_variable.key_combination_ctrl = 0;
-0013C3 E4                CLR     A
-0013C4 A3                INC     DPTR
-0013C5 F0                MOVX    @DPTR,A
-  195: 			g_variable.key_combination_keyvalue = 0;
-0013C6 A3                INC     DPTR
-0013C7 F0                MOVX    @DPTR,A
-  196: 			g_variable.key_combination_step = CAMBINATION_KEY_FREE;
-0013C8 904CF4            MOV     DPTR,#g_variable+035H
-0013CB F0                MOVX    @DPTR,A
-  197: 			kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
-0013CC A3                INC     DPTR
-0013CD E0                MOVX    A,@DPTR
-0013CE FF                MOV     R7,A
-0013CF A3                INC     DPTR
-0013D0 E0                MOVX    A,@DPTR
-0013D1 FD                MOV     R5,A
-0013D2 71D5              ACALL   _kb_send_combination_key
-  198: 		}
-  199: 	}
-  200: }
-0013D4         ?C0043?KB_PROCESS:
-0013D4 22                RET     
------ FUNCTION kb_need_keyscan (END) -------
-
-
------ FUNCTION _kb_send_combination_key (BEGIN) -----
- FILE: 'kb_process.c'
-  103: void kb_send_combination_key(byte ctrl_value,byte key_value)
-  104: {
-0013D5 904E87            MOV     DPTR,#ctrl_value
-0013D8 EF                MOV     A,R7
-0013D9 F0                MOVX    @DPTR,A
-0013DA A3                INC     DPTR
-0013DB ED                MOV     A,R5
-0013DC F0                MOVX    @DPTR,A
-  105: 	xmemclear(hidBuff,9);
-  106: 	hidBuff[0] = HID_REPORTID_1;
-0013DD 7B01              MOV     R3,#01H
-0013DF 7A48              MOV     R2,#HIGH hidBuff
-0013E1 7900              MOV     R1,#LOW hidBuff
-0013E3 7D09              MOV     R5,#09H
-0013E5 7C00              MOV     R4,#00H
-0013E7 120EB3            LCALL   _xmemclear
-  107: 	hidBuff[1] |= ctrl_value;
-0013EA 904800            MOV     DPTR,#hidBuff
-0013ED 7401              MOV     A,#01H
-0013EF F0                MOVX    @DPTR,A
-  108: 	hidBuff[3] = key_value; 
-0013F0 A3                INC     DPTR
-0013F1 E0                MOVX    A,@DPTR
-0013F2 FF                MOV     R7,A
-0013F3 904E87            MOV     DPTR,#ctrl_value
-0013F6 E0                MOVX    A,@DPTR
-0013F7 FE                MOV     R6,A
-0013F8 EF                MOV     A,R7
-0013F9 4E                ORL     A,R6
-0013FA 904801            MOV     DPTR,#hidBuff+01H
-0013FD F0                MOVX    @DPTR,A
-  109: 	IPC_TxHidData(hidBuff, 9);
-0013FE 904E88            MOV     DPTR,#key_value
-001401 E0                MOVX    A,@DPTR
-001402 904803            MOV     DPTR,#hidBuff+03H
-001405 F0                MOVX    @DPTR,A
-  110: }
-001406 7B01              MOV     R3,#01H
-001408 7A48              MOV     R2,#HIGH hidBuff
-00140A 7900              MOV     R1,#LOW hidBuff
-00140C 7D09              MOV     R5,#09H
-;----                  JMP     _IPC_TxHidData
------ FUNCTION _kb_send_combination_key (END) -------
-
-
------ FUNCTION _IPC_TxHidData (BEGIN) -----
- FILE: 'kb_process.c'
-   59: void IPC_TxHidData(byte* dt, byte len)
-   60: {
-00140E 904E61            MOV     DPTR,#dt
-001411 EB                MOV     A,R3
-001412 F0                MOVX    @DPTR,A
-001413 A3                INC     DPTR
-001414 EA                MOV     A,R2
-001415 F0                MOVX    @DPTR,A
-001416 A3                INC     DPTR
-001417 E9                MOV     A,R1
-001418 F0                MOVX    @DPTR,A
-001419 A3                INC     DPTR
-00141A ED                MOV     A,R5
-00141B F0                MOVX    @DPTR,A
-   61: 	if(!YC_check_need_reconnected()) 
-   62: 		return;
-00141C 1207FE            LCALL   YC_check_need_reconnected
-00141F EF                MOV     A,R7
-001420 6076              JZ      ?C0014?KB_PROCESS
-001422         ?C0013?KB_PROCESS:
-   63: 	if (g_variable.release_data)
-001422 904CEB            MOV     DPTR,#g_variable+02CH
-001425 E0                MOVX    A,@DPTR
-001426 7070              JNZ     ?C0014?KB_PROCESS
-001428         ?C0015?KB_PROCESS:
-   64: 		return;
-   65: 
-   66: 	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
-001428 904CC5            MOV     DPTR,#g_variable+06H
-00142B E0                MOVX    A,@DPTR
-00142C 6403              XRL     A,#03H
-00142E 7068              JNZ     ?C0014?KB_PROCESS
-   67: 	{
-   68: 		if (dt[0] == HID_REPORTID_1)
-001430 904E61            MOV     DPTR,#dt
-001433 E0                MOVX    A,@DPTR
-001434 FB                MOV     R3,A
-001435 A3                INC     DPTR
-001436 E0                MOVX    A,@DPTR
-001437 FA                MOV     R2,A
-001438 A3                INC     DPTR
-001439 E0                MOVX    A,@DPTR
-00143A F9                MOV     R1,A
-00143B 1203B6            LCALL   ?C?CLDPTR
-00143E FF                MOV     R7,A
-00143F 6401              XRL     A,#01H
-001441 702E              JNZ     ?C0017?KB_PROCESS
-   69: 		{
-   70: 			if (dt[1] == 0 && dt[3] == 00 && dt[4] == 00 && dt[5] == 0)
-001443 900001            MOV     DPTR,#01H
-001446 1203CF            LCALL   ?C?CLDOPTR
-001449 701E              JNZ     ?C0018?KB_PROCESS
-00144B 900003            MOV     DPTR,#03H
-00144E 1203CF            LCALL   ?C?CLDOPTR
-001451 7016              JNZ     ?C0018?KB_PROCESS
-001453 900004            MOV     DPTR,#04H
-001456 1203CF            LCALL   ?C?CLDOPTR
-001459 700E              JNZ     ?C0018?KB_PROCESS
-00145B 900005            MOV     DPTR,#05H
-00145E 1203CF            LCALL   ?C?CLDOPTR
-001461 7006              JNZ     ?C0018?KB_PROCESS
-   71: 				repeat_send_24g = 0;
-001463 904DD6            MOV     DPTR,#repeat_send_24g
-001466 F0                MOVX    @DPTR,A
-001467 8028              SJMP    ?C0020?KB_PROCESS
-001469         ?C0018?KB_PROCESS:
-   72: 			else
-   73: 				repeat_send_24g = 1;			
-001469 904DD6            MOV     DPTR,#repeat_send_24g
-00146C 7401              MOV     A,#01H
-00146E F0                MOVX    @DPTR,A
-   74: 		}
-00146F 8020              SJMP    ?C0020?KB_PROCESS
-001471         ?C0017?KB_PROCESS:
-   75: 		else if (dt[0] == HID_REPORTID_2)
-001471 EF                MOV     A,R7
-001472 B4021C            CJNE    A,#02H,?C0020?KB_PROCESS
-   76: 		{
-   77: 			if (dt[1] == 00 && dt[2] == 00)
-001475 900001            MOV     DPTR,#01H
-001478 1203CF            LCALL   ?C?CLDOPTR
-00147B 700E              JNZ     ?C0022?KB_PROCESS
-00147D 900002            MOV     DPTR,#02H
-001480 1203CF            LCALL   ?C?CLDOPTR
-001483 7006              JNZ     ?C0022?KB_PROCESS
-   78: 			{
-   79: 				repeat_send_24g = 0;
-001485 904DD6            MOV     DPTR,#repeat_send_24g
-001488 F0                MOVX    @DPTR,A
-   80: 			}
-001489 8006              SJMP    ?C0020?KB_PROCESS
-00148B         ?C0022?KB_PROCESS:
-   81: 			else
-   82: 			{
-   83: 				repeat_send_24g = 1;
-00148B 904DD6            MOV     DPTR,#repeat_send_24g
-00148E 7401              MOV     A,#01H
-001490 F0                MOVX    @DPTR,A
-   84: 			}
-   85: 		}
-001491         ?C0020?KB_PROCESS:
-   86: 		IPC_Tx24GData(dt,len);
-001491 904E64            MOV     DPTR,#len
-001494 E0                MOVX    A,@DPTR
-001495 FD                MOV     R5,A
-001496 91AC              ACALL   _IPC_Tx24GData
-   87: 	}
-   88: }
-001498         ?C0014?KB_PROCESS:
-001498 22                RET     
------ FUNCTION _IPC_TxHidData (END) -------
+----- FUNCTION IPC_WaitLpm (BEGIN) -----
+001519 E4                CLR     A
+00151A 900B7F            MOV     DPTR,#lpm_flag
+00151D F0                MOVX    @DPTR,A
+00151E 900B7E            MOV     DPTR,#current_task
+001521 F0                MOVX    @DPTR,A
+001522 7F01              MOV     R7,#01H
+001524 019C              AJMP    _Delay1ms
+----- FUNCTION IPC_WaitLpm (END) -------
 
 
 ----- FUNCTION kb_cb_init (BEGIN) -----
  FILE: 'sys.c'
-  378: static void kb_cb_init()
-  379: {
-  380: 	IPC_Initialize(&cb);
-  381: }
-001499 7B01              MOV     R3,#01H
-00149B 7A4D              MOV     R2,#HIGH cb
-00149D 79EE              MOV     R1,#LOW cb
+  379: static void kb_cb_init()
+  380: {
+  381: 	IPC_Initialize(&cb);
+  382: }
+001526 7B01              MOV     R3,#01H
+001528 7A4D              MOV     R2,#HIGH cb
+00152A 79EE              MOV     R1,#LOW cb
 ;----                  JMP     _IPC_Initialize
 ----- FUNCTION kb_cb_init (END) -------
 
 
 ----- FUNCTION _IPC_Initialize (BEGIN) -----
 ;---- Variable 'cb' assigned to Register 'R1/R2/R3' ----
-00149F 7800              MOV     R0,#LOW ipcCb
-0014A1 7C4E              MOV     R4,#HIGH ipcCb
-0014A3 7D01              MOV     R5,#01H
-0014A5 7E00              MOV     R6,#00H
-0014A7 7F12              MOV     R7,#012H
-0014A9 020390            LJMP    ?C?COPY
+00152C 7800              MOV     R0,#LOW ipcCb
+00152E 7C4E              MOV     R4,#HIGH ipcCb
+001530 7D01              MOV     R5,#01H
+001532 7E00              MOV     R6,#00H
+001534 7F12              MOV     R7,#012H
+001536 020390            LJMP    ?C?COPY
 ----- FUNCTION _IPC_Initialize (END) -------
 
 
------ FUNCTION _IPC_Tx24GData (BEGIN) -----
-;---- Variable 'len' assigned to Register 'R5' ----
-;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
-0014AC 900BE7            MOV     DPTR,#ipcSendBuff
-0014AF 7406              MOV     A,#06H
-0014B1 F0                MOVX    @DPTR,A
-;----                  JMP     _IPC_TxData
------ FUNCTION _IPC_Tx24GData (END) -------
-
-
------ FUNCTION _IPC_TxData (BEGIN) -----
-0014B2 904E93            MOV     DPTR,#len
-0014B5 ED                MOV     A,R5
-0014B6 F0                MOVX    @DPTR,A
-;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
-0014B7 E0                MOVX    A,@DPTR
-0014B8 FD                MOV     R5,A
-0014B9 900BE8            MOV     DPTR,#ipcSendBuff+01H
-0014BC F0                MOVX    @DPTR,A
-0014BD 7E0B              MOV     R6,#HIGH ipcSendBuff+02H
-0014BF 7FE9              MOV     R7,#LOW ipcSendBuff+02H
-0014C1 904E51            MOV     DPTR,#?_xmemcpy?BYTE+05H
-0014C4 ED                MOV     A,R5
-0014C5 F0                MOVX    @DPTR,A
-0014C6 120C1A            LCALL   _xmemcpy
-0014C9 7B01              MOV     R3,#01H
-0014CB 7A0B              MOV     R2,#HIGH ipcSendBuff
-0014CD 79E7              MOV     R1,#LOW ipcSendBuff
-0014CF 904E93            MOV     DPTR,#len
-0014D2 E0                MOVX    A,@DPTR
-0014D3 2402              ADD     A,#02H
-0014D5 FD                MOV     R5,A
-0014D6 02091E            LJMP    _ipcTx
------ FUNCTION _IPC_TxData (END) -------
-
-
 ----- FUNCTION _GPIO_GetInputStatus (BEGIN) -----
 ;---- Variable 'gpio_num' assigned to Register 'R7' ----
-0014D9 7B01              MOV     R3,#01H
-0014DB 7A81              MOV     R2,#081H
-0014DD 791C              MOV     R1,#01CH
+001539 7B01              MOV     R3,#01H
+00153B 7A81              MOV     R2,#081H
+00153D 791C              MOV     R1,#01CH
 ;----                  JMP     _gpioGetBit
 ----- FUNCTION _GPIO_GetInputStatus (END) -------
 
 
 ----- FUNCTION _gpioGetBit (BEGIN) -----
 ;---- Variable 'gpio_num' assigned to Register 'R5' ----
-0014DF AD07              MOV     R5,AR7
+00153F AD07              MOV     R5,AR7
 ;---- Variable 'reg_base' assigned to Register 'R1/R2/R3' ----
-0014E1 E4                CLR     A
-0014E2 904E94            MOV     DPTR,#queue
-0014E5 F0                MOVX    @DPTR,A
+001541 E4                CLR     A
+001542 904E94            MOV     DPTR,#queue
+001545 F0                MOVX    @DPTR,A
 ;---- Variable 'group' assigned to Register 'R6' ----
-0014E6 FE                MOV     R6,A
-0014E7 EF                MOV     A,R7
-0014E8 5407              ANL     A,#07H
-0014EA F0                MOVX    @DPTR,A
-0014EB EF                MOV     A,R7
-0014EC 13                RRC     A
-0014ED 13                RRC     A
-0014EE 13                RRC     A
-0014EF 5403              ANL     A,#03H
-0014F1 FE                MOV     R6,A
-0014F2 F582              MOV     DPL,A
-0014F4 758300            MOV     DPH,#00H
-0014F7 1203CF            LCALL   ?C?CLDOPTR
-0014FA FD                MOV     R5,A
-0014FB 33                RLC     A
-0014FC 95E0              SUBB    A,ACC
-0014FE FC                MOV     R4,A
-0014FF 904E94            MOV     DPTR,#queue
-001502 E0                MOVX    A,@DPTR
-001503 FF                MOV     R7,A
-001504 7401              MOV     A,#01H
-001506 7E00              MOV     R6,#00H
-001508 A807              MOV     R0,AR7
-00150A 08                INC     R0
-00150B 8005              SJMP    ?C0035?GPIO
-00150D         ?C0034?GPIO:
-00150D C3                CLR     C
-00150E 33                RLC     A
-00150F CE                XCH     A,R6
-001510 33                RLC     A
-001511 CE                XCH     A,R6
-001512         ?C0035?GPIO:
-001512 D8F9              DJNZ    R0,?C0034?GPIO
-001514 FF                MOV     R7,A
-001515 EE                MOV     A,R6
-001516 5C                ANL     A,R4
-001517 FE                MOV     R6,A
-001518 EF                MOV     A,R7
-001519 5D                ANL     A,R5
-00151A 4E                ORL     A,R6
-00151B 24FF              ADD     A,#0FFH
-00151D 22                RET     
+001546 FE                MOV     R6,A
+001547 EF                MOV     A,R7
+001548 5407              ANL     A,#07H
+00154A F0                MOVX    @DPTR,A
+00154B EF                MOV     A,R7
+00154C 13                RRC     A
+00154D 13                RRC     A
+00154E 13                RRC     A
+00154F 5403              ANL     A,#03H
+001551 FE                MOV     R6,A
+001552 F582              MOV     DPL,A
+001554 758300            MOV     DPH,#00H
+001557 1203CF            LCALL   ?C?CLDOPTR
+00155A FD                MOV     R5,A
+00155B 33                RLC     A
+00155C 95E0              SUBB    A,ACC
+00155E FC                MOV     R4,A
+00155F 904E94            MOV     DPTR,#queue
+001562 E0                MOVX    A,@DPTR
+001563 FF                MOV     R7,A
+001564 7401              MOV     A,#01H
+001566 7E00              MOV     R6,#00H
+001568 A807              MOV     R0,AR7
+00156A 08                INC     R0
+00156B 8005              SJMP    ?C0035?GPIO
+00156D         ?C0034?GPIO:
+00156D C3                CLR     C
+00156E 33                RLC     A
+00156F CE                XCH     A,R6
+001570 33                RLC     A
+001571 CE                XCH     A,R6
+001572         ?C0035?GPIO:
+001572 D8F9              DJNZ    R0,?C0034?GPIO
+001574 FF                MOV     R7,A
+001575 EE                MOV     A,R6
+001576 5C                ANL     A,R4
+001577 FE                MOV     R6,A
+001578 EF                MOV     A,R7
+001579 5D                ANL     A,R5
+00157A 4E                ORL     A,R6
+00157B 24FF              ADD     A,#0FFH
+00157D 22                RET     
 ----- FUNCTION _gpioGetBit (END) -------
 
 
------ FUNCTION kb_motion (BEGIN) -----
- FILE: 'kb_process.c'
-  152: static void kb_motion()
-  153: {
-  154: 	tKSEVENT *pEvt = NULL;
-  155: 	
-00151E 904E75            MOV     DPTR,#pEvt
-001521 E4                CLR     A
-001522 F0                MOVX    @DPTR,A
-001523 A3                INC     DPTR
-001524 F0                MOVX    @DPTR,A
-001525 A3                INC     DPTR
-001526 F0                MOVX    @DPTR,A
-  156: 	if (!IPC_IsTxBuffEmpty())
-001527 F1BF              ACALL   IPC_IsTxBuffEmpty
-001529 5026              JNC     ?C0033?KB_PROCESS
-00152B         ?C0032?KB_PROCESS:
-  157: 		return;
-  158: 	pEvt = KS_GetCurrentEvt();
-00152B 12197C            LCALL   KS_GetCurrentEvt
-00152E 904E75            MOV     DPTR,#pEvt
-001531 EB                MOV     A,R3
-001532 F0                MOVX    @DPTR,A
-001533 A3                INC     DPTR
-001534 EA                MOV     A,R2
-001535 F0                MOVX    @DPTR,A
-001536 A3                INC     DPTR
-001537 E9                MOV     A,R1
-001538 F0                MOVX    @DPTR,A
-  159: 
-  160: 	if (pEvt == NULL)
-001539 4A                ORL     A,R2
-00153A 7007              JNZ     ?C0034?KB_PROCESS
-  161: 	{
-  162: 		m_power_on_flag = 1;
-00153C 904CB6            MOV     DPTR,#m_power_on_flag
-00153F 04                INC     A
-001540 F0                MOVX    @DPTR,A
-  163: 		kb_24g_get_led_status();
-001541 800F              SJMP    kb_24g_get_led_status
-  164: 		return;
-  165: 	}
-001543         ?C0034?KB_PROCESS:
-  166: 	kb_motion_keyscan(pEvt);
-001543 904E75            MOV     DPTR,#pEvt
-001546 E0                MOVX    A,@DPTR
-001547 FB                MOV     R3,A
-001548 A3                INC     DPTR
-001549 E0                MOVX    A,@DPTR
-00154A FA                MOV     R2,A
-00154B A3                INC     DPTR
-00154C E0                MOVX    A,@DPTR
-00154D F9                MOV     R1,A
-00154E 120C5D            LCALL   _kb_motion_keyscan
-  167: }
-001551         ?C0033?KB_PROCESS:
-001551 22                RET     
------ FUNCTION kb_motion (END) -------
+----- FUNCTION _GPIO_SetPu (BEGIN) -----
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+00157E EF                MOV     A,R7
+00157F F4                CPL     A
+001580 600C              JZ      ?C0009?GPIO
+001582         ?C0008?GPIO:
+001582 7B01              MOV     R3,#01H
+001584 7A80              MOV     R2,#080H
+001586 7978              MOV     R1,#078H
+001588 A202              MOV     C,bit_val
+00158A 9200              MOV     ?_gpioSetBit?BIT,C
+00158C B1CF              ACALL   _gpioSetBit
+00158E         ?C0009?GPIO:
+00158E 22                RET     
+----- FUNCTION _GPIO_SetPu (END) -------
+
+
+----- FUNCTION _GPIO_SetInput (BEGIN) -----
+;---- Variable 'gpio_num' assigned to Register 'R4' ----
+00158F AC07              MOV     R4,AR7
+001591 EC                MOV     A,R4
+001592 F4                CPL     A
+001593 6017              JZ      ?C0015?GPIO
+001595         ?C0014?GPIO:
+001595 AF04              MOV     R7,AR4
+001597 A205              MOV     C,st
+001599 9203              MOV     ?_GPIO_SetPd?BIT,C
+00159B B1BE              ACALL   _GPIO_SetPd
+00159D AF04              MOV     R7,AR4
+00159F A205              MOV     C,st
+0015A1 B3                CPL     C
+0015A2 9202              MOV     ?_GPIO_SetPu?BIT,C
+0015A4 B17E              ACALL   _GPIO_SetPu
+0015A6 AF04              MOV     R7,AR4
+0015A8 C204              CLR     ?_GPIO_Setoe?BIT
+0015AA B1AD              ACALL   _GPIO_Setoe
+0015AC         ?C0015?GPIO:
+0015AC 22                RET     
+----- FUNCTION _GPIO_SetInput (END) -------
 
 
------ FUNCTION kb_24g_get_led_status (BEGIN) -----
- FILE: 'kb_process.c'
-  129: void kb_24g_get_led_status()		//get RF Ack for get numlock/capslock status
-  130: {
-  131: 	if((get_24g_led_send == 1) && (repeat_send_24g == 0))
-  132: 	{
-001552 904DD0            MOV     DPTR,#get_24g_led_send
-001555 E0                MOVX    A,@DPTR
-001556 6401              XRL     A,#01H
-001558 7030              JNZ     ?C0027?KB_PROCESS
-00155A 904DD6            MOV     DPTR,#repeat_send_24g
-00155D E0                MOVX    A,@DPTR
-00155E 702A              JNZ     ?C0027?KB_PROCESS
-  133: 		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
-  134: 		{
-001560 904CC5            MOV     DPTR,#g_variable+06H
-001563 E0                MOVX    A,@DPTR
-001564 6403              XRL     A,#03H
-001566 704E              JNZ     ?C0031?KB_PROCESS
-  135: 			xmemclear(hidBuff,9);
-  136: 			IPC_TxHidData(hidBuff, 9);
-001568 7B01              MOV     R3,#01H
-00156A 7A48              MOV     R2,#HIGH hidBuff
-00156C 7900              MOV     R1,#LOW hidBuff
-00156E 7D09              MOV     R5,#09H
-001570 FC                MOV     R4,A
-001571 120EB3            LCALL   _xmemclear
-  137: 			get_24g_led_send = 2;
-001574 7B01              MOV     R3,#01H
-001576 7A48              MOV     R2,#HIGH hidBuff
-001578 7900              MOV     R1,#LOW hidBuff
-00157A 7D09              MOV     R5,#09H
-00157C 910E              ACALL   _IPC_TxHidData
-  138: 			mult_key_status = 0;
-00157E 904DD0            MOV     DPTR,#get_24g_led_send
-001581 7402              MOV     A,#02H
-001583 F0                MOVX    @DPTR,A
-  139: 		}	
-001584 E4                CLR     A
-001585 904DE4            MOV     DPTR,#mult_key_status
-001588 F0                MOVX    @DPTR,A
-  140: 	}
-  141: 	else if ((get_24g_led_send == 2) && (repeat_send_24g == 0))
-001589 22                RET     
-00158A         ?C0027?KB_PROCESS:
-  142: 	{
-00158A 904DD0            MOV     DPTR,#get_24g_led_send
-00158D E0                MOVX    A,@DPTR
-00158E B40225            CJNE    A,#02H,?C0031?KB_PROCESS
-001591 904DD6            MOV     DPTR,#repeat_send_24g
-001594 E0                MOVX    A,@DPTR
-001595 701F              JNZ     ?C0031?KB_PROCESS
-  143: 		get_24g_led_send = 0;
-  144: 		xmemclear(hidBuff,9);
-001597 904DD0            MOV     DPTR,#get_24g_led_send
-00159A F0                MOVX    @DPTR,A
-  145: 		IPC_TxHidData(hidBuff, 9);
-00159B 7B01              MOV     R3,#01H
-00159D 7A48              MOV     R2,#HIGH hidBuff
-00159F 7900              MOV     R1,#LOW hidBuff
-0015A1 7D09              MOV     R5,#09H
-0015A3 FC                MOV     R4,A
-0015A4 120EB3            LCALL   _xmemclear
-  146: 		mult_key_status = 0;
-0015A7 7B01              MOV     R3,#01H
-0015A9 7A48              MOV     R2,#HIGH hidBuff
-0015AB 7900              MOV     R1,#LOW hidBuff
-0015AD 7D09              MOV     R5,#09H
-0015AF 910E              ACALL   _IPC_TxHidData
-  147: 	}
-0015B1 E4                CLR     A
-0015B2 904DE4            MOV     DPTR,#mult_key_status
-0015B5 F0                MOVX    @DPTR,A
-  148: }
-  149: 
-0015B6         ?C0031?KB_PROCESS:
-0015B6 22                RET     
------ FUNCTION kb_24g_get_led_status (END) -------
+----- FUNCTION _GPIO_Setoe (BEGIN) -----
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+0015AD EF                MOV     A,R7
+0015AE F4                CPL     A
+0015AF 600C              JZ      ?C0013?GPIO
+0015B1         ?C0012?GPIO:
+0015B1 7B01              MOV     R3,#01H
+0015B3 7A80              MOV     R2,#080H
+0015B5 7970              MOV     R1,#070H
+0015B7 A204              MOV     C,bit_val
+0015B9 9200              MOV     ?_gpioSetBit?BIT,C
+0015BB B1CF              ACALL   _gpioSetBit
+0015BD         ?C0013?GPIO:
+0015BD 22                RET     
+----- FUNCTION _GPIO_Setoe (END) -------
 
 
------ FUNCTION kb_cb_Timer100ms (BEGIN) -----
- FILE: 'sys.c'
-  305: static void kb_cb_Timer100ms()
-  306: {
-  307: 
-  308: 	if (g_variable.delay_enter_lpm_timer) 
-0015B7 904CEA            MOV     DPTR,#g_variable+02BH
-0015BA E0                MOVX    A,@DPTR
-0015BB 6002              JZ      ?C0063?SYS
-  309: 	{
-  310: 		g_variable.delay_enter_lpm_timer --;
-0015BD 14                DEC     A
-0015BE F0                MOVX    @DPTR,A
-  311: 	}
-0015BF         ?C0063?SYS:
-  312: 
-  313: 	if(g_variable.recon_delay)
-0015BF 904CEF            MOV     DPTR,#g_variable+030H
-0015C2 E0                MOVX    A,@DPTR
-0015C3 6002              JZ      ?C0064?SYS
-  314: 		g_variable.recon_delay--;
-0015C5 14                DEC     A
-0015C6 F0                MOVX    @DPTR,A
-0015C7         ?C0064?SYS:
-  315: 
-  316: 	if (g_variable.powerOn_timer != 0)
-0015C7 904CE5            MOV     DPTR,#g_variable+026H
-0015CA E0                MOVX    A,@DPTR
-0015CB 600F              JZ      ?C0065?SYS
-  317: 	{	
-  318: 		g_variable.powerOn_timer--;
-0015CD 14                DEC     A
-0015CE F0                MOVX    @DPTR,A
-  319: 		LED_device_poweron();
-0015CF 1207F8            LCALL   LED_device_poweron
-  320: 		if (!g_variable.powerOn_timer)
-0015D2 904CE5            MOV     DPTR,#g_variable+026H
-0015D5 E0                MOVX    A,@DPTR
-0015D6 702F              JNZ     ?C0067?SYS
-  321: 		{
-  322: 			LED_device_poweroff();
-0015D8 F1AC              ACALL   LED_device_poweroff
-  323: 		}
-  324: 	}
-0015DA 802B              SJMP    ?C0067?SYS
-0015DC         ?C0065?SYS:
-  325: 	else
-  326: 	if (g_variable.pairing_g24_timeout == 0) //bt  pairing
-0015DC 904CEE            MOV     DPTR,#g_variable+02FH
-0015DF E0                MOVX    A,@DPTR
-0015E0 7025              JNZ     ?C0067?SYS
-  327: 	{
-  328: 		if(g_variable.battery_low_led_flash_interval)
-0015E2 904CE2            MOV     DPTR,#g_variable+023H
-0015E5 E0                MOVX    A,@DPTR
-0015E6 601F              JZ      ?C0067?SYS
-  329: 		{
-  330: 			g_variable.battery_low_led_flash_interval--;
-0015E8 14                DEC     A
-0015E9 F0                MOVX    @DPTR,A
-  331: 			if(g_variable.battery_low_led_flash_interval & 0x02)
-0015EA E0                MOVX    A,@DPTR
-0015EB 30E109            JNB     ACC.1,?C0070?SYS
-  332: 			{
-  333: 				GPIO_Setout(LOWPOWER_LED_GPIO, LED_ON);
-0015EE D201              SETB    ?_GPIO_Setout?BIT
-0015F0 7F1D              MOV     R7,#01DH
-0015F2 12078B            LCALL   _GPIO_Setout
-  334: 			}
-0015F5 8007              SJMP    ?C0071?SYS
-0015F7         ?C0070?SYS:
-  335: 			else
-  336: 				GPIO_Setout(LOWPOWER_LED_GPIO, LED_OFF);	
-0015F7 C201              CLR     ?_GPIO_Setout?BIT
-0015F9 7F1D              MOV     R7,#01DH
-0015FB 12078B            LCALL   _GPIO_Setout
-0015FE         ?C0071?SYS:
-  337: 			if(!g_variable.battery_low_led_flash_interval)
-0015FE 904CE2            MOV     DPTR,#g_variable+023H
-001601 E0                MOVX    A,@DPTR
-001602 7003              JNZ     ?C0067?SYS
-  338: 				g_variable.battery_low_led_flash_interval = LOW_BATTERY_FLASH_INTERVAL;
-001604 7404              MOV     A,#04H
-001606 F0                MOVX    @DPTR,A
-  339: 		}
-  340: 	}
-001607         ?C0067?SYS:
-  341: 	
-  342: // The dongle must receive data within 200ms, otherwise it will be forced to lift
-  343: 	if(!long_press_flag)
-001607 904DD5            MOV     DPTR,#long_press_flag
-00160A E0                MOVX    A,@DPTR
-00160B 702B              JNZ     ?C0073?SYS
-  344: 	{
-  345: 		if (repeat_send_24g == 1)
-00160D 904DD6            MOV     DPTR,#repeat_send_24g
+----- FUNCTION _GPIO_SetPd (BEGIN) -----
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+0015BE EF                MOV     A,R7
+0015BF F4                CPL     A
+0015C0 600C              JZ      ?C0011?GPIO
+0015C2         ?C0010?GPIO:
+0015C2 7B01              MOV     R3,#01H
+0015C4 7A80              MOV     R2,#080H
+0015C6 797C              MOV     R1,#07CH
+0015C8 A203              MOV     C,bit_val
+0015CA 9200              MOV     ?_gpioSetBit?BIT,C
+0015CC B1CF              ACALL   _gpioSetBit
+0015CE         ?C0011?GPIO:
+0015CE 22                RET     
+----- FUNCTION _GPIO_SetPd (END) -------
+
+
+----- FUNCTION _gpioSetBit (BEGIN) -----
+0015CF 904E84            MOV     DPTR,#reg_base
+0015D2 EB                MOV     A,R3
+0015D3 F0                MOVX    @DPTR,A
+0015D4 A3                INC     DPTR
+0015D5 EA                MOV     A,R2
+0015D6 F0                MOVX    @DPTR,A
+0015D7 A3                INC     DPTR
+0015D8 E9                MOV     A,R1
+0015D9 F0                MOVX    @DPTR,A
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+;---- Variable 'queue' assigned to Register 'R6' ----
+0015DA E4                CLR     A
+0015DB FE                MOV     R6,A
+;---- Variable 'group' assigned to Register 'R5' ----
+0015DC FD                MOV     R5,A
+0015DD EF                MOV     A,R7
+0015DE 5407              ANL     A,#07H
+0015E0 FE                MOV     R6,A
+0015E1 EF                MOV     A,R7
+0015E2 13                RRC     A
+0015E3 13                RRC     A
+0015E4 13                RRC     A
+0015E5 5403              ANL     A,#03H
+0015E7 FD                MOV     R5,A
+0015E8 300022            JNB     bit_val,?C0001?GPIO
+0015EB 904E84            MOV     DPTR,#reg_base
+0015EE E0                MOVX    A,@DPTR
+0015EF FB                MOV     R3,A
+0015F0 A3                INC     DPTR
+0015F1 E0                MOVX    A,@DPTR
+0015F2 FA                MOV     R2,A
+0015F3 A3                INC     DPTR
+0015F4 E0                MOVX    A,@DPTR
+0015F5 2D                ADD     A,R5
+0015F6 F9                MOV     R1,A
+0015F7 E4                CLR     A
+0015F8 3A                ADDC    A,R2
+0015F9 FA                MOV     R2,A
+0015FA 1203B6            LCALL   ?C?CLDPTR
+0015FD FF                MOV     R7,A
+0015FE 7401              MOV     A,#01H
+001600 A806              MOV     R0,AR6
+001602 08                INC     R0
+001603 8002              SJMP    ?C0031?GPIO
+001605         ?C0030?GPIO:
+001605 C3                CLR     C
+001606 33                RLC     A
+001607         ?C0031?GPIO:
+001607 D8FC              DJNZ    R0,?C0030?GPIO
+001609 4F                ORL     A,R7
+00160A 0203FC            LJMP    ?C?CSTPTR
+00160D         ?C0001?GPIO:
+00160D 904E84            MOV     DPTR,#reg_base
 001610 E0                MOVX    A,@DPTR
-001611 6401              XRL     A,#01H
-001613 7023              JNZ     ?C0073?SYS
-  346: 		{
-  347: 			repeat_send_24g = 0;
-001615 F0                MOVX    @DPTR,A
-  348: 
-  349: 			 if (multikey[0] != 0)
-001616 904DE5            MOV     DPTR,#multikey
-001619 E0                MOVX    A,@DPTR
-00161A 600C              JZ      ?C0075?SYS
-  350: 			{
-  351: 				IPC_TxHidData(multikey, 3);
-00161C 7B01              MOV     R3,#01H
-00161E 7A4D              MOV     R2,#HIGH multikey
-001620 79E5              MOV     R1,#LOW multikey
-001622 7D03              MOV     R5,#03H
-001624 910E              ACALL   _IPC_TxHidData
-  352: 			}
-001626 8010              SJMP    ?C0073?SYS
-001628         ?C0075?SYS:
-  353: 			else if (hidBuff[0] != 0)
-001628 904800            MOV     DPTR,#hidBuff
-00162B E0                MOVX    A,@DPTR
-00162C 600A              JZ      ?C0073?SYS
-  354: 			{
-  355: 
-  356: 				IPC_TxHidData(hidBuff,9);
-00162E 7B01              MOV     R3,#01H
-001630 7A48              MOV     R2,#HIGH hidBuff
-001632 7900              MOV     R1,#LOW hidBuff
-001634 7D09              MOV     R5,#09H
-001636 910E              ACALL   _IPC_TxHidData
-  357: 			}
-  358: 		}
-  359: 	}
-001638         ?C0073?SYS:
-  360: 
-  361: 	if (delayChgInvTimer != 0){
-001638 904DDE            MOV     DPTR,#delayChgInvTimer
-00163B E0                MOVX    A,@DPTR
-00163C 6003              JZ      ?C0079?SYS
-  362: 		delayChgInvTimer--;
-00163E E0                MOVX    A,@DPTR
-00163F 14                DEC     A
-001640 F0                MOVX    @DPTR,A
-  363: 	}
-  364: }
-001641         ?C0079?SYS:
-001641 22                RET     
------ FUNCTION kb_cb_Timer100ms (END) -------
+001611 FB                MOV     R3,A
+001612 A3                INC     DPTR
+001613 E0                MOVX    A,@DPTR
+001614 FA                MOV     R2,A
+001615 A3                INC     DPTR
+001616 E0                MOVX    A,@DPTR
+001617 2D                ADD     A,R5
+001618 F9                MOV     R1,A
+001619 E4                CLR     A
+00161A 3A                ADDC    A,R2
+00161B FA                MOV     R2,A
+00161C 1203B6            LCALL   ?C?CLDPTR
+00161F FF                MOV     R7,A
+001620 7401              MOV     A,#01H
+001622 A806              MOV     R0,AR6
+001624 08                INC     R0
+001625 8002              SJMP    ?C0033?GPIO
+001627         ?C0032?GPIO:
+001627 C3                CLR     C
+001628 33                RLC     A
+001629         ?C0033?GPIO:
+001629 D8FC              DJNZ    R0,?C0032?GPIO
+00162B F4                CPL     A
+00162C 5F                ANL     A,R7
+00162D 0203FC            LJMP    ?C?CSTPTR
+----- FUNCTION _gpioSetBit (END) -------
 
 
------ FUNCTION _IIC_write (BEGIN) -----
-001642 904E3F            MOV     DPTR,#addr
-001645 EE                MOV     A,R6
-001646 F0                MOVX    @DPTR,A
-001647 A3                INC     DPTR
-001648 EF                MOV     A,R7
+----- FUNCTION ksRawInitialize (BEGIN) -----
+ FILE: 'keyscan.c'
+  189: static void ksRawInitialize()
+  190: {
+  191: 	byte i = 0;
+  192: 	
+001630 E4                CLR     A
+001631 904E8F            MOV     DPTR,#i
+001634 F0                MOVX    @DPTR,A
+  193: 	for (i=0; i<8; i++) {
+001635 F0                MOVX    @DPTR,A
+001636         ?C0028?KEYSCAN:
+001636 904E8F            MOV     DPTR,#i
+001639 E0                MOVX    A,@DPTR
+00163A FF                MOV     R7,A
+00163B C3                CLR     C
+00163C 9408              SUBB    A,#08H
+00163E 500C              JNC     ?C0031?KEYSCAN
+  194: 		GPIO_SetInput(i, 0);
+001640 C205              CLR     ?_GPIO_SetInput?BIT
+001642 B18F              ACALL   _GPIO_SetInput
+  195: 	}
+001644 904E8F            MOV     DPTR,#i
+001647 E0                MOVX    A,@DPTR
+001648 04                INC     A
 001649 F0                MOVX    @DPTR,A
-00164A 904E43            MOV     DPTR,#pbuff
-00164D EB                MOV     A,R3
-00164E F0                MOVX    @DPTR,A
-00164F A3                INC     DPTR
-001650 EA                MOV     A,R2
+00164A 80EA              SJMP    ?C0028?KEYSCAN
+  196: }
+00164C         ?C0031?KEYSCAN:
+00164C 22                RET     
+----- FUNCTION ksRawInitialize (END) -------
+
+
+----- FUNCTION _IIC_write (BEGIN) -----
+00164D 904E3F            MOV     DPTR,#addr
+001650 EE                MOV     A,R6
 001651 F0                MOVX    @DPTR,A
 001652 A3                INC     DPTR
-001653 E9                MOV     A,R1
+001653 EF                MOV     A,R7
 001654 F0                MOVX    @DPTR,A
-001655 904E41            MOV     DPTR,#len
-001658 EC                MOV     A,R4
+001655 904E43            MOV     DPTR,#pbuff
+001658 EB                MOV     A,R3
 001659 F0                MOVX    @DPTR,A
 00165A A3                INC     DPTR
-00165B ED                MOV     A,R5
+00165B EA                MOV     A,R2
 00165C F0                MOVX    @DPTR,A
 00165D A3                INC     DPTR
-00165E E0                MOVX    A,@DPTR
-00165F F9                MOV     R1,A
-001660 A3                INC     DPTR
-001661 E0                MOVX    A,@DPTR
-001662 FA                MOV     R2,A
-001663 A3                INC     DPTR
-001664 E0                MOVX    A,@DPTR
-001665 904E2C            MOV     DPTR,#?_dmemcpy?BYTE+03H
-001668 C9                XCH     A,R1
-001669 F0                MOVX    @DPTR,A
-00166A A3                INC     DPTR
-00166B EA                MOV     A,R2
-00166C F0                MOVX    @DPTR,A
-00166D A3                INC     DPTR
-00166E E9                MOV     A,R1
-00166F F0                MOVX    @DPTR,A
-001670 A3                INC     DPTR
-001671 EC                MOV     A,R4
-001672 F0                MOVX    @DPTR,A
-001673 A3                INC     DPTR
-001674 ED                MOV     A,R5
-001675 F0                MOVX    @DPTR,A
-001676 7B01              MOV     R3,#01H
-001678 7A0B              MOV     R2,#HIGH IIC_TempBuff+03H
-00167A 7986              MOV     R1,#LOW IIC_TempBuff+03H
-00167C 1224B1            LCALL   _dmemcpy
-00167F 900B83            MOV     DPTR,#IIC_TempBuff
-001682 74A0              MOV     A,#0A0H
-001684 F0                MOVX    @DPTR,A
-001685 904E3F            MOV     DPTR,#addr
-001688 E0                MOVX    A,@DPTR
-001689 FF                MOV     R7,A
-00168A A3                INC     DPTR
-00168B E0                MOVX    A,@DPTR
-00168C 900B84            MOV     DPTR,#IIC_TempBuff+01H
-00168F CF                XCH     A,R7
-001690 F0                MOVX    @DPTR,A
-001691 A3                INC     DPTR
-001692 EF                MOV     A,R7
-001693 F0                MOVX    @DPTR,A
-001694 904E42            MOV     DPTR,#len+01H
-001697 E0                MOVX    A,@DPTR
-001698 2403              ADD     A,#03H
-00169A FD                MOV     R5,A
-00169B 904E41            MOV     DPTR,#len
-00169E E0                MOVX    A,@DPTR
-00169F 3400              ADDC    A,#00H
-0016A1 FC                MOV     R4,A
-0016A2 ED                MOV     A,R5
-0016A3 FA                MOV     R2,A
-0016A4 EC                MOV     A,R4
-0016A5 FF                MOV     R7,A
-0016A6 EA                MOV     A,R2
-0016A7 FE                MOV     R6,A
-0016A8 EF                MOV     A,R7
-0016A9 908098            MOV     DPTR,#08098H
-0016AC EE                MOV     A,R6
-0016AD F0                MOVX    @DPTR,A
-0016AE A3                INC     DPTR
-0016AF EF                MOV     A,R7
-0016B0 F0                MOVX    @DPTR,A
-0016B1 7A0B              MOV     R2,#HIGH IIC_TempBuff
-0016B3 7983              MOV     R1,#LOW IIC_TempBuff
-0016B5 7E0B              MOV     R6,#HIGH IIC_TempBuff
-0016B7 7F83              MOV     R7,#LOW IIC_TempBuff
-0016B9 7483              MOV     A,#LOW IIC_TempBuff
-0016BB FC                MOV     R4,A
-0016BC 740B              MOV     A,#HIGH IIC_TempBuff
-0016BE FF                MOV     R7,A
-0016BF EC                MOV     A,R4
-0016C0 FE                MOV     R6,A
-0016C1 EF                MOV     A,R7
-0016C2 A3                INC     DPTR
-0016C3 EE                MOV     A,R6
-0016C4 F0                MOVX    @DPTR,A
-0016C5 A3                INC     DPTR
-0016C6 EF                MOV     A,R7
-0016C7 F0                MOVX    @DPTR,A
-0016C8 90809E            MOV     DPTR,#0809EH
-0016CB E4                CLR     A
-0016CC F0                MOVX    @DPTR,A
+00165E E9                MOV     A,R1
+00165F F0                MOVX    @DPTR,A
+001660 904E41            MOV     DPTR,#len
+001663 EC                MOV     A,R4
+001664 F0                MOVX    @DPTR,A
+001665 A3                INC     DPTR
+001666 ED                MOV     A,R5
+001667 F0                MOVX    @DPTR,A
+001668 A3                INC     DPTR
+001669 E0                MOVX    A,@DPTR
+00166A F9                MOV     R1,A
+00166B A3                INC     DPTR
+00166C E0                MOVX    A,@DPTR
+00166D FA                MOV     R2,A
+00166E A3                INC     DPTR
+00166F E0                MOVX    A,@DPTR
+001670 904E2C            MOV     DPTR,#?_dmemcpy?BYTE+03H
+001673 C9                XCH     A,R1
+001674 F0                MOVX    @DPTR,A
+001675 A3                INC     DPTR
+001676 EA                MOV     A,R2
+001677 F0                MOVX    @DPTR,A
+001678 A3                INC     DPTR
+001679 E9                MOV     A,R1
+00167A F0                MOVX    @DPTR,A
+00167B A3                INC     DPTR
+00167C EC                MOV     A,R4
+00167D F0                MOVX    @DPTR,A
+00167E A3                INC     DPTR
+00167F ED                MOV     A,R5
+001680 F0                MOVX    @DPTR,A
+001681 7B01              MOV     R3,#01H
+001683 7A0B              MOV     R2,#HIGH IIC_TempBuff+03H
+001685 7986              MOV     R1,#LOW IIC_TempBuff+03H
+001687 1221E0            LCALL   _dmemcpy
+00168A 900B83            MOV     DPTR,#IIC_TempBuff
+00168D 74A0              MOV     A,#0A0H
+00168F F0                MOVX    @DPTR,A
+001690 904E3F            MOV     DPTR,#addr
+001693 E0                MOVX    A,@DPTR
+001694 FF                MOV     R7,A
+001695 A3                INC     DPTR
+001696 E0                MOVX    A,@DPTR
+001697 900B84            MOV     DPTR,#IIC_TempBuff+01H
+00169A CF                XCH     A,R7
+00169B F0                MOVX    @DPTR,A
+00169C A3                INC     DPTR
+00169D EF                MOV     A,R7
+00169E F0                MOVX    @DPTR,A
+00169F 904E42            MOV     DPTR,#len+01H
+0016A2 E0                MOVX    A,@DPTR
+0016A3 2403              ADD     A,#03H
+0016A5 FD                MOV     R5,A
+0016A6 904E41            MOV     DPTR,#len
+0016A9 E0                MOVX    A,@DPTR
+0016AA 3400              ADDC    A,#00H
+0016AC FC                MOV     R4,A
+0016AD ED                MOV     A,R5
+0016AE FA                MOV     R2,A
+0016AF EC                MOV     A,R4
+0016B0 FF                MOV     R7,A
+0016B1 EA                MOV     A,R2
+0016B2 FE                MOV     R6,A
+0016B3 EF                MOV     A,R7
+0016B4 908098            MOV     DPTR,#08098H
+0016B7 EE                MOV     A,R6
+0016B8 F0                MOVX    @DPTR,A
+0016B9 A3                INC     DPTR
+0016BA EF                MOV     A,R7
+0016BB F0                MOVX    @DPTR,A
+0016BC 7A0B              MOV     R2,#HIGH IIC_TempBuff
+0016BE 7983              MOV     R1,#LOW IIC_TempBuff
+0016C0 7E0B              MOV     R6,#HIGH IIC_TempBuff
+0016C2 7F83              MOV     R7,#LOW IIC_TempBuff
+0016C4 7483              MOV     A,#LOW IIC_TempBuff
+0016C6 FC                MOV     R4,A
+0016C7 740B              MOV     A,#HIGH IIC_TempBuff
+0016C9 FF                MOV     R7,A
+0016CA EC                MOV     A,R4
+0016CB FE                MOV     R6,A
+0016CC EF                MOV     A,R7
 0016CD A3                INC     DPTR
-0016CE F0                MOVX    @DPTR,A
-0016CF 908090            MOV     DPTR,#08090H
-0016D2 04                INC     A
-0016D3 F0                MOVX    @DPTR,A
-0016D4 908006            MOV     DPTR,#08006H
-0016D7 E0                MOVX    A,@DPTR
-0016D8 4404              ORL     A,#04H
-0016DA F0                MOVX    @DPTR,A
+0016CE EE                MOV     A,R6
+0016CF F0                MOVX    @DPTR,A
+0016D0 A3                INC     DPTR
+0016D1 EF                MOV     A,R7
+0016D2 F0                MOVX    @DPTR,A
+0016D3 90809E            MOV     DPTR,#0809EH
+0016D6 E4                CLR     A
+0016D7 F0                MOVX    @DPTR,A
+0016D8 A3                INC     DPTR
+0016D9 F0                MOVX    @DPTR,A
+0016DA 908090            MOV     DPTR,#08090H
+0016DD 04                INC     A
+0016DE F0                MOVX    @DPTR,A
+0016DF 908006            MOV     DPTR,#08006H
+0016E2 E0                MOVX    A,@DPTR
+0016E3 4404              ORL     A,#04H
+0016E5 F0                MOVX    @DPTR,A
 ;----                  JMP     IIcWaitDone
 ----- FUNCTION _IIC_write (END) -------
 
 
 ----- FUNCTION IIcWaitDone (BEGIN) -----
-0016DB         ?C0001?IIC:
-0016DB 90812C            MOV     DPTR,#0812CH
-0016DE E0                MOVX    A,@DPTR
-0016DF 30E5F9            JNB     ACC.5,?C0001?IIC
-0016E2 22                RET     
+0016E6         ?C0001?IIC:
+0016E6 90812C            MOV     DPTR,#0812CH
+0016E9 E0                MOVX    A,@DPTR
+0016EA 30E5F9            JNB     ACC.5,?C0001?IIC
+0016ED 22                RET     
 ----- FUNCTION IIcWaitDone (END) -------
 
 
 ----- FUNCTION IPC_DealSingleStep (BEGIN) -----
-0016E3 7A0C              MOV     R2,#HIGH ipcReadBuff
-0016E5 794B              MOV     R1,#LOW ipcReadBuff
-0016E7 904E7B            MOV     DPTR,#pbuff
-0016EA 7401              MOV     A,#01H
-0016EC F0                MOVX    @DPTR,A
-0016ED A3                INC     DPTR
-0016EE 740C              MOV     A,#HIGH ipcReadBuff
-0016F0 F0                MOVX    @DPTR,A
-0016F1 A3                INC     DPTR
-0016F2 744B              MOV     A,#LOW ipcReadBuff
-0016F4 F0                MOVX    @DPTR,A
-0016F5 904BA0            MOV     DPTR,#ipcRxWritePtr
-0016F8 E0                MOVX    A,@DPTR
-0016F9 FE                MOV     R6,A
-0016FA A3                INC     DPTR
-0016FB E0                MOVX    A,@DPTR
-0016FC FF                MOV     R7,A
-0016FD 904B9E            MOV     DPTR,#ipcRxReadPtr
-001700 E0                MOVX    A,@DPTR
-001701 6E                XRL     A,R6
-001702 7003              JNZ     ?C0038?IPC
-001704 A3                INC     DPTR
-001705 E0                MOVX    A,@DPTR
-001706 6F                XRL     A,R7
-001707         ?C0038?IPC:
-001707 6047              JZ      ?C0029?IPC
-001709         ?C0023?IPC:
-001709 7E0C              MOV     R6,#HIGH ipcReadBuff
-00170B 7F4B              MOV     R7,#LOW ipcReadBuff
-00170D 7D03              MOV     R5,#03H
-00170F 122454            LCALL   _ipcRx
-001712 904E7B            MOV     DPTR,#pbuff
-001715 E0                MOVX    A,@DPTR
-001716 FB                MOV     R3,A
-001717 A3                INC     DPTR
-001718 E0                MOVX    A,@DPTR
-001719 FA                MOV     R2,A
-00171A A3                INC     DPTR
-00171B E0                MOVX    A,@DPTR
-00171C F9                MOV     R1,A
-00171D 1203B6            LCALL   ?C?CLDPTR
-001720 B4022B            CJNE    A,#02H,?C0027?IPC
-001723 904E7C            MOV     DPTR,#pbuff+01H
-001726 E4                CLR     A
-001727 75F002            MOV     B,#02H
-00172A 12040E            LCALL   ?C?IILDX
-00172D 904E7B            MOV     DPTR,#pbuff
-001730 E0                MOVX    A,@DPTR
-001731 FB                MOV     R3,A
-001732 A3                INC     DPTR
-001733 E0                MOVX    A,@DPTR
-001734 FA                MOV     R2,A
-001735 A3                INC     DPTR
-001736 E0                MOVX    A,@DPTR
-001737 F9                MOV     R1,A
-001738 1203B6            LCALL   ?C?CLDPTR
-00173B FF                MOV     R7,A
-00173C 904E00            MOV     DPTR,#ipcCb
-00173F E0                MOVX    A,@DPTR
+0016EE 7A0C              MOV     R2,#HIGH ipcReadBuff
+0016F0 794B              MOV     R1,#LOW ipcReadBuff
+0016F2 904E7B            MOV     DPTR,#pbuff
+0016F5 7401              MOV     A,#01H
+0016F7 F0                MOVX    @DPTR,A
+0016F8 A3                INC     DPTR
+0016F9 740C              MOV     A,#HIGH ipcReadBuff
+0016FB F0                MOVX    @DPTR,A
+0016FC A3                INC     DPTR
+0016FD 744B              MOV     A,#LOW ipcReadBuff
+0016FF F0                MOVX    @DPTR,A
+001700 904BA0            MOV     DPTR,#ipcRxWritePtr
+001703 E0                MOVX    A,@DPTR
+001704 FE                MOV     R6,A
+001705 A3                INC     DPTR
+001706 E0                MOVX    A,@DPTR
+001707 FF                MOV     R7,A
+001708 904B9E            MOV     DPTR,#ipcRxReadPtr
+00170B E0                MOVX    A,@DPTR
+00170C 6E                XRL     A,R6
+00170D 7003              JNZ     ?C0038?IPC
+00170F A3                INC     DPTR
+001710 E0                MOVX    A,@DPTR
+001711 6F                XRL     A,R7
+001712         ?C0038?IPC:
+001712 6047              JZ      ?C0029?IPC
+001714         ?C0023?IPC:
+001714 7E0C              MOV     R6,#HIGH ipcReadBuff
+001716 7F4B              MOV     R7,#LOW ipcReadBuff
+001718 7D03              MOV     R5,#03H
+00171A 122183            LCALL   _ipcRx
+00171D 904E7B            MOV     DPTR,#pbuff
+001720 E0                MOVX    A,@DPTR
+001721 FB                MOV     R3,A
+001722 A3                INC     DPTR
+001723 E0                MOVX    A,@DPTR
+001724 FA                MOV     R2,A
+001725 A3                INC     DPTR
+001726 E0                MOVX    A,@DPTR
+001727 F9                MOV     R1,A
+001728 1203B6            LCALL   ?C?CLDPTR
+00172B B4022B            CJNE    A,#02H,?C0027?IPC
+00172E 904E7C            MOV     DPTR,#pbuff+01H
+001731 E4                CLR     A
+001732 75F002            MOV     B,#02H
+001735 12040E            LCALL   ?C?IILDX
+001738 904E7B            MOV     DPTR,#pbuff
+00173B E0                MOVX    A,@DPTR
+00173C FB                MOV     R3,A
+00173D A3                INC     DPTR
+00173E E0                MOVX    A,@DPTR
+00173F FA                MOV     R2,A
 001740 A3                INC     DPTR
 001741 E0                MOVX    A,@DPTR
-001742 FA                MOV     R2,A
-001743 A3                INC     DPTR
-001744 E0                MOVX    A,@DPTR
-001745 F582              MOV     DPL,A
-001747 8A83              MOV     DPH,R2
-001749 120568            LCALL   ?C?ICALL2
-00174C 8002              SJMP    ?C0029?IPC
-00174E         ?C0027?IPC:
-00174E 80FE              SJMP    ?C0027?IPC
-001750         IPC_TIMER:
-001750         ?C0029?IPC:
-001750 904BA5            MOV     DPTR,#bttimer
-001753 E0                MOVX    A,@DPTR
-001754 FE                MOV     R6,A
-001755 A3                INC     DPTR
-001756 E0                MOVX    A,@DPTR
-001757 FF                MOV     R7,A
-001758 904C5E            MOV     DPTR,#c51timer
-00175B E0                MOVX    A,@DPTR
-00175C 6E                XRL     A,R6
-00175D 7003              JNZ     ?C0039?IPC
-00175F A3                INC     DPTR
-001760 E0                MOVX    A,@DPTR
-001761 6F                XRL     A,R7
-001762         ?C0039?IPC:
-001762 6022              JZ      ?C0033?IPC
-001764 904E06            MOV     DPTR,#ipcCb+06H
-001767 E0                MOVX    A,@DPTR
-001768 FB                MOV     R3,A
-001769 A3                INC     DPTR
-00176A E0                MOVX    A,@DPTR
-00176B FA                MOV     R2,A
-00176C A3                INC     DPTR
-00176D E0                MOVX    A,@DPTR
-00176E F9                MOV     R1,A
-00176F 4A                ORL     A,R2
-001770 6037              JZ      ?C0032?IPC
-001772         ?C0031?IPC:
-001772 120564            LCALL   ?C?ICALL
-001775 904BA5            MOV     DPTR,#bttimer
+001742 F9                MOV     R1,A
+001743 1203B6            LCALL   ?C?CLDPTR
+001746 FF                MOV     R7,A
+001747 904E00            MOV     DPTR,#ipcCb
+00174A E0                MOVX    A,@DPTR
+00174B A3                INC     DPTR
+00174C E0                MOVX    A,@DPTR
+00174D FA                MOV     R2,A
+00174E A3                INC     DPTR
+00174F E0                MOVX    A,@DPTR
+001750 F582              MOV     DPL,A
+001752 8A83              MOV     DPH,R2
+001754 120568            LCALL   ?C?ICALL2
+001757 8002              SJMP    ?C0029?IPC
+001759         ?C0027?IPC:
+001759 80FE              SJMP    ?C0027?IPC
+00175B         IPC_TIMER:
+00175B         ?C0029?IPC:
+00175B 904BA5            MOV     DPTR,#bttimer
+00175E E0                MOVX    A,@DPTR
+00175F FE                MOV     R6,A
+001760 A3                INC     DPTR
+001761 E0                MOVX    A,@DPTR
+001762 FF                MOV     R7,A
+001763 904C5E            MOV     DPTR,#c51timer
+001766 E0                MOVX    A,@DPTR
+001767 6E                XRL     A,R6
+001768 7003              JNZ     ?C0039?IPC
+00176A A3                INC     DPTR
+00176B E0                MOVX    A,@DPTR
+00176C 6F                XRL     A,R7
+00176D         ?C0039?IPC:
+00176D 6022              JZ      ?C0033?IPC
+00176F 904E06            MOV     DPTR,#ipcCb+06H
+001772 E0                MOVX    A,@DPTR
+001773 FB                MOV     R3,A
+001774 A3                INC     DPTR
+001775 E0                MOVX    A,@DPTR
+001776 FA                MOV     R2,A
+001777 A3                INC     DPTR
 001778 E0                MOVX    A,@DPTR
-001779 FF                MOV     R7,A
-00177A A3                INC     DPTR
-00177B E0                MOVX    A,@DPTR
-00177C 904C5E            MOV     DPTR,#c51timer
-00177F CF                XCH     A,R7
-001780 F0                MOVX    @DPTR,A
-001781 A3                INC     DPTR
-001782 EF                MOV     A,R7
-001783 F0                MOVX    @DPTR,A
-001784 80CA              SJMP    ?C0029?IPC
-001786         ?C0033?IPC:
-001786 904C8D            MOV     DPTR,#btstimer
-001789 E0                MOVX    A,@DPTR
-00178A FF                MOV     R7,A
-00178B A3                INC     DPTR
-00178C E0                MOVX    A,@DPTR
-00178D 6F                XRL     A,R7
-00178E 6019              JZ      ?C0032?IPC
-001790 904E09            MOV     DPTR,#ipcCb+09H
-001793 E0                MOVX    A,@DPTR
-001794 FB                MOV     R3,A
-001795 A3                INC     DPTR
-001796 E0                MOVX    A,@DPTR
-001797 FA                MOV     R2,A
-001798 A3                INC     DPTR
-001799 E0                MOVX    A,@DPTR
-00179A F9                MOV     R1,A
-00179B 4A                ORL     A,R2
-00179C 600B              JZ      ?C0032?IPC
-00179E         ?C0035?IPC:
-00179E 120564            LCALL   ?C?ICALL
-0017A1 904C8D            MOV     DPTR,#btstimer
+001779 F9                MOV     R1,A
+00177A 4A                ORL     A,R2
+00177B 6037              JZ      ?C0032?IPC
+00177D         ?C0031?IPC:
+00177D 120564            LCALL   ?C?ICALL
+001780 904BA5            MOV     DPTR,#bttimer
+001783 E0                MOVX    A,@DPTR
+001784 FF                MOV     R7,A
+001785 A3                INC     DPTR
+001786 E0                MOVX    A,@DPTR
+001787 904C5E            MOV     DPTR,#c51timer
+00178A CF                XCH     A,R7
+00178B F0                MOVX    @DPTR,A
+00178C A3                INC     DPTR
+00178D EF                MOV     A,R7
+00178E F0                MOVX    @DPTR,A
+00178F 80CA              SJMP    ?C0029?IPC
+001791         ?C0033?IPC:
+001791 904C8D            MOV     DPTR,#btstimer
+001794 E0                MOVX    A,@DPTR
+001795 FF                MOV     R7,A
+001796 A3                INC     DPTR
+001797 E0                MOVX    A,@DPTR
+001798 6F                XRL     A,R7
+001799 6019              JZ      ?C0032?IPC
+00179B 904E09            MOV     DPTR,#ipcCb+09H
+00179E E0                MOVX    A,@DPTR
+00179F FB                MOV     R3,A
+0017A0 A3                INC     DPTR
+0017A1 E0                MOVX    A,@DPTR
+0017A2 FA                MOV     R2,A
+0017A3 A3                INC     DPTR
 0017A4 E0                MOVX    A,@DPTR
-0017A5 A3                INC     DPTR
-0017A6 F0                MOVX    @DPTR,A
-0017A7 80DD              SJMP    ?C0033?IPC
-0017A9         ?C0032?IPC:
-0017A9 22                RET     
+0017A5 F9                MOV     R1,A
+0017A6 4A                ORL     A,R2
+0017A7 600B              JZ      ?C0032?IPC
+0017A9         ?C0035?IPC:
+0017A9 120564            LCALL   ?C?ICALL
+0017AC 904C8D            MOV     DPTR,#btstimer
+0017AF E0                MOVX    A,@DPTR
+0017B0 A3                INC     DPTR
+0017B1 F0                MOVX    @DPTR,A
+0017B2 80DD              SJMP    ?C0033?IPC
+0017B4         ?C0032?IPC:
+0017B4 22                RET     
 ----- FUNCTION IPC_DealSingleStep (END) -------
 
 
@@ -3914,883 +3913,707 @@
     6: {
     7: 	YC_System_Main();
     8: }
-0017AA 21E3              AJMP    YC_System_Main
+0017B5 618B              AJMP    YC_System_Main
 ----- FUNCTION main (END) -------
 
 
------ FUNCTION LED_device_poweroff (BEGIN) -----
- FILE: 'led.c'
-   19: void LED_device_poweroff()
-   20: {
-   21: 	GPIO_Setout(G24_LED_GPIO,LED_OFF);
-   22: }
-0017AC C201              CLR     ?_GPIO_Setout?BIT
-0017AE 7F1D              MOV     R7,#01DH
-0017B0 02078B            LJMP    _GPIO_Setout
------ FUNCTION LED_device_poweroff (END) -------
-
-
 ----- FUNCTION IPC_AbandonLpm (BEGIN) -----
-0017B3 900B7F            MOV     DPTR,#lpm_flag
-0017B6 7401              MOV     A,#01H
-0017B8 F0                MOVX    @DPTR,A
-0017B9 E4                CLR     A
-0017BA 900B7E            MOV     DPTR,#current_task
-0017BD F0                MOVX    @DPTR,A
-0017BE 22                RET     
+0017B7 900B7F            MOV     DPTR,#lpm_flag
+0017BA 7401              MOV     A,#01H
+0017BC F0                MOVX    @DPTR,A
+0017BD E4                CLR     A
+0017BE 900B7E            MOV     DPTR,#current_task
+0017C1 F0                MOVX    @DPTR,A
+0017C2 22                RET     
 ----- FUNCTION IPC_AbandonLpm (END) -------
 
 
------ FUNCTION IPC_IsTxBuffEmpty (BEGIN) -----
-0017BF 904B9C            MOV     DPTR,#ipcTxWritePtr
-0017C2 E0                MOVX    A,@DPTR
-0017C3 FE                MOV     R6,A
-0017C4 A3                INC     DPTR
-0017C5 E0                MOVX    A,@DPTR
-0017C6 FF                MOV     R7,A
-0017C7 904B9A            MOV     DPTR,#ipcTxReadPtr
-0017CA E0                MOVX    A,@DPTR
-0017CB B50607            CJNE    A,AR6,?C0021?IPC
-0017CE A3                INC     DPTR
-0017CF E0                MOVX    A,@DPTR
-0017D0 B50702            CJNE    A,AR7,?C0021?IPC
-0017D3 D3                SETB    C
-0017D4 22                RET     
-0017D5         ?C0021?IPC:
-0017D5 C3                CLR     C
-0017D6 22                RET     
------ FUNCTION IPC_IsTxBuffEmpty (END) -------
-
-
------ FUNCTION _kb_set_multikey (BEGIN) -----
- FILE: 'kb_process.c'
-   91: void kb_set_multikey(word multikey_value)
-   92: {
-;---- Variable 'multikey_value' assigned to Register 'R4/R5' ----
-0017D7 AD07              MOV     R5,AR7
-0017D9 AC06              MOV     R4,AR6
-   93: 	if(mult_key_status != KEY_WAIT_RELEASE)
-   94: 	{
-0017DB 904DE4            MOV     DPTR,#mult_key_status
-0017DE E0                MOVX    A,@DPTR
-0017DF 6402              XRL     A,#02H
-0017E1 600E              JZ      ?C0025?KB_PROCESS
-   95: 		mult_key_status = KEY_PRESS;
-   96: 		multikey[0] = HID_REPORTID_2;
-0017E3 7401              MOV     A,#01H
-0017E5 F0                MOVX    @DPTR,A
-   97: 		multikey[1] = (multikey_value&0xff);
-0017E6 904DE5            MOV     DPTR,#multikey
-0017E9 04                INC     A
-0017EA F0                MOVX    @DPTR,A
-   98: 		multikey[2] = ((multikey_value>>8)&0xff);
-0017EB EF                MOV     A,R7
-0017EC A3                INC     DPTR
-0017ED F0                MOVX    @DPTR,A
-   99: 	}
-0017EE EE                MOV     A,R6
-0017EF A3                INC     DPTR
-0017F0 F0                MOVX    @DPTR,A
-  100: }
-  101: 
-0017F1         ?C0025?KB_PROCESS:
-0017F1 22                RET     
------ FUNCTION _kb_set_multikey (END) -------
+----- FUNCTION _GPIO_FlipOutBit (BEGIN) -----
+0017C3 904E96            MOV     DPTR,#gpio_num
+0017C6 EF                MOV     A,R7
+0017C7 F0                MOVX    @DPTR,A
+0017C8 7B01              MOV     R3,#01H
+0017CA 7A80              MOV     R2,#080H
+0017CC 7974              MOV     R1,#074H
+0017CE B13F              ACALL   _gpioGetBit
+0017D0 9209              MOV     st,C
+0017D2 904E96            MOV     DPTR,#gpio_num
+0017D5 E0                MOVX    A,@DPTR
+0017D6 FF                MOV     R7,A
+0017D7 A209              MOV     C,st
+0017D9 B3                CPL     C
+0017DA 9201              MOV     ?_GPIO_Setout?BIT,C
+0017DC 020784            LJMP    _GPIO_Setout
+----- FUNCTION _GPIO_FlipOutBit (END) -------
 
 
------ FUNCTION _key_replace (BEGIN) -----
+----- FUNCTION _kb_combination_key_press (BEGIN) -----
  FILE: 'kb_process.c'
-  316: byte key_replace(byte key_state, byte key_value , byte key_replace_value )
-  317: {
-;---- Variable 'key_state' assigned to Register 'R7' ----
-;---- Variable 'key_replace_value' assigned to Register 'R3' ----
-;---- Variable 'key_value' assigned to Register 'R5' ----
-  318: 	byte temp_value;
-  319: 
-  320: 	temp_value = key_value;
-0017F2 AE05              MOV     R6,AR5
-;---- Variable 'temp_value' assigned to Register 'R6' ----
-  321: 	if (key_state & 1)
-0017F4 EF                MOV     A,R7
-0017F5 30E00A            JNB     ACC.0,?C0073?KB_PROCESS
-  322: 	{
-  323: 		fn_tx_flag++;
-0017F8 904DD3            MOV     DPTR,#fn_tx_flag
-0017FB E0                MOVX    A,@DPTR
-0017FC 04                INC     A
-0017FD F0                MOVX    @DPTR,A
-  324: 		temp_value = key_replace_value;
-0017FE AE03              MOV     R6,AR3
-  325: 	}
-001800 800D              SJMP    ?C0074?KB_PROCESS
-001802         ?C0073?KB_PROCESS:
-  326: 	else
-  327: 	{
-  328: 		if(fn_tx_flag != 0)
-001802 904DD3            MOV     DPTR,#fn_tx_flag
-001805 E0                MOVX    A,@DPTR
-001806 6007              JZ      ?C0074?KB_PROCESS
-  329: 		{	
-  330: 			fn_tx_flag--;
-001808 E0                MOVX    A,@DPTR
-001809 14                DEC     A
-00180A F0                MOVX    @DPTR,A
-  331: 			temp_value = key_replace_value;
-00180B AF03              MOV     R7,AR3
-00180D AE07              MOV     R6,AR7
-  332: 		}
-  333: 	}
-00180F         ?C0074?KB_PROCESS:
-  334: 
-  335: 	return temp_value;
-00180F AF06              MOV     R7,AR6
+  319: void kb_combination_key_press(byte press_state,byte special_key,byte standrad_key)
+  320: {
+;---- Variable 'press_state' assigned to Register 'R7' ----
+;---- Variable 'standrad_key' assigned to Register 'R3' ----
+;---- Variable 'special_key' assigned to Register 'R5' ----
+  321: 	g_variable.key_combination_ctrl = special_key;	
+  322: 	g_variable.key_combination_keyvalue = standrad_key;
+0017DF 904CF5            MOV     DPTR,#g_variable+036H
+0017E2 ED                MOV     A,R5
+0017E3 F0                MOVX    @DPTR,A
+  323: 
+0017E4 A3                INC     DPTR
+0017E5 EB                MOV     A,R3
+0017E6 F0                MOVX    @DPTR,A
+  324: 	if(press_state & 1)
+0017E7 EF                MOV     A,R7
+0017E8 30E012            JNB     ACC.0,?C0076?KB_PROCESS
+  325: 	{
+  326: 		if(g_variable.key_combination_step == CAMBINATION_KEY_COMPLETE) 
+0017EB 904CF4            MOV     DPTR,#g_variable+035H
+0017EE E0                MOVX    A,@DPTR
+0017EF B40304            CJNE    A,#03H,?C0077?KB_PROCESS
+  327: 			g_variable.key_combination_step = CAMBINATION_KEY_HOLD;
+0017F2 7402              MOV     A,#02H
+0017F4 F0                MOVX    @DPTR,A
+0017F5 22                RET     
+0017F6         ?C0077?KB_PROCESS:
+  328: 		else	
+  329: 			g_variable.key_combination_step = CAMBINATION_KEY_PRESS;
+0017F6 904CF4            MOV     DPTR,#g_variable+035H
+0017F9 7401              MOV     A,#01H
+0017FB F0                MOVX    @DPTR,A
+  330: 	}
+0017FC 22                RET     
+0017FD         ?C0076?KB_PROCESS:
+  331: 	else
+  332: 	{
+  333: 		g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
+0017FD 904CF4            MOV     DPTR,#g_variable+035H
+001800 7404              MOV     A,#04H
+001802 F0                MOVX    @DPTR,A
+  334: 	}
+  335: 
   336: }
-001811 22                RET     
------ FUNCTION _key_replace (END) -------
+001803 22                RET     
+----- FUNCTION _kb_combination_key_press (END) -------
 
 
 ----- FUNCTION _key_fn_function (BEGIN) -----
  FILE: 'kb_process.c'
-  341: byte key_fn_function(byte state ,byte key_value)
-  342: {
+  339: byte key_fn_function(byte state ,byte key_value)
+  340: {
 ;---- Variable 'state' assigned to Register 'R6' ----
-001812 AE07              MOV     R6,AR7
-;---- Variable 'key_value' assigned to Register 'R4' ----
-001814 AC05              MOV     R4,AR5
-  343: 	byte temp = 0;
-  344: 
-001816 E4                CLR     A
-001817 904E8E            MOV     DPTR,#temp
-00181A F0                MOVX    @DPTR,A
-  345: 	temp = key_value;
-00181B EC                MOV     A,R4
-00181C F0                MOVX    @DPTR,A
-  346: 	if(fn_flag == 1)			// Fn lock
-00181D 904DDB            MOV     DPTR,#fn_flag
-001820 E0                MOVX    A,@DPTR
-001821 6401              XRL     A,#01H
-001823 6002              JZ      $ + 4H
-001825 2176              AJMP    ?C0077?KB_PROCESS
-  347: 	{
-  348: 		
-  349: 		switch (key_value)
-001827 EC                MOV     A,R4
-001828 24C6              ADD     A,#0C6H
-00182A B40C00            CJNE    A,#0CH,?C0145?KB_PROCESS
-00182D         ?C0145?KB_PROCESS:
-00182D 4002              JC      $ + 4H
-00182F 2176              AJMP    ?C0077?KB_PROCESS
-001831 90183F            MOV     DPTR,#0183FH
-001834 75F003            MOV     B,#03H
-001837 A4                MUL     AB
-001838 C583              XCH     A,DPH
-00183A 25F0              ADD     A,B
-00183C C583              XCH     A,DPH
-00183E 73                JMP     @A+DPTR
-00183F         ?C0146?KB_PROCESS:
-00183F 021863            LJMP    ?C0079?KB_PROCESS
-001842 021873            LJMP    ?C0080?KB_PROCESS
-001845 021883            LJMP    ?C0081?KB_PROCESS
-001848 0218AF            LJMP    ?C0084?KB_PROCESS
-00184B 0218DA            LJMP    ?C0087?KB_PROCESS
-00184E 021906            LJMP    ?C0090?KB_PROCESS
-001851 021916            LJMP    ?C0091?KB_PROCESS
-001854 021926            LJMP    ?C0092?KB_PROCESS
-001857 021936            LJMP    ?C0093?KB_PROCESS
-00185A 021946            LJMP    ?C0094?KB_PROCESS
-00185D 021956            LJMP    ?C0095?KB_PROCESS
-001860 021966            LJMP    ?C0096?KB_PROCESS
-  350: 		{ 
-  351: 			case HID_KEY_F1:
-001863         ?C0079?KB_PROCESS:
-  352: 				temp = key_replace(state,key_value,HID_MULTIKEY_LIGHT_DOWN);
+001804 AE07              MOV     R6,AR7
+;---- Variable 'key_value' assigned to Register 'R5' ----
+  341: 	byte temp = 0;
+  342: 
+001806 E4                CLR     A
+001807 904E8E            MOV     DPTR,#temp
+00180A F0                MOVX    @DPTR,A
+  343: 	temp = key_value;
+00180B ED                MOV     A,R5
+00180C F0                MOVX    @DPTR,A
+  344: 	if(fn_flag == 1)			// Fn lock
+00180D 904DDB            MOV     DPTR,#fn_flag
+001810 E0                MOVX    A,@DPTR
+001811 6401              XRL     A,#01H
+001813 6002              JZ      $ + 4H
+001815 01C9              AJMP    ?C0081?KB_PROCESS
+  345: 	{
+  346: 		
+  347: 		switch (key_value)
+001817 ED                MOV     A,R5
+001818 24C6              ADD     A,#0C6H
+00181A B40C00            CJNE    A,#0CH,?C0123?KB_PROCESS
+00181D         ?C0123?KB_PROCESS:
+00181D 4002              JC      $ + 4H
+00181F 01C9              AJMP    ?C0081?KB_PROCESS
+001821 90182F            MOV     DPTR,#0182FH
+001824 75F003            MOV     B,#03H
+001827 A4                MUL     AB
+001828 C583              XCH     A,DPH
+00182A 25F0              ADD     A,B
+00182C C583              XCH     A,DPH
+00182E 73                JMP     @A+DPTR
+00182F         ?C0124?KB_PROCESS:
+00182F 021853            LJMP    ?C0083?KB_PROCESS
+001832 02185B            LJMP    ?C0084?KB_PROCESS
+001835 021863            LJMP    ?C0085?KB_PROCESS
+001838 021873            LJMP    ?C0086?KB_PROCESS
+00183B 021883            LJMP    ?C0087?KB_PROCESS
+00183E 021893            LJMP    ?C0088?KB_PROCESS
+001841 02189B            LJMP    ?C0089?KB_PROCESS
+001844 0218A3            LJMP    ?C0090?KB_PROCESS
+001847 0218AB            LJMP    ?C0091?KB_PROCESS
+00184A 0218B3            LJMP    ?C0092?KB_PROCESS
+00184D 0218BB            LJMP    ?C0093?KB_PROCESS
+001850 0218C3            LJMP    ?C0094?KB_PROCESS
+  348: 		{ 
+  349: 			case HID_KEY_F1:
+001853         ?C0083?KB_PROCESS:
+  350: 				temp = HID_MULTIKEY_LIGHT_DOWN;
+001853 904E8E            MOV     DPTR,#temp
+001856 74D7              MOV     A,#0D7H
+001858 F0                MOVX    @DPTR,A
+  351: 				break;
+001859 806E              SJMP    ?C0081?KB_PROCESS
+  352: 			case HID_KEY_F2:
+00185B         ?C0084?KB_PROCESS:
+  353: 				temp = HID_MULTIKEY_LIGHT_UP;
+00185B 904E8E            MOV     DPTR,#temp
+00185E 74D8              MOV     A,#0D8H
+001860 F0                MOVX    @DPTR,A
+  354: 				break;
+001861 8066              SJMP    ?C0081?KB_PROCESS
+  355: 			case HID_KEY_F3:
+001863         ?C0085?KB_PROCESS:
+  356: 				kb_combination_key_press(state,KS_SEL_LALT,HID_KEY_TAB);
 001863 AF06              MOV     R7,AR6
-001865 AD04              MOV     R5,AR4
-001867 7BD7              MOV     R3,#0D7H
-001869 1217F2            LCALL   _key_replace
-00186C 904E8E            MOV     DPTR,#temp
-00186F EF                MOV     A,R7
+001865 7B2B              MOV     R3,#02BH
+001867 7D04              MOV     R5,#04H
+001869 1217DF            LCALL   _kb_combination_key_press
+  357: 				temp = HID_KEY_NULL;
+00186C E4                CLR     A
+00186D 904E8E            MOV     DPTR,#temp
 001870 F0                MOVX    @DPTR,A
-  353: 				break;
-001871 2176              AJMP    ?C0077?KB_PROCESS
-  354: 			case HID_KEY_F2:
-001873         ?C0080?KB_PROCESS:
-  355: 				temp = key_replace(state,key_value,HID_MULTIKEY_LIGHT_UP);
+  358: 				break;
+001871 8056              SJMP    ?C0081?KB_PROCESS
+  359: 			case HID_KEY_F4:
+001873         ?C0086?KB_PROCESS:
+  360: 				kb_combination_key_press(state,KS_SEL_LGUI,HID_KEY_D);
 001873 AF06              MOV     R7,AR6
-001875 AD04              MOV     R5,AR4
-001877 7BD8              MOV     R3,#0D8H
-001879 1217F2            LCALL   _key_replace
-00187C 904E8E            MOV     DPTR,#temp
-00187F EF                MOV     A,R7
+001875 7B07              MOV     R3,#07H
+001877 7D08              MOV     R5,#08H
+001879 1217DF            LCALL   _kb_combination_key_press
+  361: 				temp = HID_KEY_NULL;
+00187C E4                CLR     A
+00187D 904E8E            MOV     DPTR,#temp
 001880 F0                MOVX    @DPTR,A
-  356: 				break;
-001881 2176              AJMP    ?C0077?KB_PROCESS
-  357: 			case HID_KEY_F3:
-001883         ?C0081?KB_PROCESS:
-  358: 				g_variable.key_combination_ctrl = KS_SEL_LALT;
-001883 904CF5            MOV     DPTR,#g_variable+036H
-001886 7404              MOV     A,#04H
-001888 F0                MOVX    @DPTR,A
-  359: 					
-  360: 				g_variable.key_combination_keyvalue = HID_KEY_TAB;
-001889 A3                INC     DPTR
-00188A 742B              MOV     A,#02BH
-00188C F0                MOVX    @DPTR,A
-  361: 				
-  362: 				if(state & 1)
-00188D EE                MOV     A,R6
-00188E 30E008            JNB     ACC.0,?C0082?KB_PROCESS
-  363: 				{
-  364: 					g_variable.key_combination_step = CAMBINATION_KEY_PRESS;
-001891 904CF4            MOV     DPTR,#g_variable+035H
-001894 7401              MOV     A,#01H
-001896 F0                MOVX    @DPTR,A
-  365: 				}
-001897 8006              SJMP    ?C0083?KB_PROCESS
-001899         ?C0082?KB_PROCESS:
-  366: 				else
-  367: 				{
-  368: 					g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
-001899 904CF4            MOV     DPTR,#g_variable+035H
-00189C 7404              MOV     A,#04H
-00189E F0                MOVX    @DPTR,A
-  369: 				}
-00189F         ?C0083?KB_PROCESS:
-  370: 				
-  371: 				temp = key_replace(state,key_value,HID_KEY_NULL);
-00189F AF06              MOV     R7,AR6
-0018A1 AD04              MOV     R5,AR4
-0018A3 E4                CLR     A
-0018A4 FB                MOV     R3,A
-0018A5 1217F2            LCALL   _key_replace
-0018A8 904E8E            MOV     DPTR,#temp
-0018AB EF                MOV     A,R7
-0018AC F0                MOVX    @DPTR,A
+  362: 				break;
+001881 8046              SJMP    ?C0081?KB_PROCESS
+  363: 			case HID_KEY_F5:
+001883         ?C0087?KB_PROCESS:
+  364: 				kb_combination_key_press(state,KS_SEL_LGUI,HID_KEY_LEFT_ARROW);
+001883 AF06              MOV     R7,AR6
+001885 7B50              MOV     R3,#050H
+001887 7D08              MOV     R5,#08H
+001889 1217DF            LCALL   _kb_combination_key_press
+  365: 				temp = HID_KEY_NULL;
+00188C E4                CLR     A
+00188D 904E8E            MOV     DPTR,#temp
+001890 F0                MOVX    @DPTR,A
+  366: 				break;
+001891 8036              SJMP    ?C0081?KB_PROCESS
+  367: 			case HID_KEY_F6:
+001893         ?C0088?KB_PROCESS:
+  368: 				temp = HID_MULTIKEY_AC_SEARCH;
+001893 904E8E            MOV     DPTR,#temp
+001896 74D5              MOV     A,#0D5H
+001898 F0                MOVX    @DPTR,A
+  369: 				break;
+001899 802E              SJMP    ?C0081?KB_PROCESS
+  370: 			case HID_KEY_F7:
+00189B         ?C0089?KB_PROCESS:
+  371: 				temp = HID_MULTIKEY_PRE_TRACK;
+00189B 904E8E            MOV     DPTR,#temp
+00189E 74F4              MOV     A,#0F4H
+0018A0 F0                MOVX    @DPTR,A
   372: 				break;
-0018AD 2176              AJMP    ?C0077?KB_PROCESS
-  373: 			case HID_KEY_F4:
-0018AF         ?C0084?KB_PROCESS:
-  374: 				g_variable.key_combination_ctrl = KS_SEL_LGUI;
-0018AF 904CF5            MOV     DPTR,#g_variable+036H
-0018B2 7408              MOV     A,#08H
-0018B4 F0                MOVX    @DPTR,A
-  375: 				g_variable.key_combination_keyvalue = HID_KEY_D;
-0018B5 A3                INC     DPTR
-0018B6 14                DEC     A
-0018B7 F0                MOVX    @DPTR,A
-  376: 				
-  377: 				if(state & 1)
-0018B8 EE                MOV     A,R6
-0018B9 30E008            JNB     ACC.0,?C0085?KB_PROCESS
-  378: 				{
-  379: 					g_variable.key_combination_step = CAMBINATION_KEY_PRESS;
-0018BC 904CF4            MOV     DPTR,#g_variable+035H
-0018BF 7401              MOV     A,#01H
-0018C1 F0                MOVX    @DPTR,A
-  380: 				}
-0018C2 8006              SJMP    ?C0086?KB_PROCESS
-0018C4         ?C0085?KB_PROCESS:
-  381: 				else
-  382: 				{
-  383: 					g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
-0018C4 904CF4            MOV     DPTR,#g_variable+035H
-0018C7 7404              MOV     A,#04H
-0018C9 F0                MOVX    @DPTR,A
-  384: 				}
-0018CA         ?C0086?KB_PROCESS:
-  385: 				temp = key_replace(state,key_value,HID_KEY_NULL);
-0018CA AF06              MOV     R7,AR6
-0018CC AD04              MOV     R5,AR4
-0018CE E4                CLR     A
-0018CF FB                MOV     R3,A
-0018D0 1217F2            LCALL   _key_replace
-0018D3 904E8E            MOV     DPTR,#temp
-0018D6 EF                MOV     A,R7
-0018D7 F0                MOVX    @DPTR,A
-  386: 
+0018A1 8026              SJMP    ?C0081?KB_PROCESS
+  373: 			case HID_KEY_F8:
+0018A3         ?C0090?KB_PROCESS:
+  374: 				temp = HID_MULTIKEY_PALY;
+0018A3 904E8E            MOV     DPTR,#temp
+0018A6 74F2              MOV     A,#0F2H
+0018A8 F0                MOVX    @DPTR,A
+  375: 				break;
+0018A9 801E              SJMP    ?C0081?KB_PROCESS
+  376: 			case HID_KEY_F9:
+0018AB         ?C0091?KB_PROCESS:
+  377: 				temp = HID_MULTIKEY_NEXT_TRACK;
+0018AB 904E8E            MOV     DPTR,#temp
+0018AE 74F5              MOV     A,#0F5H
+0018B0 F0                MOVX    @DPTR,A
+  378: 				break;
+0018B1 8016              SJMP    ?C0081?KB_PROCESS
+  379: 			case HID_KEY_F10:
+0018B3         ?C0092?KB_PROCESS:
+  380: 				temp = HID_MULTIKEY_MUTE;
+0018B3 904E8E            MOV     DPTR,#temp
+0018B6 74F8              MOV     A,#0F8H
+0018B8 F0                MOVX    @DPTR,A
+  381: 				break;
+0018B9 800E              SJMP    ?C0081?KB_PROCESS
+  382: 			case HID_KEY_F11:
+0018BB         ?C0093?KB_PROCESS:
+  383: 				temp = HID_MULTIKEY_VOL_DOWN;
+0018BB 904E8E            MOV     DPTR,#temp
+0018BE 74F6              MOV     A,#0F6H
+0018C0 F0                MOVX    @DPTR,A
+  384: 				break;
+0018C1 8006              SJMP    ?C0081?KB_PROCESS
+  385: 			case HID_KEY_F12:
+0018C3         ?C0094?KB_PROCESS:
+  386: 				temp = HID_MULTIKEY_VOL_UP;
+0018C3 904E8E            MOV     DPTR,#temp
+0018C6 74F7              MOV     A,#0F7H
+0018C8 F0                MOVX    @DPTR,A
   387: 				break;
-0018D8 2176              AJMP    ?C0077?KB_PROCESS
-  388: 			case HID_KEY_F5:
-0018DA         ?C0087?KB_PROCESS:
-  389: 				g_variable.key_combination_ctrl = KS_SEL_LGUI;
-0018DA 904CF5            MOV     DPTR,#g_variable+036H
-0018DD 7408              MOV     A,#08H
-0018DF F0                MOVX    @DPTR,A
-  390: 				g_variable.key_combination_keyvalue = HID_KEY_LEFT_ARROW;
-0018E0 A3                INC     DPTR
-0018E1 7450              MOV     A,#050H
-0018E3 F0                MOVX    @DPTR,A
-  391: 				
-  392: 				if(state & 1)
-0018E4 EE                MOV     A,R6
-0018E5 30E008            JNB     ACC.0,?C0088?KB_PROCESS
-  393: 				{
-  394: 					g_variable.key_combination_step = CAMBINATION_KEY_PRESS;
-0018E8 904CF4            MOV     DPTR,#g_variable+035H
-0018EB 7401              MOV     A,#01H
-0018ED F0                MOVX    @DPTR,A
-  395: 				}
-0018EE 8006              SJMP    ?C0089?KB_PROCESS
-0018F0         ?C0088?KB_PROCESS:
-  396: 				else
-  397: 				{
-  398: 					g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
-0018F0 904CF4            MOV     DPTR,#g_variable+035H
-0018F3 7404              MOV     A,#04H
-0018F5 F0                MOVX    @DPTR,A
-  399: 				}
-0018F6         ?C0089?KB_PROCESS:
-  400: 				temp = key_replace(state,key_value,HID_KEY_NULL);
-0018F6 AF06              MOV     R7,AR6
-0018F8 AD04              MOV     R5,AR4
-0018FA E4                CLR     A
-0018FB FB                MOV     R3,A
-0018FC 1217F2            LCALL   _key_replace
-0018FF 904E8E            MOV     DPTR,#temp
-001902 EF                MOV     A,R7
-001903 F0                MOVX    @DPTR,A
-  401: 				break;
-001904 8070              SJMP    ?C0077?KB_PROCESS
-  402: 			case HID_KEY_F6:
-001906         ?C0090?KB_PROCESS:
-  403: 				temp = key_replace(state,key_value,HID_MULTIKEY_AC_SEARCH);
-001906 AF06              MOV     R7,AR6
-001908 AD04              MOV     R5,AR4
-00190A 7BD5              MOV     R3,#0D5H
-00190C 1217F2            LCALL   _key_replace
-00190F 904E8E            MOV     DPTR,#temp
-001912 EF                MOV     A,R7
-001913 F0                MOVX    @DPTR,A
-  404: 				break;
-001914 8060              SJMP    ?C0077?KB_PROCESS
-  405: 			case HID_KEY_F7:
-001916         ?C0091?KB_PROCESS:
-  406: 				temp = key_replace(state,key_value,HID_MULTIKEY_PRE_TRACK);
-001916 AF06              MOV     R7,AR6
-001918 AD04              MOV     R5,AR4
-00191A 7BF4              MOV     R3,#0F4H
-00191C 1217F2            LCALL   _key_replace
-00191F 904E8E            MOV     DPTR,#temp
-001922 EF                MOV     A,R7
-001923 F0                MOVX    @DPTR,A
-  407: 				break;
-001924 8050              SJMP    ?C0077?KB_PROCESS
-  408: 			case HID_KEY_F8:
-001926         ?C0092?KB_PROCESS:
-  409: 				temp = key_replace(state,key_value,HID_MULTIKEY_PALY);
-001926 AF06              MOV     R7,AR6
-001928 AD04              MOV     R5,AR4
-00192A 7BF2              MOV     R3,#0F2H
-00192C 1217F2            LCALL   _key_replace
-00192F 904E8E            MOV     DPTR,#temp
-001932 EF                MOV     A,R7
-001933 F0                MOVX    @DPTR,A
-  410: 				break;
-001934 8040              SJMP    ?C0077?KB_PROCESS
-  411: 			case HID_KEY_F9:
-001936         ?C0093?KB_PROCESS:
-  412: 				temp = key_replace(state,key_value,HID_MULTIKEY_NEXT_TRACK);
-001936 AF06              MOV     R7,AR6
-001938 AD04              MOV     R5,AR4
-00193A 7BF5              MOV     R3,#0F5H
-00193C 1217F2            LCALL   _key_replace
-00193F 904E8E            MOV     DPTR,#temp
-001942 EF                MOV     A,R7
-001943 F0                MOVX    @DPTR,A
-  413: 				break;
-001944 8030              SJMP    ?C0077?KB_PROCESS
-  414: 			case HID_KEY_F10:
-001946         ?C0094?KB_PROCESS:
-  415: 				temp = key_replace(state,key_value,HID_MULTIKEY_MUTE);
-001946 AF06              MOV     R7,AR6
-001948 AD04              MOV     R5,AR4
-00194A 7BF8              MOV     R3,#0F8H
-00194C 1217F2            LCALL   _key_replace
-00194F 904E8E            MOV     DPTR,#temp
-001952 EF                MOV     A,R7
-001953 F0                MOVX    @DPTR,A
-  416: 				break;
-001954 8020              SJMP    ?C0077?KB_PROCESS
-  417: 			case HID_KEY_F11:
-001956         ?C0095?KB_PROCESS:
-  418: 				temp = key_replace(state,key_value,HID_MULTIKEY_VOL_DOWN);
-001956 AF06              MOV     R7,AR6
-001958 AD04              MOV     R5,AR4
-00195A 7BF6              MOV     R3,#0F6H
-00195C 1217F2            LCALL   _key_replace
-00195F 904E8E            MOV     DPTR,#temp
-001962 EF                MOV     A,R7
-001963 F0                MOVX    @DPTR,A
-  419: 				break;
-001964 8010              SJMP    ?C0077?KB_PROCESS
-  420: 			case HID_KEY_F12:
-001966         ?C0096?KB_PROCESS:
-  421: 				temp = key_replace(state,key_value,HID_MULTIKEY_VOL_UP);
-001966 AF06              MOV     R7,AR6
-001968 AE04              MOV     R6,AR4
-00196A AD06              MOV     R5,AR6
-00196C 7BF7              MOV     R3,#0F7H
-00196E 1217F2            LCALL   _key_replace
-001971 904E8E            MOV     DPTR,#temp
-001974 EF                MOV     A,R7
-001975 F0                MOVX    @DPTR,A
-  422: 				break;
-  423: 			default :
-  424: 				break;
-  425: 		}
-  426: 	}
-001976         ?C0077?KB_PROCESS:
-  427: 
-  428: 	return temp;
-001976 904E8E            MOV     DPTR,#temp
-001979 E0                MOVX    A,@DPTR
-00197A FF                MOV     R7,A
-  429: }
-00197B 22                RET     
+  388: 			default :
+  389: 				break;
+  390: 		}
+  391: 	}
+0018C9         ?C0081?KB_PROCESS:
+  392: 
+  393: 	return temp;
+0018C9 904E8E            MOV     DPTR,#temp
+0018CC E0                MOVX    A,@DPTR
+0018CD FF                MOV     R7,A
+  394: }
+0018CE 22                RET     
 ----- FUNCTION _key_fn_function (END) -------
 
 
 ----- FUNCTION KS_GetCurrentEvt (BEGIN) -----
  FILE: 'keyscan.c'
-  285: tKSEVENT *KS_GetCurrentEvt()
-  286: {
-  287: 	//
-  288: 	byte i = 0;
-00197C E4                CLR     A
-00197D 904E12            MOV     DPTR,#i
-001980 F0                MOVX    @DPTR,A
-  289: 	byte j = 0;
-001981 A3                INC     DPTR
-001982 F0                MOVX    @DPTR,A
-  290: 	byte temp = 0;
-001983 A3                INC     DPTR
-001984 F0                MOVX    @DPTR,A
-  291: 	byte flag = 0;
-001985 A3                INC     DPTR
-001986 F0                MOVX    @DPTR,A
-  292: 	byte offset = 0;
-001987 A3                INC     DPTR
-001988 F0                MOVX    @DPTR,A
-  293: 	byte state = 0;
-001989 A3                INC     DPTR
-00198A F0                MOVX    @DPTR,A
-  294: 	byte colCounttemp = 0;
-00198B A3                INC     DPTR
-00198C F0                MOVX    @DPTR,A
-  295: 	byte rawSel =0;
-00198D A3                INC     DPTR
-00198E F0                MOVX    @DPTR,A
-  296: 	byte keyCounttemp = 0;
-00198F A3                INC     DPTR
-001990 F0                MOVX    @DPTR,A
-  297: 	byte key_value_temp = 0;
-001991 A3                INC     DPTR
-001992 F0                MOVX    @DPTR,A
-  298: 	byte ghost = 0;
-001993 A3                INC     DPTR
-001994 F0                MOVX    @DPTR,A
-  299: 	byte rawCount = 0;
-001995 A3                INC     DPTR
-001996 F0                MOVX    @DPTR,A
-  300: 	byte colCount = 0;
-001997 A3                INC     DPTR
-001998 F0                MOVX    @DPTR,A
-  301: 	byte keyCount = 0;
-001999 A3                INC     DPTR
-00199A F0                MOVX    @DPTR,A
-  302: 	
-  303: 	KS_ScanMatrix();
-00199B B173              ACALL   KS_ScanMatrix
-  304: 
-  305: 	if (compare_str(ksSelMapCurr,ksSelMapCheck,KB_KSCAN_COL_NUM) 
-00199D 7A4D              MOV     R2,#HIGH ksSelMapCheck
-00199F 79A8              MOV     R1,#LOW ksSelMapCheck
-0019A1 904E3B            MOV     DPTR,#?_compare_str?BYTE+03H
-0019A4 7401              MOV     A,#01H
-0019A6 F0                MOVX    @DPTR,A
-0019A7 A3                INC     DPTR
-0019A8 744D              MOV     A,#HIGH ksSelMapCheck
-0019AA F0                MOVX    @DPTR,A
-0019AB A3                INC     DPTR
-0019AC 74A8              MOV     A,#LOW ksSelMapCheck
-0019AE F0                MOVX    @DPTR,A
-0019AF A3                INC     DPTR
-0019B0 7414              MOV     A,#014H
+  300: tKSEVENT *KS_GetCurrentEvt()
+  301: {
+  302: 	//
+  303: 	byte i = 0;
+0018CF E4                CLR     A
+0018D0 904E12            MOV     DPTR,#i
+0018D3 F0                MOVX    @DPTR,A
+  304: 	byte j = 0;
+0018D4 A3                INC     DPTR
+0018D5 F0                MOVX    @DPTR,A
+  305: 	byte temp = 0;
+0018D6 A3                INC     DPTR
+0018D7 F0                MOVX    @DPTR,A
+  306: 	byte flag = 0;
+0018D8 A3                INC     DPTR
+0018D9 F0                MOVX    @DPTR,A
+  307: 	byte offset = 0;
+0018DA A3                INC     DPTR
+0018DB F0                MOVX    @DPTR,A
+  308: 	byte state = 0;
+0018DC A3                INC     DPTR
+0018DD F0                MOVX    @DPTR,A
+  309: 	byte colCounttemp = 0;
+0018DE A3                INC     DPTR
+0018DF F0                MOVX    @DPTR,A
+  310: 	byte rawSel =0;
+0018E0 A3                INC     DPTR
+0018E1 F0                MOVX    @DPTR,A
+  311: 	byte keyCounttemp = 0;
+0018E2 A3                INC     DPTR
+0018E3 F0                MOVX    @DPTR,A
+  312: 	byte key_value_temp = 0;
+0018E4 A3                INC     DPTR
+0018E5 F0                MOVX    @DPTR,A
+  313: 	byte ghost = 0;
+0018E6 A3                INC     DPTR
+0018E7 F0                MOVX    @DPTR,A
+  314: 	byte rawCount = 0;
+0018E8 A3                INC     DPTR
+0018E9 F0                MOVX    @DPTR,A
+  315: 	byte colCount = 0;
+0018EA A3                INC     DPTR
+0018EB F0                MOVX    @DPTR,A
+  316: 	byte keyCount = 0;
+0018EC A3                INC     DPTR
+0018ED F0                MOVX    @DPTR,A
+  317: 	
+  318: 	KS_ScanMatrix();
+0018EE 9152              ACALL   KS_ScanMatrix
+  319: 
+  320: 	if (compare_str(ksSelMapCurr,ksSelMapCheck,KB_KSCAN_COL_NUM) 
+0018F0 7A4D              MOV     R2,#HIGH ksSelMapCheck
+0018F2 79A8              MOV     R1,#LOW ksSelMapCheck
+0018F4 904E3B            MOV     DPTR,#?_compare_str?BYTE+03H
+0018F7 7401              MOV     A,#01H
+0018F9 F0                MOVX    @DPTR,A
+0018FA A3                INC     DPTR
+0018FB 744D              MOV     A,#HIGH ksSelMapCheck
+0018FD F0                MOVX    @DPTR,A
+0018FE A3                INC     DPTR
+0018FF 74A8              MOV     A,#LOW ksSelMapCheck
+001901 F0                MOVX    @DPTR,A
+001902 A3                INC     DPTR
+001903 7414              MOV     A,#014H
+001905 F0                MOVX    @DPTR,A
+001906 7B01              MOV     R3,#01H
+001908 7A4D              MOV     R2,#HIGH ksSelMapCurr
+00190A 79BC              MOV     R1,#LOW ksSelMapCurr
+00190C 7109              ACALL   _compare_str
+00190E EF                MOV     A,R7
+00190F 6016              JZ      ?C0061?KEYSCAN
+001911 7B01              MOV     R3,#01H
+001913 7A4D              MOV     R2,#HIGH ksSelMapCurr
+001915 79BC              MOV     R1,#LOW ksSelMapCurr
+001917 7D14              MOV     R5,#014H
+001919 51D9              ACALL   _array_is_empty
+00191B EF                MOV     A,R7
+00191C 7009              JNZ     ?C0061?KEYSCAN
+  321: 		&& !array_is_empty(ksSelMapCurr,KB_KSCAN_COL_NUM))
+  322: 	{
+  323: 		g_variable.button_flag |= 0x02;
+00191E 904CCE            MOV     DPTR,#g_variable+0FH
+001921 E0                MOVX    A,@DPTR
+001922 4402              ORL     A,#02H
+001924 F0                MOVX    @DPTR,A
+  324: 	}
+001925 800C              SJMP    ?C0062?KEYSCAN
+001927         ?C0061?KEYSCAN:
+  325: 	else
+  326: 	{	
+  327: 		g_variable.button_flag &= 0xFD;
+001927 904CCE            MOV     DPTR,#g_variable+0FH
+00192A E0                MOVX    A,@DPTR
+00192B 54FD              ANL     A,#0FDH
+00192D F0                MOVX    @DPTR,A
+  328: 		g_variable.button_timer[1] = 0;
+00192E E4                CLR     A
+00192F 904CD0            MOV     DPTR,#g_variable+011H
+001932 F0                MOVX    @DPTR,A
+  329: 	}
+001933         ?C0062?KEYSCAN:
+  330: 
+  331: 	for (i=0; col[i]!=0; i++) {
+001933 E4                CLR     A
+001934 904E12            MOV     DPTR,#i
+001937 F0                MOVX    @DPTR,A
+001938         ?C0063?KEYSCAN:
+001938 904E12            MOV     DPTR,#i
+00193B E0                MOVX    A,@DPTR
+00193C FF                MOV     R7,A
+00193D 90060C            MOV     DPTR,#col
+001940 93                MOVC    A,@A+DPTR
+001941 602F              JZ      ?C0064?KEYSCAN
+  332: 		temp = ksSelMapCurr[i];
+001943 74BC              MOV     A,#LOW ksSelMapCurr
+001945 2F                ADD     A,R7
+001946 F582              MOV     DPL,A
+001948 E4                CLR     A
+001949 344D              ADDC    A,#HIGH ksSelMapCurr
+00194B F583              MOV     DPH,A
+00194D E0                MOVX    A,@DPTR
+00194E 904E14            MOV     DPTR,#temp
+001951 F0                MOVX    @DPTR,A
+  333: 		if (temp!=0) {
+001952 E0                MOVX    A,@DPTR
+001953 FD                MOV     R5,A
+001954 6014              JZ      ?C0065?KEYSCAN
+  334: 			colCounttemp++;
+001956 904E18            MOV     DPTR,#colCounttemp
+001959 E0                MOVX    A,@DPTR
+00195A 04                INC     A
+00195B F0                MOVX    @DPTR,A
+  335: 			rawSel = temp|rawSel;
+00195C A3                INC     DPTR
+00195D E0                MOVX    A,@DPTR
+00195E FE                MOV     R6,A
+00195F ED                MOV     A,R5
+001960 4E                ORL     A,R6
+001961 F0                MOVX    @DPTR,A
+  336: 			keyCounttemp += bit_count(temp);
+001962 AF05              MOV     R7,AR5
+001964 51CB              ACALL   _bit_count
+001966 A3                INC     DPTR
+001967 E0                MOVX    A,@DPTR
+001968 2F                ADD     A,R7
+001969 F0                MOVX    @DPTR,A
+  337: 		}
+  338: 	}
+00196A         ?C0065?KEYSCAN:
+00196A 904E12            MOV     DPTR,#i
+00196D E0                MOVX    A,@DPTR
+00196E 04                INC     A
+00196F F0                MOVX    @DPTR,A
+001970 80C6              SJMP    ?C0063?KEYSCAN
+001972         ?C0064?KEYSCAN:
+  339: 	keyCount = keyCounttemp;
+001972 904E1A            MOV     DPTR,#keyCounttemp
+001975 E0                MOVX    A,@DPTR
+001976 904E1F            MOV     DPTR,#keyCount
+001979 F0                MOVX    @DPTR,A
+  340: 	colCount = colCounttemp;
+00197A 904E18            MOV     DPTR,#colCounttemp
+00197D E0                MOVX    A,@DPTR
+00197E 904E1E            MOV     DPTR,#colCount
+001981 F0                MOVX    @DPTR,A
+  341: 	rawCount = bit_count(rawSel);
+001982 904E19            MOV     DPTR,#rawSel
+001985 E0                MOVX    A,@DPTR
+001986 FF                MOV     R7,A
+001987 51CB              ACALL   _bit_count
+001989 904E1D            MOV     DPTR,#rawCount
+00198C EF                MOV     A,R7
+00198D F0                MOVX    @DPTR,A
+  342: 	if (keyCount >2 && keyCount > MAX(colCount, rawCount)) {
+00198E 904E1F            MOV     DPTR,#keyCount
+001991 E0                MOVX    A,@DPTR
+001992 FF                MOV     R7,A
+001993 D3                SETB    C
+001994 9402              SUBB    A,#02H
+001996 401D              JC      ?C0067?KEYSCAN
+001998 904E1D            MOV     DPTR,#rawCount
+00199B E0                MOVX    A,@DPTR
+00199C FE                MOV     R6,A
+00199D A3                INC     DPTR
+00199E E0                MOVX    A,@DPTR
+00199F FD                MOV     R5,A
+0019A0 D3                SETB    C
+0019A1 9E                SUBB    A,R6
+0019A2 4004              JC      ?C0068?KEYSCAN
+0019A4 AE05              MOV     R6,AR5
+0019A6 8000              SJMP    ?C0069?KEYSCAN
+0019A8         ?C0068?KEYSCAN:
+0019A8         ?C0069?KEYSCAN:
+0019A8 EF                MOV     A,R7
+0019A9 D3                SETB    C
+0019AA 9E                SUBB    A,R6
+0019AB 4008              JC      ?C0067?KEYSCAN
+  343: 		ghost = 1;
+0019AD 904E1C            MOV     DPTR,#ghost
+0019B0 7401              MOV     A,#01H
 0019B2 F0                MOVX    @DPTR,A
-0019B3 7B01              MOV     R3,#01H
-0019B5 7A4D              MOV     R2,#HIGH ksSelMapCurr
-0019B7 79BC              MOV     R1,#LOW ksSelMapCurr
-0019B9 71B6              ACALL   _compare_str
-0019BB EF                MOV     A,R7
-0019BC 6016              JZ      ?C0089?KEYSCAN
-0019BE 7B01              MOV     R3,#01H
-0019C0 7A4D              MOV     R2,#HIGH ksSelMapCurr
-0019C2 79BC              MOV     R1,#LOW ksSelMapCurr
-0019C4 7D14              MOV     R5,#014H
-0019C6 7186              ACALL   _array_is_empty
-0019C8 EF                MOV     A,R7
-0019C9 7009              JNZ     ?C0089?KEYSCAN
-  306: 		&& !array_is_empty(ksSelMapCurr,KB_KSCAN_COL_NUM))
-  307: 	{
-  308: 		g_variable.button_flag |= 0x02;
-0019CB 904CCE            MOV     DPTR,#g_variable+0FH
-0019CE E0                MOVX    A,@DPTR
-0019CF 4402              ORL     A,#02H
-0019D1 F0                MOVX    @DPTR,A
-  309: 	}
-0019D2 800C              SJMP    ?C0090?KEYSCAN
-0019D4         ?C0089?KEYSCAN:
-  310: 	else
-  311: 	{	
-  312: 		g_variable.button_flag &= 0xFD;
-0019D4 904CCE            MOV     DPTR,#g_variable+0FH
-0019D7 E0                MOVX    A,@DPTR
-0019D8 54FD              ANL     A,#0FDH
-0019DA F0                MOVX    @DPTR,A
-  313: 		g_variable.button_timer[1] = 0;
-0019DB E4                CLR     A
-0019DC 904CD0            MOV     DPTR,#g_variable+011H
-0019DF F0                MOVX    @DPTR,A
-  314: 	}
-0019E0         ?C0090?KEYSCAN:
-  315: 
-  316: 	for (i=0; col[i]!=0; i++) {
-0019E0 E4                CLR     A
-0019E1 904E12            MOV     DPTR,#i
-0019E4 F0                MOVX    @DPTR,A
-0019E5         ?C0091?KEYSCAN:
-0019E5 904E12            MOV     DPTR,#i
-0019E8 E0                MOVX    A,@DPTR
-0019E9 FF                MOV     R7,A
-0019EA 90060C            MOV     DPTR,#col
-0019ED 93                MOVC    A,@A+DPTR
-0019EE 602F              JZ      ?C0092?KEYSCAN
-  317: 		temp = ksSelMapCurr[i];
-0019F0 74BC              MOV     A,#LOW ksSelMapCurr
-0019F2 2F                ADD     A,R7
-0019F3 F582              MOV     DPL,A
-0019F5 E4                CLR     A
-0019F6 344D              ADDC    A,#HIGH ksSelMapCurr
-0019F8 F583              MOV     DPH,A
-0019FA E0                MOVX    A,@DPTR
+  344: 	}
+0019B3 8005              SJMP    ?C0070?KEYSCAN
+0019B5         ?C0067?KEYSCAN:
+  345: 	else {
+  346: 		ghost = 0;
+0019B5 E4                CLR     A
+0019B6 904E1C            MOV     DPTR,#ghost
+0019B9 F0                MOVX    @DPTR,A
+  347: 	}
+0019BA         ?C0070?KEYSCAN:
+  348: 	
+  349: 	for (i=0; col[i]!=0; i++)
+0019BA E4                CLR     A
+0019BB 904E12            MOV     DPTR,#i
+0019BE F0                MOVX    @DPTR,A
+0019BF         ?C0071?KEYSCAN:
+0019BF 904E12            MOV     DPTR,#i
+0019C2 E0                MOVX    A,@DPTR
+0019C3 FF                MOV     R7,A
+0019C4 90060C            MOV     DPTR,#col
+0019C7 93                MOVC    A,@A+DPTR
+0019C8 7002              JNZ     $ + 4H
+0019CA 419F              AJMP    ?C0072?KEYSCAN
+  350: 	{
+  351: 		temp = ksSelMapCurr[i] ^ ksSelMapOld[i];
+0019CC 7493              MOV     A,#LOW ksSelMapOld
+0019CE 2F                ADD     A,R7
+0019CF F582              MOV     DPL,A
+0019D1 E4                CLR     A
+0019D2 344D              ADDC    A,#HIGH ksSelMapOld
+0019D4 F583              MOV     DPH,A
+0019D6 E0                MOVX    A,@DPTR
+0019D7 FE                MOV     R6,A
+0019D8 74BC              MOV     A,#LOW ksSelMapCurr
+0019DA 2F                ADD     A,R7
+0019DB F582              MOV     DPL,A
+0019DD E4                CLR     A
+0019DE 344D              ADDC    A,#HIGH ksSelMapCurr
+0019E0 F583              MOV     DPH,A
+0019E2 E0                MOVX    A,@DPTR
+0019E3 6E                XRL     A,R6
+0019E4 904E14            MOV     DPTR,#temp
+0019E7 F0                MOVX    @DPTR,A
+  352: 		state = ksSelMapCurr[i];
+0019E8 904E12            MOV     DPTR,#i
+0019EB E0                MOVX    A,@DPTR
+0019EC FF                MOV     R7,A
+0019ED 24BC              ADD     A,#LOW ksSelMapCurr
+0019EF F582              MOV     DPL,A
+0019F1 E4                CLR     A
+0019F2 344D              ADDC    A,#HIGH ksSelMapCurr
+0019F4 F583              MOV     DPH,A
+0019F6 E0                MOVX    A,@DPTR
+0019F7 904E17            MOV     DPTR,#state
+0019FA F0                MOVX    @DPTR,A
+  353: 		if (temp == 0) 
 0019FB 904E14            MOV     DPTR,#temp
-0019FE F0                MOVX    @DPTR,A
-  318: 		if (temp!=0) {
-0019FF E0                MOVX    A,@DPTR
-001A00 FD                MOV     R5,A
-001A01 6014              JZ      ?C0093?KEYSCAN
-  319: 			colCounttemp++;
-001A03 904E18            MOV     DPTR,#colCounttemp
-001A06 E0                MOVX    A,@DPTR
-001A07 04                INC     A
-001A08 F0                MOVX    @DPTR,A
-  320: 			rawSel = temp|rawSel;
-001A09 A3                INC     DPTR
-001A0A E0                MOVX    A,@DPTR
-001A0B FE                MOV     R6,A
-001A0C ED                MOV     A,R5
-001A0D 4E                ORL     A,R6
-001A0E F0                MOVX    @DPTR,A
-  321: 			keyCounttemp += bit_count(temp);
-001A0F AF05              MOV     R7,AR5
-001A11 7178              ACALL   _bit_count
-001A13 A3                INC     DPTR
-001A14 E0                MOVX    A,@DPTR
-001A15 2F                ADD     A,R7
-001A16 F0                MOVX    @DPTR,A
-  322: 		}
-  323: 	}
-001A17         ?C0093?KEYSCAN:
-001A17 904E12            MOV     DPTR,#i
-001A1A E0                MOVX    A,@DPTR
-001A1B 04                INC     A
-001A1C F0                MOVX    @DPTR,A
-001A1D 80C6              SJMP    ?C0091?KEYSCAN
-001A1F         ?C0092?KEYSCAN:
-  324: 	keyCount = keyCounttemp;
-001A1F 904E1A            MOV     DPTR,#keyCounttemp
-001A22 E0                MOVX    A,@DPTR
-001A23 904E1F            MOV     DPTR,#keyCount
-001A26 F0                MOVX    @DPTR,A
-  325: 	colCount = colCounttemp;
-001A27 904E18            MOV     DPTR,#colCounttemp
-001A2A E0                MOVX    A,@DPTR
-001A2B 904E1E            MOV     DPTR,#colCount
+0019FE E0                MOVX    A,@DPTR
+0019FF 7004              JNZ     ?C0074?KEYSCAN
+  354: 		{
+  355: 			continue;
+001A01 4197              AJMP    ?C0073?KEYSCAN
+  356: 		}
+001A03 4197              AJMP    ?C0073?KEYSCAN
+001A05         ?C0074?KEYSCAN:
+  357: 		else 
+  358: 		{
+  359: 
+  360: 			if (ghost) 
+001A05 904E1C            MOV     DPTR,#ghost
+001A08 E0                MOVX    A,@DPTR
+001A09 6007              JZ      ?C0076?KEYSCAN
+  361: 				return NULL;
+001A0B 7B00              MOV     R3,#00H
+001A0D 7A00              MOV     R2,#00H
+001A0F 7900              MOV     R1,#00H
+001A11 22                RET     
+001A12         ?C0076?KEYSCAN:
+  362: 			ksSelMapOld[i] = ksSelMapCurr[i];
+001A12 74BC              MOV     A,#LOW ksSelMapCurr
+001A14 2F                ADD     A,R7
+001A15 F582              MOV     DPL,A
+001A17 E4                CLR     A
+001A18 344D              ADDC    A,#HIGH ksSelMapCurr
+001A1A F583              MOV     DPH,A
+001A1C E0                MOVX    A,@DPTR
+001A1D FE                MOV     R6,A
+001A1E 7493              MOV     A,#LOW ksSelMapOld
+001A20 2F                ADD     A,R7
+001A21 F582              MOV     DPL,A
+001A23 E4                CLR     A
+001A24 344D              ADDC    A,#HIGH ksSelMapOld
+001A26 F583              MOV     DPH,A
+001A28 EE                MOV     A,R6
+001A29 F0                MOVX    @DPTR,A
+  363: 			for (j = 0 ; j<8 ; j++) 
+001A2A E4                CLR     A
+001A2B 904E13            MOV     DPTR,#j
 001A2E F0                MOVX    @DPTR,A
-  326: 	rawCount = bit_count(rawSel);
-001A2F 904E19            MOV     DPTR,#rawSel
+001A2F         ?C0078?KEYSCAN:
+001A2F 904E13            MOV     DPTR,#j
 001A32 E0                MOVX    A,@DPTR
 001A33 FF                MOV     R7,A
-001A34 7178              ACALL   _bit_count
-001A36 904E1D            MOV     DPTR,#rawCount
-001A39 EF                MOV     A,R7
-001A3A F0                MOVX    @DPTR,A
-  327: 	if (keyCount >2 && keyCount > MAX(colCount, rawCount)) {
-001A3B 904E1F            MOV     DPTR,#keyCount
-001A3E E0                MOVX    A,@DPTR
-001A3F FF                MOV     R7,A
-001A40 D3                SETB    C
-001A41 9402              SUBB    A,#02H
-001A43 401D              JC      ?C0095?KEYSCAN
-001A45 904E1D            MOV     DPTR,#rawCount
-001A48 E0                MOVX    A,@DPTR
-001A49 FE                MOV     R6,A
-001A4A A3                INC     DPTR
-001A4B E0                MOVX    A,@DPTR
-001A4C FD                MOV     R5,A
-001A4D D3                SETB    C
-001A4E 9E                SUBB    A,R6
-001A4F 4004              JC      ?C0096?KEYSCAN
-001A51 AE05              MOV     R6,AR5
-001A53 8000              SJMP    ?C0097?KEYSCAN
-001A55         ?C0096?KEYSCAN:
-001A55         ?C0097?KEYSCAN:
-001A55 EF                MOV     A,R7
-001A56 D3                SETB    C
-001A57 9E                SUBB    A,R6
-001A58 4008              JC      ?C0095?KEYSCAN
-  328: 		ghost = 1;
-001A5A 904E1C            MOV     DPTR,#ghost
-001A5D 7401              MOV     A,#01H
-001A5F F0                MOVX    @DPTR,A
-  329: 	}
-001A60 8005              SJMP    ?C0098?KEYSCAN
-001A62         ?C0095?KEYSCAN:
-  330: 	else {
-  331: 		ghost = 0;
-001A62 E4                CLR     A
-001A63 904E1C            MOV     DPTR,#ghost
-001A66 F0                MOVX    @DPTR,A
-  332: 	}
-001A67         ?C0098?KEYSCAN:
-  333: 	
-  334: 	for (i=0; col[i]!=0; i++)
-001A67 E4                CLR     A
-001A68 904E12            MOV     DPTR,#i
-001A6B F0                MOVX    @DPTR,A
-001A6C         ?C0099?KEYSCAN:
-001A6C 904E12            MOV     DPTR,#i
-001A6F E0                MOVX    A,@DPTR
-001A70 FF                MOV     R7,A
-001A71 90060C            MOV     DPTR,#col
-001A74 93                MOVC    A,@A+DPTR
-001A75 7002              JNZ     $ + 4H
-001A77 614C              AJMP    ?C0100?KEYSCAN
-  335: 	{
-  336: 		temp = ksSelMapCurr[i] ^ ksSelMapOld[i];
-001A79 7493              MOV     A,#LOW ksSelMapOld
-001A7B 2F                ADD     A,R7
-001A7C F582              MOV     DPL,A
-001A7E E4                CLR     A
-001A7F 344D              ADDC    A,#HIGH ksSelMapOld
-001A81 F583              MOV     DPH,A
-001A83 E0                MOVX    A,@DPTR
-001A84 FE                MOV     R6,A
-001A85 74BC              MOV     A,#LOW ksSelMapCurr
-001A87 2F                ADD     A,R7
-001A88 F582              MOV     DPL,A
-001A8A E4                CLR     A
-001A8B 344D              ADDC    A,#HIGH ksSelMapCurr
-001A8D F583              MOV     DPH,A
-001A8F E0                MOVX    A,@DPTR
-001A90 6E                XRL     A,R6
-001A91 904E14            MOV     DPTR,#temp
-001A94 F0                MOVX    @DPTR,A
-  337: 		state = ksSelMapCurr[i];
-001A95 904E12            MOV     DPTR,#i
-001A98 E0                MOVX    A,@DPTR
-001A99 FF                MOV     R7,A
-001A9A 24BC              ADD     A,#LOW ksSelMapCurr
-001A9C F582              MOV     DPL,A
-001A9E E4                CLR     A
-001A9F 344D              ADDC    A,#HIGH ksSelMapCurr
-001AA1 F583              MOV     DPH,A
-001AA3 E0                MOVX    A,@DPTR
-001AA4 904E17            MOV     DPTR,#state
-001AA7 F0                MOVX    @DPTR,A
-  338: 		if (temp == 0) 
-001AA8 904E14            MOV     DPTR,#temp
-001AAB E0                MOVX    A,@DPTR
-001AAC 7004              JNZ     ?C0102?KEYSCAN
-  339: 		{
-  340: 			continue;
-001AAE 6144              AJMP    ?C0101?KEYSCAN
-  341: 		}
-001AB0 6144              AJMP    ?C0101?KEYSCAN
-001AB2         ?C0102?KEYSCAN:
-  342: 		else 
-  343: 		{
-  344: 
-  345: 			if (ghost) 
-001AB2 904E1C            MOV     DPTR,#ghost
-001AB5 E0                MOVX    A,@DPTR
-001AB6 6007              JZ      ?C0104?KEYSCAN
-  346: 				return NULL;
-001AB8 7B00              MOV     R3,#00H
-001ABA 7A00              MOV     R2,#00H
-001ABC 7900              MOV     R1,#00H
-001ABE 22                RET     
-001ABF         ?C0104?KEYSCAN:
-  347: 			ksSelMapOld[i] = ksSelMapCurr[i];
-001ABF 74BC              MOV     A,#LOW ksSelMapCurr
-001AC1 2F                ADD     A,R7
-001AC2 F582              MOV     DPL,A
-001AC4 E4                CLR     A
-001AC5 344D              ADDC    A,#HIGH ksSelMapCurr
-001AC7 F583              MOV     DPH,A
-001AC9 E0                MOVX    A,@DPTR
-001ACA FE                MOV     R6,A
-001ACB 7493              MOV     A,#LOW ksSelMapOld
-001ACD 2F                ADD     A,R7
-001ACE F582              MOV     DPL,A
-001AD0 E4                CLR     A
-001AD1 344D              ADDC    A,#HIGH ksSelMapOld
-001AD3 F583              MOV     DPH,A
-001AD5 EE                MOV     A,R6
-001AD6 F0                MOVX    @DPTR,A
-  348: 			for (j = 0 ; j<8 ; j++) 
-001AD7 E4                CLR     A
-001AD8 904E13            MOV     DPTR,#j
-001ADB F0                MOVX    @DPTR,A
-001ADC         ?C0106?KEYSCAN:
-001ADC 904E13            MOV     DPTR,#j
-001ADF E0                MOVX    A,@DPTR
-001AE0 FF                MOV     R7,A
-001AE1 C3                CLR     C
-001AE2 9408              SUBB    A,#08H
-001AE4 5058              JNC     ?C0107?KEYSCAN
-  349: 			{
-  350: 				if (temp&1)
-001AE6 A3                INC     DPTR
-001AE7 E0                MOVX    A,@DPTR
-001AE8 30E03B            JNB     ACC.0,?C0109?KEYSCAN
-  351: 				{
-  352: 					offset = i<<3 |j;
-001AEB 904E12            MOV     DPTR,#i
-001AEE E0                MOVX    A,@DPTR
-001AEF FE                MOV     R6,A
-001AF0 33                RLC     A
-001AF1 33                RLC     A
-001AF2 33                RLC     A
-001AF3 54F8              ANL     A,#0F8H
-001AF5 FE                MOV     R6,A
-001AF6 EF                MOV     A,R7
-001AF7 4E                ORL     A,R6
-001AF8 904E16            MOV     DPTR,#offset
-001AFB F0                MOVX    @DPTR,A
-  353: 					key_value_temp = key_fn_function(state,ksMap[offset]);
-001AFC A3                INC     DPTR
-001AFD E0                MOVX    A,@DPTR
-001AFE FF                MOV     R7,A
-001AFF 904E16            MOV     DPTR,#offset
-001B02 E0                MOVX    A,@DPTR
-001B03 900621            MOV     DPTR,#ksMap
-001B06 93                MOVC    A,@A+DPTR
-001B07 FD                MOV     R5,A
-001B08 1112              ACALL   _key_fn_function
-001B0A 904E1B            MOV     DPTR,#key_value_temp
-001B0D EF                MOV     A,R7
-001B0E F0                MOVX    @DPTR,A
-  354: 					if (state & 1)
-001B0F 904E17            MOV     DPTR,#state
-001B12 E0                MOVX    A,@DPTR
-001B13 30E009            JNB     ACC.0,?C0110?KEYSCAN
-  355: 					{
-  356: 						keyIn(key_value_temp);
-001B16 904E1B            MOV     DPTR,#key_value_temp
-001B19 E0                MOVX    A,@DPTR
-001B1A FF                MOV     R7,A
-001B1B 9100              ACALL   _keyIn
-  357: 					}
-001B1D 8007              SJMP    ?C0109?KEYSCAN
-001B1F         ?C0110?KEYSCAN:
-  358: 					else
-  359: 					{
-  360: 						keyOut(key_value_temp);
-001B1F 904E1B            MOV     DPTR,#key_value_temp
-001B22 E0                MOVX    A,@DPTR
-001B23 FF                MOV     R7,A
-001B24 9190              ACALL   _keyOut
-  361: 					}
-  362: 				}
-001B26         ?C0109?KEYSCAN:
-  363: 				temp = temp >>1;
-001B26 904E14            MOV     DPTR,#temp
-001B29 E0                MOVX    A,@DPTR
-001B2A FF                MOV     R7,A
-001B2B C3                CLR     C
-001B2C 13                RRC     A
-001B2D F0                MOVX    @DPTR,A
-  364: 				state = state>>1;
-001B2E 904E17            MOV     DPTR,#state
-001B31 E0                MOVX    A,@DPTR
-001B32 FF                MOV     R7,A
-001B33 C3                CLR     C
-001B34 13                RRC     A
-001B35 F0                MOVX    @DPTR,A
-  365: 			}
-001B36 904E13            MOV     DPTR,#j
-001B39 E0                MOVX    A,@DPTR
-001B3A 04                INC     A
-001B3B F0                MOVX    @DPTR,A
-001B3C 809E              SJMP    ?C0106?KEYSCAN
-001B3E         ?C0107?KEYSCAN:
-  366: 			flag = 1;
-001B3E 904E15            MOV     DPTR,#flag
-001B41 7401              MOV     A,#01H
-001B43 F0                MOVX    @DPTR,A
-  367: 		}
-  368: 	}
-001B44         ?C0101?KEYSCAN:
-001B44 904E12            MOV     DPTR,#i
-001B47 E0                MOVX    A,@DPTR
-001B48 04                INC     A
-001B49 F0                MOVX    @DPTR,A
-001B4A 416C              AJMP    ?C0099?KEYSCAN
-001B4C         ?C0100?KEYSCAN:
-  369: 	
-  370: 	if((mult_key_status == KEY_RELEASE) && (standard_key_release_flag == 1))
-001B4C 904DE4            MOV     DPTR,#mult_key_status
-001B4F E0                MOVX    A,@DPTR
-001B50 B4030A            CJNE    A,#03H,?C0112?KEYSCAN
-001B53 904DD8            MOV     DPTR,#standard_key_release_flag
-001B56 E0                MOVX    A,@DPTR
-001B57 B40103            CJNE    A,#01H,?C0112?KEYSCAN
-  371: 	{
-  372: 		standard_key_release_flag = 2;		//media key and standard key  release the same time
-001B5A 7402              MOV     A,#02H
-001B5C F0                MOVX    @DPTR,A
-  373: 	}
-001B5D         ?C0112?KEYSCAN:
-  374: 
-  375: 	
-  376: 	if (flag || standard_key_release_flag == 2) 
-001B5D 904E15            MOV     DPTR,#flag
-001B60 E0                MOVX    A,@DPTR
-001B61 7007              JNZ     ?C0114?KEYSCAN
-001B63 904DD8            MOV     DPTR,#standard_key_release_flag
-001B66 E0                MOVX    A,@DPTR
-001B67 B40207            CJNE    A,#02H,?C0113?KEYSCAN
-001B6A         ?C0114?KEYSCAN:
-  377: 	{
-  378: 		return &ksEvtPool;
-001B6A 7B01              MOV     R3,#01H
-001B6C 7A4E              MOV     R2,#HIGH ksEvtPool
-001B6E 7931              MOV     R1,#LOW ksEvtPool
-001B70 22                RET     
-  379: 	}
-001B71         ?C0113?KEYSCAN:
-  380: 	else
-  381: 	{
-  382: 		return NULL;
-001B71 7B00              MOV     R3,#00H
-001B73 7A00              MOV     R2,#00H
-001B75 7900              MOV     R1,#00H
+001A34 C3                CLR     C
+001A35 9408              SUBB    A,#08H
+001A37 5058              JNC     ?C0079?KEYSCAN
+  364: 			{
+  365: 				if (temp&1)
+001A39 A3                INC     DPTR
+001A3A E0                MOVX    A,@DPTR
+001A3B 30E03B            JNB     ACC.0,?C0081?KEYSCAN
+  366: 				{
+  367: 					offset = i<<3 |j;
+001A3E 904E12            MOV     DPTR,#i
+001A41 E0                MOVX    A,@DPTR
+001A42 FE                MOV     R6,A
+001A43 33                RLC     A
+001A44 33                RLC     A
+001A45 33                RLC     A
+001A46 54F8              ANL     A,#0F8H
+001A48 FE                MOV     R6,A
+001A49 EF                MOV     A,R7
+001A4A 4E                ORL     A,R6
+001A4B 904E16            MOV     DPTR,#offset
+001A4E F0                MOVX    @DPTR,A
+  368: 					key_value_temp = key_fn_function(state,ksMap[offset]);
+001A4F A3                INC     DPTR
+001A50 E0                MOVX    A,@DPTR
+001A51 FF                MOV     R7,A
+001A52 904E16            MOV     DPTR,#offset
+001A55 E0                MOVX    A,@DPTR
+001A56 900621            MOV     DPTR,#ksMap
+001A59 93                MOVC    A,@A+DPTR
+001A5A FD                MOV     R5,A
+001A5B 1104              ACALL   _key_fn_function
+001A5D 904E1B            MOV     DPTR,#key_value_temp
+001A60 EF                MOV     A,R7
+001A61 F0                MOVX    @DPTR,A
+  369: 					if (state & 1)
+001A62 904E17            MOV     DPTR,#state
+001A65 E0                MOVX    A,@DPTR
+001A66 30E009            JNB     ACC.0,?C0082?KEYSCAN
+  370: 					{
+  371: 						keyIn(key_value_temp);
+001A69 904E1B            MOV     DPTR,#key_value_temp
+001A6C E0                MOVX    A,@DPTR
+001A6D FF                MOV     R7,A
+001A6E 7153              ACALL   _keyIn
+  372: 					}
+001A70 8007              SJMP    ?C0081?KEYSCAN
+001A72         ?C0082?KEYSCAN:
+  373: 					else
+  374: 					{
+  375: 						keyOut(key_value_temp);
+001A72 904E1B            MOV     DPTR,#key_value_temp
+001A75 E0                MOVX    A,@DPTR
+001A76 FF                MOV     R7,A
+001A77 71A9              ACALL   _keyOut
+  376: 					}
+  377: 				}
+001A79         ?C0081?KEYSCAN:
+  378: 				temp = temp >>1;
+001A79 904E14            MOV     DPTR,#temp
+001A7C E0                MOVX    A,@DPTR
+001A7D FF                MOV     R7,A
+001A7E C3                CLR     C
+001A7F 13                RRC     A
+001A80 F0                MOVX    @DPTR,A
+  379: 				state = state>>1;
+001A81 904E17            MOV     DPTR,#state
+001A84 E0                MOVX    A,@DPTR
+001A85 FF                MOV     R7,A
+001A86 C3                CLR     C
+001A87 13                RRC     A
+001A88 F0                MOVX    @DPTR,A
+  380: 			}
+001A89 904E13            MOV     DPTR,#j
+001A8C E0                MOVX    A,@DPTR
+001A8D 04                INC     A
+001A8E F0                MOVX    @DPTR,A
+001A8F 809E              SJMP    ?C0078?KEYSCAN
+001A91         ?C0079?KEYSCAN:
+  381: 			flag = 1;
+001A91 904E15            MOV     DPTR,#flag
+001A94 7401              MOV     A,#01H
+001A96 F0                MOVX    @DPTR,A
+  382: 		}
   383: 	}
+001A97         ?C0073?KEYSCAN:
+001A97 904E12            MOV     DPTR,#i
+001A9A E0                MOVX    A,@DPTR
+001A9B 04                INC     A
+001A9C F0                MOVX    @DPTR,A
+001A9D 21BF              AJMP    ?C0071?KEYSCAN
+001A9F         ?C0072?KEYSCAN:
   384: 	
-  385: 
-  386: }
-001B77 22                RET     
+  385: 	if((mult_key_status == KEY_RELEASE) && (standard_key_release_flag == 1))
+001A9F 904DE4            MOV     DPTR,#mult_key_status
+001AA2 E0                MOVX    A,@DPTR
+001AA3 B4030A            CJNE    A,#03H,?C0084?KEYSCAN
+001AA6 904DD8            MOV     DPTR,#standard_key_release_flag
+001AA9 E0                MOVX    A,@DPTR
+001AAA B40103            CJNE    A,#01H,?C0084?KEYSCAN
+  386: 	{
+  387: 		standard_key_release_flag = 2;		//media key and standard key  release the same time
+001AAD 7402              MOV     A,#02H
+001AAF F0                MOVX    @DPTR,A
+  388: 	}
+001AB0         ?C0084?KEYSCAN:
+  389: 
+  390: 	
+  391: 	if (flag || standard_key_release_flag == 2) 
+001AB0 904E15            MOV     DPTR,#flag
+001AB3 E0                MOVX    A,@DPTR
+001AB4 7007              JNZ     ?C0086?KEYSCAN
+001AB6 904DD8            MOV     DPTR,#standard_key_release_flag
+001AB9 E0                MOVX    A,@DPTR
+001ABA B40207            CJNE    A,#02H,?C0085?KEYSCAN
+001ABD         ?C0086?KEYSCAN:
+  392: 	{
+  393: 		return &ksEvtPool;
+001ABD 7B01              MOV     R3,#01H
+001ABF 7A4E              MOV     R2,#HIGH ksEvtPool
+001AC1 7931              MOV     R1,#LOW ksEvtPool
+001AC3 22                RET     
+  394: 	}
+001AC4         ?C0085?KEYSCAN:
+  395: 	else
+  396: 	{
+  397: 		return NULL;
+001AC4 7B00              MOV     R3,#00H
+001AC6 7A00              MOV     R2,#00H
+001AC8 7900              MOV     R1,#00H
+  398: 	}
+  399: 	
+  400: 
+  401: }
+001ACA 22                RET     
 ----- FUNCTION KS_GetCurrentEvt (END) -------
 
 
@@ -4802,136 +4625,136 @@
    26: 	unsigned char c;
    27: 	for (c = 0; v; c++) {
 ;---- Variable 'c' assigned to Register 'R6' ----
-001B78 E4                CLR     A
-001B79 FE                MOV     R6,A
-001B7A         ?C0001?KEYSCAN:
-001B7A EF                MOV     A,R7
-001B7B 6006              JZ      ?C0002?KEYSCAN
+001ACB E4                CLR     A
+001ACC FE                MOV     R6,A
+001ACD         ?C0001?KEYSCAN:
+001ACD EF                MOV     A,R7
+001ACE 6006              JZ      ?C0002?KEYSCAN
    28:     	v &= v - 1;
-001B7D 14                DEC     A
-001B7E 5F                ANL     A,R7
-001B7F FF                MOV     R7,A
+001AD0 14                DEC     A
+001AD1 5F                ANL     A,R7
+001AD2 FF                MOV     R7,A
    29:     }
-001B80 0E                INC     R6
-001B81 80F7              SJMP    ?C0001?KEYSCAN
-001B83         ?C0002?KEYSCAN:
+001AD3 0E                INC     R6
+001AD4 80F7              SJMP    ?C0001?KEYSCAN
+001AD6         ?C0002?KEYSCAN:
    30:     return c;
-001B83 AF06              MOV     R7,AR6
+001AD6 AF06              MOV     R7,AR6
    31: }
-001B85 22                RET     
+001AD8 22                RET     
 ----- FUNCTION _bit_count (END) -------
 
 
 ----- FUNCTION _array_is_empty (BEGIN) -----
  FILE: 'keyscan.c'
-  273: byte array_is_empty(byte * str1,byte len)
-  274: {
-001B86 904E78            MOV     DPTR,#str1
-001B89 EB                MOV     A,R3
-001B8A F0                MOVX    @DPTR,A
-001B8B A3                INC     DPTR
-001B8C EA                MOV     A,R2
-001B8D F0                MOVX    @DPTR,A
-001B8E A3                INC     DPTR
-001B8F E9                MOV     A,R1
-001B90 F0                MOVX    @DPTR,A
+  288: byte array_is_empty(byte * str1,byte len)
+  289: {
+001AD9 904E78            MOV     DPTR,#str1
+001ADC EB                MOV     A,R3
+001ADD F0                MOVX    @DPTR,A
+001ADE A3                INC     DPTR
+001ADF EA                MOV     A,R2
+001AE0 F0                MOVX    @DPTR,A
+001AE1 A3                INC     DPTR
+001AE2 E9                MOV     A,R1
+001AE3 F0                MOVX    @DPTR,A
 ;---- Variable 'len' assigned to Register 'R5' ----
-  275: 	byte i;
-  276: 	for (i=0;i < len;i++)
+  290: 	byte i;
+  291: 	for (i=0;i < len;i++)
 ;---- Variable 'i' assigned to Register 'R7' ----
-001B91 E4                CLR     A
-001B92 FF                MOV     R7,A
-001B93         ?C0084?KEYSCAN:
-001B93 EF                MOV     A,R7
-001B94 C3                CLR     C
-001B95 9D                SUBB    A,R5
-001B96 501B              JNC     ?C0085?KEYSCAN
-  277: 	{
-  278: 		if (str1[i] != 0)
-001B98 904E78            MOV     DPTR,#str1
-001B9B E0                MOVX    A,@DPTR
-001B9C FB                MOV     R3,A
-001B9D A3                INC     DPTR
-001B9E E0                MOVX    A,@DPTR
-001B9F FA                MOV     R2,A
-001BA0 A3                INC     DPTR
-001BA1 E0                MOVX    A,@DPTR
-001BA2 F9                MOV     R1,A
-001BA3 8F82              MOV     DPL,R7
-001BA5 758300            MOV     DPH,#00H
-001BA8 1203CF            LCALL   ?C?CLDOPTR
-001BAB 6003              JZ      ?C0086?KEYSCAN
-  279: 			return 0x00;
-001BAD 7F00              MOV     R7,#00H
-001BAF 22                RET     
-  280: 	}
-001BB0         ?C0086?KEYSCAN:
-001BB0 0F                INC     R7
-001BB1 80E0              SJMP    ?C0084?KEYSCAN
-001BB3         ?C0085?KEYSCAN:
-  281: 	return 0x01;
-001BB3 7F01              MOV     R7,#01H
-  282: }
-001BB5 22                RET     
+001AE4 E4                CLR     A
+001AE5 FF                MOV     R7,A
+001AE6         ?C0056?KEYSCAN:
+001AE6 EF                MOV     A,R7
+001AE7 C3                CLR     C
+001AE8 9D                SUBB    A,R5
+001AE9 501B              JNC     ?C0057?KEYSCAN
+  292: 	{
+  293: 		if (str1[i] != 0)
+001AEB 904E78            MOV     DPTR,#str1
+001AEE E0                MOVX    A,@DPTR
+001AEF FB                MOV     R3,A
+001AF0 A3                INC     DPTR
+001AF1 E0                MOVX    A,@DPTR
+001AF2 FA                MOV     R2,A
+001AF3 A3                INC     DPTR
+001AF4 E0                MOVX    A,@DPTR
+001AF5 F9                MOV     R1,A
+001AF6 8F82              MOV     DPL,R7
+001AF8 758300            MOV     DPH,#00H
+001AFB 1203CF            LCALL   ?C?CLDOPTR
+001AFE 6003              JZ      ?C0058?KEYSCAN
+  294: 			return 0x00;
+001B00 7F00              MOV     R7,#00H
+001B02 22                RET     
+  295: 	}
+001B03         ?C0058?KEYSCAN:
+001B03 0F                INC     R7
+001B04 80E0              SJMP    ?C0056?KEYSCAN
+001B06         ?C0057?KEYSCAN:
+  296: 	return 0x01;
+001B06 7F01              MOV     R7,#01H
+  297: }
+001B08 22                RET     
 ----- FUNCTION _array_is_empty (END) -------
 
 
 ----- FUNCTION _compare_str (BEGIN) -----
-001BB6 904E38            MOV     DPTR,#str1
-001BB9 EB                MOV     A,R3
-001BBA F0                MOVX    @DPTR,A
-001BBB A3                INC     DPTR
-001BBC EA                MOV     A,R2
-001BBD F0                MOVX    @DPTR,A
-001BBE A3                INC     DPTR
-001BBF E9                MOV     A,R1
-001BC0 F0                MOVX    @DPTR,A
+001B09 904E38            MOV     DPTR,#str1
+001B0C EB                MOV     A,R3
+001B0D F0                MOVX    @DPTR,A
+001B0E A3                INC     DPTR
+001B0F EA                MOV     A,R2
+001B10 F0                MOVX    @DPTR,A
+001B11 A3                INC     DPTR
+001B12 E9                MOV     A,R1
+001B13 F0                MOVX    @DPTR,A
 ;---- Variable 'i' assigned to Register 'R7' ----
-001BC1 E4                CLR     A
-001BC2 FF                MOV     R7,A
-001BC3         ?C0021?UTILITIES:
-001BC3 904E3E            MOV     DPTR,#len
-001BC6 E0                MOVX    A,@DPTR
-001BC7 FE                MOV     R6,A
-001BC8 EF                MOV     A,R7
-001BC9 C3                CLR     C
-001BCA 9E                SUBB    A,R6
-001BCB 5030              JNC     ?C0022?UTILITIES
-001BCD 904E3B            MOV     DPTR,#str2
-001BD0 E0                MOVX    A,@DPTR
-001BD1 FB                MOV     R3,A
-001BD2 A3                INC     DPTR
-001BD3 E0                MOVX    A,@DPTR
-001BD4 FA                MOV     R2,A
-001BD5 A3                INC     DPTR
-001BD6 E0                MOVX    A,@DPTR
-001BD7 F9                MOV     R1,A
-001BD8 8F82              MOV     DPL,R7
-001BDA 758300            MOV     DPH,#00H
-001BDD 1203CF            LCALL   ?C?CLDOPTR
-001BE0 FE                MOV     R6,A
-001BE1 904E38            MOV     DPTR,#str1
-001BE4 E0                MOVX    A,@DPTR
-001BE5 FB                MOV     R3,A
-001BE6 A3                INC     DPTR
-001BE7 E0                MOVX    A,@DPTR
-001BE8 FA                MOV     R2,A
-001BE9 A3                INC     DPTR
-001BEA E0                MOVX    A,@DPTR
-001BEB F9                MOV     R1,A
-001BEC 8F82              MOV     DPL,R7
-001BEE 758300            MOV     DPH,#00H
-001BF1 1203CF            LCALL   ?C?CLDOPTR
-001BF4 6E                XRL     A,R6
-001BF5 6003              JZ      ?C0023?UTILITIES
-001BF7 7F00              MOV     R7,#00H
-001BF9 22                RET     
-001BFA         ?C0023?UTILITIES:
-001BFA 0F                INC     R7
-001BFB 80C6              SJMP    ?C0021?UTILITIES
-001BFD         ?C0022?UTILITIES:
-001BFD 7F01              MOV     R7,#01H
-001BFF 22                RET     
+001B14 E4                CLR     A
+001B15 FF                MOV     R7,A
+001B16         ?C0021?UTILITIES:
+001B16 904E3E            MOV     DPTR,#len
+001B19 E0                MOVX    A,@DPTR
+001B1A FE                MOV     R6,A
+001B1B EF                MOV     A,R7
+001B1C C3                CLR     C
+001B1D 9E                SUBB    A,R6
+001B1E 5030              JNC     ?C0022?UTILITIES
+001B20 904E3B            MOV     DPTR,#str2
+001B23 E0                MOVX    A,@DPTR
+001B24 FB                MOV     R3,A
+001B25 A3                INC     DPTR
+001B26 E0                MOVX    A,@DPTR
+001B27 FA                MOV     R2,A
+001B28 A3                INC     DPTR
+001B29 E0                MOVX    A,@DPTR
+001B2A F9                MOV     R1,A
+001B2B 8F82              MOV     DPL,R7
+001B2D 758300            MOV     DPH,#00H
+001B30 1203CF            LCALL   ?C?CLDOPTR
+001B33 FE                MOV     R6,A
+001B34 904E38            MOV     DPTR,#str1
+001B37 E0                MOVX    A,@DPTR
+001B38 FB                MOV     R3,A
+001B39 A3                INC     DPTR
+001B3A E0                MOVX    A,@DPTR
+001B3B FA                MOV     R2,A
+001B3C A3                INC     DPTR
+001B3D E0                MOVX    A,@DPTR
+001B3E F9                MOV     R1,A
+001B3F 8F82              MOV     DPL,R7
+001B41 758300            MOV     DPH,#00H
+001B44 1203CF            LCALL   ?C?CLDOPTR
+001B47 6E                XRL     A,R6
+001B48 6003              JZ      ?C0023?UTILITIES
+001B4A 7F00              MOV     R7,#00H
+001B4C 22                RET     
+001B4D         ?C0023?UTILITIES:
+001B4D 0F                INC     R7
+001B4E 80C6              SJMP    ?C0021?UTILITIES
+001B50         ?C0022?UTILITIES:
+001B50 7F01              MOV     R7,#01H
+001B52 22                RET     
 ----- FUNCTION _compare_str (END) -------
 
 
@@ -4943,1537 +4766,660 @@
    37: 	byte i = 0;
    38: 
 ;---- Variable 'i' assigned to Register 'R6' ----
-001C00 E4                CLR     A
-001C01 FE                MOV     R6,A
-   39: 	if (key == HID_KEY_RIGHT_GUI)
-001C02 EF                MOV     A,R7
-001C03 B4E708            CJNE    A,#0E7H,?C0005?KEYSCAN
+001B53 E4                CLR     A
+001B54 FE                MOV     R6,A
+   39: 	if(key >= HID_KEY_LEFT_CTL && key <= HID_KEY_RIGHT_GUI)
+001B55 EF                MOV     A,R7
+001B56 C3                CLR     C
+001B57 94E0              SUBB    A,#0E0H
+001B59 4020              JC      ?C0005?KEYSCAN
+001B5B EF                MOV     A,R7
+001B5C D3                SETB    C
+001B5D 94E7              SUBB    A,#0E7H
+001B5F 501A              JNC     ?C0005?KEYSCAN
    40: 	{
-   41: 		ksEvtPool.standardSel |= KS_SEL_RGUI;
-001C06 904E31            MOV     DPTR,#ksEvtPool
-001C09 E0                MOVX    A,@DPTR
-001C0A 4480              ORL     A,#080H
-001C0C F0                MOVX    @DPTR,A
-001C0D 22                RET     
+   41: 		ksEvtPool.standardSel  |=  0x01 << (key & 0x07);
+001B61 904E31            MOV     DPTR,#ksEvtPool
+001B64 E0                MOVX    A,@DPTR
+001B65 FE                MOV     R6,A
+001B66 EF                MOV     A,R7
+001B67 5407              ANL     A,#07H
+001B69 FF                MOV     R7,A
+001B6A 7401              MOV     A,#01H
+001B6C A807              MOV     R0,AR7
+001B6E 08                INC     R0
+001B6F 8002              SJMP    ?C0089?KEYSCAN
+001B71         ?C0088?KEYSCAN:
+001B71 C3                CLR     C
+001B72 33                RLC     A
+001B73         ?C0089?KEYSCAN:
+001B73 D8FC              DJNZ    R0,?C0088?KEYSCAN
+001B75 4E                ORL     A,R6
+001B76 904E31            MOV     DPTR,#ksEvtPool
+001B79 F0                MOVX    @DPTR,A
+001B7A 22                RET     
    42: 		return;
    43: 	}
-001C0E         ?C0005?KEYSCAN:
-   44: 	else if (key ==HID_KEY_RIGHT_ALT) 
-001C0E EF                MOV     A,R7
-001C0F B4E608            CJNE    A,#0E6H,?C0008?KEYSCAN
-   45: 	{
-   46: 		ksEvtPool.standardSel |= KS_SEL_RALT;
-001C12 904E31            MOV     DPTR,#ksEvtPool
-001C15 E0                MOVX    A,@DPTR
-001C16 4440              ORL     A,#040H
-001C18 F0                MOVX    @DPTR,A
-001C19 22                RET     
-   47: 		return;
-   48: 	}
-001C1A         ?C0008?KEYSCAN:
-   49: 	else if (key ==HID_KEY_RIGHT_SHIFT) 
-001C1A EF                MOV     A,R7
-001C1B B4E508            CJNE    A,#0E5H,?C0010?KEYSCAN
-   50: 	{
-   51: 		ksEvtPool.standardSel |= KS_SEL_RSHIFT;
-001C1E 904E31            MOV     DPTR,#ksEvtPool
-001C21 E0                MOVX    A,@DPTR
-001C22 4420              ORL     A,#020H
-001C24 F0                MOVX    @DPTR,A
-001C25 22                RET     
-   52: 		return;
-   53: 	}
-001C26         ?C0010?KEYSCAN:
-   54: 	else if (key ==HID_KEY_RIGHT_CTL) 
-001C26 EF                MOV     A,R7
-001C27 B4E408            CJNE    A,#0E4H,?C0012?KEYSCAN
-   55: 	{
-   56: 		ksEvtPool.standardSel |= KS_SEL_RCTRL;
-001C2A 904E31            MOV     DPTR,#ksEvtPool
-001C2D E0                MOVX    A,@DPTR
-001C2E 4410              ORL     A,#010H
-001C30 F0                MOVX    @DPTR,A
-001C31 22                RET     
-   57: 		return;
-   58: 	}
-001C32         ?C0012?KEYSCAN:
-   59: 	else if (key ==HID_KEY_LEFT_GUI) 
-001C32 EF                MOV     A,R7
-001C33 B4E308            CJNE    A,#0E3H,?C0014?KEYSCAN
-   60: 	{
-   61: 		ksEvtPool.standardSel |= KS_SEL_LGUI;
-001C36 904E31            MOV     DPTR,#ksEvtPool
-001C39 E0                MOVX    A,@DPTR
-001C3A 4408              ORL     A,#08H
-001C3C F0                MOVX    @DPTR,A
-001C3D 22                RET     
-   62: 		return;
-   63: 	}
-001C3E         ?C0014?KEYSCAN:
-   64: 	else if (key ==HID_KEY_LEFT_ALT) 
-001C3E EF                MOV     A,R7
-001C3F B4E208            CJNE    A,#0E2H,?C0016?KEYSCAN
-   65: 	{
-   66: 		ksEvtPool.standardSel |= KS_SEL_LALT;
-001C42 904E31            MOV     DPTR,#ksEvtPool
-001C45 E0                MOVX    A,@DPTR
-001C46 4404              ORL     A,#04H
-001C48 F0                MOVX    @DPTR,A
-001C49 22                RET     
-   67: 		return;
-   68: 	}
-001C4A         ?C0016?KEYSCAN:
-   69: 	else if (key ==HID_KEY_LEFT_SHIFT)
-001C4A EF                MOV     A,R7
-001C4B B4E108            CJNE    A,#0E1H,?C0018?KEYSCAN
-   70: 	{
-   71: 		ksEvtPool.standardSel |= KS_SEL_LSHIFT;
-001C4E 904E31            MOV     DPTR,#ksEvtPool
-001C51 E0                MOVX    A,@DPTR
-001C52 4402              ORL     A,#02H
-001C54 F0                MOVX    @DPTR,A
-001C55 22                RET     
-   72: 		return;
-   73: 	}
-001C56         ?C0018?KEYSCAN:
-   74: 	else if (key ==HID_KEY_LEFT_CTL) 
-001C56 EF                MOV     A,R7
-001C57 B4E008            CJNE    A,#0E0H,?C0007?KEYSCAN
-   75: 	{
-   76: 		ksEvtPool.standardSel |= KS_SEL_LCTRL;
-001C5A 904E31            MOV     DPTR,#ksEvtPool
-001C5D E0                MOVX    A,@DPTR
-001C5E 4401              ORL     A,#01H
-001C60 F0                MOVX    @DPTR,A
-001C61 22                RET     
-   77: 		return;
-   78: 	}
-001C62         ?C0007?KEYSCAN:
-   79: 	//special key
-   80: 
-   81: 	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
-001C62 E4                CLR     A
-001C63 FE                MOV     R6,A
-001C64         ?C0021?KEYSCAN:
-   82: 	{
-   83: 		if (ksEvtPool.ksPool[i] == key)
-001C64 7432              MOV     A,#LOW ksEvtPool+01H
-001C66 2E                ADD     A,R6
-001C67 F582              MOV     DPL,A
-001C69 E4                CLR     A
-001C6A 344E              ADDC    A,#HIGH ksEvtPool+01H
-001C6C F583              MOV     DPH,A
-001C6E E0                MOVX    A,@DPTR
-001C6F FD                MOV     R5,A
-001C70 6F                XRL     A,R7
-001C71 601C              JZ      ?C0006?KEYSCAN
-   84: 			break;
-001C73         ?C0024?KEYSCAN:
-   85: 		if (ksEvtPool.ksPool[i] == 0) 
-001C73 ED                MOV     A,R5
-001C74 7014              JNZ     ?C0023?KEYSCAN
-   86: 		{
-   87: 			if(mult_key_value != key)
-001C76 904DE3            MOV     DPTR,#mult_key_value
-001C79 E0                MOVX    A,@DPTR
-001C7A 6F                XRL     A,R7
-001C7B 6012              JZ      ?C0006?KEYSCAN
-   88: 				ksEvtPool.ksPool[i] = key;
-001C7D 7432              MOV     A,#LOW ksEvtPool+01H
-001C7F 2E                ADD     A,R6
-001C80 F582              MOV     DPL,A
-001C82 E4                CLR     A
-001C83 344E              ADDC    A,#HIGH ksEvtPool+01H
-001C85 F583              MOV     DPH,A
-001C87 EF                MOV     A,R7
-001C88 F0                MOVX    @DPTR,A
-   89: 			break;
-001C89 22                RET     
-   90: 		}
-   91: 	}
-001C8A         ?C0023?KEYSCAN:
-001C8A 0E                INC     R6
-001C8B EE                MOV     A,R6
-001C8C B406D5            CJNE    A,#06H,?C0021?KEYSCAN
-   92: }
-001C8F         ?C0006?KEYSCAN:
-001C8F 22                RET     
+001B7B         ?C0005?KEYSCAN:
+   44: 
+   45: /*
+   46: 
+   47: 	if (key == HID_KEY_RIGHT_GUI)
+   48: 	{
+   49: 		ksEvtPool.standardSel |= KS_SEL_RGUI;
+   50: 		return;
+   51: 	}
+   52: 	else if (key ==HID_KEY_RIGHT_ALT) 
+   53: 	{
+   54: 		ksEvtPool.standardSel |= KS_SEL_RALT;
+   55: 		return;
+   56: 	}
+   57: 	else if (key ==HID_KEY_RIGHT_SHIFT) 
+   58: 	{
+   59: 		ksEvtPool.standardSel |= KS_SEL_RSHIFT;
+   60: 		return;
+   61: 	}
+   62: 	else if (key ==HID_KEY_RIGHT_CTL) 
+   63: 	{
+   64: 		ksEvtPool.standardSel |= KS_SEL_RCTRL;
+   65: 		return;
+   66: 	}
+   67: 	else if (key ==HID_KEY_LEFT_GUI) 
+   68: 	{
+   69: 		ksEvtPool.standardSel |= KS_SEL_LGUI;
+   70: 		return;
+   71: 	}
+   72: 	else if (key ==HID_KEY_LEFT_ALT) 
+   73: 	{
+   74: 		ksEvtPool.standardSel |= KS_SEL_LALT;
+   75: 		return;
+   76: 	}
+   77: 	else if (key ==HID_KEY_LEFT_SHIFT)
+   78: 	{
+   79: 		ksEvtPool.standardSel |= KS_SEL_LSHIFT;
+   80: 		return;
+   81: 	}
+   82: 	else if (key ==HID_KEY_LEFT_CTL) 
+   83: 	{
+   84: 		ksEvtPool.standardSel |= KS_SEL_LCTRL;
+   85: 		return;
+   86: 	}
+   87: */	
+   88: 	//special key
+   89: 
+   90: 	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
+001B7B E4                CLR     A
+001B7C FE                MOV     R6,A
+001B7D         ?C0007?KEYSCAN:
+   91: 	{
+   92: 		if (ksEvtPool.ksPool[i] == key)
+001B7D 7432              MOV     A,#LOW ksEvtPool+01H
+001B7F 2E                ADD     A,R6
+001B80 F582              MOV     DPL,A
+001B82 E4                CLR     A
+001B83 344E              ADDC    A,#HIGH ksEvtPool+01H
+001B85 F583              MOV     DPH,A
+001B87 E0                MOVX    A,@DPTR
+001B88 FD                MOV     R5,A
+001B89 6F                XRL     A,R7
+001B8A 601C              JZ      ?C0006?KEYSCAN
+   93: 			break;
+001B8C         ?C0010?KEYSCAN:
+   94: 		if (ksEvtPool.ksPool[i] == 0) 
+001B8C ED                MOV     A,R5
+001B8D 7014              JNZ     ?C0009?KEYSCAN
+   95: 		{
+   96: 			if(mult_key_value != key)
+001B8F 904DE3            MOV     DPTR,#mult_key_value
+001B92 E0                MOVX    A,@DPTR
+001B93 6F                XRL     A,R7
+001B94 6012              JZ      ?C0006?KEYSCAN
+   97: 				ksEvtPool.ksPool[i] = key;
+001B96 7432              MOV     A,#LOW ksEvtPool+01H
+001B98 2E                ADD     A,R6
+001B99 F582              MOV     DPL,A
+001B9B E4                CLR     A
+001B9C 344E              ADDC    A,#HIGH ksEvtPool+01H
+001B9E F583              MOV     DPH,A
+001BA0 EF                MOV     A,R7
+001BA1 F0                MOVX    @DPTR,A
+   98: 			break;
+001BA2 22                RET     
+   99: 		}
+  100: 	}
+001BA3         ?C0009?KEYSCAN:
+001BA3 0E                INC     R6
+001BA4 EE                MOV     A,R6
+001BA5 B406D5            CJNE    A,#06H,?C0007?KEYSCAN
+  101: }
+001BA8         ?C0006?KEYSCAN:
+001BA8 22                RET     
 ----- FUNCTION _keyIn (END) -------
 
 
 ----- FUNCTION _keyOut (BEGIN) -----
  FILE: 'keyscan.c'
-   94: static void keyOut(byte key)
-   95: {
+  103: static void keyOut(byte key)
+  104: {
 ;---- Variable 'key' assigned to Register 'R7' ----
-   96: 	byte i = 0 ;
-   97: 	byte found = 0;
+  105: 	byte i = 0 ;
+  106: 	byte found = 0;
 ;---- Variable 'i' assigned to Register 'R6' ----
-001C90 E4                CLR     A
-001C91 FE                MOV     R6,A
-   98: 
+001BA9 E4                CLR     A
+001BAA FE                MOV     R6,A
+  107: 
 ;---- Variable 'found' assigned to Register 'R5' ----
-001C92 FD                MOV     R5,A
-   99: 	if ((key &0xF0) == 0xf0 || (key &0xD0) == 0xD0)
-001C93 EF                MOV     A,R7
-001C94 54F0              ANL     A,#0F0H
-001C96 64F0              XRL     A,#0F0H
-001C98 6007              JZ      ?C0028?KEYSCAN
-001C9A EF                MOV     A,R7
-001C9B 54D0              ANL     A,#0D0H
-001C9D FC                MOV     R4,A
-001C9E BCD00C            CJNE    R4,#0D0H,?C0027?KEYSCAN
-001CA1         ?C0028?KEYSCAN:
-  100: 	{
-  101: 		if(mult_key_status == KEY_WAIT_RELEASE)
-001CA1 904DE4            MOV     DPTR,#mult_key_status
-001CA4 E0                MOVX    A,@DPTR
-001CA5 B4020B            CJNE    A,#02H,?C0030?KEYSCAN
-  102: 		{
-  103: 			mult_key_status = KEY_RELEASE;
-001CA8 7403              MOV     A,#03H
-001CAA F0                MOVX    @DPTR,A
-  104: 		}
-  105: 	}
-001CAB 8006              SJMP    ?C0030?KEYSCAN
-001CAD         ?C0027?KEYSCAN:
-  106: 	else
-  107: 		standard_key_release_flag = 1;
-001CAD 904DD8            MOV     DPTR,#standard_key_release_flag
-001CB0 7401              MOV     A,#01H
-001CB2 F0                MOVX    @DPTR,A
-001CB3         ?C0030?KEYSCAN:
-  108: 
-  109: 
-  110: 	if (key == HID_KEY_RIGHT_GUI ) 
-001CB3 EF                MOV     A,R7
-001CB4 B4E708            CJNE    A,#0E7H,?C0031?KEYSCAN
-  111: 	{
-  112: 		ksEvtPool.standardSel &= ~KS_SEL_RGUI;
-001CB7 904E31            MOV     DPTR,#ksEvtPool
-001CBA E0                MOVX    A,@DPTR
-001CBB 547F              ANL     A,#07FH
-001CBD F0                MOVX    @DPTR,A
-001CBE 22                RET     
-  113: 		return;
+001BAB FD                MOV     R5,A
+  108: 	if ((key &0xF0) == 0xf0 || (key &0xD0) == 0xD0)
+001BAC EF                MOV     A,R7
+001BAD 54F0              ANL     A,#0F0H
+001BAF 64F0              XRL     A,#0F0H
+001BB1 6007              JZ      ?C0014?KEYSCAN
+001BB3 EF                MOV     A,R7
+001BB4 54D0              ANL     A,#0D0H
+001BB6 FC                MOV     R4,A
+001BB7 BCD00C            CJNE    R4,#0D0H,?C0013?KEYSCAN
+001BBA         ?C0014?KEYSCAN:
+  109: 	{
+  110: 		if(mult_key_status == KEY_WAIT_RELEASE)
+001BBA 904DE4            MOV     DPTR,#mult_key_status
+001BBD E0                MOVX    A,@DPTR
+001BBE B4020B            CJNE    A,#02H,?C0016?KEYSCAN
+  111: 		{
+  112: 			mult_key_status = KEY_RELEASE;
+001BC1 7403              MOV     A,#03H
+001BC3 F0                MOVX    @DPTR,A
+  113: 		}
   114: 	}
-001CBF         ?C0031?KEYSCAN:
-  115: 	else if (key ==HID_KEY_RIGHT_ALT ) 
-001CBF EF                MOV     A,R7
-001CC0 B4E608            CJNE    A,#0E6H,?C0034?KEYSCAN
-  116: 	{
-  117: 		ksEvtPool.standardSel &= ~KS_SEL_RALT;
-001CC3 904E31            MOV     DPTR,#ksEvtPool
-001CC6 E0                MOVX    A,@DPTR
-001CC7 54BF              ANL     A,#0BFH
-001CC9 F0                MOVX    @DPTR,A
-001CCA 22                RET     
-  118: 		return;
-  119: 	}
-001CCB         ?C0034?KEYSCAN:
-  120: 	else if (key ==HID_KEY_RIGHT_SHIFT) 
-001CCB EF                MOV     A,R7
-001CCC B4E508            CJNE    A,#0E5H,?C0036?KEYSCAN
-  121: 	{
-  122: 		ksEvtPool.standardSel &= ~KS_SEL_RSHIFT;
-001CCF 904E31            MOV     DPTR,#ksEvtPool
-001CD2 E0                MOVX    A,@DPTR
-001CD3 54DF              ANL     A,#0DFH
-001CD5 F0                MOVX    @DPTR,A
-001CD6 22                RET     
-  123: 		return;
-  124: 	}
-001CD7         ?C0036?KEYSCAN:
-  125: 	else if (key ==HID_KEY_RIGHT_CTL) 
-001CD7 EF                MOV     A,R7
-001CD8 B4E408            CJNE    A,#0E4H,?C0038?KEYSCAN
+001BC4 8006              SJMP    ?C0016?KEYSCAN
+001BC6         ?C0013?KEYSCAN:
+  115: 	else
+  116: 		standard_key_release_flag = 1;
+001BC6 904DD8            MOV     DPTR,#standard_key_release_flag
+001BC9 7401              MOV     A,#01H
+001BCB F0                MOVX    @DPTR,A
+001BCC         ?C0016?KEYSCAN:
+  117: 
+  118: 	if(key >= HID_KEY_LEFT_CTL && key <= HID_KEY_RIGHT_GUI)
+001BCC EF                MOV     A,R7
+001BCD C3                CLR     C
+001BCE 94E0              SUBB    A,#0E0H
+001BD0 4020              JC      ?C0017?KEYSCAN
+001BD2 EF                MOV     A,R7
+001BD3 D3                SETB    C
+001BD4 94E7              SUBB    A,#0E7H
+001BD6 501A              JNC     ?C0017?KEYSCAN
+  119: 	{
+  120: 		ksEvtPool.standardSel  &= ~0x01 << (key & 0x07);
+001BD8 904E31            MOV     DPTR,#ksEvtPool
+001BDB E0                MOVX    A,@DPTR
+001BDC FE                MOV     R6,A
+001BDD EF                MOV     A,R7
+001BDE 5407              ANL     A,#07H
+001BE0 FF                MOV     R7,A
+001BE1 74FE              MOV     A,#0FEH
+001BE3 A807              MOV     R0,AR7
+001BE5 08                INC     R0
+001BE6 8002              SJMP    ?C0091?KEYSCAN
+001BE8         ?C0090?KEYSCAN:
+001BE8 C3                CLR     C
+001BE9 33                RLC     A
+001BEA         ?C0091?KEYSCAN:
+001BEA D8FC              DJNZ    R0,?C0090?KEYSCAN
+001BEC 5E                ANL     A,R6
+001BED 904E31            MOV     DPTR,#ksEvtPool
+001BF0 F0                MOVX    @DPTR,A
+001BF1 22                RET     
+  121: 		return;
+  122: 	}
+001BF2         ?C0017?KEYSCAN:
+  123: 
+  124: /*
+  125: 	if (key == HID_KEY_RIGHT_GUI ) 
   126: 	{
-  127: 		ksEvtPool.standardSel &= ~KS_SEL_RCTRL;
-001CDB 904E31            MOV     DPTR,#ksEvtPool
-001CDE E0                MOVX    A,@DPTR
-001CDF 54EF              ANL     A,#0EFH
-001CE1 F0                MOVX    @DPTR,A
-001CE2 22                RET     
+  127: 		ksEvtPool.standardSel &= ~KS_SEL_RGUI;
   128: 		return;
   129: 	}
-001CE3         ?C0038?KEYSCAN:
-  130: 	else if (key ==HID_KEY_LEFT_GUI)
-001CE3 EF                MOV     A,R7
-001CE4 B4E308            CJNE    A,#0E3H,?C0040?KEYSCAN
+  130: 	else if (key ==HID_KEY_RIGHT_ALT ) 
   131: 	{
-  132: 		ksEvtPool.standardSel &= ~KS_SEL_LGUI;
-001CE7 904E31            MOV     DPTR,#ksEvtPool
-001CEA E0                MOVX    A,@DPTR
-001CEB 54F7              ANL     A,#0F7H
-001CED F0                MOVX    @DPTR,A
-001CEE 22                RET     
+  132: 		ksEvtPool.standardSel &= ~KS_SEL_RALT;
   133: 		return;
   134: 	}
-001CEF         ?C0040?KEYSCAN:
-  135: 	else if (key ==HID_KEY_LEFT_ALT)
-001CEF EF                MOV     A,R7
-001CF0 B4E208            CJNE    A,#0E2H,?C0042?KEYSCAN
+  135: 	else if (key ==HID_KEY_RIGHT_SHIFT) 
   136: 	{
-  137: 		ksEvtPool.standardSel &= ~KS_SEL_LALT;
-001CF3 904E31            MOV     DPTR,#ksEvtPool
-001CF6 E0                MOVX    A,@DPTR
-001CF7 54FB              ANL     A,#0FBH
-001CF9 F0                MOVX    @DPTR,A
-001CFA 22                RET     
+  137: 		ksEvtPool.standardSel &= ~KS_SEL_RSHIFT;
   138: 		return;
   139: 	}
-001CFB         ?C0042?KEYSCAN:
-  140: 	else if (key ==HID_KEY_LEFT_SHIFT) 
-001CFB EF                MOV     A,R7
-001CFC B4E108            CJNE    A,#0E1H,?C0044?KEYSCAN
+  140: 	else if (key ==HID_KEY_RIGHT_CTL) 
   141: 	{
-  142: 		ksEvtPool.standardSel &= ~KS_SEL_LSHIFT;
-001CFF 904E31            MOV     DPTR,#ksEvtPool
-001D02 E0                MOVX    A,@DPTR
-001D03 54FD              ANL     A,#0FDH
-001D05 F0                MOVX    @DPTR,A
-001D06 22                RET     
+  142: 		ksEvtPool.standardSel &= ~KS_SEL_RCTRL;
   143: 		return;
   144: 	}
-001D07         ?C0044?KEYSCAN:
-  145: 	else if (key ==HID_KEY_LEFT_CTL) 
-001D07 EF                MOV     A,R7
-001D08 B4E008            CJNE    A,#0E0H,?C0033?KEYSCAN
+  145: 	else if (key ==HID_KEY_LEFT_GUI)
   146: 	{
-  147: 		ksEvtPool.standardSel &= ~ KS_SEL_LCTRL;
-001D0B 904E31            MOV     DPTR,#ksEvtPool
-001D0E E0                MOVX    A,@DPTR
-001D0F 54FE              ANL     A,#0FEH
-001D11 F0                MOVX    @DPTR,A
-001D12 22                RET     
+  147: 		ksEvtPool.standardSel &= ~KS_SEL_LGUI;
   148: 		return;
   149: 	}
-001D13         ?C0033?KEYSCAN:
-  150: 	
-  151: 	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
-001D13 E4                CLR     A
-001D14 FE                MOV     R6,A
-001D15         ?C0047?KEYSCAN:
-  152: 	{
-  153: 		if (found == 0) 
-001D15 ED                MOV     A,R5
-001D16 7021              JNZ     ?C0050?KEYSCAN
-  154: 		{
-  155: 			if (ksEvtPool.ksPool[i] == key) {
-001D18 7432              MOV     A,#LOW ksEvtPool+01H
-001D1A 2E                ADD     A,R6
-001D1B F582              MOV     DPL,A
-001D1D E4                CLR     A
-001D1E 344E              ADDC    A,#HIGH ksEvtPool+01H
-001D20 F583              MOV     DPH,A
-001D22 E0                MOVX    A,@DPTR
-001D23 6F                XRL     A,R7
-001D24 7047              JNZ     ?C0049?KEYSCAN
-  156: 				if (i == KS_BUFF_POLL_LEN-1) {
-001D26 EE                MOV     A,R6
-001D27 B4050B            CJNE    A,#05H,?C0052?KEYSCAN
-  157: 					ksEvtPool.ksPool[i] = 0;
-001D2A 2432              ADD     A,#LOW ksEvtPool+01H
-001D2C F582              MOV     DPL,A
-001D2E E4                CLR     A
-001D2F 344E              ADDC    A,#HIGH ksEvtPool+01H
-001D31 F583              MOV     DPH,A
-001D33 E4                CLR     A
-001D34 F0                MOVX    @DPTR,A
-  158: 				}
-001D35         ?C0052?KEYSCAN:
-  159: 				found = 1;
-001D35 7D01              MOV     R5,#01H
-  160: 			}
-  161: 		}
-001D37 8034              SJMP    ?C0049?KEYSCAN
-001D39         ?C0050?KEYSCAN:
-  162: 		else 
-  163: 		{
-  164: 			ksEvtPool.ksPool[i-1] = ksEvtPool.ksPool[i];
-001D39 7432              MOV     A,#LOW ksEvtPool+01H
-001D3B 2E                ADD     A,R6
-001D3C F582              MOV     DPL,A
-001D3E E4                CLR     A
-001D3F 344E              ADDC    A,#HIGH ksEvtPool+01H
-001D41 F583              MOV     DPH,A
-001D43 E0                MOVX    A,@DPTR
-001D44 FC                MOV     R4,A
-001D45 7431              MOV     A,#LOW ksEvtPool
-001D47 2E                ADD     A,R6
-001D48 F582              MOV     DPL,A
-001D4A E4                CLR     A
-001D4B 344E              ADDC    A,#HIGH ksEvtPool
-001D4D F583              MOV     DPH,A
-001D4F EC                MOV     A,R4
-001D50 F0                MOVX    @DPTR,A
-  165: 			if (ksEvtPool.ksPool[i] == 0)
-001D51 7432              MOV     A,#LOW ksEvtPool+01H
-001D53 2E                ADD     A,R6
-001D54 F582              MOV     DPL,A
-001D56 E4                CLR     A
-001D57 344E              ADDC    A,#HIGH ksEvtPool+01H
-001D59 F583              MOV     DPH,A
-001D5B E0                MOVX    A,@DPTR
-001D5C 6014              JZ      ?C0032?KEYSCAN
-  166: 				break;
-001D5E         ?C0054?KEYSCAN:
-  167: 			if (i == KS_BUFF_POLL_LEN-1) {
-001D5E EE                MOV     A,R6
-001D5F B4050B            CJNE    A,#05H,?C0049?KEYSCAN
-  168: 				ksEvtPool.ksPool[i] = 0;
-001D62 2432              ADD     A,#LOW ksEvtPool+01H
-001D64 F582              MOV     DPL,A
-001D66 E4                CLR     A
-001D67 344E              ADDC    A,#HIGH ksEvtPool+01H
-001D69 F583              MOV     DPH,A
-001D6B E4                CLR     A
-001D6C F0                MOVX    @DPTR,A
-  169: 			}
-  170: 		}
-  171: 	}
-001D6D         ?C0049?KEYSCAN:
-001D6D 0E                INC     R6
-001D6E EE                MOV     A,R6
-001D6F B406A3            CJNE    A,#06H,?C0047?KEYSCAN
-  172: }
-001D72         ?C0032?KEYSCAN:
-001D72 22                RET     
+  150: 	else if (key ==HID_KEY_LEFT_ALT)
+  151: 	{
+  152: 		ksEvtPool.standardSel &= ~KS_SEL_LALT;
+  153: 		return;
+  154: 	}
+  155: 	else if (key ==HID_KEY_LEFT_SHIFT) 
+  156: 	{
+  157: 		ksEvtPool.standardSel &= ~KS_SEL_LSHIFT;
+  158: 		return;
+  159: 	}
+  160: 	else if (key ==HID_KEY_LEFT_CTL) 
+  161: 	{
+  162: 		ksEvtPool.standardSel &= ~ KS_SEL_LCTRL;
+  163: 		return;
+  164: 	}
+  165: */	
+  166: 	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
+001BF2 E4                CLR     A
+001BF3 FE                MOV     R6,A
+001BF4         ?C0019?KEYSCAN:
+  167: 	{
+  168: 		if (found == 0) 
+001BF4 ED                MOV     A,R5
+001BF5 7021              JNZ     ?C0022?KEYSCAN
+  169: 		{
+  170: 			if (ksEvtPool.ksPool[i] == key) {
+001BF7 7432              MOV     A,#LOW ksEvtPool+01H
+001BF9 2E                ADD     A,R6
+001BFA F582              MOV     DPL,A
+001BFC E4                CLR     A
+001BFD 344E              ADDC    A,#HIGH ksEvtPool+01H
+001BFF F583              MOV     DPH,A
+001C01 E0                MOVX    A,@DPTR
+001C02 6F                XRL     A,R7
+001C03 7047              JNZ     ?C0021?KEYSCAN
+  171: 				if (i == KS_BUFF_POLL_LEN-1) {
+001C05 EE                MOV     A,R6
+001C06 B4050B            CJNE    A,#05H,?C0024?KEYSCAN
+  172: 					ksEvtPool.ksPool[i] = 0;
+001C09 2432              ADD     A,#LOW ksEvtPool+01H
+001C0B F582              MOV     DPL,A
+001C0D E4                CLR     A
+001C0E 344E              ADDC    A,#HIGH ksEvtPool+01H
+001C10 F583              MOV     DPH,A
+001C12 E4                CLR     A
+001C13 F0                MOVX    @DPTR,A
+  173: 				}
+001C14         ?C0024?KEYSCAN:
+  174: 				found = 1;
+001C14 7D01              MOV     R5,#01H
+  175: 			}
+  176: 		}
+001C16 8034              SJMP    ?C0021?KEYSCAN
+001C18         ?C0022?KEYSCAN:
+  177: 		else 
+  178: 		{
+  179: 			ksEvtPool.ksPool[i-1] = ksEvtPool.ksPool[i];
+001C18 7432              MOV     A,#LOW ksEvtPool+01H
+001C1A 2E                ADD     A,R6
+001C1B F582              MOV     DPL,A
+001C1D E4                CLR     A
+001C1E 344E              ADDC    A,#HIGH ksEvtPool+01H
+001C20 F583              MOV     DPH,A
+001C22 E0                MOVX    A,@DPTR
+001C23 FC                MOV     R4,A
+001C24 7431              MOV     A,#LOW ksEvtPool
+001C26 2E                ADD     A,R6
+001C27 F582              MOV     DPL,A
+001C29 E4                CLR     A
+001C2A 344E              ADDC    A,#HIGH ksEvtPool
+001C2C F583              MOV     DPH,A
+001C2E EC                MOV     A,R4
+001C2F F0                MOVX    @DPTR,A
+  180: 			if (ksEvtPool.ksPool[i] == 0)
+001C30 7432              MOV     A,#LOW ksEvtPool+01H
+001C32 2E                ADD     A,R6
+001C33 F582              MOV     DPL,A
+001C35 E4                CLR     A
+001C36 344E              ADDC    A,#HIGH ksEvtPool+01H
+001C38 F583              MOV     DPH,A
+001C3A E0                MOVX    A,@DPTR
+001C3B 6014              JZ      ?C0018?KEYSCAN
+  181: 				break;
+001C3D         ?C0026?KEYSCAN:
+  182: 			if (i == KS_BUFF_POLL_LEN-1) {
+001C3D EE                MOV     A,R6
+001C3E B4050B            CJNE    A,#05H,?C0021?KEYSCAN
+  183: 				ksEvtPool.ksPool[i] = 0;
+001C41 2432              ADD     A,#LOW ksEvtPool+01H
+001C43 F582              MOV     DPL,A
+001C45 E4                CLR     A
+001C46 344E              ADDC    A,#HIGH ksEvtPool+01H
+001C48 F583              MOV     DPH,A
+001C4A E4                CLR     A
+001C4B F0                MOVX    @DPTR,A
+  184: 			}
+  185: 		}
+  186: 	}
+001C4C         ?C0021?KEYSCAN:
+001C4C 0E                INC     R6
+001C4D EE                MOV     A,R6
+001C4E B406A3            CJNE    A,#06H,?C0019?KEYSCAN
+  187: }
+001C51         ?C0018?KEYSCAN:
+001C51 22                RET     
 ----- FUNCTION _keyOut (END) -------
 
 
 ----- FUNCTION KS_ScanMatrix (BEGIN) -----
  FILE: 'keyscan.c'
-  245: void KS_ScanMatrix()
-  246: {
-  247: 	byte i = 0;
-  248: 	byte j = 0;
+  260: void KS_ScanMatrix()
+  261: {
+  262: 	byte i = 0;
+  263: 	byte j = 0;
 ;---- Variable 'i' assigned to Register 'R7' ----
-001D73 E4                CLR     A
-001D74 FF                MOV     R7,A
-  249: 	byte tgroup = 0;
-001D75 904E69            MOV     DPTR,#j
-001D78 F0                MOVX    @DPTR,A
-  250: 	byte tgpionum = 0;
+001C52 E4                CLR     A
+001C53 FF                MOV     R7,A
+  264: 	byte tgroup = 0;
+001C54 904E69            MOV     DPTR,#j
+001C57 F0                MOVX    @DPTR,A
+  265: 	byte tgpionum = 0;
 ;---- Variable 'tgroup' assigned to Register 'R6' ----
-001D79 FE                MOV     R6,A
-  251: 	byte temp = 0;
+001C58 FE                MOV     R6,A
+  266: 	byte temp = 0;
 ;---- Variable 'tgpionum' assigned to Register 'R5' ----
-001D7A FD                MOV     R5,A
-  252: 	byte check = 0;
-001D7B A3                INC     DPTR
-001D7C F0                MOVX    @DPTR,A
-  253: 	byte rawSel = 0;
-001D7D A3                INC     DPTR
-001D7E F0                MOVX    @DPTR,A
-  254: 	for (i=0; col[i]!=0; i++) {
-001D7F A3                INC     DPTR
-001D80 F0                MOVX    @DPTR,A
-  255: 		tgroup = col[i]  >> 3;
-001D81         ?C0073?KEYSCAN:
-001D81 EF                MOV     A,R7
-001D82 90060C            MOV     DPTR,#col
-001D85 93                MOVC    A,@A+DPTR
-001D86 607C              JZ      ?C0074?KEYSCAN
-  256: 		tgpionum = 1 << (col[i] & 7);
-001D88 EF                MOV     A,R7
-001D89 93                MOVC    A,@A+DPTR
-001D8A FD                MOV     R5,A
-001D8B 13                RRC     A
-001D8C 13                RRC     A
-001D8D 13                RRC     A
-001D8E 541F              ANL     A,#01FH
-001D90 FE                MOV     R6,A
-  257: 		GET_RAW_KEY_SEL(ksSelMapCurr[i], tgroup, tgpionum);
-001D91 ED                MOV     A,R5
-001D92 5407              ANL     A,#07H
-001D94 FD                MOV     R5,A
-001D95 7401              MOV     A,#01H
-001D97 A805              MOV     R0,AR5
-001D99 08                INC     R0
-001D9A 8002              SJMP    ?C0119?KEYSCAN
-001D9C         ?C0118?KEYSCAN:
-001D9C C3                CLR     C
-001D9D 33                RLC     A
-001D9E         ?C0119?KEYSCAN:
-001D9E D8FC              DJNZ    R0,?C0118?KEYSCAN
-001DA0 FD                MOV     R5,A
-  258: 	}
-001DA1 EE                MOV     A,R6
-001DA2 2478              ADD     A,#078H
-001DA4 FB                MOV     R3,A
-001DA5 E4                CLR     A
-001DA6 3480              ADDC    A,#080H
-001DA8 8B82              MOV     DPL,R3
-001DAA F583              MOV     DPH,A
-001DAC E0                MOVX    A,@DPTR
-001DAD FC                MOV     R4,A
-001DAE ED                MOV     A,R5
-001DAF F4                CPL     A
-001DB0 FB                MOV     R3,A
-001DB1 EC                MOV     A,R4
-001DB2 5B                ANL     A,R3
-001DB3 F0                MOVX    @DPTR,A
-001DB4 EE                MOV     A,R6
-001DB5 2470              ADD     A,#070H
-001DB7 F582              MOV     DPL,A
-001DB9 E4                CLR     A
-001DBA 3480              ADDC    A,#080H
-001DBC F583              MOV     DPH,A
-001DBE E0                MOVX    A,@DPTR
-001DBF 4D                ORL     A,R5
-001DC0 F0                MOVX    @DPTR,A
-001DC1 EE                MOV     A,R6
-001DC2 2474              ADD     A,#074H
-001DC4 F582              MOV     DPL,A
-001DC6 E4                CLR     A
-001DC7 3480              ADDC    A,#080H
-001DC9 F583              MOV     DPH,A
-001DCB E0                MOVX    A,@DPTR
-001DCC 5B                ANL     A,R3
-001DCD F0                MOVX    @DPTR,A
-001DCE 90811C            MOV     DPTR,#0811CH
-001DD1 E0                MOVX    A,@DPTR
-001DD2 F4                CPL     A
-001DD3 FC                MOV     R4,A
-001DD4 74BC              MOV     A,#LOW ksSelMapCurr
-001DD6 2F                ADD     A,R7
-001DD7 F582              MOV     DPL,A
-001DD9 E4                CLR     A
-001DDA 344D              ADDC    A,#HIGH ksSelMapCurr
-001DDC F583              MOV     DPH,A
-001DDE EC                MOV     A,R4
-001DDF F0                MOVX    @DPTR,A
-001DE0 EE                MOV     A,R6
-001DE1 2478              ADD     A,#078H
-001DE3 FB                MOV     R3,A
-001DE4 E4                CLR     A
-001DE5 3480              ADDC    A,#080H
-001DE7 8B82              MOV     DPL,R3
-001DE9 F583              MOV     DPH,A
-001DEB E0                MOVX    A,@DPTR
-001DEC 4D                ORL     A,R5
-001DED F0                MOVX    @DPTR,A
-001DEE EE                MOV     A,R6
-001DEF 2470              ADD     A,#070H
-001DF1 FB                MOV     R3,A
-001DF2 E4                CLR     A
-001DF3 3480              ADDC    A,#080H
-001DF5 8B82              MOV     DPL,R3
-001DF7 F583              MOV     DPH,A
-001DF9 E0                MOVX    A,@DPTR
-001DFA FC                MOV     R4,A
-001DFB ED                MOV     A,R5
-001DFC F4                CPL     A
-001DFD FB                MOV     R3,A
-001DFE EC                MOV     A,R4
-001DFF 5B                ANL     A,R3
-001E00 F0                MOVX    @DPTR,A
-  259: 
-001E01 0F                INC     R7
-001E02 A181              AJMP    ?C0073?KEYSCAN
-001E04         ?C0074?KEYSCAN:
-  260: 	for (i=0; col[i]!=0; i++) {
-001E04 E4                CLR     A
-001E05 FF                MOV     R7,A
-001E06         ?C0076?KEYSCAN:
-001E06 EF                MOV     A,R7
-001E07 90060C            MOV     DPTR,#col
-001E0A 93                MOVC    A,@A+DPTR
-001E0B 607C              JZ      ?C0077?KEYSCAN
-  261: 		tgroup = col[i]  >> 3;
-001E0D EF                MOV     A,R7
-001E0E 93                MOVC    A,@A+DPTR
-001E0F FD                MOV     R5,A
-001E10 13                RRC     A
-001E11 13                RRC     A
-001E12 13                RRC     A
-001E13 541F              ANL     A,#01FH
-001E15 FE                MOV     R6,A
-  262: 		tgpionum = 1 << (col[i] & 7);
-001E16 ED                MOV     A,R5
-001E17 5407              ANL     A,#07H
-001E19 FD                MOV     R5,A
-001E1A 7401              MOV     A,#01H
-001E1C A805              MOV     R0,AR5
-001E1E 08                INC     R0
-001E1F 8002              SJMP    ?C0121?KEYSCAN
-001E21         ?C0120?KEYSCAN:
-001E21 C3                CLR     C
-001E22 33                RLC     A
-001E23         ?C0121?KEYSCAN:
-001E23 D8FC              DJNZ    R0,?C0120?KEYSCAN
-001E25 FD                MOV     R5,A
-  263: 		GET_RAW_KEY_SEL(ksSelMapCheck[i], tgroup, tgpionum);
-001E26 EE                MOV     A,R6
-001E27 2478              ADD     A,#078H
-001E29 FB                MOV     R3,A
-001E2A E4                CLR     A
-001E2B 3480              ADDC    A,#080H
-001E2D 8B82              MOV     DPL,R3
-001E2F F583              MOV     DPH,A
-001E31 E0                MOVX    A,@DPTR
-001E32 FC                MOV     R4,A
-001E33 ED                MOV     A,R5
-001E34 F4                CPL     A
-001E35 FB                MOV     R3,A
-001E36 EC                MOV     A,R4
-001E37 5B                ANL     A,R3
-001E38 F0                MOVX    @DPTR,A
-001E39 EE                MOV     A,R6
-001E3A 2470              ADD     A,#070H
-001E3C F582              MOV     DPL,A
-001E3E E4                CLR     A
-001E3F 3480              ADDC    A,#080H
-001E41 F583              MOV     DPH,A
-001E43 E0                MOVX    A,@DPTR
-001E44 4D                ORL     A,R5
-001E45 F0                MOVX    @DPTR,A
-001E46 EE                MOV     A,R6
-001E47 2474              ADD     A,#074H
-001E49 F582              MOV     DPL,A
-001E4B E4                CLR     A
-001E4C 3480              ADDC    A,#080H
-001E4E F583              MOV     DPH,A
-001E50 E0                MOVX    A,@DPTR
-001E51 5B                ANL     A,R3
-001E52 F0                MOVX    @DPTR,A
-001E53 90811C            MOV     DPTR,#0811CH
-001E56 E0                MOVX    A,@DPTR
-001E57 F4                CPL     A
-001E58 FC                MOV     R4,A
-001E59 74A8              MOV     A,#LOW ksSelMapCheck
-001E5B 2F                ADD     A,R7
-001E5C F582              MOV     DPL,A
-001E5E E4                CLR     A
-001E5F 344D              ADDC    A,#HIGH ksSelMapCheck
-001E61 F583              MOV     DPH,A
-001E63 EC                MOV     A,R4
-001E64 F0                MOVX    @DPTR,A
-001E65 EE                MOV     A,R6
-001E66 2478              ADD     A,#078H
-001E68 FB                MOV     R3,A
-001E69 E4                CLR     A
-001E6A 3480              ADDC    A,#080H
-001E6C 8B82              MOV     DPL,R3
-001E6E F583              MOV     DPH,A
-001E70 E0                MOVX    A,@DPTR
-001E71 4D                ORL     A,R5
-001E72 F0                MOVX    @DPTR,A
-001E73 EE                MOV     A,R6
-001E74 2470              ADD     A,#070H
-001E76 FB                MOV     R3,A
-001E77 E4                CLR     A
-001E78 3480              ADDC    A,#080H
-001E7A 8B82              MOV     DPL,R3
-001E7C F583              MOV     DPH,A
-001E7E E0                MOVX    A,@DPTR
-001E7F FC                MOV     R4,A
-001E80 ED                MOV     A,R5
-001E81 F4                CPL     A
-001E82 FB                MOV     R3,A
-001E83 EC                MOV     A,R4
-001E84 5B                ANL     A,R3
-001E85 F0                MOVX    @DPTR,A
-  264: 	}
-001E86 0F                INC     R7
-001E87 C106              AJMP    ?C0076?KEYSCAN
-001E89         ?C0077?KEYSCAN:
-  265: 
-  266: 	for (i=0; col[i]!=0; i++) {
-001E89 E4                CLR     A
-001E8A FF                MOV     R7,A
-001E8B         ?C0079?KEYSCAN:
-001E8B EF                MOV     A,R7
-001E8C 90060C            MOV     DPTR,#col
-001E8F 93                MOVC    A,@A+DPTR
-001E90 6040              JZ      ?C0083?KEYSCAN
-  267: 		if (ksSelMapCheck[i]!=ksSelMapCurr[i]) {
-001E92 74BC              MOV     A,#LOW ksSelMapCurr
-001E94 2F                ADD     A,R7
-001E95 F582              MOV     DPL,A
-001E97 E4                CLR     A
-001E98 344D              ADDC    A,#HIGH ksSelMapCurr
-001E9A F583              MOV     DPH,A
-001E9C E0                MOVX    A,@DPTR
-001E9D FE                MOV     R6,A
-001E9E 74A8              MOV     A,#LOW ksSelMapCheck
-001EA0 2F                ADD     A,R7
-001EA1 F582              MOV     DPL,A
-001EA3 E4                CLR     A
-001EA4 344D              ADDC    A,#HIGH ksSelMapCheck
-001EA6 F583              MOV     DPH,A
-001EA8 E0                MOVX    A,@DPTR
-001EA9 6E                XRL     A,R6
-001EAA 6023              JZ      ?C0081?KEYSCAN
-  268: 			ksSelMapCurr[i] &= ksSelMapCheck[i];
-001EAC 74BC              MOV     A,#LOW ksSelMapCurr
-001EAE 2F                ADD     A,R7
-001EAF F582              MOV     DPL,A
-001EB1 E4                CLR     A
-001EB2 344D              ADDC    A,#HIGH ksSelMapCurr
-001EB4 F583              MOV     DPH,A
-001EB6 C083              PUSH    DPH
-001EB8 C082              PUSH    DPL
-001EBA E0                MOVX    A,@DPTR
-001EBB FE                MOV     R6,A
-001EBC 74A8              MOV     A,#LOW ksSelMapCheck
-001EBE 2F                ADD     A,R7
-001EBF F582              MOV     DPL,A
-001EC1 E4                CLR     A
-001EC2 344D              ADDC    A,#HIGH ksSelMapCheck
-001EC4 F583              MOV     DPH,A
-001EC6 E0                MOVX    A,@DPTR
-001EC7 FD                MOV     R5,A
-001EC8 EE                MOV     A,R6
-001EC9 5D                ANL     A,R5
-001ECA D082              POP     DPL
-001ECC D083              POP     DPH
-001ECE F0                MOVX    @DPTR,A
-  269: 		}
-  270: 	}
-001ECF         ?C0081?KEYSCAN:
-001ECF 0F                INC     R7
-001ED0 80B9              SJMP    ?C0079?KEYSCAN
-  271: }
-001ED2         ?C0083?KEYSCAN:
-001ED2 22                RET     
+001C59 FD                MOV     R5,A
+  267: 	byte check = 0;
+001C5A A3                INC     DPTR
+001C5B F0                MOVX    @DPTR,A
+  268: 	byte rawSel = 0;
+001C5C A3                INC     DPTR
+001C5D F0                MOVX    @DPTR,A
+  269: 	for (i=0; col[i]!=0; i++) {
+001C5E A3                INC     DPTR
+001C5F F0                MOVX    @DPTR,A
+  270: 		tgroup = col[i]  >> 3;
+001C60         ?C0045?KEYSCAN:
+001C60 EF                MOV     A,R7
+001C61 90060C            MOV     DPTR,#col
+001C64 93                MOVC    A,@A+DPTR
+001C65 607C              JZ      ?C0046?KEYSCAN
+  271: 		tgpionum = 1 << (col[i] & 7);
+001C67 EF                MOV     A,R7
+001C68 93                MOVC    A,@A+DPTR
+001C69 FD                MOV     R5,A
+001C6A 13                RRC     A
+001C6B 13                RRC     A
+001C6C 13                RRC     A
+001C6D 541F              ANL     A,#01FH
+001C6F FE                MOV     R6,A
+  272: 		GET_RAW_KEY_SEL(ksSelMapCurr[i], tgroup, tgpionum);
+001C70 ED                MOV     A,R5
+001C71 5407              ANL     A,#07H
+001C73 FD                MOV     R5,A
+001C74 7401              MOV     A,#01H
+001C76 A805              MOV     R0,AR5
+001C78 08                INC     R0
+001C79 8002              SJMP    ?C0095?KEYSCAN
+001C7B         ?C0094?KEYSCAN:
+001C7B C3                CLR     C
+001C7C 33                RLC     A
+001C7D         ?C0095?KEYSCAN:
+001C7D D8FC              DJNZ    R0,?C0094?KEYSCAN
+001C7F FD                MOV     R5,A
+  273: 	}
+001C80 EE                MOV     A,R6
+001C81 2478              ADD     A,#078H
+001C83 FB                MOV     R3,A
+001C84 E4                CLR     A
+001C85 3480              ADDC    A,#080H
+001C87 8B82              MOV     DPL,R3
+001C89 F583              MOV     DPH,A
+001C8B E0                MOVX    A,@DPTR
+001C8C FC                MOV     R4,A
+001C8D ED                MOV     A,R5
+001C8E F4                CPL     A
+001C8F FB                MOV     R3,A
+001C90 EC                MOV     A,R4
+001C91 5B                ANL     A,R3
+001C92 F0                MOVX    @DPTR,A
+001C93 EE                MOV     A,R6
+001C94 2470              ADD     A,#070H
+001C96 F582              MOV     DPL,A
+001C98 E4                CLR     A
+001C99 3480              ADDC    A,#080H
+001C9B F583              MOV     DPH,A
+001C9D E0                MOVX    A,@DPTR
+001C9E 4D                ORL     A,R5
+001C9F F0                MOVX    @DPTR,A
+001CA0 EE                MOV     A,R6
+001CA1 2474              ADD     A,#074H
+001CA3 F582              MOV     DPL,A
+001CA5 E4                CLR     A
+001CA6 3480              ADDC    A,#080H
+001CA8 F583              MOV     DPH,A
+001CAA E0                MOVX    A,@DPTR
+001CAB 5B                ANL     A,R3
+001CAC F0                MOVX    @DPTR,A
+001CAD 90811C            MOV     DPTR,#0811CH
+001CB0 E0                MOVX    A,@DPTR
+001CB1 F4                CPL     A
+001CB2 FC                MOV     R4,A
+001CB3 74BC              MOV     A,#LOW ksSelMapCurr
+001CB5 2F                ADD     A,R7
+001CB6 F582              MOV     DPL,A
+001CB8 E4                CLR     A
+001CB9 344D              ADDC    A,#HIGH ksSelMapCurr
+001CBB F583              MOV     DPH,A
+001CBD EC                MOV     A,R4
+001CBE F0                MOVX    @DPTR,A
+001CBF EE                MOV     A,R6
+001CC0 2478              ADD     A,#078H
+001CC2 FB                MOV     R3,A
+001CC3 E4                CLR     A
+001CC4 3480              ADDC    A,#080H
+001CC6 8B82              MOV     DPL,R3
+001CC8 F583              MOV     DPH,A
+001CCA E0                MOVX    A,@DPTR
+001CCB 4D                ORL     A,R5
+001CCC F0                MOVX    @DPTR,A
+001CCD EE                MOV     A,R6
+001CCE 2470              ADD     A,#070H
+001CD0 FB                MOV     R3,A
+001CD1 E4                CLR     A
+001CD2 3480              ADDC    A,#080H
+001CD4 8B82              MOV     DPL,R3
+001CD6 F583              MOV     DPH,A
+001CD8 E0                MOVX    A,@DPTR
+001CD9 FC                MOV     R4,A
+001CDA ED                MOV     A,R5
+001CDB F4                CPL     A
+001CDC FB                MOV     R3,A
+001CDD EC                MOV     A,R4
+001CDE 5B                ANL     A,R3
+001CDF F0                MOVX    @DPTR,A
+  274: 
+001CE0 0F                INC     R7
+001CE1 8160              AJMP    ?C0045?KEYSCAN
+001CE3         ?C0046?KEYSCAN:
+  275: 	for (i=0; col[i]!=0; i++) {
+001CE3 E4                CLR     A
+001CE4 FF                MOV     R7,A
+001CE5         ?C0048?KEYSCAN:
+001CE5 EF                MOV     A,R7
+001CE6 90060C            MOV     DPTR,#col
+001CE9 93                MOVC    A,@A+DPTR
+001CEA 607C              JZ      ?C0049?KEYSCAN
+  276: 		tgroup = col[i]  >> 3;
+001CEC EF                MOV     A,R7
+001CED 93                MOVC    A,@A+DPTR
+001CEE FD                MOV     R5,A
+001CEF 13                RRC     A
+001CF0 13                RRC     A
+001CF1 13                RRC     A
+001CF2 541F              ANL     A,#01FH
+001CF4 FE                MOV     R6,A
+  277: 		tgpionum = 1 << (col[i] & 7);
+001CF5 ED                MOV     A,R5
+001CF6 5407              ANL     A,#07H
+001CF8 FD                MOV     R5,A
+001CF9 7401              MOV     A,#01H
+001CFB A805              MOV     R0,AR5
+001CFD 08                INC     R0
+001CFE 8002              SJMP    ?C0097?KEYSCAN
+001D00         ?C0096?KEYSCAN:
+001D00 C3                CLR     C
+001D01 33                RLC     A
+001D02         ?C0097?KEYSCAN:
+001D02 D8FC              DJNZ    R0,?C0096?KEYSCAN
+001D04 FD                MOV     R5,A
+  278: 		GET_RAW_KEY_SEL(ksSelMapCheck[i], tgroup, tgpionum);
+001D05 EE                MOV     A,R6
+001D06 2478              ADD     A,#078H
+001D08 FB                MOV     R3,A
+001D09 E4                CLR     A
+001D0A 3480              ADDC    A,#080H
+001D0C 8B82              MOV     DPL,R3
+001D0E F583              MOV     DPH,A
+001D10 E0                MOVX    A,@DPTR
+001D11 FC                MOV     R4,A
+001D12 ED                MOV     A,R5
+001D13 F4                CPL     A
+001D14 FB                MOV     R3,A
+001D15 EC                MOV     A,R4
+001D16 5B                ANL     A,R3
+001D17 F0                MOVX    @DPTR,A
+001D18 EE                MOV     A,R6
+001D19 2470              ADD     A,#070H
+001D1B F582              MOV     DPL,A
+001D1D E4                CLR     A
+001D1E 3480              ADDC    A,#080H
+001D20 F583              MOV     DPH,A
+001D22 E0                MOVX    A,@DPTR
+001D23 4D                ORL     A,R5
+001D24 F0                MOVX    @DPTR,A
+001D25 EE                MOV     A,R6
+001D26 2474              ADD     A,#074H
+001D28 F582              MOV     DPL,A
+001D2A E4                CLR     A
+001D2B 3480              ADDC    A,#080H
+001D2D F583              MOV     DPH,A
+001D2F E0                MOVX    A,@DPTR
+001D30 5B                ANL     A,R3
+001D31 F0                MOVX    @DPTR,A
+001D32 90811C            MOV     DPTR,#0811CH
+001D35 E0                MOVX    A,@DPTR
+001D36 F4                CPL     A
+001D37 FC                MOV     R4,A
+001D38 74A8              MOV     A,#LOW ksSelMapCheck
+001D3A 2F                ADD     A,R7
+001D3B F582              MOV     DPL,A
+001D3D E4                CLR     A
+001D3E 344D              ADDC    A,#HIGH ksSelMapCheck
+001D40 F583              MOV     DPH,A
+001D42 EC                MOV     A,R4
+001D43 F0                MOVX    @DPTR,A
+001D44 EE                MOV     A,R6
+001D45 2478              ADD     A,#078H
+001D47 FB                MOV     R3,A
+001D48 E4                CLR     A
+001D49 3480              ADDC    A,#080H
+001D4B 8B82              MOV     DPL,R3
+001D4D F583              MOV     DPH,A
+001D4F E0                MOVX    A,@DPTR
+001D50 4D                ORL     A,R5
+001D51 F0                MOVX    @DPTR,A
+001D52 EE                MOV     A,R6
+001D53 2470              ADD     A,#070H
+001D55 FB                MOV     R3,A
+001D56 E4                CLR     A
+001D57 3480              ADDC    A,#080H
+001D59 8B82              MOV     DPL,R3
+001D5B F583              MOV     DPH,A
+001D5D E0                MOVX    A,@DPTR
+001D5E FC                MOV     R4,A
+001D5F ED                MOV     A,R5
+001D60 F4                CPL     A
+001D61 FB                MOV     R3,A
+001D62 EC                MOV     A,R4
+001D63 5B                ANL     A,R3
+001D64 F0                MOVX    @DPTR,A
+  279: 	}
+001D65 0F                INC     R7
+001D66 81E5              AJMP    ?C0048?KEYSCAN
+001D68         ?C0049?KEYSCAN:
+  280: 
+  281: 	for (i=0; col[i]!=0; i++) {
+001D68 E4                CLR     A
+001D69 FF                MOV     R7,A
+001D6A         ?C0051?KEYSCAN:
+001D6A EF                MOV     A,R7
+001D6B 90060C            MOV     DPTR,#col
+001D6E 93                MOVC    A,@A+DPTR
+001D6F 6040              JZ      ?C0055?KEYSCAN
+  282: 		if (ksSelMapCheck[i]!=ksSelMapCurr[i]) {
+001D71 74BC              MOV     A,#LOW ksSelMapCurr
+001D73 2F                ADD     A,R7
+001D74 F582              MOV     DPL,A
+001D76 E4                CLR     A
+001D77 344D              ADDC    A,#HIGH ksSelMapCurr
+001D79 F583              MOV     DPH,A
+001D7B E0                MOVX    A,@DPTR
+001D7C FE                MOV     R6,A
+001D7D 74A8              MOV     A,#LOW ksSelMapCheck
+001D7F 2F                ADD     A,R7
+001D80 F582              MOV     DPL,A
+001D82 E4                CLR     A
+001D83 344D              ADDC    A,#HIGH ksSelMapCheck
+001D85 F583              MOV     DPH,A
+001D87 E0                MOVX    A,@DPTR
+001D88 6E                XRL     A,R6
+001D89 6023              JZ      ?C0053?KEYSCAN
+  283: 			ksSelMapCurr[i] &= ksSelMapCheck[i];
+001D8B 74BC              MOV     A,#LOW ksSelMapCurr
+001D8D 2F                ADD     A,R7
+001D8E F582              MOV     DPL,A
+001D90 E4                CLR     A
+001D91 344D              ADDC    A,#HIGH ksSelMapCurr
+001D93 F583              MOV     DPH,A
+001D95 C083              PUSH    DPH
+001D97 C082              PUSH    DPL
+001D99 E0                MOVX    A,@DPTR
+001D9A FE                MOV     R6,A
+001D9B 74A8              MOV     A,#LOW ksSelMapCheck
+001D9D 2F                ADD     A,R7
+001D9E F582              MOV     DPL,A
+001DA0 E4                CLR     A
+001DA1 344D              ADDC    A,#HIGH ksSelMapCheck
+001DA3 F583              MOV     DPH,A
+001DA5 E0                MOVX    A,@DPTR
+001DA6 FD                MOV     R5,A
+001DA7 EE                MOV     A,R6
+001DA8 5D                ANL     A,R5
+001DA9 D082              POP     DPL
+001DAB D083              POP     DPH
+001DAD F0                MOVX    @DPTR,A
+  284: 		}
+  285: 	}
+001DAE         ?C0053?KEYSCAN:
+001DAE 0F                INC     R7
+001DAF 80B9              SJMP    ?C0051?KEYSCAN
+  286: }
+001DB1         ?C0055?KEYSCAN:
+001DB1 22                RET     
 ----- FUNCTION KS_ScanMatrix (END) -------
 
 
------ FUNCTION _kb_multikey_setup (BEGIN) -----
- FILE: 'kb_process.c'
-  433: void kb_multikey_setup(tKSEVENT *pEvt)
-  434: {
-001ED3 904E65            MOV     DPTR,#pEvt
-001ED6 EB                MOV     A,R3
-001ED7 F0                MOVX    @DPTR,A
-001ED8 A3                INC     DPTR
-001ED9 EA                MOV     A,R2
-001EDA F0                MOVX    @DPTR,A
-001EDB A3                INC     DPTR
-001EDC E9                MOV     A,R1
-001EDD F0                MOVX    @DPTR,A
-  435: 	byte i = 0;
-  436: 	
-001EDE E4                CLR     A
-001EDF A3                INC     DPTR
-001EE0 F0                MOVX    @DPTR,A
-  437: 	for (i = 0;i < 6;i++)
-001EE1 F0                MOVX    @DPTR,A
-001EE2         ?C0099?KB_PROCESS:
-001EE2 904E68            MOV     DPTR,#i
-001EE5 E0                MOVX    A,@DPTR
-001EE6 FF                MOV     R7,A
-001EE7 C3                CLR     C
-001EE8 9406              SUBB    A,#06H
-001EEA 4003              JC      $ + 5H
-001EEC 02214E            LJMP    ?C0144?KB_PROCESS
-  438: 	{		
-  439: 		if ((pEvt->ksPool[i] &0xF0) == 0xf0 
-001EEF 904E65            MOV     DPTR,#pEvt
-001EF2 E0                MOVX    A,@DPTR
-001EF3 FB                MOV     R3,A
-001EF4 A3                INC     DPTR
-001EF5 E0                MOVX    A,@DPTR
-001EF6 FA                MOV     R2,A
-001EF7 A3                INC     DPTR
-001EF8 E0                MOVX    A,@DPTR
-001EF9 2401              ADD     A,#01H
-001EFB F9                MOV     R1,A
-001EFC E4                CLR     A
-001EFD 3A                ADDC    A,R2
-001EFE FA                MOV     R2,A
-001EFF 7E00              MOV     R6,#00H
-001F01 E9                MOV     A,R1
-001F02 2F                ADD     A,R7
-001F03 F9                MOV     R1,A
-001F04 EE                MOV     A,R6
-001F05 3A                ADDC    A,R2
-001F06 FA                MOV     R2,A
-001F07 1203B6            LCALL   ?C?CLDPTR
-001F0A FF                MOV     R7,A
-001F0B 54F0              ANL     A,#0F0H
-001F0D 64F0              XRL     A,#0F0H
-001F0F 600A              JZ      ?C0103?KB_PROCESS
-001F11 EF                MOV     A,R7
-001F12 54D0              ANL     A,#0D0H
-001F14 64D0              XRL     A,#0D0H
-001F16 6003              JZ      $ + 5H
-001F18 022145            LJMP    ?C0101?KB_PROCESS
-001F1B         ?C0103?KB_PROCESS:
-  440: 			|| (pEvt->ksPool[i] &0xD0) == 0xD0)
-  441: 		{
-  442: 			if (pEvt->ksPool[i] ==  HID_MULTIKEY_MEDIA) //media select
-001F1B 1203B6            LCALL   ?C?CLDPTR
-001F1E FB                MOV     R3,A
-001F1F B4F10A            CJNE    A,#0F1H,?C0104?KB_PROCESS
-  443: 			{
-  444: 				kb_set_multikey(0x0183); 
-001F22 7F83              MOV     R7,#083H
-001F24 7E01              MOV     R6,#01H
-001F26 1217D7            LCALL   _kb_set_multikey
-  445: 			}
-001F29 02211A            LJMP    ?C0105?KB_PROCESS
-001F2C         ?C0104?KB_PROCESS:
-  446: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_PALY) //play / pause
-001F2C EB                MOV     A,R3
-001F2D B4F20A            CJNE    A,#0F2H,?C0106?KB_PROCESS
-  447: 			{ 
-  448: 				kb_set_multikey(0x00cd);
-001F30 7FCD              MOV     R7,#0CDH
-001F32 7E00              MOV     R6,#00H
-001F34 1217D7            LCALL   _kb_set_multikey
-  449: 			}
-001F37 02211A            LJMP    ?C0105?KB_PROCESS
-001F3A         ?C0106?KB_PROCESS:
-  450: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_STOP)  //stop
-001F3A 904E65            MOV     DPTR,#pEvt
-001F3D E0                MOVX    A,@DPTR
-001F3E FB                MOV     R3,A
-001F3F A3                INC     DPTR
-001F40 E0                MOVX    A,@DPTR
-001F41 FA                MOV     R2,A
-001F42 A3                INC     DPTR
-001F43 E0                MOVX    A,@DPTR
-001F44 2401              ADD     A,#01H
-001F46 F9                MOV     R1,A
-001F47 E4                CLR     A
-001F48 3A                ADDC    A,R2
-001F49 FA                MOV     R2,A
-001F4A A3                INC     DPTR
-001F4B E0                MOVX    A,@DPTR
-001F4C 7E00              MOV     R6,#00H
-001F4E 29                ADD     A,R1
-001F4F F9                MOV     R1,A
-001F50 EE                MOV     A,R6
-001F51 3A                ADDC    A,R2
-001F52 FA                MOV     R2,A
-001F53 1203B6            LCALL   ?C?CLDPTR
-001F56 FB                MOV     R3,A
-001F57 B4F308            CJNE    A,#0F3H,?C0108?KB_PROCESS
-  451: 			{
-  452: 				kb_set_multikey(0x00b7);
-001F5A 7FB7              MOV     R7,#0B7H
-001F5C 1217D7            LCALL   _kb_set_multikey
-  453: 			}
-001F5F 02211A            LJMP    ?C0105?KB_PROCESS
-001F62         ?C0108?KB_PROCESS:
-  454: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_PRE_TRACK) //pre Track
-001F62 EB                MOV     A,R3
-001F63 B4F40A            CJNE    A,#0F4H,?C0110?KB_PROCESS
-  455: 			{
-  456: 				kb_set_multikey(0x00b6);
-001F66 7FB6              MOV     R7,#0B6H
-001F68 7E00              MOV     R6,#00H
-001F6A 1217D7            LCALL   _kb_set_multikey
-  457: 			}
-001F6D 02211A            LJMP    ?C0105?KB_PROCESS
-001F70         ?C0110?KB_PROCESS:
-  458: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_NEXT_TRACK) //next Track
-001F70 904E65            MOV     DPTR,#pEvt
-001F73 E0                MOVX    A,@DPTR
-001F74 FB                MOV     R3,A
-001F75 A3                INC     DPTR
-001F76 E0                MOVX    A,@DPTR
-001F77 FA                MOV     R2,A
-001F78 A3                INC     DPTR
-001F79 E0                MOVX    A,@DPTR
-001F7A 2401              ADD     A,#01H
-001F7C F9                MOV     R1,A
-001F7D E4                CLR     A
-001F7E 3A                ADDC    A,R2
-001F7F FA                MOV     R2,A
-001F80 A3                INC     DPTR
-001F81 E0                MOVX    A,@DPTR
-001F82 7E00              MOV     R6,#00H
-001F84 29                ADD     A,R1
-001F85 F9                MOV     R1,A
-001F86 EE                MOV     A,R6
-001F87 3A                ADDC    A,R2
-001F88 FA                MOV     R2,A
-001F89 1203B6            LCALL   ?C?CLDPTR
-001F8C FB                MOV     R3,A
-001F8D B4F508            CJNE    A,#0F5H,?C0112?KB_PROCESS
-  459: 			{
-  460: 				kb_set_multikey(0x00b5);
-001F90 7FB5              MOV     R7,#0B5H
-001F92 1217D7            LCALL   _kb_set_multikey
-  461: 			}
-001F95 02211A            LJMP    ?C0105?KB_PROCESS
-001F98         ?C0112?KB_PROCESS:
-  462: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_VOL_DOWN) //vol-
-001F98 EB                MOV     A,R3
-001F99 B4F60A            CJNE    A,#0F6H,?C0114?KB_PROCESS
-  463: 			{
-  464: 				kb_set_multikey(0x00ea);
-001F9C 7FEA              MOV     R7,#0EAH
-001F9E 7E00              MOV     R6,#00H
-001FA0 1217D7            LCALL   _kb_set_multikey
-  465: 			}
-001FA3 02211A            LJMP    ?C0105?KB_PROCESS
-001FA6         ?C0114?KB_PROCESS:
-  466: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_VOL_UP) //vol+
-001FA6 904E65            MOV     DPTR,#pEvt
-001FA9 E0                MOVX    A,@DPTR
-001FAA FB                MOV     R3,A
-001FAB A3                INC     DPTR
-001FAC E0                MOVX    A,@DPTR
-001FAD FA                MOV     R2,A
-001FAE A3                INC     DPTR
-001FAF E0                MOVX    A,@DPTR
-001FB0 2401              ADD     A,#01H
-001FB2 F9                MOV     R1,A
-001FB3 E4                CLR     A
-001FB4 3A                ADDC    A,R2
-001FB5 FA                MOV     R2,A
-001FB6 A3                INC     DPTR
-001FB7 E0                MOVX    A,@DPTR
-001FB8 7E00              MOV     R6,#00H
-001FBA 29                ADD     A,R1
-001FBB F9                MOV     R1,A
-001FBC EE                MOV     A,R6
-001FBD 3A                ADDC    A,R2
-001FBE FA                MOV     R2,A
-001FBF 1203B6            LCALL   ?C?CLDPTR
-001FC2 FB                MOV     R3,A
-001FC3 B4F708            CJNE    A,#0F7H,?C0116?KB_PROCESS
-  467: 			{
-  468: 				kb_set_multikey(0x00e9);
-001FC6 7FE9              MOV     R7,#0E9H
-001FC8 1217D7            LCALL   _kb_set_multikey
-  469: 			}
-001FCB 02211A            LJMP    ?C0105?KB_PROCESS
-001FCE         ?C0116?KB_PROCESS:
-  470: 			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_MUTE) //mute
-001FCE EB                MOV     A,R3
-001FCF B4F80A            CJNE    A,#0F8H,?C0118?KB_PROCESS
-  471: 			{
-  472: 				kb_set_multikey(0x00e2);
-001FD2 7FE2              MOV     R7,#0E2H
-001FD4 7E00              MOV     R6,#00H
-001FD6 1217D7            LCALL   _kb_set_multikey
-  473: 			}
-001FD9 02211A            LJMP    ?C0105?KB_PROCESS
-001FDC         ?C0118?KB_PROCESS:
-  474: 			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_MY_COMPUTER) 
-001FDC 904E65            MOV     DPTR,#pEvt
-001FDF E0                MOVX    A,@DPTR
-001FE0 FB                MOV     R3,A
-001FE1 A3                INC     DPTR
-001FE2 E0                MOVX    A,@DPTR
-001FE3 FA                MOV     R2,A
-001FE4 A3                INC     DPTR
-001FE5 E0                MOVX    A,@DPTR
-001FE6 2401              ADD     A,#01H
-001FE8 F9                MOV     R1,A
-001FE9 E4                CLR     A
-001FEA 3A                ADDC    A,R2
-001FEB FA                MOV     R2,A
-001FEC A3                INC     DPTR
-001FED E0                MOVX    A,@DPTR
-001FEE 7E00              MOV     R6,#00H
-001FF0 29                ADD     A,R1
-001FF1 F9                MOV     R1,A
-001FF2 EE                MOV     A,R6
-001FF3 3A                ADDC    A,R2
-001FF4 FA                MOV     R2,A
-001FF5 1203B6            LCALL   ?C?CLDPTR
-001FF8 FB                MOV     R3,A
-001FF9 B4F908            CJNE    A,#0F9H,?C0120?KB_PROCESS
-  475: 			{
-  476: 				kb_set_multikey(0x0194);
-001FFC 7F94              MOV     R7,#094H
-001FFE 0E                INC     R6
-001FFF 1217D7            LCALL   _kb_set_multikey
-  477: 			}
-002002 211A              AJMP    ?C0105?KB_PROCESS
-002004         ?C0120?KB_PROCESS:
-  478: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_MAIL)  //mail
-002004 EB                MOV     A,R3
-002005 B4FA09            CJNE    A,#0FAH,?C0122?KB_PROCESS
-  479: 			{
-  480: 				kb_set_multikey(0x018a);//mail
-002008 7F8A              MOV     R7,#08AH
-00200A 7E01              MOV     R6,#01H
-00200C 1217D7            LCALL   _kb_set_multikey
-  481: 			}
-00200F 211A              AJMP    ?C0105?KB_PROCESS
-002011         ?C0122?KB_PROCESS:
-  482: 			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_CALCULATOR) //calculator
-002011 904E65            MOV     DPTR,#pEvt
-002014 E0                MOVX    A,@DPTR
-002015 FB                MOV     R3,A
-002016 A3                INC     DPTR
-002017 E0                MOVX    A,@DPTR
-002018 FA                MOV     R2,A
-002019 A3                INC     DPTR
-00201A E0                MOVX    A,@DPTR
-00201B 2401              ADD     A,#01H
-00201D F9                MOV     R1,A
-00201E E4                CLR     A
-00201F 3A                ADDC    A,R2
-002020 FA                MOV     R2,A
-002021 A3                INC     DPTR
-002022 E0                MOVX    A,@DPTR
-002023 7E00              MOV     R6,#00H
-002025 29                ADD     A,R1
-002026 F9                MOV     R1,A
-002027 EE                MOV     A,R6
-002028 3A                ADDC    A,R2
-002029 FA                MOV     R2,A
-00202A 1203B6            LCALL   ?C?CLDPTR
-00202D FB                MOV     R3,A
-00202E B4FB08            CJNE    A,#0FBH,?C0124?KB_PROCESS
-  483: 			{
-  484: 				kb_set_multikey(0x0192);
-002031 7F92              MOV     R7,#092H
-002033 0E                INC     R6
-002034 1217D7            LCALL   _kb_set_multikey
-  485: 			}
-002037 211A              AJMP    ?C0105?KB_PROCESS
-002039         ?C0124?KB_PROCESS:
-  486: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_FAVORITES) 
-002039 EB                MOV     A,R3
-00203A B4D009            CJNE    A,#0D0H,?C0126?KB_PROCESS
-  487: 			{
-  488: 				kb_set_multikey(0x022a);//www Favorites
-00203D 7F2A              MOV     R7,#02AH
-00203F 7E02              MOV     R6,#02H
-002041 1217D7            LCALL   _kb_set_multikey
-  489: 			}
-002044 211A              AJMP    ?C0105?KB_PROCESS
-002046         ?C0126?KB_PROCESS:
-  490: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_FORWARD)  
-002046 904E65            MOV     DPTR,#pEvt
-002049 E0                MOVX    A,@DPTR
-00204A FB                MOV     R3,A
-00204B A3                INC     DPTR
-00204C E0                MOVX    A,@DPTR
-00204D FA                MOV     R2,A
-00204E A3                INC     DPTR
-00204F E0                MOVX    A,@DPTR
-002050 2401              ADD     A,#01H
-002052 F9                MOV     R1,A
-002053 E4                CLR     A
-002054 3A                ADDC    A,R2
-002055 FA                MOV     R2,A
-002056 A3                INC     DPTR
-002057 E0                MOVX    A,@DPTR
-002058 7E00              MOV     R6,#00H
-00205A 29                ADD     A,R1
-00205B F9                MOV     R1,A
-00205C EE                MOV     A,R6
-00205D 3A                ADDC    A,R2
-00205E FA                MOV     R2,A
-00205F 1203B6            LCALL   ?C?CLDPTR
-002062 FB                MOV     R3,A
-002063 B4D109            CJNE    A,#0D1H,?C0128?KB_PROCESS
-  491: 			{
-  492: 				kb_set_multikey(0x0225);
-002066 7F25              MOV     R7,#025H
-002068 7E02              MOV     R6,#02H
-00206A 1217D7            LCALL   _kb_set_multikey
-  493: 			}
-00206D 211A              AJMP    ?C0105?KB_PROCESS
-00206F         ?C0128?KB_PROCESS:
-  494: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_STOP)  //www Stop
-00206F EB                MOV     A,R3
-002070 B4D309            CJNE    A,#0D3H,?C0130?KB_PROCESS
-  495: 			{
-  496: 				kb_set_multikey(0x0226);
-002073 7F26              MOV     R7,#026H
-002075 7E02              MOV     R6,#02H
-002077 1217D7            LCALL   _kb_set_multikey
-  497: 			}
-00207A 211A              AJMP    ?C0105?KB_PROCESS
-00207C         ?C0130?KB_PROCESS:
-  498: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_BACK)  
-00207C 904E65            MOV     DPTR,#pEvt
-00207F E0                MOVX    A,@DPTR
-002080 FB                MOV     R3,A
-002081 A3                INC     DPTR
-002082 E0                MOVX    A,@DPTR
-002083 FA                MOV     R2,A
-002084 A3                INC     DPTR
-002085 E0                MOVX    A,@DPTR
-002086 2401              ADD     A,#01H
-002088 F9                MOV     R1,A
-002089 E4                CLR     A
-00208A 3A                ADDC    A,R2
-00208B FA                MOV     R2,A
-00208C A3                INC     DPTR
-00208D E0                MOVX    A,@DPTR
-00208E 7E00              MOV     R6,#00H
-002090 29                ADD     A,R1
-002091 F9                MOV     R1,A
-002092 EE                MOV     A,R6
-002093 3A                ADDC    A,R2
-002094 FA                MOV     R2,A
-002095 1203B6            LCALL   ?C?CLDPTR
-002098 FB                MOV     R3,A
-002099 B4D209            CJNE    A,#0D2H,?C0132?KB_PROCESS
-  499: 			{
-  500: 				kb_set_multikey(0x0224);
-00209C 7F24              MOV     R7,#024H
-00209E 7E02              MOV     R6,#02H
-0020A0 1217D7            LCALL   _kb_set_multikey
-  501: 			}
-0020A3 8075              SJMP    ?C0105?KB_PROCESS
-0020A5         ?C0132?KB_PROCESS:
-  502: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_REFRESH) //www refresh
-0020A5 EB                MOV     A,R3
-0020A6 B4D409            CJNE    A,#0D4H,?C0134?KB_PROCESS
-  503: 			{
-  504: 				kb_set_multikey(0x0227);
-0020A9 7F27              MOV     R7,#027H
-0020AB 7E02              MOV     R6,#02H
-0020AD 1217D7            LCALL   _kb_set_multikey
-  505: 			}
-0020B0 8068              SJMP    ?C0105?KB_PROCESS
-0020B2         ?C0134?KB_PROCESS:
-  506: 			
-  507: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_SEARCH)  //www search
-0020B2 904E65            MOV     DPTR,#pEvt
-0020B5 E0                MOVX    A,@DPTR
-0020B6 FB                MOV     R3,A
-0020B7 A3                INC     DPTR
-0020B8 E0                MOVX    A,@DPTR
-0020B9 FA                MOV     R2,A
-0020BA A3                INC     DPTR
-0020BB E0                MOVX    A,@DPTR
-0020BC 2401              ADD     A,#01H
-0020BE F9                MOV     R1,A
-0020BF E4                CLR     A
-0020C0 3A                ADDC    A,R2
-0020C1 FA                MOV     R2,A
-0020C2 A3                INC     DPTR
-0020C3 E0                MOVX    A,@DPTR
-0020C4 7E00              MOV     R6,#00H
-0020C6 29                ADD     A,R1
-0020C7 F9                MOV     R1,A
-0020C8 EE                MOV     A,R6
-0020C9 3A                ADDC    A,R2
-0020CA FA                MOV     R2,A
-0020CB 1203B6            LCALL   ?C?CLDPTR
-0020CE FB                MOV     R3,A
-0020CF B4D509            CJNE    A,#0D5H,?C0136?KB_PROCESS
-  508: 			{
-  509: 				kb_set_multikey(0x0221);
-0020D2 7F21              MOV     R7,#021H
-0020D4 7E02              MOV     R6,#02H
-0020D6 1217D7            LCALL   _kb_set_multikey
-  510: 			}
-0020D9 803F              SJMP    ?C0105?KB_PROCESS
-0020DB         ?C0136?KB_PROCESS:
-  511: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_HOME)
-0020DB EB                MOV     A,R3
-0020DC B4D609            CJNE    A,#0D6H,?C0138?KB_PROCESS
-  512: 			{
-  513: 				kb_set_multikey(0x0223);
-0020DF 7F23              MOV     R7,#023H
-0020E1 7E02              MOV     R6,#02H
-0020E3 1217D7            LCALL   _kb_set_multikey
-  514: 			}
-0020E6 8032              SJMP    ?C0105?KB_PROCESS
-0020E8         ?C0138?KB_PROCESS:
-  515: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_LIGHT_DOWN)
-0020E8 904E65            MOV     DPTR,#pEvt
-0020EB E0                MOVX    A,@DPTR
-0020EC FB                MOV     R3,A
-0020ED A3                INC     DPTR
-0020EE E0                MOVX    A,@DPTR
-0020EF FA                MOV     R2,A
-0020F0 A3                INC     DPTR
-0020F1 E0                MOVX    A,@DPTR
-0020F2 2401              ADD     A,#01H
-0020F4 F9                MOV     R1,A
-0020F5 E4                CLR     A
-0020F6 3A                ADDC    A,R2
-0020F7 FA                MOV     R2,A
-0020F8 A3                INC     DPTR
-0020F9 E0                MOVX    A,@DPTR
-0020FA 7E00              MOV     R6,#00H
-0020FC 29                ADD     A,R1
-0020FD F9                MOV     R1,A
-0020FE EE                MOV     A,R6
-0020FF 3A                ADDC    A,R2
-002100 FA                MOV     R2,A
-002101 1203B6            LCALL   ?C?CLDPTR
-002104 FB                MOV     R3,A
-002105 B4D707            CJNE    A,#0D7H,?C0140?KB_PROCESS
-  516: 			{
-  517: 				kb_set_multikey(0x0070);
-002108 7F70              MOV     R7,#070H
-00210A 1217D7            LCALL   _kb_set_multikey
-  518: 			}
-00210D 800B              SJMP    ?C0105?KB_PROCESS
-00210F         ?C0140?KB_PROCESS:
-  519: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_LIGHT_UP)
-00210F EB                MOV     A,R3
-002110 B4D807            CJNE    A,#0D8H,?C0105?KB_PROCESS
-  520: 			{
-  521: 				kb_set_multikey(0x006f);
-002113 7F6F              MOV     R7,#06FH
-002115 7E00              MOV     R6,#00H
-002117 1217D7            LCALL   _kb_set_multikey
-  522: 			}
-00211A         ?C0105?KB_PROCESS:
-  523: 			
-  524: 			if(mult_key_status == KEY_WAIT_RELEASE)
-00211A 904DE4            MOV     DPTR,#mult_key_status
-00211D E0                MOVX    A,@DPTR
-00211E B40224            CJNE    A,#02H,?C0101?KB_PROCESS
-  525: 			{
-  526: 				mult_key_value = pEvt->ksPool[i];
-002121 904E65            MOV     DPTR,#pEvt
-002124 E0                MOVX    A,@DPTR
-002125 FB                MOV     R3,A
-002126 A3                INC     DPTR
-002127 E0                MOVX    A,@DPTR
-002128 FA                MOV     R2,A
-002129 A3                INC     DPTR
-00212A E0                MOVX    A,@DPTR
-00212B 2401              ADD     A,#01H
-00212D F9                MOV     R1,A
-00212E E4                CLR     A
-00212F 3A                ADDC    A,R2
-002130 FA                MOV     R2,A
-002131 A3                INC     DPTR
-002132 E0                MOVX    A,@DPTR
-002133 7E00              MOV     R6,#00H
-002135 29                ADD     A,R1
-002136 F9                MOV     R1,A
-002137 EE                MOV     A,R6
-002138 3A                ADDC    A,R2
-002139 FA                MOV     R2,A
-00213A 1203B6            LCALL   ?C?CLDPTR
-00213D 904DE3            MOV     DPTR,#mult_key_value
-002140 F0                MOVX    @DPTR,A
-  527: 				pEvt->ksPool[i] = 0;
-002141 E4                CLR     A
-002142 1203FC            LCALL   ?C?CSTPTR
-  528: 			}
-  529: 		}
-  530: 	}
-002145         ?C0101?KB_PROCESS:
-002145 904E68            MOV     DPTR,#i
-002148 E0                MOVX    A,@DPTR
-002149 04                INC     A
-00214A F0                MOVX    @DPTR,A
-00214B 021EE2            LJMP    ?C0099?KB_PROCESS
-  531: }
-00214E         ?C0144?KB_PROCESS:
-00214E 22                RET     
------ FUNCTION _kb_multikey_setup (END) -------
-
-
------ FUNCTION System_Software_init (BEGIN) -----
- FILE: 'sys.c'
-   48: void System_Software_init()
-   49: {
-   50: 	System_clear_mem();
-   51: 	YC_adc_init();
-00214F 120EDF            LCALL   System_clear_mem
-   52: 	g_variable.release_data =1;
-002152 316C              ACALL   YC_adc_init
-   53: 	g_variable.powerOn_timer = KB_POWERON_LED_ON_TIMER;
-002154 904CEB            MOV     DPTR,#g_variable+02CH
-002157 7401              MOV     A,#01H
-002159 F0                MOVX    @DPTR,A
-   54: 	g_variable.recon_count = 0;
-00215A 904CE5            MOV     DPTR,#g_variable+026H
-00215D 741E              MOV     A,#01EH
-00215F F0                MOVX    @DPTR,A
-   55: 	g_variable.test_buff = 0xff;
-002160 E4                CLR     A
-002161 904CF0            MOV     DPTR,#g_variable+031H
-002164 F0                MOVX    @DPTR,A
-   56: }
-002165 904D00            MOV     DPTR,#g_variable+041H
-002168 74FF              MOV     A,#0FFH
-00216A F0                MOVX    @DPTR,A
-   57: 
-00216B 22                RET     
------ FUNCTION System_Software_init (END) -------
-
-
------ FUNCTION YC_adc_init (BEGIN) -----
- FILE: 'adc.c'
-    3: void YC_adc_init()
-    4: {
-    5: 	byte i;
-    6: 	#ifndef  ADC_ENABLE
-    7: 		return;
-    8: 	#endif	
-    9: 	m_adc_channel = ADC_CHANNEL;
-00216C 904C90            MOV     DPTR,#m_adc_channel
-00216F 7437              MOV     A,#037H
-002171 F0                MOVX    @DPTR,A
-   10: 	g_variable.battery_check_interval = BATTERY_CHECK_INTERVAL;
-002172 904CD3            MOV     DPTR,#g_variable+014H
-002175 7405              MOV     A,#05H
-002177 F0                MOVX    @DPTR,A
-   11: 	g_variable.battery_value_index = 0;
-002178 E4                CLR     A
-002179 A3                INC     DPTR
-00217A F0                MOVX    @DPTR,A
-   12: 	for (i = 0; i < BAT_ARRAY_LEN; i++)
-;---- Variable 'i' assigned to Register 'R7' ----
-00217B FF                MOV     R7,A
-00217C         ?C0001?ADC:
-   13: 	{
-   14: 		g_variable.battery_value[i] = INIT_BATTERY_VALUE;
-00217C EF                MOV     A,R7
-00217D 25E0              ADD     A,ACC
-00217F 24D6              ADD     A,#LOW g_variable+017H
-002181 F582              MOV     DPL,A
-002183 E4                CLR     A
-002184 344C              ADDC    A,#HIGH g_variable+017H
-002186 F583              MOV     DPH,A
-002188 7479              MOV     A,#079H
-00218A F0                MOVX    @DPTR,A
-00218B A3                INC     DPTR
-00218C 7490              MOV     A,#090H
-00218E F0                MOVX    @DPTR,A
-   15: 	}
-00218F 0F                INC     R7
-002190 EF                MOV     A,R7
-002191 B404E8            CJNE    A,#04H,?C0001?ADC
-002194         ?C0002?ADC:
-   16: 
-   17: 	
-   18: 	if(m_adc_config_flag == ADC_TYPE_HVIN)
-002194 904C8F            MOV     DPTR,#m_adc_config_flag
-002197 E0                MOVX    A,@DPTR
-002198 6402              XRL     A,#02H
-00219A 6002              JZ      $ + 4H
-00219C 413B              AJMP    ?C0004?ADC
-   19: 	{
-   20: 		g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V2+m_adc0vBase;
-00219E 904C91            MOV     DPTR,#m_adc0vBase
-0021A1 E0                MOVX    A,@DPTR
-0021A2 FE                MOV     R6,A
-0021A3 A3                INC     DPTR
-0021A4 E0                MOVX    A,@DPTR
-0021A5 FF                MOV     R7,A
-0021A6 C3                CLR     C
-0021A7 904C94            MOV     DPTR,#m_adc3vValue+01H
-0021AA E0                MOVX    A,@DPTR
-0021AB 9F                SUBB    A,R7
-0021AC FD                MOV     R5,A
-0021AD 904C93            MOV     DPTR,#m_adc3vValue
-0021B0 E0                MOVX    A,@DPTR
-0021B1 9E                SUBB    A,R6
-0021B2 FC                MOV     R4,A
-0021B3 E4                CLR     A
-0021B4 120206            LCALL   ?C?FCASTI
-0021B7 7BC3              MOV     R3,#0C3H
-0021B9 7AF5              MOV     R2,#0F5H
-0021BB 7988              MOV     R1,#088H
-0021BD 783F              MOV     R0,#03FH
-0021BF 1200FB            LCALL   ?C?FPMUL
-0021C2 C004              PUSH    AR4
-0021C4 C005              PUSH    AR5
-0021C6 C006              PUSH    AR6
-0021C8 C007              PUSH    AR7
-0021CA 904C91            MOV     DPTR,#m_adc0vBase
-0021CD E0                MOVX    A,@DPTR
-0021CE FC                MOV     R4,A
-0021CF A3                INC     DPTR
-0021D0 E0                MOVX    A,@DPTR
-0021D1 FD                MOV     R5,A
-0021D2 E4                CLR     A
-0021D3 120206            LCALL   ?C?FCASTI
-0021D6 D003              POP     AR3
-0021D8 D002              POP     AR2
-0021DA D001              POP     AR1
-0021DC D000              POP     AR0
-0021DE 12000A            LCALL   ?C?FPADD
-0021E1 12023F            LCALL   ?C?CASTF
-0021E4 904CDE            MOV     DPTR,#g_variable+01FH
-0021E7 EE                MOV     A,R6
-0021E8 F0                MOVX    @DPTR,A
-0021E9 A3                INC     DPTR
-0021EA EF                MOV     A,R7
-0021EB F0                MOVX    @DPTR,A
-   21: 		g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V0+m_adc0vBase;
-0021EC 904C91            MOV     DPTR,#m_adc0vBase
-0021EF E0                MOVX    A,@DPTR
-0021F0 FE                MOV     R6,A
-0021F1 A3                INC     DPTR
-0021F2 E0                MOVX    A,@DPTR
-0021F3 FF                MOV     R7,A
-0021F4 C3                CLR     C
-0021F5 904C94            MOV     DPTR,#m_adc3vValue+01H
-0021F8 E0                MOVX    A,@DPTR
-0021F9 9F                SUBB    A,R7
-0021FA FD                MOV     R5,A
-0021FB 904C93            MOV     DPTR,#m_adc3vValue
-0021FE E0                MOVX    A,@DPTR
-0021FF 9E                SUBB    A,R6
-002200 FC                MOV     R4,A
-002201 E4                CLR     A
-002202 120206            LCALL   ?C?FCASTI
-002205 7BAE              MOV     R3,#0AEH
-002207 7A47              MOV     R2,#047H
-002209 7981              MOV     R1,#081H
-00220B 783F              MOV     R0,#03FH
-00220D 1200FB            LCALL   ?C?FPMUL
-002210 C004              PUSH    AR4
-002212 C005              PUSH    AR5
-002214 C006              PUSH    AR6
-002216 C007              PUSH    AR7
-002218 904C91            MOV     DPTR,#m_adc0vBase
-00221B E0                MOVX    A,@DPTR
-00221C FC                MOV     R4,A
-00221D A3                INC     DPTR
-00221E E0                MOVX    A,@DPTR
-00221F FD                MOV     R5,A
-002220 E4                CLR     A
-002221 120206            LCALL   ?C?FCASTI
-002224 D003              POP     AR3
-002226 D002              POP     AR2
-002228 D001              POP     AR1
-00222A D000              POP     AR0
-00222C 12000A            LCALL   ?C?FPADD
-00222F 12023F            LCALL   ?C?CASTF
-002232 904CE0            MOV     DPTR,#g_variable+021H
-002235 EE                MOV     A,R6
-002236 F0                MOVX    @DPTR,A
-002237 A3                INC     DPTR
-002238 EF                MOV     A,R7
-002239 F0                MOVX    @DPTR,A
-   22: 	}
-00223A 22                RET     
-00223B         ?C0004?ADC:
-   23: 	else if(m_adc_config_flag == ADC_TYPE_VINLPM)
-00223B 904C8F            MOV     DPTR,#m_adc_config_flag
-00223E E0                MOVX    A,@DPTR
-00223F 6401              XRL     A,#01H
-002241 7002              JNZ     $ + 4H
-002243 41E1              AJMP    ?C0008?ADC
-   24: 	{
-   25: 
-   26: 	}
-002245         ?C0006?ADC:
-   27: 	else
-   28: 	{
-   29: 		g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_1V1+m_adc0vBase;
-002245 904C91            MOV     DPTR,#m_adc0vBase
-002248 E0                MOVX    A,@DPTR
-002249 FE                MOV     R6,A
-00224A A3                INC     DPTR
-00224B E0                MOVX    A,@DPTR
-00224C FF                MOV     R7,A
-00224D C3                CLR     C
-00224E 904C94            MOV     DPTR,#m_adc3vValue+01H
-002251 E0                MOVX    A,@DPTR
-002252 9F                SUBB    A,R7
-002253 FD                MOV     R5,A
-002254 904C93            MOV     DPTR,#m_adc3vValue
-002257 E0                MOVX    A,@DPTR
-002258 9E                SUBB    A,R6
-002259 FC                MOV     R4,A
-00225A E4                CLR     A
-00225B 120206            LCALL   ?C?FCASTI
-00225E 7BC3              MOV     R3,#0C3H
-002260 7AF5              MOV     R2,#0F5H
-002262 79A8              MOV     R1,#0A8H
-002264 783E              MOV     R0,#03EH
-002266 1200FB            LCALL   ?C?FPMUL
-002269 C004              PUSH    AR4
-00226B C005              PUSH    AR5
-00226D C006              PUSH    AR6
-00226F C007              PUSH    AR7
-002271 904C91            MOV     DPTR,#m_adc0vBase
-002274 E0                MOVX    A,@DPTR
-002275 FC                MOV     R4,A
-002276 A3                INC     DPTR
-002277 E0                MOVX    A,@DPTR
-002278 FD                MOV     R5,A
-002279 E4                CLR     A
-00227A 120206            LCALL   ?C?FCASTI
-00227D D003              POP     AR3
-00227F D002              POP     AR2
-002281 D001              POP     AR1
-002283 D000              POP     AR0
-002285 12000A            LCALL   ?C?FPADD
-002288 12023F            LCALL   ?C?CASTF
-00228B 904CDE            MOV     DPTR,#g_variable+01FH
-00228E EE                MOV     A,R6
-00228F F0                MOVX    @DPTR,A
-002290 A3                INC     DPTR
-002291 EF                MOV     A,R7
-002292 F0                MOVX    @DPTR,A
-   30: 		g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_0V9+m_adc0vBase;
-002293 904C91            MOV     DPTR,#m_adc0vBase
-002296 E0                MOVX    A,@DPTR
-002297 FE                MOV     R6,A
-002298 A3                INC     DPTR
-002299 E0                MOVX    A,@DPTR
-00229A FF                MOV     R7,A
-00229B C3                CLR     C
-00229C 904C94            MOV     DPTR,#m_adc3vValue+01H
-00229F E0                MOVX    A,@DPTR
-0022A0 9F                SUBB    A,R7
-0022A1 FD                MOV     R5,A
-0022A2 904C93            MOV     DPTR,#m_adc3vValue
-0022A5 E0                MOVX    A,@DPTR
-0022A6 9E                SUBB    A,R6
-0022A7 FC                MOV     R4,A
-0022A8 E4                CLR     A
-0022A9 120206            LCALL   ?C?FCASTI
-0022AC 7B5C              MOV     R3,#05CH
-0022AE 7A8F              MOV     R2,#08FH
-0022B0 7942              MOV     R1,#042H
-0022B2 783E              MOV     R0,#03EH
-0022B4 1200FB            LCALL   ?C?FPMUL
-0022B7 C004              PUSH    AR4
-0022B9 C005              PUSH    AR5
-0022BB C006              PUSH    AR6
-0022BD C007              PUSH    AR7
-0022BF 904C91            MOV     DPTR,#m_adc0vBase
-0022C2 E0                MOVX    A,@DPTR
-0022C3 FC                MOV     R4,A
-0022C4 A3                INC     DPTR
-0022C5 E0                MOVX    A,@DPTR
-0022C6 FD                MOV     R5,A
-0022C7 E4                CLR     A
-0022C8 120206            LCALL   ?C?FCASTI
-0022CB D003              POP     AR3
-0022CD D002              POP     AR2
-0022CF D001              POP     AR1
-0022D1 D000              POP     AR0
-0022D3 12000A            LCALL   ?C?FPADD
-0022D6 12023F            LCALL   ?C?CASTF
-0022D9 904CE0            MOV     DPTR,#g_variable+021H
-0022DC EE                MOV     A,R6
-0022DD F0                MOVX    @DPTR,A
-0022DE A3                INC     DPTR
-0022DF EF                MOV     A,R7
-0022E0 F0                MOVX    @DPTR,A
-   31: 	}
-   32: 	
-   33: }
-0022E1         ?C0008?ADC:
-0022E1 22                RET     
------ FUNCTION YC_adc_init (END) -------
-
-
 ----- FUNCTION System_Hardware_reset (BEGIN) -----
  FILE: 'sys.c'
    58: static void System_Hardware_reset()
    59: {
    60: 	m_reset_reg = 1;
    61: 	while(1);
-0022E2 908010            MOV     DPTR,#m_reset_reg
-0022E5 7401              MOV     A,#01H
-0022E7 F0                MOVX    @DPTR,A
-0022E8         ?C0004?SYS:
+001DB2 908010            MOV     DPTR,#m_reset_reg
+001DB5 7401              MOV     A,#01H
+001DB7 F0                MOVX    @DPTR,A
+001DB8         ?C0004?SYS:
    62: }
-0022E8 80FE              SJMP    ?C0004?SYS
-0022EA 22                RET     
+001DB8 80FE              SJMP    ?C0004?SYS
+001DBA 22                RET     
 ----- FUNCTION System_Hardware_reset (END) -------
 
 
@@ -6483,7 +5429,7 @@
    71: {
    72: 	System_Hardware_reset();
    73: }
-0022EB 80F5              SJMP    System_Hardware_reset
+001DBB 80F5              SJMP    System_Hardware_reset
 ----- FUNCTION System_Reset_Connect (END) -------
 
 
@@ -6491,607 +5437,1174 @@
  FILE: 'sys.c'
    80: static void kb_cb_Hid(byte *p,byte len) {
    81: 	//p[0] is hid type,always is 1(kb) now
-0022ED 904E89            MOV     DPTR,#len
-0022F0 ED                MOV     A,R5
-0022F1 F0                MOVX    @DPTR,A
+001DBD 904E89            MOV     DPTR,#len
+001DC0 ED                MOV     A,R5
+001DC1 F0                MOVX    @DPTR,A
 ;---- Variable 'p' assigned to Register 'R1/R2/R3' ----
    82: 	byte temp = p[1];
-0022F2 900001            MOV     DPTR,#01H
-0022F5 1203CF            LCALL   ?C?CLDOPTR
-0022F8 904E8A            MOV     DPTR,#temp
-0022FB F0                MOVX    @DPTR,A
+001DC2 900001            MOV     DPTR,#01H
+001DC5 1203CF            LCALL   ?C?CLDOPTR
+001DC8 904E8A            MOV     DPTR,#temp
+001DCB F0                MOVX    @DPTR,A
    83: 
    84: 	if (len<2) {
    85: 		return;
    86: 	}
    87: }
-0022FC 22                RET     
+001DCC 22                RET     
 ----- FUNCTION _kb_cb_Hid (END) -------
 
 
+----- FUNCTION YC_connect_timeout_500ms (BEGIN) -----
+ FILE: 'sys.c'
+  199: void YC_connect_timeout_500ms()
+  200: {
+  201: 	
+  202: //system long sleep timer
+  203: 	if(g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+001DCD 904CC5            MOV     DPTR,#g_variable+06H
+001DD0 E0                MOVX    A,@DPTR
+001DD1 B40311            CJNE    A,#03H,?C0037?SYS
+  204: 	{
+  205: 		if (g_variable.sleepTimer == STANDBY_TIMER_30MIN)
+001DD4 904CE3            MOV     DPTR,#g_variable+024H
+001DD7 E0                MOVX    A,@DPTR
+001DD8 640E              XRL     A,#0EH
+001DDA 7004              JNZ     ?C0092?SYS
+001DDC A3                INC     DPTR
+001DDD E0                MOVX    A,@DPTR
+001DDE 6410              XRL     A,#010H
+001DE0         ?C0092?SYS:
+001DE0 702D              JNZ     ?C0044?SYS
+  206: 			System_long_sleep();
+001DE2 0207F1            LJMP    System_long_sleep
+  207: 	}
+001DE5         ?C0037?SYS:
+  208: 	else if(g_variable.g24_currentState == CHANGE_TO_24G_PAIRING)
+001DE5 904CC5            MOV     DPTR,#g_variable+06H
+001DE8 E0                MOVX    A,@DPTR
+001DE9 B40114            CJNE    A,#01H,?C0040?SYS
+  209: 	{
+  210: 		if (g_variable.sleepTimer == G24_PAIRING_TIME_OUT_20S)
+001DEC 904CE3            MOV     DPTR,#g_variable+024H
+001DEF E0                MOVX    A,@DPTR
+001DF0 7004              JNZ     ?C0093?SYS
+001DF2 A3                INC     DPTR
+001DF3 E0                MOVX    A,@DPTR
+001DF4 6428              XRL     A,#028H
+001DF6         ?C0093?SYS:
+001DF6 7017              JNZ     ?C0044?SYS
+  211: 		{
+  212: 			IPC_TxControlCmd(IPC_CMD_STOP_24G);
+001DF8 7F22              MOV     R7,#022H
+001DFA 1207F8            LCALL   _IPC_TxControlCmd
+  213: 			System_long_sleep();
+001DFD 0207F1            LJMP    System_long_sleep
+  214: 		}
+  215: 	}
+001E00         ?C0040?SYS:
+  216: 	else
+  217: 	{
+  218: 		if (g_variable.sleepTimer == RECONNECT_TIMER_10S)
+001E00 904CE3            MOV     DPTR,#g_variable+024H
+001E03 E0                MOVX    A,@DPTR
+001E04 7004              JNZ     ?C0094?SYS
+001E06 A3                INC     DPTR
+001E07 E0                MOVX    A,@DPTR
+001E08 6414              XRL     A,#014H
+001E0A         ?C0094?SYS:
+001E0A 7003              JNZ     ?C0044?SYS
+  219: 		{
+  220: 			System_long_sleep();
+001E0C 1207F1            LCALL   System_long_sleep
+  221: 		}
+  222: 	}
+  223: }
+001E0F         ?C0044?SYS:
+001E0F 22                RET     
+----- FUNCTION YC_connect_timeout_500ms (END) -------
+
+
+----- FUNCTION kb_cb_Timer500ms (BEGIN) -----
+ FILE: 'sys.c'
+  291: static void kb_cb_Timer500ms()
+  292: {
+  293: 	LED_timer500ms();	
+  294: 
+001E10 120796            LCALL   LED_timer500ms
+  295: 	g_variable.sleepTimer++;
+001E13 904CE4            MOV     DPTR,#g_variable+025H
+001E16 E0                MOVX    A,@DPTR
+001E17 04                INC     A
+001E18 F0                MOVX    @DPTR,A
+001E19 7006              JNZ     ?C0095?SYS
+001E1B 904CE3            MOV     DPTR,#g_variable+024H
+001E1E E0                MOVX    A,@DPTR
+001E1F 04                INC     A
+001E20 F0                MOVX    @DPTR,A
+001E21         ?C0095?SYS:
+  296: 
+  297: 	YC_adc_check_timer500ms();
+001E21 D14B              ACALL   YC_adc_check_timer500ms
+  298: 	YC_connect_timeout_500ms();
+001E23 B1CD              ACALL   YC_connect_timeout_500ms
+  299: 	kb_button_press_timer500ms();
+001E25 D15C              ACALL   kb_button_press_timer500ms
+;----                  JMP     YC_pairing_timerout_500ms
+  300: 	YC_pairing_timerout_500ms();
+  301: 	
+  302: 	return;
+----- FUNCTION kb_cb_Timer500ms (END) -------
+
+
+----- FUNCTION YC_pairing_timerout_500ms (BEGIN) -----
+ FILE: 'sys.c'
+  227: void YC_pairing_timerout_500ms()
+  228: {
+  229: //pairing timer
+  230: 	if (g_variable.pairing_g24_timeout != 0)
+001E27 904CEE            MOV     DPTR,#g_variable+02FH
+001E2A E0                MOVX    A,@DPTR
+001E2B 601D              JZ      ?C0047?SYS
+  231: 	{
+  232: 		g_variable.sleepTimer = 0;
+001E2D E4                CLR     A
+001E2E 904CE3            MOV     DPTR,#g_variable+024H
+001E31 F0                MOVX    @DPTR,A
+001E32 A3                INC     DPTR
+001E33 F0                MOVX    @DPTR,A
+  233: 		g_variable.pairing_g24_timeout--;
+001E34 904CEE            MOV     DPTR,#g_variable+02FH
+001E37 E0                MOVX    A,@DPTR
+001E38 14                DEC     A
+001E39 F0                MOVX    @DPTR,A
+  234: 		if (g_variable.pairing_g24_timeout == 0)
+001E3A E0                MOVX    A,@DPTR
+001E3B 700D              JNZ     ?C0047?SYS
+  235: 		{
+  236: 			IPC_TxControlCmd(IPC_CMD_STOP_24G);
+001E3D 7F22              MOV     R7,#022H
+001E3F 1207F8            LCALL   _IPC_TxControlCmd
+  237: 			Delay1ms(10);
+001E42 7F0A              MOV     R7,#0AH
+001E44 12109C            LCALL   _Delay1ms
+  238: 			System_long_sleep();
+001E47 1207F1            LCALL   System_long_sleep
+  239: 		}
+  240: 	}
+  241: }
+001E4A         ?C0047?SYS:
+001E4A 22                RET     
+----- FUNCTION YC_pairing_timerout_500ms (END) -------
+
+
+----- FUNCTION YC_adc_check_timer500ms (BEGIN) -----
+ FILE: 'adc.c'
+   76: void YC_adc_check_timer500ms()
+   77: {
+   78: #ifdef  ADC_ENABLE
+   79: 	// adc check timer	
+   80: 	if (g_variable.battery_check_interval)
+001E4B 904CD3            MOV     DPTR,#g_variable+014H
+001E4E E0                MOVX    A,@DPTR
+001E4F 600A              JZ      ?C0016?ADC
+   81: 	{
+   82: 		g_variable.battery_check_interval--;
+001E51 14                DEC     A
+001E52 F0                MOVX    @DPTR,A
+   83: 		if (g_variable.battery_check_interval == 0)
+001E53 E0                MOVX    A,@DPTR
+001E54 7005              JNZ     ?C0016?ADC
+   84: 		{
+   85: 			g_variable.battery_check_interval = BATTERY_CHECK_INTERVAL;
+001E56 7405              MOV     A,#05H
+001E58 F0                MOVX    @DPTR,A
+   86: 			YC_adc_check();
+001E59 D1E3              ACALL   YC_adc_check
+   87: 		}
+   88: 	}
+   89: #endif	
+   90: }
+001E5B         ?C0016?ADC:
+001E5B 22                RET     
+----- FUNCTION YC_adc_check_timer500ms (END) -------
+
+
+----- FUNCTION kb_button_press_timer500ms (BEGIN) -----
+ FILE: 'sys.c'
+  243: void kb_button_press_timer500ms()
+  244: {
+  245: 	
+  246: //key status 
+  247: 	if (g_variable.button_flag & KEY_FLAG_SAME_KEY_PRESS)
+001E5C 904CCE            MOV     DPTR,#g_variable+0FH
+001E5F E0                MOVX    A,@DPTR
+001E60 30E13E            JNB     ACC.1,?C0048?SYS
+  248: 	{
+  249: 		if (g_variable.button_timer[1] < 250)
+001E63 904CD0            MOV     DPTR,#g_variable+011H
+001E66 E0                MOVX    A,@DPTR
+001E67 C3                CLR     C
+001E68 94FA              SUBB    A,#0FAH
+001E6A 5003              JNC     ?C0049?SYS
+  250: 			g_variable.button_timer[1]++;
+001E6C E0                MOVX    A,@DPTR
+001E6D 04                INC     A
+001E6E F0                MOVX    @DPTR,A
+001E6F         ?C0049?SYS:
+  251: 		if (g_variable.button_timer[1] == 180)			// 500ms*180*3 = 4min30s
+001E6F 904CD0            MOV     DPTR,#g_variable+011H
+001E72 E0                MOVX    A,@DPTR
+001E73 64B4              XRL     A,#0B4H
+001E75 702F              JNZ     ?C0054?SYS
+  252: 		{
+  253: 			press_long_time_flag++;
+001E77 904DDC            MOV     DPTR,#press_long_time_flag
+001E7A E0                MOVX    A,@DPTR
+001E7B 04                INC     A
+001E7C F0                MOVX    @DPTR,A
+  254: 			if(press_long_time_flag <= 2)
+001E7D E0                MOVX    A,@DPTR
+001E7E D3                SETB    C
+001E7F 9402              SUBB    A,#02H
+001E81 5007              JNC     ?C0051?SYS
+  255: 			{
+  256: 				g_variable.button_timer[1] = 0;
+001E83 E4                CLR     A
+001E84 904CD0            MOV     DPTR,#g_variable+011H
+001E87 F0                MOVX    @DPTR,A
+  257: 			}
+001E88 801C              SJMP    ?C0054?SYS
+001E8A         ?C0051?SYS:
+  258: 			else if(press_long_time_flag == 3)
+001E8A 904DDC            MOV     DPTR,#press_long_time_flag
+001E8D E0                MOVX    A,@DPTR
+001E8E B40315            CJNE    A,#03H,?C0054?SYS
+  259: 			{
+  260: 				long_press_flag = 1;
+001E91 904DD5            MOV     DPTR,#long_press_flag
+001E94 7401              MOV     A,#01H
+001E96 F0                MOVX    @DPTR,A
+  261: 				g_variable.button_timer[1] = 0;
+001E97 E4                CLR     A
+001E98 904CD0            MOV     DPTR,#g_variable+011H
+001E9B F0                MOVX    @DPTR,A
+  262: 				System_long_sleep();
+001E9C 1207F1            LCALL   System_long_sleep
+  263: 			}
+  264: 		}
+  265: 	}
+001E9F 8005              SJMP    ?C0054?SYS
+001EA1         ?C0048?SYS:
+  266: 	else
+  267: 		press_long_time_flag = 0;
+001EA1 E4                CLR     A
+001EA2 904DDC            MOV     DPTR,#press_long_time_flag
+001EA5 F0                MOVX    @DPTR,A
+001EA6         ?C0054?SYS:
+  268: 		
+  269: 	if (g_variable.button_flag & KEY_FLAG_FN_24G_DEVICE_BUTTON)		// G24 pairing
+001EA6 904CCE            MOV     DPTR,#g_variable+0FH
+001EA9 E0                MOVX    A,@DPTR
+001EAA 30E430            JNB     ACC.4,?C0055?SYS
+  270: 	{
+  271: 		g_variable.delay_enter_lpm_timer = 10;
+001EAD 904CEA            MOV     DPTR,#g_variable+02BH
+001EB0 740A              MOV     A,#0AH
+001EB2 F0                MOVX    @DPTR,A
+  272: 		if (g_variable.button_timer[2] < 250)
+001EB3 904CD1            MOV     DPTR,#g_variable+012H
+001EB6 E0                MOVX    A,@DPTR
+001EB7 C3                CLR     C
+001EB8 94FA              SUBB    A,#0FAH
+001EBA 5003              JNC     ?C0056?SYS
+  273: 			g_variable.button_timer[2]++;
+001EBC E0                MOVX    A,@DPTR
+001EBD 04                INC     A
+001EBE F0                MOVX    @DPTR,A
+001EBF         ?C0056?SYS:
+  274: 		if (g_variable.button_timer[2] == 6)
+001EBF 904CD1            MOV     DPTR,#g_variable+012H
+001EC2 E0                MOVX    A,@DPTR
+001EC3 B4061C            CJNE    A,#06H,?C0061?SYS
+  275: 		{
+  276: 			if( !g_variable.current_device_num || (g_variable.current_device_num == 0xfe))
+001EC6 904CC3            MOV     DPTR,#g_variable+04H
+001EC9 E0                MOVX    A,@DPTR
+001ECA FF                MOV     R7,A
+001ECB 6003              JZ      ?C0059?SYS
+001ECD B4FE12            CJNE    A,#0FEH,?C0061?SYS
+001ED0         ?C0059?SYS:
+  277: 			{
+  278: 				YC_disconnect_all_link();
+001ED0 120FCB            LCALL   YC_disconnect_all_link
+  279: 				Delay1ms(10);
+001ED3 7F0A              MOV     R7,#0AH
+001ED5 12109C            LCALL   _Delay1ms
+  280: 				YC_key_action_handle(KEY_PAIRING_24G);
+001ED8 7F0A              MOV     R7,#0AH
+001EDA 020FEB            LJMP    _YC_key_action_handle
+  281: 			}
+  282: 		}
+  283: 	}
+001EDD         ?C0055?SYS:
+  284: 	else
+  285: 		g_variable.button_timer[2] = 0;
+001EDD E4                CLR     A
+001EDE 904CD1            MOV     DPTR,#g_variable+012H
+001EE1 F0                MOVX    @DPTR,A
+  286: 	
+  287: }
+001EE2         ?C0061?SYS:
+001EE2 22                RET     
+----- FUNCTION kb_button_press_timer500ms (END) -------
+
+
 ----- FUNCTION YC_adc_check (BEGIN) -----
  FILE: 'adc.c'
-   35: void YC_adc_check() 
-   36: {
-   37: 	byte i;
-   38: 	ulong batValue = 0;
-0022FD 904E58            MOV     DPTR,#batValue
-002300 120533            LCALL   ?C?LSTKXDATA
-002303 00                DB      00H
-002304 00                DB      00H
-002305 00                DB      00H
-002306 00                DB      00H
-   39: 	#ifndef  ADC_ENABLE
-   40: 		return;
-   41: 	#endif	
-   42: //	if(m_adcCurrentValue < m_adc0vBase) 
-   43: //		return;
-   44: 
-   45: 	g_variable.battery_value[g_variable.battery_value_index++] = m_adcCurrentValue;
-002307 904C95            MOV     DPTR,#m_adcCurrentValue
-00230A E0                MOVX    A,@DPTR
-00230B FE                MOV     R6,A
-00230C A3                INC     DPTR
-00230D E0                MOVX    A,@DPTR
-00230E FF                MOV     R7,A
-00230F 904CD4            MOV     DPTR,#g_variable+015H
-002312 E0                MOVX    A,@DPTR
-002313 FD                MOV     R5,A
-002314 04                INC     A
-002315 F0                MOVX    @DPTR,A
-002316 ED                MOV     A,R5
-002317 25E0              ADD     A,ACC
-002319 24D6              ADD     A,#LOW g_variable+017H
-00231B F582              MOV     DPL,A
-00231D E4                CLR     A
-00231E 344C              ADDC    A,#HIGH g_variable+017H
-002320 F583              MOV     DPH,A
-002322 EE                MOV     A,R6
-002323 F0                MOVX    @DPTR,A
-002324 A3                INC     DPTR
-002325 EF                MOV     A,R7
-002326 F0                MOVX    @DPTR,A
-   46: 	if (g_variable.battery_value_index >= BAT_ARRAY_LEN)
-002327 904CD4            MOV     DPTR,#g_variable+015H
-00232A E0                MOVX    A,@DPTR
-00232B C3                CLR     C
-00232C 9404              SUBB    A,#04H
-00232E 4002              JC      ?C0009?ADC
-   47: 		g_variable.battery_value_index = 0;
-002330 E4                CLR     A
-002331 F0                MOVX    @DPTR,A
-002332         ?C0009?ADC:
-   48: 	for (i = 0; i < BAT_ARRAY_LEN; i++)
-002332 E4                CLR     A
-002333 904E57            MOV     DPTR,#i
-002336 F0                MOVX    @DPTR,A
-002337         ?C0010?ADC:
-   49: 	{
-   50: 		batValue += g_variable.battery_value[i];
-002337 904E58            MOV     DPTR,#batValue
-00233A E0                MOVX    A,@DPTR
-00233B F8                MOV     R0,A
-00233C A3                INC     DPTR
-00233D E0                MOVX    A,@DPTR
-00233E F9                MOV     R1,A
-00233F A3                INC     DPTR
-002340 E0                MOVX    A,@DPTR
-002341 FA                MOV     R2,A
-002342 A3                INC     DPTR
-002343 E0                MOVX    A,@DPTR
-002344 FB                MOV     R3,A
-002345 904E57            MOV     DPTR,#i
-002348 E0                MOVX    A,@DPTR
-002349 25E0              ADD     A,ACC
-00234B 24D6              ADD     A,#LOW g_variable+017H
-00234D F582              MOV     DPL,A
-00234F E4                CLR     A
-002350 344C              ADDC    A,#HIGH g_variable+017H
-002352 F583              MOV     DPH,A
-002354 E0                MOVX    A,@DPTR
-002355 FE                MOV     R6,A
-002356 A3                INC     DPTR
-002357 E0                MOVX    A,@DPTR
-002358 FF                MOV     R7,A
-002359 E4                CLR     A
-00235A FC                MOV     R4,A
-00235B FD                MOV     R5,A
-00235C EB                MOV     A,R3
-00235D 2F                ADD     A,R7
-00235E FF                MOV     R7,A
-00235F EA                MOV     A,R2
-002360 3E                ADDC    A,R6
-002361 FE                MOV     R6,A
-002362 ED                MOV     A,R5
-002363 39                ADDC    A,R1
-002364 FD                MOV     R5,A
-002365 EC                MOV     A,R4
-002366 38                ADDC    A,R0
-002367 FC                MOV     R4,A
-002368 904E58            MOV     DPTR,#batValue
-00236B 120527            LCALL   ?C?LSTXDATA
-   51: 	}
-00236E 904E57            MOV     DPTR,#i
-002371 E0                MOVX    A,@DPTR
-002372 04                INC     A
-002373 F0                MOVX    @DPTR,A
-002374 E0                MOVX    A,@DPTR
-002375 B404BF            CJNE    A,#04H,?C0010?ADC
-002378         ?C0011?ADC:
-   52: 	batValue = batValue/BAT_ARRAY_LEN;
-002378 904E58            MOV     DPTR,#batValue
-00237B E0                MOVX    A,@DPTR
-00237C FC                MOV     R4,A
-00237D A3                INC     DPTR
-00237E E0                MOVX    A,@DPTR
-00237F FD                MOV     R5,A
-002380 A3                INC     DPTR
-002381 E0                MOVX    A,@DPTR
-002382 FE                MOV     R6,A
-002383 A3                INC     DPTR
-002384 E0                MOVX    A,@DPTR
-002385 FF                MOV     R7,A
-002386 E4                CLR     A
-002387 7B04              MOV     R3,#04H
-002389 FA                MOV     R2,A
-00238A F9                MOV     R1,A
-00238B F8                MOV     R0,A
-00238C 120476            LCALL   ?C?ULDIV
-00238F 904E58            MOV     DPTR,#batValue
-002392 120527            LCALL   ?C?LSTXDATA
-   53: 
-   54: 	if(g_variable.battery_value[0] < g_variable.battery_level_shutdown)
-002395 904CE0            MOV     DPTR,#g_variable+021H
-002398 E0                MOVX    A,@DPTR
-002399 FE                MOV     R6,A
-00239A A3                INC     DPTR
-00239B E0                MOVX    A,@DPTR
-00239C FF                MOV     R7,A
-00239D C3                CLR     C
-00239E 904CD7            MOV     DPTR,#g_variable+018H
-0023A1 E0                MOVX    A,@DPTR
-0023A2 9F                SUBB    A,R7
-0023A3 904CD6            MOV     DPTR,#g_variable+017H
-0023A6 E0                MOVX    A,@DPTR
-0023A7 9E                SUBB    A,R6
-0023A8 5007              JNC     ?C0013?ADC
-   55: 	{
-   56: 		g_variable.battery_status = BAT_STATUS_SHUT_DOWN;
-0023AA 904CD5            MOV     DPTR,#g_variable+016H
-0023AD 7402              MOV     A,#02H
-0023AF F0                MOVX    @DPTR,A
-   57: 	}
-0023B0 22                RET     
-0023B1         ?C0013?ADC:
-   58: 	else
-   59: 	{
-   60: 		if (batValue < g_variable.battery_level_low)
-0023B1 904CDE            MOV     DPTR,#g_variable+01FH
-0023B4 E0                MOVX    A,@DPTR
-0023B5 FE                MOV     R6,A
-0023B6 A3                INC     DPTR
-0023B7 E0                MOVX    A,@DPTR
-0023B8 FF                MOV     R7,A
-0023B9 E4                CLR     A
-0023BA FC                MOV     R4,A
-0023BB FD                MOV     R5,A
-0023BC 904E58            MOV     DPTR,#batValue
-0023BF E0                MOVX    A,@DPTR
-0023C0 F8                MOV     R0,A
-0023C1 A3                INC     DPTR
-0023C2 E0                MOVX    A,@DPTR
-0023C3 F9                MOV     R1,A
-0023C4 A3                INC     DPTR
-0023C5 E0                MOVX    A,@DPTR
-0023C6 FA                MOV     R2,A
-0023C7 A3                INC     DPTR
-0023C8 E0                MOVX    A,@DPTR
-0023C9 FB                MOV     R3,A
-0023CA C3                CLR     C
-0023CB 120516            LCALL   ?C?ULCMP
-0023CE 500D              JNC     ?C0015?ADC
-   61: 		{
-   62: 			g_variable.battery_status = BAT_STATUS_LOW;
-0023D0 904CD5            MOV     DPTR,#g_variable+016H
-0023D3 7401              MOV     A,#01H
-0023D5 F0                MOVX    @DPTR,A
-   63: 			m_24g_enter_hibernate[2] = 0x12;		// 100ms
-0023D6 904D3F            MOV     DPTR,#m_24g_enter_hibernate+02H
-0023D9 7412              MOV     A,#012H
-0023DB F0                MOVX    @DPTR,A
-   64: 		}
-0023DC 22                RET     
-0023DD         ?C0015?ADC:
-   65: 		else
-   66: 		{
-   67: 			g_variable.battery_status = BAT_STATUS_NONE;
-0023DD E4                CLR     A
-0023DE 904CD5            MOV     DPTR,#g_variable+016H
-0023E1 F0                MOVX    @DPTR,A
-   68: 			m_24g_enter_hibernate[2] = 0x5d;		// 510ms
-0023E2 904D3F            MOV     DPTR,#m_24g_enter_hibernate+02H
-0023E5 745D              MOV     A,#05DH
-0023E7 F0                MOVX    @DPTR,A
-   69: 		}
-   70: 	}
-   71: 	
-   72: }
-0023E8 22                RET     
+   40: void YC_adc_check() 
+   41: {
+   42: #ifdef  ADC_ENABLE
+   43: 	byte i;
+   44: 	ulong batValue = 0;
+001EE3 904E58            MOV     DPTR,#batValue
+001EE6 120533            LCALL   ?C?LSTKXDATA
+001EE9 00                DB      00H
+001EEA 00                DB      00H
+001EEB 00                DB      00H
+001EEC 00                DB      00H
+   45: 
+   46: 	g_variable.battery_value[g_variable.battery_value_index++] = m_adcCurrentValue;
+001EED 904C95            MOV     DPTR,#m_adcCurrentValue
+001EF0 E0                MOVX    A,@DPTR
+001EF1 FE                MOV     R6,A
+001EF2 A3                INC     DPTR
+001EF3 E0                MOVX    A,@DPTR
+001EF4 FF                MOV     R7,A
+001EF5 904CD4            MOV     DPTR,#g_variable+015H
+001EF8 E0                MOVX    A,@DPTR
+001EF9 FD                MOV     R5,A
+001EFA 04                INC     A
+001EFB F0                MOVX    @DPTR,A
+001EFC ED                MOV     A,R5
+001EFD 25E0              ADD     A,ACC
+001EFF 24D6              ADD     A,#LOW g_variable+017H
+001F01 F582              MOV     DPL,A
+001F03 E4                CLR     A
+001F04 344C              ADDC    A,#HIGH g_variable+017H
+001F06 F583              MOV     DPH,A
+001F08 EE                MOV     A,R6
+001F09 F0                MOVX    @DPTR,A
+001F0A A3                INC     DPTR
+001F0B EF                MOV     A,R7
+001F0C F0                MOVX    @DPTR,A
+   47: 	if (g_variable.battery_value_index >= BAT_ARRAY_LEN)
+001F0D 904CD4            MOV     DPTR,#g_variable+015H
+001F10 E0                MOVX    A,@DPTR
+001F11 C3                CLR     C
+001F12 9404              SUBB    A,#04H
+001F14 4002              JC      ?C0005?ADC
+   48: 		g_variable.battery_value_index = 0;
+001F16 E4                CLR     A
+001F17 F0                MOVX    @DPTR,A
+001F18         ?C0005?ADC:
+   49: 	for (i = 0; i < BAT_ARRAY_LEN; i++)
+001F18 E4                CLR     A
+001F19 904E57            MOV     DPTR,#i
+001F1C F0                MOVX    @DPTR,A
+001F1D         ?C0006?ADC:
+   50: 	{
+   51: 		batValue += g_variable.battery_value[i];
+001F1D 904E58            MOV     DPTR,#batValue
+001F20 E0                MOVX    A,@DPTR
+001F21 F8                MOV     R0,A
+001F22 A3                INC     DPTR
+001F23 E0                MOVX    A,@DPTR
+001F24 F9                MOV     R1,A
+001F25 A3                INC     DPTR
+001F26 E0                MOVX    A,@DPTR
+001F27 FA                MOV     R2,A
+001F28 A3                INC     DPTR
+001F29 E0                MOVX    A,@DPTR
+001F2A FB                MOV     R3,A
+001F2B 904E57            MOV     DPTR,#i
+001F2E E0                MOVX    A,@DPTR
+001F2F 25E0              ADD     A,ACC
+001F31 24D6              ADD     A,#LOW g_variable+017H
+001F33 F582              MOV     DPL,A
+001F35 E4                CLR     A
+001F36 344C              ADDC    A,#HIGH g_variable+017H
+001F38 F583              MOV     DPH,A
+001F3A E0                MOVX    A,@DPTR
+001F3B FE                MOV     R6,A
+001F3C A3                INC     DPTR
+001F3D E0                MOVX    A,@DPTR
+001F3E FF                MOV     R7,A
+001F3F E4                CLR     A
+001F40 FC                MOV     R4,A
+001F41 FD                MOV     R5,A
+001F42 EB                MOV     A,R3
+001F43 2F                ADD     A,R7
+001F44 FF                MOV     R7,A
+001F45 EA                MOV     A,R2
+001F46 3E                ADDC    A,R6
+001F47 FE                MOV     R6,A
+001F48 ED                MOV     A,R5
+001F49 39                ADDC    A,R1
+001F4A FD                MOV     R5,A
+001F4B EC                MOV     A,R4
+001F4C 38                ADDC    A,R0
+001F4D FC                MOV     R4,A
+001F4E 904E58            MOV     DPTR,#batValue
+001F51 120527            LCALL   ?C?LSTXDATA
+   52: 	}
+001F54 904E57            MOV     DPTR,#i
+001F57 E0                MOVX    A,@DPTR
+001F58 04                INC     A
+001F59 F0                MOVX    @DPTR,A
+001F5A E0                MOVX    A,@DPTR
+001F5B B404BF            CJNE    A,#04H,?C0006?ADC
+001F5E         ?C0007?ADC:
+   53: 	batValue = batValue/BAT_ARRAY_LEN;
+001F5E 904E58            MOV     DPTR,#batValue
+001F61 E0                MOVX    A,@DPTR
+001F62 FC                MOV     R4,A
+001F63 A3                INC     DPTR
+001F64 E0                MOVX    A,@DPTR
+001F65 FD                MOV     R5,A
+001F66 A3                INC     DPTR
+001F67 E0                MOVX    A,@DPTR
+001F68 FE                MOV     R6,A
+001F69 A3                INC     DPTR
+001F6A E0                MOVX    A,@DPTR
+001F6B FF                MOV     R7,A
+001F6C E4                CLR     A
+001F6D 7B04              MOV     R3,#04H
+001F6F FA                MOV     R2,A
+001F70 F9                MOV     R1,A
+001F71 F8                MOV     R0,A
+001F72 120476            LCALL   ?C?ULDIV
+001F75 904E58            MOV     DPTR,#batValue
+001F78 120527            LCALL   ?C?LSTXDATA
+   54: 
+   55: 	if(g_variable.battery_value[0] < g_variable.battery_level_shutdown)
+001F7B 904CE0            MOV     DPTR,#g_variable+021H
+001F7E E0                MOVX    A,@DPTR
+001F7F FE                MOV     R6,A
+001F80 A3                INC     DPTR
+001F81 E0                MOVX    A,@DPTR
+001F82 FF                MOV     R7,A
+001F83 C3                CLR     C
+001F84 904CD7            MOV     DPTR,#g_variable+018H
+001F87 E0                MOVX    A,@DPTR
+001F88 9F                SUBB    A,R7
+001F89 904CD6            MOV     DPTR,#g_variable+017H
+001F8C E0                MOVX    A,@DPTR
+001F8D 9E                SUBB    A,R6
+001F8E 5007              JNC     ?C0009?ADC
+   56: 	{
+   57: 		g_variable.battery_status = BAT_STATUS_SHUT_DOWN;
+001F90 904CD5            MOV     DPTR,#g_variable+016H
+001F93 7402              MOV     A,#02H
+001F95 F0                MOVX    @DPTR,A
+   58: 	}
+001F96 22                RET     
+001F97         ?C0009?ADC:
+   59: 	else
+   60: 	{
+   61: 		if (batValue < g_variable.battery_level_low)
+001F97 904CDE            MOV     DPTR,#g_variable+01FH
+001F9A E0                MOVX    A,@DPTR
+001F9B FE                MOV     R6,A
+001F9C A3                INC     DPTR
+001F9D E0                MOVX    A,@DPTR
+001F9E FF                MOV     R7,A
+001F9F E4                CLR     A
+001FA0 FC                MOV     R4,A
+001FA1 FD                MOV     R5,A
+001FA2 904E58            MOV     DPTR,#batValue
+001FA5 E0                MOVX    A,@DPTR
+001FA6 F8                MOV     R0,A
+001FA7 A3                INC     DPTR
+001FA8 E0                MOVX    A,@DPTR
+001FA9 F9                MOV     R1,A
+001FAA A3                INC     DPTR
+001FAB E0                MOVX    A,@DPTR
+001FAC FA                MOV     R2,A
+001FAD A3                INC     DPTR
+001FAE E0                MOVX    A,@DPTR
+001FAF FB                MOV     R3,A
+001FB0 C3                CLR     C
+001FB1 120516            LCALL   ?C?ULCMP
+001FB4 500D              JNC     ?C0011?ADC
+   62: 		{
+   63: 			g_variable.battery_status = BAT_STATUS_LOW;
+001FB6 904CD5            MOV     DPTR,#g_variable+016H
+001FB9 7401              MOV     A,#01H
+001FBB F0                MOVX    @DPTR,A
+   64: 			m_24g_enter_hibernate[2] = 0x12;		// 100ms
+001FBC 904D3F            MOV     DPTR,#m_24g_enter_hibernate+02H
+001FBF 7412              MOV     A,#012H
+001FC1 F0                MOVX    @DPTR,A
+   65: 		}
+001FC2 22                RET     
+001FC3         ?C0011?ADC:
+   66: 		else
+   67: 		{
+   68: 			g_variable.battery_status = BAT_STATUS_NONE;
+001FC3 E4                CLR     A
+001FC4 904CD5            MOV     DPTR,#g_variable+016H
+001FC7 F0                MOVX    @DPTR,A
+   69: 			m_24g_enter_hibernate[2] = 0x5d;		// 510ms
+001FC8 904D3F            MOV     DPTR,#m_24g_enter_hibernate+02H
+001FCB 745D              MOV     A,#05DH
+001FCD F0                MOVX    @DPTR,A
+   70: 		}
+   71: 	}
+   72: #endif	
+   73: }
+001FCE 22                RET     
 ----- FUNCTION YC_adc_check (END) -------
 
 
------ FUNCTION YC_adc_check_timer500ms (BEGIN) -----
+----- FUNCTION kb_cb_Timer100ms (BEGIN) -----
+ FILE: 'sys.c'
+  306: static void kb_cb_Timer100ms()
+  307: {
+  308: 
+  309: 	if (g_variable.delay_enter_lpm_timer) 
+001FCF 904CEA            MOV     DPTR,#g_variable+02BH
+001FD2 E0                MOVX    A,@DPTR
+001FD3 6002              JZ      ?C0063?SYS
+  310: 	{
+  311: 		g_variable.delay_enter_lpm_timer --;
+001FD5 14                DEC     A
+001FD6 F0                MOVX    @DPTR,A
+  312: 	}
+001FD7         ?C0063?SYS:
+  313: 
+  314: 	if(g_variable.recon_delay)
+001FD7 904CEF            MOV     DPTR,#g_variable+030H
+001FDA E0                MOVX    A,@DPTR
+001FDB 6002              JZ      ?C0064?SYS
+  315: 		g_variable.recon_delay--;
+001FDD 14                DEC     A
+001FDE F0                MOVX    @DPTR,A
+001FDF         ?C0064?SYS:
+  316: 
+  317: 	if (g_variable.powerOn_timer != 0)
+001FDF 904CE5            MOV     DPTR,#g_variable+026H
+001FE2 E0                MOVX    A,@DPTR
+001FE3 6018              JZ      ?C0065?SYS
+  318: 	{	
+  319: 		g_variable.powerOn_timer--;
+001FE5 14                DEC     A
+001FE6 F0                MOVX    @DPTR,A
+  320: 		GPIO_Setout(G24_LED_GPIO,LED_ON);
+001FE7 D201              SETB    ?_GPIO_Setout?BIT
+001FE9 7F1E              MOV     R7,#01EH
+001FEB 120784            LCALL   _GPIO_Setout
+  321: 		if (!g_variable.powerOn_timer)
+001FEE 904CE5            MOV     DPTR,#g_variable+026H
+001FF1 E0                MOVX    A,@DPTR
+001FF2 7034              JNZ     ?C0067?SYS
+  322: 		{
+  323: 			GPIO_Setout(G24_LED_GPIO,LED_OFF);
+001FF4 C201              CLR     ?_GPIO_Setout?BIT
+001FF6 7F1E              MOV     R7,#01EH
+001FF8 120784            LCALL   _GPIO_Setout
+  324: 		}
+  325: 	}
+001FFB 802B              SJMP    ?C0067?SYS
+001FFD         ?C0065?SYS:
+  326: 	else
+  327: 	if (g_variable.pairing_g24_timeout == 0) //bt  pairing
+001FFD 904CEE            MOV     DPTR,#g_variable+02FH
+002000 E0                MOVX    A,@DPTR
+002001 7025              JNZ     ?C0067?SYS
+  328: 	{
+  329: 		if(g_variable.battery_low_led_flash_interval)
+002003 904CE2            MOV     DPTR,#g_variable+023H
+002006 E0                MOVX    A,@DPTR
+002007 601F              JZ      ?C0067?SYS
+  330: 		{
+  331: 			g_variable.battery_low_led_flash_interval--;
+002009 14                DEC     A
+00200A F0                MOVX    @DPTR,A
+  332: 			if(g_variable.battery_low_led_flash_interval & 0x02)
+00200B E0                MOVX    A,@DPTR
+00200C 30E109            JNB     ACC.1,?C0070?SYS
+  333: 			{
+  334: 				GPIO_Setout(LOWPOWER_LED_GPIO, LED_ON);
+00200F D201              SETB    ?_GPIO_Setout?BIT
+002011 7F1E              MOV     R7,#01EH
+002013 120784            LCALL   _GPIO_Setout
+  335: 			}
+002016 8007              SJMP    ?C0071?SYS
+002018         ?C0070?SYS:
+  336: 			else
+  337: 				GPIO_Setout(LOWPOWER_LED_GPIO, LED_OFF);	
+002018 C201              CLR     ?_GPIO_Setout?BIT
+00201A 7F1E              MOV     R7,#01EH
+00201C 120784            LCALL   _GPIO_Setout
+00201F         ?C0071?SYS:
+  338: 			if(!g_variable.battery_low_led_flash_interval)
+00201F 904CE2            MOV     DPTR,#g_variable+023H
+002022 E0                MOVX    A,@DPTR
+002023 7003              JNZ     ?C0067?SYS
+  339: 				g_variable.battery_low_led_flash_interval = LOW_BATTERY_FLASH_INTERVAL;
+002025 7404              MOV     A,#04H
+002027 F0                MOVX    @DPTR,A
+  340: 		}
+  341: 	}
+002028         ?C0067?SYS:
+  342: 	
+  343: // The dongle must receive data within 200ms, otherwise it will be forced to lift
+  344: 	if(!long_press_flag)
+002028 904DD5            MOV     DPTR,#long_press_flag
+00202B E0                MOVX    A,@DPTR
+00202C 702D              JNZ     ?C0073?SYS
+  345: 	{
+  346: 		if (repeat_send_24g == 1)
+00202E 904DD6            MOV     DPTR,#repeat_send_24g
+002031 E0                MOVX    A,@DPTR
+002032 6401              XRL     A,#01H
+002034 7025              JNZ     ?C0073?SYS
+  347: 		{
+  348: 			repeat_send_24g = 0;
+002036 F0                MOVX    @DPTR,A
+  349: 
+  350: 			 if (multikey[0] != 0)
+002037 904DE5            MOV     DPTR,#multikey
+00203A E0                MOVX    A,@DPTR
+00203B 600D              JZ      ?C0075?SYS
+  351: 			{
+  352: 				IPC_TxHidData(multikey, 3);
+00203D 7B01              MOV     R3,#01H
+00203F 7A4D              MOV     R2,#HIGH multikey
+002041 79E5              MOV     R1,#LOW multikey
+002043 7D03              MOV     R5,#03H
+002045 120D83            LCALL   _IPC_TxHidData
+  353: 			}
+002048 8011              SJMP    ?C0073?SYS
+00204A         ?C0075?SYS:
+  354: 			else if (hidBuff[0] != 0)
+00204A 904800            MOV     DPTR,#hidBuff
+00204D E0                MOVX    A,@DPTR
+00204E 600B              JZ      ?C0073?SYS
+  355: 			{
+  356: 
+  357: 				IPC_TxHidData(hidBuff,9);
+002050 7B01              MOV     R3,#01H
+002052 7A48              MOV     R2,#HIGH hidBuff
+002054 7900              MOV     R1,#LOW hidBuff
+002056 7D09              MOV     R5,#09H
+002058 120D83            LCALL   _IPC_TxHidData
+  358: 			}
+  359: 		}
+  360: 	}
+00205B         ?C0073?SYS:
+  361: 
+  362: 	if (delayChgInvTimer != 0){
+00205B 904DDE            MOV     DPTR,#delayChgInvTimer
+00205E E0                MOVX    A,@DPTR
+00205F 6003              JZ      ?C0079?SYS
+  363: 		delayChgInvTimer--;
+002061 E0                MOVX    A,@DPTR
+002062 14                DEC     A
+002063 F0                MOVX    @DPTR,A
+  364: 	}
+  365: }
+002064         ?C0079?SYS:
+002064 22                RET     
+----- FUNCTION kb_cb_Timer100ms (END) -------
+
+
+----- FUNCTION YC_adc_init (BEGIN) -----
  FILE: 'adc.c'
-   75: void YC_adc_check_timer500ms()
-   76: {
-   77: 	// adc check timer	
-   78: 	if (g_variable.battery_check_interval)
-0023E9 904CD3            MOV     DPTR,#g_variable+014H
-0023EC E0                MOVX    A,@DPTR
-0023ED 600A              JZ      ?C0020?ADC
-   79: 	{
-   80: 		g_variable.battery_check_interval--;
-0023EF 14                DEC     A
-0023F0 F0                MOVX    @DPTR,A
-   81: 		if (g_variable.battery_check_interval == 0)
-0023F1 E0                MOVX    A,@DPTR
-0023F2 7005              JNZ     ?C0020?ADC
-   82: 		{
-   83: 			g_variable.battery_check_interval = BATTERY_CHECK_INTERVAL;
-0023F4 7405              MOV     A,#05H
-0023F6 F0                MOVX    @DPTR,A
-   84: 			YC_adc_check();
-0023F7 51FD              ACALL   YC_adc_check
-   85: 		}
-   86: 	}
-   87: }
-0023F9         ?C0020?ADC:
-0023F9 22                RET     
------ FUNCTION YC_adc_check_timer500ms (END) -------
+    3: void YC_adc_init()
+    4: {
+    5: #ifdef  ADC_ENABLE
+    6: 	byte i;
+    7: 	
+    8: 	g_variable.battery_check_interval = BATTERY_CHECK_INTERVAL;
+002065 904CD3            MOV     DPTR,#g_variable+014H
+002068 7405              MOV     A,#05H
+00206A F0                MOVX    @DPTR,A
+    9: 	g_variable.battery_value_index = 0;
+00206B E4                CLR     A
+00206C A3                INC     DPTR
+00206D F0                MOVX    @DPTR,A
+   10: 
+   11: #ifdef ADC_TYPE_HVIN 	
+   12: 	for (i = 0; i < BAT_ARRAY_LEN; i++)
+   13: 	{
+   14: 		g_variable.battery_value[i] = INIT_BATTERY_VALUE;
+   15: 	}
+   16: 
+   17: 	g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V2+m_adc0vBase;
+   18: 	g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V0+m_adc0vBase;
+   19: #endif
+   20: #ifdef ADC_TYPE_VINLPM
+   21: 		for (i = 0; i < BAT_ARRAY_LEN; i++)
+   22: 		{
+   23: 			g_variable.battery_value[i] = INIT_BATTERY_VALUE_VINLPM;
+   24: 		}
+   25: 		g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_2V2+m_adc0vBase;
+   26: 		g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_2V0+m_adc0vBase;
+   27: #endif
+   28: #ifdef ADC_TYPE_GPIO
+   29: 	m_adc_channel = ADC_CHANNEL;
+00206E 904C90            MOV     DPTR,#m_adc_channel
+002071 7437              MOV     A,#037H
+002073 F0                MOVX    @DPTR,A
+   30: 	for (i = 0; i < BAT_ARRAY_LEN; i++)
+;---- Variable 'i' assigned to Register 'R7' ----
+002074 E4                CLR     A
+002075 FF                MOV     R7,A
+002076         ?C0001?ADC:
+   31: 	{
+   32: 		g_variable.battery_value[i] = INIT_BATTERY_VALUE_GPIO;
+002076 EF                MOV     A,R7
+002077 25E0              ADD     A,ACC
+002079 24D6              ADD     A,#LOW g_variable+017H
+00207B F582              MOV     DPL,A
+00207D E4                CLR     A
+00207E 344C              ADDC    A,#HIGH g_variable+017H
+002080 F583              MOV     DPH,A
+002082 7462              MOV     A,#062H
+002084 F0                MOVX    @DPTR,A
+002085 A3                INC     DPTR
+002086 F0                MOVX    @DPTR,A
+   33: 	}
+002087 0F                INC     R7
+002088 EF                MOV     A,R7
+002089 B404EA            CJNE    A,#04H,?C0001?ADC
+00208C         ?C0002?ADC:
+   34: 		g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_1V1+m_adc0vBase;
+00208C 904C91            MOV     DPTR,#m_adc0vBase
+00208F E0                MOVX    A,@DPTR
+002090 FE                MOV     R6,A
+002091 A3                INC     DPTR
+002092 E0                MOVX    A,@DPTR
+002093 FF                MOV     R7,A
+002094 C3                CLR     C
+002095 904C94            MOV     DPTR,#m_adc3vValue+01H
+002098 E0                MOVX    A,@DPTR
+002099 9F                SUBB    A,R7
+00209A FD                MOV     R5,A
+00209B 904C93            MOV     DPTR,#m_adc3vValue
+00209E E0                MOVX    A,@DPTR
+00209F 9E                SUBB    A,R6
+0020A0 FC                MOV     R4,A
+0020A1 E4                CLR     A
+0020A2 120206            LCALL   ?C?FCASTI
+0020A5 7BC3              MOV     R3,#0C3H
+0020A7 7AF5              MOV     R2,#0F5H
+0020A9 79A8              MOV     R1,#0A8H
+0020AB 783E              MOV     R0,#03EH
+0020AD 1200FB            LCALL   ?C?FPMUL
+0020B0 C004              PUSH    AR4
+0020B2 C005              PUSH    AR5
+0020B4 C006              PUSH    AR6
+0020B6 C007              PUSH    AR7
+0020B8 904C91            MOV     DPTR,#m_adc0vBase
+0020BB E0                MOVX    A,@DPTR
+0020BC FC                MOV     R4,A
+0020BD A3                INC     DPTR
+0020BE E0                MOVX    A,@DPTR
+0020BF FD                MOV     R5,A
+0020C0 E4                CLR     A
+0020C1 120206            LCALL   ?C?FCASTI
+0020C4 D003              POP     AR3
+0020C6 D002              POP     AR2
+0020C8 D001              POP     AR1
+0020CA D000              POP     AR0
+0020CC 12000A            LCALL   ?C?FPADD
+0020CF 12023F            LCALL   ?C?CASTF
+0020D2 904CDE            MOV     DPTR,#g_variable+01FH
+0020D5 EE                MOV     A,R6
+0020D6 F0                MOVX    @DPTR,A
+0020D7 A3                INC     DPTR
+0020D8 EF                MOV     A,R7
+0020D9 F0                MOVX    @DPTR,A
+   35: 		g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_0V9+m_adc0vBase;
+0020DA 904C91            MOV     DPTR,#m_adc0vBase
+0020DD E0                MOVX    A,@DPTR
+0020DE FE                MOV     R6,A
+0020DF A3                INC     DPTR
+0020E0 E0                MOVX    A,@DPTR
+0020E1 FF                MOV     R7,A
+0020E2 C3                CLR     C
+0020E3 904C94            MOV     DPTR,#m_adc3vValue+01H
+0020E6 E0                MOVX    A,@DPTR
+0020E7 9F                SUBB    A,R7
+0020E8 FD                MOV     R5,A
+0020E9 904C93            MOV     DPTR,#m_adc3vValue
+0020EC E0                MOVX    A,@DPTR
+0020ED 9E                SUBB    A,R6
+0020EE FC                MOV     R4,A
+0020EF E4                CLR     A
+0020F0 120206            LCALL   ?C?FCASTI
+0020F3 7B5C              MOV     R3,#05CH
+0020F5 7A8F              MOV     R2,#08FH
+0020F7 7942              MOV     R1,#042H
+0020F9 783E              MOV     R0,#03EH
+0020FB 1200FB            LCALL   ?C?FPMUL
+0020FE C004              PUSH    AR4
+002100 C005              PUSH    AR5
+002102 C006              PUSH    AR6
+002104 C007              PUSH    AR7
+002106 904C91            MOV     DPTR,#m_adc0vBase
+002109 E0                MOVX    A,@DPTR
+00210A FC                MOV     R4,A
+00210B A3                INC     DPTR
+00210C E0                MOVX    A,@DPTR
+00210D FD                MOV     R5,A
+00210E E4                CLR     A
+00210F 120206            LCALL   ?C?FCASTI
+002112 D003              POP     AR3
+002114 D002              POP     AR2
+002116 D001              POP     AR1
+002118 D000              POP     AR0
+00211A 12000A            LCALL   ?C?FPADD
+00211D 12023F            LCALL   ?C?CASTF
+002120 904CE0            MOV     DPTR,#g_variable+021H
+002123 EE                MOV     A,R6
+002124 F0                MOVX    @DPTR,A
+002125 A3                INC     DPTR
+002126 EF                MOV     A,R7
+002127 F0                MOVX    @DPTR,A
+   36: #endif	
+   37: #endif
+   38: }
+002128 22                RET     
+----- FUNCTION YC_adc_init (END) -------
 
 
 ----- FUNCTION _bufsize (BEGIN) -----
-0023FA 904E6D            MOV     DPTR,#rptr
-0023FD EE                MOV     A,R6
-0023FE F0                MOVX    @DPTR,A
-0023FF A3                INC     DPTR
-002400 EF                MOV     A,R7
-002401 F0                MOVX    @DPTR,A
-002402 904E6F            MOV     DPTR,#wptr
-002405 EC                MOV     A,R4
-002406 F0                MOVX    @DPTR,A
-002407 A3                INC     DPTR
-002408 ED                MOV     A,R5
-002409 F0                MOVX    @DPTR,A
+002129 904E6D            MOV     DPTR,#rptr
+00212C EE                MOV     A,R6
+00212D F0                MOVX    @DPTR,A
+00212E A3                INC     DPTR
+00212F EF                MOV     A,R7
+002130 F0                MOVX    @DPTR,A
+002131 904E6F            MOV     DPTR,#wptr
+002134 EC                MOV     A,R4
+002135 F0                MOVX    @DPTR,A
+002136 A3                INC     DPTR
+002137 ED                MOV     A,R5
+002138 F0                MOVX    @DPTR,A
 ;---- Variable 'buflen' assigned to Register 'R3' ----
-00240A 904E6F            MOV     DPTR,#wptr
-00240D E0                MOVX    A,@DPTR
-00240E FE                MOV     R6,A
-00240F A3                INC     DPTR
-002410 E0                MOVX    A,@DPTR
-002411 FF                MOV     R7,A
-002412 D3                SETB    C
-002413 904E6E            MOV     DPTR,#rptr+01H
-002416 E0                MOVX    A,@DPTR
-002417 9F                SUBB    A,R7
-002418 904E6D            MOV     DPTR,#rptr
-00241B E0                MOVX    A,@DPTR
-00241C 9E                SUBB    A,R6
-00241D 4016              JC      ?C0001?IPC
-00241F 904E6F            MOV     DPTR,#wptr
-002422 E0                MOVX    A,@DPTR
-002423 FE                MOV     R6,A
-002424 A3                INC     DPTR
-002425 E0                MOVX    A,@DPTR
-002426 FF                MOV     R7,A
-002427 904E6E            MOV     DPTR,#rptr+01H
-00242A E0                MOVX    A,@DPTR
-00242B 9F                SUBB    A,R7
-00242C FF                MOV     R7,A
-00242D 904E6D            MOV     DPTR,#rptr
-002430 E0                MOVX    A,@DPTR
-002431 9E                SUBB    A,R6
-002432 FE                MOV     R6,A
-002433 801E              SJMP    ?C0002?IPC
-002435         ?C0001?IPC:
-002435 904E6D            MOV     DPTR,#rptr
-002438 E0                MOVX    A,@DPTR
-002439 FE                MOV     R6,A
-00243A A3                INC     DPTR
-00243B E0                MOVX    A,@DPTR
-00243C FF                MOV     R7,A
-00243D C3                CLR     C
-00243E 904E70            MOV     DPTR,#wptr+01H
-002441 E0                MOVX    A,@DPTR
-002442 9F                SUBB    A,R7
-002443 FF                MOV     R7,A
-002444 904E6F            MOV     DPTR,#wptr
-002447 E0                MOVX    A,@DPTR
-002448 9E                SUBB    A,R6
-002449 FE                MOV     R6,A
-00244A AD03              MOV     R5,AR3
-00244C C3                CLR     C
-00244D EB                MOV     A,R3
-00244E 9F                SUBB    A,R7
-00244F FF                MOV     R7,A
-002450 E4                CLR     A
-002451 9E                SUBB    A,R6
-002452 FE                MOV     R6,A
-002453         ?C0002?IPC:
-002453 22                RET     
+002139 904E6F            MOV     DPTR,#wptr
+00213C E0                MOVX    A,@DPTR
+00213D FE                MOV     R6,A
+00213E A3                INC     DPTR
+00213F E0                MOVX    A,@DPTR
+002140 FF                MOV     R7,A
+002141 D3                SETB    C
+002142 904E6E            MOV     DPTR,#rptr+01H
+002145 E0                MOVX    A,@DPTR
+002146 9F                SUBB    A,R7
+002147 904E6D            MOV     DPTR,#rptr
+00214A E0                MOVX    A,@DPTR
+00214B 9E                SUBB    A,R6
+00214C 4016              JC      ?C0001?IPC
+00214E 904E6F            MOV     DPTR,#wptr
+002151 E0                MOVX    A,@DPTR
+002152 FE                MOV     R6,A
+002153 A3                INC     DPTR
+002154 E0                MOVX    A,@DPTR
+002155 FF                MOV     R7,A
+002156 904E6E            MOV     DPTR,#rptr+01H
+002159 E0                MOVX    A,@DPTR
+00215A 9F                SUBB    A,R7
+00215B FF                MOV     R7,A
+00215C 904E6D            MOV     DPTR,#rptr
+00215F E0                MOVX    A,@DPTR
+002160 9E                SUBB    A,R6
+002161 FE                MOV     R6,A
+002162 801E              SJMP    ?C0002?IPC
+002164         ?C0001?IPC:
+002164 904E6D            MOV     DPTR,#rptr
+002167 E0                MOVX    A,@DPTR
+002168 FE                MOV     R6,A
+002169 A3                INC     DPTR
+00216A E0                MOVX    A,@DPTR
+00216B FF                MOV     R7,A
+00216C C3                CLR     C
+00216D 904E70            MOV     DPTR,#wptr+01H
+002170 E0                MOVX    A,@DPTR
+002171 9F                SUBB    A,R7
+002172 FF                MOV     R7,A
+002173 904E6F            MOV     DPTR,#wptr
+002176 E0                MOVX    A,@DPTR
+002177 9E                SUBB    A,R6
+002178 FE                MOV     R6,A
+002179 AD03              MOV     R5,AR3
+00217B C3                CLR     C
+00217C EB                MOV     A,R3
+00217D 9F                SUBB    A,R7
+00217E FF                MOV     R7,A
+00217F E4                CLR     A
+002180 9E                SUBB    A,R6
+002181 FE                MOV     R6,A
+002182         ?C0002?IPC:
+002182 22                RET     
 ----- FUNCTION _bufsize (END) -------
 
 
 ----- FUNCTION _ipcRx (BEGIN) -----
-002454 904E8B            MOV     DPTR,#dest
-002457 EE                MOV     A,R6
-002458 F0                MOVX    @DPTR,A
-002459 A3                INC     DPTR
-00245A EF                MOV     A,R7
-00245B F0                MOVX    @DPTR,A
+002183 904E8B            MOV     DPTR,#dest
+002186 EE                MOV     A,R6
+002187 F0                MOVX    @DPTR,A
+002188 A3                INC     DPTR
+002189 EF                MOV     A,R7
+00218A F0                MOVX    @DPTR,A
 ;---- Variable 'len' assigned to Register 'R1' ----
-00245C A905              MOV     R1,AR5
-00245E 904B9E            MOV     DPTR,#ipcRxReadPtr
-002461 E0                MOVX    A,@DPTR
-002462 FE                MOV     R6,A
-002463 A3                INC     DPTR
-002464 E0                MOVX    A,@DPTR
-002465 FF                MOV     R7,A
+00218B A905              MOV     R1,AR5
+00218D 904B9E            MOV     DPTR,#ipcRxReadPtr
+002190 E0                MOVX    A,@DPTR
+002191 FE                MOV     R6,A
+002192 A3                INC     DPTR
+002193 E0                MOVX    A,@DPTR
+002194 FF                MOV     R7,A
 ;---- Variable 'src' assigned to Register 'R6/R7' ----
-002466         ?C0004?IPC:
-002466 AD01              MOV     R5,AR1
-002468 19                DEC     R1
-002469 ED                MOV     A,R5
-00246A 602F              JZ      ?C0005?IPC
-00246C 0F                INC     R7
-00246D EF                MOV     A,R7
-00246E AC06              MOV     R4,AR6
-002470 7001              JNZ     ?C0036?IPC
-002472 0E                INC     R6
-002473         ?C0036?IPC:
-002473 14                DEC     A
-002474 F582              MOV     DPL,A
-002476 8C83              MOV     DPH,R4
-002478 E0                MOVX    A,@DPTR
-002479 FD                MOV     R5,A
-00247A 904E8B            MOV     DPTR,#dest
-00247D E4                CLR     A
-00247E 75F001            MOV     B,#01H
-002481 120424            LCALL   ?C?ILDIX
-002484 85F082            MOV     DPL,B
-002487 F583              MOV     DPH,A
-002489 ED                MOV     A,R5
-00248A F0                MOVX    @DPTR,A
-00248B AD07              MOV     R5,AR7
-00248D AC06              MOV     R4,AR6
-00248F BC4BD4            CJNE    R4,#04BH,?C0004?IPC
-002492 BD9AD1            CJNE    R5,#09AH,?C0004?IPC
-002495 7E4B              MOV     R6,#04BH
-002497 7F36              MOV     R7,#036H
-002499 80CB              SJMP    ?C0004?IPC
-00249B         ?C0005?IPC:
-00249B 904B9E            MOV     DPTR,#ipcRxReadPtr
-00249E EE                MOV     A,R6
-00249F F0                MOVX    @DPTR,A
-0024A0 A3                INC     DPTR
-0024A1 EF                MOV     A,R7
-0024A2 F0                MOVX    @DPTR,A
-0024A3 22                RET     
+002195         ?C0004?IPC:
+002195 AD01              MOV     R5,AR1
+002197 19                DEC     R1
+002198 ED                MOV     A,R5
+002199 602F              JZ      ?C0005?IPC
+00219B 0F                INC     R7
+00219C EF                MOV     A,R7
+00219D AC06              MOV     R4,AR6
+00219F 7001              JNZ     ?C0036?IPC
+0021A1 0E                INC     R6
+0021A2         ?C0036?IPC:
+0021A2 14                DEC     A
+0021A3 F582              MOV     DPL,A
+0021A5 8C83              MOV     DPH,R4
+0021A7 E0                MOVX    A,@DPTR
+0021A8 FD                MOV     R5,A
+0021A9 904E8B            MOV     DPTR,#dest
+0021AC E4                CLR     A
+0021AD 75F001            MOV     B,#01H
+0021B0 120424            LCALL   ?C?ILDIX
+0021B3 85F082            MOV     DPL,B
+0021B6 F583              MOV     DPH,A
+0021B8 ED                MOV     A,R5
+0021B9 F0                MOVX    @DPTR,A
+0021BA AD07              MOV     R5,AR7
+0021BC AC06              MOV     R4,AR6
+0021BE BC4BD4            CJNE    R4,#04BH,?C0004?IPC
+0021C1 BD9AD1            CJNE    R5,#09AH,?C0004?IPC
+0021C4 7E4B              MOV     R6,#04BH
+0021C6 7F36              MOV     R7,#036H
+0021C8 80CB              SJMP    ?C0004?IPC
+0021CA         ?C0005?IPC:
+0021CA 904B9E            MOV     DPTR,#ipcRxReadPtr
+0021CD EE                MOV     A,R6
+0021CE F0                MOVX    @DPTR,A
+0021CF A3                INC     DPTR
+0021D0 EF                MOV     A,R7
+0021D1 F0                MOVX    @DPTR,A
+0021D2 22                RET     
 ----- FUNCTION _ipcRx (END) -------
 
 
 ----- FUNCTION IPC_GetBBDIsconnectReason (BEGIN) -----
-0024A4 900446            MOV     DPTR,#bbDisReason
-0024A7 E0                MOVX    A,@DPTR
-0024A8 FF                MOV     R7,A
-0024A9 22                RET     
+0021D3 900446            MOV     DPTR,#bbDisReason
+0021D6 E0                MOVX    A,@DPTR
+0021D7 FF                MOV     R7,A
+0021D8 22                RET     
 ----- FUNCTION IPC_GetBBDIsconnectReason (END) -------
 
 
 ----- FUNCTION YC_Ice_break (BEGIN) -----
-0024AA 908280            MOV     DPTR,#08280H
-0024AD 7401              MOV     A,#01H
-0024AF F0                MOVX    @DPTR,A
-0024B0 22                RET     
+0021D9 908280            MOV     DPTR,#08280H
+0021DC 7401              MOV     A,#01H
+0021DE F0                MOVX    @DPTR,A
+0021DF 22                RET     
 ----- FUNCTION YC_Ice_break (END) -------
 
 
 ----- FUNCTION _dmemcpy (BEGIN) -----
-0024B1 904E29            MOV     DPTR,#dest
-0024B4 EB                MOV     A,R3
-0024B5 F0                MOVX    @DPTR,A
-0024B6 A3                INC     DPTR
-0024B7 EA                MOV     A,R2
-0024B8 F0                MOVX    @DPTR,A
-0024B9 A3                INC     DPTR
-0024BA E9                MOV     A,R1
-0024BB F0                MOVX    @DPTR,A
-0024BC         ?C0005?UTILITIES:
-0024BC 904E2F            MOV     DPTR,#len
-0024BF 74FF              MOV     A,#0FFH
-0024C1 F5F0              MOV     B,A
-0024C3 120424            LCALL   ?C?ILDIX
-0024C6 45F0              ORL     A,B
-0024C8 602A              JZ      ?C0007?UTILITIES
-0024CA 904E2C            MOV     DPTR,#src
-0024CD E0                MOVX    A,@DPTR
-0024CE FB                MOV     R3,A
-0024CF A3                INC     DPTR
-0024D0 E4                CLR     A
-0024D1 75F001            MOV     B,#01H
-0024D4 120424            LCALL   ?C?ILDIX
-0024D7 A9F0              MOV     R1,B
-0024D9 FA                MOV     R2,A
-0024DA 1203B6            LCALL   ?C?CLDPTR
-0024DD FF                MOV     R7,A
-0024DE 904E29            MOV     DPTR,#dest
-0024E1 E0                MOVX    A,@DPTR
-0024E2 FB                MOV     R3,A
-0024E3 A3                INC     DPTR
-0024E4 E4                CLR     A
-0024E5 75F001            MOV     B,#01H
-0024E8 120424            LCALL   ?C?ILDIX
-0024EB A9F0              MOV     R1,B
-0024ED FA                MOV     R2,A
-0024EE EF                MOV     A,R7
-0024EF 1203FC            LCALL   ?C?CSTPTR
-0024F2 80C8              SJMP    ?C0005?UTILITIES
-0024F4         ?C0007?UTILITIES:
-0024F4 22                RET     
+0021E0 904E29            MOV     DPTR,#dest
+0021E3 EB                MOV     A,R3
+0021E4 F0                MOVX    @DPTR,A
+0021E5 A3                INC     DPTR
+0021E6 EA                MOV     A,R2
+0021E7 F0                MOVX    @DPTR,A
+0021E8 A3                INC     DPTR
+0021E9 E9                MOV     A,R1
+0021EA F0                MOVX    @DPTR,A
+0021EB         ?C0005?UTILITIES:
+0021EB 904E2F            MOV     DPTR,#len
+0021EE 74FF              MOV     A,#0FFH
+0021F0 F5F0              MOV     B,A
+0021F2 120424            LCALL   ?C?ILDIX
+0021F5 45F0              ORL     A,B
+0021F7 602A              JZ      ?C0007?UTILITIES
+0021F9 904E2C            MOV     DPTR,#src
+0021FC E0                MOVX    A,@DPTR
+0021FD FB                MOV     R3,A
+0021FE A3                INC     DPTR
+0021FF E4                CLR     A
+002200 75F001            MOV     B,#01H
+002203 120424            LCALL   ?C?ILDIX
+002206 A9F0              MOV     R1,B
+002208 FA                MOV     R2,A
+002209 1203B6            LCALL   ?C?CLDPTR
+00220C FF                MOV     R7,A
+00220D 904E29            MOV     DPTR,#dest
+002210 E0                MOVX    A,@DPTR
+002211 FB                MOV     R3,A
+002212 A3                INC     DPTR
+002213 E4                CLR     A
+002214 75F001            MOV     B,#01H
+002217 120424            LCALL   ?C?ILDIX
+00221A A9F0              MOV     R1,B
+00221C FA                MOV     R2,A
+00221D EF                MOV     A,R7
+00221E 1203FC            LCALL   ?C?CSTPTR
+002221 80C8              SJMP    ?C0005?UTILITIES
+002223         ?C0007?UTILITIES:
+002223 22                RET     
 ----- FUNCTION _dmemcpy (END) -------
 
 
 ----- FUNCTION _xmemclear_ff (BEGIN) -----
-0024F5 904E81            MOV     DPTR,#dest
-0024F8 EB                MOV     A,R3
-0024F9 F0                MOVX    @DPTR,A
-0024FA A3                INC     DPTR
-0024FB EA                MOV     A,R2
-0024FC F0                MOVX    @DPTR,A
-0024FD A3                INC     DPTR
-0024FE E9                MOV     A,R1
-0024FF F0                MOVX    @DPTR,A
+002224 904E81            MOV     DPTR,#dest
+002227 EB                MOV     A,R3
+002228 F0                MOVX    @DPTR,A
+002229 A3                INC     DPTR
+00222A EA                MOV     A,R2
+00222B F0                MOVX    @DPTR,A
+00222C A3                INC     DPTR
+00222D E9                MOV     A,R1
+00222E F0                MOVX    @DPTR,A
 ;---- Variable 'len' assigned to Register 'R4/R5' ----
-002500         ?C0011?UTILITIES:
-002500 ED                MOV     A,R5
-002501 1D                DEC     R5
-002502 AE04              MOV     R6,AR4
-002504 7001              JNZ     ?C0027?UTILITIES
-002506 1C                DEC     R4
-002507         ?C0027?UTILITIES:
-002507 4E                ORL     A,R6
-002508 6017              JZ      ?C0013?UTILITIES
-00250A 904E81            MOV     DPTR,#dest
-00250D E0                MOVX    A,@DPTR
-00250E FB                MOV     R3,A
-00250F A3                INC     DPTR
-002510 E4                CLR     A
-002511 75F001            MOV     B,#01H
-002514 120424            LCALL   ?C?ILDIX
-002517 A9F0              MOV     R1,B
-002519 FA                MOV     R2,A
-00251A 74FF              MOV     A,#0FFH
-00251C 1203FC            LCALL   ?C?CSTPTR
-00251F 80DF              SJMP    ?C0011?UTILITIES
-002521         ?C0013?UTILITIES:
-002521 22                RET     
+00222F         ?C0011?UTILITIES:
+00222F ED                MOV     A,R5
+002230 1D                DEC     R5
+002231 AE04              MOV     R6,AR4
+002233 7001              JNZ     ?C0027?UTILITIES
+002235 1C                DEC     R4
+002236         ?C0027?UTILITIES:
+002236 4E                ORL     A,R6
+002237 6017              JZ      ?C0013?UTILITIES
+002239 904E81            MOV     DPTR,#dest
+00223C E0                MOVX    A,@DPTR
+00223D FB                MOV     R3,A
+00223E A3                INC     DPTR
+00223F E4                CLR     A
+002240 75F001            MOV     B,#01H
+002243 120424            LCALL   ?C?ILDIX
+002246 A9F0              MOV     R1,B
+002248 FA                MOV     R2,A
+002249 74FF              MOV     A,#0FFH
+00224B 1203FC            LCALL   ?C?CSTPTR
+00224E 80DF              SJMP    ?C0011?UTILITIES
+002250         ?C0013?UTILITIES:
+002250 22                RET     
 ----- FUNCTION _xmemclear_ff (END) -------
 
 
 ----- FUNCTION _GPIO_ClearWakeup (BEGIN) -----
 ;---- Variable 'gpio_num' assigned to Register 'R7' ----
-002522 EF                MOV     A,R7
-002523 F4                CPL     A
-002524 603A              JZ      ?C0023?GPIO
-002526         ?C0022?GPIO:
-002526 EF                MOV     A,R7
-002527 5407              ANL     A,#07H
-002529 FE                MOV     R6,A
+002251 EF                MOV     A,R7
+002252 F4                CPL     A
+002253 603A              JZ      ?C0023?GPIO
+002255         ?C0022?GPIO:
+002255 EF                MOV     A,R7
+002256 5407              ANL     A,#07H
+002258 FE                MOV     R6,A
 ;---- Variable 'queue' assigned to Register 'R6' ----
-00252A EF                MOV     A,R7
-00252B 13                RRC     A
-00252C 13                RRC     A
-00252D 13                RRC     A
-00252E 5403              ANL     A,#03H
-002530 FF                MOV     R7,A
+002259 EF                MOV     A,R7
+00225A 13                RRC     A
+00225B 13                RRC     A
+00225C 13                RRC     A
+00225D 5403              ANL     A,#03H
+00225F FF                MOV     R7,A
 ;---- Variable 'group' assigned to Register 'R7' ----
-002531 24A3              ADD     A,#LOW YC_GPIOWakeupL
-002533 F582              MOV     DPL,A
-002535 E4                CLR     A
-002536 3400              ADDC    A,#HIGH YC_GPIOWakeupL
-002538 F583              MOV     DPH,A
-00253A C083              PUSH    DPH
-00253C C082              PUSH    DPL
-00253E E0                MOVX    A,@DPTR
-00253F FD                MOV     R5,A
-002540 7401              MOV     A,#01H
-002542 A806              MOV     R0,AR6
-002544 08                INC     R0
-002545 8002              SJMP    ?C0043?GPIO
-002547         ?C0042?GPIO:
-002547 C3                CLR     C
-002548 33                RLC     A
-002549         ?C0043?GPIO:
-002549 D8FC              DJNZ    R0,?C0042?GPIO
-00254B F4                CPL     A
-00254C FC                MOV     R4,A
-00254D 5D                ANL     A,R5
-00254E D082              POP     DPL
-002550 D083              POP     DPH
-002552 F0                MOVX    @DPTR,A
-002553 74A7              MOV     A,#LOW YC_GPIOWakeupH
-002555 2F                ADD     A,R7
-002556 F582              MOV     DPL,A
-002558 E4                CLR     A
-002559 3400              ADDC    A,#HIGH YC_GPIOWakeupH
-00255B F583              MOV     DPH,A
-00255D E0                MOVX    A,@DPTR
-00255E 5C                ANL     A,R4
-00255F F0                MOVX    @DPTR,A
-002560         ?C0023?GPIO:
-002560 22                RET     
+002260 24A3              ADD     A,#LOW YC_GPIOWakeupL
+002262 F582              MOV     DPL,A
+002264 E4                CLR     A
+002265 3400              ADDC    A,#HIGH YC_GPIOWakeupL
+002267 F583              MOV     DPH,A
+002269 C083              PUSH    DPH
+00226B C082              PUSH    DPL
+00226D E0                MOVX    A,@DPTR
+00226E FD                MOV     R5,A
+00226F 7401              MOV     A,#01H
+002271 A806              MOV     R0,AR6
+002273 08                INC     R0
+002274 8002              SJMP    ?C0043?GPIO
+002276         ?C0042?GPIO:
+002276 C3                CLR     C
+002277 33                RLC     A
+002278         ?C0043?GPIO:
+002278 D8FC              DJNZ    R0,?C0042?GPIO
+00227A F4                CPL     A
+00227B FC                MOV     R4,A
+00227C 5D                ANL     A,R5
+00227D D082              POP     DPL
+00227F D083              POP     DPH
+002281 F0                MOVX    @DPTR,A
+002282 74A7              MOV     A,#LOW YC_GPIOWakeupH
+002284 2F                ADD     A,R7
+002285 F582              MOV     DPL,A
+002287 E4                CLR     A
+002288 3400              ADDC    A,#HIGH YC_GPIOWakeupH
+00228A F583              MOV     DPH,A
+00228C E0                MOVX    A,@DPTR
+00228D 5C                ANL     A,R4
+00228E F0                MOVX    @DPTR,A
+00228F         ?C0023?GPIO:
+00228F 22                RET     
 ----- FUNCTION _GPIO_ClearWakeup (END) -------
 
 
------ FUNCTION _GPIO_FlipOutBit (BEGIN) -----
-002561 904E96            MOV     DPTR,#gpio_num
-002564 EF                MOV     A,R7
-002565 F0                MOVX    @DPTR,A
-002566 7B01              MOV     R3,#01H
-002568 7A80              MOV     R2,#080H
-00256A 7974              MOV     R1,#074H
-00256C 1214DF            LCALL   _gpioGetBit
-00256F 9209              MOV     st,C
-002571 904E96            MOV     DPTR,#gpio_num
-002574 E0                MOVX    A,@DPTR
-002575 FF                MOV     R7,A
-002576 A209              MOV     C,st
-002578 B3                CPL     C
-002579 9201              MOV     ?_GPIO_Setout?BIT,C
-00257B 02078B            LJMP    _GPIO_Setout
------ FUNCTION _GPIO_FlipOutBit (END) -------
-
-
 ----- FUNCTION GPIO_fillpd (BEGIN) -----
 ;---- Variable 'i' assigned to Register 'R7' ----
-00257E E4                CLR     A
-00257F FF                MOV     R7,A
-002580         ?C0026?GPIO:
-002580 EF                MOV     A,R7
-002581 FD                MOV     R5,A
-002582 7C00              MOV     R4,#00H
-002584 2478              ADD     A,#078H
-002586 FB                MOV     R3,A
-002587 EC                MOV     A,R4
-002588 3480              ADDC    A,#080H
-00258A 8B82              MOV     DPL,R3
-00258C F583              MOV     DPH,A
-00258E E0                MOVX    A,@DPTR
-00258F FE                MOV     R6,A
-002590 ED                MOV     A,R5
-002591 2470              ADD     A,#070H
-002593 FD                MOV     R5,A
-002594 EC                MOV     A,R4
-002595 3480              ADDC    A,#080H
-002597 8D82              MOV     DPL,R5
-002599 F583              MOV     DPH,A
-00259B E0                MOVX    A,@DPTR
-00259C 4E                ORL     A,R6
-00259D F4                CPL     A
-00259E FE                MOV     R6,A
-00259F EF                MOV     A,R7
-0025A0 247C              ADD     A,#07CH
-0025A2 FD                MOV     R5,A
-0025A3 EC                MOV     A,R4
-0025A4 3480              ADDC    A,#080H
-0025A6 8D82              MOV     DPL,R5
-0025A8 F583              MOV     DPH,A
-0025AA EE                MOV     A,R6
-0025AB F0                MOVX    @DPTR,A
-0025AC 0F                INC     R7
-0025AD EF                MOV     A,R7
-0025AE B404CF            CJNE    A,#04H,?C0026?GPIO
-0025B1 22                RET     
+002290 E4                CLR     A
+002291 FF                MOV     R7,A
+002292         ?C0026?GPIO:
+002292 EF                MOV     A,R7
+002293 FD                MOV     R5,A
+002294 7C00              MOV     R4,#00H
+002296 2478              ADD     A,#078H
+002298 FB                MOV     R3,A
+002299 EC                MOV     A,R4
+00229A 3480              ADDC    A,#080H
+00229C 8B82              MOV     DPL,R3
+00229E F583              MOV     DPH,A
+0022A0 E0                MOVX    A,@DPTR
+0022A1 FE                MOV     R6,A
+0022A2 ED                MOV     A,R5
+0022A3 2470              ADD     A,#070H
+0022A5 FD                MOV     R5,A
+0022A6 EC                MOV     A,R4
+0022A7 3480              ADDC    A,#080H
+0022A9 8D82              MOV     DPL,R5
+0022AB F583              MOV     DPH,A
+0022AD E0                MOVX    A,@DPTR
+0022AE 4E                ORL     A,R6
+0022AF F4                CPL     A
+0022B0 FE                MOV     R6,A
+0022B1 EF                MOV     A,R7
+0022B2 247C              ADD     A,#07CH
+0022B4 FD                MOV     R5,A
+0022B5 EC                MOV     A,R4
+0022B6 3480              ADDC    A,#080H
+0022B8 8D82              MOV     DPL,R5
+0022BA F583              MOV     DPH,A
+0022BC EE                MOV     A,R6
+0022BD F0                MOVX    @DPTR,A
+0022BE 0F                INC     R7
+0022BF EF                MOV     A,R7
+0022C0 B404CF            CJNE    A,#04H,?C0026?GPIO
+0022C3 22                RET     
 ----- FUNCTION GPIO_fillpd (END) -------
 
 
Index: c51/output/FW.HTM
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/output/FW.HTM	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/output/FW.HTM	(working copy)
@@ -25,170 +25,135 @@
 
 <p class="TinyT">
 Created from: <b>LX51 LINKER/LOCATER V4.41</b><br>
-Creation time: <b>05/29/2020  00:09:56</b><p>
+Creation time: <b>06/12/2020  18:49:04</b><p>
 
 <hr>
 
 
-<h2><a name="S6"></a>?PR?YC_START_RECONNECT?BLUETOOTH (C:000FAAH - C:000FB3H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
-<p><br><b>Calls to:</b></p>
-<ul>
-<li><a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
-</ul>
-
+<h2><a name="S6"></a>?PR?YC_START_RECONNECT?BLUETOOTH (C:000FE3H - C:000FEAH)</h2>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
 </ul>
 
-<h2><a name="S63"></a>?PR?KSCOLINITIALIZE?KEYSCAN (C:000FCDH - C:000FEBH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<h2><a name="S63"></a>?PR?KSCOLINITIALIZE?KEYSCAN (C:00136DH - C:00138AH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a></li>
 </ul>
 
-<h2><a name="S82"></a>?PR?SYSTEM_HARDWARE_RESET?SYS (C:0022E2H - C:0022EAH)</h2>
+<h2><a name="S80"></a>?PR?SYSTEM_HARDWARE_RESET?SYS (C:001DB2H - C:001DBAH)</h2>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S84">?PR?SYSTEM_RESET_CONNECT?SYS</a></li>
+<li><a href="#S82">?PR?SYSTEM_RESET_CONNECT?SYS</a></li>
 </ul>
 
-<h2><a name="S84"></a>?PR?SYSTEM_RESET_CONNECT?SYS (C:0022EBH - C:0022ECH)</h2>
+<h2><a name="S82"></a>?PR?SYSTEM_RESET_CONNECT?SYS (C:001DBBH - C:001DBCH)</h2>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S82">?PR?SYSTEM_HARDWARE_RESET?SYS</a></li>
+<li><a href="#S80">?PR?SYSTEM_HARDWARE_RESET?SYS</a></li>
 </ul>
 
-<h2><a name="S85"></a>?PR?_KB_CB_HID?SYS (C:0022EDH - C:0022FCH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>)<p>
+<h2><a name="S83"></a>?PR?_KB_CB_HID?SYS (C:001DBDH - C:001DCCH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
-<h2><a name="S87"></a>?PR?_KB_CB_EVENT?SYS (C:000A96H - C:000B6BH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=14 Bytes (<a href="#S80">?PR?SYSTEM_HARDWARE_INIT?SYS</a>)<p>
+<h2><a name="S85"></a>?PR?_KB_CB_EVENT?SYS (C:0011A3H - C:00127DH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=14 Bytes (<a href="#S78">?PR?SYSTEM_HARDWARE_INIT?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S148">?PR?_DELAY1MS?UTILITIES</a></li>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
-<li><a href="#S182">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S146">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S155">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S180">?PR?_IIC_READ?IIC</a></li>
 <li><a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
 <li><a href="#S65">?PR?KS_INITIALIZE?KEYSCAN</a></li>
-<li><a href="#S80">?PR?SYSTEM_HARDWARE_INIT?SYS</a></li>
-<li><a href="#S83">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
-<li><a href="#S81">?PR?SYSTEM_SOFTWARE_INIT?SYS</a></li>
+<li><a href="#S78">?PR?SYSTEM_HARDWARE_INIT?SYS</a></li>
+<li><a href="#S81">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+<li><a href="#S79">?PR?SYSTEM_SOFTWARE_INIT?SYS</a></li>
 <li><a href="#S4">?PR?YC_CLEAR_RECONNECT_FLAG?BLUETOOTH</a></li>
 <li><a href="#S6">?PR?YC_START_RECONNECT?BLUETOOTH</a></li>
 </ul>
 
-<h2><a name="S91"></a>?PR?YC_PAIRING_TIMEROUT_500MS?SYS (C:000F6FH - C:000F8FH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a>)<p>
+<h2><a name="S89"></a>?PR?YC_PAIRING_TIMEROUT_500MS?SYS (C:001E27H - C:001E4AH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S108">?PR?_IPC_TXCONTROLCMD?IPC</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S148">?PR?_DELAY1MS?UTILITIES</a></li>
-<li><a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
-<li><a href="#S83">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
-</ul>
-
-<p><br><b>Called from:</b></p>
-<ul>
-<li><a href="#S93">?PR?KB_CB_TIMER500MS?SYS</a></li>
+<li><a href="#S146">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S108">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S81">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
 </ul>
 
-<h2><a name="S93"></a>?PR?KB_CB_TIMER500MS?SYS (C:000F90H - C:000FA9H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S89">?PR?LED_TIMER500MS?SYS</a>)<p>
+<h2><a name="S91"></a>?PR?KB_CB_TIMER500MS?SYS (C:001E10H - C:001E26H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S87">?PR?LED_TIMER500MS?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S92">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
-<li><a href="#S89">?PR?LED_TIMER500MS?SYS</a></li>
-<li><a href="#S102">?PR?YC_ADC_CHECK_TIMER500MS?ADC</a></li>
-<li><a href="#S90">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
-<li><a href="#S91">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+<li><a href="#S90">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S87">?PR?LED_TIMER500MS?SYS</a></li>
+<li><a href="#S100">?PR?YC_ADC_CHECK_TIMER500MS?ADC</a></li>
+<li><a href="#S88">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
 </ul>
 
-<h2><a name="S94"></a>?PR?KB_CB_TIMER100MS?SYS (C:0015B7H - C:001641H)</h2>
+<h2><a name="S92"></a>?PR?KB_CB_TIMER100MS?SYS (C:001FCFH - C:002064H)</h2>
 <p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S155">?PR?_GPIO_SETOUT?GPIO</a></li>
 <li><a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
-<li><a href="#S77">?PR?LED_DEVICE_POWEROFF?LED</a></li>
-<li><a href="#S76">?PR?LED_DEVICE_POWERON?LED</a></li>
 </ul>
 
-<h2><a name="S96"></a>?PR?YC_SYSTEM_MAIN?SYS (C:0011E3H - C:001234H)</h2>
+<h2><a name="S94"></a>?PR?YC_SYSTEM_MAIN?SYS (C:00138BH - C:0013CEH)</h2>
 <p><br><b>Maximum Stack:</b> Bottom=16 Bytes (<a href="#S50">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S118">?PR?IPC_ABANDONLPM?IPC</a></li>
-<li><a href="#S120">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
-<li><a href="#S117">?PR?IPC_WAITLPM?IPC</a></li>
-<li><a href="#S95">?PR?KB_CB_INIT?SYS</a></li>
+<li><a href="#S116">?PR?IPC_ABANDONLPM?IPC</a></li>
+<li><a href="#S118">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
+<li><a href="#S115">?PR?IPC_WAITLPM?IPC</a></li>
+<li><a href="#S93">?PR?KB_CB_INIT?SYS</a></li>
 <li><a href="#S50">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a></li>
 <li><a href="#S66">?PR?KS_UNISTALL?KEYSCAN</a></li>
 <li><a href="#S75">?PR?LED_ALL_SHUTDOWN?LED</a></li>
-<li><a href="#S78">?PR?LED_HANDLE?LED</a></li>
+<li><a href="#S76">?PR?LED_HANDLE?LED</a></li>
 <li><a href="#S7">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S103">?PR?MAIN?RAM</a></li>
+<li><a href="#S101">?PR?MAIN?RAM</a></li>
 </ul>
 
-<h2><a name="S103"></a>?PR?MAIN?RAM (C:0017AAH - C:0017ABH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=16 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S101"></a>?PR?MAIN?RAM (C:0017B5H - C:0017B6H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=16 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S108"></a>?PR?_IPCTX?IPC (C:00091EH - C:0009B2H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S104">?PR?_BUFSIZE?IPC</a>)<p>
+<h2><a name="S114"></a>?PR?_IPC_INITIALIZE?IPC (C:00152CH - C:001538H)</h2>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
-<li><a href="#S104">?PR?_BUFSIZE?IPC</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
-<p><br><b>Called from:</b></p>
-<ul>
-<li><a href="#S112">?PR?_IPC_TXDATA?IPC</a></li>
-</ul>
-
-<h2><a name="S112"></a>?PR?_IPC_TXDATA?IPC (C:0014B2H - C:0014D8H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S140">?PR?_XMEMCPY?UTILITIES</a>)<p>
+<h2><a name="S144"></a>?PR?_XMEMCLEAR_FF?UTILITIES (C:002224H - C:002250H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S108">?PR?_IPCTX?IPC</a></li>
-<li><a href="#S140">?PR?_XMEMCPY?UTILITIES</a></li>
-</ul>
-
-<h2><a name="S116"></a>?PR?_IPC_INITIALIZE?IPC (C:00149FH - C:0014ABH)</h2>
-<p><br><b>Calls to:</b></p>
-<ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
-</ul>
-
-<h2><a name="S146"></a>?PR?_XMEMCLEAR_FF?UTILITIES (C:0024F5H - C:002521H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>)<p>
-<p><br><b>Calls to:</b></p>
-<ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <h2><a name="S2"></a>?PR?YC_CHECK_IS_CONNECTED?BLUETOOTH (C:0006C2H - C:0006CEH)</h2>
-<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S89">?PR?LED_TIMER500MS?SYS</a>)<p>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S87">?PR?LED_TIMER500MS?SYS</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S78">?PR?LED_HANDLE?LED</a></li>
-<li><a href="#S89">?PR?LED_TIMER500MS?SYS</a></li>
+<li><a href="#S76">?PR?LED_HANDLE?LED</a></li>
+<li><a href="#S87">?PR?LED_TIMER500MS?SYS</a></li>
 </ul>
 
-<h2><a name="S3"></a>?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH (C:0007FEH - C:000832H)</h2>
+<h2><a name="S3"></a>?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH (C:000F78H - C:000FACH)</h2>
 <p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>) Top=8 Bytes (<a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
@@ -200,86 +165,87 @@
 <li><a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S4"></a>?PR?YC_CLEAR_RECONNECT_FLAG?BLUETOOTH (C:000F69H - C:000F6EH)</h2>
-<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S87">?PR?_KB_CB_EVENT?SYS</a>)<p>
+<h2><a name="S4"></a>?PR?YC_CLEAR_RECONNECT_FLAG?BLUETOOTH (C:000FC5H - C:000FCAH)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S85">?PR?_KB_CB_EVENT?SYS</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
 </ul>
 
-<h2><a name="S5"></a>?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH (C:0008DFH - C:0008F5H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=12 Bytes (<a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
+<h2><a name="S5"></a>?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH (C:000FCBH - C:000FE2H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S108">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=12 Bytes (<a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S108">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
-<li><a href="#S92">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S90">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
 </ul>
 
-<h2><a name="S7"></a>?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH (C:0010F1H - C:001134H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S186">?PR?_IIC_WRITEBLOCK?IIC</a>) Top=2 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S7"></a>?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH (C:0010B4H - C:0010F5H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S184">?PR?_IIC_WRITEBLOCK?IIC</a>) Top=2 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S148">?PR?_DELAY1MS?UTILITIES</a></li>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
-<li><a href="#S186">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S146">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S155">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S184">?PR?_IIC_WRITEBLOCK?IIC</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S40"></a>?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS (C:000833H - C:0008DEH)</h2>
+<h2><a name="S40"></a>?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS (C:000FEBH - C:00109BH)</h2>
 <p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a>) Top=10 Bytes (<a href="#S3">?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S148">?PR?_DELAY1MS?UTILITIES</a></li>
-<li><a href="#S182">?PR?_IIC_READ?IIC</a></li>
-<li><a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S146">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S180">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S108">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
 <li><a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
-<li><a href="#S92">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S90">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
 <li><a href="#S3">?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH</a></li>
-<li><a href="#S6">?PR?YC_START_RECONNECT?BLUETOOTH</a></li>
 </ul>
 
-<h2><a name="S42"></a>?PR?_IPC_TXHIDDATA?KB_PROCESS (C:00140EH - C:001498H)</h2>
+<h2><a name="S42"></a>?PR?_IPC_TXHIDDATA?KB_PROCESS (C:000D83H - C:000E0CH)</h2>
 <p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S3">?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH</a>) Top=6 Bytes (<a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
-<li><a href="#S114">?PR?_IPC_TX24GDATA?IPC</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
+<li><a href="#S112">?PR?_IPC_TX24GDATA?IPC</a></li>
 <li><a href="#S3">?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
+<li><a href="#S45">?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS</a></li>
 <li><a href="#S47">?PR?KB_24G_GET_LED_STATUS?KB_PROCESS</a></li>
-<li><a href="#S94">?PR?KB_CB_TIMER100MS?SYS</a></li>
+<li><a href="#S92">?PR?KB_CB_TIMER100MS?SYS</a></li>
 </ul>
 
-<h2><a name="S44"></a>?PR?_KB_SET_MULTIKEY?KB_PROCESS (C:0017D7H - C:0017F1H)</h2>
+<h2><a name="S44"></a>?PR?_KB_SET_MULTIKEY?KB_PROCESS (C:000CB2H - C:000CCCH)</h2>
 <p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S56">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S56">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S45"></a>?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS (C:0013D5H - C:00140DH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S144">?PR?_XMEMCLEAR?UTILITIES</a>) Top=4 Bytes (<a href="#S50">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a>)<p>
+<h2><a name="S45"></a>?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS (C:000E0DH - C:000E46H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>) Top=4 Bytes (<a href="#S50">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S144">?PR?_XMEMCLEAR?UTILITIES</a></li>
+<li><a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+<li><a href="#S142">?PR?_XMEMCLEAR?UTILITIES</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -287,12 +253,12 @@
 <li><a href="#S50">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S47"></a>?PR?KB_24G_GET_LED_STATUS?KB_PROCESS (C:001552H - C:0015B6H)</h2>
+<h2><a name="S47"></a>?PR?KB_24G_GET_LED_STATUS?KB_PROCESS (C:000EBDH - C:000F1FH)</h2>
 <p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>) Top=2 Bytes (<a href="#S48">?PR?KB_MOTION?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
 <li><a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
-<li><a href="#S144">?PR?_XMEMCLEAR?UTILITIES</a></li>
+<li><a href="#S142">?PR?_XMEMCLEAR?UTILITIES</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -300,12 +266,12 @@
 <li><a href="#S48">?PR?KB_MOTION?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S48"></a>?PR?KB_MOTION?KB_PROCESS (C:00151EH - C:001551H)</h2>
+<h2><a name="S48"></a>?PR?KB_MOTION?KB_PROCESS (C:000F20H - C:000F52H)</h2>
 <p><br><b>Maximum Stack:</b> Bottom=14 Bytes (<a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>) Top=2 Bytes (<a href="#S50">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
 <li><a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
-<li><a href="#S119">?PR?IPC_ISTXBUFFEMPTY?IPC</a></li>
+<li><a href="#S117">?PR?IPC_ISTXBUFFEMPTY?IPC</a></li>
 <li><a href="#S47">?PR?KB_24G_GET_LED_STATUS?KB_PROCESS</a></li>
 <li><a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
 </ul>
@@ -315,8 +281,8 @@
 <li><a href="#S50">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S50"></a>?PR?KB_NEED_KEYSCAN?KB_PROCESS (C:00137FH - C:0013D4H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=14 Bytes (<a href="#S48">?PR?KB_MOTION?KB_PROCESS</a>) Top=2 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S50"></a>?PR?KB_NEED_KEYSCAN?KB_PROCESS (C:000E47H - C:000EBCH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=14 Bytes (<a href="#S48">?PR?KB_MOTION?KB_PROCESS</a>) Top=2 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
 <li><a href="#S45">?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS</a></li>
@@ -325,18 +291,18 @@
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S51"></a>?PR?_KB_MOTION_KEYSCAN?KB_PROCESS (C:000C5DH - C:000EB2H)</h2>
+<h2><a name="S51"></a>?PR?_KB_MOTION_KEYSCAN?KB_PROCESS (C:00091DH - C:000B55H)</h2>
 <p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>) Top=4 Bytes (<a href="#S48">?PR?KB_MOTION?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 <li><a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
 <li><a href="#S56">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a></li>
-<li><a href="#S144">?PR?_XMEMCLEAR?UTILITIES</a></li>
-<li><a href="#S140">?PR?_XMEMCPY?UTILITIES</a></li>
+<li><a href="#S142">?PR?_XMEMCLEAR?UTILITIES</a></li>
+<li><a href="#S138">?PR?_XMEMCPY?UTILITIES</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -344,18 +310,18 @@
 <li><a href="#S48">?PR?KB_MOTION?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S53"></a>?PR?_KEY_REPLACE?KB_PROCESS (C:0017F2H - C:001811H)</h2>
+<h2><a name="S53"></a>?PR?_KB_COMBINATION_KEY_PRESS?KB_PROCESS (C:0017DFH - C:001803H)</h2>
 <p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S54">?PR?_KEY_FN_FUNCTION?KB_PROCESS</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S54">?PR?_KEY_FN_FUNCTION?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S54"></a>?PR?_KEY_FN_FUNCTION?KB_PROCESS (C:001812H - C:00197BH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S53">?PR?_KEY_REPLACE?KB_PROCESS</a>) Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<h2><a name="S54"></a>?PR?_KEY_FN_FUNCTION?KB_PROCESS (C:001804H - C:0018CEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S53">?PR?_KB_COMBINATION_KEY_PRESS?KB_PROCESS</a>) Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S53">?PR?_KEY_REPLACE?KB_PROCESS</a></li>
+<li><a href="#S53">?PR?_KB_COMBINATION_KEY_PRESS?KB_PROCESS</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -363,11 +329,11 @@
 <li><a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S56"></a>?PR?_KB_MULTIKEY_SETUP?KB_PROCESS (C:001ED3H - C:00214EH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>)<p>
+<h2><a name="S56"></a>?PR?_KB_MULTIKEY_SETUP?KB_PROCESS (C:000B56H - C:000CB1H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 <li><a href="#S44">?PR?_KB_SET_MULTIKEY?KB_PROCESS</a></li>
 </ul>
 
@@ -376,32 +342,32 @@
 <li><a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S58"></a>?PR?_BIT_COUNT?KEYSCAN (C:001B78H - C:001B85H)</h2>
+<h2><a name="S58"></a>?PR?_BIT_COUNT?KEYSCAN (C:001ACBH - C:001AD8H)</h2>
 <p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S59"></a>?PR?_KEYIN?KEYSCAN (C:001C00H - C:001C8FH)</h2>
+<h2><a name="S59"></a>?PR?_KEYIN?KEYSCAN (C:001B53H - C:001BA8H)</h2>
 <p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S60"></a>?PR?_KEYOUT?KEYSCAN (C:001C90H - C:001D72H)</h2>
+<h2><a name="S60"></a>?PR?_KEYOUT?KEYSCAN (C:001BA9H - C:001C51H)</h2>
 <p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S61"></a>?PR?KSRAWINITIALIZE?KEYSCAN (C:0010D4H - C:0010F0H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a>) Top=6 Bytes (<a href="#S65">?PR?KS_INITIALIZE?KEYSCAN</a>)<p>
+<h2><a name="S61"></a>?PR?KSRAWINITIALIZE?KEYSCAN (C:001630H - C:00164CH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a>) Top=6 Bytes (<a href="#S65">?PR?KS_INITIALIZE?KEYSCAN</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -409,8 +375,8 @@
 <li><a href="#S65">?PR?KS_INITIALIZE?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S65"></a>?PR?KS_INITIALIZE?KEYSCAN (C:000FC1H - C:000FCCH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S61">?PR?KSRAWINITIALIZE?KEYSCAN</a>) Top=4 Bytes (<a href="#S80">?PR?SYSTEM_HARDWARE_INIT?SYS</a>)<p>
+<h2><a name="S65"></a>?PR?KS_INITIALIZE?KEYSCAN (C:001362H - C:00136CH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S61">?PR?KSRAWINITIALIZE?KEYSCAN</a>) Top=4 Bytes (<a href="#S78">?PR?SYSTEM_HARDWARE_INIT?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
 <li><a href="#S61">?PR?KSRAWINITIALIZE?KEYSCAN</a></li>
@@ -418,35 +384,35 @@
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
-<li><a href="#S80">?PR?SYSTEM_HARDWARE_INIT?SYS</a></li>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S78">?PR?SYSTEM_HARDWARE_INIT?SYS</a></li>
 </ul>
 
-<h2><a name="S66"></a>?PR?KS_UNISTALL?KEYSCAN (C:001235H - C:0012DFH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S172">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a>) Top=2 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S66"></a>?PR?KS_UNISTALL?KEYSCAN (C:0013CFH - C:001479H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S170">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a>) Top=2 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S172">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a></li>
-<li><a href="#S178">?PR?GPIO_FILLPD?GPIO</a></li>
+<li><a href="#S170">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a></li>
+<li><a href="#S176">?PR?GPIO_FILLPD?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S68"></a>?PR?KS_SCANMATRIX?KEYSCAN (C:001D73H - C:001ED2H)</h2>
+<h2><a name="S68"></a>?PR?KS_SCANMATRIX?KEYSCAN (C:001C52H - C:001DB1H)</h2>
 <p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S70"></a>?PR?_ARRAY_IS_EMPTY?KEYSCAN (C:001B86H - C:001BB5H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<h2><a name="S70"></a>?PR?_ARRAY_IS_EMPTY?KEYSCAN (C:001AD9H - C:001B08H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -454,13 +420,13 @@
 <li><a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S72"></a>?PR?KS_GETCURRENTEVT?KEYSCAN (C:00197CH - C:001B77H)</h2>
+<h2><a name="S72"></a>?PR?KS_GETCURRENTEVT?KEYSCAN (C:0018CFH - C:001ACAH)</h2>
 <p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S68">?PR?KS_SCANMATRIX?KEYSCAN</a>) Top=4 Bytes (<a href="#S48">?PR?KB_MOTION?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
 <li><a href="#S70">?PR?_ARRAY_IS_EMPTY?KEYSCAN</a></li>
 <li><a href="#S58">?PR?_BIT_COUNT?KEYSCAN</a></li>
-<li><a href="#S149">?PR?_COMPARE_STR?UTILITIES</a></li>
+<li><a href="#S147">?PR?_COMPARE_STR?UTILITIES</a></li>
 <li><a href="#S54">?PR?_KEY_FN_FUNCTION?KB_PROCESS</a></li>
 <li><a href="#S59">?PR?_KEYIN?KEYSCAN</a></li>
 <li><a href="#S60">?PR?_KEYOUT?KEYSCAN</a></li>
@@ -472,305 +438,307 @@
 <li><a href="#S48">?PR?KB_MOTION?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S75"></a>?PR?LED_ALL_SHUTDOWN?LED (C:000FEEH - C:001005H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S167">?PR?_GPIO_SETOUTPUT?GPIO</a>) Top=2 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S75"></a>?PR?LED_ALL_SHUTDOWN?LED (C:001330H - C:001345H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S165">?PR?_GPIO_SETOUTPUT?GPIO</a>) Top=2 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S167">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+<li><a href="#S165">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S76"></a>?PR?LED_DEVICE_POWERON?LED (C:0007F8H - C:0007FDH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S157">?PR?_GPIO_SETOUT?GPIO</a>) Top=2 Bytes (<a href="#S94">?PR?KB_CB_TIMER100MS?SYS</a>)<p>
+<h2><a name="S76"></a>?PR?LED_HANDLE?LED (C:0006CFH - C:000783H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S155">?PR?_GPIO_SETOUT?GPIO</a>) Top=2 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S155">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S81">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+<li><a href="#S2">?PR?YC_CHECK_IS_CONNECTED?BLUETOOTH</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S94">?PR?KB_CB_TIMER100MS?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S77"></a>?PR?LED_DEVICE_POWEROFF?LED (C:0017ACH - C:0017B2H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S157">?PR?_GPIO_SETOUT?GPIO</a>) Top=2 Bytes (<a href="#S94">?PR?KB_CB_TIMER100MS?SYS</a>)<p>
+<h2><a name="S77"></a>?PR?SYSTEM_CLEAR_MEM?SYS (C:000CF9H - C:000D82H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S142">?PR?_XMEMCLEAR?UTILITIES</a>) Top=4 Bytes (<a href="#S79">?PR?SYSTEM_SOFTWARE_INIT?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S142">?PR?_XMEMCLEAR?UTILITIES</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S94">?PR?KB_CB_TIMER100MS?SYS</a></li>
+<li><a href="#S79">?PR?SYSTEM_SOFTWARE_INIT?SYS</a></li>
 </ul>
 
-<h2><a name="S78"></a>?PR?LED_HANDLE?LED (C:0006CFH - C:00078AH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S157">?PR?_GPIO_SETOUT?GPIO</a>) Top=2 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S78"></a>?PR?SYSTEM_HARDWARE_INIT?SYS (C:00132EH - C:00132FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S65">?PR?KS_INITIALIZE?KEYSCAN</a>) Top=2 Bytes (<a href="#S85">?PR?_KB_CB_EVENT?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
-<li><a href="#S83">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
-<li><a href="#S2">?PR?YC_CHECK_IS_CONNECTED?BLUETOOTH</a></li>
+<li><a href="#S65">?PR?KS_INITIALIZE?KEYSCAN</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
 </ul>
 
-<h2><a name="S79"></a>?PR?SYSTEM_CLEAR_MEM?SYS (C:000EDFH - C:000F68H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S144">?PR?_XMEMCLEAR?UTILITIES</a>) Top=4 Bytes (<a href="#S81">?PR?SYSTEM_SOFTWARE_INIT?SYS</a>)<p>
+<h2><a name="S79"></a>?PR?SYSTEM_SOFTWARE_INIT?SYS (C:000F5BH - C:000F77H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S97">?PR?YC_ADC_INIT?ADC</a>) Top=2 Bytes (<a href="#S85">?PR?_KB_CB_EVENT?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S144">?PR?_XMEMCLEAR?UTILITIES</a></li>
+<li><a href="#S77">?PR?SYSTEM_CLEAR_MEM?SYS</a></li>
+<li><a href="#S97">?PR?YC_ADC_INIT?ADC</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S81">?PR?SYSTEM_SOFTWARE_INIT?SYS</a></li>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
 </ul>
 
-<h2><a name="S80"></a>?PR?SYSTEM_HARDWARE_INIT?SYS (C:000FECH - C:000FEDH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S65">?PR?KS_INITIALIZE?KEYSCAN</a>) Top=2 Bytes (<a href="#S87">?PR?_KB_CB_EVENT?SYS</a>)<p>
+<h2><a name="S81"></a>?PR?SYSTEM_LONG_SLEEP?SYS (C:0007F1H - C:0007F7H)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S88">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S90">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S76">?PR?LED_HANDLE?LED</a></li>
+<li><a href="#S88">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+<li><a href="#S89">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S87"></a>?PR?LED_TIMER500MS?SYS (C:000796H - C:0007F0H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S173">?PR?_GPIO_FLIPOUTBIT?GPIO</a>) Top=2 Bytes (<a href="#S91">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S65">?PR?KS_INITIALIZE?KEYSCAN</a></li>
+<li><a href="#S173">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+<li><a href="#S155">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S2">?PR?YC_CHECK_IS_CONNECTED?BLUETOOTH</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S91">?PR?KB_CB_TIMER500MS?SYS</a></li>
 </ul>
 
-<h2><a name="S81"></a>?PR?SYSTEM_SOFTWARE_INIT?SYS (C:00214FH - C:00216BH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S99">?PR?YC_ADC_INIT?ADC</a>) Top=2 Bytes (<a href="#S87">?PR?_KB_CB_EVENT?SYS</a>)<p>
+<h2><a name="S88"></a>?PR?YC_CONNECT_TIMEOUT_500MS?SYS (C:001DCDH - C:001E0FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S108">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=2 Bytes (<a href="#S91">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S79">?PR?SYSTEM_CLEAR_MEM?SYS</a></li>
-<li><a href="#S99">?PR?YC_ADC_INIT?ADC</a></li>
+<li><a href="#S108">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S81">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S91">?PR?KB_CB_TIMER500MS?SYS</a></li>
 </ul>
 
-<h2><a name="S83"></a>?PR?SYSTEM_LONG_SLEEP?SYS (C:0009F2H - C:0009FAH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=4 Bytes (<a href="#S90">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a>)<p>
+<h2><a name="S90"></a>?PR?KB_BUTTON_PRESS_TIMER500MS?SYS (C:001E5CH - C:001EE2H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a>) Top=2 Bytes (<a href="#S91">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S146">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S81">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+<li><a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S91">?PR?KB_CB_TIMER500MS?SYS</a></li>
 </ul>
 
+<h2><a name="S93"></a>?PR?KB_CB_INIT?SYS (C:001526H - C:00152BH)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
-<li><a href="#S92">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
-<li><a href="#S78">?PR?LED_HANDLE?LED</a></li>
-<li><a href="#S90">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
-<li><a href="#S91">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S89"></a>?PR?LED_TIMER500MS?SYS (C:00079DH - C:0007F7H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S175">?PR?_GPIO_FLIPOUTBIT?GPIO</a>) Top=2 Bytes (<a href="#S93">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<h2><a name="S97"></a>?PR?YC_ADC_INIT?ADC (C:002065H - C:002128H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S79">?PR?SYSTEM_SOFTWARE_INIT?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S175">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
-<li><a href="#S2">?PR?YC_CHECK_IS_CONNECTED?BLUETOOTH</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S93">?PR?KB_CB_TIMER500MS?SYS</a></li>
+<li><a href="#S79">?PR?SYSTEM_SOFTWARE_INIT?SYS</a></li>
 </ul>
 
-<h2><a name="S90"></a>?PR?YC_CONNECT_TIMEOUT_500MS?SYS (C:0009B3H - C:0009F1H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=2 Bytes (<a href="#S93">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<h2><a name="S98"></a>?PR?YC_ADC_CHECK?ADC (C:001EE3H - C:001FCEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S100">?PR?YC_ADC_CHECK_TIMER500MS?ADC</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
-<li><a href="#S83">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S93">?PR?KB_CB_TIMER500MS?SYS</a></li>
+<li><a href="#S100">?PR?YC_ADC_CHECK_TIMER500MS?ADC</a></li>
 </ul>
 
-<h2><a name="S92"></a>?PR?KB_BUTTON_PRESS_TIMER500MS?SYS (C:0009FBH - C:000A7DH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a>) Top=2 Bytes (<a href="#S93">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<h2><a name="S100"></a>?PR?YC_ADC_CHECK_TIMER500MS?ADC (C:001E4BH - C:001E5BH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S98">?PR?YC_ADC_CHECK?ADC</a>) Top=2 Bytes (<a href="#S91">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S148">?PR?_DELAY1MS?UTILITIES</a></li>
-<li><a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
-<li><a href="#S83">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
-<li><a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a></li>
+<li><a href="#S98">?PR?YC_ADC_CHECK?ADC</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S93">?PR?KB_CB_TIMER500MS?SYS</a></li>
+<li><a href="#S91">?PR?KB_CB_TIMER500MS?SYS</a></li>
 </ul>
 
-<h2><a name="S95"></a>?PR?KB_CB_INIT?SYS (C:001499H - C:00149EH)</h2>
-<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S102"></a>?PR?_BUFSIZE?IPC (C:002129H - C:002182H)</h2>
+<p><br><b>Maximum Stack:</b> Top=10 Bytes (<a href="#S106">?PR?_IPCTX?IPC</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S106">?PR?_IPCTX?IPC</a></li>
 </ul>
 
-<h2><a name="S99"></a>?PR?YC_ADC_INIT?ADC (C:00216CH - C:0022E1H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S81">?PR?SYSTEM_SOFTWARE_INIT?SYS</a>)<p>
+<h2><a name="S104"></a>?PR?_IPCRX?IPC (C:002183H - C:0021D2H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S118">?PR?IPC_DEALSINGLESTEP?IPC</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S81">?PR?SYSTEM_SOFTWARE_INIT?SYS</a></li>
+<li><a href="#S118">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
 </ul>
 
-<h2><a name="S100"></a>?PR?YC_ADC_CHECK?ADC (C:0022FDH - C:0023E8H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S102">?PR?YC_ADC_CHECK_TIMER500MS?ADC</a>)<p>
+<h2><a name="S106"></a>?PR?_IPCTX?IPC (C:000820H - C:0008B4H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S102">?PR?_BUFSIZE?IPC</a>) Top=8 Bytes (<a href="#S110">?PR?_IPC_TXDATA?IPC</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
+<li><a href="#S102">?PR?_BUFSIZE?IPC</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S102">?PR?YC_ADC_CHECK_TIMER500MS?ADC</a></li>
+<li><a href="#S110">?PR?_IPC_TXDATA?IPC</a></li>
 </ul>
 
-<h2><a name="S102"></a>?PR?YC_ADC_CHECK_TIMER500MS?ADC (C:0023E9H - C:0023F9H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S100">?PR?YC_ADC_CHECK?ADC</a>) Top=2 Bytes (<a href="#S93">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<h2><a name="S108"></a>?PR?_IPC_TXCONTROLCMD?IPC (C:0007F8H - C:00081FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=14 Bytes (<a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S100">?PR?YC_ADC_CHECK?ADC</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S93">?PR?KB_CB_TIMER500MS?SYS</a></li>
-</ul>
-
-<h2><a name="S104"></a>?PR?_BUFSIZE?IPC (C:0023FAH - C:002453H)</h2>
-<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S108">?PR?_IPCTX?IPC</a>)<p>
-<p><br><b>Called from:</b></p>
-<ul>
-<li><a href="#S108">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S88">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+<li><a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a></li>
+<li><a href="#S89">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
 </ul>
 
-<h2><a name="S106"></a>?PR?_IPCRX?IPC (C:002454H - C:0024A3H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S120">?PR?IPC_DEALSINGLESTEP?IPC</a>)<p>
+<h2><a name="S110"></a>?PR?_IPC_TXDATA?IPC (C:0008B5H - C:0008D9H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S138">?PR?_XMEMCPY?UTILITIES</a>) Top=8 Bytes (<a href="#S112">?PR?_IPC_TX24GDATA?IPC</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S106">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S138">?PR?_XMEMCPY?UTILITIES</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S120">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
+<li><a href="#S112">?PR?_IPC_TX24GDATA?IPC</a></li>
 </ul>
 
-<h2><a name="S110"></a>?PR?_IPC_TXCONTROLCMD?IPC (C:0008F6H - C:00091DH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=14 Bytes (<a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a>)<p>
+<h2><a name="S112"></a>?PR?_IPC_TX24GDATA?IPC (C:000F53H - C:000F5AH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S110">?PR?_IPC_TXDATA?IPC</a>) Top=8 Bytes (<a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
-</ul>
-
-<p><br><b>Called from:</b></p>
-<ul>
-<li><a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
-<li><a href="#S83">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
-<li><a href="#S90">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
-<li><a href="#S5">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a></li>
-<li><a href="#S91">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+<li><a href="#S110">?PR?_IPC_TXDATA?IPC</a></li>
 </ul>
 
-<h2><a name="S114"></a>?PR?_IPC_TX24GDATA?IPC (C:0014ACH - C:0014B1H)</h2>
-<p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S117"></a>?PR?IPC_WAITLPM?IPC (C:000FB4H - C:000FC0H)</h2>
-<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S115"></a>?PR?IPC_WAITLPM?IPC (C:001519H - C:001525H)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S148">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S146">?PR?_DELAY1MS?UTILITIES</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S118"></a>?PR?IPC_ABANDONLPM?IPC (C:0017B3H - C:0017BEH)</h2>
-<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S116"></a>?PR?IPC_ABANDONLPM?IPC (C:0017B7H - C:0017C2H)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S119"></a>?PR?IPC_ISTXBUFFEMPTY?IPC (C:0017BFH - C:0017D6H)</h2>
+<h2><a name="S117"></a>?PR?IPC_ISTXBUFFEMPTY?IPC (C:000FADH - C:000FC4H)</h2>
 <p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S48">?PR?KB_MOTION?KB_PROCESS</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S48">?PR?KB_MOTION?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S120"></a>?PR?IPC_DEALSINGLESTEP?IPC (C:0016E3H - C:0017A9H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S106">?PR?_IPCRX?IPC</a>) Top=2 Bytes (<a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<h2><a name="S118"></a>?PR?IPC_DEALSINGLESTEP?IPC (C:0016EEH - C:0017B4H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S104">?PR?_IPCRX?IPC</a>) Top=2 Bytes (<a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
-<li><a href="#S106">?PR?_IPCRX?IPC</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
+<li><a href="#S104">?PR?_IPCRX?IPC</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S96">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+<li><a href="#S94">?PR?YC_SYSTEM_MAIN?SYS</a></li>
 </ul>
 
-<h2><a name="S140"></a>?PR?_XMEMCPY?UTILITIES (C:000C1AH - C:000C5CH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>)<p>
+<h2><a name="S138"></a>?PR?_XMEMCPY?UTILITIES (C:0008DAH - C:00091CH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=12 Bytes (<a href="#S180">?PR?_IIC_READ?IIC</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S112">?PR?_IPC_TXDATA?IPC</a></li>
+<li><a href="#S180">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S110">?PR?_IPC_TXDATA?IPC</a></li>
 <li><a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S142"></a>?PR?_DMEMCPY?UTILITIES (C:0024B1H - C:0024F4H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=8 Bytes (<a href="#S184">?PR?_IIC_WRITE?IIC</a>)<p>
+<h2><a name="S140"></a>?PR?_DMEMCPY?UTILITIES (C:0021E0H - C:002223H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=8 Bytes (<a href="#S182">?PR?_IIC_WRITE?IIC</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S184">?PR?_IIC_WRITE?IIC</a></li>
+<li><a href="#S182">?PR?_IIC_WRITE?IIC</a></li>
 </ul>
 
-<h2><a name="S144"></a>?PR?_XMEMCLEAR?UTILITIES (C:000EB3H - C:000EDEH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S79">?PR?SYSTEM_CLEAR_MEM?SYS</a>)<p>
+<h2><a name="S142"></a>?PR?_XMEMCLEAR?UTILITIES (C:000CCDH - C:000CF8H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S77">?PR?SYSTEM_CLEAR_MEM?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -778,27 +746,27 @@
 <li><a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
 <li><a href="#S45">?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS</a></li>
 <li><a href="#S47">?PR?KB_24G_GET_LED_STATUS?KB_PROCESS</a></li>
-<li><a href="#S79">?PR?SYSTEM_CLEAR_MEM?SYS</a></li>
+<li><a href="#S77">?PR?SYSTEM_CLEAR_MEM?SYS</a></li>
 </ul>
 
-<h2><a name="S148"></a>?PR?_DELAY1MS?UTILITIES (C:000A7EH - C:000A95H)</h2>
+<h2><a name="S146"></a>?PR?_DELAY1MS?UTILITIES (C:00109CH - C:0010B3H)</h2>
 <p><br><b>Maximum Stack:</b> Top=12 Bytes (<a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S186">?PR?_IIC_WRITEBLOCK?IIC</a></li>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S184">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
 <li><a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
-<li><a href="#S117">?PR?IPC_WAITLPM?IPC</a></li>
-<li><a href="#S92">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
-<li><a href="#S91">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+<li><a href="#S115">?PR?IPC_WAITLPM?IPC</a></li>
+<li><a href="#S90">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S89">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
 <li><a href="#S7">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
 </ul>
 
-<h2><a name="S149"></a>?PR?_COMPARE_STR?UTILITIES (C:001BB6H - C:001BFFH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<h2><a name="S147"></a>?PR?_COMPARE_STR?UTILITIES (C:001B09H - C:001B52H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -806,105 +774,103 @@
 <li><a href="#S72">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S151"></a>?PR?_GPIOSETBIT?GPIO (C:001073H - C:0010D3H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=12 Bytes (<a href="#S161">?PR?_GPIO_SETPD?GPIO</a>)<p>
+<h2><a name="S149"></a>?PR?_GPIOSETBIT?GPIO (C:0015CFH - C:00162FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=12 Bytes (<a href="#S159">?PR?_GPIO_SETPD?GPIO</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S163">?PR?_GPIO_SETOE?GPIO</a></li>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
-<li><a href="#S161">?PR?_GPIO_SETPD?GPIO</a></li>
-<li><a href="#S159">?PR?_GPIO_SETPU?GPIO</a></li>
+<li><a href="#S161">?PR?_GPIO_SETOE?GPIO</a></li>
+<li><a href="#S155">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S159">?PR?_GPIO_SETPD?GPIO</a></li>
+<li><a href="#S157">?PR?_GPIO_SETPU?GPIO</a></li>
 </ul>
 
-<h2><a name="S154"></a>?PR?_GPIOGETBIT?GPIO (C:0014DFH - C:00151DH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S190">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S175">?PR?_GPIO_FLIPOUTBIT?GPIO</a>)<p>
+<h2><a name="S152"></a>?PR?_GPIOGETBIT?GPIO (C:00153FH - C:00157DH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S188">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S173">?PR?_GPIO_FLIPOUTBIT?GPIO</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S175">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+<li><a href="#S173">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
 </ul>
 
-<h2><a name="S156"></a>?PR?_GPIO_GETINPUTSTATUS?GPIO (C:0014D9H - C:0014DEH)</h2>
-<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S172">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a>)<p>
+<h2><a name="S154"></a>?PR?_GPIO_GETINPUTSTATUS?GPIO (C:001539H - C:00153EH)</h2>
+<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S170">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S172">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a></li>
+<li><a href="#S170">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a></li>
 </ul>
 
-<h2><a name="S157"></a>?PR?_GPIO_SETOUT?GPIO (C:00078BH - C:00079CH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S151">?PR?_GPIOSETBIT?GPIO</a>) Top=6 Bytes (<a href="#S167">?PR?_GPIO_SETOUTPUT?GPIO</a>)<p>
+<h2><a name="S155"></a>?PR?_GPIO_SETOUT?GPIO (C:000784H - C:000795H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S149">?PR?_GPIOSETBIT?GPIO</a>) Top=6 Bytes (<a href="#S165">?PR?_GPIO_SETOUTPUT?GPIO</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S151">?PR?_GPIOSETBIT?GPIO</a></li>
+<li><a href="#S149">?PR?_GPIOSETBIT?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S175">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
-<li><a href="#S167">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
-<li><a href="#S94">?PR?KB_CB_TIMER100MS?SYS</a></li>
-<li><a href="#S77">?PR?LED_DEVICE_POWEROFF?LED</a></li>
-<li><a href="#S76">?PR?LED_DEVICE_POWERON?LED</a></li>
-<li><a href="#S78">?PR?LED_HANDLE?LED</a></li>
-<li><a href="#S89">?PR?LED_TIMER500MS?SYS</a></li>
+<li><a href="#S173">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+<li><a href="#S165">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S92">?PR?KB_CB_TIMER100MS?SYS</a></li>
+<li><a href="#S76">?PR?LED_HANDLE?LED</a></li>
+<li><a href="#S87">?PR?LED_TIMER500MS?SYS</a></li>
 <li><a href="#S7">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
 </ul>
 
-<h2><a name="S159"></a>?PR?_GPIO_SETPU?GPIO (C:001022H - C:001032H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S151">?PR?_GPIOSETBIT?GPIO</a>) Top=10 Bytes (<a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<h2><a name="S157"></a>?PR?_GPIO_SETPU?GPIO (C:00157EH - C:00158EH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S149">?PR?_GPIOSETBIT?GPIO</a>) Top=10 Bytes (<a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S151">?PR?_GPIOSETBIT?GPIO</a></li>
+<li><a href="#S149">?PR?_GPIOSETBIT?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a></li>
-<li><a href="#S167">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+<li><a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S165">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
 </ul>
 
-<h2><a name="S161"></a>?PR?_GPIO_SETPD?GPIO (C:001062H - C:001072H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S151">?PR?_GPIOSETBIT?GPIO</a>) Top=10 Bytes (<a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<h2><a name="S159"></a>?PR?_GPIO_SETPD?GPIO (C:0015BEH - C:0015CEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S149">?PR?_GPIOSETBIT?GPIO</a>) Top=10 Bytes (<a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S151">?PR?_GPIOSETBIT?GPIO</a></li>
+<li><a href="#S149">?PR?_GPIOSETBIT?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a></li>
 </ul>
 
-<h2><a name="S163"></a>?PR?_GPIO_SETOE?GPIO (C:001033H - C:001043H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S151">?PR?_GPIOSETBIT?GPIO</a>) Top=10 Bytes (<a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<h2><a name="S161"></a>?PR?_GPIO_SETOE?GPIO (C:0015ADH - C:0015BDH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S149">?PR?_GPIOSETBIT?GPIO</a>) Top=10 Bytes (<a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S151">?PR?_GPIOSETBIT?GPIO</a></li>
+<li><a href="#S149">?PR?_GPIOSETBIT?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S165">?PR?_GPIO_SETINPUT?GPIO</a></li>
-<li><a href="#S167">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+<li><a href="#S163">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S165">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
 </ul>
 
-<h2><a name="S165"></a>?PR?_GPIO_SETINPUT?GPIO (C:001044H - C:001061H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S161">?PR?_GPIO_SETPD?GPIO</a>) Top=8 Bytes (<a href="#S61">?PR?KSRAWINITIALIZE?KEYSCAN</a>)<p>
+<h2><a name="S163"></a>?PR?_GPIO_SETINPUT?GPIO (C:00158FH - C:0015ACH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S159">?PR?_GPIO_SETPD?GPIO</a>) Top=8 Bytes (<a href="#S61">?PR?KSRAWINITIALIZE?KEYSCAN</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S163">?PR?_GPIO_SETOE?GPIO</a></li>
-<li><a href="#S161">?PR?_GPIO_SETPD?GPIO</a></li>
-<li><a href="#S159">?PR?_GPIO_SETPU?GPIO</a></li>
+<li><a href="#S161">?PR?_GPIO_SETOE?GPIO</a></li>
+<li><a href="#S159">?PR?_GPIO_SETPD?GPIO</a></li>
+<li><a href="#S157">?PR?_GPIO_SETPU?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -913,13 +879,13 @@
 <li><a href="#S61">?PR?KSRAWINITIALIZE?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S167"></a>?PR?_GPIO_SETOUTPUT?GPIO (C:001006H - C:001021H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S163">?PR?_GPIO_SETOE?GPIO</a>) Top=4 Bytes (<a href="#S75">?PR?LED_ALL_SHUTDOWN?LED</a>)<p>
+<h2><a name="S165"></a>?PR?_GPIO_SETOUTPUT?GPIO (C:001346H - C:001361H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S161">?PR?_GPIO_SETOE?GPIO</a>) Top=4 Bytes (<a href="#S75">?PR?LED_ALL_SHUTDOWN?LED</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S163">?PR?_GPIO_SETOE?GPIO</a></li>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
-<li><a href="#S159">?PR?_GPIO_SETPU?GPIO</a></li>
+<li><a href="#S161">?PR?_GPIO_SETOE?GPIO</a></li>
+<li><a href="#S155">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S157">?PR?_GPIO_SETPU?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -927,11 +893,11 @@
 <li><a href="#S75">?PR?LED_ALL_SHUTDOWN?LED</a></li>
 </ul>
 
-<h2><a name="S172"></a>?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO (C:0012E0H - C:0012F2H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S156">?PR?_GPIO_GETINPUTSTATUS?GPIO</a>) Top=4 Bytes (<a href="#S66">?PR?KS_UNISTALL?KEYSCAN</a>)<p>
+<h2><a name="S170"></a>?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO (C:00147AH - C:00148CH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S154">?PR?_GPIO_GETINPUTSTATUS?GPIO</a>) Top=4 Bytes (<a href="#S66">?PR?KS_UNISTALL?KEYSCAN</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S156">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+<li><a href="#S154">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -939,65 +905,66 @@
 <li><a href="#S66">?PR?KS_UNISTALL?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S175"></a>?PR?_GPIO_FLIPOUTBIT?GPIO (C:002561H - C:00257DH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S154">?PR?_GPIOGETBIT?GPIO</a>) Top=4 Bytes (<a href="#S89">?PR?LED_TIMER500MS?SYS</a>)<p>
+<h2><a name="S173"></a>?PR?_GPIO_FLIPOUTBIT?GPIO (C:0017C3H - C:0017DEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S152">?PR?_GPIOGETBIT?GPIO</a>) Top=4 Bytes (<a href="#S87">?PR?LED_TIMER500MS?SYS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S157">?PR?_GPIO_SETOUT?GPIO</a></li>
-<li><a href="#S154">?PR?_GPIOGETBIT?GPIO</a></li>
+<li><a href="#S155">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S152">?PR?_GPIOGETBIT?GPIO</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S89">?PR?LED_TIMER500MS?SYS</a></li>
+<li><a href="#S87">?PR?LED_TIMER500MS?SYS</a></li>
 </ul>
 
-<h2><a name="S178"></a>?PR?GPIO_FILLPD?GPIO (C:00257EH - C:0025B1H)</h2>
+<h2><a name="S176"></a>?PR?GPIO_FILLPD?GPIO (C:002290H - C:0022C3H)</h2>
 <p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S66">?PR?KS_UNISTALL?KEYSCAN</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S66">?PR?KS_UNISTALL?KEYSCAN</a></li>
 </ul>
 
-<h2><a name="S181"></a>?PR?IICWAITDONE?IIC (C:0016DBH - C:0016E2H)</h2>
-<p><br><b>Maximum Stack:</b> Top=14 Bytes (<a href="#S182">?PR?_IIC_READ?IIC</a>)<p>
+<h2><a name="S179"></a>?PR?IICWAITDONE?IIC (C:0016E6H - C:0016EDH)</h2>
+<p><br><b>Maximum Stack:</b> Top=14 Bytes (<a href="#S180">?PR?_IIC_READ?IIC</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S182">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S180">?PR?_IIC_READ?IIC</a></li>
 </ul>
 
-<h2><a name="S182"></a>?PR?_IIC_READ?IIC (C:000B6CH - C:000C19H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S181">?PR?IICWAITDONE?IIC</a>) Top=12 Bytes (<a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
+<h2><a name="S180"></a>?PR?_IIC_READ?IIC (C:00127EH - C:00132DH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S179">?PR?IICWAITDONE?IIC</a>) Top=12 Bytes (<a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S181">?PR?IICWAITDONE?IIC</a></li>
+<li><a href="#S138">?PR?_XMEMCPY?UTILITIES</a></li>
+<li><a href="#S179">?PR?IICWAITDONE?IIC</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S87">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S85">?PR?_KB_CB_EVENT?SYS</a></li>
 <li><a href="#S40">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
 </ul>
 
-<h2><a name="S184"></a>?PR?_IIC_WRITE?IIC (C:001642H - C:0016DAH)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S142">?PR?_DMEMCPY?UTILITIES</a>) Top=6 Bytes (<a href="#S186">?PR?_IIC_WRITEBLOCK?IIC</a>)<p>
+<h2><a name="S182"></a>?PR?_IIC_WRITE?IIC (C:00164DH - C:0016E5H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S140">?PR?_DMEMCPY?UTILITIES</a>) Top=6 Bytes (<a href="#S184">?PR?_IIC_WRITEBLOCK?IIC</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S142">?PR?_DMEMCPY?UTILITIES</a></li>
+<li><a href="#S140">?PR?_DMEMCPY?UTILITIES</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
 <ul>
-<li><a href="#S186">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S184">?PR?_IIC_WRITEBLOCK?IIC</a></li>
 </ul>
 
-<h2><a name="S186"></a>?PR?_IIC_WRITEBLOCK?IIC (C:001135H - C:0011E2H)</h2>
-<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S184">?PR?_IIC_WRITE?IIC</a>) Top=4 Bytes (<a href="#S7">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a>)<p>
+<h2><a name="S184"></a>?PR?_IIC_WRITEBLOCK?IIC (C:0010F6H - C:0011A2H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S182">?PR?_IIC_WRITE?IIC</a>) Top=4 Bytes (<a href="#S7">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a>)<p>
 <p><br><b>Calls to:</b></p>
 <ul>
-<li><a href="#S190">?C?LIB_CODE</a></li>
-<li><a href="#S148">?PR?_DELAY1MS?UTILITIES</a></li>
-<li><a href="#S184">?PR?_IIC_WRITE?IIC</a></li>
+<li><a href="#S188">?C?LIB_CODE</a></li>
+<li><a href="#S146">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S182">?PR?_IIC_WRITE?IIC</a></li>
 </ul>
 
 <p><br><b>Called from:</b></p>
@@ -1005,30 +972,30 @@
 <li><a href="#S7">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
 </ul>
 
-<h2><a name="S190"></a>?C?LIB_CODE (C:000003H - C:000569H)</h2>
-<p><br><b>Maximum Stack:</b> Top=16 Bytes (<a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a>)<p>
+<h2><a name="S188"></a>?C?LIB_CODE (C:000003H - C:000569H)</h2>
+<p><br><b>Maximum Stack:</b> Top=16 Bytes (<a href="#S108">?PR?_IPC_TXCONTROLCMD?IPC</a>)<p>
 <p><br><b>Called from:</b></p>
 <ul>
 <li><a href="#S70">?PR?_ARRAY_IS_EMPTY?KEYSCAN</a></li>
-<li><a href="#S149">?PR?_COMPARE_STR?UTILITIES</a></li>
-<li><a href="#S142">?PR?_DMEMCPY?UTILITIES</a></li>
-<li><a href="#S154">?PR?_GPIOGETBIT?GPIO</a></li>
-<li><a href="#S151">?PR?_GPIOSETBIT?GPIO</a></li>
-<li><a href="#S186">?PR?_IIC_WRITEBLOCK?IIC</a></li>
-<li><a href="#S116">?PR?_IPC_INITIALIZE?IPC</a></li>
-<li><a href="#S110">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S147">?PR?_COMPARE_STR?UTILITIES</a></li>
+<li><a href="#S140">?PR?_DMEMCPY?UTILITIES</a></li>
+<li><a href="#S152">?PR?_GPIOGETBIT?GPIO</a></li>
+<li><a href="#S149">?PR?_GPIOSETBIT?GPIO</a></li>
+<li><a href="#S184">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S114">?PR?_IPC_INITIALIZE?IPC</a></li>
+<li><a href="#S108">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
 <li><a href="#S42">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
-<li><a href="#S106">?PR?_IPCRX?IPC</a></li>
-<li><a href="#S108">?PR?_IPCTX?IPC</a></li>
-<li><a href="#S85">?PR?_KB_CB_HID?SYS</a></li>
+<li><a href="#S104">?PR?_IPCRX?IPC</a></li>
+<li><a href="#S106">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S83">?PR?_KB_CB_HID?SYS</a></li>
 <li><a href="#S51">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
 <li><a href="#S56">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a></li>
-<li><a href="#S144">?PR?_XMEMCLEAR?UTILITIES</a></li>
-<li><a href="#S146">?PR?_XMEMCLEAR_FF?UTILITIES</a></li>
-<li><a href="#S140">?PR?_XMEMCPY?UTILITIES</a></li>
-<li><a href="#S120">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
-<li><a href="#S100">?PR?YC_ADC_CHECK?ADC</a></li>
-<li><a href="#S99">?PR?YC_ADC_INIT?ADC</a></li>
+<li><a href="#S142">?PR?_XMEMCLEAR?UTILITIES</a></li>
+<li><a href="#S144">?PR?_XMEMCLEAR_FF?UTILITIES</a></li>
+<li><a href="#S138">?PR?_XMEMCPY?UTILITIES</a></li>
+<li><a href="#S118">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
+<li><a href="#S98">?PR?YC_ADC_CHECK?ADC</a></li>
+<li><a href="#S97">?PR?YC_ADC_INIT?ADC</a></li>
 </ul>
 
 </body>
Index: c51/output/FW.MAP
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/output/FW.MAP	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/output/FW.MAP	(working copy)
@@ -1,4 +1,4 @@
-LX51 LINKER/LOCATER V4.41                                                               05/29/2020  00:09:56  PAGE 1
+LX51 LINKER/LOCATER V4.41                                                               06/12/2020  18:49:04  PAGE 1
 
 
 LX51 LINKER/LOCATER V4.41, INVOKED BY:
@@ -81,8 +81,8 @@
 
 BASE        START       END         USED      MEMORY CLASS
 ==========================================================
-X:000000H   X:004DD0H   X:004F40H   000304H   XDATA
-C:000000H   C:000000H   C:00FFFFH   0024FCH   CODE
+X:000000H   X:004DD0H   X:004F40H   000305H   XDATA
+C:000000H   C:000000H   C:00FFFFH   00220EH   CODE
 I:000000H   I:000010H   I:00007FH   000008H   DATA
 I:000000H   I:000080H   I:0000CFH   000001H   IDATA
 C:000000H   C:000000H   C:00FFFFH   0000B6H   CONST
@@ -119,93 +119,91 @@
 00060CH   0006BEH   0000B3H   BYTE   UNIT     CONST          ?CO?GLOBAL_VARIABLE
 0006BFH   0006C1H   000003H   BYTE   UNIT     CONST          ?CO?IPC
 0006C2H   0006CEH   00000DH   BYTE   UNIT     CODE           ?PR?YC_CHECK_IS_CONNECTED?BLUETOOTH
-0006CFH   00078AH   0000BCH   BYTE   UNIT     CODE           ?PR?LED_HANDLE?LED
-00078BH   00079CH   000012H   BYTE   UNIT     CODE           ?PR?_GPIO_SETOUT?GPIO
-00079DH   0007F7H   00005BH   BYTE   UNIT     CODE           ?PR?LED_TIMER500MS?SYS
-0007F8H   0007FDH   000006H   BYTE   UNIT     CODE           ?PR?LED_DEVICE_POWERON?LED
-0007FEH   000832H   000035H   BYTE   UNIT     CODE           ?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH
-000833H   0008DEH   0000ACH   BYTE   UNIT     CODE           ?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS
-0008DFH   0008F5H   000017H   BYTE   UNIT     CODE           ?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH
-0008F6H   00091DH   000028H   BYTE   UNIT     CODE           ?PR?_IPC_TXCONTROLCMD?IPC
-00091EH   0009B2H   000095H   BYTE   UNIT     CODE           ?PR?_IPCTX?IPC
-0009B3H   0009F1H   00003FH   BYTE   UNIT     CODE           ?PR?YC_CONNECT_TIMEOUT_500MS?SYS
-0009F2H   0009FAH   000009H   BYTE   UNIT     CODE           ?PR?SYSTEM_LONG_SLEEP?SYS
-0009FBH   000A7DH   000083H   BYTE   UNIT     CODE           ?PR?KB_BUTTON_PRESS_TIMER500MS?SYS
-000A7EH   000A95H   000018H   BYTE   UNIT     CODE           ?PR?_DELAY1MS?UTILITIES
-000A96H   000B6BH   0000D6H   BYTE   UNIT     CODE           ?PR?_KB_CB_EVENT?SYS
-000B6CH   000C19H   0000AEH   BYTE   UNIT     CODE           ?PR?_IIC_READ?IIC
-000C1AH   000C5CH   000043H   BYTE   UNIT     CODE           ?PR?_XMEMCPY?UTILITIES
-000C5DH   000EB2H   000256H   BYTE   UNIT     CODE           ?PR?_KB_MOTION_KEYSCAN?KB_PROCESS
-000EB3H   000EDEH   00002CH   BYTE   UNIT     CODE           ?PR?_XMEMCLEAR?UTILITIES
-000EDFH   000F68H   00008AH   BYTE   UNIT     CODE           ?PR?SYSTEM_CLEAR_MEM?SYS
-000F69H   000F6EH   000006H   BYTE   UNIT     CODE           ?PR?YC_CLEAR_RECONNECT_FLAG?BLUETOOTH
-000F6FH   000F8FH   000021H   BYTE   UNIT     CODE           ?PR?YC_PAIRING_TIMEROUT_500MS?SYS
-000F90H   000FA9H   00001AH   BYTE   UNIT     CODE           ?PR?KB_CB_TIMER500MS?SYS
-000FAAH   000FB3H   00000AH   BYTE   UNIT     CODE           ?PR?YC_START_RECONNECT?BLUETOOTH
-000FB4H   000FC0H   00000DH   BYTE   UNIT     CODE           ?PR?IPC_WAITLPM?IPC
-000FC1H   000FCCH   00000CH   BYTE   UNIT     CODE           ?PR?KS_INITIALIZE?KEYSCAN
-000FCDH   000FEBH   00001FH   BYTE   UNIT     CODE           ?PR?KSCOLINITIALIZE?KEYSCAN
-000FECH   000FEDH   000002H   BYTE   UNIT     CODE           ?PR?SYSTEM_HARDWARE_INIT?SYS
-000FEEH   001005H   000018H   BYTE   UNIT     CODE           ?PR?LED_ALL_SHUTDOWN?LED
-001006H   001021H   00001CH   BYTE   UNIT     CODE           ?PR?_GPIO_SETOUTPUT?GPIO
-001022H   001032H   000011H   BYTE   UNIT     CODE           ?PR?_GPIO_SETPU?GPIO
-001033H   001043H   000011H   BYTE   UNIT     CODE           ?PR?_GPIO_SETOE?GPIO
-001044H   001061H   00001EH   BYTE   UNIT     CODE           ?PR?_GPIO_SETINPUT?GPIO
-001062H   001072H   000011H   BYTE   UNIT     CODE           ?PR?_GPIO_SETPD?GPIO
-001073H   0010D3H   000061H   BYTE   UNIT     CODE           ?PR?_GPIOSETBIT?GPIO
-0010D4H   0010F0H   00001DH   BYTE   UNIT     CODE           ?PR?KSRAWINITIALIZE?KEYSCAN
-0010F1H   001134H   000044H   BYTE   UNIT     CODE           ?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH
-001135H   0011E2H   0000AEH   BYTE   UNIT     CODE           ?PR?_IIC_WRITEBLOCK?IIC
-0011E3H   001234H   000052H   BYTE   UNIT     CODE           ?PR?YC_SYSTEM_MAIN?SYS
-001235H   0012DFH   0000ABH   BYTE   UNIT     CODE           ?PR?KS_UNISTALL?KEYSCAN
-0012E0H   0012F2H   000013H   BYTE   UNIT     CODE           ?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO
-0012F3H   00137EH   00008CH   BYTE   UNIT     CODE           ?PR?_GPIO_SETWAKEUP?GPIO
-00137FH   0013D4H   000056H   BYTE   UNIT     CODE           ?PR?KB_NEED_KEYSCAN?KB_PROCESS
-0013D5H   00140DH   000039H   BYTE   UNIT     CODE           ?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS
-00140EH   001498H   00008BH   BYTE   UNIT     CODE           ?PR?_IPC_TXHIDDATA?KB_PROCESS
-001499H   00149EH   000006H   BYTE   UNIT     CODE           ?PR?KB_CB_INIT?SYS
-00149FH   0014ABH   00000DH   BYTE   UNIT     CODE           ?PR?_IPC_INITIALIZE?IPC
-0014ACH   0014B1H   000006H   BYTE   UNIT     CODE           ?PR?_IPC_TX24GDATA?IPC
-0014B2H   0014D8H   000027H   BYTE   UNIT     CODE           ?PR?_IPC_TXDATA?IPC
-0014D9H   0014DEH   000006H   BYTE   UNIT     CODE           ?PR?_GPIO_GETINPUTSTATUS?GPIO
-0014DFH   00151DH   00003FH   BYTE   UNIT     CODE           ?PR?_GPIOGETBIT?GPIO
-00151EH   001551H   000034H   BYTE   UNIT     CODE           ?PR?KB_MOTION?KB_PROCESS
-001552H   0015B6H   000065H   BYTE   UNIT     CODE           ?PR?KB_24G_GET_LED_STATUS?KB_PROCESS
-0015B7H   001641H   00008BH   BYTE   UNIT     CODE           ?PR?KB_CB_TIMER100MS?SYS
-001642H   0016DAH   000099H   BYTE   UNIT     CODE           ?PR?_IIC_WRITE?IIC
-0016DBH   0016E2H   000008H   BYTE   UNIT     CODE           ?PR?IICWAITDONE?IIC
-0016E3H   0017A9H   0000C7H   BYTE   UNIT     CODE           ?PR?IPC_DEALSINGLESTEP?IPC
-0017AAH   0017ABH   000002H   BYTE   UNIT     CODE           ?PR?MAIN?RAM
-0017ACH   0017B2H   000007H   BYTE   UNIT     CODE           ?PR?LED_DEVICE_POWEROFF?LED
-0017B3H   0017BEH   00000CH   BYTE   UNIT     CODE           ?PR?IPC_ABANDONLPM?IPC
-0017BFH   0017D6H   000018H   BYTE   UNIT     CODE           ?PR?IPC_ISTXBUFFEMPTY?IPC
-0017D7H   0017F1H   00001BH   BYTE   UNIT     CODE           ?PR?_KB_SET_MULTIKEY?KB_PROCESS
-0017F2H   001811H   000020H   BYTE   UNIT     CODE           ?PR?_KEY_REPLACE?KB_PROCESS
-001812H   00197BH   00016AH   BYTE   UNIT     CODE           ?PR?_KEY_FN_FUNCTION?KB_PROCESS
-00197CH   001B77H   0001FCH   BYTE   UNIT     CODE           ?PR?KS_GETCURRENTEVT?KEYSCAN
-001B78H   001B85H   00000EH   BYTE   UNIT     CODE           ?PR?_BIT_COUNT?KEYSCAN
-001B86H   001BB5H   000030H   BYTE   UNIT     CODE           ?PR?_ARRAY_IS_EMPTY?KEYSCAN
-001BB6H   001BFFH   00004AH   BYTE   UNIT     CODE           ?PR?_COMPARE_STR?UTILITIES
-001C00H   001C8FH   000090H   BYTE   UNIT     CODE           ?PR?_KEYIN?KEYSCAN
-001C90H   001D72H   0000E3H   BYTE   UNIT     CODE           ?PR?_KEYOUT?KEYSCAN
-001D73H   001ED2H   000160H   BYTE   UNIT     CODE           ?PR?KS_SCANMATRIX?KEYSCAN
-001ED3H   00214EH   00027CH   BYTE   UNIT     CODE           ?PR?_KB_MULTIKEY_SETUP?KB_PROCESS
-00214FH   00216BH   00001DH   BYTE   UNIT     CODE           ?PR?SYSTEM_SOFTWARE_INIT?SYS
-00216CH   0022E1H   000176H   BYTE   UNIT     CODE           ?PR?YC_ADC_INIT?ADC
-0022E2H   0022EAH   000009H   BYTE   UNIT     CODE           ?PR?SYSTEM_HARDWARE_RESET?SYS
-0022EBH   0022ECH   000002H   BYTE   UNIT     CODE           ?PR?SYSTEM_RESET_CONNECT?SYS
-0022EDH   0022FCH   000010H   BYTE   UNIT     CODE           ?PR?_KB_CB_HID?SYS
-0022FDH   0023E8H   0000ECH   BYTE   UNIT     CODE           ?PR?YC_ADC_CHECK?ADC
-0023E9H   0023F9H   000011H   BYTE   UNIT     CODE           ?PR?YC_ADC_CHECK_TIMER500MS?ADC
-0023FAH   002453H   00005AH   BYTE   UNIT     CODE           ?PR?_BUFSIZE?IPC
-002454H   0024A3H   000050H   BYTE   UNIT     CODE           ?PR?_IPCRX?IPC
-0024A4H   0024A9H   000006H   BYTE   UNIT     CODE           ?PR?IPC_GETBBDISCONNECTREASON?IPC
-0024AAH   0024B0H   000007H   BYTE   UNIT     CODE           ?PR?YC_ICE_BREAK?UTILITIES
-0024B1H   0024F4H   000044H   BYTE   UNIT     CODE           ?PR?_DMEMCPY?UTILITIES
-0024F5H   002521H   00002DH   BYTE   UNIT     CODE           ?PR?_XMEMCLEAR_FF?UTILITIES
-002522H   002560H   00003FH   BYTE   UNIT     CODE           ?PR?_GPIO_CLEARWAKEUP?GPIO
-002561H   00257DH   00001DH   BYTE   UNIT     CODE           ?PR?_GPIO_FLIPOUTBIT?GPIO
-00257EH   0025B1H   000034H   BYTE   UNIT     CODE           ?PR?GPIO_FILLPD?GPIO
+0006CFH   000783H   0000B5H   BYTE   UNIT     CODE           ?PR?LED_HANDLE?LED
+000784H   000795H   000012H   BYTE   UNIT     CODE           ?PR?_GPIO_SETOUT?GPIO
+000796H   0007F0H   00005BH   BYTE   UNIT     CODE           ?PR?LED_TIMER500MS?SYS
+0007F1H   0007F7H   000007H   BYTE   UNIT     CODE           ?PR?SYSTEM_LONG_SLEEP?SYS
+0007F8H   00081FH   000028H   BYTE   UNIT     CODE           ?PR?_IPC_TXCONTROLCMD?IPC
+000820H   0008B4H   000095H   BYTE   UNIT     CODE           ?PR?_IPCTX?IPC
+0008B5H   0008D9H   000025H   BYTE   UNIT     CODE           ?PR?_IPC_TXDATA?IPC
+0008DAH   00091CH   000043H   BYTE   UNIT     CODE           ?PR?_XMEMCPY?UTILITIES
+00091DH   000B55H   000239H   BYTE   UNIT     CODE           ?PR?_KB_MOTION_KEYSCAN?KB_PROCESS
+000B56H   000CB1H   00015CH   BYTE   UNIT     CODE           ?PR?_KB_MULTIKEY_SETUP?KB_PROCESS
+000CB2H   000CCCH   00001BH   BYTE   UNIT     CODE           ?PR?_KB_SET_MULTIKEY?KB_PROCESS
+000CCDH   000CF8H   00002CH   BYTE   UNIT     CODE           ?PR?_XMEMCLEAR?UTILITIES
+000CF9H   000D82H   00008AH   BYTE   UNIT     CODE           ?PR?SYSTEM_CLEAR_MEM?SYS
+000D83H   000E0CH   00008AH   BYTE   UNIT     CODE           ?PR?_IPC_TXHIDDATA?KB_PROCESS
+000E0DH   000E46H   00003AH   BYTE   UNIT     CODE           ?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS
+000E47H   000EBCH   000076H   BYTE   UNIT     CODE           ?PR?KB_NEED_KEYSCAN?KB_PROCESS
+000EBDH   000F1FH   000063H   BYTE   UNIT     CODE           ?PR?KB_24G_GET_LED_STATUS?KB_PROCESS
+000F20H   000F52H   000033H   BYTE   UNIT     CODE           ?PR?KB_MOTION?KB_PROCESS
+000F53H   000F5AH   000008H   BYTE   UNIT     CODE           ?PR?_IPC_TX24GDATA?IPC
+000F5BH   000F77H   00001DH   BYTE   UNIT     CODE           ?PR?SYSTEM_SOFTWARE_INIT?SYS
+000F78H   000FACH   000035H   BYTE   UNIT     CODE           ?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH
+000FADH   000FC4H   000018H   BYTE   UNIT     CODE           ?PR?IPC_ISTXBUFFEMPTY?IPC
+000FC5H   000FCAH   000006H   BYTE   UNIT     CODE           ?PR?YC_CLEAR_RECONNECT_FLAG?BLUETOOTH
+000FCBH   000FE2H   000018H   BYTE   UNIT     CODE           ?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH
+000FE3H   000FEAH   000008H   BYTE   UNIT     CODE           ?PR?YC_START_RECONNECT?BLUETOOTH
+000FEBH   00109BH   0000B1H   BYTE   UNIT     CODE           ?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS
+00109CH   0010B3H   000018H   BYTE   UNIT     CODE           ?PR?_DELAY1MS?UTILITIES
+0010B4H   0010F5H   000042H   BYTE   UNIT     CODE           ?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH
+0010F6H   0011A2H   0000ADH   BYTE   UNIT     CODE           ?PR?_IIC_WRITEBLOCK?IIC
+0011A3H   00127DH   0000DBH   BYTE   UNIT     CODE           ?PR?_KB_CB_EVENT?SYS
+00127EH   00132DH   0000B0H   BYTE   UNIT     CODE           ?PR?_IIC_READ?IIC
+00132EH   00132FH   000002H   BYTE   UNIT     CODE           ?PR?SYSTEM_HARDWARE_INIT?SYS
+001330H   001345H   000016H   BYTE   UNIT     CODE           ?PR?LED_ALL_SHUTDOWN?LED
+001346H   001361H   00001CH   BYTE   UNIT     CODE           ?PR?_GPIO_SETOUTPUT?GPIO
+001362H   00136CH   00000BH   BYTE   UNIT     CODE           ?PR?KS_INITIALIZE?KEYSCAN
+00136DH   00138AH   00001EH   BYTE   UNIT     CODE           ?PR?KSCOLINITIALIZE?KEYSCAN
+00138BH   0013CEH   000044H   BYTE   UNIT     CODE           ?PR?YC_SYSTEM_MAIN?SYS
+0013CFH   001479H   0000ABH   BYTE   UNIT     CODE           ?PR?KS_UNISTALL?KEYSCAN
+00147AH   00148CH   000013H   BYTE   UNIT     CODE           ?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO
+00148DH   001518H   00008CH   BYTE   UNIT     CODE           ?PR?_GPIO_SETWAKEUP?GPIO
+001519H   001525H   00000DH   BYTE   UNIT     CODE           ?PR?IPC_WAITLPM?IPC
+001526H   00152BH   000006H   BYTE   UNIT     CODE           ?PR?KB_CB_INIT?SYS
+00152CH   001538H   00000DH   BYTE   UNIT     CODE           ?PR?_IPC_INITIALIZE?IPC
+001539H   00153EH   000006H   BYTE   UNIT     CODE           ?PR?_GPIO_GETINPUTSTATUS?GPIO
+00153FH   00157DH   00003FH   BYTE   UNIT     CODE           ?PR?_GPIOGETBIT?GPIO
+00157EH   00158EH   000011H   BYTE   UNIT     CODE           ?PR?_GPIO_SETPU?GPIO
+00158FH   0015ACH   00001EH   BYTE   UNIT     CODE           ?PR?_GPIO_SETINPUT?GPIO
+0015ADH   0015BDH   000011H   BYTE   UNIT     CODE           ?PR?_GPIO_SETOE?GPIO
+0015BEH   0015CEH   000011H   BYTE   UNIT     CODE           ?PR?_GPIO_SETPD?GPIO
+0015CFH   00162FH   000061H   BYTE   UNIT     CODE           ?PR?_GPIOSETBIT?GPIO
+001630H   00164CH   00001DH   BYTE   UNIT     CODE           ?PR?KSRAWINITIALIZE?KEYSCAN
+00164DH   0016E5H   000099H   BYTE   UNIT     CODE           ?PR?_IIC_WRITE?IIC
+0016E6H   0016EDH   000008H   BYTE   UNIT     CODE           ?PR?IICWAITDONE?IIC
+0016EEH   0017B4H   0000C7H   BYTE   UNIT     CODE           ?PR?IPC_DEALSINGLESTEP?IPC
+0017B5H   0017B6H   000002H   BYTE   UNIT     CODE           ?PR?MAIN?RAM
+0017B7H   0017C2H   00000CH   BYTE   UNIT     CODE           ?PR?IPC_ABANDONLPM?IPC
+0017C3H   0017DEH   00001CH   BYTE   UNIT     CODE           ?PR?_GPIO_FLIPOUTBIT?GPIO
+0017DFH   001803H   000025H   BYTE   UNIT     CODE           ?PR?_KB_COMBINATION_KEY_PRESS?KB_PROCESS
+001804H   0018CEH   0000CBH   BYTE   UNIT     CODE           ?PR?_KEY_FN_FUNCTION?KB_PROCESS
+0018CFH   001ACAH   0001FCH   BYTE   UNIT     CODE           ?PR?KS_GETCURRENTEVT?KEYSCAN
+001ACBH   001AD8H   00000EH   BYTE   UNIT     CODE           ?PR?_BIT_COUNT?KEYSCAN
+001AD9H   001B08H   000030H   BYTE   UNIT     CODE           ?PR?_ARRAY_IS_EMPTY?KEYSCAN
+001B09H   001B52H   00004AH   BYTE   UNIT     CODE           ?PR?_COMPARE_STR?UTILITIES
+001B53H   001BA8H   000056H   BYTE   UNIT     CODE           ?PR?_KEYIN?KEYSCAN
+001BA9H   001C51H   0000A9H   BYTE   UNIT     CODE           ?PR?_KEYOUT?KEYSCAN
+001C52H   001DB1H   000160H   BYTE   UNIT     CODE           ?PR?KS_SCANMATRIX?KEYSCAN
+001DB2H   001DBAH   000009H   BYTE   UNIT     CODE           ?PR?SYSTEM_HARDWARE_RESET?SYS
+001DBBH   001DBCH   000002H   BYTE   UNIT     CODE           ?PR?SYSTEM_RESET_CONNECT?SYS
+001DBDH   001DCCH   000010H   BYTE   UNIT     CODE           ?PR?_KB_CB_HID?SYS
+001DCDH   001E0FH   000043H   BYTE   UNIT     CODE           ?PR?YC_CONNECT_TIMEOUT_500MS?SYS
+001E10H   001E26H   000017H   BYTE   UNIT     CODE           ?PR?KB_CB_TIMER500MS?SYS
+001E27H   001E4AH   000024H   BYTE   UNIT     CODE           ?PR?YC_PAIRING_TIMEROUT_500MS?SYS
+001E4BH   001E5BH   000011H   BYTE   UNIT     CODE           ?PR?YC_ADC_CHECK_TIMER500MS?ADC
+001E5CH   001EE2H   000087H   BYTE   UNIT     CODE           ?PR?KB_BUTTON_PRESS_TIMER500MS?SYS
+001EE3H   001FCEH   0000ECH   BYTE   UNIT     CODE           ?PR?YC_ADC_CHECK?ADC
+001FCFH   002064H   000096H   BYTE   UNIT     CODE           ?PR?KB_CB_TIMER100MS?SYS
+002065H   002128H   0000C4H   BYTE   UNIT     CODE           ?PR?YC_ADC_INIT?ADC
+002129H   002182H   00005AH   BYTE   UNIT     CODE           ?PR?_BUFSIZE?IPC
+002183H   0021D2H   000050H   BYTE   UNIT     CODE           ?PR?_IPCRX?IPC
+0021D3H   0021D8H   000006H   BYTE   UNIT     CODE           ?PR?IPC_GETBBDISCONNECTREASON?IPC
+0021D9H   0021DFH   000007H   BYTE   UNIT     CODE           ?PR?YC_ICE_BREAK?UTILITIES
+0021E0H   002223H   000044H   BYTE   UNIT     CODE           ?PR?_DMEMCPY?UTILITIES
+002224H   002250H   00002DH   BYTE   UNIT     CODE           ?PR?_XMEMCLEAR_FF?UTILITIES
+002251H   00228FH   00003FH   BYTE   UNIT     CODE           ?PR?_GPIO_CLEARWAKEUP?GPIO
+002290H   0022C3H   000034H   BYTE   UNIT     CODE           ?PR?GPIO_FILLPD?GPIO
 
 * * * * * * * * * * *  X D A T A   M E M O R Y  * * * * * * * * * * * * *
 000040H   000045H   000006H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?25
@@ -273,8 +271,8 @@
 004CB6H   004CB6H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?15
 004CB7H   004CB7H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?13
 004CB8H   004CBEH   000007H   ---    ---      **GAP**
-004CBFH   004D00H   000042H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?3
-004D01H   004D37H   000037H   ---    ---      **GAP**
+004CBFH   004D01H   000043H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?3
+004D02H   004D37H   000036H   ---    ---      **GAP**
 004D38H   004D38H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?26
 004D39H   004D3CH   000004H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?29
 004D3DH   004D40H   000004H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?14
@@ -371,39 +369,39 @@
       00000000H   NUMBER   ---       ?C?XDATASEG
       010005B1H   CODE     ---       ?C_START
       01000000H   CODE     ---       ?C_STARTUP
-      01001B86H   CODE     ---       _array_is_empty
-      01001BB6H   CODE     ---       _compare_str
-      01000A7EH   CODE     ---       _Delay1ms
-      010024B1H   CODE     ---       _dmemcpy
-      01002522H   CODE     ---       _GPIO_ClearWakeup
-      01002561H   CODE     ---       _GPIO_FlipOutBit
-      010014D9H   CODE     ---       _GPIO_GetInputStatus
-      01001044H   CODE     ---       _GPIO_SetInput
-      01001033H   CODE     ---       _GPIO_Setoe
-      0100078BH   CODE     ---       _GPIO_Setout
-      01001006H   CODE     ---       _GPIO_SetOutput
-      01001062H   CODE     ---       _GPIO_SetPd
-      01001022H   CODE     ---       _GPIO_SetPu
-      010012F3H   CODE     ---       _GPIO_SetWakeup
-      010012E0H   CODE     ---       _GPIO_SetWakeupByCurrentState
-      01000B6CH   CODE     ---       _IIC_Read
-      01001642H   CODE     ---       _IIC_write
-      01001135H   CODE     ---       _IIC_WriteBlock
-      0100149FH   CODE     ---       _IPC_Initialize
-      010014ACH   CODE     ---       _IPC_Tx24GData
-      010008F6H   CODE     ---       _IPC_TxControlCmd
-      010014B2H   CODE     ---       _IPC_TxData
-      0100140EH   CODE     ---       _IPC_TxHidData
-      01000C5DH   CODE     ---       _kb_motion_keyscan
-      01001ED3H   CODE     ---       _kb_multikey_setup
-      010013D5H   CODE     ---       _kb_send_combination_key
-      010017D7H   CODE     ---       _kb_set_multikey
-      01001812H   CODE     ---       _key_fn_function
-      010017F2H   CODE     ---       _key_replace
-      01000EB3H   CODE     ---       _xmemclear
-      010024F5H   CODE     ---       _xmemclear_ff
-      01000C1AH   CODE     ---       _xmemcpy
-      01000833H   CODE     ---       _YC_key_action_handle
+      01001AD9H   CODE     ---       _array_is_empty
+      01001B09H   CODE     ---       _compare_str
+      0100109CH   CODE     ---       _Delay1ms
+      010021E0H   CODE     ---       _dmemcpy
+      01002251H   CODE     ---       _GPIO_ClearWakeup
+      010017C3H   CODE     ---       _GPIO_FlipOutBit
+      01001539H   CODE     ---       _GPIO_GetInputStatus
+      0100158FH   CODE     ---       _GPIO_SetInput
+      010015ADH   CODE     ---       _GPIO_Setoe
+      01000784H   CODE     ---       _GPIO_Setout
+      01001346H   CODE     ---       _GPIO_SetOutput
+      010015BEH   CODE     ---       _GPIO_SetPd
+      0100157EH   CODE     ---       _GPIO_SetPu
+      0100148DH   CODE     ---       _GPIO_SetWakeup
+      0100147AH   CODE     ---       _GPIO_SetWakeupByCurrentState
+      0100127EH   CODE     ---       _IIC_Read
+      0100164DH   CODE     ---       _IIC_write
+      010010F6H   CODE     ---       _IIC_WriteBlock
+      0100152CH   CODE     ---       _IPC_Initialize
+      01000F53H   CODE     ---       _IPC_Tx24GData
+      010007F8H   CODE     ---       _IPC_TxControlCmd
+      010008B5H   CODE     ---       _IPC_TxData
+      01000D83H   CODE     ---       _IPC_TxHidData
+      010017DFH   CODE     ---       _kb_combination_key_press
+      0100091DH   CODE     ---       _kb_motion_keyscan
+      01000B56H   CODE     ---       _kb_multikey_setup
+      01000E0DH   CODE     ---       _kb_send_combination_key
+      01000CB2H   CODE     ---       _kb_set_multikey
+      01001804H   CODE     ---       _key_fn_function
+      01000CCDH   CODE     ---       _xmemclear
+      01002224H   CODE     ---       _xmemclear_ff
+      010008DAH   CODE     ---       _xmemcpy
+      01000FEBH   CODE     ---       _YC_key_action_handle
       02004DE2H   XDATA    BYTE      action_timeout
       02004DDDH   XDATA    BYTE      ble_reconnect_flag
       02004C8DH   XDATA    BYTE      btstimer
@@ -419,25 +417,25 @@
       02004DD3H   XDATA    BYTE      fn_tx_flag
       02004CBFH   XDATA    ---       g_variable
       02004DD0H   XDATA    BYTE      get_24g_led_send
-      0100257EH   CODE     ---       GPIO_fillpd
+      01002290H   CODE     ---       GPIO_fillpd
       02004800H   XDATA    ---       hidBuff
       02004DDAH   XDATA    BYTE      iOS_rec_pinCode
-      010017B3H   CODE     ---       IPC_AbandonLpm
-      010016E3H   CODE     ---       IPC_DealSingleStep
-      010024A4H   CODE     ---       IPC_GetBBDIsconnectReason
-      010017BFH   CODE     ---       IPC_IsTxBuffEmpty
-      01000FB4H   CODE     ---       IPC_WaitLpm
+      010017B7H   CODE     ---       IPC_AbandonLpm
+      010016EEH   CODE     ---       IPC_DealSingleStep
+      010021D3H   CODE     ---       IPC_GetBBDIsconnectReason
+      01000FADH   CODE     ---       IPC_IsTxBuffEmpty
+      01001519H   CODE     ---       IPC_WaitLpm
       02000550H   XDATA    ---       ipcPin
       0200054FH   XDATA    BYTE      ipcPinlen
       02000C4BH   XDATA    ---       ipcReadBuff
       02000BE7H   XDATA    ---       ipcSendBuff
-      01001552H   CODE     ---       kb_24g_get_led_status
-      010009FBH   CODE     ---       kb_button_press_timer500ms
-      0100137FH   CODE     ---       kb_need_keyscan
-      0100197CH   CODE     ---       KS_GetCurrentEvt
-      01000FC1H   CODE     ---       KS_Initialize
-      01001D73H   CODE     ---       KS_ScanMatrix
-      01001235H   CODE     ---       KS_Unistall
+      01000EBDH   CODE     ---       kb_24g_get_led_status
+      01001E5CH   CODE     ---       kb_button_press_timer500ms
+      01000E47H   CODE     ---       kb_need_keyscan
+      010018CFH   CODE     ---       KS_GetCurrentEvt
+      01001362H   CODE     ---       KS_Initialize
+      01001C52H   CODE     ---       KS_ScanMatrix
+      010013CFH   CODE     ---       KS_Unistall
       02004213H   XDATA    BYTE      kscurrmult
       02004E31H   XDATA    ---       ksEvtPool
       01000621H   CONST    ---       ksMap
@@ -446,11 +444,9 @@
       02004D93H   XDATA    ---       ksSelMapOld
       02004D39H   XDATA    DWORD     le_pin_code
       02004DD2H   XDATA    BYTE      le_pin_code_len
-      01000FEEH   CODE     ---       LED_all_shutdown
-      010017ACH   CODE     ---       LED_device_poweroff
-      010007F8H   CODE     ---       LED_device_poweron
+      01001330H   CODE     ---       LED_all_shutdown
       010006CFH   CODE     ---       LED_handle
-      0100079DH   CODE     ---       LED_timer500ms
+      01000796H   CODE     ---       LED_timer500ms
       02004DD5H   XDATA    BYTE      long_press_flag
       02000B7FH   XDATA    BYTE      lpm_flag
       02004C00H   XDATA    ---       m_24g_addr
@@ -477,7 +473,7 @@
       02008010H   XDATA    BYTE      m_reset_reg
       020047F4H   XDATA    WORD      m_ui_state_map
       02000B81H   XDATA    BYTE      m_wakup_from_power_flag
-      010017AAH   CODE     ---       main
+      010017B5H   CODE     ---       main
       02004DE4H   XDATA    BYTE      mult_key_status
       02004DE3H   XDATA    BYTE      mult_key_value
       02004DE5H   XDATA    ---       multikey
@@ -488,24 +484,24 @@
       02004DD6H   XDATA    BYTE      repeat_send_24g
       02004DD8H   XDATA    BYTE      standard_key_release_flag
       02004DD4H   XDATA    BYTE      switch_role_timer
-      010009F2H   CODE     ---       System_long_sleep
-      010022EBH   CODE     ---       System_Reset_Connect
-      0100214FH   CODE     ---       System_Software_init
-      010022FDH   CODE     ---       YC_adc_check
-      010023E9H   CODE     ---       YC_adc_check_timer500ms
-      0100216CH   CODE     ---       YC_adc_init
+      010007F1H   CODE     ---       System_long_sleep
+      01001DBBH   CODE     ---       System_Reset_Connect
+      01000F5BH   CODE     ---       System_Software_init
+      01001EE3H   CODE     ---       YC_adc_check
+      01001E4BH   CODE     ---       YC_adc_check_timer500ms
+      01002065H   CODE     ---       YC_adc_init
       010006C2H   CODE     ---       YC_check_is_connected
-      010007FEH   CODE     ---       YC_check_need_reconnected
-      01000F69H   CODE     ---       YC_clear_reconnect_flag
-      010009B3H   CODE     ---       YC_connect_timeout_500ms
-      010008DFH   CODE     ---       YC_disconnect_all_link
+      01000F78H   CODE     ---       YC_check_need_reconnected
+      01000FC5H   CODE     ---       YC_clear_reconnect_flag
+      01001DCDH   CODE     ---       YC_connect_timeout_500ms
+      01000FCBH   CODE     ---       YC_disconnect_all_link
       020000A7H   XDATA    ---       YC_GPIOWakeupH
       020000A3H   XDATA    ---       YC_GPIOWakeupL
-      010024AAH   CODE     ---       YC_Ice_break
-      01000F6FH   CODE     ---       YC_pairing_timerout_500ms
-      01000FAAH   CODE     ---       YC_start_reconnect
-      010011E3H   CODE     ---       YC_System_Main
-      010010F1H   CODE     ---       YC_update_eeprom_data
+      010021D9H   CODE     ---       YC_Ice_break
+      01001E27H   CODE     ---       YC_pairing_timerout_500ms
+      01000FE3H   CODE     ---       YC_start_reconnect
+      0100138BH   CODE     ---       YC_System_Main
+      010010B4H   CODE     ---       YC_update_eeprom_data
 
 
 
@@ -514,11 +510,11 @@
       VALUE       REP       CLASS    TYPE      SYMBOL NAME
       ====================================================
       ---         MODULE    ---      ---       BLUETOOTH
-      010010F1H   PUBLIC    CODE     ---       YC_update_eeprom_data
-      01000FAAH   PUBLIC    CODE     ---       YC_start_reconnect
-      010008DFH   PUBLIC    CODE     ---       YC_disconnect_all_link
-      01000F69H   PUBLIC    CODE     ---       YC_clear_reconnect_flag
-      010007FEH   PUBLIC    CODE     ---       YC_check_need_reconnected
+      010010B4H   PUBLIC    CODE     ---       YC_update_eeprom_data
+      01000FE3H   PUBLIC    CODE     ---       YC_start_reconnect
+      01000FCBH   PUBLIC    CODE     ---       YC_disconnect_all_link
+      01000FC5H   PUBLIC    CODE     ---       YC_clear_reconnect_flag
+      01000F78H   PUBLIC    CODE     ---       YC_check_need_reconnected
       010006C2H   PUBLIC    CODE     ---       YC_check_is_connected
 
       010006C2H   BLOCK     CODE     ---       LVL=0
@@ -532,75 +528,75 @@
       010006CEH   LINE      ---      ---       #11
       ---         BLOCKEND  ---      ---       LVL=0
 
-      010007FEH   BLOCK     CODE     ---       LVL=0
-      010007FEH   LINE      ---      ---       #13
-      010007FEH   LINE      ---      ---       #14
-      010007FEH   BLOCK     CODE     NEAR LAB  LVL=1
-      010007FEH   LINE      ---      ---       #15
-      01000800H   LINE      ---      ---       #17
-      01000806H   LINE      ---      ---       #18
-      01000807H   LINE      ---      ---       #20
-      0100080FH   LINE      ---      ---       #21
-      0100080FH   LINE      ---      ---       #22
-      01000815H   LINE      ---      ---       #23
-      01000815H   LINE      ---      ---       #24
-      01000818H   LINE      ---      ---       #25
-      01000823H   LINE      ---      ---       #27
-      01000823H   LINE      ---      ---       #28
-      01000827H   LINE      ---      ---       #29
-      01000829H   LINE      ---      ---       #30
-      01000829H   LINE      ---      ---       #31
-      01000829H   LINE      ---      ---       #32
-      0100082BH   LINE      ---      ---       #34
-      0100082BH   LINE      ---      ---       #35
-      01000830H   LINE      ---      ---       #36
-      01000832H   LINE      ---      ---       #37
-      01000832H   LINE      ---      ---       #38
-      01000832H   LINE      ---      ---       #39
+      01000F78H   BLOCK     CODE     ---       LVL=0
+      01000F78H   LINE      ---      ---       #13
+      01000F78H   LINE      ---      ---       #14
+      01000F78H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000F78H   LINE      ---      ---       #15
+      01000F7AH   LINE      ---      ---       #17
+      01000F80H   LINE      ---      ---       #18
+      01000F81H   LINE      ---      ---       #20
+      01000F89H   LINE      ---      ---       #21
+      01000F89H   LINE      ---      ---       #22
+      01000F8FH   LINE      ---      ---       #23
+      01000F8FH   LINE      ---      ---       #24
+      01000F92H   LINE      ---      ---       #25
+      01000F9DH   LINE      ---      ---       #27
+      01000F9DH   LINE      ---      ---       #28
+      01000FA1H   LINE      ---      ---       #29
+      01000FA3H   LINE      ---      ---       #30
+      01000FA3H   LINE      ---      ---       #31
+      01000FA3H   LINE      ---      ---       #32
+      01000FA5H   LINE      ---      ---       #34
+      01000FA5H   LINE      ---      ---       #35
+      01000FAAH   LINE      ---      ---       #36
+      01000FACH   LINE      ---      ---       #37
+      01000FACH   LINE      ---      ---       #38
+      01000FACH   LINE      ---      ---       #39
       00000007H   SYMBOL    DATA     VOID      return_val
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01000F69H   BLOCK     CODE     ---       LVL=0
-      01000F69H   LINE      ---      ---       #42
-      01000F69H   LINE      ---      ---       #43
-      01000F69H   LINE      ---      ---       #44
-      01000F6EH   LINE      ---      ---       #45
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010008DFH   BLOCK     CODE     ---       LVL=0
-      010008DFH   LINE      ---      ---       #48
-      010008DFH   LINE      ---      ---       #49
-      010008DFH   LINE      ---      ---       #50
-      010008ECH   LINE      ---      ---       #52
-      010008ECH   LINE      ---      ---       #53
-      010008F0H   LINE      ---      ---       #54
-      010008F3H   LINE      ---      ---       #55
-      010008F3H   LINE      ---      ---       #56
-      010008F5H   LINE      ---      ---       #57
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000FAAH   BLOCK     CODE     ---       LVL=0
-      01000FAAH   LINE      ---      ---       #60
-      01000FAAH   LINE      ---      ---       #61
-      01000FAAH   LINE      ---      ---       #62
-      01000FB0H   LINE      ---      ---       #63
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010010F1H   BLOCK     CODE     ---       LVL=0
-      010010F1H   LINE      ---      ---       #67
-      010010F1H   LINE      ---      ---       #68
-      010010F1H   LINE      ---      ---       #69
-      010010F7H   LINE      ---      ---       #70
-      010010F7H   LINE      ---      ---       #71
-      010010FCH   LINE      ---      ---       #72
-      01001103H   LINE      ---      ---       #73
-      01001113H   LINE      ---      ---       #74
-      01001123H   LINE      ---      ---       #75
-      0100112AH   LINE      ---      ---       #76
-      0100112FH   LINE      ---      ---       #77
-      01001134H   LINE      ---      ---       #78
-      01001134H   LINE      ---      ---       #79
+      01000FC5H   BLOCK     CODE     ---       LVL=0
+      01000FC5H   LINE      ---      ---       #42
+      01000FC5H   LINE      ---      ---       #43
+      01000FC5H   LINE      ---      ---       #44
+      01000FCAH   LINE      ---      ---       #45
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FCBH   BLOCK     CODE     ---       LVL=0
+      01000FCBH   LINE      ---      ---       #48
+      01000FCBH   LINE      ---      ---       #49
+      01000FCBH   LINE      ---      ---       #50
+      01000FD8H   LINE      ---      ---       #52
+      01000FD8H   LINE      ---      ---       #53
+      01000FDDH   LINE      ---      ---       #54
+      01000FE0H   LINE      ---      ---       #55
+      01000FE0H   LINE      ---      ---       #56
+      01000FE2H   LINE      ---      ---       #57
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FE3H   BLOCK     CODE     ---       LVL=0
+      01000FE3H   LINE      ---      ---       #60
+      01000FE3H   LINE      ---      ---       #61
+      01000FE3H   LINE      ---      ---       #62
+      01000FE9H   LINE      ---      ---       #63
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010010B4H   BLOCK     CODE     ---       LVL=0
+      010010B4H   LINE      ---      ---       #67
+      010010B4H   LINE      ---      ---       #68
+      010010B4H   LINE      ---      ---       #69
+      010010BAH   LINE      ---      ---       #70
+      010010BAH   LINE      ---      ---       #71
+      010010BEH   LINE      ---      ---       #72
+      010010C5H   LINE      ---      ---       #73
+      010010D5H   LINE      ---      ---       #74
+      010010E5H   LINE      ---      ---       #75
+      010010ECH   LINE      ---      ---       #76
+      010010F0H   LINE      ---      ---       #77
+      010010F5H   LINE      ---      ---       #78
+      010010F5H   LINE      ---      ---       #79
       ---         BLOCKEND  ---      ---       LVL=0
 
       ---         MODULE    ---      ---       GLOBAL_VARIABLE
@@ -660,709 +656,584 @@
       0100060CH   PUBLIC    CONST    ---       col
 
       ---         MODULE    ---      ---       KB_PROCESS
-      01001ED3H   PUBLIC    CODE     ---       _kb_multikey_setup
-      01001812H   PUBLIC    CODE     ---       _key_fn_function
-      010017F2H   PUBLIC    CODE     ---       _key_replace
-      01000C5DH   PUBLIC    CODE     ---       _kb_motion_keyscan
-      0100137FH   PUBLIC    CODE     ---       kb_need_keyscan
-      01001552H   PUBLIC    CODE     ---       kb_24g_get_led_status
-      010013D5H   PUBLIC    CODE     ---       _kb_send_combination_key
-      010017D7H   PUBLIC    CODE     ---       _kb_set_multikey
-      0100140EH   PUBLIC    CODE     ---       _IPC_TxHidData
-      01000833H   PUBLIC    CODE     ---       _YC_key_action_handle
-
-      01000833H   BLOCK     CODE     ---       LVL=0
-      01000833H   LINE      ---      ---       #3
-      01000838H   LINE      ---      ---       #4
-      01000838H   LINE      ---      ---       #5
-      01000845H   LINE      ---      ---       #6
-      01000845H   LINE      ---      ---       #7
-      01000845H   LINE      ---      ---       #8
-      01000845H   LINE      ---      ---       #9
-      0100084AH   LINE      ---      ---       #10
-      0100084FH   LINE      ---      ---       #11
-      0100084FH   LINE      ---      ---       #12
-      01000857H   LINE      ---      ---       #13
-      01000858H   LINE      ---      ---       #15
-      01000858H   LINE      ---      ---       #16
-      01000868H   LINE      ---      ---       #17
-      0100086CH   LINE      ---      ---       #18
-      01000882H   LINE      ---      ---       #19
-      01000882H   LINE      ---      ---       #20
-      01000888H   LINE      ---      ---       #21
-      0100088AH   LINE      ---      ---       #22
-      0100088CH   LINE      ---      ---       #23
-      0100088EH   LINE      ---      ---       #24
-      0100088EH   LINE      ---      ---       #25
-      01000892H   LINE      ---      ---       #27
-      01000898H   LINE      ---      ---       #28
-      0100089BH   LINE      ---      ---       #29
-      0100089FH   LINE      ---      ---       #30
-      0100089FH   LINE      ---      ---       #31
-      010008A0H   LINE      ---      ---       #32
-      010008A0H   LINE      ---      ---       #33
-      010008A5H   LINE      ---      ---       #34
-      010008AAH   LINE      ---      ---       #35
-      010008AAH   LINE      ---      ---       #36
-      010008B2H   LINE      ---      ---       #37
-      010008B3H   LINE      ---      ---       #39
-      010008B3H   LINE      ---      ---       #40
-      010008BBH   LINE      ---      ---       #41
-      010008BBH   LINE      ---      ---       #42
-      010008BFH   LINE      ---      ---       #43
-      010008C5H   LINE      ---      ---       #44
-      010008C8H   LINE      ---      ---       #45
-      010008CEH   LINE      ---      ---       #46
-      010008D3H   LINE      ---      ---       #47
-      010008D3H   LINE      ---      ---       #48
-      010008D8H   LINE      ---      ---       #49
-      010008D8H   LINE      ---      ---       #50
-      010008D9H   LINE      ---      ---       #51
-      010008D9H   LINE      ---      ---       #52
-      010008DEH   LINE      ---      ---       #53
-      010008DEH   LINE      ---      ---       #54
-      010008DEH   LINE      ---      ---       #55
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      0100140EH   BLOCK     CODE     ---       LVL=0
-      0100140EH   LINE      ---      ---       #59
-      0100141CH   LINE      ---      ---       #60
-      0100141CH   LINE      ---      ---       #61
-      01001422H   LINE      ---      ---       #63
-      01001428H   LINE      ---      ---       #66
-      01001430H   LINE      ---      ---       #67
-      01001430H   LINE      ---      ---       #68
-      01001443H   LINE      ---      ---       #69
-      01001443H   LINE      ---      ---       #70
-      01001463H   LINE      ---      ---       #71
-      01001469H   LINE      ---      ---       #73
-      0100146FH   LINE      ---      ---       #74
-      01001471H   LINE      ---      ---       #75
-      01001475H   LINE      ---      ---       #76
-      01001475H   LINE      ---      ---       #77
-      01001485H   LINE      ---      ---       #78
-      01001485H   LINE      ---      ---       #79
-      01001489H   LINE      ---      ---       #80
-      0100148BH   LINE      ---      ---       #82
-      0100148BH   LINE      ---      ---       #83
-      01001491H   LINE      ---      ---       #84
-      01001491H   LINE      ---      ---       #85
-      01001491H   LINE      ---      ---       #86
-      01001498H   LINE      ---      ---       #87
-      01001498H   LINE      ---      ---       #88
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010017D7H   BLOCK     CODE     ---       LVL=0
-      010017D7H   LINE      ---      ---       #91
-      010017DBH   LINE      ---      ---       #92
-      010017DBH   LINE      ---      ---       #93
-      010017E3H   LINE      ---      ---       #94
-      010017E3H   LINE      ---      ---       #95
-      010017E6H   LINE      ---      ---       #96
-      010017EBH   LINE      ---      ---       #97
-      010017EEH   LINE      ---      ---       #98
-      010017F1H   LINE      ---      ---       #99
-      010017F1H   LINE      ---      ---       #100
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010013D5H   BLOCK     CODE     ---       LVL=0
-      010013D5H   LINE      ---      ---       #103
-      010013DDH   LINE      ---      ---       #104
-      010013DDH   LINE      ---      ---       #105
-      010013EAH   LINE      ---      ---       #106
-      010013F0H   LINE      ---      ---       #107
-      010013FEH   LINE      ---      ---       #108
-      01001406H   LINE      ---      ---       #109
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01001552H   BLOCK     CODE     ---       LVL=0
-      01001552H   LINE      ---      ---       #129
-      01001552H   LINE      ---      ---       #130
-      01001552H   LINE      ---      ---       #131
-      01001560H   LINE      ---      ---       #132
-      01001560H   LINE      ---      ---       #133
-      01001568H   LINE      ---      ---       #134
-      01001568H   LINE      ---      ---       #135
-      01001574H   LINE      ---      ---       #136
-      0100157EH   LINE      ---      ---       #137
-      01001584H   LINE      ---      ---       #138
-      01001589H   LINE      ---      ---       #139
-      01001589H   LINE      ---      ---       #140
-      0100158AH   LINE      ---      ---       #141
-      01001597H   LINE      ---      ---       #142
-      01001597H   LINE      ---      ---       #143
-      0100159BH   LINE      ---      ---       #144
-      010015A7H   LINE      ---      ---       #145
-      010015B1H   LINE      ---      ---       #146
-      010015B6H   LINE      ---      ---       #147
-      010015B6H   LINE      ---      ---       #148
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      0100151EH   BLOCK     CODE     ---       LVL=0
-      0100151EH   LINE      ---      ---       #152
-      0100151EH   LINE      ---      ---       #153
-      0100151EH   BLOCK     CODE     NEAR LAB  LVL=1
-      0100151EH   LINE      ---      ---       #154
-      01001527H   LINE      ---      ---       #156
-      0100152BH   LINE      ---      ---       #158
-      01001539H   LINE      ---      ---       #160
-      0100153CH   LINE      ---      ---       #161
-      0100153CH   LINE      ---      ---       #162
-      01001541H   LINE      ---      ---       #163
-      01001543H   LINE      ---      ---       #165
-      01001543H   LINE      ---      ---       #166
-      01001551H   LINE      ---      ---       #167
+      01000B56H   PUBLIC    CODE     ---       _kb_multikey_setup
+      01001804H   PUBLIC    CODE     ---       _key_fn_function
+      010017DFH   PUBLIC    CODE     ---       _kb_combination_key_press
+      0100091DH   PUBLIC    CODE     ---       _kb_motion_keyscan
+      01000E47H   PUBLIC    CODE     ---       kb_need_keyscan
+      01000EBDH   PUBLIC    CODE     ---       kb_24g_get_led_status
+      01000E0DH   PUBLIC    CODE     ---       _kb_send_combination_key
+      01000CB2H   PUBLIC    CODE     ---       _kb_set_multikey
+      01000D83H   PUBLIC    CODE     ---       _IPC_TxHidData
+      01000FEBH   PUBLIC    CODE     ---       _YC_key_action_handle
+
+      01000FEBH   BLOCK     CODE     ---       LVL=0
+      01000FEBH   LINE      ---      ---       #3
+      01000FF0H   LINE      ---      ---       #4
+      01000FF0H   LINE      ---      ---       #5
+      01000FFEH   LINE      ---      ---       #6
+      01000FFEH   LINE      ---      ---       #7
+      01000FFEH   LINE      ---      ---       #8
+      01000FFEH   LINE      ---      ---       #9
+      01001003H   LINE      ---      ---       #10
+      01001009H   LINE      ---      ---       #11
+      01001009H   LINE      ---      ---       #12
+      01001011H   LINE      ---      ---       #13
+      01001012H   LINE      ---      ---       #15
+      01001012H   LINE      ---      ---       #16
+      01001022H   LINE      ---      ---       #17
+      01001026H   LINE      ---      ---       #18
+      0100103CH   LINE      ---      ---       #19
+      0100103CH   LINE      ---      ---       #20
+      01001042H   LINE      ---      ---       #21
+      01001044H   LINE      ---      ---       #22
+      01001046H   LINE      ---      ---       #23
+      01001048H   LINE      ---      ---       #24
+      01001048H   LINE      ---      ---       #25
+      0100104DH   LINE      ---      ---       #27
+      01001053H   LINE      ---      ---       #28
+      01001056H   LINE      ---      ---       #29
+      0100105AH   LINE      ---      ---       #30
+      0100105AH   LINE      ---      ---       #31
+      0100105BH   LINE      ---      ---       #32
+      0100105BH   LINE      ---      ---       #33
+      01001060H   LINE      ---      ---       #34
+      01001066H   LINE      ---      ---       #35
+      01001066H   LINE      ---      ---       #36
+      0100106EH   LINE      ---      ---       #37
+      0100106FH   LINE      ---      ---       #39
+      0100106FH   LINE      ---      ---       #40
+      01001077H   LINE      ---      ---       #41
+      01001077H   LINE      ---      ---       #42
+      0100107CH   LINE      ---      ---       #43
+      01001082H   LINE      ---      ---       #44
+      01001085H   LINE      ---      ---       #45
+      0100108BH   LINE      ---      ---       #46
+      01001090H   LINE      ---      ---       #47
+      01001090H   LINE      ---      ---       #48
+      01001095H   LINE      ---      ---       #49
+      01001095H   LINE      ---      ---       #50
+      01001096H   LINE      ---      ---       #51
+      01001096H   LINE      ---      ---       #52
+      0100109BH   LINE      ---      ---       #53
+      0100109BH   LINE      ---      ---       #54
+      0100109BH   LINE      ---      ---       #55
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000D83H   BLOCK     CODE     ---       LVL=0
+      01000D83H   LINE      ---      ---       #59
+      01000D91H   LINE      ---      ---       #60
+      01000D91H   LINE      ---      ---       #61
+      01000D96H   LINE      ---      ---       #63
+      01000D9CH   LINE      ---      ---       #66
+      01000DA4H   LINE      ---      ---       #67
+      01000DA4H   LINE      ---      ---       #68
+      01000DB7H   LINE      ---      ---       #69
+      01000DB7H   LINE      ---      ---       #70
+      01000DD7H   LINE      ---      ---       #71
+      01000DDDH   LINE      ---      ---       #73
+      01000DE3H   LINE      ---      ---       #74
+      01000DE5H   LINE      ---      ---       #75
+      01000DE9H   LINE      ---      ---       #76
+      01000DE9H   LINE      ---      ---       #77
+      01000DF9H   LINE      ---      ---       #78
+      01000DF9H   LINE      ---      ---       #79
+      01000DFDH   LINE      ---      ---       #80
+      01000DFFH   LINE      ---      ---       #82
+      01000DFFH   LINE      ---      ---       #83
+      01000E05H   LINE      ---      ---       #84
+      01000E05H   LINE      ---      ---       #85
+      01000E05H   LINE      ---      ---       #86
+      01000E0CH   LINE      ---      ---       #87
+      01000E0CH   LINE      ---      ---       #88
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000CB2H   BLOCK     CODE     ---       LVL=0
+      01000CB2H   LINE      ---      ---       #91
+      01000CB6H   LINE      ---      ---       #92
+      01000CB6H   LINE      ---      ---       #93
+      01000CBEH   LINE      ---      ---       #94
+      01000CBEH   LINE      ---      ---       #95
+      01000CC1H   LINE      ---      ---       #96
+      01000CC6H   LINE      ---      ---       #97
+      01000CC9H   LINE      ---      ---       #98
+      01000CCCH   LINE      ---      ---       #99
+      01000CCCH   LINE      ---      ---       #100
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000E0DH   BLOCK     CODE     ---       LVL=0
+      01000E0DH   LINE      ---      ---       #103
+      01000E15H   LINE      ---      ---       #104
+      01000E15H   LINE      ---      ---       #105
+      01000E21H   LINE      ---      ---       #106
+      01000E27H   LINE      ---      ---       #107
+      01000E35H   LINE      ---      ---       #108
+      01000E3DH   LINE      ---      ---       #109
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000EBDH   BLOCK     CODE     ---       LVL=0
+      01000EBDH   LINE      ---      ---       #129
+      01000EBDH   LINE      ---      ---       #130
+      01000EBDH   LINE      ---      ---       #131
+      01000ECBH   LINE      ---      ---       #132
+      01000ECBH   LINE      ---      ---       #133
+      01000ED3H   LINE      ---      ---       #134
+      01000ED3H   LINE      ---      ---       #135
+      01000EDEH   LINE      ---      ---       #136
+      01000EE8H   LINE      ---      ---       #137
+      01000EEEH   LINE      ---      ---       #138
+      01000EF3H   LINE      ---      ---       #139
+      01000EF3H   LINE      ---      ---       #140
+      01000EF4H   LINE      ---      ---       #141
+      01000F01H   LINE      ---      ---       #142
+      01000F01H   LINE      ---      ---       #143
+      01000F05H   LINE      ---      ---       #144
+      01000F10H   LINE      ---      ---       #145
+      01000F1AH   LINE      ---      ---       #146
+      01000F1FH   LINE      ---      ---       #147
+      01000F1FH   LINE      ---      ---       #148
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000F20H   BLOCK     CODE     ---       LVL=0
+      01000F20H   LINE      ---      ---       #152
+      01000F20H   LINE      ---      ---       #153
+      01000F20H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000F20H   LINE      ---      ---       #154
+      01000F29H   LINE      ---      ---       #156
+      01000F2DH   LINE      ---      ---       #158
+      01000F3BH   LINE      ---      ---       #160
+      01000F3EH   LINE      ---      ---       #161
+      01000F3EH   LINE      ---      ---       #162
+      01000F43H   LINE      ---      ---       #163
+      01000F45H   LINE      ---      ---       #165
+      01000F45H   LINE      ---      ---       #166
+      01000F52H   LINE      ---      ---       #167
       02004E75H   SYMBOL    XDATA    VOID      pEvt
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      0100137FH   BLOCK     CODE     ---       LVL=0
-      0100137FH   LINE      ---      ---       #171
-      0100137FH   LINE      ---      ---       #172
-      0100137FH   LINE      ---      ---       #173
-      0100138EH   LINE      ---      ---       #177
-      01001390H   LINE      ---      ---       #179
-      01001390H   LINE      ---      ---       #181
-      01001397H   LINE      ---      ---       #182
-      01001397H   LINE      ---      ---       #183
-      0100139AH   LINE      ---      ---       #184
-      010013A2H   LINE      ---      ---       #185
-      010013A2H   LINE      ---      ---       #186
-      010013A9H   LINE      ---      ---       #187
-      010013A9H   LINE      ---      ---       #188
-      010013AEH   LINE      ---      ---       #189
-      010013B4H   LINE      ---      ---       #190
-      010013BCH   LINE      ---      ---       #191
-      010013BCH   LINE      ---      ---       #192
-      010013C3H   LINE      ---      ---       #193
-      010013C3H   LINE      ---      ---       #194
-      010013C6H   LINE      ---      ---       #195
-      010013C8H   LINE      ---      ---       #196
-      010013CCH   LINE      ---      ---       #197
-      010013D4H   LINE      ---      ---       #198
-      010013D4H   LINE      ---      ---       #199
-      010013D4H   LINE      ---      ---       #200
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000C5DH   BLOCK     CODE     ---       LVL=0
-      01000C5DH   LINE      ---      ---       #204
-      01000C68H   LINE      ---      ---       #205
-      01000C68H   BLOCK     CODE     NEAR LAB  LVL=1
-      01000C68H   LINE      ---      ---       #206
-      01000C6BH   LINE      ---      ---       #207
-      01000C6DH   LINE      ---      ---       #209
-      01000C71H   LINE      ---      ---       #210
-      01000C7FH   LINE      ---      ---       #211
-      01000C7FH   LINE      ---      ---       #212
-      01000C9DH   LINE      ---      ---       #213
-      01000C9DH   LINE      ---      ---       #214
-      01000CA3H   LINE      ---      ---       #215
-      01000CA3H   LINE      ---      ---       #216
-      01000CABH   LINE      ---      ---       #217
-      01000CB3H   LINE      ---      ---       #220
-      01000CC1H   LINE      ---      ---       #223
-      01000CC7H   LINE      ---      ---       #224
-      01000CCEH   LINE      ---      ---       #225
-      01000CD9H   LINE      ---      ---       #226
-      01000CE5H   LINE      ---      ---       #229
-      01000D13H   LINE      ---      ---       #232
-      01000D13H   LINE      ---      ---       #233
-      01000D19H   LINE      ---      ---       #234
-      01000D1DH   LINE      ---      ---       #235
-      01000D21H   LINE      ---      ---       #236
-      01000D25H   LINE      ---      ---       #237
-      01000D2DH   LINE      ---      ---       #238
-      01000D2DH   LINE      ---      ---       #239
-      01000D34H   LINE      ---      ---       #240
-      01000D36H   LINE      ---      ---       #242
-      01000D36H   LINE      ---      ---       #243
-      01000D3DH   LINE      ---      ---       #244
-      01000D3DH   LINE      ---      ---       #245
-      01000D3FH   LINE      ---      ---       #247
-      01000D3FH   LINE      ---      ---       #248
-      01000D46H   LINE      ---      ---       #249
-      01000D46H   LINE      ---      ---       #251
-      01000D4CH   LINE      ---      ---       #252
-      01000D53H   LINE      ---      ---       #253
-      01000D53H   LINE      ---      ---       #254
-      01000D59H   LINE      ---      ---       #255
-      01000D67H   LINE      ---      ---       #256
-      01000D6CH   LINE      ---      ---       #257
-      01000D77H   LINE      ---      ---       #258
-      01000D7EH   LINE      ---      ---       #260
-      01000D7EH   LINE      ---      ---       #263
-      01000D86H   LINE      ---      ---       #264
-      01000D86H   LINE      ---      ---       #265
-      01000D94H   LINE      ---      ---       #266
-      01000D94H   LINE      ---      ---       #267
-      01000DBDH   LINE      ---      ---       #269
-      01000DBDH   LINE      ---      ---       #270
-      01000DC3H   LINE      ---      ---       #271
-      01000DC3H   LINE      ---      ---       #272
-      01000DCBH   LINE      ---      ---       #273
-      01000DCBH   LINE      ---      ---       #275
-      01000DD9H   LINE      ---      ---       #277
-      01000DE0H   LINE      ---      ---       #278
-      01000DE0H   LINE      ---      ---       #279
-      01000DE3H   LINE      ---      ---       #280
-      01000DE7H   LINE      ---      ---       #281
-      01000DF2H   LINE      ---      ---       #282
-      01000DF2H   LINE      ---      ---       #283
-      01000DF9H   LINE      ---      ---       #284
-      01000DF9H   LINE      ---      ---       #285
-      01000DFBH   LINE      ---      ---       #286
-      01000DFFH   LINE      ---      ---       #287
-      01000E05H   LINE      ---      ---       #288
-      01000E10H   LINE      ---      ---       #289
-      01000E10H   LINE      ---      ---       #291
-      01000E10H   LINE      ---      ---       #292
-      01000E16H   LINE      ---      ---       #293
-      01000E28H   LINE      ---      ---       #294
-      01000E2BH   LINE      ---      ---       #296
-      01000E2FH   LINE      ---      ---       #298
-      01000E38H   LINE      ---      ---       #299
-      01000E56H   LINE      ---      ---       #301
-      01000E72H   LINE      ---      ---       #303
-      01000E82H   LINE      ---      ---       #304
-      01000E82H   LINE      ---      ---       #305
-      01000E90H   LINE      ---      ---       #306
-      01000E9FH   LINE      ---      ---       #307
-      01000EA7H   LINE      ---      ---       #309
-      01000EB2H   LINE      ---      ---       #310
-      01000EB2H   LINE      ---      ---       #312
+      01000E47H   BLOCK     CODE     ---       LVL=0
+      01000E47H   LINE      ---      ---       #171
+      01000E47H   LINE      ---      ---       #172
+      01000E47H   LINE      ---      ---       #173
+      01000E56H   LINE      ---      ---       #177
+      01000E58H   LINE      ---      ---       #179
+      01000E58H   LINE      ---      ---       #180
+      01000E5FH   LINE      ---      ---       #181
+      01000E5FH   LINE      ---      ---       #182
+      01000E66H   LINE      ---      ---       #183
+      01000E6CH   LINE      ---      ---       #184
+      01000E6DH   LINE      ---      ---       #185
+      01000E74H   LINE      ---      ---       #186
+      01000E74H   LINE      ---      ---       #187
+      01000E77H   LINE      ---      ---       #188
+      01000E7FH   LINE      ---      ---       #189
+      01000E7FH   LINE      ---      ---       #190
+      01000E86H   LINE      ---      ---       #191
+      01000E86H   LINE      ---      ---       #192
+      01000E8BH   LINE      ---      ---       #193
+      01000E94H   LINE      ---      ---       #194
+      01000E99H   LINE      ---      ---       #195
+      01000E9FH   LINE      ---      ---       #196
+      01000EA0H   LINE      ---      ---       #197
+      01000EA7H   LINE      ---      ---       #198
+      01000EA7H   LINE      ---      ---       #199
+      01000EACH   LINE      ---      ---       #200
+      01000EB0H   LINE      ---      ---       #201
+      01000EB7H   LINE      ---      ---       #202
+      01000EBCH   LINE      ---      ---       #203
+      01000EBCH   LINE      ---      ---       #204
+      01000EBCH   LINE      ---      ---       #206
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100091DH   BLOCK     CODE     ---       LVL=0
+      0100091DH   LINE      ---      ---       #210
+      01000928H   LINE      ---      ---       #211
+      01000928H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000928H   LINE      ---      ---       #212
+      0100092BH   LINE      ---      ---       #213
+      0100092DH   LINE      ---      ---       #215
+      01000931H   LINE      ---      ---       #216
+      0100093FH   LINE      ---      ---       #217
+      0100093FH   LINE      ---      ---       #218
+      0100095DH   LINE      ---      ---       #219
+      0100095DH   LINE      ---      ---       #220
+      01000963H   LINE      ---      ---       #221
+      01000963H   LINE      ---      ---       #222
+      0100096BH   LINE      ---      ---       #223
+      01000973H   LINE      ---      ---       #226
+      01000981H   LINE      ---      ---       #229
+      01000987H   LINE      ---      ---       #230
+      0100098EH   LINE      ---      ---       #231
+      01000999H   LINE      ---      ---       #232
+      010009A5H   LINE      ---      ---       #235
+      010009D3H   LINE      ---      ---       #238
+      010009D3H   LINE      ---      ---       #239
+      010009D9H   LINE      ---      ---       #240
+      010009DDH   LINE      ---      ---       #241
+      010009E1H   LINE      ---      ---       #242
+      010009E5H   LINE      ---      ---       #243
+      010009EDH   LINE      ---      ---       #244
+      010009EDH   LINE      ---      ---       #245
+      010009F4H   LINE      ---      ---       #246
+      010009F6H   LINE      ---      ---       #248
+      010009F6H   LINE      ---      ---       #249
+      010009FDH   LINE      ---      ---       #250
+      010009FDH   LINE      ---      ---       #251
+      010009FFH   LINE      ---      ---       #253
+      010009FFH   LINE      ---      ---       #254
+      01000A06H   LINE      ---      ---       #255
+      01000A06H   LINE      ---      ---       #257
+      01000A0CH   LINE      ---      ---       #258
+      01000A25H   LINE      ---      ---       #261
+      01000A25H   LINE      ---      ---       #263
+      01000A25H   LINE      ---      ---       #266
+      01000A2DH   LINE      ---      ---       #267
+      01000A2DH   LINE      ---      ---       #268
+      01000A3BH   LINE      ---      ---       #269
+      01000A3BH   LINE      ---      ---       #270
+      01000A64H   LINE      ---      ---       #272
+      01000A64H   LINE      ---      ---       #273
+      01000A6AH   LINE      ---      ---       #274
+      01000A6AH   LINE      ---      ---       #275
+      01000A72H   LINE      ---      ---       #276
+      01000A72H   LINE      ---      ---       #278
+      01000A7FH   LINE      ---      ---       #280
+      01000A86H   LINE      ---      ---       #281
+      01000A86H   LINE      ---      ---       #282
+      01000A89H   LINE      ---      ---       #283
+      01000A8DH   LINE      ---      ---       #284
+      01000A97H   LINE      ---      ---       #285
+      01000A97H   LINE      ---      ---       #286
+      01000A9EH   LINE      ---      ---       #287
+      01000A9EH   LINE      ---      ---       #288
+      01000AA0H   LINE      ---      ---       #289
+      01000AA4H   LINE      ---      ---       #290
+      01000AAAH   LINE      ---      ---       #291
+      01000AB4H   LINE      ---      ---       #292
+      01000AB4H   LINE      ---      ---       #294
+      01000AB4H   LINE      ---      ---       #295
+      01000ABAH   LINE      ---      ---       #296
+      01000ACCH   LINE      ---      ---       #297
+      01000ACFH   LINE      ---      ---       #299
+      01000AD3H   LINE      ---      ---       #301
+      01000ADCH   LINE      ---      ---       #302
+      01000AFAH   LINE      ---      ---       #304
+      01000B16H   LINE      ---      ---       #306
+      01000B26H   LINE      ---      ---       #307
+      01000B26H   LINE      ---      ---       #308
+      01000B34H   LINE      ---      ---       #309
+      01000B43H   LINE      ---      ---       #310
+      01000B4BH   LINE      ---      ---       #312
+      01000B55H   LINE      ---      ---       #313
+      01000B55H   LINE      ---      ---       #315
       02004E55H   SYMBOL    XDATA    VOID      temp
       02004E56H   SYMBOL    XDATA    VOID      i
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      010017F2H   BLOCK     CODE     ---       LVL=0
-      010017F2H   LINE      ---      ---       #316
-      010017F2H   LINE      ---      ---       #317
-      010017F2H   BLOCK     CODE     NEAR LAB  LVL=1
-      010017F2H   LINE      ---      ---       #320
-      010017F4H   LINE      ---      ---       #321
-      010017F8H   LINE      ---      ---       #322
-      010017F8H   LINE      ---      ---       #323
-      010017FEH   LINE      ---      ---       #324
-      01001800H   LINE      ---      ---       #325
-      01001802H   LINE      ---      ---       #327
-      01001802H   LINE      ---      ---       #328
-      01001808H   LINE      ---      ---       #329
-      01001808H   LINE      ---      ---       #330
-      0100180BH   LINE      ---      ---       #331
-      0100180FH   LINE      ---      ---       #332
-      0100180FH   LINE      ---      ---       #333
-      0100180FH   LINE      ---      ---       #335
-      01001811H   LINE      ---      ---       #336
-      00000006H   SYMBOL    DATA     VOID      temp_value
-      ---         BLOCKEND  CODE     ---       LVL=1
-      ---         BLOCKEND  CODE     ---       LVL=0
-
-      01001812H   BLOCK     CODE     ---       LVL=0
-      01001812H   LINE      ---      ---       #341
-      01001816H   LINE      ---      ---       #342
-      01001816H   BLOCK     CODE     NEAR LAB  LVL=1
-      01001816H   LINE      ---      ---       #343
-      0100181BH   LINE      ---      ---       #345
-      0100181DH   LINE      ---      ---       #346
-      01001827H   LINE      ---      ---       #347
-      01001827H   LINE      ---      ---       #349
-      01001863H   LINE      ---      ---       #350
-      01001863H   LINE      ---      ---       #351
-      01001863H   LINE      ---      ---       #352
-      01001871H   LINE      ---      ---       #353
-      01001873H   LINE      ---      ---       #354
-      01001873H   LINE      ---      ---       #355
-      01001881H   LINE      ---      ---       #356
-      01001883H   LINE      ---      ---       #357
-      01001883H   LINE      ---      ---       #358
-      01001889H   LINE      ---      ---       #360
-      0100188DH   LINE      ---      ---       #362
-      01001891H   LINE      ---      ---       #363
-      01001891H   LINE      ---      ---       #364
-      01001897H   LINE      ---      ---       #365
-      01001899H   LINE      ---      ---       #367
-      01001899H   LINE      ---      ---       #368
-      0100189FH   LINE      ---      ---       #369
-      0100189FH   LINE      ---      ---       #371
-      010018ADH   LINE      ---      ---       #372
-      010018AFH   LINE      ---      ---       #373
-      010018AFH   LINE      ---      ---       #374
-      010018B5H   LINE      ---      ---       #375
-      010018B8H   LINE      ---      ---       #377
-      010018BCH   LINE      ---      ---       #378
-      010018BCH   LINE      ---      ---       #379
-      010018C2H   LINE      ---      ---       #380
-      010018C4H   LINE      ---      ---       #382
-      010018C4H   LINE      ---      ---       #383
-      010018CAH   LINE      ---      ---       #384
-      010018CAH   LINE      ---      ---       #385
-      010018D8H   LINE      ---      ---       #387
-      010018DAH   LINE      ---      ---       #388
-      010018DAH   LINE      ---      ---       #389
-      010018E0H   LINE      ---      ---       #390
-      010018E4H   LINE      ---      ---       #392
-      010018E8H   LINE      ---      ---       #393
-      010018E8H   LINE      ---      ---       #394
-      010018EEH   LINE      ---      ---       #395
-      010018F0H   LINE      ---      ---       #397
-      010018F0H   LINE      ---      ---       #398
-      010018F6H   LINE      ---      ---       #399
-      010018F6H   LINE      ---      ---       #400
-      01001904H   LINE      ---      ---       #401
-      01001906H   LINE      ---      ---       #402
-      01001906H   LINE      ---      ---       #403
-      01001914H   LINE      ---      ---       #404
-      01001916H   LINE      ---      ---       #405
-      01001916H   LINE      ---      ---       #406
-      01001924H   LINE      ---      ---       #407
-      01001926H   LINE      ---      ---       #408
-      01001926H   LINE      ---      ---       #409
-      01001934H   LINE      ---      ---       #410
-      01001936H   LINE      ---      ---       #411
-      01001936H   LINE      ---      ---       #412
-      01001944H   LINE      ---      ---       #413
-      01001946H   LINE      ---      ---       #414
-      01001946H   LINE      ---      ---       #415
-      01001954H   LINE      ---      ---       #416
-      01001956H   LINE      ---      ---       #417
-      01001956H   LINE      ---      ---       #418
-      01001964H   LINE      ---      ---       #419
-      01001966H   LINE      ---      ---       #420
-      01001966H   LINE      ---      ---       #421
-      01001976H   LINE      ---      ---       #422
-      01001976H   LINE      ---      ---       #423
-      01001976H   LINE      ---      ---       #424
-      01001976H   LINE      ---      ---       #425
-      01001976H   LINE      ---      ---       #426
-      01001976H   LINE      ---      ---       #428
-      0100197BH   LINE      ---      ---       #429
+      010017DFH   BLOCK     CODE     ---       LVL=0
+      010017DFH   LINE      ---      ---       #319
+      010017DFH   LINE      ---      ---       #320
+      010017DFH   LINE      ---      ---       #321
+      010017E4H   LINE      ---      ---       #322
+      010017E7H   LINE      ---      ---       #324
+      010017EBH   LINE      ---      ---       #325
+      010017EBH   LINE      ---      ---       #326
+      010017F2H   LINE      ---      ---       #327
+      010017F6H   LINE      ---      ---       #329
+      010017FCH   LINE      ---      ---       #330
+      010017FDH   LINE      ---      ---       #332
+      010017FDH   LINE      ---      ---       #333
+      01001803H   LINE      ---      ---       #334
+      01001803H   LINE      ---      ---       #336
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001804H   BLOCK     CODE     ---       LVL=0
+      01001804H   LINE      ---      ---       #339
+      01001806H   LINE      ---      ---       #340
+      01001806H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001806H   LINE      ---      ---       #341
+      0100180BH   LINE      ---      ---       #343
+      0100180DH   LINE      ---      ---       #344
+      01001817H   LINE      ---      ---       #345
+      01001817H   LINE      ---      ---       #347
+      01001853H   LINE      ---      ---       #348
+      01001853H   LINE      ---      ---       #349
+      01001853H   LINE      ---      ---       #350
+      01001859H   LINE      ---      ---       #351
+      0100185BH   LINE      ---      ---       #352
+      0100185BH   LINE      ---      ---       #353
+      01001861H   LINE      ---      ---       #354
+      01001863H   LINE      ---      ---       #355
+      01001863H   LINE      ---      ---       #356
+      0100186CH   LINE      ---      ---       #357
+      01001871H   LINE      ---      ---       #358
+      01001873H   LINE      ---      ---       #359
+      01001873H   LINE      ---      ---       #360
+      0100187CH   LINE      ---      ---       #361
+      01001881H   LINE      ---      ---       #362
+      01001883H   LINE      ---      ---       #363
+      01001883H   LINE      ---      ---       #364
+      0100188CH   LINE      ---      ---       #365
+      01001891H   LINE      ---      ---       #366
+      01001893H   LINE      ---      ---       #367
+      01001893H   LINE      ---      ---       #368
+      01001899H   LINE      ---      ---       #369
+      0100189BH   LINE      ---      ---       #370
+      0100189BH   LINE      ---      ---       #371
+      010018A1H   LINE      ---      ---       #372
+      010018A3H   LINE      ---      ---       #373
+      010018A3H   LINE      ---      ---       #374
+      010018A9H   LINE      ---      ---       #375
+      010018ABH   LINE      ---      ---       #376
+      010018ABH   LINE      ---      ---       #377
+      010018B1H   LINE      ---      ---       #378
+      010018B3H   LINE      ---      ---       #379
+      010018B3H   LINE      ---      ---       #380
+      010018B9H   LINE      ---      ---       #381
+      010018BBH   LINE      ---      ---       #382
+      010018BBH   LINE      ---      ---       #383
+      010018C1H   LINE      ---      ---       #384
+      010018C3H   LINE      ---      ---       #385
+      010018C3H   LINE      ---      ---       #386
+      010018C9H   LINE      ---      ---       #387
+      010018C9H   LINE      ---      ---       #388
+      010018C9H   LINE      ---      ---       #389
+      010018C9H   LINE      ---      ---       #390
+      010018C9H   LINE      ---      ---       #391
+      010018C9H   LINE      ---      ---       #393
+      010018CEH   LINE      ---      ---       #394
       02004E8EH   SYMBOL    XDATA    VOID      temp
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01001ED3H   BLOCK     CODE     ---       LVL=0
-      01001ED3H   LINE      ---      ---       #433
-      01001EDEH   LINE      ---      ---       #434
-      01001EDEH   BLOCK     CODE     NEAR LAB  LVL=1
-      01001EDEH   LINE      ---      ---       #435
-      01001EE1H   LINE      ---      ---       #437
-      01001EEFH   LINE      ---      ---       #438
-      01001EEFH   LINE      ---      ---       #439
-      01001F1BH   LINE      ---      ---       #441
-      01001F1BH   LINE      ---      ---       #442
-      01001F22H   LINE      ---      ---       #443
-      01001F22H   LINE      ---      ---       #444
-      01001F29H   LINE      ---      ---       #445
-      01001F2CH   LINE      ---      ---       #446
-      01001F30H   LINE      ---      ---       #447
-      01001F30H   LINE      ---      ---       #448
-      01001F37H   LINE      ---      ---       #449
-      01001F3AH   LINE      ---      ---       #450
-      01001F5AH   LINE      ---      ---       #451
-      01001F5AH   LINE      ---      ---       #452
-      01001F5FH   LINE      ---      ---       #453
-      01001F62H   LINE      ---      ---       #454
-      01001F66H   LINE      ---      ---       #455
-      01001F66H   LINE      ---      ---       #456
-      01001F6DH   LINE      ---      ---       #457
-      01001F70H   LINE      ---      ---       #458
-      01001F90H   LINE      ---      ---       #459
-      01001F90H   LINE      ---      ---       #460
-      01001F95H   LINE      ---      ---       #461
-      01001F98H   LINE      ---      ---       #462
-      01001F9CH   LINE      ---      ---       #463
-      01001F9CH   LINE      ---      ---       #464
-      01001FA3H   LINE      ---      ---       #465
-      01001FA6H   LINE      ---      ---       #466
-      01001FC6H   LINE      ---      ---       #467
-      01001FC6H   LINE      ---      ---       #468
-      01001FCBH   LINE      ---      ---       #469
-      01001FCEH   LINE      ---      ---       #470
-      01001FD2H   LINE      ---      ---       #471
-      01001FD2H   LINE      ---      ---       #472
-      01001FD9H   LINE      ---      ---       #473
-      01001FDCH   LINE      ---      ---       #474
-      01001FFCH   LINE      ---      ---       #475
-      01001FFCH   LINE      ---      ---       #476
-      01002002H   LINE      ---      ---       #477
-      01002004H   LINE      ---      ---       #478
-      01002008H   LINE      ---      ---       #479
-      01002008H   LINE      ---      ---       #480
-      0100200FH   LINE      ---      ---       #481
-      01002011H   LINE      ---      ---       #482
-      01002031H   LINE      ---      ---       #483
-      01002031H   LINE      ---      ---       #484
-      01002037H   LINE      ---      ---       #485
-      01002039H   LINE      ---      ---       #486
-      0100203DH   LINE      ---      ---       #487
-      0100203DH   LINE      ---      ---       #488
-      01002044H   LINE      ---      ---       #489
-      01002046H   LINE      ---      ---       #490
-      01002066H   LINE      ---      ---       #491
-      01002066H   LINE      ---      ---       #492
-      0100206DH   LINE      ---      ---       #493
-      0100206FH   LINE      ---      ---       #494
-      01002073H   LINE      ---      ---       #495
-      01002073H   LINE      ---      ---       #496
-      0100207AH   LINE      ---      ---       #497
-      0100207CH   LINE      ---      ---       #498
-      0100209CH   LINE      ---      ---       #499
-      0100209CH   LINE      ---      ---       #500
-      010020A3H   LINE      ---      ---       #501
-      010020A5H   LINE      ---      ---       #502
-      010020A9H   LINE      ---      ---       #503
-      010020A9H   LINE      ---      ---       #504
-      010020B0H   LINE      ---      ---       #505
-      010020B2H   LINE      ---      ---       #507
-      010020D2H   LINE      ---      ---       #508
-      010020D2H   LINE      ---      ---       #509
-      010020D9H   LINE      ---      ---       #510
-      010020DBH   LINE      ---      ---       #511
-      010020DFH   LINE      ---      ---       #512
-      010020DFH   LINE      ---      ---       #513
-      010020E6H   LINE      ---      ---       #514
-      010020E8H   LINE      ---      ---       #515
-      01002108H   LINE      ---      ---       #516
-      01002108H   LINE      ---      ---       #517
-      0100210DH   LINE      ---      ---       #518
-      0100210FH   LINE      ---      ---       #519
-      01002113H   LINE      ---      ---       #520
-      01002113H   LINE      ---      ---       #521
-      0100211AH   LINE      ---      ---       #522
-      0100211AH   LINE      ---      ---       #524
-      01002121H   LINE      ---      ---       #525
-      01002121H   LINE      ---      ---       #526
-      01002141H   LINE      ---      ---       #527
-      01002145H   LINE      ---      ---       #528
-      01002145H   LINE      ---      ---       #529
-      01002145H   LINE      ---      ---       #530
-      0100214EH   LINE      ---      ---       #531
+      01000B56H   BLOCK     CODE     ---       LVL=0
+      01000B56H   LINE      ---      ---       #398
+      01000B61H   LINE      ---      ---       #399
+      01000B61H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000B61H   LINE      ---      ---       #400
+      01000B64H   LINE      ---      ---       #402
+      01000B71H   LINE      ---      ---       #403
+      01000B71H   LINE      ---      ---       #404
+      01000B9CH   LINE      ---      ---       #406
+      01000B9CH   LINE      ---      ---       #413
+      01000BA3H   LINE      ---      ---       #414
+      01000BA3H   LINE      ---      ---       #415
+      01000BA9H   LINE      ---      ---       #416
+      01000BABH   LINE      ---      ---       #421
+      01000BAFH   LINE      ---      ---       #422
+      01000BAFH   LINE      ---      ---       #423
+      01000BB5H   LINE      ---      ---       #424
+      01000BB7H   LINE      ---      ---       #425
+      01000BD7H   LINE      ---      ---       #426
+      01000BD7H   LINE      ---      ---       #427
+      01000BDBH   LINE      ---      ---       #428
+      01000BDDH   LINE      ---      ---       #429
+      01000BE1H   LINE      ---      ---       #430
+      01000BE1H   LINE      ---      ---       #431
+      01000BE7H   LINE      ---      ---       #432
+      01000BE9H   LINE      ---      ---       #433
+      01000C09H   LINE      ---      ---       #434
+      01000C09H   LINE      ---      ---       #435
+      01000C0DH   LINE      ---      ---       #436
+      01000C0FH   LINE      ---      ---       #437
+      01000C13H   LINE      ---      ---       #438
+      01000C13H   LINE      ---      ---       #439
+      01000C19H   LINE      ---      ---       #440
+      01000C1BH   LINE      ---      ---       #445
+      01000C3BH   LINE      ---      ---       #446
+      01000C3BH   LINE      ---      ---       #447
+      01000C40H   LINE      ---      ---       #448
+      01000C42H   LINE      ---      ---       #473
+      01000C46H   LINE      ---      ---       #474
+      01000C46H   LINE      ---      ---       #475
+      01000C4CH   LINE      ---      ---       #476
+      01000C4EH   LINE      ---      ---       #481
+      01000C6EH   LINE      ---      ---       #482
+      01000C6EH   LINE      ---      ---       #483
+      01000C72H   LINE      ---      ---       #484
+      01000C74H   LINE      ---      ---       #485
+      01000C78H   LINE      ---      ---       #486
+      01000C78H   LINE      ---      ---       #487
+      01000C7EH   LINE      ---      ---       #488
+      01000C7EH   LINE      ---      ---       #490
+      01000C85H   LINE      ---      ---       #491
+      01000C85H   LINE      ---      ---       #492
+      01000CA5H   LINE      ---      ---       #493
+      01000CA9H   LINE      ---      ---       #494
+      01000CA9H   LINE      ---      ---       #495
+      01000CA9H   LINE      ---      ---       #496
+      01000CB1H   LINE      ---      ---       #497
       02004E68H   SYMBOL    XDATA    VOID      i
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
       ---         MODULE    ---      ---       KEYSCAN
       02004E31H   PUBLIC    XDATA    ---       ksEvtPool
-      0100197CH   PUBLIC    CODE     ---       KS_GetCurrentEvt
-      01001B86H   PUBLIC    CODE     ---       _array_is_empty
-      01001D73H   PUBLIC    CODE     ---       KS_ScanMatrix
-      01001235H   PUBLIC    CODE     ---       KS_Unistall
-      01000FC1H   PUBLIC    CODE     ---       KS_Initialize
-
-      01001B78H   BLOCK     CODE     ---       LVL=0
-      01001B78H   LINE      ---      ---       #24
-      01001B78H   LINE      ---      ---       #25
-      01001B78H   BLOCK     CODE     NEAR LAB  LVL=1
-      01001B78H   LINE      ---      ---       #27
-      01001B7DH   LINE      ---      ---       #28
-      01001B80H   LINE      ---      ---       #29
-      01001B83H   LINE      ---      ---       #30
-      01001B85H   LINE      ---      ---       #31
+      010018CFH   PUBLIC    CODE     ---       KS_GetCurrentEvt
+      01001AD9H   PUBLIC    CODE     ---       _array_is_empty
+      01001C52H   PUBLIC    CODE     ---       KS_ScanMatrix
+      010013CFH   PUBLIC    CODE     ---       KS_Unistall
+      01001362H   PUBLIC    CODE     ---       KS_Initialize
+
+      01001ACBH   BLOCK     CODE     ---       LVL=0
+      01001ACBH   LINE      ---      ---       #24
+      01001ACBH   LINE      ---      ---       #25
+      01001ACBH   BLOCK     CODE     NEAR LAB  LVL=1
+      01001ACBH   LINE      ---      ---       #27
+      01001AD0H   LINE      ---      ---       #28
+      01001AD3H   LINE      ---      ---       #29
+      01001AD6H   LINE      ---      ---       #30
+      01001AD8H   LINE      ---      ---       #31
       00000006H   SYMBOL    DATA     VOID      c
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01001C00H   BLOCK     CODE     ---       LVL=0
-      01001C00H   LINE      ---      ---       #35
-      01001C00H   LINE      ---      ---       #36
-      01001C00H   BLOCK     CODE     NEAR LAB  LVL=1
-      01001C00H   LINE      ---      ---       #37
-      01001C02H   LINE      ---      ---       #39
-      01001C06H   LINE      ---      ---       #40
-      01001C06H   LINE      ---      ---       #41
-      01001C0EH   LINE      ---      ---       #43
-      01001C0EH   LINE      ---      ---       #44
-      01001C12H   LINE      ---      ---       #45
-      01001C12H   LINE      ---      ---       #46
-      01001C1AH   LINE      ---      ---       #48
-      01001C1AH   LINE      ---      ---       #49
-      01001C1EH   LINE      ---      ---       #50
-      01001C1EH   LINE      ---      ---       #51
-      01001C26H   LINE      ---      ---       #53
-      01001C26H   LINE      ---      ---       #54
-      01001C2AH   LINE      ---      ---       #55
-      01001C2AH   LINE      ---      ---       #56
-      01001C32H   LINE      ---      ---       #58
-      01001C32H   LINE      ---      ---       #59
-      01001C36H   LINE      ---      ---       #60
-      01001C36H   LINE      ---      ---       #61
-      01001C3EH   LINE      ---      ---       #63
-      01001C3EH   LINE      ---      ---       #64
-      01001C42H   LINE      ---      ---       #65
-      01001C42H   LINE      ---      ---       #66
-      01001C4AH   LINE      ---      ---       #68
-      01001C4AH   LINE      ---      ---       #69
-      01001C4EH   LINE      ---      ---       #70
-      01001C4EH   LINE      ---      ---       #71
-      01001C56H   LINE      ---      ---       #73
-      01001C56H   LINE      ---      ---       #74
-      01001C5AH   LINE      ---      ---       #75
-      01001C5AH   LINE      ---      ---       #76
-      01001C62H   LINE      ---      ---       #78
-      01001C62H   LINE      ---      ---       #81
-      01001C64H   LINE      ---      ---       #82
-      01001C64H   LINE      ---      ---       #83
-      01001C73H   LINE      ---      ---       #84
-      01001C73H   LINE      ---      ---       #85
-      01001C76H   LINE      ---      ---       #86
-      01001C76H   LINE      ---      ---       #87
-      01001C7DH   LINE      ---      ---       #88
-      01001C89H   LINE      ---      ---       #89
-      01001C8AH   LINE      ---      ---       #90
-      01001C8AH   LINE      ---      ---       #91
-      01001C8FH   LINE      ---      ---       #92
+      01001B53H   BLOCK     CODE     ---       LVL=0
+      01001B53H   LINE      ---      ---       #35
+      01001B53H   LINE      ---      ---       #36
+      01001B53H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001B53H   LINE      ---      ---       #37
+      01001B55H   LINE      ---      ---       #39
+      01001B61H   LINE      ---      ---       #40
+      01001B61H   LINE      ---      ---       #41
+      01001B7BH   LINE      ---      ---       #43
+      01001B7BH   LINE      ---      ---       #90
+      01001B7DH   LINE      ---      ---       #91
+      01001B7DH   LINE      ---      ---       #92
+      01001B8CH   LINE      ---      ---       #93
+      01001B8CH   LINE      ---      ---       #94
+      01001B8FH   LINE      ---      ---       #95
+      01001B8FH   LINE      ---      ---       #96
+      01001B96H   LINE      ---      ---       #97
+      01001BA2H   LINE      ---      ---       #98
+      01001BA3H   LINE      ---      ---       #99
+      01001BA3H   LINE      ---      ---       #100
+      01001BA8H   LINE      ---      ---       #101
       00000006H   SYMBOL    DATA     VOID      i
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01001C90H   BLOCK     CODE     ---       LVL=0
-      01001C90H   LINE      ---      ---       #94
-      01001C90H   LINE      ---      ---       #95
-      01001C90H   BLOCK     CODE     NEAR LAB  LVL=1
-      01001C90H   LINE      ---      ---       #96
-      01001C92H   LINE      ---      ---       #97
-      01001C93H   LINE      ---      ---       #99
-      01001CA1H   LINE      ---      ---       #100
-      01001CA1H   LINE      ---      ---       #101
-      01001CA8H   LINE      ---      ---       #102
-      01001CA8H   LINE      ---      ---       #103
-      01001CABH   LINE      ---      ---       #104
-      01001CABH   LINE      ---      ---       #105
-      01001CADH   LINE      ---      ---       #107
-      01001CB3H   LINE      ---      ---       #110
-      01001CB7H   LINE      ---      ---       #111
-      01001CB7H   LINE      ---      ---       #112
-      01001CBFH   LINE      ---      ---       #114
-      01001CBFH   LINE      ---      ---       #115
-      01001CC3H   LINE      ---      ---       #116
-      01001CC3H   LINE      ---      ---       #117
-      01001CCBH   LINE      ---      ---       #119
-      01001CCBH   LINE      ---      ---       #120
-      01001CCFH   LINE      ---      ---       #121
-      01001CCFH   LINE      ---      ---       #122
-      01001CD7H   LINE      ---      ---       #124
-      01001CD7H   LINE      ---      ---       #125
-      01001CDBH   LINE      ---      ---       #126
-      01001CDBH   LINE      ---      ---       #127
-      01001CE3H   LINE      ---      ---       #129
-      01001CE3H   LINE      ---      ---       #130
-      01001CE7H   LINE      ---      ---       #131
-      01001CE7H   LINE      ---      ---       #132
-      01001CEFH   LINE      ---      ---       #134
-      01001CEFH   LINE      ---      ---       #135
-      01001CF3H   LINE      ---      ---       #136
-      01001CF3H   LINE      ---      ---       #137
-      01001CFBH   LINE      ---      ---       #139
-      01001CFBH   LINE      ---      ---       #140
-      01001CFFH   LINE      ---      ---       #141
-      01001CFFH   LINE      ---      ---       #142
-      01001D07H   LINE      ---      ---       #144
-      01001D07H   LINE      ---      ---       #145
-      01001D0BH   LINE      ---      ---       #146
-      01001D0BH   LINE      ---      ---       #147
-      01001D13H   LINE      ---      ---       #149
-      01001D13H   LINE      ---      ---       #151
-      01001D15H   LINE      ---      ---       #152
-      01001D15H   LINE      ---      ---       #153
-      01001D18H   LINE      ---      ---       #154
-      01001D18H   LINE      ---      ---       #155
-      01001D26H   LINE      ---      ---       #156
-      01001D2AH   LINE      ---      ---       #157
-      01001D35H   LINE      ---      ---       #158
-      01001D35H   LINE      ---      ---       #159
-      01001D37H   LINE      ---      ---       #160
-      01001D37H   LINE      ---      ---       #161
-      01001D39H   LINE      ---      ---       #163
-      01001D39H   LINE      ---      ---       #164
-      01001D51H   LINE      ---      ---       #165
-      01001D5EH   LINE      ---      ---       #166
-      01001D5EH   LINE      ---      ---       #167
-      01001D62H   LINE      ---      ---       #168
-      01001D6DH   LINE      ---      ---       #169
-      01001D6DH   LINE      ---      ---       #170
-      01001D6DH   LINE      ---      ---       #171
-      01001D72H   LINE      ---      ---       #172
+      01001BA9H   BLOCK     CODE     ---       LVL=0
+      01001BA9H   LINE      ---      ---       #103
+      01001BA9H   LINE      ---      ---       #104
+      01001BA9H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001BA9H   LINE      ---      ---       #105
+      01001BABH   LINE      ---      ---       #106
+      01001BACH   LINE      ---      ---       #108
+      01001BBAH   LINE      ---      ---       #109
+      01001BBAH   LINE      ---      ---       #110
+      01001BC1H   LINE      ---      ---       #111
+      01001BC1H   LINE      ---      ---       #112
+      01001BC4H   LINE      ---      ---       #113
+      01001BC4H   LINE      ---      ---       #114
+      01001BC6H   LINE      ---      ---       #116
+      01001BCCH   LINE      ---      ---       #118
+      01001BD8H   LINE      ---      ---       #119
+      01001BD8H   LINE      ---      ---       #120
+      01001BF2H   LINE      ---      ---       #122
+      01001BF2H   LINE      ---      ---       #166
+      01001BF4H   LINE      ---      ---       #167
+      01001BF4H   LINE      ---      ---       #168
+      01001BF7H   LINE      ---      ---       #169
+      01001BF7H   LINE      ---      ---       #170
+      01001C05H   LINE      ---      ---       #171
+      01001C09H   LINE      ---      ---       #172
+      01001C14H   LINE      ---      ---       #173
+      01001C14H   LINE      ---      ---       #174
+      01001C16H   LINE      ---      ---       #175
+      01001C16H   LINE      ---      ---       #176
+      01001C18H   LINE      ---      ---       #178
+      01001C18H   LINE      ---      ---       #179
+      01001C30H   LINE      ---      ---       #180
+      01001C3DH   LINE      ---      ---       #181
+      01001C3DH   LINE      ---      ---       #182
+      01001C41H   LINE      ---      ---       #183
+      01001C4CH   LINE      ---      ---       #184
+      01001C4CH   LINE      ---      ---       #185
+      01001C4CH   LINE      ---      ---       #186
+      01001C51H   LINE      ---      ---       #187
       00000006H   SYMBOL    DATA     VOID      i
       00000005H   SYMBOL    DATA     VOID      found
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      010010D4H   BLOCK     CODE     ---       LVL=0
-      010010D4H   LINE      ---      ---       #174
-      010010D4H   LINE      ---      ---       #175
-      010010D4H   BLOCK     CODE     NEAR LAB  LVL=1
-      010010D4H   LINE      ---      ---       #176
-      010010D9H   LINE      ---      ---       #178
-      010010E4H   LINE      ---      ---       #179
-      010010E8H   LINE      ---      ---       #180
-      010010F0H   LINE      ---      ---       #181
+      01001630H   BLOCK     CODE     ---       LVL=0
+      01001630H   LINE      ---      ---       #189
+      01001630H   LINE      ---      ---       #190
+      01001630H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001630H   LINE      ---      ---       #191
+      01001635H   LINE      ---      ---       #193
+      01001640H   LINE      ---      ---       #194
+      01001644H   LINE      ---      ---       #195
+      0100164CH   LINE      ---      ---       #196
       02004E8FH   SYMBOL    XDATA    VOID      i
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01000FCDH   BLOCK     CODE     ---       LVL=0
-      01000FCDH   LINE      ---      ---       #183
-      01000FCDH   LINE      ---      ---       #184
-      01000FCDH   BLOCK     CODE     NEAR LAB  LVL=1
-      01000FCDH   LINE      ---      ---       #185
-      01000FD2H   LINE      ---      ---       #186
-      01000FDEH   LINE      ---      ---       #187
-      01000FE3H   LINE      ---      ---       #188
-      01000FEBH   LINE      ---      ---       #189
+      0100136DH   BLOCK     CODE     ---       LVL=0
+      0100136DH   LINE      ---      ---       #198
+      0100136DH   LINE      ---      ---       #199
+      0100136DH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100136DH   LINE      ---      ---       #200
+      01001372H   LINE      ---      ---       #201
+      0100137EH   LINE      ---      ---       #202
+      01001382H   LINE      ---      ---       #203
+      0100138AH   LINE      ---      ---       #204
       02004E90H   SYMBOL    XDATA    VOID      i
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01000FC1H   BLOCK     CODE     ---       LVL=0
-      01000FC1H   LINE      ---      ---       #191
-      01000FC1H   LINE      ---      ---       #192
-      01000FC1H   LINE      ---      ---       #193
-      01000FC6H   LINE      ---      ---       #194
-      01000FC8H   LINE      ---      ---       #195
-      01000FCAH   LINE      ---      ---       #196
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01001235H   BLOCK     CODE     ---       LVL=0
-      01001235H   LINE      ---      ---       #200
-      01001235H   LINE      ---      ---       #201
-      01001235H   BLOCK     CODE     NEAR LAB  LVL=1
-      01001235H   LINE      ---      ---       #202
-      01001237H   LINE      ---      ---       #203
-      0100123BH   LINE      ---      ---       #204
-      0100123CH   LINE      ---      ---       #205
-      0100123DH   LINE      ---      ---       #206
-      01001244H   LINE      ---      ---       #207
-      0100124DH   LINE      ---      ---       #208
-      0100125DH   LINE      ---      ---       #209
-      01001270H   LINE      ---      ---       #210
-      0100127DH   LINE      ---      ---       #211
-      0100128AH   LINE      ---      ---       #212
-      0100128DH   LINE      ---      ---       #214
-      01001290H   LINE      ---      ---       #216
-      01001298H   LINE      ---      ---       #217
-      010012A0H   LINE      ---      ---       #218
-      010012A0H   LINE      ---      ---       #219
-      010012A6H   LINE      ---      ---       #220
-      010012A6H   LINE      ---      ---       #221
-      010012AAH   LINE      ---      ---       #222
-      010012AEH   LINE      ---      ---       #223
-      010012B2H   LINE      ---      ---       #224
-      010012B6H   LINE      ---      ---       #225
-      010012BAH   LINE      ---      ---       #226
-      010012BEH   LINE      ---      ---       #227
-      010012C2H   LINE      ---      ---       #228
-      010012C6H   LINE      ---      ---       #229
-      010012C6H   LINE      ---      ---       #231
-      010012C6H   LINE      ---      ---       #232
-      010012CFH   LINE      ---      ---       #233
-      010012D5H   LINE      ---      ---       #234
-      010012D5H   LINE      ---      ---       #236
-      010012D6H   LINE      ---      ---       #238
-      010012D6H   LINE      ---      ---       #239
-      010012DBH   LINE      ---      ---       #240
-      010012DFH   LINE      ---      ---       #241
-      010012DFH   LINE      ---      ---       #242
+      01001362H   BLOCK     CODE     ---       LVL=0
+      01001362H   LINE      ---      ---       #206
+      01001362H   LINE      ---      ---       #207
+      01001362H   LINE      ---      ---       #208
+      01001367H   LINE      ---      ---       #209
+      01001369H   LINE      ---      ---       #210
+      0100136BH   LINE      ---      ---       #211
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010013CFH   BLOCK     CODE     ---       LVL=0
+      010013CFH   LINE      ---      ---       #215
+      010013CFH   LINE      ---      ---       #216
+      010013CFH   BLOCK     CODE     NEAR LAB  LVL=1
+      010013CFH   LINE      ---      ---       #217
+      010013D1H   LINE      ---      ---       #218
+      010013D5H   LINE      ---      ---       #219
+      010013D6H   LINE      ---      ---       #220
+      010013D7H   LINE      ---      ---       #221
+      010013DEH   LINE      ---      ---       #222
+      010013E7H   LINE      ---      ---       #223
+      010013F7H   LINE      ---      ---       #224
+      0100140AH   LINE      ---      ---       #225
+      01001417H   LINE      ---      ---       #226
+      01001424H   LINE      ---      ---       #227
+      01001427H   LINE      ---      ---       #229
+      0100142AH   LINE      ---      ---       #231
+      01001432H   LINE      ---      ---       #232
+      0100143AH   LINE      ---      ---       #233
+      0100143AH   LINE      ---      ---       #234
+      01001440H   LINE      ---      ---       #235
+      01001440H   LINE      ---      ---       #236
+      01001444H   LINE      ---      ---       #237
+      01001448H   LINE      ---      ---       #238
+      0100144CH   LINE      ---      ---       #239
+      01001450H   LINE      ---      ---       #240
+      01001454H   LINE      ---      ---       #241
+      01001458H   LINE      ---      ---       #242
+      0100145CH   LINE      ---      ---       #243
+      01001460H   LINE      ---      ---       #244
+      01001460H   LINE      ---      ---       #246
+      01001460H   LINE      ---      ---       #247
+      01001469H   LINE      ---      ---       #248
+      0100146FH   LINE      ---      ---       #249
+      0100146FH   LINE      ---      ---       #251
+      01001470H   LINE      ---      ---       #253
+      01001470H   LINE      ---      ---       #254
+      01001475H   LINE      ---      ---       #255
+      01001479H   LINE      ---      ---       #256
+      01001479H   LINE      ---      ---       #257
       00000007H   SYMBOL    DATA     VOID      i
       02004E91H   SYMBOL    XDATA    VOID      temp
       00000006H   SYMBOL    DATA     VOID      tgroup
@@ -1370,33 +1241,33 @@
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01001D73H   BLOCK     CODE     ---       LVL=0
-      01001D73H   LINE      ---      ---       #245
-      01001D73H   LINE      ---      ---       #246
-      01001D73H   BLOCK     CODE     NEAR LAB  LVL=1
-      01001D73H   LINE      ---      ---       #247
-      01001D75H   LINE      ---      ---       #248
-      01001D79H   LINE      ---      ---       #249
-      01001D7AH   LINE      ---      ---       #250
-      01001D7BH   LINE      ---      ---       #251
-      01001D7DH   LINE      ---      ---       #252
-      01001D7FH   LINE      ---      ---       #253
-      01001D81H   LINE      ---      ---       #254
-      01001D88H   LINE      ---      ---       #255
-      01001D91H   LINE      ---      ---       #256
-      01001DA1H   LINE      ---      ---       #257
-      01001E01H   LINE      ---      ---       #258
-      01001E04H   LINE      ---      ---       #260
-      01001E0DH   LINE      ---      ---       #261
-      01001E16H   LINE      ---      ---       #262
-      01001E26H   LINE      ---      ---       #263
-      01001E86H   LINE      ---      ---       #264
-      01001E89H   LINE      ---      ---       #266
-      01001E92H   LINE      ---      ---       #267
-      01001EACH   LINE      ---      ---       #268
-      01001ECFH   LINE      ---      ---       #269
-      01001ECFH   LINE      ---      ---       #270
-      01001ED2H   LINE      ---      ---       #271
+      01001C52H   BLOCK     CODE     ---       LVL=0
+      01001C52H   LINE      ---      ---       #260
+      01001C52H   LINE      ---      ---       #261
+      01001C52H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001C52H   LINE      ---      ---       #262
+      01001C54H   LINE      ---      ---       #263
+      01001C58H   LINE      ---      ---       #264
+      01001C59H   LINE      ---      ---       #265
+      01001C5AH   LINE      ---      ---       #266
+      01001C5CH   LINE      ---      ---       #267
+      01001C5EH   LINE      ---      ---       #268
+      01001C60H   LINE      ---      ---       #269
+      01001C67H   LINE      ---      ---       #270
+      01001C70H   LINE      ---      ---       #271
+      01001C80H   LINE      ---      ---       #272
+      01001CE0H   LINE      ---      ---       #273
+      01001CE3H   LINE      ---      ---       #275
+      01001CECH   LINE      ---      ---       #276
+      01001CF5H   LINE      ---      ---       #277
+      01001D05H   LINE      ---      ---       #278
+      01001D65H   LINE      ---      ---       #279
+      01001D68H   LINE      ---      ---       #281
+      01001D71H   LINE      ---      ---       #282
+      01001D8BH   LINE      ---      ---       #283
+      01001DAEH   LINE      ---      ---       #284
+      01001DAEH   LINE      ---      ---       #285
+      01001DB1H   LINE      ---      ---       #286
       00000007H   SYMBOL    DATA     VOID      i
       02004E69H   SYMBOL    XDATA    VOID      j
       00000006H   SYMBOL    DATA     VOID      tgroup
@@ -1407,109 +1278,109 @@
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01001B86H   BLOCK     CODE     ---       LVL=0
-      01001B86H   LINE      ---      ---       #273
-      01001B91H   LINE      ---      ---       #274
-      01001B91H   BLOCK     CODE     NEAR LAB  LVL=1
-      01001B91H   LINE      ---      ---       #276
-      01001B98H   LINE      ---      ---       #277
-      01001B98H   LINE      ---      ---       #278
-      01001BADH   LINE      ---      ---       #279
-      01001BB0H   LINE      ---      ---       #280
-      01001BB3H   LINE      ---      ---       #281
-      01001BB5H   LINE      ---      ---       #282
+      01001AD9H   BLOCK     CODE     ---       LVL=0
+      01001AD9H   LINE      ---      ---       #288
+      01001AE4H   LINE      ---      ---       #289
+      01001AE4H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001AE4H   LINE      ---      ---       #291
+      01001AEBH   LINE      ---      ---       #292
+      01001AEBH   LINE      ---      ---       #293
+      01001B00H   LINE      ---      ---       #294
+      01001B03H   LINE      ---      ---       #295
+      01001B06H   LINE      ---      ---       #296
+      01001B08H   LINE      ---      ---       #297
       00000007H   SYMBOL    DATA     VOID      i
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      0100197CH   BLOCK     CODE     ---       LVL=0
-      0100197CH   LINE      ---      ---       #285
-      0100197CH   LINE      ---      ---       #286
-      0100197CH   BLOCK     CODE     NEAR LAB  LVL=1
-      0100197CH   LINE      ---      ---       #288
-      01001981H   LINE      ---      ---       #289
-      01001983H   LINE      ---      ---       #290
-      01001985H   LINE      ---      ---       #291
-      01001987H   LINE      ---      ---       #292
-      01001989H   LINE      ---      ---       #293
-      0100198BH   LINE      ---      ---       #294
-      0100198DH   LINE      ---      ---       #295
-      0100198FH   LINE      ---      ---       #296
-      01001991H   LINE      ---      ---       #297
-      01001993H   LINE      ---      ---       #298
-      01001995H   LINE      ---      ---       #299
-      01001997H   LINE      ---      ---       #300
-      01001999H   LINE      ---      ---       #301
-      0100199BH   LINE      ---      ---       #303
-      0100199DH   LINE      ---      ---       #305
-      010019CBH   LINE      ---      ---       #307
-      010019CBH   LINE      ---      ---       #308
-      010019D2H   LINE      ---      ---       #309
-      010019D4H   LINE      ---      ---       #311
-      010019D4H   LINE      ---      ---       #312
-      010019DBH   LINE      ---      ---       #313
-      010019E0H   LINE      ---      ---       #314
-      010019E0H   LINE      ---      ---       #316
-      010019F0H   LINE      ---      ---       #317
-      010019FFH   LINE      ---      ---       #318
-      01001A03H   LINE      ---      ---       #319
-      01001A09H   LINE      ---      ---       #320
-      01001A0FH   LINE      ---      ---       #321
-      01001A17H   LINE      ---      ---       #322
-      01001A17H   LINE      ---      ---       #323
-      01001A1FH   LINE      ---      ---       #324
-      01001A27H   LINE      ---      ---       #325
-      01001A2FH   LINE      ---      ---       #326
-      01001A3BH   LINE      ---      ---       #327
-      01001A5AH   LINE      ---      ---       #328
-      01001A60H   LINE      ---      ---       #329
-      01001A62H   LINE      ---      ---       #330
-      01001A62H   LINE      ---      ---       #331
-      01001A67H   LINE      ---      ---       #332
-      01001A67H   LINE      ---      ---       #334
-      01001A79H   LINE      ---      ---       #335
-      01001A79H   LINE      ---      ---       #336
-      01001A95H   LINE      ---      ---       #337
-      01001AA8H   LINE      ---      ---       #338
-      01001AAEH   LINE      ---      ---       #339
-      01001AAEH   LINE      ---      ---       #340
-      01001AB0H   LINE      ---      ---       #341
-      01001AB2H   LINE      ---      ---       #343
-      01001AB2H   LINE      ---      ---       #345
-      01001AB8H   LINE      ---      ---       #346
-      01001ABFH   LINE      ---      ---       #347
-      01001AD7H   LINE      ---      ---       #348
-      01001AE6H   LINE      ---      ---       #349
-      01001AE6H   LINE      ---      ---       #350
-      01001AEBH   LINE      ---      ---       #351
-      01001AEBH   LINE      ---      ---       #352
-      01001AFCH   LINE      ---      ---       #353
-      01001B0FH   LINE      ---      ---       #354
-      01001B16H   LINE      ---      ---       #355
-      01001B16H   LINE      ---      ---       #356
-      01001B1DH   LINE      ---      ---       #357
-      01001B1FH   LINE      ---      ---       #359
-      01001B1FH   LINE      ---      ---       #360
-      01001B26H   LINE      ---      ---       #361
-      01001B26H   LINE      ---      ---       #362
-      01001B26H   LINE      ---      ---       #363
-      01001B2EH   LINE      ---      ---       #364
-      01001B36H   LINE      ---      ---       #365
-      01001B3EH   LINE      ---      ---       #366
-      01001B44H   LINE      ---      ---       #367
-      01001B44H   LINE      ---      ---       #368
-      01001B4CH   LINE      ---      ---       #370
-      01001B5AH   LINE      ---      ---       #371
-      01001B5AH   LINE      ---      ---       #372
-      01001B5DH   LINE      ---      ---       #373
-      01001B5DH   LINE      ---      ---       #376
-      01001B6AH   LINE      ---      ---       #377
-      01001B6AH   LINE      ---      ---       #378
-      01001B71H   LINE      ---      ---       #379
-      01001B71H   LINE      ---      ---       #381
-      01001B71H   LINE      ---      ---       #382
-      01001B77H   LINE      ---      ---       #383
-      01001B77H   LINE      ---      ---       #386
+      010018CFH   BLOCK     CODE     ---       LVL=0
+      010018CFH   LINE      ---      ---       #300
+      010018CFH   LINE      ---      ---       #301
+      010018CFH   BLOCK     CODE     NEAR LAB  LVL=1
+      010018CFH   LINE      ---      ---       #303
+      010018D4H   LINE      ---      ---       #304
+      010018D6H   LINE      ---      ---       #305
+      010018D8H   LINE      ---      ---       #306
+      010018DAH   LINE      ---      ---       #307
+      010018DCH   LINE      ---      ---       #308
+      010018DEH   LINE      ---      ---       #309
+      010018E0H   LINE      ---      ---       #310
+      010018E2H   LINE      ---      ---       #311
+      010018E4H   LINE      ---      ---       #312
+      010018E6H   LINE      ---      ---       #313
+      010018E8H   LINE      ---      ---       #314
+      010018EAH   LINE      ---      ---       #315
+      010018ECH   LINE      ---      ---       #316
+      010018EEH   LINE      ---      ---       #318
+      010018F0H   LINE      ---      ---       #320
+      0100191EH   LINE      ---      ---       #322
+      0100191EH   LINE      ---      ---       #323
+      01001925H   LINE      ---      ---       #324
+      01001927H   LINE      ---      ---       #326
+      01001927H   LINE      ---      ---       #327
+      0100192EH   LINE      ---      ---       #328
+      01001933H   LINE      ---      ---       #329
+      01001933H   LINE      ---      ---       #331
+      01001943H   LINE      ---      ---       #332
+      01001952H   LINE      ---      ---       #333
+      01001956H   LINE      ---      ---       #334
+      0100195CH   LINE      ---      ---       #335
+      01001962H   LINE      ---      ---       #336
+      0100196AH   LINE      ---      ---       #337
+      0100196AH   LINE      ---      ---       #338
+      01001972H   LINE      ---      ---       #339
+      0100197AH   LINE      ---      ---       #340
+      01001982H   LINE      ---      ---       #341
+      0100198EH   LINE      ---      ---       #342
+      010019ADH   LINE      ---      ---       #343
+      010019B3H   LINE      ---      ---       #344
+      010019B5H   LINE      ---      ---       #345
+      010019B5H   LINE      ---      ---       #346
+      010019BAH   LINE      ---      ---       #347
+      010019BAH   LINE      ---      ---       #349
+      010019CCH   LINE      ---      ---       #350
+      010019CCH   LINE      ---      ---       #351
+      010019E8H   LINE      ---      ---       #352
+      010019FBH   LINE      ---      ---       #353
+      01001A01H   LINE      ---      ---       #354
+      01001A01H   LINE      ---      ---       #355
+      01001A03H   LINE      ---      ---       #356
+      01001A05H   LINE      ---      ---       #358
+      01001A05H   LINE      ---      ---       #360
+      01001A0BH   LINE      ---      ---       #361
+      01001A12H   LINE      ---      ---       #362
+      01001A2AH   LINE      ---      ---       #363
+      01001A39H   LINE      ---      ---       #364
+      01001A39H   LINE      ---      ---       #365
+      01001A3EH   LINE      ---      ---       #366
+      01001A3EH   LINE      ---      ---       #367
+      01001A4FH   LINE      ---      ---       #368
+      01001A62H   LINE      ---      ---       #369
+      01001A69H   LINE      ---      ---       #370
+      01001A69H   LINE      ---      ---       #371
+      01001A70H   LINE      ---      ---       #372
+      01001A72H   LINE      ---      ---       #374
+      01001A72H   LINE      ---      ---       #375
+      01001A79H   LINE      ---      ---       #376
+      01001A79H   LINE      ---      ---       #377
+      01001A79H   LINE      ---      ---       #378
+      01001A81H   LINE      ---      ---       #379
+      01001A89H   LINE      ---      ---       #380
+      01001A91H   LINE      ---      ---       #381
+      01001A97H   LINE      ---      ---       #382
+      01001A97H   LINE      ---      ---       #383
+      01001A9FH   LINE      ---      ---       #385
+      01001AADH   LINE      ---      ---       #386
+      01001AADH   LINE      ---      ---       #387
+      01001AB0H   LINE      ---      ---       #388
+      01001AB0H   LINE      ---      ---       #391
+      01001ABDH   LINE      ---      ---       #392
+      01001ABDH   LINE      ---      ---       #393
+      01001AC4H   LINE      ---      ---       #394
+      01001AC4H   LINE      ---      ---       #396
+      01001AC4H   LINE      ---      ---       #397
+      01001ACAH   LINE      ---      ---       #398
+      01001ACAH   LINE      ---      ---       #401
       02004E12H   SYMBOL    XDATA    VOID      i
       02004E13H   SYMBOL    XDATA    VOID      j
       02004E14H   SYMBOL    XDATA    VOID      temp
@@ -1529,547 +1400,521 @@
 
       ---         MODULE    ---      ---       LED
       010006CFH   PUBLIC    CODE     ---       LED_handle
-      010017ACH   PUBLIC    CODE     ---       LED_device_poweroff
-      010007F8H   PUBLIC    CODE     ---       LED_device_poweron
-      01000FEEH   PUBLIC    CODE     ---       LED_all_shutdown
-
-      01000FEEH   BLOCK     CODE     ---       LVL=0
-      01000FEEH   LINE      ---      ---       #4
-      01000FEEH   LINE      ---      ---       #5
-      01000FEEH   LINE      ---      ---       #6
-      01000FF5H   LINE      ---      ---       #7
-      01000FFCH   LINE      ---      ---       #8
-      01001002H   LINE      ---      ---       #9
-      ---         BLOCKEND  ---      ---       LVL=0
+      01001330H   PUBLIC    CODE     ---       LED_all_shutdown
 
-      010007F8H   BLOCK     CODE     ---       LVL=0
-      010007F8H   LINE      ---      ---       #13
-      010007F8H   LINE      ---      ---       #14
-      010007F8H   LINE      ---      ---       #15
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010017ACH   BLOCK     CODE     ---       LVL=0
-      010017ACH   LINE      ---      ---       #19
-      010017ACH   LINE      ---      ---       #20
-      010017ACH   LINE      ---      ---       #21
+      01001330H   BLOCK     CODE     ---       LVL=0
+      01001330H   LINE      ---      ---       #4
+      01001330H   LINE      ---      ---       #5
+      01001330H   LINE      ---      ---       #6
+      01001336H   LINE      ---      ---       #7
+      0100133CH   LINE      ---      ---       #8
+      01001342H   LINE      ---      ---       #9
       ---         BLOCKEND  ---      ---       LVL=0
 
       010006CFH   BLOCK     CODE     ---       LVL=0
-      010006CFH   LINE      ---      ---       #25
-      010006CFH   LINE      ---      ---       #26
-      010006CFH   LINE      ---      ---       #27
-      010006D9H   LINE      ---      ---       #30
-      010006E1H   LINE      ---      ---       #31
-      010006E1H   LINE      ---      ---       #33
-      010006E8H   LINE      ---      ---       #34
-      010006E8H   LINE      ---      ---       #35
-      010006EBH   LINE      ---      ---       #36
-      010006EDH   LINE      ---      ---       #37
-      010006F4H   LINE      ---      ---       #38
-      010006F4H   LINE      ---      ---       #39
-      010006FAH   LINE      ---      ---       #40
-      010006FAH   LINE      ---      ---       #41
-      01000700H   LINE      ---      ---       #42
-      01000706H   LINE      ---      ---       #43
-      01000706H   LINE      ---      ---       #44
-      01000708H   LINE      ---      ---       #46
-      01000708H   LINE      ---      ---       #47
-      0100070FH   LINE      ---      ---       #48
-      0100070FH   LINE      ---      ---       #49
-      01000711H   LINE      ---      ---       #50
-      01000715H   LINE      ---      ---       #51
-      0100071BH   LINE      ---      ---       #52
-      0100071BH   LINE      ---      ---       #53
-      0100071BH   LINE      ---      ---       #56
-      01000720H   LINE      ---      ---       #57
-      01000720H   LINE      ---      ---       #58
-      0100072CH   LINE      ---      ---       #59
-      0100072CH   LINE      ---      ---       #60
-      01000730H   LINE      ---      ---       #61
-      01000730H   LINE      ---      ---       #62
-      01000736H   LINE      ---      ---       #63
-      0100073CH   LINE      ---      ---       #64
-      0100073EH   LINE      ---      ---       #66
-      0100073EH   LINE      ---      ---       #67
-      01000744H   LINE      ---      ---       #68
-      01000749H   LINE      ---      ---       #69
-      01000749H   LINE      ---      ---       #71
-      01000750H   LINE      ---      ---       #72
-      01000750H   LINE      ---      ---       #73
-      01000756H   LINE      ---      ---       #74
-      0100075CH   LINE      ---      ---       #75
-      0100075EH   LINE      ---      ---       #77
-      0100075EH   LINE      ---      ---       #78
-      01000764H   LINE      ---      ---       #79
-      01000769H   LINE      ---      ---       #80
-      01000769H   LINE      ---      ---       #87
-      01000771H   LINE      ---      ---       #88
-      01000771H   LINE      ---      ---       #89
-      01000772H   LINE      ---      ---       #91
-      01000772H   LINE      ---      ---       #92
-      01000778H   LINE      ---      ---       #93
-      0100077EH   LINE      ---      ---       #94
-      0100077EH   LINE      ---      ---       #95
-      0100077EH   LINE      ---      ---       #97
-      0100077EH   LINE      ---      ---       #98
-      01000784H   LINE      ---      ---       #99
-      0100078AH   LINE      ---      ---       #100
-      0100078AH   LINE      ---      ---       #102
+      010006CFH   LINE      ---      ---       #14
+      010006CFH   LINE      ---      ---       #15
+      010006CFH   LINE      ---      ---       #16
+      010006D9H   LINE      ---      ---       #19
+      010006E1H   LINE      ---      ---       #20
+      010006E1H   LINE      ---      ---       #22
+      010006E8H   LINE      ---      ---       #23
+      010006E8H   LINE      ---      ---       #24
+      010006EAH   LINE      ---      ---       #25
+      010006ECH   LINE      ---      ---       #26
+      010006F3H   LINE      ---      ---       #27
+      010006F3H   LINE      ---      ---       #28
+      010006F9H   LINE      ---      ---       #29
+      010006F9H   LINE      ---      ---       #30
+      010006FFH   LINE      ---      ---       #31
+      01000705H   LINE      ---      ---       #32
+      01000705H   LINE      ---      ---       #33
+      01000707H   LINE      ---      ---       #35
+      01000707H   LINE      ---      ---       #36
+      0100070EH   LINE      ---      ---       #37
+      0100070EH   LINE      ---      ---       #38
+      01000710H   LINE      ---      ---       #39
+      01000714H   LINE      ---      ---       #40
+      0100071AH   LINE      ---      ---       #41
+      0100071AH   LINE      ---      ---       #42
+      0100071AH   LINE      ---      ---       #45
+      0100071FH   LINE      ---      ---       #46
+      0100071FH   LINE      ---      ---       #47
+      0100072BH   LINE      ---      ---       #48
+      0100072BH   LINE      ---      ---       #49
+      0100072FH   LINE      ---      ---       #50
+      0100072FH   LINE      ---      ---       #51
+      01000735H   LINE      ---      ---       #52
+      0100073BH   LINE      ---      ---       #53
+      0100073DH   LINE      ---      ---       #55
+      0100073DH   LINE      ---      ---       #56
+      01000743H   LINE      ---      ---       #57
+      01000748H   LINE      ---      ---       #58
+      01000748H   LINE      ---      ---       #60
+      0100074FH   LINE      ---      ---       #61
+      0100074FH   LINE      ---      ---       #62
+      01000755H   LINE      ---      ---       #63
+      0100075BH   LINE      ---      ---       #64
+      0100075DH   LINE      ---      ---       #66
+      0100075DH   LINE      ---      ---       #67
+      01000763H   LINE      ---      ---       #68
+      01000768H   LINE      ---      ---       #69
+      01000768H   LINE      ---      ---       #76
+      01000770H   LINE      ---      ---       #77
+      01000770H   LINE      ---      ---       #78
+      01000771H   LINE      ---      ---       #80
+      01000771H   LINE      ---      ---       #81
+      01000777H   LINE      ---      ---       #82
+      0100077DH   LINE      ---      ---       #83
+      0100077DH   LINE      ---      ---       #84
+      0100077DH   LINE      ---      ---       #86
+      0100077DH   LINE      ---      ---       #87
+      01000783H   LINE      ---      ---       #89
+      01000783H   LINE      ---      ---       #91
       ---         BLOCKEND  ---      ---       LVL=0
 
       ---         MODULE    ---      ---       SYS
-      010011E3H   PUBLIC    CODE     ---       YC_System_Main
-      010009FBH   PUBLIC    CODE     ---       kb_button_press_timer500ms
-      01000F6FH   PUBLIC    CODE     ---       YC_pairing_timerout_500ms
-      010009B3H   PUBLIC    CODE     ---       YC_connect_timeout_500ms
-      0100079DH   PUBLIC    CODE     ---       LED_timer500ms
-      010022EBH   PUBLIC    CODE     ---       System_Reset_Connect
-      010009F2H   PUBLIC    CODE     ---       System_long_sleep
-      0100214FH   PUBLIC    CODE     ---       System_Software_init
-
-      01000EDFH   BLOCK     CODE     ---       LVL=0
-      01000EDFH   LINE      ---      ---       #11
-      01000EDFH   LINE      ---      ---       #12
-      01000EDFH   LINE      ---      ---       #13
-      01000EEBH   LINE      ---      ---       #14
-      01000EF7H   LINE      ---      ---       #15
-      01000F03H   LINE      ---      ---       #16
-      01000F0FH   LINE      ---      ---       #17
-      01000F1BH   LINE      ---      ---       #18
-      01000F27H   LINE      ---      ---       #20
-      01000F2CH   LINE      ---      ---       #21
-      01000F30H   LINE      ---      ---       #24
-      01000F34H   LINE      ---      ---       #25
-      01000F38H   LINE      ---      ---       #26
-      01000F3CH   LINE      ---      ---       #27
-      01000F40H   LINE      ---      ---       #28
-      01000F44H   LINE      ---      ---       #29
-      01000F48H   LINE      ---      ---       #30
-      01000F4CH   LINE      ---      ---       #31
-      01000F50H   LINE      ---      ---       #32
-      01000F54H   LINE      ---      ---       #33
-      01000F58H   LINE      ---      ---       #34
-      01000F5CH   LINE      ---      ---       #36
-      01000F60H   LINE      ---      ---       #37
-      01000F64H   LINE      ---      ---       #38
-      01000F68H   LINE      ---      ---       #39
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000FECH   BLOCK     CODE     ---       LVL=0
-      01000FECH   LINE      ---      ---       #41
-      01000FECH   LINE      ---      ---       #42
-      01000FECH   LINE      ---      ---       #43
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      0100214FH   BLOCK     CODE     ---       LVL=0
-      0100214FH   LINE      ---      ---       #48
-      0100214FH   LINE      ---      ---       #49
-      0100214FH   LINE      ---      ---       #50
-      01002152H   LINE      ---      ---       #51
-      01002154H   LINE      ---      ---       #52
-      0100215AH   LINE      ---      ---       #53
-      01002160H   LINE      ---      ---       #54
-      01002165H   LINE      ---      ---       #55
-      0100216BH   LINE      ---      ---       #56
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010022E2H   BLOCK     CODE     ---       LVL=0
-      010022E2H   LINE      ---      ---       #58
-      010022E2H   LINE      ---      ---       #59
-      010022E2H   LINE      ---      ---       #60
-      010022E8H   LINE      ---      ---       #61
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010009F2H   BLOCK     CODE     ---       LVL=0
-      010009F2H   LINE      ---      ---       #64
-      010009F2H   LINE      ---      ---       #65
-      010009F2H   LINE      ---      ---       #66
-      010009F7H   LINE      ---      ---       #67
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010022EBH   BLOCK     CODE     ---       LVL=0
-      010022EBH   LINE      ---      ---       #70
-      010022EBH   LINE      ---      ---       #71
-      010022EBH   LINE      ---      ---       #72
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010022EDH   BLOCK     CODE     ---       LVL=0
-      010022EDH   LINE      ---      ---       #80
-      010022F2H   BLOCK     CODE     NEAR LAB  LVL=1
-      010022F2H   LINE      ---      ---       #82
-      010022FCH   LINE      ---      ---       #84
-      010022FCH   LINE      ---      ---       #86
-      010022FCH   LINE      ---      ---       #87
+      0100138BH   PUBLIC    CODE     ---       YC_System_Main
+      01001E5CH   PUBLIC    CODE     ---       kb_button_press_timer500ms
+      01001E27H   PUBLIC    CODE     ---       YC_pairing_timerout_500ms
+      01001DCDH   PUBLIC    CODE     ---       YC_connect_timeout_500ms
+      01000796H   PUBLIC    CODE     ---       LED_timer500ms
+      01001DBBH   PUBLIC    CODE     ---       System_Reset_Connect
+      010007F1H   PUBLIC    CODE     ---       System_long_sleep
+      01000F5BH   PUBLIC    CODE     ---       System_Software_init
+
+      01000CF9H   BLOCK     CODE     ---       LVL=0
+      01000CF9H   LINE      ---      ---       #11
+      01000CF9H   LINE      ---      ---       #12
+      01000CF9H   LINE      ---      ---       #13
+      01000D05H   LINE      ---      ---       #14
+      01000D11H   LINE      ---      ---       #15
+      01000D1DH   LINE      ---      ---       #16
+      01000D29H   LINE      ---      ---       #17
+      01000D35H   LINE      ---      ---       #18
+      01000D41H   LINE      ---      ---       #20
+      01000D46H   LINE      ---      ---       #21
+      01000D4AH   LINE      ---      ---       #24
+      01000D4EH   LINE      ---      ---       #25
+      01000D52H   LINE      ---      ---       #26
+      01000D56H   LINE      ---      ---       #27
+      01000D5AH   LINE      ---      ---       #28
+      01000D5EH   LINE      ---      ---       #29
+      01000D62H   LINE      ---      ---       #30
+      01000D66H   LINE      ---      ---       #31
+      01000D6AH   LINE      ---      ---       #32
+      01000D6EH   LINE      ---      ---       #33
+      01000D72H   LINE      ---      ---       #34
+      01000D76H   LINE      ---      ---       #36
+      01000D7AH   LINE      ---      ---       #37
+      01000D7EH   LINE      ---      ---       #38
+      01000D82H   LINE      ---      ---       #39
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100132EH   BLOCK     CODE     ---       LVL=0
+      0100132EH   LINE      ---      ---       #41
+      0100132EH   LINE      ---      ---       #42
+      0100132EH   LINE      ---      ---       #43
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000F5BH   BLOCK     CODE     ---       LVL=0
+      01000F5BH   LINE      ---      ---       #48
+      01000F5BH   LINE      ---      ---       #49
+      01000F5BH   LINE      ---      ---       #50
+      01000F5DH   LINE      ---      ---       #51
+      01000F60H   LINE      ---      ---       #52
+      01000F66H   LINE      ---      ---       #53
+      01000F6CH   LINE      ---      ---       #54
+      01000F71H   LINE      ---      ---       #55
+      01000F77H   LINE      ---      ---       #56
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001DB2H   BLOCK     CODE     ---       LVL=0
+      01001DB2H   LINE      ---      ---       #58
+      01001DB2H   LINE      ---      ---       #59
+      01001DB2H   LINE      ---      ---       #60
+      01001DB8H   LINE      ---      ---       #61
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010007F1H   BLOCK     CODE     ---       LVL=0
+      010007F1H   LINE      ---      ---       #64
+      010007F1H   LINE      ---      ---       #65
+      010007F1H   LINE      ---      ---       #66
+      010007F6H   LINE      ---      ---       #67
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001DBBH   BLOCK     CODE     ---       LVL=0
+      01001DBBH   LINE      ---      ---       #70
+      01001DBBH   LINE      ---      ---       #71
+      01001DBBH   LINE      ---      ---       #72
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001DBDH   BLOCK     CODE     ---       LVL=0
+      01001DBDH   LINE      ---      ---       #80
+      01001DC2H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001DC2H   LINE      ---      ---       #82
+      01001DCCH   LINE      ---      ---       #84
+      01001DCCH   LINE      ---      ---       #86
+      01001DCCH   LINE      ---      ---       #87
       02004E8AH   SYMBOL    XDATA    VOID      temp
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01000A96H   BLOCK     CODE     ---       LVL=0
-      01000A96H   LINE      ---      ---       #89
-      01000A9BH   LINE      ---      ---       #90
-      01000A9BH   LINE      ---      ---       #91
-      01000AB4H   LINE      ---      ---       #92
-      01000AB4H   LINE      ---      ---       #93
-      01000AB4H   LINE      ---      ---       #97
-      01000AB4H   LINE      ---      ---       #98
-      01000AB6H   LINE      ---      ---       #99
-      01000AB9H   LINE      ---      ---       #100
-      01000AC9H   LINE      ---      ---       #101
-      01000ACDH   LINE      ---      ---       #102
-      01000AE0H   LINE      ---      ---       #103
-      01000AE4H   LINE      ---      ---       #104
-      01000AE6H   LINE      ---      ---       #105
-      01000AE6H   LINE      ---      ---       #106
-      01000AE6H   LINE      ---      ---       #107
-      01000AE8H   LINE      ---      ---       #108
-      01000AE8H   LINE      ---      ---       #112
-      01000AE8H   LINE      ---      ---       #113
-      01000AE8H   LINE      ---      ---       #114
-      01000AEEH   LINE      ---      ---       #115
-      01000AF1H   LINE      ---      ---       #116
-      01000AF3H   LINE      ---      ---       #117
-      01000AF8H   LINE      ---      ---       #118
-      01000AFCH   LINE      ---      ---       #119
-      01000B02H   LINE      ---      ---       #120
-      01000B06H   LINE      ---      ---       #122
-      01000B0EH   LINE      ---      ---       #123
-      01000B0EH   LINE      ---      ---       #124
-      01000B14H   LINE      ---      ---       #125
-      01000B2BH   LINE      ---      ---       #127
-      01000B31H   LINE      ---      ---       #128
-      01000B32H   LINE      ---      ---       #130
-      01000B32H   LINE      ---      ---       #131
-      01000B38H   LINE      ---      ---       #132
-      01000B3FH   LINE      ---      ---       #133
-      01000B3FH   LINE      ---      ---       #134
-      01000B3FH   LINE      ---      ---       #136
-      01000B3FH   LINE      ---      ---       #137
-      01000B44H   LINE      ---      ---       #138
-      01000B46H   LINE      ---      ---       #139
-      01000B4CH   LINE      ---      ---       #140
-      01000B51H   LINE      ---      ---       #142
-      01000B57H   LINE      ---      ---       #143
-      01000B57H   LINE      ---      ---       #144
-      01000B59H   LINE      ---      ---       #145
-      01000B60H   LINE      ---      ---       #146
-      01000B60H   LINE      ---      ---       #147
-      01000B60H   LINE      ---      ---       #149
-      01000B67H   LINE      ---      ---       #150
-      01000B67H   LINE      ---      ---       #151
-      01000B69H   LINE      ---      ---       #152
-      01000B6BH   LINE      ---      ---       #153
-      01000B6BH   LINE      ---      ---       #154
-      01000B6BH   LINE      ---      ---       #155
-      01000B6BH   LINE      ---      ---       #156
-      01000B6BH   LINE      ---      ---       #157
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      0100079DH   BLOCK     CODE     ---       LVL=0
-      0100079DH   LINE      ---      ---       #160
-      0100079DH   LINE      ---      ---       #161
-      0100079DH   LINE      ---      ---       #162
-      010007A5H   LINE      ---      ---       #164
-      010007ABH   LINE      ---      ---       #165
-      010007ABH   LINE      ---      ---       #166
-      010007B0H   LINE      ---      ---       #167
-      010007B0H   LINE      ---      ---       #169
-      010007B0H   LINE      ---      ---       #171
-      010007B0H   LINE      ---      ---       #174
-      010007B5H   LINE      ---      ---       #175
-      010007B5H   LINE      ---      ---       #176
-      010007BBH   LINE      ---      ---       #177
-      010007BBH   LINE      ---      ---       #178
-      010007BDH   LINE      ---      ---       #179
-      010007C3H   LINE      ---      ---       #180
-      010007C9H   LINE      ---      ---       #181
-      010007CFH   LINE      ---      ---       #182
-      010007D1H   LINE      ---      ---       #184
-      010007D7H   LINE      ---      ---       #186
-      010007DDH   LINE      ---      ---       #187
-      010007DDH   LINE      ---      ---       #188
-      010007DFH   LINE      ---      ---       #189
-      010007E5H   LINE      ---      ---       #190
-      010007EBH   LINE      ---      ---       #191
-      010007F1H   LINE      ---      ---       #192
-      010007F1H   LINE      ---      ---       #194
-      010007F7H   LINE      ---      ---       #195
-      010007F7H   LINE      ---      ---       #196
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010009B3H   BLOCK     CODE     ---       LVL=0
-      010009B3H   LINE      ---      ---       #198
-      010009B3H   LINE      ---      ---       #199
-      010009B3H   LINE      ---      ---       #202
-      010009BAH   LINE      ---      ---       #203
-      010009BAH   LINE      ---      ---       #204
-      010009C8H   LINE      ---      ---       #205
-      010009CAH   LINE      ---      ---       #206
-      010009CAH   LINE      ---      ---       #207
-      010009D1H   LINE      ---      ---       #208
-      010009D1H   LINE      ---      ---       #209
-      010009DDH   LINE      ---      ---       #210
-      010009DDH   LINE      ---      ---       #211
-      010009E1H   LINE      ---      ---       #212
-      010009E3H   LINE      ---      ---       #213
-      010009E3H   LINE      ---      ---       #214
-      010009E3H   LINE      ---      ---       #216
-      010009E3H   LINE      ---      ---       #217
-      010009EFH   LINE      ---      ---       #218
-      010009EFH   LINE      ---      ---       #219
-      010009F1H   LINE      ---      ---       #220
-      010009F1H   LINE      ---      ---       #221
-      010009F1H   LINE      ---      ---       #222
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000F6FH   BLOCK     CODE     ---       LVL=0
-      01000F6FH   LINE      ---      ---       #226
-      01000F6FH   LINE      ---      ---       #227
-      01000F6FH   LINE      ---      ---       #229
-      01000F75H   LINE      ---      ---       #230
-      01000F75H   LINE      ---      ---       #231
-      01000F7CH   LINE      ---      ---       #232
-      01000F82H   LINE      ---      ---       #233
-      01000F85H   LINE      ---      ---       #234
-      01000F85H   LINE      ---      ---       #235
-      01000F89H   LINE      ---      ---       #236
-      01000F8DH   LINE      ---      ---       #237
-      01000F8FH   LINE      ---      ---       #238
-      01000F8FH   LINE      ---      ---       #239
-      01000F8FH   LINE      ---      ---       #240
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010009FBH   BLOCK     CODE     ---       LVL=0
-      010009FBH   LINE      ---      ---       #242
-      010009FBH   LINE      ---      ---       #243
-      010009FBH   LINE      ---      ---       #246
-      01000A02H   LINE      ---      ---       #247
-      01000A02H   LINE      ---      ---       #248
-      01000A0BH   LINE      ---      ---       #249
-      01000A0EH   LINE      ---      ---       #250
-      01000A16H   LINE      ---      ---       #251
-      01000A16H   LINE      ---      ---       #252
-      01000A1CH   LINE      ---      ---       #253
-      01000A22H   LINE      ---      ---       #254
-      01000A22H   LINE      ---      ---       #255
-      01000A27H   LINE      ---      ---       #256
-      01000A29H   LINE      ---      ---       #257
-      01000A30H   LINE      ---      ---       #258
-      01000A30H   LINE      ---      ---       #259
-      01000A36H   LINE      ---      ---       #260
-      01000A3BH   LINE      ---      ---       #261
-      01000A3DH   LINE      ---      ---       #262
-      01000A3DH   LINE      ---      ---       #263
-      01000A3DH   LINE      ---      ---       #264
-      01000A3FH   LINE      ---      ---       #266
-      01000A44H   LINE      ---      ---       #268
-      01000A4BH   LINE      ---      ---       #269
-      01000A4BH   LINE      ---      ---       #270
-      01000A51H   LINE      ---      ---       #271
-      01000A5AH   LINE      ---      ---       #272
-      01000A5DH   LINE      ---      ---       #273
-      01000A64H   LINE      ---      ---       #274
-      01000A64H   LINE      ---      ---       #275
-      01000A6EH   LINE      ---      ---       #276
-      01000A6EH   LINE      ---      ---       #277
-      01000A70H   LINE      ---      ---       #278
-      01000A74H   LINE      ---      ---       #279
-      01000A78H   LINE      ---      ---       #280
-      01000A78H   LINE      ---      ---       #281
-      01000A78H   LINE      ---      ---       #282
-      01000A78H   LINE      ---      ---       #284
-      01000A7DH   LINE      ---      ---       #286
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000F90H   BLOCK     CODE     ---       LVL=0
-      01000F90H   LINE      ---      ---       #290
-      01000F90H   LINE      ---      ---       #291
-      01000F90H   LINE      ---      ---       #292
-      01000F93H   LINE      ---      ---       #294
-      01000FA1H   LINE      ---      ---       #296
-      01000FA4H   LINE      ---      ---       #297
-      01000FA6H   LINE      ---      ---       #298
-      01000FA8H   LINE      ---      ---       #299
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010015B7H   BLOCK     CODE     ---       LVL=0
-      010015B7H   LINE      ---      ---       #305
-      010015B7H   LINE      ---      ---       #306
-      010015B7H   LINE      ---      ---       #308
-      010015BDH   LINE      ---      ---       #309
-      010015BDH   LINE      ---      ---       #310
-      010015BFH   LINE      ---      ---       #311
-      010015BFH   LINE      ---      ---       #313
-      010015C5H   LINE      ---      ---       #314
-      010015C7H   LINE      ---      ---       #316
-      010015CDH   LINE      ---      ---       #317
-      010015CDH   LINE      ---      ---       #318
-      010015CFH   LINE      ---      ---       #319
-      010015D2H   LINE      ---      ---       #320
-      010015D8H   LINE      ---      ---       #321
-      010015D8H   LINE      ---      ---       #322
-      010015DAH   LINE      ---      ---       #323
-      010015DAH   LINE      ---      ---       #324
-      010015DCH   LINE      ---      ---       #326
-      010015E2H   LINE      ---      ---       #327
-      010015E2H   LINE      ---      ---       #328
-      010015E8H   LINE      ---      ---       #329
-      010015E8H   LINE      ---      ---       #330
-      010015EAH   LINE      ---      ---       #331
-      010015EEH   LINE      ---      ---       #332
-      010015EEH   LINE      ---      ---       #333
-      010015F5H   LINE      ---      ---       #334
-      010015F7H   LINE      ---      ---       #336
-      010015FEH   LINE      ---      ---       #337
-      01001604H   LINE      ---      ---       #338
-      01001607H   LINE      ---      ---       #339
-      01001607H   LINE      ---      ---       #340
-      01001607H   LINE      ---      ---       #343
-      0100160DH   LINE      ---      ---       #344
-      0100160DH   LINE      ---      ---       #345
-      01001615H   LINE      ---      ---       #346
-      01001615H   LINE      ---      ---       #347
-      01001616H   LINE      ---      ---       #349
-      0100161CH   LINE      ---      ---       #350
-      0100161CH   LINE      ---      ---       #351
-      01001626H   LINE      ---      ---       #352
-      01001628H   LINE      ---      ---       #353
-      0100162EH   LINE      ---      ---       #354
-      0100162EH   LINE      ---      ---       #356
-      01001638H   LINE      ---      ---       #357
-      01001638H   LINE      ---      ---       #358
-      01001638H   LINE      ---      ---       #359
-      01001638H   LINE      ---      ---       #361
-      0100163EH   LINE      ---      ---       #362
-      01001641H   LINE      ---      ---       #363
-      01001641H   LINE      ---      ---       #364
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01001499H   BLOCK     CODE     ---       LVL=0
-      01001499H   LINE      ---      ---       #378
-      01001499H   LINE      ---      ---       #379
-      01001499H   LINE      ---      ---       #380
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010011E3H   BLOCK     CODE     ---       LVL=0
-      010011E3H   LINE      ---      ---       #385
-      010011E3H   LINE      ---      ---       #386
-      010011E3H   LINE      ---      ---       #387
-      010011E5H   LINE      ---      ---       #388
-      010011E5H   LINE      ---      ---       #389
-      010011E7H   LINE      ---      ---       #390
-      010011E9H   LINE      ---      ---       #391
-      010011EBH   LINE      ---      ---       #392
-      010011EEH   LINE      ---      ---       #394
-      010011F9H   LINE      ---      ---       #395
-      010011F9H   LINE      ---      ---       #396
-      010011FBH   LINE      ---      ---       #398
-      010011FEH   LINE      ---      ---       #399
-      01001201H   LINE      ---      ---       #400
-      01001203H   LINE      ---      ---       #401
-      01001203H   LINE      ---      ---       #403
-      01001203H   LINE      ---      ---       #404
-      01001227H   LINE      ---      ---       #406
-      01001227H   LINE      ---      ---       #407
-      01001229H   LINE      ---      ---       #408
-      0100122BH   LINE      ---      ---       #409
-      0100122BH   LINE      ---      ---       #411
-      0100122BH   LINE      ---      ---       #412
-      0100122DH   LINE      ---      ---       #413
-      01001230H   LINE      ---      ---       #414
-      01001232H   LINE      ---      ---       #415
-      01001232H   LINE      ---      ---       #416
-      01001232H   LINE      ---      ---       #417
+      010011A3H   BLOCK     CODE     ---       LVL=0
+      010011A3H   LINE      ---      ---       #89
+      010011A8H   LINE      ---      ---       #90
+      010011A8H   LINE      ---      ---       #91
+      010011C1H   LINE      ---      ---       #92
+      010011C1H   LINE      ---      ---       #93
+      010011C1H   LINE      ---      ---       #97
+      010011C1H   LINE      ---      ---       #98
+      010011C3H   LINE      ---      ---       #99
+      010011C6H   LINE      ---      ---       #100
+      010011D6H   LINE      ---      ---       #101
+      010011DAH   LINE      ---      ---       #102
+      010011EDH   LINE      ---      ---       #103
+      010011F1H   LINE      ---      ---       #104
+      010011F4H   LINE      ---      ---       #105
+      010011F4H   LINE      ---      ---       #106
+      010011F4H   LINE      ---      ---       #107
+      010011F6H   LINE      ---      ---       #108
+      010011F6H   LINE      ---      ---       #112
+      010011F6H   LINE      ---      ---       #113
+      010011F6H   LINE      ---      ---       #114
+      010011FCH   LINE      ---      ---       #115
+      010011FFH   LINE      ---      ---       #116
+      01001202H   LINE      ---      ---       #117
+      01001207H   LINE      ---      ---       #118
+      0100120BH   LINE      ---      ---       #119
+      01001211H   LINE      ---      ---       #120
+      01001215H   LINE      ---      ---       #122
+      0100121DH   LINE      ---      ---       #123
+      0100121DH   LINE      ---      ---       #124
+      01001223H   LINE      ---      ---       #125
+      0100123AH   LINE      ---      ---       #127
+      01001240H   LINE      ---      ---       #128
+      01001241H   LINE      ---      ---       #130
+      01001241H   LINE      ---      ---       #131
+      01001247H   LINE      ---      ---       #132
+      0100124EH   LINE      ---      ---       #133
+      0100124EH   LINE      ---      ---       #134
+      0100124EH   LINE      ---      ---       #136
+      0100124EH   LINE      ---      ---       #137
+      01001253H   LINE      ---      ---       #138
+      01001255H   LINE      ---      ---       #139
+      0100125BH   LINE      ---      ---       #140
+      01001260H   LINE      ---      ---       #142
+      01001266H   LINE      ---      ---       #143
+      01001266H   LINE      ---      ---       #144
+      01001269H   LINE      ---      ---       #145
+      01001271H   LINE      ---      ---       #146
+      01001271H   LINE      ---      ---       #147
+      01001271H   LINE      ---      ---       #149
+      01001278H   LINE      ---      ---       #150
+      01001278H   LINE      ---      ---       #151
+      0100127AH   LINE      ---      ---       #152
+      0100127DH   LINE      ---      ---       #153
+      0100127DH   LINE      ---      ---       #154
+      0100127DH   LINE      ---      ---       #155
+      0100127DH   LINE      ---      ---       #156
+      0100127DH   LINE      ---      ---       #157
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000796H   BLOCK     CODE     ---       LVL=0
+      01000796H   LINE      ---      ---       #160
+      01000796H   LINE      ---      ---       #161
+      01000796H   LINE      ---      ---       #162
+      0100079EH   LINE      ---      ---       #164
+      010007A4H   LINE      ---      ---       #165
+      010007A4H   LINE      ---      ---       #166
+      010007A9H   LINE      ---      ---       #167
+      010007A9H   LINE      ---      ---       #169
+      010007A9H   LINE      ---      ---       #171
+      010007A9H   LINE      ---      ---       #174
+      010007AEH   LINE      ---      ---       #175
+      010007AEH   LINE      ---      ---       #176
+      010007B4H   LINE      ---      ---       #177
+      010007B4H   LINE      ---      ---       #178
+      010007B6H   LINE      ---      ---       #179
+      010007BCH   LINE      ---      ---       #180
+      010007C2H   LINE      ---      ---       #181
+      010007C8H   LINE      ---      ---       #182
+      010007CAH   LINE      ---      ---       #184
+      010007D0H   LINE      ---      ---       #187
+      010007D6H   LINE      ---      ---       #188
+      010007D6H   LINE      ---      ---       #189
+      010007D8H   LINE      ---      ---       #190
+      010007DEH   LINE      ---      ---       #191
+      010007E4H   LINE      ---      ---       #192
+      010007EAH   LINE      ---      ---       #193
+      010007EAH   LINE      ---      ---       #195
+      010007F0H   LINE      ---      ---       #196
+      010007F0H   LINE      ---      ---       #197
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001DCDH   BLOCK     CODE     ---       LVL=0
+      01001DCDH   LINE      ---      ---       #199
+      01001DCDH   LINE      ---      ---       #200
+      01001DCDH   LINE      ---      ---       #203
+      01001DD4H   LINE      ---      ---       #204
+      01001DD4H   LINE      ---      ---       #205
+      01001DE2H   LINE      ---      ---       #206
+      01001DE5H   LINE      ---      ---       #207
+      01001DE5H   LINE      ---      ---       #208
+      01001DECH   LINE      ---      ---       #209
+      01001DECH   LINE      ---      ---       #210
+      01001DF8H   LINE      ---      ---       #211
+      01001DF8H   LINE      ---      ---       #212
+      01001DFDH   LINE      ---      ---       #213
+      01001E00H   LINE      ---      ---       #214
+      01001E00H   LINE      ---      ---       #215
+      01001E00H   LINE      ---      ---       #217
+      01001E00H   LINE      ---      ---       #218
+      01001E0CH   LINE      ---      ---       #219
+      01001E0CH   LINE      ---      ---       #220
+      01001E0FH   LINE      ---      ---       #221
+      01001E0FH   LINE      ---      ---       #222
+      01001E0FH   LINE      ---      ---       #223
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001E27H   BLOCK     CODE     ---       LVL=0
+      01001E27H   LINE      ---      ---       #227
+      01001E27H   LINE      ---      ---       #228
+      01001E27H   LINE      ---      ---       #230
+      01001E2DH   LINE      ---      ---       #231
+      01001E2DH   LINE      ---      ---       #232
+      01001E34H   LINE      ---      ---       #233
+      01001E3AH   LINE      ---      ---       #234
+      01001E3DH   LINE      ---      ---       #235
+      01001E3DH   LINE      ---      ---       #236
+      01001E42H   LINE      ---      ---       #237
+      01001E47H   LINE      ---      ---       #238
+      01001E4AH   LINE      ---      ---       #239
+      01001E4AH   LINE      ---      ---       #240
+      01001E4AH   LINE      ---      ---       #241
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001E5CH   BLOCK     CODE     ---       LVL=0
+      01001E5CH   LINE      ---      ---       #243
+      01001E5CH   LINE      ---      ---       #244
+      01001E5CH   LINE      ---      ---       #247
+      01001E63H   LINE      ---      ---       #248
+      01001E63H   LINE      ---      ---       #249
+      01001E6CH   LINE      ---      ---       #250
+      01001E6FH   LINE      ---      ---       #251
+      01001E77H   LINE      ---      ---       #252
+      01001E77H   LINE      ---      ---       #253
+      01001E7DH   LINE      ---      ---       #254
+      01001E83H   LINE      ---      ---       #255
+      01001E83H   LINE      ---      ---       #256
+      01001E88H   LINE      ---      ---       #257
+      01001E8AH   LINE      ---      ---       #258
+      01001E91H   LINE      ---      ---       #259
+      01001E91H   LINE      ---      ---       #260
+      01001E97H   LINE      ---      ---       #261
+      01001E9CH   LINE      ---      ---       #262
+      01001E9FH   LINE      ---      ---       #263
+      01001E9FH   LINE      ---      ---       #264
+      01001E9FH   LINE      ---      ---       #265
+      01001EA1H   LINE      ---      ---       #267
+      01001EA6H   LINE      ---      ---       #269
+      01001EADH   LINE      ---      ---       #270
+      01001EADH   LINE      ---      ---       #271
+      01001EB3H   LINE      ---      ---       #272
+      01001EBCH   LINE      ---      ---       #273
+      01001EBFH   LINE      ---      ---       #274
+      01001EC6H   LINE      ---      ---       #275
+      01001EC6H   LINE      ---      ---       #276
+      01001ED0H   LINE      ---      ---       #277
+      01001ED0H   LINE      ---      ---       #278
+      01001ED3H   LINE      ---      ---       #279
+      01001ED8H   LINE      ---      ---       #280
+      01001EDDH   LINE      ---      ---       #281
+      01001EDDH   LINE      ---      ---       #282
+      01001EDDH   LINE      ---      ---       #283
+      01001EDDH   LINE      ---      ---       #285
+      01001EE2H   LINE      ---      ---       #287
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001E10H   BLOCK     CODE     ---       LVL=0
+      01001E10H   LINE      ---      ---       #291
+      01001E10H   LINE      ---      ---       #292
+      01001E10H   LINE      ---      ---       #293
+      01001E13H   LINE      ---      ---       #295
+      01001E21H   LINE      ---      ---       #297
+      01001E23H   LINE      ---      ---       #298
+      01001E25H   LINE      ---      ---       #299
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001FCFH   BLOCK     CODE     ---       LVL=0
+      01001FCFH   LINE      ---      ---       #306
+      01001FCFH   LINE      ---      ---       #307
+      01001FCFH   LINE      ---      ---       #309
+      01001FD5H   LINE      ---      ---       #310
+      01001FD5H   LINE      ---      ---       #311
+      01001FD7H   LINE      ---      ---       #312
+      01001FD7H   LINE      ---      ---       #314
+      01001FDDH   LINE      ---      ---       #315
+      01001FDFH   LINE      ---      ---       #317
+      01001FE5H   LINE      ---      ---       #318
+      01001FE5H   LINE      ---      ---       #319
+      01001FE7H   LINE      ---      ---       #320
+      01001FEEH   LINE      ---      ---       #321
+      01001FF4H   LINE      ---      ---       #322
+      01001FF4H   LINE      ---      ---       #323
+      01001FFBH   LINE      ---      ---       #324
+      01001FFBH   LINE      ---      ---       #325
+      01001FFDH   LINE      ---      ---       #327
+      01002003H   LINE      ---      ---       #328
+      01002003H   LINE      ---      ---       #329
+      01002009H   LINE      ---      ---       #330
+      01002009H   LINE      ---      ---       #331
+      0100200BH   LINE      ---      ---       #332
+      0100200FH   LINE      ---      ---       #333
+      0100200FH   LINE      ---      ---       #334
+      01002016H   LINE      ---      ---       #335
+      01002018H   LINE      ---      ---       #337
+      0100201FH   LINE      ---      ---       #338
+      01002025H   LINE      ---      ---       #339
+      01002028H   LINE      ---      ---       #340
+      01002028H   LINE      ---      ---       #341
+      01002028H   LINE      ---      ---       #344
+      0100202EH   LINE      ---      ---       #345
+      0100202EH   LINE      ---      ---       #346
+      01002036H   LINE      ---      ---       #347
+      01002036H   LINE      ---      ---       #348
+      01002037H   LINE      ---      ---       #350
+      0100203DH   LINE      ---      ---       #351
+      0100203DH   LINE      ---      ---       #352
+      01002048H   LINE      ---      ---       #353
+      0100204AH   LINE      ---      ---       #354
+      01002050H   LINE      ---      ---       #355
+      01002050H   LINE      ---      ---       #357
+      0100205BH   LINE      ---      ---       #358
+      0100205BH   LINE      ---      ---       #359
+      0100205BH   LINE      ---      ---       #360
+      0100205BH   LINE      ---      ---       #362
+      01002061H   LINE      ---      ---       #363
+      01002064H   LINE      ---      ---       #364
+      01002064H   LINE      ---      ---       #365
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001526H   BLOCK     CODE     ---       LVL=0
+      01001526H   LINE      ---      ---       #379
+      01001526H   LINE      ---      ---       #380
+      01001526H   LINE      ---      ---       #381
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100138BH   BLOCK     CODE     ---       LVL=0
+      0100138BH   LINE      ---      ---       #386
+      0100138BH   LINE      ---      ---       #387
+      0100138BH   LINE      ---      ---       #388
+      0100138DH   LINE      ---      ---       #389
+      0100138DH   LINE      ---      ---       #390
+      0100138FH   LINE      ---      ---       #391
+      01001392H   LINE      ---      ---       #392
+      01001394H   LINE      ---      ---       #393
+      01001397H   LINE      ---      ---       #395
+      010013A2H   LINE      ---      ---       #396
+      010013A2H   LINE      ---      ---       #397
+      010013A4H   LINE      ---      ---       #399
+      010013A6H   LINE      ---      ---       #400
+      010013A8H   LINE      ---      ---       #401
+      010013AAH   LINE      ---      ---       #402
+      010013AAH   LINE      ---      ---       #404
+      010013AAH   LINE      ---      ---       #405
+      010013C2H   LINE      ---      ---       #407
+      010013C2H   LINE      ---      ---       #408
+      010013C4H   LINE      ---      ---       #409
+      010013C6H   LINE      ---      ---       #410
+      010013C6H   LINE      ---      ---       #412
+      010013C6H   LINE      ---      ---       #413
+      010013C8H   LINE      ---      ---       #414
+      010013CAH   LINE      ---      ---       #415
+      010013CCH   LINE      ---      ---       #416
+      010013CCH   LINE      ---      ---       #417
+      010013CCH   LINE      ---      ---       #418
       ---         BLOCKEND  ---      ---       LVL=0
 
       ---         MODULE    ---      ---       ADC
-      010023E9H   PUBLIC    CODE     ---       YC_adc_check_timer500ms
-      010022FDH   PUBLIC    CODE     ---       YC_adc_check
-      0100216CH   PUBLIC    CODE     ---       YC_adc_init
-
-      0100216CH   BLOCK     CODE     ---       LVL=0
-      0100216CH   LINE      ---      ---       #3
-      0100216CH   LINE      ---      ---       #4
-      0100216CH   BLOCK     CODE     NEAR LAB  LVL=1
-      0100216CH   LINE      ---      ---       #9
-      01002172H   LINE      ---      ---       #10
-      01002178H   LINE      ---      ---       #11
-      0100217BH   LINE      ---      ---       #12
-      0100217CH   LINE      ---      ---       #13
-      0100217CH   LINE      ---      ---       #14
-      0100218FH   LINE      ---      ---       #15
-      01002194H   LINE      ---      ---       #18
-      0100219EH   LINE      ---      ---       #19
-      0100219EH   LINE      ---      ---       #20
-      010021ECH   LINE      ---      ---       #21
-      0100223AH   LINE      ---      ---       #22
-      0100223BH   LINE      ---      ---       #23
-      01002245H   LINE      ---      ---       #24
-      01002245H   LINE      ---      ---       #26
-      01002245H   LINE      ---      ---       #28
-      01002245H   LINE      ---      ---       #29
-      01002293H   LINE      ---      ---       #30
-      010022E1H   LINE      ---      ---       #31
-      010022E1H   LINE      ---      ---       #33
+      01001E4BH   PUBLIC    CODE     ---       YC_adc_check_timer500ms
+      01001EE3H   PUBLIC    CODE     ---       YC_adc_check
+      01002065H   PUBLIC    CODE     ---       YC_adc_init
+
+      01002065H   BLOCK     CODE     ---       LVL=0
+      01002065H   LINE      ---      ---       #3
+      01002065H   LINE      ---      ---       #4
+      01002065H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002065H   LINE      ---      ---       #8
+      0100206BH   LINE      ---      ---       #9
+      0100206EH   LINE      ---      ---       #29
+      01002074H   LINE      ---      ---       #30
+      01002076H   LINE      ---      ---       #31
+      01002076H   LINE      ---      ---       #32
+      01002087H   LINE      ---      ---       #33
+      0100208CH   LINE      ---      ---       #34
+      010020DAH   LINE      ---      ---       #35
+      01002128H   LINE      ---      ---       #38
       00000007H   SYMBOL    DATA     VOID      i
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      010022FDH   BLOCK     CODE     ---       LVL=0
-      010022FDH   LINE      ---      ---       #35
-      010022FDH   LINE      ---      ---       #36
-      010022FDH   BLOCK     CODE     NEAR LAB  LVL=1
-      010022FDH   LINE      ---      ---       #38
-      01002307H   LINE      ---      ---       #45
-      01002327H   LINE      ---      ---       #46
-      01002330H   LINE      ---      ---       #47
-      01002332H   LINE      ---      ---       #48
-      01002337H   LINE      ---      ---       #49
-      01002337H   LINE      ---      ---       #50
-      0100236EH   LINE      ---      ---       #51
-      01002378H   LINE      ---      ---       #52
-      01002395H   LINE      ---      ---       #54
-      010023AAH   LINE      ---      ---       #55
-      010023AAH   LINE      ---      ---       #56
-      010023B0H   LINE      ---      ---       #57
-      010023B1H   LINE      ---      ---       #59
-      010023B1H   LINE      ---      ---       #60
-      010023D0H   LINE      ---      ---       #61
-      010023D0H   LINE      ---      ---       #62
-      010023D6H   LINE      ---      ---       #63
-      010023DCH   LINE      ---      ---       #64
-      010023DDH   LINE      ---      ---       #66
-      010023DDH   LINE      ---      ---       #67
-      010023E2H   LINE      ---      ---       #68
-      010023E8H   LINE      ---      ---       #69
-      010023E8H   LINE      ---      ---       #70
-      010023E8H   LINE      ---      ---       #72
+      01001EE3H   BLOCK     CODE     ---       LVL=0
+      01001EE3H   LINE      ---      ---       #40
+      01001EE3H   LINE      ---      ---       #41
+      01001EE3H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001EE3H   LINE      ---      ---       #44
+      01001EEDH   LINE      ---      ---       #46
+      01001F0DH   LINE      ---      ---       #47
+      01001F16H   LINE      ---      ---       #48
+      01001F18H   LINE      ---      ---       #49
+      01001F1DH   LINE      ---      ---       #50
+      01001F1DH   LINE      ---      ---       #51
+      01001F54H   LINE      ---      ---       #52
+      01001F5EH   LINE      ---      ---       #53
+      01001F7BH   LINE      ---      ---       #55
+      01001F90H   LINE      ---      ---       #56
+      01001F90H   LINE      ---      ---       #57
+      01001F96H   LINE      ---      ---       #58
+      01001F97H   LINE      ---      ---       #60
+      01001F97H   LINE      ---      ---       #61
+      01001FB6H   LINE      ---      ---       #62
+      01001FB6H   LINE      ---      ---       #63
+      01001FBCH   LINE      ---      ---       #64
+      01001FC2H   LINE      ---      ---       #65
+      01001FC3H   LINE      ---      ---       #67
+      01001FC3H   LINE      ---      ---       #68
+      01001FC8H   LINE      ---      ---       #69
+      01001FCEH   LINE      ---      ---       #70
+      01001FCEH   LINE      ---      ---       #71
+      01001FCEH   LINE      ---      ---       #73
       02004E57H   SYMBOL    XDATA    VOID      i
       02004E58H   SYMBOL    XDATA    VOID      batValue
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      010023E9H   BLOCK     CODE     ---       LVL=0
-      010023E9H   LINE      ---      ---       #75
-      010023E9H   LINE      ---      ---       #76
-      010023E9H   LINE      ---      ---       #78
-      010023EFH   LINE      ---      ---       #79
-      010023EFH   LINE      ---      ---       #80
-      010023F1H   LINE      ---      ---       #81
-      010023F4H   LINE      ---      ---       #82
-      010023F4H   LINE      ---      ---       #83
-      010023F7H   LINE      ---      ---       #84
-      010023F9H   LINE      ---      ---       #85
-      010023F9H   LINE      ---      ---       #86
-      010023F9H   LINE      ---      ---       #87
+      01001E4BH   BLOCK     CODE     ---       LVL=0
+      01001E4BH   LINE      ---      ---       #76
+      01001E4BH   LINE      ---      ---       #77
+      01001E4BH   LINE      ---      ---       #80
+      01001E51H   LINE      ---      ---       #81
+      01001E51H   LINE      ---      ---       #82
+      01001E53H   LINE      ---      ---       #83
+      01001E56H   LINE      ---      ---       #84
+      01001E56H   LINE      ---      ---       #85
+      01001E59H   LINE      ---      ---       #86
+      01001E5BH   LINE      ---      ---       #87
+      01001E5BH   LINE      ---      ---       #88
+      01001E5BH   LINE      ---      ---       #90
       ---         BLOCKEND  ---      ---       LVL=0
 
       ---         MODULE    ---      ---       RAM
-      010017AAH   PUBLIC    CODE     ---       main
+      010017B5H   PUBLIC    CODE     ---       main
 
-      010017AAH   BLOCK     CODE     ---       LVL=0
-      010017AAH   LINE      ---      ---       #5
-      010017AAH   LINE      ---      ---       #6
-      010017AAH   LINE      ---      ---       #7
+      010017B5H   BLOCK     CODE     ---       LVL=0
+      010017B5H   LINE      ---      ---       #5
+      010017B5H   LINE      ---      ---       #6
+      010017B5H   LINE      ---      ---       #7
       ---         BLOCKEND  ---      ---       LVL=0
 
       ---         MODULE    ---      ---       IPC
@@ -2083,226 +1928,227 @@
       02000C4BH   PUBLIC    XDATA    ---       ipcReadBuff
       0200054FH   PUBLIC    XDATA    BYTE      ipcPinlen
       02000B7EH   PUBLIC    XDATA    BYTE      current_task
-      010016E3H   PUBLIC    CODE     ---       IPC_DealSingleStep
-      010017BFH   PUBLIC    CODE     ---       IPC_IsTxBuffEmpty
-      010017B3H   PUBLIC    CODE     ---       IPC_AbandonLpm
-      01000FB4H   PUBLIC    CODE     ---       IPC_WaitLpm
-      0100149FH   PUBLIC    CODE     ---       _IPC_Initialize
-      010024A4H   PUBLIC    CODE     ---       IPC_GetBBDIsconnectReason
-      010014ACH   PUBLIC    CODE     ---       _IPC_Tx24GData
-      010014B2H   PUBLIC    CODE     ---       _IPC_TxData
-      010008F6H   PUBLIC    CODE     ---       _IPC_TxControlCmd
-
-      010023FAH   BLOCK     CODE     ---       LVL=0
-      010023FAH   LINE      ---      ---       #44
-      0100240AH   LINE      ---      ---       #45
-      0100240AH   LINE      ---      ---       #46
-      01002453H   LINE      ---      ---       #47
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01002454H   BLOCK     CODE     ---       LVL=0
-      01002454H   LINE      ---      ---       #49
-      0100245EH   LINE      ---      ---       #50
-      0100245EH   BLOCK     CODE     NEAR LAB  LVL=1
-      0100245EH   LINE      ---      ---       #51
-      01002466H   LINE      ---      ---       #52
-      0100246CH   LINE      ---      ---       #53
-      0100248BH   LINE      ---      ---       #54
-      01002495H   LINE      ---      ---       #55
-      01002499H   LINE      ---      ---       #56
-      01002499H   LINE      ---      ---       #57
-      0100249BH   LINE      ---      ---       #58
-      010024A3H   LINE      ---      ---       #59
+      010016EEH   PUBLIC    CODE     ---       IPC_DealSingleStep
+      01000FADH   PUBLIC    CODE     ---       IPC_IsTxBuffEmpty
+      010017B7H   PUBLIC    CODE     ---       IPC_AbandonLpm
+      01001519H   PUBLIC    CODE     ---       IPC_WaitLpm
+      0100152CH   PUBLIC    CODE     ---       _IPC_Initialize
+      010021D3H   PUBLIC    CODE     ---       IPC_GetBBDIsconnectReason
+      01000F53H   PUBLIC    CODE     ---       _IPC_Tx24GData
+      010008B5H   PUBLIC    CODE     ---       _IPC_TxData
+      010007F8H   PUBLIC    CODE     ---       _IPC_TxControlCmd
+
+      01002129H   BLOCK     CODE     ---       LVL=0
+      01002129H   LINE      ---      ---       #44
+      01002139H   LINE      ---      ---       #45
+      01002139H   LINE      ---      ---       #46
+      01002182H   LINE      ---      ---       #47
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01002183H   BLOCK     CODE     ---       LVL=0
+      01002183H   LINE      ---      ---       #49
+      0100218DH   LINE      ---      ---       #50
+      0100218DH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100218DH   LINE      ---      ---       #51
+      01002195H   LINE      ---      ---       #52
+      0100219BH   LINE      ---      ---       #53
+      010021BAH   LINE      ---      ---       #54
+      010021C4H   LINE      ---      ---       #55
+      010021C8H   LINE      ---      ---       #56
+      010021C8H   LINE      ---      ---       #57
+      010021CAH   LINE      ---      ---       #58
+      010021D2H   LINE      ---      ---       #59
       00000006H   SYMBOL    DATA     VOID      src
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      0100091EH   BLOCK     CODE     ---       LVL=0
-      0100091EH   LINE      ---      ---       #61
-      0100092CH   LINE      ---      ---       #62
-      0100092CH   BLOCK     CODE     NEAR LAB  LVL=1
-      0100092CH   LINE      ---      ---       #63
-      0100093BH   LINE      ---      ---       #64
-      0100095AH   LINE      ---      ---       #65
-      01000964H   LINE      ---      ---       #66
-      01000989H   LINE      ---      ---       #67
-      01000997H   LINE      ---      ---       #68
-      010009A1H   LINE      ---      ---       #69
-      010009A1H   LINE      ---      ---       #70
-      010009A3H   LINE      ---      ---       #71
-      010009B2H   LINE      ---      ---       #72
+      01000820H   BLOCK     CODE     ---       LVL=0
+      01000820H   LINE      ---      ---       #61
+      0100082EH   LINE      ---      ---       #62
+      0100082EH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100082EH   LINE      ---      ---       #63
+      0100083DH   LINE      ---      ---       #64
+      0100085CH   LINE      ---      ---       #65
+      01000866H   LINE      ---      ---       #66
+      0100088BH   LINE      ---      ---       #67
+      01000899H   LINE      ---      ---       #68
+      010008A3H   LINE      ---      ---       #69
+      010008A3H   LINE      ---      ---       #70
+      010008A5H   LINE      ---      ---       #71
+      010008B4H   LINE      ---      ---       #72
       02004E4AH   SYMBOL    XDATA    VOID      dest
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      010008F6H   BLOCK     CODE     ---       LVL=0
-      010008F6H   LINE      ---      ---       #74
-      010008FBH   LINE      ---      ---       #75
-      010008FBH   BLOCK     CODE     NEAR LAB  LVL=1
-      010008FBH   LINE      ---      ---       #76
-      0100090EH   LINE      ---      ---       #79
-      01000916H   LINE      ---      ---       #80
+      010007F8H   BLOCK     CODE     ---       LVL=0
+      010007F8H   LINE      ---      ---       #74
+      010007FDH   LINE      ---      ---       #75
+      010007FDH   BLOCK     CODE     NEAR LAB  LVL=1
+      010007FDH   LINE      ---      ---       #76
+      01000810H   LINE      ---      ---       #79
+      01000818H   LINE      ---      ---       #80
       02004E72H   SYMBOL    XDATA    VOID      cmdBuff
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      010014B2H   BLOCK     CODE     ---       LVL=0
-      010014B2H   LINE      ---      ---       #83
-      010014B7H   LINE      ---      ---       #84
-      010014B7H   LINE      ---      ---       #85
-      010014BDH   LINE      ---      ---       #86
-      010014C9H   LINE      ---      ---       #87
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010014ACH   BLOCK     CODE     ---       LVL=0
-      010014ACH   LINE      ---      ---       #90
-      010014ACH   LINE      ---      ---       #91
-      010014ACH   LINE      ---      ---       #92
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010024A4H   BLOCK     CODE     ---       LVL=0
-      010024A4H   LINE      ---      ---       #98
-      010024A4H   LINE      ---      ---       #99
-      010024A4H   LINE      ---      ---       #100
-      010024A9H   LINE      ---      ---       #101
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      0100149FH   BLOCK     CODE     ---       LVL=0
-      0100149FH   LINE      ---      ---       #103
-      0100149FH   LINE      ---      ---       #104
-      0100149FH   LINE      ---      ---       #105
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000FB4H   BLOCK     CODE     ---       LVL=0
-      01000FB4H   LINE      ---      ---       #108
-      01000FB4H   LINE      ---      ---       #109
-      01000FB4H   LINE      ---      ---       #110
-      01000FB9H   LINE      ---      ---       #111
-      01000FBDH   LINE      ---      ---       #112
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010017B3H   BLOCK     CODE     ---       LVL=0
-      010017B3H   LINE      ---      ---       #115
-      010017B3H   LINE      ---      ---       #116
-      010017B3H   LINE      ---      ---       #117
-      010017B9H   LINE      ---      ---       #118
-      010017BEH   LINE      ---      ---       #119
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010017BFH   BLOCK     CODE     ---       LVL=0
-      010017BFH   LINE      ---      ---       #121
-      010017BFH   LINE      ---      ---       #122
-      010017BFH   LINE      ---      ---       #123
-      010017D3H   LINE      ---      ---       #124
-      010017D5H   LINE      ---      ---       #125
-      010017D6H   LINE      ---      ---       #126
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010016E3H   BLOCK     CODE     ---       LVL=0
-      010016E3H   LINE      ---      ---       #129
-      010016E3H   LINE      ---      ---       #130
-      010016E3H   BLOCK     CODE     NEAR LAB  LVL=1
-      010016E3H   LINE      ---      ---       #131
-      010016F5H   LINE      ---      ---       #132
-      01001709H   LINE      ---      ---       #133
-      01001709H   LINE      ---      ---       #134
-      01001712H   LINE      ---      ---       #135
-      01001723H   LINE      ---      ---       #136
-      0100172DH   LINE      ---      ---       #137
-      0100174CH   LINE      ---      ---       #138
-      0100174EH   LINE      ---      ---       #139
-      0100174EH   LINE      ---      ---       #140
-      01001750H   LINE      ---      ---       #141
-      01001750H   LINE      ---      ---       #142
-      01001750H   LINE      ---      ---       #143
-      01001764H   LINE      ---      ---       #144
-      01001772H   LINE      ---      ---       #146
-      01001775H   LINE      ---      ---       #148
-      01001784H   LINE      ---      ---       #149
-      01001786H   LINE      ---      ---       #150
-      01001790H   LINE      ---      ---       #151
-      0100179EH   LINE      ---      ---       #153
-      010017A1H   LINE      ---      ---       #155
-      010017A7H   LINE      ---      ---       #156
-      010017A9H   LINE      ---      ---       #158
-      01001750H   SYMBOL    ---      ---       IPC_TIMERingleStep
+      010008B5H   BLOCK     CODE     ---       LVL=0
+      010008B5H   LINE      ---      ---       #83
+      010008BAH   LINE      ---      ---       #84
+      010008BAH   LINE      ---      ---       #85
+      010008C0H   LINE      ---      ---       #86
+      010008CBH   LINE      ---      ---       #87
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000F53H   BLOCK     CODE     ---       LVL=0
+      01000F53H   LINE      ---      ---       #90
+      01000F53H   LINE      ---      ---       #91
+      01000F53H   LINE      ---      ---       #92
+      01000F59H   LINE      ---      ---       #93
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010021D3H   BLOCK     CODE     ---       LVL=0
+      010021D3H   LINE      ---      ---       #98
+      010021D3H   LINE      ---      ---       #99
+      010021D3H   LINE      ---      ---       #100
+      010021D8H   LINE      ---      ---       #101
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100152CH   BLOCK     CODE     ---       LVL=0
+      0100152CH   LINE      ---      ---       #103
+      0100152CH   LINE      ---      ---       #104
+      0100152CH   LINE      ---      ---       #105
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001519H   BLOCK     CODE     ---       LVL=0
+      01001519H   LINE      ---      ---       #108
+      01001519H   LINE      ---      ---       #109
+      01001519H   LINE      ---      ---       #110
+      0100151EH   LINE      ---      ---       #111
+      01001522H   LINE      ---      ---       #112
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010017B7H   BLOCK     CODE     ---       LVL=0
+      010017B7H   LINE      ---      ---       #115
+      010017B7H   LINE      ---      ---       #116
+      010017B7H   LINE      ---      ---       #117
+      010017BDH   LINE      ---      ---       #118
+      010017C2H   LINE      ---      ---       #119
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FADH   BLOCK     CODE     ---       LVL=0
+      01000FADH   LINE      ---      ---       #121
+      01000FADH   LINE      ---      ---       #122
+      01000FADH   LINE      ---      ---       #123
+      01000FC1H   LINE      ---      ---       #124
+      01000FC3H   LINE      ---      ---       #125
+      01000FC4H   LINE      ---      ---       #126
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010016EEH   BLOCK     CODE     ---       LVL=0
+      010016EEH   LINE      ---      ---       #129
+      010016EEH   LINE      ---      ---       #130
+      010016EEH   BLOCK     CODE     NEAR LAB  LVL=1
+      010016EEH   LINE      ---      ---       #131
+      01001700H   LINE      ---      ---       #132
+      01001714H   LINE      ---      ---       #133
+      01001714H   LINE      ---      ---       #134
+      0100171DH   LINE      ---      ---       #135
+      0100172EH   LINE      ---      ---       #136
+      01001738H   LINE      ---      ---       #137
+      01001757H   LINE      ---      ---       #138
+      01001759H   LINE      ---      ---       #139
+      01001759H   LINE      ---      ---       #140
+      0100175BH   LINE      ---      ---       #141
+      0100175BH   LINE      ---      ---       #142
+      0100175BH   LINE      ---      ---       #143
+      0100176FH   LINE      ---      ---       #144
+      0100177DH   LINE      ---      ---       #146
+      01001780H   LINE      ---      ---       #148
+      0100178FH   LINE      ---      ---       #149
+      01001791H   LINE      ---      ---       #150
+      0100179BH   LINE      ---      ---       #151
+      010017A9H   LINE      ---      ---       #153
+      010017ACH   LINE      ---      ---       #155
+      010017B2H   LINE      ---      ---       #156
+      010017B4H   LINE      ---      ---       #158
+      0100175BH   SYMBOL    ---      ---       IPC_TIMERingleStep
       02004E7BH   SYMBOL    XDATA    VOID      pbuff
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
       ---         MODULE    ---      ---       UTILITIES
       02004E38H   PUBLIC    XDATA    BYTE      ?_compare_str?BYTE
-      01001BB6H   PUBLIC    CODE     ---       _compare_str
-      01000A7EH   PUBLIC    CODE     ---       _Delay1ms
-      010024F5H   PUBLIC    CODE     ---       _xmemclear_ff
-      01000EB3H   PUBLIC    CODE     ---       _xmemclear
+      01001B09H   PUBLIC    CODE     ---       _compare_str
+      0100109CH   PUBLIC    CODE     ---       _Delay1ms
+      01002224H   PUBLIC    CODE     ---       _xmemclear_ff
+      01000CCDH   PUBLIC    CODE     ---       _xmemclear
       02004E29H   PUBLIC    XDATA    BYTE      ?_dmemcpy?BYTE
-      010024B1H   PUBLIC    CODE     ---       _dmemcpy
+      010021E0H   PUBLIC    CODE     ---       _dmemcpy
       02004E4CH   PUBLIC    XDATA    BYTE      ?_xmemcpy?BYTE
-      01000C1AH   PUBLIC    CODE     ---       _xmemcpy
-      010024AAH   PUBLIC    CODE     ---       YC_Ice_break
+      010008DAH   PUBLIC    CODE     ---       _xmemcpy
+      010021D9H   PUBLIC    CODE     ---       YC_Ice_break
 
-      010024AAH   BLOCK     CODE     ---       LVL=0
-      010024AAH   LINE      ---      ---       #3
-      010024AAH   LINE      ---      ---       #4
-      010024AAH   LINE      ---      ---       #5
-      010024B0H   LINE      ---      ---       #7
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000C1AH   BLOCK     CODE     ---       LVL=0
-      01000C1AH   LINE      ---      ---       #9
-      01000C2BH   LINE      ---      ---       #10
-      01000C2BH   LINE      ---      ---       #11
-      01000C35H   LINE      ---      ---       #12
-      01000C5CH   LINE      ---      ---       #14
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010024B1H   BLOCK     CODE     ---       LVL=0
-      010024B1H   LINE      ---      ---       #16
-      010024BCH   LINE      ---      ---       #17
-      010024BCH   LINE      ---      ---       #18
-      010024CAH   LINE      ---      ---       #19
-      010024F4H   LINE      ---      ---       #21
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000EB3H   BLOCK     CODE     ---       LVL=0
-      01000EB3H   LINE      ---      ---       #23
-      01000EBEH   LINE      ---      ---       #24
-      01000EBEH   LINE      ---      ---       #25
-      01000EC8H   LINE      ---      ---       #26
-      01000EDEH   LINE      ---      ---       #28
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010024F5H   BLOCK     CODE     ---       LVL=0
-      010024F5H   LINE      ---      ---       #30
-      01002500H   LINE      ---      ---       #31
-      01002500H   LINE      ---      ---       #32
-      0100250AH   LINE      ---      ---       #33
-      01002521H   LINE      ---      ---       #35
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000A7EH   BLOCK     CODE     ---       LVL=0
-      01000A7EH   LINE      ---      ---       #46
-      01000A7EH   LINE      ---      ---       #47
-      01000A7EH   BLOCK     CODE     NEAR LAB  LVL=1
-      01000A7EH   LINE      ---      ---       #49
-      01000A84H   LINE      ---      ---       #50
-      01000A92H   LINE      ---      ---       #51
-      01000A95H   LINE      ---      ---       #52
+      010021D9H   BLOCK     CODE     ---       LVL=0
+      010021D9H   LINE      ---      ---       #3
+      010021D9H   LINE      ---      ---       #4
+      010021D9H   LINE      ---      ---       #5
+      010021DFH   LINE      ---      ---       #7
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010008DAH   BLOCK     CODE     ---       LVL=0
+      010008DAH   LINE      ---      ---       #9
+      010008EBH   LINE      ---      ---       #10
+      010008EBH   LINE      ---      ---       #11
+      010008F5H   LINE      ---      ---       #12
+      0100091CH   LINE      ---      ---       #14
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010021E0H   BLOCK     CODE     ---       LVL=0
+      010021E0H   LINE      ---      ---       #16
+      010021EBH   LINE      ---      ---       #17
+      010021EBH   LINE      ---      ---       #18
+      010021F9H   LINE      ---      ---       #19
+      01002223H   LINE      ---      ---       #21
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000CCDH   BLOCK     CODE     ---       LVL=0
+      01000CCDH   LINE      ---      ---       #23
+      01000CD8H   LINE      ---      ---       #24
+      01000CD8H   LINE      ---      ---       #25
+      01000CE2H   LINE      ---      ---       #26
+      01000CF8H   LINE      ---      ---       #28
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01002224H   BLOCK     CODE     ---       LVL=0
+      01002224H   LINE      ---      ---       #30
+      0100222FH   LINE      ---      ---       #31
+      0100222FH   LINE      ---      ---       #32
+      01002239H   LINE      ---      ---       #33
+      01002250H   LINE      ---      ---       #35
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100109CH   BLOCK     CODE     ---       LVL=0
+      0100109CH   LINE      ---      ---       #46
+      0100109CH   LINE      ---      ---       #47
+      0100109CH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100109CH   LINE      ---      ---       #49
+      010010A2H   LINE      ---      ---       #50
+      010010B0H   LINE      ---      ---       #51
+      010010B3H   LINE      ---      ---       #52
       00000004H   SYMBOL    DATA     VOID      j
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01001BB6H   BLOCK     CODE     ---       LVL=0
-      01001BB6H   LINE      ---      ---       #54
-      01001BC1H   LINE      ---      ---       #55
-      01001BC1H   BLOCK     CODE     NEAR LAB  LVL=1
-      01001BC1H   LINE      ---      ---       #57
-      01001BCDH   LINE      ---      ---       #58
-      01001BF7H   LINE      ---      ---       #59
-      01001BFAH   LINE      ---      ---       #60
-      01001BFDH   LINE      ---      ---       #61
-      01001BFFH   LINE      ---      ---       #62
+      01001B09H   BLOCK     CODE     ---       LVL=0
+      01001B09H   LINE      ---      ---       #54
+      01001B14H   LINE      ---      ---       #55
+      01001B14H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001B14H   LINE      ---      ---       #57
+      01001B20H   LINE      ---      ---       #58
+      01001B4AH   LINE      ---      ---       #59
+      01001B4DH   LINE      ---      ---       #60
+      01001B50H   LINE      ---      ---       #61
+      01001B52H   LINE      ---      ---       #62
       00000007H   SYMBOL    DATA     VOID      i
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
@@ -2310,247 +2156,247 @@
       ---         MODULE    ---      ---       GPIO
       020000A3H   PUBLIC    XDATA    ---       YC_GPIOWakeupL
       020000A7H   PUBLIC    XDATA    ---       YC_GPIOWakeupH
-      0100257EH   PUBLIC    CODE     ---       GPIO_fillpd
-      01002561H   PUBLIC    CODE     ---       _GPIO_FlipOutBit
-      010012E0H   PUBLIC    CODE     ---       _GPIO_SetWakeupByCurrentState
-      01002522H   PUBLIC    CODE     ---       _GPIO_ClearWakeup
+      01002290H   PUBLIC    CODE     ---       GPIO_fillpd
+      010017C3H   PUBLIC    CODE     ---       _GPIO_FlipOutBit
+      0100147AH   PUBLIC    CODE     ---       _GPIO_SetWakeupByCurrentState
+      01002251H   PUBLIC    CODE     ---       _GPIO_ClearWakeup
       00000020H.7 PUBLIC    BIT      BIT       ?_GPIO_SetWakeup?BIT
-      010012F3H   PUBLIC    CODE     ---       _GPIO_SetWakeup
+      0100148DH   PUBLIC    CODE     ---       _GPIO_SetWakeup
       00000020H.6 PUBLIC    BIT      BIT       ?_GPIO_SetOutput?BIT
-      01001006H   PUBLIC    CODE     ---       _GPIO_SetOutput
+      01001346H   PUBLIC    CODE     ---       _GPIO_SetOutput
       00000020H.5 PUBLIC    BIT      BIT       ?_GPIO_SetInput?BIT
-      01001044H   PUBLIC    CODE     ---       _GPIO_SetInput
+      0100158FH   PUBLIC    CODE     ---       _GPIO_SetInput
       00000020H.4 PUBLIC    BIT      BIT       ?_GPIO_Setoe?BIT
-      01001033H   PUBLIC    CODE     ---       _GPIO_Setoe
+      010015ADH   PUBLIC    CODE     ---       _GPIO_Setoe
       00000020H.3 PUBLIC    BIT      BIT       ?_GPIO_SetPd?BIT
-      01001062H   PUBLIC    CODE     ---       _GPIO_SetPd
+      010015BEH   PUBLIC    CODE     ---       _GPIO_SetPd
       00000020H.2 PUBLIC    BIT      BIT       ?_GPIO_SetPu?BIT
-      01001022H   PUBLIC    CODE     ---       _GPIO_SetPu
+      0100157EH   PUBLIC    CODE     ---       _GPIO_SetPu
       00000020H.1 PUBLIC    BIT      BIT       ?_GPIO_Setout?BIT
-      0100078BH   PUBLIC    CODE     ---       _GPIO_Setout
-      010014D9H   PUBLIC    CODE     ---       _GPIO_GetInputStatus
+      01000784H   PUBLIC    CODE     ---       _GPIO_Setout
+      01001539H   PUBLIC    CODE     ---       _GPIO_GetInputStatus
 
-      01001073H   BLOCK     CODE     ---       LVL=0
-      01001073H   LINE      ---      ---       #9
-      0100107EH   LINE      ---      ---       #10
-      0100107EH   BLOCK     CODE     NEAR LAB  LVL=1
-      0100107EH   LINE      ---      ---       #11
-      01001080H   LINE      ---      ---       #12
-      01001081H   LINE      ---      ---       #14
-      01001085H   LINE      ---      ---       #15
-      0100108CH   LINE      ---      ---       #17
-      0100108FH   LINE      ---      ---       #18
-      010010B1H   LINE      ---      ---       #19
-      010010B1H   LINE      ---      ---       #21
-      010010B1H   LINE      ---      ---       #22
+      010015CFH   BLOCK     CODE     ---       LVL=0
+      010015CFH   LINE      ---      ---       #9
+      010015DAH   LINE      ---      ---       #10
+      010015DAH   BLOCK     CODE     NEAR LAB  LVL=1
+      010015DAH   LINE      ---      ---       #11
+      010015DCH   LINE      ---      ---       #12
+      010015DDH   LINE      ---      ---       #14
+      010015E1H   LINE      ---      ---       #15
+      010015E8H   LINE      ---      ---       #17
+      010015EBH   LINE      ---      ---       #18
+      0100160DH   LINE      ---      ---       #19
+      0100160DH   LINE      ---      ---       #21
+      0100160DH   LINE      ---      ---       #22
       00000006H   SYMBOL    DATA     VOID      queue
       00000005H   SYMBOL    DATA     VOID      group
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      010014DFH   BLOCK     CODE     ---       LVL=0
-      010014DFH   LINE      ---      ---       #26
-      010014E1H   LINE      ---      ---       #27
-      010014E1H   BLOCK     CODE     NEAR LAB  LVL=1
-      010014E1H   LINE      ---      ---       #28
-      010014E6H   LINE      ---      ---       #29
-      010014E7H   LINE      ---      ---       #31
-      010014EBH   LINE      ---      ---       #32
-      010014F2H   LINE      ---      ---       #33
-      0100151DH   LINE      ---      ---       #35
+      0100153FH   BLOCK     CODE     ---       LVL=0
+      0100153FH   LINE      ---      ---       #26
+      01001541H   LINE      ---      ---       #27
+      01001541H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001541H   LINE      ---      ---       #28
+      01001546H   LINE      ---      ---       #29
+      01001547H   LINE      ---      ---       #31
+      0100154BH   LINE      ---      ---       #32
+      01001552H   LINE      ---      ---       #33
+      0100157DH   LINE      ---      ---       #35
       02004E94H   SYMBOL    XDATA    VOID      queue
       00000006H   SYMBOL    DATA     VOID      group
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      010014D9H   BLOCK     CODE     ---       LVL=0
-      010014D9H   LINE      ---      ---       #37
-      010014D9H   LINE      ---      ---       #38
-      010014D9H   LINE      ---      ---       #39
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      0100078BH   BLOCK     CODE     ---       LVL=0
-      0100078BH   LINE      ---      ---       #42
-      0100078BH   LINE      ---      ---       #43
-      0100078BH   LINE      ---      ---       #44
-      0100078FH   LINE      ---      ---       #46
-      0100079CH   LINE      ---      ---       #47
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01001022H   BLOCK     CODE     ---       LVL=0
-      01001022H   LINE      ---      ---       #49
-      01001022H   LINE      ---      ---       #50
-      01001022H   LINE      ---      ---       #51
-      01001026H   LINE      ---      ---       #53
-      01001032H   LINE      ---      ---       #54
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01001062H   BLOCK     CODE     ---       LVL=0
-      01001062H   LINE      ---      ---       #56
-      01001062H   LINE      ---      ---       #57
-      01001062H   LINE      ---      ---       #58
-      01001066H   LINE      ---      ---       #60
-      01001072H   LINE      ---      ---       #61
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01001033H   BLOCK     CODE     ---       LVL=0
-      01001033H   LINE      ---      ---       #63
-      01001033H   LINE      ---      ---       #64
-      01001033H   LINE      ---      ---       #65
-      01001037H   LINE      ---      ---       #67
-      01001043H   LINE      ---      ---       #68
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01001044H   BLOCK     CODE     ---       LVL=0
-      01001044H   LINE      ---      ---       #70
-      01001046H   LINE      ---      ---       #71
-      01001046H   LINE      ---      ---       #72
-      0100104AH   LINE      ---      ---       #74
-      01001052H   LINE      ---      ---       #75
-      0100105BH   LINE      ---      ---       #76
-      01001061H   LINE      ---      ---       #77
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01001006H   BLOCK     CODE     ---       LVL=0
-      01001006H   LINE      ---      ---       #79
-      01001008H   LINE      ---      ---       #80
-      01001008H   LINE      ---      ---       #81
-      0100100CH   LINE      ---      ---       #83
-      01001012H   LINE      ---      ---       #84
-      0100101BH   LINE      ---      ---       #85
-      01001021H   LINE      ---      ---       #86
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      010012F3H   BLOCK     CODE     ---       LVL=0
-      010012F3H   LINE      ---      ---       #88
-      010012F3H   LINE      ---      ---       #89
-      010012F3H   BLOCK     CODE     NEAR LAB  LVL=1
-      010012F3H   LINE      ---      ---       #92
-      010012F9H   LINE      ---      ---       #94
-      010012FDH   LINE      ---      ---       #95
-      01001304H   LINE      ---      ---       #96
-      01001307H   LINE      ---      ---       #97
-      01001328H   LINE      ---      ---       #98
-      01001349H   LINE      ---      ---       #99
-      0100134AH   LINE      ---      ---       #101
-      0100134AH   LINE      ---      ---       #102
-      0100136CH   LINE      ---      ---       #103
-      0100137EH   LINE      ---      ---       #104
-      0100137EH   LINE      ---      ---       #105
+      01001539H   BLOCK     CODE     ---       LVL=0
+      01001539H   LINE      ---      ---       #37
+      01001539H   LINE      ---      ---       #38
+      01001539H   LINE      ---      ---       #39
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000784H   BLOCK     CODE     ---       LVL=0
+      01000784H   LINE      ---      ---       #42
+      01000784H   LINE      ---      ---       #43
+      01000784H   LINE      ---      ---       #44
+      01000788H   LINE      ---      ---       #46
+      01000795H   LINE      ---      ---       #47
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100157EH   BLOCK     CODE     ---       LVL=0
+      0100157EH   LINE      ---      ---       #49
+      0100157EH   LINE      ---      ---       #50
+      0100157EH   LINE      ---      ---       #51
+      01001582H   LINE      ---      ---       #53
+      0100158EH   LINE      ---      ---       #54
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010015BEH   BLOCK     CODE     ---       LVL=0
+      010015BEH   LINE      ---      ---       #56
+      010015BEH   LINE      ---      ---       #57
+      010015BEH   LINE      ---      ---       #58
+      010015C2H   LINE      ---      ---       #60
+      010015CEH   LINE      ---      ---       #61
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010015ADH   BLOCK     CODE     ---       LVL=0
+      010015ADH   LINE      ---      ---       #63
+      010015ADH   LINE      ---      ---       #64
+      010015ADH   LINE      ---      ---       #65
+      010015B1H   LINE      ---      ---       #67
+      010015BDH   LINE      ---      ---       #68
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100158FH   BLOCK     CODE     ---       LVL=0
+      0100158FH   LINE      ---      ---       #70
+      01001591H   LINE      ---      ---       #71
+      01001591H   LINE      ---      ---       #72
+      01001595H   LINE      ---      ---       #74
+      0100159DH   LINE      ---      ---       #75
+      010015A6H   LINE      ---      ---       #76
+      010015ACH   LINE      ---      ---       #77
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001346H   BLOCK     CODE     ---       LVL=0
+      01001346H   LINE      ---      ---       #79
+      01001348H   LINE      ---      ---       #80
+      01001348H   LINE      ---      ---       #81
+      0100134CH   LINE      ---      ---       #83
+      01001352H   LINE      ---      ---       #84
+      0100135BH   LINE      ---      ---       #85
+      01001361H   LINE      ---      ---       #86
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100148DH   BLOCK     CODE     ---       LVL=0
+      0100148DH   LINE      ---      ---       #88
+      0100148DH   LINE      ---      ---       #89
+      0100148DH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100148DH   LINE      ---      ---       #92
+      01001493H   LINE      ---      ---       #94
+      01001497H   LINE      ---      ---       #95
+      0100149EH   LINE      ---      ---       #96
+      010014A1H   LINE      ---      ---       #97
+      010014C2H   LINE      ---      ---       #98
+      010014E3H   LINE      ---      ---       #99
+      010014E4H   LINE      ---      ---       #101
+      010014E4H   LINE      ---      ---       #102
+      01001506H   LINE      ---      ---       #103
+      01001518H   LINE      ---      ---       #104
+      01001518H   LINE      ---      ---       #105
       00000006H   SYMBOL    DATA     VOID      queue
       00000007H   SYMBOL    DATA     VOID      group
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01002522H   BLOCK     CODE     ---       LVL=0
-      01002522H   LINE      ---      ---       #107
-      01002522H   LINE      ---      ---       #108
-      01002522H   BLOCK     CODE     NEAR LAB  LVL=1
-      01002522H   LINE      ---      ---       #111
-      01002526H   LINE      ---      ---       #113
-      0100252AH   LINE      ---      ---       #114
-      01002531H   LINE      ---      ---       #115
-      01002553H   LINE      ---      ---       #116
-      01002560H   LINE      ---      ---       #117
+      01002251H   BLOCK     CODE     ---       LVL=0
+      01002251H   LINE      ---      ---       #107
+      01002251H   LINE      ---      ---       #108
+      01002251H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002251H   LINE      ---      ---       #111
+      01002255H   LINE      ---      ---       #113
+      01002259H   LINE      ---      ---       #114
+      01002260H   LINE      ---      ---       #115
+      01002282H   LINE      ---      ---       #116
+      0100228FH   LINE      ---      ---       #117
       00000006H   SYMBOL    DATA     VOID      queue
       00000007H   SYMBOL    DATA     VOID      group
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      010012E0H   BLOCK     CODE     ---       LVL=0
-      010012E0H   LINE      ---      ---       #119
-      010012E5H   LINE      ---      ---       #120
-      010012E5H   BLOCK     CODE     NEAR LAB  LVL=1
-      010012E5H   LINE      ---      ---       #121
-      010012E9H   LINE      ---      ---       #122
+      0100147AH   BLOCK     CODE     ---       LVL=0
+      0100147AH   LINE      ---      ---       #119
+      0100147FH   LINE      ---      ---       #120
+      0100147FH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100147FH   LINE      ---      ---       #121
+      01001483H   LINE      ---      ---       #122
       00000021H.0 SYMBOL    BIT      VOID      st
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01002561H   BLOCK     CODE     ---       LVL=0
-      01002561H   LINE      ---      ---       #125
-      01002566H   LINE      ---      ---       #126
-      01002566H   BLOCK     CODE     NEAR LAB  LVL=1
-      01002566H   LINE      ---      ---       #127
-      01002571H   LINE      ---      ---       #128
+      010017C3H   BLOCK     CODE     ---       LVL=0
+      010017C3H   LINE      ---      ---       #125
+      010017C8H   LINE      ---      ---       #126
+      010017C8H   BLOCK     CODE     NEAR LAB  LVL=1
+      010017C8H   LINE      ---      ---       #127
+      010017D2H   LINE      ---      ---       #128
       00000021H.1 SYMBOL    BIT      VOID      st
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      0100257EH   BLOCK     CODE     ---       LVL=0
-      0100257EH   LINE      ---      ---       #131
-      0100257EH   LINE      ---      ---       #132
-      0100257EH   BLOCK     CODE     NEAR LAB  LVL=1
-      0100257EH   LINE      ---      ---       #134
-      01002580H   LINE      ---      ---       #135
-      010025B1H   LINE      ---      ---       #136
+      01002290H   BLOCK     CODE     ---       LVL=0
+      01002290H   LINE      ---      ---       #131
+      01002290H   LINE      ---      ---       #132
+      01002290H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002290H   LINE      ---      ---       #134
+      01002292H   LINE      ---      ---       #135
+      010022C3H   LINE      ---      ---       #136
       00000007H   SYMBOL    DATA     VOID      i
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
       ---         MODULE    ---      ---       IIC
-      01001135H   PUBLIC    CODE     ---       _IIC_WriteBlock
-      01001642H   PUBLIC    CODE     ---       _IIC_write
-      01000B6CH   PUBLIC    CODE     ---       _IIC_Read
-
-      010016DBH   BLOCK     CODE     ---       LVL=0
-      010016DBH   LINE      ---      ---       #11
-      010016DBH   LINE      ---      ---       #12
-      010016DBH   LINE      ---      ---       #13
-      010016E2H   LINE      ---      ---       #14
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01000B6CH   BLOCK     CODE     ---       LVL=0
-      01000B6CH   LINE      ---      ---       #16
-      01000B7DH   LINE      ---      ---       #17
-      01000B7DH   BLOCK     CODE     NEAR LAB  LVL=1
-      01000B7DH   LINE      ---      ---       #18
-      01000B7DH   LINE      ---      ---       #19
-      01000B86H   LINE      ---      ---       #20
-      01000B8CH   LINE      ---      ---       #21
-      01000B92H   LINE      ---      ---       #22
-      01000B98H   LINE      ---      ---       #23
-      01000BB1H   LINE      ---      ---       #24
-      01000BC6H   LINE      ---      ---       #25
-      01000BDFH   LINE      ---      ---       #26
-      01000BE5H   LINE      ---      ---       #27
-      01000BEDH   LINE      ---      ---       #28
-      01000BF4H   LINE      ---      ---       #29
-      01000BF4H   LINE      ---      ---       #30
-      01000BFBH   LINE      ---      ---       #31
-      01000BFEH   LINE      ---      ---       #32
+      010010F6H   PUBLIC    CODE     ---       _IIC_WriteBlock
+      0100164DH   PUBLIC    CODE     ---       _IIC_write
+      0100127EH   PUBLIC    CODE     ---       _IIC_Read
+
+      010016E6H   BLOCK     CODE     ---       LVL=0
+      010016E6H   LINE      ---      ---       #11
+      010016E6H   LINE      ---      ---       #12
+      010016E6H   LINE      ---      ---       #13
+      010016EDH   LINE      ---      ---       #14
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100127EH   BLOCK     CODE     ---       LVL=0
+      0100127EH   LINE      ---      ---       #16
+      0100128FH   LINE      ---      ---       #17
+      0100128FH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100128FH   LINE      ---      ---       #18
+      0100128FH   LINE      ---      ---       #19
+      01001298H   LINE      ---      ---       #20
+      0100129EH   LINE      ---      ---       #21
+      010012A4H   LINE      ---      ---       #22
+      010012AAH   LINE      ---      ---       #23
+      010012C3H   LINE      ---      ---       #24
+      010012D8H   LINE      ---      ---       #25
+      010012F1H   LINE      ---      ---       #26
+      010012F7H   LINE      ---      ---       #27
+      010012FFH   LINE      ---      ---       #28
+      01001306H   LINE      ---      ---       #29
+      01001306H   LINE      ---      ---       #30
+      0100130DH   LINE      ---      ---       #31
+      0100130FH   LINE      ---      ---       #32
       00000006H   SYMBOL    DATA     VOID      mem_src
       ---         BLOCKEND  CODE     ---       LVL=1
       ---         BLOCKEND  CODE     ---       LVL=0
 
-      01001642H   BLOCK     CODE     ---       LVL=0
-      01001642H   LINE      ---      ---       #35
-      0100165DH   LINE      ---      ---       #36
-      0100165DH   LINE      ---      ---       #37
-      0100167FH   LINE      ---      ---       #38
-      01001685H   LINE      ---      ---       #39
-      01001694H   LINE      ---      ---       #40
-      010016B1H   LINE      ---      ---       #41
-      010016C8H   LINE      ---      ---       #42
-      010016CFH   LINE      ---      ---       #43
-      010016D4H   LINE      ---      ---       #44
-      ---         BLOCKEND  ---      ---       LVL=0
-
-      01001135H   BLOCK     CODE     ---       LVL=0
-      01001135H   LINE      ---      ---       #48
-      0100114CH   LINE      ---      ---       #49
-      0100114CH   BLOCK     CODE     NEAR LAB  LVL=1
-      0100114CH   LINE      ---      ---       #51
-      01001158H   LINE      ---      ---       #52
-      01001168H   LINE      ---      ---       #53
-      01001176H   LINE      ---      ---       #54
-      0100119CH   LINE      ---      ---       #55
-      010011A9H   LINE      ---      ---       #56
-      010011BEH   LINE      ---      ---       #57
-      010011C3H   LINE      ---      ---       #58
-      010011D4H   LINE      ---      ---       #59
-      010011E0H   LINE      ---      ---       #60
-      010011E2H   LINE      ---      ---       #61
+      0100164DH   BLOCK     CODE     ---       LVL=0
+      0100164DH   LINE      ---      ---       #35
+      01001668H   LINE      ---      ---       #36
+      01001668H   LINE      ---      ---       #37
+      0100168AH   LINE      ---      ---       #38
+      01001690H   LINE      ---      ---       #39
+      0100169FH   LINE      ---      ---       #40
+      010016BCH   LINE      ---      ---       #41
+      010016D3H   LINE      ---      ---       #42
+      010016DAH   LINE      ---      ---       #43
+      010016DFH   LINE      ---      ---       #44
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010010F6H   BLOCK     CODE     ---       LVL=0
+      010010F6H   LINE      ---      ---       #48
+      0100110DH   LINE      ---      ---       #49
+      0100110DH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100110DH   LINE      ---      ---       #51
+      01001119H   LINE      ---      ---       #52
+      01001129H   LINE      ---      ---       #53
+      01001137H   LINE      ---      ---       #54
+      0100115DH   LINE      ---      ---       #55
+      0100116AH   LINE      ---      ---       #56
+      0100117FH   LINE      ---      ---       #57
+      01001183H   LINE      ---      ---       #58
+      01001194H   LINE      ---      ---       #59
+      010011A0H   LINE      ---      ---       #60
+      010011A2H   LINE      ---      ---       #61
       00000004H   SYMBOL    DATA     VOID      cris
       02004E27H   SYMBOL    XDATA    VOID      curr_len
       ---         BLOCKEND  CODE     ---       LVL=1
@@ -2622,5 +2468,5 @@
       ---         MODULE    ---      ---       ?C_INIT
       010005B1H   PUBLIC    CODE     ---       ?C_START
 
-Program Size: data=10.2 xdata=772 const=182 code=9468
+Program Size: data=10.2 xdata=773 const=182 code=8718
 LX51 RUN COMPLETE.  0 WARNING(S),  0 ERROR(S)
Index: c51/output/FW.SBR
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/output/eeprom.dat
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/output/eeprom.dat	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/output/eeprom.dat	(working copy)
@@ -2,7 +2,7 @@
 02
 aa
 55
-a6
+9e
 0f
 c5
 12
@@ -15,51 +15,51 @@
 c0
 01
 80
-1d
+1b
 c0
 02
 80
-20
+1e
 c0
 48
 01
-4e
+4c
 c0
 49
 01
-18
+16
 c0
 4a
 01
-1e
+1c
 c0
 4a
 81
-08
+06
 c0
 58
 00
-ca
+c8
 c0
 58
 80
-cc
+ca
 c0
 59
 00
-e0
+de
 c0
 59
 80
-fa
+f8
 c0
 5b
 01
-03
+01
 c0
 5c
 80
-d4
+d2
 20
 20
 3b
@@ -67,31 +67,31 @@
 c0
 1f
 01
-c1
+bf
 c0
 1f
 81
-c5
+c3
 c0
 43
 80
-a9
+a7
 c0
 46
 81
-d3
+d1
 c0
 47
 81
-c9
+c7
 c0
 66
 81
-58
+56
 c0
 68
 00
-b4
+b2
 20
 20
 3b
@@ -104,14 +104,6 @@
 00
 8b
 81
-58
-28
-05
-20
-60
-01
-cd
-4c
 70
 80
 06
@@ -123,11 +115,11 @@
 20
 40
 00
-44
+42
 20
 40
 00
-25
+23
 20
 20
 30
@@ -147,7 +139,7 @@
 20
 40
 01
-e9
+e7
 20
 20
 30
@@ -155,7 +147,7 @@
 20
 40
 00
-a4
+a2
 20
 74
 00
@@ -171,7 +163,7 @@
 20
 40
 00
-85
+83
 60
 00
 cb
@@ -179,11 +171,11 @@
 c0
 00
 80
-38
+36
 c0
 03
 00
-42
+40
 1f
 e2
 04
@@ -199,7 +191,7 @@
 c3
 00
 00
-35
+33
 1a
 22
 0c
@@ -227,15 +219,15 @@
 20
 20
 00
-7d
+7b
 20
 40
 00
-85
+83
 20
 40
 00
-85
+83
 60
 00
 8b
@@ -243,7 +235,7 @@
 20
 40
 00
-3d
+3b
 20
 20
 7c
@@ -251,7 +243,7 @@
 20
 40
 00
-88
+86
 18
 c2
 04
@@ -275,7 +267,7 @@
 20
 20
 00
-7d
+7b
 68
 0a
 4c
@@ -355,11 +347,11 @@
 c2
 80
 00
-61
+5f
 c2
 80
 80
-63
+61
 da
 20
 00
@@ -367,7 +359,7 @@
 20
 40
 00
-74
+72
 70
 89
 71
@@ -383,7 +375,7 @@
 20
 40
 00
-64
+62
 da
 20
 00
@@ -391,7 +383,7 @@
 20
 20
 00
-74
+72
 70
 89
 71
@@ -399,7 +391,7 @@
 20
 20
 00
-64
+62
 70
 89
 71
@@ -491,7 +483,7 @@
 24
 3a
 00
-7b
+79
 79
 3f
 84
@@ -507,7 +499,7 @@
 20
 40
 00
-85
+83
 1f
 e2
 72
@@ -515,15 +507,15 @@
 20
 40
 00
-81
+7f
 20
 20
 00
-3d
+3b
 20
 40
 00
-85
+83
 e0
 a0
 80
@@ -531,7 +523,7 @@
 c2
 00
 00
-81
+7f
 20
 60
 00
@@ -539,7 +531,7 @@
 20
 40
 00
-88
+86
 e8
 c0
 80
@@ -607,11 +599,11 @@
 20
 40
 00
-9c
+9a
 c2
 00
 00
-94
+92
 18
 a2
 7e
@@ -659,7 +651,7 @@
 20
 20
 00
-a6
+a4
 68
 01
 4b
@@ -703,7 +695,7 @@
 24
 41
 00
-b0
+ae
 20
 20
 7c
@@ -759,11 +751,11 @@
 20
 40
 00
-be
+bc
 20
 20
 00
-b8
+b6
 68
 00
 cc
@@ -811,7 +803,7 @@
 20
 20
 00
-8d
+8b
 20
 40
 3b
@@ -975,7 +967,7 @@
 20
 40
 00
-a4
+a2
 24
 74
 00
@@ -983,7 +975,7 @@
 20
 40
 00
-a1
+9f
 24
 74
 00
@@ -999,15 +991,15 @@
 20
 40
 00
-ff
+fd
 20
 20
 00
-a4
+a2
 20
 40
 00
-f2
+f0
 24
 74
 00
@@ -1035,7 +1027,7 @@
 c0
 80
 00
-ff
+fd
 20
 60
 00
@@ -1043,7 +1035,7 @@
 20
 40
 00
-f2
+f0
 24
 74
 00
@@ -1063,7 +1055,7 @@
 20
 40
 01
-0a
+08
 20
 20
 3a
@@ -1075,7 +1067,7 @@
 24
 3a
 01
-10
+0e
 20
 40
 3d
@@ -1151,7 +1143,7 @@
 20
 40
 01
-1b
+19
 58
 00
 05
@@ -1211,7 +1203,7 @@
 c0
 ff
 81
-36
+34
 68
 02
 ca
@@ -1235,7 +1227,7 @@
 20
 40
 01
-3d
+3b
 70
 89
 55
@@ -1347,7 +1339,7 @@
 20
 40
 01
-45
+43
 20
 20
 3a
@@ -1395,7 +1387,7 @@
 58
 00
 01
-57
+55
 60
 01
 42
@@ -1403,7 +1395,7 @@
 58
 00
 00
-c3
+c1
 60
 01
 42
@@ -1411,7 +1403,7 @@
 58
 00
 01
-c8
+c6
 60
 01
 42
@@ -1419,7 +1411,7 @@
 58
 00
 00
-25
+23
 60
 01
 42
@@ -1427,7 +1419,7 @@
 58
 00
 01
-51
+4f
 60
 01
 42
@@ -1475,11 +1467,11 @@
 c0
 2d
 01
-86
+84
 20
 35
 81
-84
+82
 68
 01
 4c
@@ -1507,7 +1499,7 @@
 20
 40
 01
-91
+8f
 68
 04
 02
@@ -1515,7 +1507,7 @@
 24
 3a
 01
-7e
+7c
 68
 01
 4a
@@ -1527,7 +1519,7 @@
 20
 3a
 01
-7e
+7c
 60
 01
 4c
@@ -1535,7 +1527,7 @@
 20
 40
 01
-e6
+e4
 70
 4b
 a4
@@ -1543,7 +1535,7 @@
 20
 40
 00
-8d
+8b
 70
 4c
 97
@@ -1563,7 +1555,7 @@
 20
 20
 01
-80
+7e
 1c
 e2
 7e
@@ -1571,7 +1563,7 @@
 20
 3a
 01
-cb
+c9
 20
 40
 5b
@@ -1607,7 +1599,7 @@
 20
 20
 01
-80
+7e
 20
 40
 68
@@ -1647,11 +1639,11 @@
 c2
 80
 01
-a3
+a1
 c2
 80
 81
-b1
+af
 68
 01
 02
@@ -1839,7 +1831,7 @@
 20
 40
 00
-ff
+fd
 70
 4c
 97
@@ -1903,15 +1895,15 @@
 c0
 10
 81
-de
+dc
 c0
 11
 01
-e0
+de
 c0
 11
 81
-e3
+e1
 20
 20
 7c
@@ -1923,7 +1915,7 @@
 20
 20
 02
-ec
+ea
 79
 3f
 80
@@ -1935,7 +1927,7 @@
 20
 20
 02
-66
+64
 5f
 ff
 ff
@@ -1947,7 +1939,7 @@
 20
 20
 02
-b7
+b5
 58
 00
 00
@@ -1967,11 +1959,11 @@
 20
 40
 02
-0f
+0d
 24
 34
-02
-00
+01
+fe
 70
 4c
 15
@@ -1979,7 +1971,7 @@
 20
 40
 02
-2a
+28
 68
 00
 cb
@@ -1991,7 +1983,7 @@
 20
 40
 02
-88
+86
 68
 00
 cd
@@ -2003,7 +1995,7 @@
 20
 40
 00
-f2
+f0
 24
 74
 00
@@ -2055,7 +2047,7 @@
 20
 40
 00
-f2
+f0
 24
 74
 00
@@ -2095,7 +2087,7 @@
 24
 3a
 01
-fc
+fa
 68
 04
 4d
@@ -2119,15 +2111,15 @@
 c0
 ff
 82
-c0
+be
 20
 40
 02
-15
+13
 20
 40
 03
-50
+4e
 70
 4b
 e6
@@ -2151,15 +2143,15 @@
 c0
 00
 82
-1e
+1c
 c0
 01
 02
-22
+20
 c0
 01
 82
-26
+24
 68
 00
 cd
@@ -2187,7 +2179,7 @@
 20
 20
 02
-28
+26
 58
 00
 00
@@ -2203,7 +2195,7 @@
 20
 20
 02
-28
+26
 70
 4b
 e2
@@ -2235,19 +2227,19 @@
 20
 40
 02
-55
+53
 24
 37
 82
-3b
+39
 20
 40
 02
-69
+67
 20
 40
 02
-7a
+78
 68
 00
 cb
@@ -2271,11 +2263,11 @@
 c0
 ff
 82
-53
+51
 20
 40
 02
-4d
+4b
 70
 4b
 e7
@@ -2311,7 +2303,7 @@
 c0
 ff
 82
-65
+63
 68
 00
 cb
@@ -2319,7 +2311,7 @@
 c0
 7f
 82
-66
+64
 68
 00
 cb
@@ -2335,7 +2327,7 @@
 20
 21
 03
-6a
+68
 68
 00
 cb
@@ -2355,11 +2347,11 @@
 c0
 83
 82
-2b
+29
 20
 20
 03
-6a
+68
 58
 00
 00
@@ -2387,11 +2379,11 @@
 20
 40
 02
-77
+75
 20
 20
 02
-dc
+da
 78
 57
 fc
@@ -2399,7 +2391,7 @@
 20
 40
 03
-c8
+c6
 68
 00
 cc
@@ -2407,7 +2399,7 @@
 c0
 00
 82
-62
+60
 18
 00
 2a
@@ -2435,11 +2427,11 @@
 20
 40
 03
-82
+80
 20
 57
 83
-c0
+be
 20
 60
 00
@@ -2455,7 +2447,7 @@
 20
 20
 03
-c0
+be
 20
 60
 00
@@ -2475,7 +2467,7 @@
 20
 40
 03
-12
+10
 68
 00
 cb
@@ -2491,7 +2483,7 @@
 20
 40
 02
-71
+6f
 d8
 c0
 0c
@@ -2567,7 +2559,7 @@
 24
 41
 02
-86
+84
 68
 00
 cc
@@ -2603,7 +2595,7 @@
 20
 40
 03
-32
+30
 60
 08
 cc
@@ -2615,11 +2607,11 @@
 20
 40
 82
-96
+94
 24
 40
 82
-9a
+98
 98
 46
 7c
@@ -2627,7 +2619,7 @@
 24
 21
 02
-ae
+ac
 68
 00
 cc
@@ -2639,7 +2631,7 @@
 24
 21
 02
-9e
+9c
 68
 00
 cc
@@ -2647,7 +2639,7 @@
 c0
 00
 02
-ae
+ac
 20
 60
 00
@@ -2707,11 +2699,11 @@
 20
 40
 82
-98
+96
 24
 40
 82
-9c
+9a
 98
 46
 7c
@@ -2727,7 +2719,7 @@
 c0
 00
 02
-b5
+b3
 1f
 e0
 ff
@@ -2739,7 +2731,7 @@
 c0
 00
 02
-b5
+b3
 70
 4c
 3d
@@ -2755,7 +2747,7 @@
 c0
 01
 02
-b3
+b1
 1f
 e0
 fe
@@ -2767,7 +2759,7 @@
 c0
 00
 82
-ac
+aa
 70
 4c
 3d
@@ -2791,11 +2783,11 @@
 20
 40
 02
-bc
+ba
 20
 40
 02
-37
+35
 70
 4b
 ef
@@ -2819,11 +2811,11 @@
 20
 20
 03
-42
+40
 20
 40
 02
-bc
+ba
 68
 00
 cb
@@ -2839,15 +2831,15 @@
 c0
 00
 82
-c8
+c6
 c0
 01
 02
-cb
+c9
 c0
 01
 82
-ce
+cc
 20
 20
 3b
@@ -2863,7 +2855,7 @@
 20
 20
 02
-d0
+ce
 70
 4b
 ef
@@ -2875,7 +2867,7 @@
 20
 20
 02
-d0
+ce
 70
 4b
 ef
@@ -2919,15 +2911,15 @@
 20
 40
 03
-0d
+0b
 20
 40
 03
-50
+4e
 20
 40
 02
-13
+11
 20
 20
 34
@@ -2943,15 +2935,15 @@
 c0
 08
 82
-e2
+e0
 c0
 09
 02
-e4
+e2
 c0
 09
 82
-e6
+e4
 20
 60
 00
@@ -2963,7 +2955,7 @@
 20
 20
 02
-37
+35
 70
 4b
 ef
@@ -2971,7 +2963,7 @@
 20
 20
 02
-37
+35
 70
 4b
 ef
@@ -2991,11 +2983,11 @@
 20
 40
 03
-42
+40
 20
 20
 02
-37
+35
 c6
 11
 80
@@ -3003,11 +2995,11 @@
 20
 40
 03
-43
+41
 20
 40
 03
-6a
+68
 68
 00
 cb
@@ -3019,7 +3011,7 @@
 20
 40
 02
-ff
+fd
 58
 00
 00
@@ -3043,19 +3035,19 @@
 c0
 7f
 82
-66
+64
 20
 40
 02
-55
+53
 24
 37
 83
-08
+06
 20
 40
 02
-4d
+4b
 70
 4c
 13
@@ -3103,11 +3095,11 @@
 20
 40
 03
-0d
+0b
 20
 20
 03
-50
+4e
 68
 01
 4c
@@ -3123,11 +3115,11 @@
 20
 40
 03
-6a
+68
 20
 20
 02
-f4
+f2
 60
 08
 cb
@@ -3239,7 +3231,7 @@
 20
 40
 03
-2b
+29
 60
 08
 cc
@@ -3299,7 +3291,7 @@
 c2
 00
 03
-35
+33
 18
 49
 04
@@ -3367,7 +3359,7 @@
 c2
 00
 03
-46
+44
 1a
 22
 7e
@@ -3459,7 +3451,7 @@
 c0
 ff
 83
-62
+60
 68
 00
 cb
@@ -3483,7 +3475,7 @@
 c0
 00
 83
-68
+66
 d8
 c0
 0c
@@ -3507,7 +3499,7 @@
 20
 40
 03
-70
+6e
 18
 40
 84
@@ -3599,7 +3591,7 @@
 20
 40
 03
-79
+77
 78
 26
 fc
@@ -3631,7 +3623,7 @@
 24
 2c
 03
-c3
+c1
 78
 46
 fc
@@ -3671,7 +3663,7 @@
 24
 22
 83
-c0
+be
 09
 80
 00
@@ -3695,7 +3687,7 @@
 20
 22
 83
-9f
+9d
 68
 00
 8c
@@ -3711,7 +3703,7 @@
 24
 20
 83
-c0
+be
 09
 80
 00
@@ -3735,7 +3727,7 @@
 20
 22
 83
-a9
+a7
 09
 80
 00
@@ -3751,7 +3743,7 @@
 c2
 00
 03
-a5
+a3
 18
 a2
 22
@@ -3803,7 +3795,7 @@
 20
 23
 03
-c0
+be
 78
 37
 fc
@@ -3839,7 +3831,7 @@
 20
 40
 03
-1b
+19
 20
 60
 00
@@ -3859,11 +3851,11 @@
 20
 40
 03
-24
+22
 20
 20
 03
-c0
+be
 20
 40
 3a
@@ -3891,11 +3883,11 @@
 20
 40
 03
-79
+77
 20
 40
 03
-c5
+c3
 79
 20
 2a
@@ -3975,7 +3967,7 @@
 c2
 00
 03
-de
+dc
 78
 24
 7c
@@ -4008,12 +4000,12 @@
 60
 00
 00
-ca
-6b
+4c
+d1
 aa
 55
-b4
-25
+c6
+22
 02
 05
 6a
@@ -5414,7 +5406,7 @@
 b1
 02
 17
-aa
+b5
 e4
 93
 a3
@@ -5544,23 +5536,23 @@
 4d
 ee
 ff
-0a
-96
+11
+a3
 00
 00
 00
 ff
-0f
-90
+1e
+10
 ff
-15
-b7
+1f
+cf
 00
 00
 00
 ff
-22
-ed
+1d
+bd
 00
 1a
 08
@@ -5573,11 +5565,11 @@
 18
 19
 17
-15
 14
 13
+12
 11
-16
+15
 1b
 1c
 00
@@ -5766,7 +5758,7 @@
 60
 02
 e1
-8a
+83
 90
 4c
 e9
@@ -5774,17 +5766,16 @@
 60
 02
 e1
-7e
+7d
 90
 4c
 d5
 e0
 b4
 02
-05
-12
-09
-f2
+04
+f1
+f1
 80
 2e
 90
@@ -5830,9 +5821,9 @@
 c2
 01
 7f
-1d
+1e
 f1
-8b
+84
 d1
 c2
 ef
@@ -5849,7 +5840,7 @@
 e0
 6f
 60
-5e
+58
 e0
 30
 e0
@@ -5860,20 +5851,20 @@
 74
 0c
 f0
-c2
+d2
 01
 7f
-10
+ff
 f1
-8b
+84
 80
 0b
-d2
+c2
 01
 7f
-10
+ff
 f1
-8b
+84
 e4
 90
 4c
@@ -5892,20 +5883,20 @@
 74
 0c
 f0
-c2
+d2
 01
 7f
-0f
+ff
 f1
-8b
+84
 80
 0b
-d2
+c2
 01
 7f
-0f
+ff
 f1
-8b
+84
 e4
 90
 4c
@@ -5920,30 +5911,24 @@
 d9
 f0
 22
-d2
+c2
 01
 7f
-10
+ff
 f1
-8b
-d2
+84
+c2
 01
 7f
-0f
+ff
 80
-0d
-d2
-01
-7f
-10
-f1
-8b
-d2
+07
+c2
 01
 7f
-0f
+ff
 f1
-8b
+84
 22
 ef
 f4
@@ -5960,8 +5945,8 @@
 92
 00
 12
-10
-73
+15
+cf
 22
 90
 4d
@@ -5978,10 +5963,10 @@
 60
 05
 7f
-1d
+1e
 12
-25
-61
+17
+c3
 d1
 c2
 ef
@@ -5995,32 +5980,32 @@
 16
 14
 f0
-c2
+d2
 01
 7f
-10
+ff
 f1
-8b
+84
 90
 4c
 e6
 e0
 70
 0e
-d2
+c2
 01
 7f
-10
+ff
 f1
-8b
+84
 80
 06
-d2
+c2
 01
 7f
-10
+ff
 f1
-8b
+84
 90
 4c
 e7
@@ -6029,398 +6014,294 @@
 14
 14
 f0
-c2
+d2
 01
 7f
-0f
+ff
 f1
-8b
+84
 90
 4c
 e7
 e0
 70
 0c
-d2
+c2
 01
 7f
-0f
+ff
 80
 9a
-d2
+c2
 01
 7f
-0f
+ff
 f1
-8b
+84
 22
-d2
-01
-7f
-1d
-80
-8d
 e4
-ff
-90
-4c
-ee
-e0
-60
-01
-22
-90
-4c
-c5
-e0
-64
-03
-60
-1c
-90
-4c
-ef
-e0
-70
-1d
-74
-0a
-f0
-a3
-e0
-70
-16
 90
 4d
-e1
-e0
-b4
-02
-0f
-7f
-09
-11
-33
-7f
-01
-80
-07
-e4
-90
-4c
-eb
+38
 f0
 7f
-01
-22
+19
 90
 4e
-8d
+71
 ef
 f0
-24
-f7
-60
-09
-14
-60
-61
-24
-02
-60
-02
+78
+72
+7c
+4e
+7d
 01
-d9
-e4
+7b
+ff
+7a
+06
+79
+bf
+7e
+00
+7f
+03
+12
+03
 90
-4c
-f0
-f0
-11
-df
-ef
-60
-09
 90
 4e
-8d
+71
 e0
 90
-4c
-ed
+4e
+74
 f0
-22
 7b
 01
 7a
-4c
+4e
 79
-00
+72
 7d
-04
-7c
-00
-7f
-f2
-7e
-3f
-71
-6c
-7f
-0a
-51
-7e
+03
 90
-4c
-00
-e0
-b4
-ff
-1b
+4e
+46
+eb
+f0
 a3
-e0
-b4
-ff
-16
+ea
+f0
 a3
+e9
+f0
+a3
+ed
+f0
+90
+4b
+9c
 e0
-b4
 ff
-11
 a3
 e0
-b4
-ff
-0c
 90
-4c
-00
-74
-0f
-f0
-a3
+4e
+4a
+cf
 f0
 a3
+ef
 f0
+90
+4b
+9a
+e0
+fe
 a3
-f0
-7f
-21
-11
-f6
+e0
+ff
 90
-4c
-c5
-74
-02
-f0
-e4
+4b
+9c
+e0
+fc
 a3
-f0
+e0
+fd
+7b
+64
+12
+21
+29
 90
-4c
-ed
-f0
-22
-e4
+4e
+49
+e0
+fe
+ef
+c3
+9e
+40
+e1
 90
-4c
-f0
+4e
+49
+e0
+ff
+14
 f0
-11
-df
 ef
 60
-09
+3f
 90
 4e
-8d
+46
 e0
-90
-4c
-ed
+fb
+a3
+e4
+75
 f0
-22
-90
-4c
-c5
-e0
-64
-01
-60
-18
-7f
-23
-11
-f6
-90
-4c
-c5
-74
 01
+12
+04
+24
+a9
 f0
+fa
+12
+03
+b6
+ff
+90
+4e
+4a
 e4
-a3
+75
 f0
-90
-4c
-ee
-74
+01
+12
+04
+24
+85
 f0
+82
+f5
+83
+ef
 f0
-e4
 90
-4c
-e9
-f0
-e4
+4e
+4a
+e0
+fe
+a3
+e0
+ff
+be
+4b
+c6
+bf
+36
+c3
 90
-4c
-ed
+4e
+4a
+74
+4a
 f0
-22
-e4
-90
-4c
-ed
+a3
+74
+a0
 f0
-22
+80
+b7
 90
-4c
-c5
+4e
+4a
 e0
 ff
-64
-03
-60
-04
+a3
+e0
+90
+4b
+9c
+cf
+f0
+a3
 ef
-b4
-02
-07
-7f
-22
-11
-f6
-7f
-01
-22
-7f
-00
+f0
 22
 90
 4e
-71
-ef
+93
+ed
+f0
+e0
+fd
+90
+0b
+e8
 f0
-78
-72
-7c
-4e
-7d
-01
-7b
-ff
-7a
-06
-79
-bf
 7e
-00
+0b
 7f
-03
-12
-03
-90
-90
-4e
-71
-e0
+e9
 90
 4e
-74
+51
+ed
 f0
+11
+da
 7b
 01
 7a
-4e
+0b
 79
-72
-7d
-03
+e7
 90
 4e
-46
-eb
-f0
-a3
-ea
-f0
-a3
-e9
-f0
-a3
-ed
-f0
-90
-4b
-9c
-e0
-ff
-a3
+93
 e0
+24
+02
+fd
+01
+20
 90
 4e
-4a
-cf
+4c
+ee
 f0
 a3
 ef
 f0
-90
-4b
-9a
-e0
-fe
 a3
-e0
-ff
-90
-4b
-9c
-e0
-fc
+eb
+f0
 a3
-e0
-fd
-7b
-64
-12
-23
-fa
-90
-4e
-49
-e0
-fe
-ef
-c3
-9e
-40
-e1
+ea
+f0
+a3
+e9
+f0
 90
 4e
-49
+51
 e0
 ff
 14
 f0
 ef
 60
-3f
+27
 90
 4e
-46
+4e
 e0
 fb
 a3
@@ -6440,7 +6321,7 @@
 ff
 90
 4e
-4a
+4c
 e4
 75
 f0
@@ -6455,733 +6336,581 @@
 83
 ef
 f0
+80
+cf
+22
 90
 4e
-4a
-e0
-fe
+52
+eb
+f0
 a3
-e0
-ff
-be
-4b
-c6
-bf
-36
-c3
-90
-4e
-4a
-74
-4a
+ea
 f0
 a3
-74
-a0
+e9
 f0
-80
-b7
-90
-4e
-4a
-e0
-ff
+e4
 a3
-e0
-90
-4b
-9c
-cf
 f0
 a3
-ef
 f0
-22
 90
-4c
-c5
-e0
-b4
-03
-10
-90
-4c
-e3
-e0
-64
-0e
-70
-04
-a3
-e0
-64
-10
-70
-29
-80
-28
+4d
+db
+f0
 90
-4c
-c5
+4e
+56
+f0
+90
+4e
+56
 e0
-b4
-01
-12
+ff
+c3
+94
+05
+50
+2c
 90
-4c
-e3
+4e
+52
 e0
-70
-04
+fb
 a3
 e0
-64
-28
-70
-14
-7f
-22
-11
-f6
-80
-0f
-90
-4c
-e3
-e0
-70
-04
+fa
 a3
 e0
-64
-14
-70
-02
-31
-f2
-22
+24
+01
+f9
 e4
+3a
+fa
+7e
+00
+e9
+2f
+f9
+ee
+3a
+fa
+12
+03
+b6
+b4
+af
+06
 90
 4d
-38
-f0
-7f
-19
+db
+74
 01
-f6
-90
-4c
-ce
-e0
-30
-e1
-3d
+f0
 90
-4c
-d0
-e0
-c3
-94
-fa
-50
-03
+4e
+56
 e0
 04
 f0
+80
+ca
 90
-4c
-d0
+4d
+db
 e0
-64
-b4
-70
-2e
 90
 4d
-dc
 e0
-04
-f0
-e0
-d3
-94
-02
-50
-07
-e4
-90
-4c
-d0
 f0
-80
-1b
 90
-4d
-dc
+4e
+52
 e0
-b4
-03
-14
+a3
+e0
+fa
+a3
+e0
+4a
+70
+02
+61
+55
 90
 4d
-d5
+de
 74
-01
+0a
 f0
 e4
 90
 4c
-d0
+e3
 f0
-31
-f2
-80
-05
-e4
-90
-4d
-dc
+a3
 f0
+7b
+01
+7a
+48
+79
+00
+7d
+09
+fc
+91
+cd
+7b
+01
+7a
+4d
+79
+e5
+7d
+09
+7c
+00
+91
+cd
 90
-4c
-ce
+4e
+52
 e0
-30
-e4
-2d
-90
-4c
-ea
-74
-0a
-f0
-90
-4c
-d1
+fb
+a3
 e0
-c3
-94
 fa
-50
-03
-e0
-04
-f0
-90
-4c
-d1
+a3
 e0
-b4
-06
-19
+f9
 90
-4c
-c3
-e0
-ff
-60
+00
+01
+12
 03
+cf
+ff
 b4
-fe
-0f
-11
-df
-7f
-0a
-51
-7e
-7f
+2e
 0a
-01
-33
-e4
 90
-4c
-d1
-f0
-22
-ef
-d3
-94
 00
-40
-11
-e4
-fd
-fc
-0d
-bd
-00
-01
-0c
-bc
-04
-f8
-bd
-a6
-f5
-1f
-80
-e9
-22
-90
-4e
-92
-ef
-f0
-24
-d0
-60
-47
-14
-60
-46
-14
-70
-02
-61
-3f
-14
-60
-0a
-24
-f7
-60
-3a
-24
-0d
-60
 02
-61
-6b
-f1
-ec
 12
-21
-4f
-7b
-01
-7a
-4c
-79
-00
-7d
-04
-7c
-00
-7f
-f2
-7e
-3f
-71
-6c
-7f
-0a
-51
-7e
+03
+cf
+64
+29
+60
+0f
+ef
+64
+29
+70
+36
 90
-4c
-c1
-e0
-f9
-7a
-00
-7b
-00
-7d
-01
-7c
 00
-7f
-f8
-7e
-3f
-71
-6c
-7f
-0a
-51
-7e
-e1
-aa
-e1
-c1
+02
+12
+03
+cf
+64
+2e
+70
+2c
 90
-4c
-c5
+4b
+eb
 74
-03
+20
 f0
-e4
 a3
+74
+15
 f0
-f1
-69
-e4
-90
-4c
-ee
-f0
-90
-4c
-eb
+a3
+74
+10
 f0
-90
-4c
-c0
+a3
 74
-fe
+05
 f0
 90
 4c
-c3
-f0
-90
-4e
-92
+c5
 e0
 64
-31
-70
-24
+01
+60
+09
 90
 4c
-e5
-74
-1e
-f0
-90
-4b
-eb
+ce
 e0
-b4
-0f
+44
 10
-a3
-e0
-b4
-0f
-0b
-a3
-e0
-b4
-0f
-06
-a3
-e0
-64
-0f
-60
-40
-90
-4c
-bf
-74
-01
 f0
-22
+80
+10
 90
 4c
-e5
+ce
 e0
-70
-33
-c2
-01
-7f
-1d
-02
-07
-8b
-e4
-90
-4c
-c5
-f0
-a3
+54
+ef
 f0
+80
+07
 90
 4c
-e3
-f0
-a3
+ce
+e0
+54
+ef
 f0
 90
 4c
-eb
-04
+b6
+74
+01
 f0
 90
 4c
-ed
-e0
-60
-09
-f1
-69
-90
-4c
-ed
+f4
 e0
 ff
+64
 01
-33
+70
+02
+61
+55
+ef
+64
+04
+70
+02
+61
+55
+ef
+64
+02
+70
+02
+61
+55
 90
 4c
-ec
+c5
 e0
-b4
-01
-04
-e4
-f0
-31
-f2
-22
+64
+03
+70
+45
 90
 4e
-5c
-ec
-f0
-a3
-ed
-f0
-a3
-eb
-f0
-a3
-ea
-f0
-a3
-e9
+56
 f0
 90
-80
-98
-74
-04
-f0
-a3
-e4
-f0
+4e
+56
+e0
+ff
+c3
+94
+05
+50
+37
 90
-0c
-af
-74
-a0
-f0
+4e
+52
+e0
+fb
 a3
-ee
-f0
+e0
+fa
 a3
-ef
-f0
-90
-0c
-b2
-74
-a1
-f0
-7a
-0c
-79
-af
+e0
+24
+01
+f9
+e4
+3a
+fa
 7e
-0c
-7f
-af
-74
-af
-fc
-74
-0c
+00
+e9
+2f
+f9
+ee
+3a
+fa
+12
+03
+b6
 ff
-ec
-fe
+64
+39
+60
+09
+ef
+64
+53
+60
+04
 ef
+b4
+47
+06
 90
-80
-9a
-ee
+4d
+d0
+74
+01
 f0
-a3
-ef
+90
+4e
+56
+e0
+04
 f0
+80
+bf
 90
 4e
-5c
+52
 e0
-fc
+fb
 a3
 e0
 fa
-ec
-ff
-ea
-fe
-ef
+a3
+e0
+f9
+71
+56
 90
-80
-9e
-ee
+4d
+e4
+e0
+b4
+01
+11
+74
+02
 f0
-a3
-ef
+90
+4d
+e5
 f0
+7b
+01
 7a
-0b
+4d
 79
+e5
+7d
+03
+a1
 83
-7e
-0b
-7f
-83
-74
-83
-fc
-74
-0b
-ff
-ec
-fe
-ef
 90
-80
-9c
-ee
-f0
-a3
-ef
+4d
+e4
+e0
+b4
+03
+16
+e4
 f0
 90
-80
+4d
+e3
+f0
 90
+4d
+e5
 74
 02
 f0
+7b
+01
+7a
+4d
+79
+e5
+7d
+03
+a1
+83
+90
+48
+00
+74
+01
+f0
 90
-80
-9c
+4e
+52
+e0
+fb
 a3
 e0
-20
-e7
-07
-90
-80
-90
+fa
+a3
 e0
-44
+f9
+12
+03
+b6
+90
+48
 01
 f0
+e4
+a3
+f0
 90
-80
-06
-e0
-44
-04
+4d
+d8
 f0
+90
+00
+01
 12
-16
-db
+03
+cf
+b4
+af
+1e
+7e
+48
+7f
+03
 90
 4e
-5e
+52
 e0
+fb
 a3
 e0
 fa
 a3
 e0
-ae
+24
 02
-ff
-7b
-01
-7a
-0b
-79
-83
+f9
+e4
+3a
+fa
 90
 4e
-5c
+51
+74
+05
+f0
+11
+da
+80
+1c
+7e
+48
+7f
+03
+90
+4e
+52
 e0
+fb
+a3
+e0
+fa
 a3
 e0
+24
+01
+f9
+e4
+3a
+fa
 90
 4e
 51
+74
+06
 f0
+11
+da
 90
 4e
-4c
-ee
-f0
-a3
-ef
-f0
-a3
-eb
-f0
-a3
-ea
-f0
-a3
-e9
+56
+74
+03
 f0
 90
 4e
-51
+56
 e0
 ff
-14
-f0
-ef
-60
-27
+c3
+94
+09
+50
+25
+74
+00
+2f
+f5
+82
+e4
+34
+48
+f5
+83
+e0
+b4
+af
+0f
 90
 4e
-4e
+56
 e0
-fb
-a3
-e4
-75
-f0
-01
-12
-04
 24
-a9
+00
+f5
+82
+e4
+34
+48
+f5
+83
+e4
 f0
-fa
-12
-03
-b6
-ff
 90
 4e
-4c
-e4
-75
-f0
-01
-12
+56
+e0
 04
-24
-85
-f0
-82
-f5
-83
-ef
 f0
 80
-cf
+d1
+7b
+01
+7a
+48
+79
+00
+7d
+09
+b1
+83
 22
 90
 4e
-52
+65
 eb
 f0
 a3
@@ -7193,29 +6922,22 @@
 e4
 a3
 f0
-a3
-f0
-90
-4d
-db
-f0
-90
-4e
-56
 f0
 90
 4e
-56
+68
 e0
 ff
 c3
 94
-05
-50
-2c
+06
+40
+02
+81
+b1
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -7240,84 +6962,102 @@
 12
 03
 b6
-b4
-af
-06
-90
-4d
-db
-74
-01
-f0
-90
-4e
-56
-e0
-04
+ff
+54
 f0
-80
-ca
-90
-4d
-db
-e0
-90
-4d
-e0
+64
 f0
+60
+09
+ef
+54
+d0
+64
+d0
+60
+02
+81
+a9
+12
+03
+b6
+fb
+b4
+f2
+08
+7f
+cd
+7e
+00
+91
+b2
+81
+7e
+eb
+b4
+f4
+08
+7f
+b6
+7e
+00
+91
+b2
+81
+7e
 90
 4e
-52
+65
 e0
+fb
 a3
 e0
 fa
 a3
 e0
-4a
-70
-02
-c1
-b2
-90
-4d
-de
-74
-0a
-f0
+24
+01
+f9
 e4
-90
-4c
-e3
-f0
+3a
+fa
 a3
-f0
-7b
-01
-7a
-48
-79
+e0
+7e
 00
-7d
-09
-fc
-d1
-b3
-7b
-01
-7a
-4d
-79
-e5
-7d
-09
-7c
+29
+f9
+ee
+3a
+fa
+12
+03
+b6
+fb
+b4
+f5
+06
+7f
+b5
+91
+b2
+81
+7e
+eb
+b4
+f6
+08
+7f
+ea
+7e
 00
-d1
-b3
+91
+b2
+81
+7e
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -7325,174 +7065,49 @@
 fa
 a3
 e0
-f9
-90
-00
+24
 01
-12
-03
-cf
-ff
-b4
-2e
-0a
-90
+f9
+e4
+3a
+fa
+a3
+e0
+7e
 00
-02
-12
-03
-cf
-64
-29
-60
-0f
-ef
-64
 29
-70
-36
-90
-00
-02
+f9
+ee
+3a
+fa
 12
 03
-cf
-64
-2e
-70
-2c
-90
-4b
-eb
-74
-20
-f0
-a3
-74
-15
-f0
-a3
-74
-10
-f0
-a3
-74
-05
-f0
-90
-4c
-c5
-e0
-64
-01
-60
-09
-90
-4c
-ce
-e0
-44
-10
-f0
-80
-10
-90
-4c
-ce
-e0
-54
-ef
-f0
-80
-07
-90
-4c
-ce
-e0
-54
-ef
-f0
-90
-4c
 b6
-74
-01
-f0
-90
-4c
-f4
-e0
+fb
 b4
-01
-2b
-90
-48
-00
-74
-01
-f0
-a3
-e0
-ff
-90
-4c
-f5
-e0
-fe
-ef
-4e
-90
-48
-01
-f0
-e4
-90
-48
-03
-f0
-7b
-01
-7a
-48
-79
+f7
+06
+7f
+e9
+91
+b2
+80
+6f
+eb
+b4
+f8
+08
+7f
+e2
+7e
 00
-7d
-09
-12
-14
-0e
-90
-4c
-f4
-74
-02
-f0
-22
-90
-4c
-c5
-e0
-64
-03
-70
-45
-90
-4e
-56
-f0
-90
-4e
-56
-e0
-ff
-c3
-94
-05
-50
-37
+91
+b2
+80
+63
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -7506,10 +7121,11 @@
 e4
 3a
 fa
+a3
+e0
 7e
 00
-e9
-2f
+29
 f9
 ee
 3a
@@ -7517,37 +7133,32 @@
 12
 03
 b6
-ff
-64
-39
-60
-09
-ef
-64
-53
-60
-04
-ef
+fb
 b4
-47
-06
-90
-4d
-d0
-74
-01
-f0
-90
-4e
-56
-e0
-04
-f0
+fa
+07
+7f
+8a
+0e
+91
+b2
 80
-bf
+3c
+eb
+b4
+d5
+08
+7f
+21
+7e
+02
+91
+b2
+80
+30
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -7555,74 +7166,54 @@
 fa
 a3
 e0
+24
+01
 f9
-12
-1e
-d3
-90
-4d
 e4
+3a
+fa
+a3
 e0
-b4
-01
+7e
+00
+29
+f9
+ee
+3a
+fa
 12
-74
-02
-f0
-90
-4d
-e5
-f0
-7b
-01
-7a
-4d
-79
-e5
-7d
 03
-02
-14
-0e
+b6
+fb
+b4
+d7
+06
+7f
+70
+91
+b2
+80
+0a
+eb
+b4
+d8
+06
+7f
+6f
+7e
+00
+91
+b2
 90
 4d
 e4
 e0
 b4
-03
-17
-e4
-f0
-90
-4d
-e3
-f0
-90
-4d
-e5
-74
-02
-f0
-7b
-01
-7a
-4d
-79
-e5
-7d
-03
 02
-14
-0e
-90
-48
-00
-74
-01
-f0
+24
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -7630,177 +7221,92 @@
 fa
 a3
 e0
+24
+01
+f9
+e4
+3a
+fa
+a3
+e0
+7e
+00
+29
 f9
+ee
+3a
+fa
 12
 03
 b6
 90
-48
-01
-f0
-e4
-a3
-f0
-90
 4d
-d8
+e3
 f0
-90
-00
-01
+e4
 12
 03
-cf
-b4
-af
-1e
-7e
-48
-7f
-03
+fc
 90
 4e
-52
-e0
-fb
-a3
+68
 e0
-fa
-a3
+04
+f0
+61
+65
+22
+ad
+07
+ac
+06
+90
+4d
+e4
 e0
-24
+64
 02
-f9
-e4
-3a
-fa
-90
-4e
-51
+60
+0e
 74
-05
+01
 f0
-91
-1a
-80
-1c
-7e
-48
-7f
-03
 90
-4e
-52
-e0
-fb
+4d
+e5
+04
+f0
+ef
 a3
-e0
-fa
+f0
+ee
 a3
-e0
-24
-01
-f9
-e4
-3a
-fa
-90
-4e
-51
-74
-06
 f0
-91
-1a
+22
 90
 4e
-56
-74
-03
+7e
+eb
+f0
+a3
+ea
+f0
+a3
+e9
 f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+16
 90
 4e
-56
-e0
-ff
-c3
-94
-09
-50
-25
-74
-00
-2f
-f5
-82
-e4
-34
-48
-f5
-83
-e0
-b4
-af
-0f
-90
-4e
-56
-e0
-24
-00
-f5
-82
-e4
-34
-48
-f5
-83
-e4
-f0
-90
-4e
-56
-e0
-04
-f0
-80
-d1
-7b
-01
-7a
-48
-79
-00
-7d
-09
-12
-14
-0e
-22
-90
-4e
-7e
-eb
-f0
-a3
-ea
-f0
-a3
-e9
-f0
-ed
-1d
-ae
-04
-70
-01
-1c
-4e
-60
-16
-90
-4e
-7e
+7e
 e0
 fb
 a3
@@ -7828,11 +7334,11 @@
 79
 bf
 7d
-42
+43
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -7843,8 +7349,8 @@
 14
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -7855,8 +7361,8 @@
 14
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -7867,8 +7373,8 @@
 14
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -7879,8 +7385,8 @@
 09
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -7891,8 +7397,8 @@
 09
 7c
 00
-d1
-b3
+91
+cd
 e4
 90
 4d
@@ -7959,593 +7465,459 @@
 38
 f0
 22
-e4
 90
-4c
+4e
+61
+eb
 f0
+a3
+ea
 f0
-22
+a3
+e9
+f0
+a3
+ed
+f0
+f1
+78
+ef
+60
+76
 90
 4c
-ee
+eb
 e0
-60
-1a
-e4
+70
+70
 90
 4c
-e3
-f0
-a3
-f0
+c5
+e0
+64
+03
+70
+68
 90
-4c
-ee
+4e
+61
 e0
-14
-f0
+fb
+a3
+e0
+fa
+a3
 e0
+f9
+12
+03
+b6
+ff
+64
+01
 70
-0a
-7f
-22
-11
-f6
-7f
-0a
-51
-7e
-31
-f2
-22
+2e
+90
+00
+01
 12
-07
-9d
+03
+cf
+70
+1e
 90
-4c
-e4
-e0
+00
+03
+12
+03
+cf
+70
+16
+90
+00
 04
-f0
+12
+03
+cf
+70
+0e
+90
+00
+05
+12
+03
+cf
 70
 06
 90
-4c
-e3
-e0
-04
+4d
+d6
 f0
-12
-23
-e9
-31
-b3
-31
-fb
 80
-c5
+28
 90
 4d
-e1
+d6
 74
-02
-f0
-7f
-08
 01
-33
-e4
-90
-0b
-7f
 f0
+80
+20
+ef
+b4
+02
+1c
 90
-0b
-7e
-f0
-7f
+00
 01
-41
-7e
+12
+03
+cf
+70
+0e
 90
-80
-80
-e4
-f0
-a3
-f0
-a3
-f0
+00
+02
 12
-10
-d4
-e4
-90
-4e
+03
+cf
+70
+06
 90
+4d
+d6
 f0
-f0
-90
-4e
-90
-e0
-90
+80
 06
-0c
-93
-ff
-60
-0d
-c2
-05
-12
-10
-44
 90
-4e
+4d
+d6
+74
+01
+f0
 90
+4e
+64
 e0
-04
-f0
-80
-e8
-22
+fd
 f1
-c1
-c2
-06
-7f
-10
-12
-10
-06
-c2
-06
-7f
-0f
-12
-10
-06
-c2
-06
-7f
-1d
-11
-06
-c2
-06
-7f
-1d
-ac
-07
-ec
-f4
-60
-15
-af
-04
-d2
-04
-11
-33
-af
-04
-a2
-06
-92
-01
-12
-07
-8b
-af
-04
-c2
-02
-11
-22
+53
 22
+90
+4e
+87
 ef
-f4
-60
-0c
+f0
+a3
+ed
+f0
 7b
 01
 7a
-80
+48
 79
-78
-a2
-02
-92
 00
-11
-73
-22
+7d
+09
+7c
+00
+91
+cd
+90
+48
+00
+74
+01
+f0
+a3
+e0
+ff
+90
+4e
+87
+e0
+fe
 ef
-f4
-60
-0c
+4e
+90
+48
+01
+f0
+90
+4e
+88
+e0
+90
+48
+03
+f0
 7b
 01
 7a
-80
+48
 79
-70
-a2
-04
-92
 00
-11
-73
-22
-ac
-07
-ec
+7d
+09
+a1
+83
+90
+4c
 f4
+e0
+ff
 60
-17
-af
-04
-a2
-05
-92
+08
+64
 03
-11
-62
-af
+60
 04
-a2
+ef
+b4
 05
-b3
-92
 02
-11
-22
-af
-04
-c2
-04
-11
-33
-22
-ef
+e1
+20
+90
+4c
 f4
-60
-0c
-7b
+e0
+b4
 01
-7a
-80
-79
-7c
-a2
-03
-92
-00
-11
-73
-22
-90
-4e
-84
-eb
-f0
-a3
-ea
-f0
+0e
 a3
-e9
-f0
+e0
+ff
 e4
-fe
-fd
-ef
-54
-07
-fe
-ef
-13
-13
-13
-54
-03
 fd
-30
-00
+d1
+0d
+90
+4c
+f4
+74
+02
+f0
 22
 90
-4e
-84
+4c
+f4
 e0
-fb
+b4
+02
+0b
+74
+03
+f0
 a3
 e0
-fa
+ff
 a3
 e0
-2d
-f9
-e4
-3a
-fa
-12
-03
-b6
-ff
-74
-01
-a8
-06
-08
+fd
 80
-02
-c3
-33
-d8
-fc
-4f
-02
-03
-fc
+8e
 90
-4e
-84
-e0
-fb
-a3
-e0
-fa
-a3
+4c
+f4
 e0
-2d
-f9
+b4
+04
+1a
 e4
-3a
-fa
-12
-03
-b6
+90
+4c
+f6
+f0
+90
+4c
+f5
+e0
 ff
+e4
+fd
+d1
+0d
+e4
+90
+4c
+f5
+f0
+90
+4c
+f4
 74
-01
-a8
-06
-08
-80
-02
-c3
-33
-d8
-fc
+05
+f0
+22
+90
+4c
 f4
-5f
-02
-03
-fc
+e0
+b4
+06
+15
 e4
 90
-4e
-8f
-f0
+4c
+f6
 f0
 90
-4e
-8f
+4c
+f5
+f0
+a3
 e0
+fd
+e4
 ff
-c3
-94
-08
-50
-0c
-c2
-05
-11
-44
+d1
+0d
+e4
 90
-4e
-8f
-e0
-04
+4c
+f4
 f0
-80
-ea
 22
 90
-4c
-bf
+4d
+d0
 e0
-60
-3d
-7f
-c8
-12
-0a
-7e
-c2
+64
 01
-7f
-ff
-12
-07
-8b
+70
+2f
+90
+4d
+d6
+e0
+70
+29
+90
+4c
+c5
+e0
+64
+03
+70
+4c
 7b
 01
 7a
-4c
+48
 79
 00
 7d
-04
-7c
-00
-7f
-f2
-7e
-3f
-31
-35
+09
+fc
+91
+cd
 7b
 01
 7a
-4c
+48
 79
-c1
-7d
-01
-7c
 00
-7f
-f8
-7e
-3f
-31
-35
-d2
-01
-7f
-ff
-12
-07
-8b
-7f
-0a
-12
-0a
-7e
-e4
+7d
+09
+b1
+83
 90
-4c
-bf
+4d
+d0
+74
+02
 f0
-22
+e4
 90
-4e
-20
-ee
-f0
-a3
-ef
-f0
-a3
-ec
-f0
-a3
-ed
-f0
-a3
-eb
-f0
-a3
-ea
-f0
-a3
-e9
+4d
+e4
 f0
-90
-4e
 22
+90
+4d
+d0
 e0
-70
+b4
 02
-a3
+24
+90
+4d
+d6
 e0
 70
-02
-21
-e2
+1e
 90
-4e
-20
-e0
-fe
-a3
-e0
-ff
-44
-0f
-24
+4d
+d0
+f0
+7b
 01
-fd
-e4
-3e
+7a
+48
+79
+00
+7d
+09
 fc
-c3
-ed
-9f
-ff
-ec
-9e
-fe
+91
+cd
+7b
+01
+7a
+48
+79
+00
+7d
+09
+b1
+83
+e4
 90
-4e
-27
-f0
-a3
-ef
+4d
+e4
 f0
-90
-4e
 22
-e0
-fc
-a3
-e0
-fd
-d3
-9f
-ec
-9e
-40
-0a
 90
 4e
-27
-e0
-fe
+75
+e4
+f0
 a3
-e0
-ff
-80
-04
-ae
-04
-af
-05
-90
-4e
-27
-ee
 f0
-fc
 a3
-ef
 f0
-fd
-c3
+f1
+ad
+50
+25
+12
+18
+cf
 90
 4e
-23
-e0
-9d
+75
+eb
 f0
-90
-4e
-22
-e0
-9c
+a3
+ea
 f0
-90
-4e
-20
-e0
-fe
 a3
-e0
-ff
+e9
+f0
+4a
+70
+07
+90
+4c
+b6
+04
+f0
+c1
+bd
 90
 4e
-24
+75
 e0
 fb
 a3
@@ -8554,891 +7926,829 @@
 a3
 e0
 f9
-d1
-42
-7f
-0a
-12
-0a
-7e
-90
-4e
-27
-e0
-fe
-a3
-e0
-ff
+31
+1d
+22
 90
-4e
-25
-ee
-8f
+0b
+e7
+74
+06
 f0
+01
+b5
+91
+f9
 12
-04
-0e
+20
+65
 90
-4e
-21
-e0
-2f
+4c
+eb
+74
+01
 f0
 90
-4e
-20
-e0
-3e
+4c
+e5
+74
+1e
 f0
-21
+e4
+90
 4c
-22
-91
-99
-d1
-e3
-71
-7f
-11
-f1
-12
-06
-cf
+f0
+f0
 90
-0b
-7e
-e0
-14
-60
-0e
-24
-fe
-70
-ec
-51
-35
-12
-0f
-ee
-12
-0f
-b4
-80
-fe
+4d
+01
+74
+ff
+f0
+22
+e4
+ff
 90
 4c
-ea
+ee
 e0
-70
-1e
+60
+01
+22
 90
 4c
-ec
+c5
 e0
-70
-18
+64
+03
+60
+1c
 90
 4c
-e5
+ef
 e0
 70
-12
-90
-4c
-e7
+1d
+74
+0a
+f0
+a3
 e0
 70
-0c
+16
 90
-4c
-e6
+4d
+e1
 e0
-70
-06
-90
-4c
-e8
-e0
-60
-04
-f1
-b3
-80
-ba
-51
-35
-12
-0f
 b4
+02
+0f
+7f
+09
+f1
+eb
+7f
+01
 80
-b3
-80
-b1
-22
+07
 e4
-ff
 90
-4e
-91
+4c
+eb
 f0
+7f
+01
+22
+90
+4b
+9c
+e0
 fe
-fd
-ef
+a3
+e0
+ff
 90
+4b
+9a
+e0
+b5
 06
-0c
-93
-60
-49
-ef
-93
-fd
-13
-13
-13
-54
-1f
-fe
-ed
-54
 07
-fd
-74
-01
-a8
-05
-08
-80
+a3
+e0
+b5
+07
 02
+d3
+22
 c3
-33
-d8
-fc
-fd
-ee
-24
-78
-fb
-e4
-34
-80
-8b
-82
-f5
-83
-e0
-fc
-ed
-f4
-fb
-ec
-5b
-f0
-ee
-24
-70
-f5
-82
-e4
-34
-80
-f5
-83
-e0
-4d
-f0
-ee
-24
-74
-f5
-82
+22
 e4
-34
-80
-f5
-83
-e0
-5b
-f0
-0f
-80
-b0
-12
-25
-7e
 90
-81
-1c
-e0
-90
-4e
-91
+4c
+f0
 f0
+22
 90
 4c
-d5
+c5
 e0
+ff
 64
-02
-60
-36
-90
-4d
-d5
-e0
+03
 60
-20
-e4
-ff
-51
-e0
-7f
-01
-51
-e0
-7f
+04
+ef
+b4
 02
-51
-e0
-7f
-03
-51
-e0
+08
 7f
-04
-51
-e0
+22
+12
+07
+f8
 7f
-05
-51
-e0
+01
+22
 7f
-06
-51
-e0
+00
+22
+90
+4d
+e1
+74
+02
+f0
 7f
-07
-80
-1a
+08
 90
 4e
-91
-e0
-ff
-90
-00
-a3
-f0
+8d
 ef
-f4
-90
-00
-a7
 f0
-22
+24
+f7
+60
+0a
+14
+60
+64
+24
+02
+60
+03
+02
+10
+96
 e4
 90
-00
-a3
+4c
 f0
-90
-00
-a7
 f0
-22
-90
-4e
-95
+12
+0f
+cb
 ef
-f0
-91
-d9
-92
-08
+60
+09
 90
 4e
-95
+8d
 e0
-ff
-a2
-08
-b3
-92
-07
-ef
-f4
-70
-02
-61
-7e
-ef
-54
-07
-fe
-ef
-13
-13
-13
-54
-03
-ff
-30
-07
-43
-24
-a3
-f5
-82
-e4
-34
-00
-f5
-83
-c0
-83
-c0
-82
-e0
-fd
-74
-01
-a8
-06
-08
-80
-02
-c3
-33
-d8
-fc
-f4
-5d
-d0
-82
-d0
-83
-f0
-74
-a7
-2f
-f5
-82
-e4
-34
-00
-f5
-83
-c0
-83
-c0
-82
-e0
-ff
-74
-01
-a8
-06
-08
-80
-02
-c3
-33
-d8
-fc
-4f
-d0
-82
-d0
-83
+90
+4c
+ed
 f0
 22
-74
-a3
-2f
-f5
-82
-e4
-34
-00
-f5
-83
-c0
-83
-c0
-82
-e0
-fd
-74
+7b
 01
-a8
-06
-08
-80
-02
-c3
-33
-d8
-fc
-fc
-4d
-d0
-82
-d0
-83
-f0
-74
-a7
-2f
-f5
-82
-e4
-34
-00
-f5
-83
-e0
-ff
-ec
-f4
-fe
-ef
-5e
-f0
-22
-90
+7a
 4c
-f4
-e0
-ff
-60
-08
-64
-01
-60
+79
+00
+7d
 04
-ef
-b4
-03
-02
-a1
-1e
+7c
+00
+7f
+f2
+7e
+3f
+51
+7e
+7f
+0a
+11
+9c
 90
 4c
-f4
+00
 e0
 b4
-02
-0b
-74
-03
-f0
+ff
+1b
 a3
 e0
+b4
 ff
+16
 a3
 e0
-fd
-80
-33
-90
-4c
-f4
+b4
+ff
+11
+a3
 e0
 b4
-04
-13
-e4
-90
-4c
-f6
-f0
+ff
+0c
 90
 4c
-f4
+00
 74
-05
+0f
 f0
 a3
-e0
-ff
+f0
 a3
-e0
-fd
-80
-19
+f0
+a3
+f0
+7f
+21
+12
+07
+f8
 90
 4c
-f4
-e0
-b4
-05
-11
-e4
-a3
+c5
+74
+02
 f0
+e4
 a3
 f0
 90
 4c
-f4
+ed
 f0
-a3
-e0
-ff
-a3
-e0
-fd
-71
-d5
 22
+e4
 90
-4e
-87
-ef
+4c
 f0
-a3
-ed
 f0
-7b
-01
-7a
-48
-79
-00
-7d
-09
-7c
-00
 12
-0e
-b3
-90
-48
-00
+0f
+cb
+ef
+60
+09
+90
+4e
+8d
+e0
+90
+4c
+ed
+f0
+22
+90
+4c
+c5
+e0
+64
+01
+60
+19
+7f
+23
+12
+07
+f8
+90
+4c
+c5
 74
 01
 f0
+e4
 a3
-e0
-ff
+f0
 90
-4e
-87
-e0
-fe
-ef
-4e
+4c
+ee
+74
+f0
+f0
+e4
 90
-48
-01
+4c
+e9
 f0
+e4
 90
-4e
-88
-e0
+4c
+ed
+f0
+22
+e4
 90
-48
-03
+4c
+ed
 f0
+22
+ef
+d3
+94
+00
+40
+11
+e4
+fd
+fc
+0d
+bd
+00
+01
+0c
+bc
+04
+f8
+bd
+a6
+f5
+1f
+80
+e9
+22
+90
+4c
+bf
+e0
+60
+3b
+7f
+c8
+11
+9c
+c2
+01
+7f
+ff
+12
+07
+84
 7b
 01
 7a
-48
+4c
 79
 00
 7d
-09
+04
+7c
+00
+7f
+f2
+7e
+3f
+11
+f6
+7b
+01
+7a
+4c
+79
+c1
+7d
+01
+7c
+00
+7f
+f8
+7e
+3f
+11
+f6
+d2
+01
+7f
+ff
+12
+07
+84
+7f
+0a
+11
+9c
+e4
+90
+4c
+bf
+f0
+22
 90
 4e
-61
-eb
+20
+ee
 f0
 a3
-ea
+ef
 f0
 a3
-e9
+ec
 f0
 a3
 ed
 f0
-12
-07
-fe
-ef
-60
-76
-90
-4c
+a3
 eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+22
 e0
 70
-70
-90
-4c
-c5
+02
+a3
 e0
-64
-03
 70
-68
+02
+21
+a2
 90
 4e
-61
-e0
-fb
-a3
+20
 e0
-fa
+fe
 a3
 e0
-f9
-12
-03
-b6
 ff
-64
+44
+0f
+24
 01
-70
-2e
+fd
+e4
+3e
+fc
+c3
+ed
+9f
+ff
+ec
+9e
+fe
 90
-00
-01
-12
-03
-cf
-70
-1e
+4e
+27
+f0
+a3
+ef
+f0
 90
-00
-03
-12
-03
-cf
-70
-16
+4e
+22
+e0
+fc
+a3
+e0
+fd
+d3
+9f
+ec
+9e
+40
+0a
 90
-00
-04
-12
-03
-cf
-70
-0e
-90
-00
+4e
+27
+e0
+fe
+a3
+e0
+ff
+80
+04
+ae
+04
+af
 05
-12
-03
-cf
-70
-06
 90
-4d
-d6
+4e
+27
+ee
 f0
-80
-28
+fc
+a3
+ef
+f0
+fd
+c3
 90
-4d
-d6
-74
-01
+4e
+23
+e0
+9d
 f0
-80
-20
-ef
-b4
-02
-1c
 90
-00
-01
-12
-03
-cf
-70
-0e
+4e
+22
+e0
+9c
+f0
 90
-00
-02
-12
-03
-cf
-70
-06
+4e
+20
+e0
+fe
+a3
+e0
+ff
 90
+4e
+24
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+d1
 4d
-d6
+7f
+0a
+11
+9c
+90
+4e
+27
+e0
+fe
+a3
+e0
+ff
+90
+4e
+25
+ee
+8f
 f0
-80
-06
+12
+04
+0e
 90
-4d
-d6
-74
-01
+4e
+21
+e0
+2f
 f0
 90
 4e
-64
+20
 e0
-fd
-91
-ac
+3e
+f0
+21
+0d
 22
+90
+4e
+92
+ef
+f0
+24
+d0
+60
+48
+14
+60
+47
+14
+70
+02
+41
+4e
+14
+60
+0a
+24
+f7
+60
+3b
+24
+0d
+60
+02
+41
+7d
+71
+2e
+12
+0f
+5b
 7b
 01
 7a
-4d
+4c
 79
-ee
-78
 00
+7d
+04
 7c
-4e
+00
+7f
+f2
+7e
+3f
+51
+7e
+7f
+0a
+11
+9c
+90
+4c
+c1
+e0
+f9
+7a
+00
+7b
+00
 7d
 01
-7e
+7c
 00
 7f
-12
+f8
+7e
+3f
+51
+7e
+7f
+0a
+11
+9c
 02
-03
-90
+0f
+e3
+61
+62
 90
-0b
-e7
+4c
+c5
 74
-06
+03
 f0
+e4
+a3
+f0
+12
+0f
+c5
+e4
 90
-4e
-93
-ed
+4c
+ee
 f0
-e0
-fd
 90
-0b
-e8
+4c
+eb
 f0
-7e
-0b
-7f
-e9
 90
-4e
-51
-ed
+4c
+c0
+74
+fe
+f0
+90
+4c
+c3
 f0
-12
-0c
-1a
-7b
-01
-7a
-0b
-79
-e7
 90
 4e
-93
+92
 e0
+64
+31
+70
 24
-02
-fd
-02
-09
+90
+4c
+e5
+74
 1e
-7b
+f0
+90
+4b
+eb
+e0
+b4
+0f
+10
+a3
+e0
+b4
+0f
+0b
+a3
+e0
+b4
+0f
+06
+a3
+e0
+64
+0f
+60
+43
+90
+4c
+bf
+74
 01
-7a
-81
-79
-1c
-ad
+f0
+22
+90
+4c
+e5
+e0
+70
+36
+c2
+01
+7f
+1e
+02
 07
+84
 e4
 90
-4e
-94
+4c
+c5
 f0
-fe
-ef
-54
-07
+a3
 f0
-ef
-13
-13
-13
-54
-03
-fe
-f5
-82
-75
-83
-00
-12
-03
-cf
-fd
-33
-95
+90
+4c
+e3
+f0
+a3
+f0
+90
+4c
+eb
+04
+f0
+90
+4c
+ed
 e0
-fc
+60
+0b
+12
+0f
+c5
 90
-4e
-94
+4c
+ed
 e0
 ff
-74
+02
+0f
+eb
+90
+4c
+ec
+e0
+b4
 01
-7e
-00
-a8
-07
-08
-80
 05
-c3
-33
-ce
-33
-ce
-d8
-f9
-ff
-ee
-5c
-fe
-ef
-5d
-4e
-24
-ff
+e4
+f0
+12
+07
+f1
 22
 90
 4e
-75
-e4
+5c
+ec
 f0
 a3
+ed
 f0
 a3
-f0
-f1
-bf
-50
-26
-12
-19
-7c
-90
-4e
-75
 eb
 f0
 a3
@@ -9447,2467 +8757,2179 @@
 a3
 e9
 f0
-4a
-70
-07
 90
-4c
-b6
+80
+98
+74
 04
 f0
+a3
+e4
+f0
+90
+0c
+af
+74
+a0
+f0
+a3
+ee
+f0
+a3
+ef
+f0
+90
+0c
+b2
+74
+a1
+f0
+7a
+0c
+79
+af
+7e
+0c
+7f
+af
+74
+af
+fc
+74
+0c
+ff
+ec
+fe
+ef
+90
 80
-0f
+9a
+ee
+f0
+a3
+ef
+f0
 90
 4e
-75
+5c
 e0
-fb
+fc
 a3
 e0
 fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+9e
+ee
+f0
 a3
-e0
-f9
-12
-0c
-5d
-22
+ef
+f0
+7a
+0b
+79
+83
+7e
+0b
+7f
+83
+74
+83
+fc
+74
+0b
+ff
+ec
+fe
+ef
 90
-4d
-d0
-e0
-64
-01
-70
-30
-90
-4d
-d6
-e0
-70
-2a
-90
-4c
-c5
-e0
-64
-03
-70
-4e
-7b
-01
-7a
-48
-79
-00
-7d
-09
-fc
-12
-0e
-b3
-7b
-01
-7a
-48
-79
-00
-7d
-09
-91
-0e
-90
-4d
-d0
-74
-02
-f0
-e4
-90
-4d
-e4
-f0
-22
-90
-4d
-d0
-e0
-b4
-02
-25
-90
-4d
-d6
-e0
-70
-1f
-90
-4d
-d0
+80
+9c
+ee
 f0
-7b
-01
-7a
-48
-79
-00
-7d
-09
-fc
-12
-0e
-b3
-7b
-01
-7a
-48
-79
-00
-7d
-09
-91
-0e
-e4
-90
-4d
-e4
+a3
+ef
 f0
-22
 90
-4c
-ea
-e0
-60
-02
-14
-f0
+80
 90
-4c
-ef
-e0
-60
+74
 02
-14
 f0
 90
-4c
-e5
+80
+9c
+a3
 e0
-60
-0f
-14
-f0
-12
+20
+e7
 07
-f8
 90
-4c
-e5
-e0
-70
-2f
-f1
-ac
 80
-2b
-90
-4c
-ee
-e0
-70
-25
 90
-4c
-e2
-e0
-60
-1f
-14
-f0
 e0
-30
-e1
-09
-d2
-01
-7f
-1d
-12
-07
-8b
-80
-07
-c2
+44
 01
-7f
-1d
-12
-07
-8b
+f0
 90
-4c
-e2
+80
+06
 e0
-70
-03
-74
+44
 04
 f0
+d1
+e6
 90
-4d
-d5
-e0
-70
-2b
-90
-4d
-d6
+4e
+5e
 e0
-64
-01
-70
-23
-f0
-90
-4d
-e5
+a3
 e0
-60
-0c
-7b
-01
-7a
-4d
-79
-e5
-7d
-03
-91
-0e
-80
-10
-90
-48
-00
+fa
+a3
 e0
-60
-0a
+ae
+02
+ff
 7b
 01
 7a
-48
+0b
 79
-00
-7d
-09
-91
-0e
-90
-4d
-de
-e0
-60
-03
-e0
-14
-f0
-22
+83
 90
 4e
-3f
-ee
-f0
+5c
+e0
 a3
-ef
-f0
+e0
 90
 4e
-43
-eb
-f0
-a3
-ea
+51
 f0
-a3
-e9
-f0
-90
-4e
-41
+02
+08
+da
+71
+62
+c2
+06
+7f
+ff
+71
+46
+c2
+06
+7f
+ff
+71
+46
+c2
+06
+7f
+1e
+71
+46
+c2
+06
+7f
+1e
+ac
+07
 ec
-f0
-a3
-ed
-f0
-a3
-e0
-f9
-a3
-e0
-fa
-a3
-e0
+f4
+60
+15
+af
+04
+d2
+04
+b1
+ad
+af
+04
+a2
+06
+92
+01
+12
+07
+84
+af
+04
+c2
+02
+b1
+7e
+22
 90
-4e
-2c
-c9
-f0
-a3
-ea
-f0
-a3
-e9
+80
+80
+e4
 f0
 a3
-ec
 f0
 a3
-ed
-f0
-7b
-01
-7a
-0b
-79
-86
-12
-24
-b1
-90
-0b
-83
-74
-a0
 f0
+d1
+30
+e4
 90
 4e
-3f
-e0
-ff
-a3
-e0
 90
-0b
-84
-cf
 f0
-a3
-ef
 f0
 90
 4e
-42
-e0
-24
-03
-fd
 90
-4e
-41
 e0
-34
-00
-fc
-ed
-fa
-ec
+90
+06
+0c
+93
 ff
-ea
-fe
-ef
+60
+0c
+c2
+05
+b1
+8f
+90
+4e
 90
+e0
+04
+f0
 80
-98
+e9
+22
+b1
+26
+d1
 ee
-f0
-a3
-ef
-f0
-7a
+12
+0e
+47
+11
+b4
+12
+06
+cf
+90
 0b
-79
-83
 7e
-0b
-7f
-83
-74
-83
-fc
-74
-0b
-ff
-ec
+e0
+14
+60
+0c
+24
 fe
-ef
-a3
-ee
-f0
-a3
-ef
-f0
-90
+70
+eb
+71
+cf
+71
+30
+b1
+19
 80
-9e
-e4
-f0
-a3
-f0
+fe
 90
-80
+4c
+ea
+e0
+70
+12
 90
-04
-f0
+4c
+ec
+e0
+70
+0c
 90
-80
-06
+4c
+e5
 e0
-44
-04
-f0
+70
+06
 90
-81
-2c
+4c
+f8
 e0
-30
-e5
-f9
+60
+04
+f1
+b7
+80
+c7
+71
+cf
+b1
+19
+80
+c1
+80
+bf
 22
-7a
-0c
-79
-4b
+e4
+ff
 90
 4e
-7b
-74
-01
+91
 f0
-a3
-74
-0c
-f0
-a3
-74
-4b
-f0
-90
-4b
-a0
-e0
 fe
-a3
-e0
-ff
+fd
+ef
 90
-4b
-9e
-e0
-6e
-70
-03
-a3
-e0
-6f
-60
-47
-7e
+06
 0c
-7f
-4b
-7d
-03
-12
-24
+93
+60
+49
+ef
+93
+fd
+13
+13
+13
 54
-90
-4e
-7b
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-f9
-12
-03
-b6
-b4
+1f
+fe
+ed
+54
+07
+fd
+74
+01
+a8
+05
+08
+80
 02
-2b
-90
-4e
-7c
+c3
+33
+d8
+fc
+fd
+ee
+24
+78
+fb
 e4
-75
-f0
-02
-12
-04
-0e
-90
-4e
-7b
+34
+80
+8b
+82
+f5
+83
 e0
+fc
+ed
+f4
 fb
-a3
-e0
-fa
-a3
-e0
-f9
-12
-03
-b6
-ff
-90
-4e
-00
-e0
-a3
-e0
-fa
-a3
-e0
+ec
+5b
+f0
+ee
+24
+70
 f5
 82
-8a
+e4
+34
+80
+f5
 83
-12
-05
-68
+e0
+4d
+f0
+ee
+24
+74
+f5
+82
+e4
+34
 80
-02
+f5
+83
+e0
+5b
+f0
+0f
 80
-fe
+b0
+12
+22
 90
-4b
-a5
-e0
-fe
-a3
+90
+81
+1c
 e0
-ff
+90
+4e
+91
+f0
 90
 4c
-5e
-e0
-6e
-70
-03
-a3
+d5
 e0
-6f
+64
+02
 60
-22
+36
 90
-4e
-06
-e0
-fb
-a3
-e0
-fa
-a3
+4d
+d5
 e0
-f9
-4a
 60
-37
-12
+20
+e4
+ff
+91
+7a
+7f
+01
+91
+7a
+7f
+02
+91
+7a
+7f
+03
+91
+7a
+7f
+04
+91
+7a
+7f
 05
-64
+91
+7a
+7f
+06
+91
+7a
+7f
+07
+80
+1a
 90
-4b
-a5
+4e
+91
 e0
 ff
-a3
-e0
 90
-4c
-5e
-cf
-f0
+00
 a3
+f0
 ef
+f4
+90
+00
+a7
 f0
-80
-ca
+22
+e4
 90
-4c
-8d
-e0
-ff
-a3
-e0
-6f
-60
-19
-90
-4e
-09
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-f9
-4a
-60
-0b
-12
-05
-64
-90
-4c
-8d
-e0
+00
 a3
 f0
-80
-dd
-22
-21
-e3
-c2
-01
-7f
-1d
-02
-07
-8b
 90
-0b
-7f
-74
-01
+00
+a7
 f0
-e4
+22
 90
-0b
-7e
+4e
+95
+ef
 f0
-22
+b1
+39
+92
+08
 90
-4b
-9c
+4e
+95
 e0
+ff
+a2
+08
+b3
+92
+07
+ef
+f4
+70
+02
+a1
+18
+ef
+54
+07
 fe
-a3
-e0
+ef
+13
+13
+13
+54
+03
 ff
-90
-4b
-9a
-e0
-b5
-06
+30
 07
+43
+24
 a3
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
 e0
-b5
-07
+fd
+74
+01
+a8
+06
+08
+80
 02
-d3
-22
 c3
-22
-ad
-07
-ac
-06
-90
-4d
+33
+d8
+fc
+f4
+5d
+d0
+82
+d0
+83
+f0
+74
+a7
+2f
+f5
+82
 e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
 e0
-64
-02
-60
-0e
+ff
 74
 01
-f0
-90
-4d
-e5
-04
-f0
-ef
-a3
-f0
-ee
-a3
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+d0
+82
+d0
+83
 f0
 22
-ae
-05
-ef
-30
-e0
-0a
-90
-4d
-d3
+74
+a3
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
 e0
-04
-f0
-ae
-03
+fd
+74
+01
+a8
+06
+08
 80
-0d
-90
+02
+c3
+33
+d8
+fc
+fc
 4d
-d3
-e0
-60
-07
+d0
+82
+d0
+83
+f0
+74
+a7
+2f
+f5
+82
+e4
+34
+00
+f5
+83
 e0
-14
+ff
+ec
+f4
+fe
+ef
+5e
 f0
-af
-03
-ae
-07
-af
-06
 22
-ae
-07
-ac
-05
 e4
 90
-4e
-8e
-f0
-ec
+0b
+7f
 f0
 90
-4d
-db
-e0
-64
+0b
+7e
+f0
+7f
 01
-60
-02
-21
-76
-ec
-24
-c6
-b4
-0c
+01
+9c
+7b
+01
+7a
+4d
+79
+ee
+78
 00
-40
+7c
+4e
+7d
+01
+7e
+00
+7f
+12
 02
-21
-76
-90
-18
-3f
-75
-f0
 03
-a4
-c5
-83
-25
-f0
-c5
-83
-73
-02
-18
-63
-02
-18
-73
-02
-18
-83
-02
-18
-af
-02
-18
-da
-02
-19
-06
-02
-19
-16
-02
-19
-26
-02
-19
-36
-02
-19
-46
-02
-19
-56
-02
-19
-66
-af
-06
-ad
-04
-7b
-d7
-12
-17
-f2
 90
-4e
-8e
-ef
-f0
-21
-76
-af
-06
-ad
-04
 7b
-d8
-12
-17
-f2
+01
+7a
+81
+79
+1c
+ad
+07
+e4
 90
 4e
-8e
+94
+f0
+fe
 ef
+54
+07
 f0
-21
-76
-90
-4c
+ef
+13
+13
+13
+54
+03
+fe
 f5
-74
-04
-f0
-a3
-74
-2b
-f0
-ee
-30
+82
+75
+83
+00
+12
+03
+cf
+fd
+33
+95
 e0
-08
+fc
 90
-4c
-f4
+4e
+94
+e0
+ff
 74
 01
-f0
+7e
+00
+a8
+07
+08
 80
-06
-90
-4c
-f4
-74
-04
-f0
-af
-06
-ad
-04
-e4
-fb
-12
-17
-f2
-90
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+ee
+5c
+fe
+ef
+5d
 4e
-8e
+24
+ff
+22
 ef
-f0
-21
-76
-90
-4c
-f5
-74
-08
-f0
-a3
-14
-f0
-ee
-30
-e0
-08
-90
-4c
 f4
-74
+60
+0c
+7b
 01
-f0
+7a
 80
-06
-90
-4c
+79
+78
+a2
+02
+92
+00
+b1
+cf
+22
+ac
+07
+ec
 f4
-74
+60
+17
+af
 04
-f0
+a2
+05
+92
+03
+b1
+be
 af
-06
-ad
 04
-e4
-fb
-12
-17
-f2
+a2
+05
+b3
+92
+02
+b1
+7e
+af
+04
+c2
+04
+b1
+ad
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+70
+a2
+04
+92
+00
+b1
+cf
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+7c
+a2
+03
+92
+00
+b1
+cf
+22
 90
 4e
-8e
-ef
+84
+eb
 f0
-21
-76
-90
-4c
-f5
-74
-08
+a3
+ea
 f0
 a3
-74
-50
+e9
 f0
-ee
+e4
+fe
+fd
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+fd
 30
-e0
-08
+00
+22
 90
-4c
-f4
+4e
+84
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+03
+b6
+ff
 74
 01
-f0
-80
+a8
 06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+02
+03
+fc
 90
-4c
-f4
+4e
+84
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+03
+b6
+ff
 74
-04
-f0
-af
+01
+a8
 06
-ad
-04
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5f
+02
+03
+fc
 e4
-fb
-12
-17
-f2
 90
 4e
-8e
-ef
+8f
 f0
-80
-70
-af
-06
-ad
-04
-7b
-d5
-12
-17
-f2
-90
-4e
-8e
-ef
 f0
-80
-60
-af
-06
-ad
-04
-7b
-f4
-12
-17
-f2
 90
 4e
-8e
-ef
-f0
-80
+8f
+e0
+ff
+c3
+94
+08
 50
-af
-06
-ad
-04
-7b
-f2
-12
-17
-f2
+0c
+c2
+05
+b1
+8f
 90
 4e
-8e
-ef
+8f
+e0
+04
 f0
 80
-40
-af
-06
-ad
-04
-7b
-f5
-12
-17
-f2
+ea
+22
 90
 4e
-8e
+3f
+ee
+f0
+a3
 ef
 f0
-80
-30
-af
-06
-ad
-04
-7b
-f8
-12
-17
-f2
 90
 4e
-8e
-ef
+43
+eb
 f0
-80
-20
-af
-06
-ad
-04
-7b
-f6
-12
-17
-f2
-90
-4e
-8e
-ef
+a3
+ea
 f0
-80
-10
-af
-06
-ae
-04
-ad
-06
-7b
-f7
-12
-17
-f2
-90
-4e
-8e
-ef
+a3
+e9
 f0
 90
 4e
-8e
+41
+ec
+f0
+a3
+ed
+f0
+a3
+e0
+f9
+a3
+e0
+fa
+a3
 e0
-ff
-22
-e4
 90
 4e
-12
+2c
+c9
 f0
 a3
+ea
 f0
 a3
+e9
 f0
 a3
+ec
 f0
 a3
+ed
 f0
-a3
+7b
+01
+7a
+0b
+79
+86
+12
+21
+e0
+90
+0b
+83
+74
+a0
 f0
+90
+4e
+3f
+e0
+ff
 a3
+e0
+90
+0b
+84
+cf
 f0
 a3
+ef
 f0
-a3
+90
+4e
+42
+e0
+24
+03
+fd
+90
+4e
+41
+e0
+34
+00
+fc
+ed
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+98
+ee
 f0
 a3
+ef
 f0
+7a
+0b
+79
+83
+7e
+0b
+7f
+83
+74
+83
+fc
+74
+0b
+ff
+ec
+fe
+ef
 a3
+ee
 f0
 a3
+ef
 f0
-a3
+90
+80
+9e
+e4
 f0
 a3
 f0
-b1
-73
+90
+80
+90
+04
+f0
+90
+80
+06
+e0
+44
+04
+f0
+90
+81
+2c
+e0
+30
+e5
+f9
+22
 7a
-4d
+0c
 79
-a8
+4b
 90
 4e
-3b
+7b
 74
 01
 f0
 a3
 74
-4d
+0c
 f0
 a3
 74
-a8
+4b
 f0
+90
+4b
+a0
+e0
+fe
 a3
-74
-14
-f0
-7b
-01
-7a
-4d
-79
-bc
-71
-b6
-ef
+e0
+ff
+90
+4b
+9e
+e0
+6e
+70
+03
+a3
+e0
+6f
 60
-16
-7b
-01
-7a
-4d
-79
-bc
+47
+7e
+0c
+7f
+4b
 7d
-14
-71
-86
-ef
-70
-09
+03
+12
+21
+83
 90
-4c
-ce
+4e
+7b
 e0
-44
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+b4
 02
-f0
-80
-0c
+2b
 90
-4c
-ce
-e0
-54
-fd
-f0
+4e
+7c
 e4
-90
-4c
-d0
+75
 f0
-e4
-90
-4e
+02
 12
-f0
+04
+0e
 90
 4e
-12
+7b
+e0
+fb
+a3
 e0
+fa
+a3
+e0
+f9
+12
+03
+b6
 ff
 90
-06
-0c
-93
-60
-2f
-74
-bc
-2f
+4e
+00
+e0
+a3
+e0
+fa
+a3
+e0
 f5
 82
-e4
-34
-4d
-f5
+8a
 83
+12
+05
+68
+80
+02
+80
+fe
+90
+4b
+a5
+e0
+fe
+a3
 e0
+ff
 90
-4e
-14
-f0
+4c
+5e
 e0
-fd
+6e
+70
+03
+a3
+e0
+6f
 60
-14
+22
 90
 4e
-18
+06
 e0
-04
-f0
+fb
 a3
 e0
-fe
-ed
-4e
-f0
-af
-05
-71
-78
+fa
 a3
 e0
-2f
-f0
-90
-4e
+f9
+4a
+60
+37
 12
-e0
-04
-f0
-80
-c6
+05
+64
 90
-4e
-1a
+4b
+a5
 e0
-90
-4e
-1f
-f0
-90
-4e
-18
+ff
+a3
 e0
 90
-4e
-1e
+4c
+5e
+cf
 f0
-90
-4e
-19
-e0
-ff
-71
-78
-90
-4e
-1d
+a3
 ef
 f0
+80
+ca
 90
-4e
-1f
+4c
+8d
 e0
 ff
-d3
-94
-02
-40
-1d
+a3
+e0
+6f
+60
+19
 90
 4e
-1d
+09
 e0
-fe
+fb
 a3
 e0
-fd
-d3
-9e
-40
-04
-ae
+fa
+a3
+e0
+f9
+4a
+60
+0b
+12
 05
+64
+90
+4c
+8d
+e0
+a3
+f0
 80
-00
-ef
-d3
-9e
-40
-08
+dd
+22
+61
+8b
 90
-4e
-1c
+0b
+7f
 74
 01
 f0
-80
-05
 e4
 90
-4e
-1c
+0b
+7e
 f0
-e4
+22
 90
 4e
-12
+96
+ef
 f0
+7b
+01
+7a
+80
+79
+74
+b1
+3f
+92
+09
 90
 4e
-12
+96
 e0
 ff
-90
-06
-0c
-93
-70
+a2
+09
+b3
+92
+01
 02
-61
+07
+84
+90
 4c
-74
-93
-2f
-f5
-82
-e4
-34
-4d
 f5
-83
+ed
+f0
+a3
+eb
+f0
+ef
+30
 e0
-fe
-74
-bc
-2f
-f5
-82
-e4
-34
-4d
-f5
-83
+12
+90
+4c
+f4
 e0
-6e
+b4
+03
+04
+74
+02
+f0
+22
 90
-4e
-14
+4c
+f4
+74
+01
 f0
+22
 90
-4e
-12
-e0
-ff
-24
-bc
-f5
-82
+4c
+f4
+74
+04
+f0
+22
+ae
+07
 e4
-34
-4d
-f5
-83
-e0
 90
 4e
-17
+8e
+f0
+ed
 f0
 90
-4e
-14
-e0
-70
-04
-61
-44
-61
-44
-90
-4e
-1c
+4d
+db
 e0
+64
+01
 60
-07
-7b
-00
-7a
-00
-79
+02
+01
+c9
+ed
+24
+c6
+b4
+0c
 00
-22
-74
-bc
-2f
-f5
-82
-e4
-34
-4d
-f5
-83
-e0
-fe
-74
-93
+40
+02
+01
+c9
+90
+18
 2f
-f5
-82
-e4
-34
-4d
-f5
+75
+f0
+03
+a4
+c5
 83
-ee
+25
 f0
-e4
+c5
+83
+73
+02
+18
+53
+02
+18
+5b
+02
+18
+63
+02
+18
+73
+02
+18
+83
+02
+18
+93
+02
+18
+9b
+02
+18
+a3
+02
+18
+ab
+02
+18
+b3
+02
+18
+bb
+02
+18
+c3
 90
 4e
-13
+8e
+74
+d7
 f0
+80
+6e
 90
 4e
-13
-e0
-ff
-c3
-94
-08
-50
-58
-a3
-e0
-30
-e0
-3b
-90
-4e
+8e
+74
+d8
+f0
+80
+66
+af
+06
+7b
+2b
+7d
+04
 12
-e0
-fe
-33
-33
-33
-54
-f8
-fe
-ef
-4e
+17
+df
+e4
 90
 4e
-16
+8e
 f0
-a3
-e0
-ff
-90
-4e
-16
-e0
-90
+80
+56
+af
 06
-21
-93
-fd
-11
+7b
+07
+7d
+08
 12
+17
+df
+e4
 90
 4e
-1b
-ef
+8e
 f0
-90
-4e
+80
+46
+af
+06
+7b
+50
+7d
+08
+12
 17
-e0
-30
-e0
-09
+df
+e4
 90
 4e
-1b
-e0
-ff
-91
-00
+8e
+f0
 80
-07
-90
-4e
-1b
-e0
-ff
-91
-90
+36
 90
 4e
-14
-e0
-ff
-c3
-13
+8e
+74
+d5
 f0
+80
+2e
 90
 4e
-17
-e0
-ff
-c3
-13
+8e
+74
+f4
 f0
+80
+26
 90
 4e
-13
-e0
-04
+8e
+74
+f2
 f0
 80
-9e
+1e
 90
 4e
-15
+8e
 74
-01
+f5
 f0
+80
+16
 90
 4e
-12
-e0
-04
+8e
+74
+f8
 f0
-41
-6c
+80
+0e
 90
-4d
-e4
-e0
-b4
-03
-0a
+4e
+8e
+74
+f6
+f0
+80
+06
 90
-4d
-d8
-e0
-b4
-01
-03
+4e
+8e
 74
-02
+f7
 f0
 90
 4e
-15
+8e
 e0
-70
-07
+ff
+22
+e4
+90
+4e
+12
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+91
+52
+7a
+4d
+79
+a8
 90
+4e
+3b
+74
+01
+f0
+a3
+74
 4d
-d8
-e0
-b4
-02
-07
+f0
+a3
+74
+a8
+f0
+a3
+74
+14
+f0
 7b
 01
 7a
-4e
+4d
 79
-31
-22
+bc
+71
+09
+ef
+60
+16
 7b
-00
+01
 7a
-00
+4d
 79
-00
-22
-e4
-fe
-ef
-60
-06
+bc
+7d
 14
-5f
-ff
-0e
-80
-f7
-af
-06
-22
+51
+d9
+ef
+70
+09
 90
-4e
-78
-eb
+4c
+ce
+e0
+44
+02
 f0
-a3
-ea
+80
+0c
+90
+4c
+ce
+e0
+54
+fd
 f0
-a3
-e9
+e4
+90
+4c
+d0
 f0
 e4
-ff
-ef
-c3
-9d
-50
-1b
 90
 4e
-78
-e0
-fb
-a3
-e0
-fa
-a3
+12
+f0
+90
+4e
+12
 e0
-f9
-8f
+ff
+90
+06
+0c
+93
+60
+2f
+74
+bc
+2f
+f5
 82
-75
+e4
+34
+4d
+f5
 83
-00
-12
-03
-cf
-60
-03
-7f
-00
-22
-0f
-80
 e0
-7f
-01
-22
 90
 4e
-38
-eb
-f0
-a3
-ea
-f0
-a3
-e9
+14
 f0
-e4
-ff
+e0
+fd
+60
+14
 90
 4e
-3e
+18
+e0
+04
+f0
+a3
 e0
 fe
-ef
-c3
-9e
-50
-30
-90
+ed
 4e
-3b
-e0
-fb
+f0
+af
+05
+51
+cb
 a3
 e0
-fa
-a3
-e0
-f9
-8f
-82
-75
-83
-00
-12
-03
-cf
-fe
+2f
+f0
 90
 4e
-38
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-f9
-8f
-82
-75
-83
-00
 12
-03
-cf
-6e
-60
-03
-7f
-00
-22
-0f
+e0
+04
+f0
 80
 c6
-7f
-01
-22
-e4
-fe
-ef
-b4
-e7
-08
 90
 4e
-31
+1a
 e0
-44
-80
-f0
-22
-ef
-b4
-e6
-08
 90
 4e
-31
-e0
-44
-40
+1f
 f0
-22
-ef
-b4
-e5
-08
 90
 4e
-31
+18
 e0
-44
-20
+90
+4e
+1e
 f0
-22
-ef
-b4
-e4
-08
 90
 4e
-31
+19
 e0
-44
-10
-f0
-22
+ff
+51
+cb
+90
+4e
+1d
 ef
-b4
-e3
-08
+f0
 90
 4e
-31
+1f
 e0
-44
-08
-f0
-22
-ef
-b4
-e2
-08
+ff
+d3
+94
+02
+40
+1d
 90
 4e
-31
+1d
 e0
-44
+fe
+a3
+e0
+fd
+d3
+9e
+40
 04
-f0
-22
+ae
+05
+80
+00
 ef
-b4
-e1
+d3
+9e
+40
 08
 90
 4e
-31
-e0
-44
-02
+1c
+74
+01
 f0
-22
-ef
-b4
-e0
-08
+80
+05
+e4
 90
 4e
-31
-e0
-44
-01
+1c
 f0
-22
 e4
-fe
+90
+4e
+12
+f0
+90
+4e
+12
+e0
+ff
+90
+06
+0c
+93
+70
+02
+41
+9f
 74
-32
-2e
+93
+2f
 f5
 82
 e4
 34
-4e
+4d
 f5
 83
 e0
-fd
-6f
-60
-1c
-ed
-70
-14
-90
-4d
-e3
-e0
-6f
-60
-12
+fe
 74
-32
-2e
+bc
+2f
 f5
 82
 e4
 34
-4e
+4d
 f5
 83
-ef
-f0
-22
-0e
-ee
-b4
-06
-d5
-22
-e4
-fe
-fd
-ef
-54
-f0
-64
-f0
-60
-07
-ef
-54
-d0
-fc
-bc
-d0
-0c
-90
-4d
-e4
 e0
-b4
-02
-0b
-74
-03
-f0
-80
-06
+6e
 90
-4d
-d8
-74
-01
+4e
+14
 f0
-ef
-b4
-e7
-08
 90
 4e
-31
+12
 e0
-54
-7f
-f0
-22
-ef
-b4
-e6
-08
-90
-4e
-31
-e0
-54
-bf
-f0
-22
-ef
-b4
-e5
-08
-90
-4e
-31
-e0
-54
-df
-f0
-22
-ef
-b4
+ff
+24
+bc
+f5
+82
 e4
-08
-90
-4e
-31
-e0
-54
-ef
-f0
-22
-ef
-b4
-e3
-08
-90
-4e
-31
+34
+4d
+f5
+83
 e0
-54
-f7
-f0
-22
-ef
-b4
-e2
-08
 90
 4e
-31
-e0
-54
-fb
+17
 f0
-22
-ef
-b4
-e1
-08
 90
 4e
-31
-e0
-54
-fd
-f0
-22
-ef
-b4
+14
 e0
-08
+70
+04
+41
+97
+41
+97
 90
 4e
-31
+1c
 e0
-54
-fe
-f0
+60
+07
+7b
+00
+7a
+00
+79
+00
 22
-e4
-fe
-ed
-70
-21
 74
-32
-2e
+bc
+2f
 f5
 82
 e4
 34
-4e
+4d
 f5
 83
 e0
-6f
-70
-47
-ee
-b4
-05
-0b
-24
-32
-f5
-82
-e4
-34
-4e
-f5
-83
-e4
-f0
-7d
-01
-80
-34
+fe
 74
-32
-2e
+93
+2f
 f5
 82
 e4
 34
-4e
+4d
 f5
 83
-e0
-fc
-74
-31
-2e
-f5
-82
+ee
+f0
 e4
-34
+90
 4e
-f5
-83
-ec
+13
 f0
-74
-32
-2e
-f5
-82
-e4
-34
+90
 4e
-f5
-83
+13
 e0
-60
-14
-ee
-b4
-05
-0b
-24
-32
-f5
-82
-e4
-34
-4e
-f5
-83
-e4
-f0
-0e
-ee
-b4
-06
-a3
-22
-e4
 ff
+c3
+94
+08
+50
+58
+a3
+e0
+30
+e0
+3b
 90
 4e
-69
-f0
+12
+e0
 fe
-fd
-a3
-f0
-a3
+33
+33
+33
+54
+f8
+fe
+ef
+4e
+90
+4e
+16
 f0
 a3
-f0
-ef
+e0
+ff
+90
+4e
+16
+e0
 90
 06
-0c
-93
-60
-7c
-ef
+21
 93
 fd
-13
-13
-13
-54
-1f
-fe
-ed
-54
-07
-fd
-74
-01
-a8
-05
-08
-80
-02
-c3
-33
-d8
-fc
-fd
-ee
-24
-78
-fb
-e4
-34
-80
-8b
-82
-f5
-83
-e0
-fc
-ed
-f4
-fb
-ec
-5b
+11
+04
+90
+4e
+1b
+ef
 f0
-ee
-24
-70
-f5
-82
-e4
-34
+90
+4e
+17
+e0
+30
+e0
+09
+90
+4e
+1b
+e0
+ff
+71
+53
 80
-f5
-83
+07
+90
+4e
+1b
 e0
-4d
+ff
+71
+a9
+90
+4e
+14
+e0
+ff
+c3
+13
 f0
-ee
-24
-74
-f5
-82
-e4
-34
-80
-f5
-83
+90
+4e
+17
 e0
-5b
+ff
+c3
+13
 f0
 90
-81
-1c
+4e
+13
 e0
-f4
-fc
+04
+f0
+80
+9e
+90
+4e
+15
 74
-bc
-2f
-f5
-82
-e4
-34
-4d
-f5
-83
-ec
+01
 f0
-ee
-24
-78
-fb
+90
+4e
+12
+e0
+04
+f0
+21
+bf
+90
+4d
 e4
-34
-80
-8b
-82
-f5
-83
 e0
+b4
+03
+0a
+90
 4d
+d8
+e0
+b4
+01
+03
+74
+02
 f0
-ee
-24
+90
+4e
+15
+e0
 70
-fb
+07
+90
+4d
+d8
+e0
+b4
+02
+07
+7b
+01
+7a
+4e
+79
+31
+22
+7b
+00
+7a
+00
+79
+00
+22
 e4
-34
+fe
+ef
+60
+06
+14
+5f
+ff
+0e
 80
-8b
-82
-f5
-83
-e0
-fc
-ed
-f4
-fb
-ec
-5b
+f7
+af
+06
+22
+90
+4e
+78
+eb
+f0
+a3
+ea
+f0
+a3
+e9
 f0
-0f
-a1
-81
 e4
 ff
 ef
-90
-06
-0c
-93
-60
-7c
-ef
-93
-fd
-13
-13
-13
-54
-1f
-fe
-ed
-54
-07
-fd
-74
-01
-a8
-05
-08
-80
-02
 c3
-33
-d8
-fc
-fd
-ee
-24
+9d
+50
+1b
+90
+4e
 78
+e0
 fb
-e4
-34
-80
-8b
+a3
+e0
+fa
+a3
+e0
+f9
+8f
 82
-f5
+75
 83
-e0
-fc
-ed
-f4
-fb
-ec
-5b
-f0
-ee
-24
-70
-f5
-82
-e4
-34
-80
-f5
-83
-e0
-4d
-f0
-ee
-24
-74
-f5
-82
-e4
-34
-80
-f5
-83
-e0
-5b
-f0
-90
-81
-1c
-e0
-f4
-fc
-74
-a8
-2f
-f5
-82
-e4
-34
-4d
-f5
-83
-ec
-f0
-ee
-24
-78
-fb
-e4
-34
-80
-8b
-82
-f5
-83
-e0
-4d
-f0
-ee
-24
-70
-fb
-e4
-34
-80
-8b
-82
-f5
-83
-e0
-fc
-ed
-f4
-fb
-ec
-5b
-f0
-0f
-c1
-06
-e4
-ff
-ef
-90
-06
-0c
-93
-60
-40
-74
-bc
-2f
-f5
-82
-e4
-34
-4d
-f5
-83
-e0
-fe
-74
-a8
-2f
-f5
-82
-e4
-34
-4d
-f5
-83
-e0
-6e
+00
+12
+03
+cf
 60
-23
-74
-bc
-2f
-f5
-82
-e4
-34
-4d
-f5
-83
-c0
-83
-c0
-82
-e0
-fe
-74
-a8
-2f
-f5
-82
-e4
-34
-4d
-f5
-83
-e0
-fd
-ee
-5d
-d0
-82
-d0
-83
-f0
+03
+7f
+00
+22
 0f
 80
-b9
+e0
+7f
+01
 22
 90
 4e
-65
+38
 eb
 f0
 a3
@@ -11917,25 +10939,20 @@
 e9
 f0
 e4
-a3
-f0
-f0
+ff
 90
 4e
-68
+3e
 e0
-ff
+fe
+ef
 c3
-94
-06
-40
-03
-02
-21
-4e
+9e
+50
+30
 90
 4e
-65
+3b
 e0
 fb
 a3
@@ -11943,74 +10960,19 @@
 fa
 a3
 e0
-24
-01
-f9
-e4
-3a
-fa
-7e
-00
-e9
-2f
 f9
-ee
-3a
-fa
-12
-03
-b6
-ff
-54
-f0
-64
-f0
-60
-0a
-ef
-54
-d0
-64
-d0
-60
-03
-02
-21
-45
-12
-03
-b6
-fb
-b4
-f1
-0a
-7f
+8f
+82
+75
 83
-7e
-01
-12
-17
-d7
-02
-21
-1a
-eb
-b4
-f2
-0a
-7f
-cd
-7e
 00
 12
-17
-d7
-02
-21
-1a
+03
+cf
+fe
 90
 4e
-65
+38
 e0
 fb
 a3
@@ -12018,957 +10980,937 @@
 fa
 a3
 e0
-24
-01
 f9
-e4
-3a
-fa
-a3
-e0
-7e
+8f
+82
+75
+83
 00
-29
-f9
-ee
-3a
-fa
 12
 03
-b6
-fb
-b4
-f3
-08
-7f
-b7
-12
-17
-d7
-02
-21
-1a
-eb
-b4
-f4
-0a
+cf
+6e
+60
+03
 7f
-b6
-7e
 00
-12
-17
-d7
-02
-21
+22
+0f
+80
+c6
+7f
+01
+22
+e4
+fe
+ef
+c3
+94
+e0
+40
+20
+ef
+d3
+94
+e7
+50
 1a
 90
 4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
+31
 e0
-24
+fe
+ef
+54
+07
+ff
+74
 01
-f9
-e4
-3a
-fa
-a3
-e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-f5
+a8
+07
 08
-7f
-b5
-12
-17
-d7
-02
-21
-1a
-eb
-b4
-f6
-0a
-7f
-ea
-7e
-00
-12
-17
-d7
+80
 02
-21
-1a
+c3
+33
+d8
+fc
+4e
 90
 4e
-65
-e0
-fb
-a3
+31
+f0
+22
+e4
+fe
+74
+32
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
 e0
-fa
-a3
+fd
+6f
+60
+1c
+ed
+70
+14
+90
+4d
+e3
 e0
-24
-01
-f9
+6f
+60
+12
+74
+32
+2e
+f5
+82
 e4
-3a
-fa
-a3
-e0
-7e
-00
-29
-f9
+34
+4e
+f5
+83
+ef
+f0
+22
+0e
 ee
-3a
-fa
-12
-03
-b6
-fb
 b4
-f7
-08
-7f
-e9
-12
-17
-d7
-02
-21
-1a
-eb
+06
+d5
+22
+e4
+fe
+fd
+ef
+54
+f0
+64
+f0
+60
+07
+ef
+54
+d0
+fc
+bc
+d0
+0c
+90
+4d
+e4
+e0
 b4
-f8
-0a
-7f
-e2
-7e
-00
-12
-17
-d7
 02
-21
+0b
+74
+03
+f0
+80
+06
+90
+4d
+d8
+74
+01
+f0
+ef
+c3
+94
+e0
+40
+20
+ef
+d3
+94
+e7
+50
 1a
 90
 4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
+31
 e0
-24
-01
-f9
+fe
+ef
+54
+07
+ff
+74
+fe
+a8
+07
+08
+80
+02
+c3
+33
+d8
+fc
+5e
+90
+4e
+31
+f0
+22
 e4
-3a
-fa
-a3
+fe
+ed
+70
+21
+74
+32
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
 e0
-7e
-00
-29
-f9
+6f
+70
+47
 ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-f9
-08
-7f
-94
-0e
-12
-17
-d7
-21
-1a
-eb
 b4
-fa
-09
-7f
-8a
-7e
+05
+0b
+24
+32
+f5
+82
+e4
+34
+4e
+f5
+83
+e4
+f0
+7d
 01
-12
-17
-d7
-21
-1a
-90
+80
+34
+74
+32
+2e
+f5
+82
+e4
+34
 4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
+f5
+83
 e0
-24
-01
-f9
+fc
+74
+31
+2e
+f5
+82
 e4
-3a
-fa
-a3
+34
+4e
+f5
+83
+ec
+f0
+74
+32
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
 e0
-7e
-00
-29
-f9
+60
+14
 ee
-3a
-fa
-12
-03
-b6
-fb
 b4
-fb
-08
-7f
-92
+05
+0b
+24
+32
+f5
+82
+e4
+34
+4e
+f5
+83
+e4
+f0
 0e
-12
-17
-d7
-21
-1a
-eb
+ee
 b4
-d0
-09
-7f
-2a
-7e
-02
-12
-17
-d7
-21
-1a
+06
+a3
+22
+e4
+ff
 90
 4e
-65
-e0
-fb
+69
+f0
+fe
+fd
 a3
-e0
-fa
+f0
 a3
-e0
-24
-01
-f9
-e4
-3a
-fa
+f0
 a3
-e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-d1
-09
-7f
-25
-7e
-02
-12
-17
-d7
-21
-1a
-eb
-b4
-d3
-09
-7f
-26
-7e
-02
-12
-17
-d7
-21
-1a
+f0
+ef
 90
-4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-24
+06
+0c
+93
+60
+7c
+ef
+93
+fd
+13
+13
+13
+54
+1f
+fe
+ed
+54
+07
+fd
+74
 01
-f9
-e4
-3a
-fa
-a3
-e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-d2
-09
-7f
-24
-7e
-02
-12
-17
-d7
+a8
+05
+08
 80
-75
-eb
-b4
-d4
-09
-7f
-27
-7e
 02
-12
-17
-d7
+c3
+33
+d8
+fc
+fd
+ee
+24
+78
+fb
+e4
+34
 80
-68
-90
-4e
-65
+8b
+82
+f5
+83
 e0
+fc
+ed
+f4
 fb
-a3
-e0
-fa
-a3
-e0
+ec
+5b
+f0
+ee
 24
-01
-f9
+70
+f5
+82
 e4
-3a
-fa
-a3
+34
+80
+f5
+83
 e0
-7e
-00
-29
-f9
+4d
+f0
 ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-d5
-09
-7f
-21
-7e
-02
-12
-17
-d7
-80
-3f
-eb
-b4
-d6
-09
-7f
-23
-7e
-02
-12
-17
-d7
+24
+74
+f5
+82
+e4
+34
 80
-32
-90
-4e
-65
-e0
-fb
-a3
+f5
+83
 e0
-fa
-a3
+5b
+f0
+90
+81
+1c
 e0
-24
-01
-f9
+f4
+fc
+74
+bc
+2f
+f5
+82
 e4
-3a
-fa
-a3
-e0
-7e
-00
-29
-f9
+34
+4d
+f5
+83
+ec
+f0
 ee
-3a
-fa
-12
-03
-b6
+24
+78
 fb
-b4
-d7
-07
-7f
-70
-12
-17
-d7
-80
-0b
-eb
-b4
-d8
-07
-7f
-6f
-7e
-00
-12
-17
-d7
-90
-4d
 e4
+34
+80
+8b
+82
+f5
+83
 e0
-b4
-02
+4d
+f0
+ee
 24
-90
-4e
-65
-e0
+70
 fb
-a3
-e0
-fa
-a3
-e0
-24
-01
-f9
 e4
-3a
-fa
-a3
+34
+80
+8b
+82
+f5
+83
 e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-90
-4d
-e3
-f0
-e4
-12
-03
 fc
-90
-4e
-68
-e0
-04
-f0
-02
-1e
-e2
-22
-12
-0e
-df
-31
-6c
-90
-4c
-eb
-74
-01
-f0
-90
-4c
-e5
-74
-1e
+ed
+f4
+fb
+ec
+5b
 f0
+0f
+81
+60
 e4
-90
-4c
-f0
-f0
-90
-4d
-00
-74
 ff
-f0
-22
-90
-4c
-90
-74
-37
-f0
+ef
 90
-4c
-d3
+06
+0c
+93
+60
+7c
+ef
+93
+fd
+13
+13
+13
+54
+1f
+fe
+ed
+54
+07
+fd
 74
+01
+a8
 05
-f0
+08
+80
+02
+c3
+33
+d8
+fc
+fd
+ee
+24
+78
+fb
 e4
-a3
-f0
-ff
-ef
-25
+34
+80
+8b
+82
+f5
+83
 e0
+fc
+ed
+f4
+fb
+ec
+5b
+f0
+ee
 24
-d6
+70
 f5
 82
 e4
 34
-4c
+80
 f5
 83
-74
-79
+e0
+4d
 f0
-a3
+ee
+24
 74
-90
-f0
-0f
-ef
-b4
-04
-e8
-90
-4c
-8f
-e0
-64
-02
-60
-02
-41
-3b
-90
-4c
-91
-e0
-fe
-a3
-e0
-ff
-c3
-90
-4c
-94
+f5
+82
+e4
+34
+80
+f5
+83
 e0
-9f
-fd
+5b
+f0
 90
-4c
-93
+81
+1c
 e0
-9e
+f4
 fc
+74
+a8
+2f
+f5
+82
 e4
-12
-02
-06
-7b
-c3
-7a
+34
+4d
 f5
-79
-88
+83
+ec
+f0
+ee
+24
 78
-3f
-12
-00
 fb
-c0
-04
-c0
-05
-c0
-06
-c0
-07
-90
-4c
-91
+e4
+34
+80
+8b
+82
+f5
+83
 e0
-fc
-a3
+4d
+f0
+ee
+24
+70
+fb
+e4
+34
+80
+8b
+82
+f5
+83
 e0
-fd
+fc
+ed
+f4
+fb
+ec
+5b
+f0
+0f
+81
+e5
 e4
-12
-02
+ff
+ef
+90
 06
+0c
+93
+60
+40
+74
+bc
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+fe
+74
+a8
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+6e
+60
+23
+74
+bc
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+c0
+83
+c0
+82
+e0
+fe
+74
+a8
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+fd
+ee
+5d
 d0
-03
-d0
-02
-d0
-01
-d0
-00
-12
+82
+d0
+83
+f0
+0f
+80
+b9
+22
+90
+80
+10
+74
+01
+f0
+80
+fe
+22
+80
+f5
+90
+4e
+89
+ed
+f0
+90
 00
-0a
+01
 12
-02
-3f
+03
+cf
 90
-4c
-de
-ee
-f0
-a3
-ef
+4e
+8a
 f0
+22
 90
 4c
-91
+c5
 e0
-fe
+b4
+03
+11
+90
+4c
+e3
+e0
+64
+0e
+70
+04
 a3
 e0
-ff
-c3
+64
+10
+70
+2d
+02
+07
+f1
 90
 4c
-94
+c5
 e0
-9f
-fd
+b4
+01
+14
 90
 4c
-93
+e3
 e0
-9e
-fc
-e4
+70
+04
+a3
+e0
+64
+28
+70
+17
+7f
+22
 12
+07
+f8
 02
-06
-7b
-ae
-7a
-47
-79
-81
-78
-3f
-12
-00
-fb
-c0
-04
-c0
-05
-c0
-06
-c0
 07
+f1
 90
 4c
-91
+e3
 e0
-fc
+70
+04
 a3
 e0
-fd
-e4
-12
-02
-06
-d0
+64
+14
+70
 03
-d0
-02
-d0
-01
-d0
-00
 12
-00
-0a
+07
+f1
+22
 12
-02
-3f
+07
+96
 90
 4c
+e4
 e0
-ee
-f0
-a3
-ef
+04
 f0
-22
+70
+06
 90
 4c
-8f
+e3
 e0
-64
-01
-70
-02
-41
-e1
+04
+f0
+d1
+4b
+b1
+cd
+d1
+5c
 90
 4c
-91
-e0
-fe
-a3
+ee
 e0
-ff
-c3
+60
+1d
+e4
 90
 4c
-94
-e0
-9f
-fd
+e3
+f0
+a3
+f0
 90
 4c
-93
+ee
 e0
-9e
-fc
-e4
+14
+f0
+e0
+70
+0d
+7f
+22
 12
-02
-06
-7b
-c3
-7a
-f5
-79
-a8
-78
-3e
+07
+f8
+7f
+0a
+12
+10
+9c
 12
-00
-fb
-c0
-04
-c0
-05
-c0
-06
-c0
 07
+f1
+22
 90
 4c
-91
-e0
-fc
-a3
+d3
 e0
-fd
-e4
-12
-02
-06
-d0
-03
-d0
-02
-d0
-01
-d0
-00
-12
-00
+60
 0a
-12
-02
-3f
-90
-4c
-de
-ee
+14
 f0
-a3
-ef
+e0
+70
+05
+74
+05
 f0
+d1
+e3
+22
 90
 4c
-91
-e0
-fe
-a3
+ce
 e0
-ff
-c3
+30
+e1
+3e
 90
 4c
+d0
+e0
+c3
 94
+fa
+50
+03
 e0
-9f
-fd
+04
+f0
 90
 4c
-93
+d0
 e0
-9e
-fc
-e4
-12
-02
-06
-7b
-5c
-7a
-8f
-79
-42
-78
-3e
-12
-00
-fb
-c0
-04
-c0
-05
-c0
-06
-c0
-07
+64
+b4
+70
+2f
 90
-4c
-91
+4d
+dc
 e0
-fc
-a3
+04
+f0
 e0
-fd
-e4
-12
+d3
+94
 02
-06
+50
+07
+e4
+90
+4c
 d0
+f0
+80
+1c
+90
+4d
+dc
+e0
+b4
 03
-d0
-02
-d0
+15
+90
+4d
+d5
+74
 01
+f0
+e4
+90
+4c
 d0
-00
-12
-00
-0a
+f0
 12
-02
-3f
+07
+f1
+80
+05
+e4
+90
+4d
+dc
+f0
 90
 4c
+ce
 e0
-ee
-f0
-a3
-ef
-f0
-22
+30
+e4
+30
 90
-80
-10
+4c
+ea
 74
-01
+0a
 f0
-80
-fe
-22
-80
-f5
 90
-4e
-89
-ed
+4c
+d1
+e0
+c3
+94
+fa
+50
+03
+e0
+04
 f0
 90
-00
-01
-12
+4c
+d1
+e0
+b4
+06
+1c
+90
+4c
+c3
+e0
+ff
+60
 03
-cf
+b4
+fe
+12
+12
+0f
+cb
+7f
+0a
+12
+10
+9c
+7f
+0a
+02
+0f
+eb
+e4
 90
-4e
-8a
+4c
+d1
 f0
 22
 90
@@ -13209,313 +12151,642 @@
 22
 90
 4c
-d3
+ea
 e0
 60
-0a
+02
 14
 f0
+90
+4c
+ef
 e0
-70
-05
-74
-05
-f0
-51
-fd
-22
-90
-4e
-6d
-ee
-f0
-a3
-ef
-f0
-90
-4e
-6f
-ec
-f0
-a3
-ed
+60
+02
+14
 f0
 90
-4e
-6f
-e0
-fe
-a3
+4c
+e5
 e0
-ff
-d3
+60
+18
+14
+f0
+d2
+01
+7f
+1e
+12
+07
+84
 90
-4e
-6e
+4c
+e5
 e0
-9f
+70
+34
+c2
+01
+7f
+1e
+12
+07
+84
+80
+2b
 90
-4e
-6d
+4c
+ee
 e0
-9e
-40
-16
+70
+25
 90
-4e
-6f
+4c
+e2
 e0
-fe
-a3
+60
+1f
+14
+f0
 e0
-ff
+30
+e1
+09
+d2
+01
+7f
+1e
+12
+07
+84
+80
+07
+c2
+01
+7f
+1e
+12
+07
+84
 90
-4e
-6e
+4c
+e2
 e0
-9f
-ff
+70
+03
+74
+04
+f0
 90
-4e
-6d
+4d
+d5
 e0
-9e
-fe
-80
-1e
+70
+2d
 90
-4e
-6d
+4d
+d6
 e0
-fe
-a3
+64
+01
+70
+25
+f0
+90
+4d
+e5
 e0
-ff
-c3
+60
+0d
+7b
+01
+7a
+4d
+79
+e5
+7d
+03
+12
+0d
+83
+80
+11
 90
-4e
-70
+48
+00
 e0
-9f
-ff
+60
+0b
+7b
+01
+7a
+48
+79
+00
+7d
+09
+12
+0d
+83
 90
-4e
-6f
+4d
+de
 e0
-9e
-fe
-ad
+60
 03
-c3
-eb
-9f
-ff
-e4
-9e
-fe
+e0
+14
+f0
 22
 90
-4e
-8b
-ee
+4c
+d3
+74
+05
 f0
+e4
 a3
+f0
+90
+4c
+90
+74
+37
+f0
+e4
+ff
 ef
+25
+e0
+24
+d6
+f5
+82
+e4
+34
+4c
+f5
+83
+74
+62
 f0
-a9
-05
+a3
+f0
+0f
+ef
+b4
+04
+ea
 90
-4b
-9e
+4c
+91
 e0
 fe
 a3
 e0
 ff
-ad
-01
-19
-ed
-60
-2f
-0f
-ef
-ac
-06
-70
-01
-0e
-14
-f5
-82
-8c
-83
+c3
+90
+4c
+94
 e0
+9f
 fd
 90
-4e
-8b
+4c
+93
+e0
+9e
+fc
 e4
-75
-f0
-01
 12
-04
-24
-85
-f0
-82
+02
+06
+7b
+c3
+7a
 f5
-83
-ed
-f0
-ad
+79
+a8
+78
+3e
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
 07
-ac
+90
+4c
+91
+e0
+fc
+a3
+e0
+fd
+e4
+12
+02
 06
-bc
-4b
-d4
-bd
-9a
-d1
-7e
-4b
-7f
-36
-80
-cb
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+12
+00
+0a
+12
+02
+3f
 90
-4b
-9e
+4c
+de
 ee
 f0
 a3
 ef
 f0
-22
 90
-04
-46
+4c
+91
+e0
+fe
+a3
 e0
 ff
-22
-90
-82
-80
-74
-01
-f0
-22
+c3
 90
-4e
-29
-eb
-f0
-a3
-ea
-f0
-a3
-e9
-f0
+4c
+94
+e0
+9f
+fd
 90
-4e
-2f
-74
-ff
-f5
-f0
+4c
+93
+e0
+9e
+fc
+e4
+12
+02
+06
+7b
+5c
+7a
+8f
+79
+42
+78
+3e
 12
+00
+fb
+c0
 04
-24
-45
-f0
-60
-2a
+c0
+05
+c0
+06
+c0
+07
 90
-4e
-2c
+4c
+91
 e0
-fb
+fc
 a3
+e0
+fd
 e4
-75
-f0
+12
+02
+06
+d0
+03
+d0
+02
+d0
 01
+d0
+00
 12
-04
-24
-a9
-f0
-fa
+00
+0a
 12
-03
-b6
-ff
+02
+3f
 90
-4e
-29
+4c
 e0
-fb
-a3
-e4
-75
-f0
-01
-12
-04
-24
-a9
+ee
 f0
-fa
+a3
 ef
-12
-03
-fc
-80
-c8
+f0
 22
 90
 4e
-81
-eb
+6d
+ee
 f0
 a3
-ea
+ef
 f0
-a3
-e9
+90
+4e
+6f
+ec
 f0
+a3
 ed
-1d
-ae
-04
-70
-01
-1c
+f0
+90
 4e
-60
-17
+6f
+e0
+fe
+a3
+e0
+ff
+d3
 90
 4e
-81
+6e
 e0
-fb
+9f
+90
+4e
+6d
+e0
+9e
+40
+16
+90
+4e
+6f
+e0
+fe
 a3
-e4
-75
-f0
-01
-12
-04
-24
-a9
-f0
-fa
-74
+e0
 ff
-12
-03
+90
+4e
+6e
+e0
+9f
+ff
+90
+4e
+6d
+e0
+9e
+fe
+80
+1e
+90
+4e
+6d
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4e
+70
+e0
+9f
+ff
+90
+4e
+6f
+e0
+9e
+fe
+ad
+03
+c3
+eb
+9f
+ff
+e4
+9e
+fe
+22
+90
+4e
+8b
+ee
+f0
+a3
+ef
+f0
+a9
+05
+90
+4b
+9e
+e0
+fe
+a3
+e0
+ff
+ad
+01
+19
+ed
+60
+2f
+0f
+ef
+ac
+06
+70
+01
+0e
+14
+f5
+82
+8c
+83
+e0
+fd
+90
+4e
+8b
+e4
+75
+f0
+01
+12
+04
+24
+85
+f0
+82
+f5
+83
+ed
+f0
+ad
+07
+ac
+06
+bc
+4b
+d4
+bd
+9a
+d1
+7e
+4b
+7f
+36
+80
+cb
+90
+4b
+9e
+ee
+f0
+a3
+ef
+f0
+22
+90
+04
+46
+e0
+ff
+22
+90
+82
+80
+74
+01
+f0
+22
+90
+4e
+29
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+2f
+74
+ff
+f5
+f0
+12
+04
+24
+45
+f0
+60
+2a
+90
+4e
+2c
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+24
+a9
+f0
+fa
+12
+03
+b6
+ff
+90
+4e
+29
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+24
+a9
+f0
+fa
+ef
+12
+03
+fc
+80
+c8
+22
+90
+4e
+81
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+17
+90
+4e
+81
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+24
+a9
+f0
+fa
+74
+ff
+12
+03
 fc
 80
 df
@@ -13583,37 +12854,8 @@
 5c
 f0
 22
-90
-4e
-96
-ef
-f0
-7b
-01
-7a
-80
-79
-74
-12
-14
-df
-92
-09
-90
-4e
-96
-e0
-ff
-a2
-09
-b3
-92
-01
-02
-07
-8b
-e4
-ff
+e4
+ff
 ef
 fd
 7c
@@ -13664,8 +12906,54 @@
 04
 cf
 22
-4f
-9f
+d2
+24
+aa
+55
+01
+00
+16
+00
+27
+aa
+55
+09
+00
+a2
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+02
+00
+dc
+07
+00
+00
+aa
+55
+0a
+00
+37
+0d
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
 aa
 55
 40
@@ -13738,82 +13026,153 @@
 00
 aa
 55
-01
+02
 00
 31
 41
 01
+43
 aa
 55
-02
+0e
 00
-13
-42
+38
+41
+ff
+ff
+8f
+f8
+83
+9d
+59
+82
+36
+08
+c2
+08
+66
+22
+aa
+55
+1b
+00
+4a
+41
 40
+25
+00
+12
+00
+00
+02
+12
+00
+00
+02
+00
+00
+20
+00
+00
+20
+20
+00
+02
+24
+80
 03
+00
+06
+70
+4f
 aa
 55
-01
+05
 00
-f7
+6e
 41
-0a
+80
+00
+00
+00
+01
 aa
 55
-02
+03
 00
 f5
 41
 10
 00
+0a
 aa
 55
-01
+0b
+00
+13
+42
+40
+03
+00
+00
 00
-33
-41
 00
+00
+0a
+0b
+ef
+0f
 aa
 55
-02
+05
 00
-b1
-4c
+80
+42
+0e
 00
+01
 00
+01
 aa
 55
-03
-00
-4a
-41
-40
-25
+02
 00
+9b
+42
+30
+3f
 aa
 55
-06
+01
 00
-40
-41
-36
-08
-c2
-08
-66
-22
+aa
+42
+20
 aa
 55
-0f
+1c
 00
+d9
+43
+1f
 02
-47
-0e
+01
+05
+03
+19
+c1
+03
+03
+03
+12
+18
+0f
+09
 42
 54
-33
+34
 2e
-30
+32
 20
 4b
 65
@@ -13825,329 +13184,349 @@
 64
 aa
 55
-03
+11
 00
-80
+f9
+43
+1f
+0f
+09
 42
-0e
+54
+34
+2e
+32
+20
+4b
+65
+79
+62
+6f
+61
+72
+64
+aa
+55
+0f
 00
-01
+19
+44
+0e
+42
+54
+34
+2e
+32
+20
+4b
+65
+79
+62
+6f
+61
+72
+64
 aa
 55
 01
 00
-84
-42
-01
+c2
+44
+14
 aa
 55
 01
 00
-47
-47
-0a
+dd
+44
+01
 aa
 55
 01
 00
-dc
-47
-00
+e4
+44
+07
 aa
 55
-01
+06
 00
-f6
-47
-01
+f9
+44
+11
+46
+34
+54
+77
+dd
 aa
 55
+dd
 01
-00
-72
-41
+04
+45
 01
-aa
-55
-0e
-00
-5b
-47
-06
-03
-11
 00
 00
+28
+02
 01
+18
 02
-10
-24
-11
 00
-12
+03
+28
 01
+20
+03
 00
-aa
-55
+05
+2a
 01
 00
-71
-47
+04
 00
-aa
-55
-76
 02
-11
-48
-04
+29
+02
 00
-11
-01
 00
-10
+05
+00
+00
+28
 02
-11
-24
 00
+18
+06
+00
+03
+28
 01
+02
+07
 00
 00
-36
+2a
+0e
+42
+54
+34
+2e
+32
+20
+4b
+65
+79
+62
+6f
+61
+72
+64
+08
+00
+03
+28
 01
-b6
+02
 09
 00
-00
+01
+2a
+02
+c1
+03
 0a
 00
+03
+28
 01
+02
+0b
+00
+04
+2a
+08
+06
 00
+06
 00
-09
+64
 00
+2c
 01
-35
-03
-19
-11
-24
-09
+0c
 00
-04
-35
+00
+28
+02
+0a
+18
 0d
-35
-06
-19
+00
+03
+28
 01
+02
+0e
 00
-09
+50
+2a
+07
+02
+e8
+04
+21
+70
+01
 00
-11
-35
-03
-19
+0f
 00
-11
-09
 00
-05
-35
-03
-19
-10
+28
 02
-09
+12
+18
+10
 00
+03
+28
+01
 06
-35
-09
-09
-65
-6e
-09
+11
 00
-6a
-09
+4e
+2a
+01
 01
+12
 00
-09
+03
+28
+01
+12
+13
 00
-09
-35
+4d
+2a
 08
-35
-06
-19
-11
-24
-09
-01
 00
-09
 00
-0d
-35
-0f
-35
-0d
-35
-06
-19
-01
 00
-09
 00
-13
-35
-03
-19
 00
-11
-09
+00
+00
+00
+14
+00
+02
+29
+02
+00
+00
+15
+00
+08
+29
+02
 01
+01
+16
 00
-25
-3d
-42
-72
-6f
-61
-64
-63
-6f
-6d
-20
-42
-6c
-75
-65
-74
-6f
-6f
-74
-68
-20
-57
-69
-72
-65
-6c
-65
-73
-73
-20
-20
-4b
-65
-79
-62
-6f
-61
-72
-64
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-20
-09
-01
-01
-25
-08
-4b
-65
-79
-62
-6f
-61
-72
-64
-09
+03
+28
 01
+12
+17
+00
+4d
+2a
 02
-25
-10
-42
-72
-6f
-61
-64
-63
-6f
-6d
-20
-43
-6f
-72
-70
-2e
-20
-20
-09
+00
+00
+18
+00
+02
+29
 02
 00
-09
-01
 00
-09
+19
+00
+08
+29
+02
 02
 01
-09
+1a
+00
+03
+28
 01
-11
-09
+12
+1b
+00
+4d
+2a
+05
+00
+00
+00
+00
+00
+1c
+00
 02
+29
 02
+00
+00
+1d
+00
 08
-40
-09
+29
 02
 03
-08
-21
-09
-02
-04
-28
 01
-09
-02
-05
+1e
+00
+03
 28
 01
-09
+0e
+1f
+00
+4d
+2a
 02
-06
-35
-a5
-35
-a3
+00
+00
+20
+00
+02
+29
+02
+00
+00
+21
+00
 08
+29
+02
+01
+02
 22
-25
-9f
+00
+03
+28
+01
+0a
+23
+00
+4b
+2a
+a0
 05
 01
 09
@@ -14202,8 +13581,9 @@
 08
 15
 00
-25
+26
 ff
+00
 05
 07
 19
@@ -14307,83 +13687,171 @@
 06
 c0
 c0
-09
+24
+00
+03
+28
+01
 02
-07
-35
-08
-35
-06
-09
+25
+00
+4a
+2a
 04
-09
-09
+11
 01
 00
-09
-02
-0b
-09
+01
+26
+00
+03
+28
+01
+04
+27
+00
+4c
+2a
 01
 00
-09
-02
-0c
-09
-0c
-80
-09
-02
-0d
 28
 00
-09
-02
-0e
+00
 28
-01
-09
 02
 0f
-09
-03
 18
-09
-02
-10
-09
-00
+29
 00
 03
-10
-02
+28
+01
 12
+2a
 00
-00
+19
+2a
 01
+64
+2b
+00
+02
+29
+02
 00
-01
 00
+00
+00
+aa
+55
 01
-36
 00
-a1
-09
+f9
+46
+50
+aa
+55
+0f
 00
+02
+47
+0e
+42
+54
+33
+2e
+30
+20
+4b
+65
+79
+62
+6f
+61
+72
+64
+aa
+55
+01
 00
+47
+47
 0a
+aa
+55
+10
+00
+59
+47
+11
+48
+06
+03
+11
+00
+00
+01
+02
+10
+24
+11
+00
+12
+01
+00
+aa
+55
+02
 00
+f6
+47
+01
+ff
+aa
+55
+01
+00
+fd
+47
+ff
+aa
+55
+8a
+02
+11
+48
+04
+00
+11
+01
+00
+10
+02
+11
+24
+00
+01
+00
+00
+36
 01
+b6
+09
+00
+00
+0a
 00
 01
+00
+00
 09
 00
 01
 35
 03
 19
-12
-00
+11
+24
 09
 00
 04
@@ -14396,12 +13864,20 @@
 00
 09
 00
-01
+11
 35
 03
 19
 00
-01
+11
+09
+00
+05
+35
+03
+19
+10
+02
 09
 00
 06
@@ -14424,16 +13900,36 @@
 35
 06
 19
-12
+11
+24
+09
+01
 00
 09
+00
+0d
+35
+0f
+35
+0d
+35
+06
+19
 01
 00
 09
+00
+13
+35
+03
+19
+00
+11
+09
 01
 00
 25
-2f
+3d
 42
 72
 6f
@@ -14462,6 +13958,7 @@
 73
 73
 20
+20
 4b
 65
 79
@@ -14471,16 +13968,29 @@
 72
 64
 20
-50
-6e
-50
 20
-53
-65
-72
-76
-65
-72
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
 09
 01
 01
@@ -14495,29 +14005,48 @@
 72
 64
 09
+01
+02
+25
+10
+42
+72
+6f
+61
+64
+63
+6f
+6d
+20
+43
+6f
+72
+70
+2e
+20
+20
+09
 02
 00
 09
 01
-03
+00
 09
 02
 01
 09
-0a
-5c
+01
+11
 09
 02
 02
-09
-85
-02
+08
+40
 09
 02
 03
-09
-00
-01
+08
+21
 09
 02
 04
@@ -14526,175 +14055,332 @@
 09
 02
 05
+28
+01
 09
-00
-02
-00
-aa
-55
 02
-00
-59
-47
-11
-48
-aa
-55
+06
+35
+a5
+35
+a3
+08
+22
+25
+9f
+05
 01
-00
-32
-41
-43
-aa
-55
+09
+06
+a1
 01
-00
-fb
-41
-00
-aa
-55
+85
+01
+75
+01
+95
 08
-00
-38
-41
-ff
-ff
-8f
-f8
-83
-9d
-59
-82
-aa
-55
-01
-00
-dc
+05
 07
+19
+e0
+29
+e7
+15
 00
-aa
-55
+25
 01
-00
-a2
-00
-00
-aa
-55
+81
+02
+95
+01
+75
+08
+81
+03
+95
+05
+75
+01
+05
+08
+19
+01
+29
+05
+91
+02
+95
 01
+75
+03
+91
+03
+95
+06
+75
+08
+15
 00
-dd
+25
+ff
+05
 07
+19
 00
-aa
-55
-01
-00
-16
+29
+ff
+81
 00
-27
-aa
-55
+c0
+05
+0c
+09
 01
+a1
+01
+85
+02
+19
 00
-fd
-47
+2a
 ff
-aa
-55
-01
+03
+15
 00
-f7
-47
+26
 ff
-aa
-55
+03
+95
 01
+75
+10
+81
 00
-6e
-41
-80
-aa
-55
-02
-00
-a2
-4b
+c0
+05
+01
+09
 02
+a1
 01
-aa
-55
-04
+85
+03
+09
+01
+a1
 00
-91
-4c
-9f
-3e
-cd
-4d
-aa
-55
+05
+09
+19
 01
+29
+08
+15
 00
-8f
-4c
-04
-aa
-55
-dd
+25
+01
+75
+01
+95
+08
+81
+02
+05
+01
+09
+30
+09
+31
+16
 01
+80
+26
+ff
+7f
+75
+10
+95
+02
+81
+06
+09
+38
+15
+81
+25
+7f
+75
+08
+95
+01
+81
+06
+05
+0c
+0a
+38
+02
+95
+01
+81
+06
+c0
+c0
+09
+02
+07
+35
+08
+35
+06
+09
 04
-45
+09
+09
 01
 00
+09
+02
+0b
+09
+01
 00
+09
+02
+0c
+09
+0c
+80
+09
+02
+0d
 28
+00
+09
 02
+0e
+28
 01
+09
+02
+0f
+09
+03
 18
+09
 02
+10
+09
+00
 00
 03
-28
+10
+02
+12
+00
+00
 01
-20
-03
 00
-05
-2a
 01
 00
-04
+01
+36
 00
-02
-29
-02
+a1
+09
 00
 00
-05
+0a
 00
+01
 00
-28
-02
+01
+09
 00
-18
+01
+35
+03
+19
+12
+00
+09
+00
+04
+35
+0d
+35
 06
+19
+01
+00
+09
 00
+01
+35
 03
-28
+19
+00
+01
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
 01
-02
-07
 00
+09
 00
-2a
-0e
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09
+01
+00
+25
+2f
 42
-54
-34
-2e
-32
+72
+6f
+61
+64
+63
+6f
+6d
+20
+42
+6c
+75
+65
+74
+6f
+6f
+74
+68
+20
+57
+69
+72
+65
+6c
+65
+73
+73
 20
 4b
 65
@@ -14704,989 +14390,1222 @@
 61
 72
 64
+20
+50
+6e
+50
+20
+53
+65
+72
+76
+65
+72
+09
+01
+01
+25
 08
+4b
+65
+79
+62
+6f
+61
+72
+64
+09
+02
 00
+09
+01
 03
-28
+09
+02
 01
+09
+04
+e8
+09
+02
 02
 09
-00
-01
-2a
+70
+21
+09
 02
-c1
 03
-0a
+09
 00
-03
-28
 01
+09
 02
-0b
-00
 04
-2a
-08
-06
-00
-06
-00
-64
-00
-2c
-01
-0c
-00
-00
 28
+01
+09
 02
-0a
-18
-0d
+05
+09
 00
-03
-28
-01
 02
-0e
 00
+55
+d0
+56
+c0
+57
+4c
+58
+6c
+59
 50
-2a
-07
+55
+d0
+56
+c0
+57
+4c
+58
+6c
+59
+50
+aa
+55
 02
-8a
-24
-66
-82
-01
-00
-0f
 00
+a2
+4b
+02
+01
+aa
+55
+04
 00
-28
+e2
+4b
 02
+00
+c0
 12
-18
+aa
+55
+15
+00
+eb
+4b
+20
+15
 10
+05
+ff
 00
-03
-28
-01
+13
+2c
+42
 06
+15
+36
+48
+0f
+1a
+3a
+4c
 11
+23
+31
+4d
+aa
+55
+03
+00
+0f
+4c
+40
 00
-4e
-2a
 01
+aa
+55
 01
-12
 00
-03
-28
-01
+60
+4c
+50
+aa
+55
 12
-13
-00
-4d
-2a
-08
-00
-00
-00
 00
+6a
+4c
+17
 00
+0c
 00
+05
 00
+12
+b4
+08
 00
-14
+10
 00
-02
-29
-02
+10
 00
 00
-15
 00
-08
-29
-02
-01
+2c
 01
-16
+aa
+55
+0b
 00
-03
-28
-01
-12
-17
+8f
+4c
+04
 00
+9f
+3e
+cd
 4d
-2a
-02
 00
 00
-18
 00
-02
-29
-02
 00
+13
+aa
+55
+06
 00
-19
+b8
+4c
+13
 00
-08
-29
-02
-02
-01
-1a
+17
 00
-03
-28
-01
-12
 1b
 00
+aa
+55
+08
+00
+3d
 4d
-2a
-05
 00
+48
+5d
 00
 00
 00
 00
-1c
 00
-02
-29
-02
+aa
+55
+04
 00
+4c
+4d
+20
+20
+06
+12
+aa
+55
+7f
 00
+70
+4f
+07
+ff
+0a
+fb
+0b
+ff
+1a
+fb
+1b
+fb
+1c
+fb
 1d
-00
-08
-29
-02
-03
-01
+f6
 1e
-00
-03
-28
-01
-0e
+f2
 1f
-00
-4d
-2a
-02
-00
-00
+ee
 20
-00
-02
-29
-02
-00
-00
+ea
 21
-00
-08
-29
-02
-01
-02
+e6
 22
-00
-03
-28
-01
-0a
+e2
 23
-00
-4b
-2a
-a0
-05
-01
-09
-06
-a1
-01
-85
-01
-75
-01
-95
-08
-05
-07
-19
-e0
-29
-e7
-15
-00
+de
+24
+da
 25
-01
-81
-02
-95
-01
-75
-08
-81
-03
-95
-05
-75
-01
-05
-08
-19
-01
-29
-05
-91
-02
-95
-01
-75
-03
-91
-03
-95
-06
-75
-08
-15
-00
+d6
 26
-ff
-00
-05
-07
-19
-00
+d2
+27
+ce
+28
+ca
 29
-ff
-81
-00
-c0
-05
-0c
-09
-01
-a1
-01
-85
-02
-19
-00
+c6
 2a
-ff
-03
-15
-00
-26
-ff
-03
-95
-01
-75
-10
-81
-00
-c0
-05
-01
-09
-02
-a1
-01
-85
-03
-09
-01
-a1
-00
-05
-09
-19
-01
-29
-08
-15
-00
-25
-01
-75
-01
-95
-08
-81
-02
-05
-01
-09
+c2
+2b
+bd
+2c
+b9
+2d
+b5
+2e
+b1
+2f
+ad
 30
-09
+a9
 31
-16
-01
 80
-26
-ff
-7f
-75
-10
-95
-02
-81
-06
-09
-38
-15
-81
-25
-7f
-75
-08
-95
-01
-81
-06
-05
-0c
-0a
-38
-02
-95
-01
-81
-06
-c0
+32
+80
+33
+80
+34
 c0
-24
-00
-03
-28
-01
-02
-25
-00
-4a
-2a
-04
-11
-01
-00
-01
-26
-00
-03
-28
-01
-04
-27
-00
-4c
-2a
-01
-00
-28
-00
-00
-28
-02
-0f
-18
-29
-00
-03
-28
-01
-12
-2a
-00
-19
-2a
-01
-64
-2b
-00
-02
-29
-02
-00
-00
-00
-00
-aa
-55
-01
-00
-6a
-4c
-17
-aa
-55
-01
-00
-f9
-46
-50
-aa
-55
-01
-00
+35
+c1
+36
 c2
-44
-14
-aa
-55
+37
+c3
+38
+c4
+39
+c5
+3a
+c6
+3b
+c7
+3c
 06
-00
-f9
+3d
+07
+3e
+46
+3f
+85
+40
+86
+41
+87
+42
+c6
+43
+c7
 44
-11
+d6
+45
+d7
 46
-34
-54
-77
-dd
-aa
-55
-01
-00
-7e
-4c
-00
-aa
-55
-06
-00
-b8
-4c
-13
-00
-17
-00
-1b
+e6
+47
+f5
+48
 00
-aa
+49
+f8
+4a
+7f
+4e
+ec
+4f
+5e
 55
-01
-00
-60
+d0
+56
+c0
+57
 4c
-50
-aa
-55
-10
-00
+58
 6c
-4c
-0c
-00
-05
-00
-12
-b4
-08
-00
-10
-00
-10
-00
-00
+59
+50
+68
+e4
+69
 00
-2c
-01
-aa
-55
-0f
+6a
 00
-19
-44
-0e
-42
-54
-34
-2e
-32
-20
-4b
-65
-79
-62
-6f
-61
-72
-64
-aa
-55
-01
-00
-e4
-44
-07
-aa
-55
-01
-00
-dd
-44
-01
-aa
-55
-1c
-00
-d9
-43
-1f
-02
-01
-05
-03
-19
-c1
-03
-03
-03
-12
-18
-0f
-09
-42
-54
-34
-2e
-32
-20
-4b
-65
-79
-62
-6f
-61
-72
-64
-aa
-55
-11
-00
-f9
-43
-1f
-0f
-09
-42
-54
-34
-2e
-32
-20
-4b
-65
-79
-62
-6f
-61
-72
-64
-aa
-55
-01
-00
-10
-4c
-01
-aa
-55
-01
-00
-e2
-4b
-02
-aa
-55
-01
-00
-0f
-4c
-40
-aa
-55
-01
-00
-0a
-4c
-00
-aa
-55
-02
-00
-e4
-4b
-c0
-12
-aa
-55
-10
-00
-f0
-4b
-00
-13
-2c
-42
-06
-15
-36
-48
-0f
-1a
-3a
-4c
-11
-23
-31
-4d
-aa
-55
-01
-00
-ef
-4b
+6b
+30
 ff
-aa
-55
-04
-00
-eb
-4b
-20
-15
-10
-05
-aa
-55
-0a
-00
-37
-0d
-00
-00
-00
-00
-00
-00
-00
-00
-00
-00
-aa
-55
-08
-00
-3d
-4d
-00
 48
-5d
-00
-00
-00
-00
-00
-aa
-55
-05
-00
-19
-42
-00
-0a
-0b
-ef
-0f
-aa
-55
-01
-00
-f8
-41
-00
-aa
-55
-08
-00
-a3
-00
-00
-00
-00
-00
-00
-00
-00
-00
-aa
-55
-02
-00
-5d
-41
-02
-24
-aa
-55
-08
-00
-4d
-41
-12
-00
-00
-02
-12
-00
-00
-02
-aa
-55
-02
-00
-5b
-41
-20
-00
-aa
-55
-04
-00
-57
-41
-20
-00
-00
-20
-aa
-55
-04
-00
-5f
-41
-80
-03
-00
-06
-aa
-55
-02
-00
-98
-4c
-00
-13
-aa
-55
-02
-00
-9b
-42
-30
-3f
-aa
-55
-01
-00
-aa
-42
-20
-aa
-55
-7f
-00
-70
-4f
-07
+33
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
 ff
-0a
-fb
-0b
 ff
-1a
-fb
-1b
-fb
-1c
-fb
-1d
-f6
-1e
-f2
-1f
-ee
-20
-ea
-21
-e6
-22
-e2
-23
-de
-24
-da
-25
-d6
-26
-d2
-27
-ce
-28
-ca
-29
-c6
-2a
-c2
-2b
-bd
-2c
-b9
-2d
-b5
-2e
-b1
-2f
-ad
-30
-a9
-31
-80
-32
-80
-33
-80
-34
-c0
-35
-c1
-36
-c2
-37
-c3
-38
-c4
-39
-c5
-3a
-c6
-3b
-c7
-3c
-06
-3d
-07
-3e
-46
-3f
-85
-40
-86
-41
-87
-42
-c6
-43
-c7
-44
-d6
-45
-d7
-46
-e6
-47
-f5
-48
-00
-49
-f8
-4a
-7f
-4e
-ec
-4f
-5e
-55
-d0
-56
-c0
-57
-4c
-58
-6c
-59
-50
-68
-e4
-69
-00
-6a
-00
-6b
-30
 ff
-aa
-55
-02
-00
-63
-41
-70
-4f
-aa
-55
-00
-00
-ee
-46
-aa
-55
-0a
-00
-91
-4a
-55
-d0
-56
-c0
-57
-4c
-58
-6c
-59
-50
-aa
-55
-0a
-00
-87
-4a
-55
-d0
-56
-c0
-57
-4c
-58
-6c
-59
-50
-3e
-b8
 ff
 ff
 ff
@@ -16380,5 +16299,86 @@
 ff
 ff
 ff
-8e
-72
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+82
+12
Index: c51/output/fw.hex
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/output/fw.hex	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/output/fw.hex	(working copy)
@@ -85,7 +85,7 @@
 :10054000054A12054A12054AE473E493A3C583C51C
 :10055000F0C583C8C582C8F0A3C583C5F0C583C8EC
 :10056000C582C8228A838982E473787FE4F6D8FD45
-:100570007581CF0205B10217AAE493A3F8E493A30F
+:100570007581CF0205B10217B5E493A3F8E493A304
 :100580004003F68001F208DFF48029E493A3F854D5
 :1005900007240CC8C333C4540F4420C8834004F458
 :1005A00056800146F6DFE4800B010204081020406B
@@ -93,9 +93,9 @@
 :1005C00009541FFEE493A360010ECF54C025E060E0
 :1005D000A840B8E493A3FAE493A3F8E493A3C8C5AE
 :1005E00082C8CAC583CAF0A3C8C582C8CAC583CA9F
-:1005F000DFE9DEE780BE524DEEFF0A96000000FF05
-:100600000F90FF15B7000000FF22ED001A08090A3D
-:100610000B0C0D0E18191715141311161B1C0000C6
+:1005F000DFE9DEE780BE524DEEFF11A3000000FFF1
+:100600001E10FF1FCF000000FF1DBD001A08090AC1
+:100610000B0C0D0E18191714131211151B1C0000CA
 :100620000048000000E400E03E142B04291D8B3537
 :100630001E1A3916641B8A3A1F083C073D06883B80
 :10064000201517090A19052221181C0D0B1011235A
@@ -107,499 +107,452 @@
 :1006A000F1FAE3D1D3D2D4F8D591D0AFF9F3FBD698
 :1006B00090000000000000000000000000000001A9
 :1006C0000100904CC5E0B403037F01227F0022901B
-:1006D0004DE1E064026002E18A904CE9E06002E1F1
-:1006E0007E904CD5E0B402051209F2802E904CD5D4
-:1006F000E0B40114904CF7E07021904CE27404F0E7
-:10070000904CF77401F08013904CF7E0B4010CE4C6
-:10071000F0904CE2F0C2017F1DF18BD1C2EF60522C
-:10072000904DD9E0FF904CB7E06F605EE030E00E96
-:10073000904CE6740CF0C2017F10F18B800BD2015B
-:100740007F10F18BE4904CE6F0904CB7E030E10E76
-:10075000904CE7740CF0C2017F0FF18B800BD2013B
-:100760007F0FF18BE4904CE7F0904CB7E0904DD9BF
-:10077000F022D2017F10F18BD2017F0F800DD201C8
-:100780007F10F18BD2017F0FF18B22EFF4600D7B94
-:10079000017A807974A201920012107322904DE1C7
-:1007A000E064027052904CEEE060057F1D122561FE
-:1007B000D1C2EF6042904CE6E0601614F0C2017FB7
-:1007C00010F18B904CE6E0700ED2017F10F18B801F
-:1007D00006D2017F10F18B904CE7E0601414F0C258
-:1007E000017F0FF18B904CE7E0700CD2017F0F80FE
-:1007F0009AD2017F0FF18B22D2017F1D808DE4FF01
-:10080000904CEEE0600122904CC5E06403601C90C7
-:100810004CEFE0701D740AF0A3E07016904DE1E01B
-:10082000B4020F7F0911337F018007E4904CEBF095
-:100830007F0122904E8DEFF024F76009146061244F
-:1008400002600201D9E4904CF0F011DFEF600990F2
-:100850004E8DE0904CEDF0227B017A4C79007D04C6
-:100860007C007FF27E3F716C7F0A517E904C00E0ED
-:10087000B4FF1BA3E0B4FF16A3E0B4FF11A3E0B4E0
-:10088000FF0C904C00740FF0A3F0A3F0A3F07F21B5
-:1008900011F6904CC57402F0E4A3F0904CEDF022F8
-:1008A000E4904CF0F011DFEF6009904E8DE0904C39
-:1008B000EDF022904CC5E0640160187F2311F690A2
-:1008C0004CC57401F0E4A3F0904CEE74F0F0E490A9
-:1008D0004CE9F0E4904CEDF022E4904CEDF02290E5
-:1008E0004CC5E0FF64036004EFB402077F2211F6F9
-:1008F0007F01227F0022904E71EFF078727C4E7D56
-:10090000017BFF7A0679BF7E007F03120390904E31
-:1009100071E0904E74F07B017A4E79727D03904EB7
-:1009200046EBF0A3EAF0A3E9F0A3EDF0904B9CE0D6
-:10093000FFA3E0904E4ACFF0A3EFF0904B9AE0FE79
-:10094000A3E0FF904B9CE0FCA3E0FD7B641223FA44
-:10095000904E49E0FEEFC39E40E1904E49E0FF1407
-:10096000F0EF603F904E46E0FBA3E475F001120407
-:1009700024A9F0FA1203B6FF904E4AE475F0011272
-:10098000042485F082F583EFF0904E4AE0FEA3E068
-:10099000FFBE4BC6BF36C3904E4A744AF0A374A044
-:1009A000F080B7904E4AE0FFA3E0904B9CCFF0A3BD
-:1009B000EFF022904CC5E0B40310904CE3E0640EDD
-:1009C0007004A3E0641070298028904CC5E0B40145
-:1009D00012904CE3E07004A3E0642870147F2211AD
-:1009E000F6800F904CE3E07004A3E06414700231D1
-:1009F000F222E4904D38F07F1901F6904CCEE030B1
-:100A0000E13D904CD0E0C394FA5003E004F0904CE8
-:100A1000D0E064B4702E904DDCE004F0E0D394029A
-:100A20005007E4904CD0F0801B904DDCE0B40314F0
-:100A3000904DD57401F0E4904CD0F031F28005E493
-:100A4000904DDCF0904CCEE030E42D904CEA740AEE
-:100A5000F0904CD1E0C394FA5003E004F0904CD1F4
-:100A6000E0B40619904CC3E0FF6003B4FE0F11DF41
-:100A70007F0A517E7F0A0133E4904CD1F022EFD3FC
-:100A800094004011E4FDFC0DBD00010CBC04F8BD58
-:100A9000A6F51F80E922904E92EFF024D060471413
-:100AA0006046147002613F14600A24F7603A240D16
-:100AB0006002616BF1EC12214F7B017A4C79007D71
-:100AC000047C007FF27E3F716C7F0A517E904CC1A6
-:100AD000E0F97A007B007D017C007FF87E3F716C3D
-:100AE0007F0A517EE1AAE1C1904CC57403F0E4A3F2
-:100AF000F0F169E4904CEEF0904CEBF0904CC07447
-:100B0000FEF0904CC3F0904E92E064317024904C13
-:100B1000E5741EF0904BEBE0B40F10A3E0B40F0BA4
-:100B2000A3E0B40F06A3E0640F6040904CBF7401D3
-:100B3000F022904CE5E07033C2017F1D02078BE488
-:100B4000904CC5F0A3F0904CE3F0A3F0904CEB0474
-:100B5000F0904CEDE06009F169904CEDE0FF01335D
-:100B6000904CECE0B40104E4F031F222904E5CECE5
-:100B7000F0A3EDF0A3EBF0A3EAF0A3E9F0908098E6
-:100B80007404F0A3E4F0900CAF74A0F0A3EEF0A313
-:100B9000EFF0900CB274A1F07A0C79AF7E0C7FAFBD
-:100BA00074AFFC740CFFECFEEF90809AEEF0A3EFB4
-:100BB000F0904E5CE0FCA3E0FAECFFEAFEEF9080E0
-:100BC0009EEEF0A3EFF07A0B79837E0B7F83748324
-:100BD000FC740BFFECFEEF90809CEEF0A3EFF09026
-:100BE00080907402F090809CA3E020E707908090B2
-:100BF000E04401F0908006E04404F01216DB904ED1
-:100C00005EE0A3E0FAA3E0AE02FF7B017A0B7983FA
-:100C1000904E5CE0A3E0904E51F0904E4CEEF0A36D
-:100C2000EFF0A3EBF0A3EAF0A3E9F0904E51E0FF60
-:100C300014F0EF6027904E4EE0FBA3E475F0011234
-:100C40000424A9F0FA1203B6FF904E4CE475F001AB
-:100C500012042485F082F583EFF080CF22904E526B
-:100C6000EBF0A3EAF0A3E9F0E4A3F0A3F0904DDBEE
-:100C7000F0904E56F0904E56E0FFC39405502C90E5
-:100C80004E52E0FBA3E0FAA3E02401F9E43AFA7E35
-:100C900000E92FF9EE3AFA1203B6B4AF06904DDB35
-:100CA0007401F0904E56E004F080CA904DDBE09065
-:100CB0004DE0F0904E52E0A3E0FAA3E04A7002C18A
-:100CC000B2904DDE740AF0E4904CE3F0A3F07B01A7
-:100CD0007A4879007D09FCD1B37B017A4D79E57DB5
-:100CE000097C00D1B3904E52E0FBA3E0FAA3E0F9F7
-:100CF0009000011203CFFFB42E0A9000021203CF1E
-:100D00006429600FEF642970369000021203CF64EB
-:100D10002E702C904BEB7420F0A37415F0A374107C
-:100D2000F0A37405F0904CC5E064016009904CCECE
-:100D3000E04410F08010904CCEE054EFF08007902B
-:100D40004CCEE054EFF0904CB67401F0904CF4E0CF
-:100D5000B4012B9048007401F0A3E0FF904CF5E043
-:100D6000FEEF4E904801F0E4904803F07B017A4892
-:100D700079007D0912140E904CF47402F022904C0C
-:100D8000C5E064037045904E56F0904E56E0FFC3A8
-:100D900094055037904E52E0FBA3E0FAA3E0240103
-:100DA000F9E43AFA7E00E92FF9EE3AFA1203B6FFB7
-:100DB00064396009EF64536004EFB44706904DD086
-:100DC0007401F0904E56E004F080BF904E52E0FB6C
-:100DD000A3E0FAA3E0F9121ED3904DE4E0B40112AF
-:100DE0007402F0904DE5F07B017A4D79E57D0302C8
-:100DF000140E904DE4E0B40317E4F0904DE3F0904E
-:100E00004DE57402F07B017A4D79E57D0302140E05
-:100E10009048007401F0904E52E0FBA3E0FAA3E08A
-:100E2000F91203B6904801F0E4A3F0904DD8F09089
-:100E300000011203CFB4AF1E7E487F03904E52E0F4
-:100E4000FBA3E0FAA3E02402F9E43AFA904E5174CD
-:100E500005F0911A801C7E487F03904E52E0FBA360
-:100E6000E0FAA3E02401F9E43AFA904E517406F056
-:100E7000911A904E567403F0904E56E0FFC39409B9
-:100E8000502574002FF582E43448F583E0B4AF0FA9
-:100E9000904E56E02400F582E43448F583E4F09067
-:100EA0004E56E004F080D17B017A4879007D09122A
-:100EB000140E22904E7EEBF0A3EAF0A3E9F0ED1DB4
-:100EC000AE0470011C4E6016904E7EE0FBA3E475EC
-:100ED000F001120424A9F0FAE41203FC80E0227B62
-:100EE000017A4C79BF7D427C00D1B37B017A4D7988
-:100EF000937D147C00D1B37B017A4D79A87D147C5D
-:100F000000D1B37B017A4D79BC7D147C00D1B37BD9
-:100F1000017A4879007D097C00D1B37B017A4D7953
-:100F2000E57D097C00D1B3E4904DDEF0904DE2F018
-:100F3000904DE1F0904DD6F0904DD0F0904DDCF01A
-:100F4000904DE4F0904DD5F0904DD8F0904DDBF001
-:100F5000904DE0F0904DD3F0904DDFF0904DE3F0E8
-:100F6000904DD9F0904D38F022E4904CF0F0229062
-:100F70004CEEE0601AE4904CE3F0A3F0904CEEE00D
-:100F800014F0E0700A7F2211F67F0A517E31F222BE
-:100F900012079D904CE4E004F07006904CE3E004EE
-:100FA000F01223E931B331FB80C5904DE17402F0BA
-:100FB0007F080133E4900B7FF0900B7EF07F0141BE
-:100FC0007E908080E4F0A3F0A3F01210D4E4904E61
-:100FD00090F0F0904E90E090060C93FF600DC205EB
-:100FE000121044904E90E004F080E822F1C1C20655
-:100FF0007F10121006C2067F0F121006C2067F1D58
-:101000001106C2067F1DAC07ECF46015AF04D204D4
-:101010001133AF04A206920112078BAF04C2021172
-:101020002222EFF4600C7B017A807978A202920090
-:10103000117322EFF4600C7B017A807970A2049224
-:1010400000117322AC07ECF46017AF04A205920301
-:101050001162AF04A205B392021122AF04C20411BF
-:101060003322EFF4600C7B017A80797CA20392003A
-:10107000117322904E84EBF0A3EAF0A3E9F0E4FEB2
-:10108000FDEF5407FEEF1313135403FD30002290BD
-:101090004E84E0FBA3E0FAA3E02DF9E43AFA120350
-:1010A000B6FF7401A806088002C333D8FC4F0203C0
-:1010B000FC904E84E0FBA3E0FAA3E02DF9E43AFAB9
-:1010C0001203B6FF7401A806088002C333D8FCF4EB
-:1010D0005F0203FCE4904E8FF0F0904E8FE0FFC370
-:1010E0009408500CC2051144904E8FE004F080EA41
-:1010F00022904CBFE0603D7FC8120A7EC2017FFF94
-:1011000012078B7B017A4C79007D047C007FF27E94
-:101110003F31357B017A4C79C17D017C007FF87EBF
-:101120003F3135D2017FFF12078B7F0A120A7EE41E
-:10113000904CBFF022904E20EEF0A3EFF0A3ECF025
-:10114000A3EDF0A3EBF0A3EAF0A3E9F0904E22E0C8
-:101150007002A3E0700221E2904E20E0FEA3E0FFC7
-:10116000440F2401FDE43EFCC3ED9FFFEC9EFE9086
-:101170004E27F0A3EFF0904E22E0FCA3E0FDD39FBA
-:10118000EC9E400A904E27E0FEA3E0FF8004AE04F0
-:10119000AF05904E27EEF0FCA3EFF0FDC3904E2379
-:1011A000E09DF0904E22E09CF0904E20E0FEA3E007
-:1011B000FF904E24E0FBA3E0FAA3E0F9D1427F0ABE
-:1011C000120A7E904E27E0FEA3E0FF904E25EE8FA0
-:1011D000F012040E904E21E02FF0904E20E03EF0F1
-:1011E000214C229199D1E3717F11F11206CF900B1E
-:1011F0007EE014600E24FE70EC5135120FEE120FDB
-:10120000B480FE904CEAE0701E904CECE0701890B8
-:101210004CE5E07012904CE7E0700C904CE6E0700A
-:1012200006904CE8E06004F1B380BA5135120FB477
-:1012300080B380B122E4FF904E91F0FEFDEF900666
-:101240000C936049EF93FD131313541FFEED5407E5
-:10125000FD7401A805088002C333D8FCFDEE247894
-:10126000FBE434808B82F583E0FCEDF4FBEC5BF077
-:10127000EE2470F582E43480F583E04DF0EE2474C2
-:10128000F582E43480F583E05BF00F80B012257EB8
-:1012900090811CE0904E91F0904CD5E06402603655
-:1012A000904DD5E06020E4FF51E07F0151E07F02E6
-:1012B00051E07F0351E07F0451E07F0551E07F065C
-:1012C00051E07F07801A904E91E0FF9000A3F0EF6D
-:1012D000F49000A7F022E49000A3F09000A7F02281
-:1012E000904E95EFF091D99208904E95E0FFA208AC
-:1012F000B39207EFF47002617EEF5407FEEF131311
-:10130000135403FF30074324A3F582E43400F5832C
-:10131000C083C082E0FD7401A806088002C333D8F0
-:10132000FCF45DD082D083F074A72FF582E4340002
-:10133000F583C083C082E0FF7401A806088002C361
-:1013400033D8FC4FD082D083F02274A32FF582E4EF
-:101350003400F583C083C082E0FD7401A8060880D4
-:1013600002C333D8FCFC4DD082D083F074A72FF594
-:1013700082E43400F583E0FFECF4FEEF5EF02290AF
-:101380004CF4E0FF600864016004EFB40302A11EA6
-:10139000904CF4E0B4020B7403F0A3E0FFA3E0FD73
-:1013A0008033904CF4E0B40413E4904CF6F0904C8D
-:1013B000F47405F0A3E0FFA3E0FD8019904CF4E085
-:1013C000B40511E4A3F0A3F0904CF4F0A3E0FFA364
-:1013D000E0FD71D522904E87EFF0A3EDF07B017A0E
-:1013E0004879007D097C00120EB39048007401F02A
-:1013F000A3E0FF904E87E0FEEF4E904801F0904E44
-:1014000088E0904803F07B017A4879007D09904E8E
-:1014100061EBF0A3EAF0A3E9F0A3EDF01207FEEF11
-:101420006076904CEBE07070904CC5E0640370689F
-:10143000904E61E0FBA3E0FAA3E0F91203B6FF646B
-:1014400001702E9000011203CF701E900003120352
-:10145000CF70169000041203CF700E900005120397
-:10146000CF7006904DD6F08028904DD67401F08054
-:1014700020EFB4021C9000011203CF700E90000206
-:101480001203CF7006904DD6F08006904DD67401B1
-:10149000F0904E64E0FD91AC227B017A4D79EE78BC
-:1014A000007C4E7D017E007F12020390900BE7745A
-:1014B00006F0904E93EDF0E0FD900BE8F07E0B7F90
-:1014C000E9904E51EDF0120C1A7B017A0B79E790FE
-:1014D0004E93E02402FD02091E7B017A81791CAD46
-:1014E00007E4904E94F0FEEF5407F0EF13131354FB
-:1014F00003FEF5827583001203CFFD3395E0FC9067
-:101500004E94E0FF74017E00A807088005C333CE27
-:1015100033CED8F9FFEE5CFEEF5D4E24FF22904EF5
-:1015200075E4F0A3F0A3F0F1BF502612197C904EA1
-:1015300075EBF0A3EAF0A3E9F04A7007904CB6040B
-:10154000F0800F904E75E0FBA3E0FAA3E0F9120CD7
-:101550005D22904DD0E064017030904DD6E0702A4D
-:10156000904CC5E06403704E7B017A4879007D0998
-:10157000FC120EB37B017A4879007D09910E904DE3
-:10158000D07402F0E4904DE4F022904DD0E0B4022B
-:1015900025904DD6E0701F904DD0F07B017A4879B0
-:1015A000007D09FC120EB37B017A4879007D099118
-:1015B0000EE4904DE4F022904CEAE0600214F090CA
-:1015C0004CEFE0600214F0904CE5E0600F14F01274
-:1015D00007F8904CE5E0702FF1AC802B904CEEE0DA
-:1015E0007025904CE2E0601F14F0E030E109D20178
-:1015F0007F1D12078B8007C2017F1D12078B904C45
-:10160000E2E070037404F0904DD5E0702B904DD65D
-:10161000E064017023F0904DE5E0600C7B017A4DB1
-:1016200079E57D03910E8010904800E0600A7B010F
-:101630007A4879007D09910E904DDEE06003E01458
-:10164000F022904E3FEEF0A3EFF0904E43EBF0A36C
-:10165000EAF0A3E9F0904E41ECF0A3EDF0A3E0F93D
-:10166000A3E0FAA3E0904E2CC9F0A3EAF0A3E9F0BE
-:10167000A3ECF0A3EDF07B017A0B79861224B190F4
-:101680000B8374A0F0904E3FE0FFA3E0900B84CF5B
-:10169000F0A3EFF0904E42E02403FD904E41E03481
-:1016A00000FCEDFAECFFEAFEEF908098EEF0A3EF7D
-:1016B000F07A0B79837E0B7F837483FC740BFFECD1
-:1016C000FEEFA3EEF0A3EFF090809EE4F0A3F09085
-:1016D000809004F0908006E04404F090812CE0308B
-:1016E000E5F9227A0C794B904E7B7401F0A3740CCF
-:1016F000F0A3744BF0904BA0E0FEA3E0FF904B9E54
-:10170000E06E7003A3E06F60477E0C7F4B7D031299
-:101710002454904E7BE0FBA3E0FAA3E0F91203B659
-:10172000B4022B904E7CE475F00212040E904E7BB6
-:10173000E0FBA3E0FAA3E0F91203B6FF904E00E04D
-:10174000A3E0FAA3E0F5828A83120568800280FE96
-:10175000904BA5E0FEA3E0FF904C5EE06E7003A30B
-:10176000E06F6022904E06E0FBA3E0FAA3E0F94AA6
-:101770006037120564904BA5E0FFA3E0904C5ECF6C
-:10178000F0A3EFF080CA904C8DE0FFA3E06F6019EA
-:10179000904E09E0FBA3E0FAA3E0F94A600B1205C2
-:1017A00064904C8DE0A3F080DD2221E3C2017F1D17
-:1017B00002078B900B7F7401F0E4900B7EF0229077
-:1017C0004B9CE0FEA3E0FF904B9AE0B50607A3E038
-:1017D000B50702D322C322AD07AC06904DE4E06406
-:1017E00002600E7401F0904DE504F0EFA3F0EEA35B
-:1017F000F022AE05EF30E00A904DD3E004F0AE03E6
-:10180000800D904DD3E06007E014F0AF03AE07AF5A
-:101810000622AE07AC05E4904E8EF0ECF0904DDB66
-:10182000E0640160022176EC24C6B40C0040022181
-:101830007690183F75F003A4C58325F0C583730225
-:1018400018630218730218830218AF0218DA02191B
-:1018500006021916021926021936021946021956ED
-:10186000021966AF06AD047BD71217F2904E8EEFC9
-:10187000F02176AF06AD047BD81217F2904E8EEFB2
-:10188000F02176904CF57404F0A3742BF0EE30E068
-:1018900008904CF47401F08006904CF47404F0AF9E
-:1018A00006AD04E4FB1217F2904E8EEFF021769015
-:1018B0004CF57408F0A314F0EE30E008904CF4748A
-:1018C00001F08006904CF47404F0AF06AD04E4FB24
-:1018D0001217F2904E8EEFF02176904CF57408F0CE
-:1018E000A37450F0EE30E008904CF47401F08006E0
-:1018F000904CF47404F0AF06AD04E4FB1217F290C0
-:101900004E8EEFF08070AF06AD047BD51217F290CB
-:101910004E8EEFF08060AF06AD047BF41217F290AC
-:101920004E8EEFF08050AF06AD047BF21217F290AE
-:101930004E8EEFF08040AF06AD047BF51217F290AB
-:101940004E8EEFF08030AF06AD047BF81217F290A8
-:101950004E8EEFF08020AF06AD047BF61217F290AA
-:101960004E8EEFF08010AF06AE04AD067BF7121777
-:10197000F2904E8EEFF0904E8EE0FF22E4904E12E9
-:10198000F0A3F0A3F0A3F0A3F0A3F0A3F0A3F0A3BF
-:10199000F0A3F0A3F0A3F0A3F0A3F0B1737A4D7914
-:1019A000A8904E3B7401F0A3744DF0A374A8F0A36B
-:1019B0007414F07B017A4D79BC71B6EF60167B012F
-:1019C0007A4D79BC7D147186EF7009904CCEE0445D
-:1019D00002F0800C904CCEE054FDF0E4904CD0F03E
-:1019E000E4904E12F0904E12E0FF90060C93602FA0
-:1019F00074BC2FF582E4344DF583E0904E14F0E092
-:101A0000FD6014904E18E004F0A3E0FEED4EF0AF40
-:101A1000057178A3E02FF0904E12E004F080C6909C
-:101A20004E1AE0904E1FF0904E18E0904E1EF0902F
-:101A30004E19E0FF7178904E1DEFF0904E1FE0FFC1
-:101A4000D39402401D904E1DE0FEA3E0FDD39E40C6
-:101A500004AE058000EFD39E4008904E1C7401F048
-:101A60008005E4904E1CF0E4904E12F0904E12E08F
-:101A7000FF90060C937002614C74932FF582E4344E
-:101A80004DF583E0FE74BC2FF582E4344DF583E020
-:101A90006E904E14F0904E12E0FF24BCF582E434B8
-:101AA0004DF583E0904E17F0904E14E070046144C1
-:101AB0006144904E1CE060077B007A00790022743C
-:101AC000BC2FF582E4344DF583E0FE74932FF5824C
-:101AD000E4344DF583EEF0E4904E13F0904E13E0B5
-:101AE000FFC394085058A3E030E03B904E12E0FE54
-:101AF00033333354F8FEEF4E904E16F0A3E0FF90D0
-:101B00004E16E090062193FD1112904E1BEFF090BF
-:101B10004E17E030E009904E1BE0FF9100800790E7
-:101B20004E1BE0FF9190904E14E0FFC313F0904ED7
-:101B300017E0FFC313F0904E13E004F0809E904E28
-:101B4000157401F0904E12E004F0416C904DE4E009
-:101B5000B4030A904DD8E0B401037402F0904E151E
-:101B6000E07007904DD8E0B402077B017A4E7931DE
-:101B7000227B007A00790022E4FEEF6006145FFF0A
-:101B80000E80F7AF0622904E78EBF0A3EAF0A3E9BF
-:101B9000F0E4FFEFC39D501B904E78E0FBA3E0FA0A
-:101BA000A3E0F98F827583001203CF60037F0022C8
-:101BB0000F80E07F0122904E38EBF0A3EAF0A3E91A
-:101BC000F0E4FF904E3EE0FEEFC39E5030904E3B5F
-:101BD000E0FBA3E0FAA3E0F98F827583001203CF44
-:101BE000FE904E38E0FBA3E0FAA3E0F98F82758304
-:101BF000001203CF6E60037F00220F80C67F012298
-:101C0000E4FEEFB4E708904E31E04480F022EFB4F8
-:101C1000E608904E31E04440F022EFB4E508904EE3
-:101C200031E04420F022EFB4E408904E31E044105B
-:101C3000F022EFB4E308904E31E04408F022EFB414
-:101C4000E208904E31E04404F022EFB4E108904EF7
-:101C500031E04402F022EFB4E008904E31E044015C
-:101C6000F022E4FE74322EF582E4344EF583E0FD7A
-:101C70006F601CED7014904DE3E06F601274322EB3
-:101C8000F582E4344EF583EFF0220EEEB406D52251
-:101C9000E4FEFDEF54F064F06007EF54D0FCBCD0DC
-:101CA0000C904DE4E0B4020B7403F08006904DD824
-:101CB0007401F0EFB4E708904E31E0547FF022EF6A
-:101CC000B4E608904E31E054BFF022EFB4E508903E
-:101CD0004E31E054DFF022EFB4E408904E31E0548E
-:101CE000EFF022EFB4E308904E31E054F7F022EF2A
-:101CF000B4E208904E31E054FBF022EFB4E10890DA
-:101D00004E31E054FDF022EFB4E008904E31E05443
-:101D1000FEF022E4FEED702174322EF582E4344EA2
-:101D2000F583E06F7047EEB4050B2432F582E4349E
-:101D30004EF583E4F07D01803474322EF582E43474
-:101D40004EF583E0FC74312EF582E4344EF583ECDD
-:101D5000F074322EF582E4344EF583E06014EEB474
-:101D6000050B2432F582E4344EF583E4F00EEEB434
-:101D700006A322E4FF904E69F0FEFDA3F0A3F0A3BA
-:101D8000F0EF90060C93607CEF93FD131313541F38
-:101D9000FEED5407FD7401A805088002C333D8FC8A
-:101DA000FDEE2478FBE434808B82F583E0FCEDF4D7
-:101DB000FBEC5BF0EE2470F582E43480F583E04DBB
-:101DC000F0EE2474F582E43480F583E05BF09081DA
-:101DD0001CE0F4FC74BC2FF582E4344DF583ECF088
-:101DE000EE2478FBE434808B82F583E04DF0EE2422
-:101DF00070FBE434808B82F583E0FCEDF4FBEC5B5C
-:101E0000F00FA181E4FFEF90060C93607CEF93FD4F
-:101E1000131313541FFEED5407FD7401A805088029
-:101E200002C333D8FCFDEE2478FBE434808B82F5CA
-:101E300083E0FCEDF4FBEC5BF0EE2470F582E4341F
-:101E400080F583E04DF0EE2474F582E43480F58370
-:101E5000E05BF090811CE0F4FC74A82FF582E43480
-:101E60004DF583ECF0EE2478FBE434808B82F5832F
-:101E7000E04DF0EE2470FBE434808B82F583E0FCCF
-:101E8000EDF4FBEC5BF00FC106E4FFEF90060C9362
-:101E9000604074BC2FF582E4344DF583E0FE74A8F5
-:101EA0002FF582E4344DF583E06E602374BC2FF58A
-:101EB00082E4344DF583C083C082E0FE74A82FF520
-:101EC00082E4344DF583E0FDEE5DD082D083F00FE7
-:101ED00080B922904E65EBF0A3EAF0A3E9F0E4A309
-:101EE000F0F0904E68E0FFC39406400302214E904C
-:101EF0004E65E0FBA3E0FAA3E02401F9E43AFA7EA0
-:101F000000E92FF9EE3AFA1203B6FF54F064F060DC
-:101F10000AEF54D064D060030221451203B6FBB42B
-:101F2000F10A7F837E011217D702211AEBB4F20A5D
-:101F30007FCD7E001217D702211A904E65E0FBA3D9
-:101F4000E0FAA3E02401F9E43AFAA3E07E0029F9DB
-:101F5000EE3AFA1203B6FBB4F3087FB71217D702B2
-:101F6000211AEBB4F40A7FB67E001217D702211AA9
-:101F7000904E65E0FBA3E0FAA3E02401F9E43AFA0D
-:101F8000A3E07E0029F9EE3AFA1203B6FBB4F50895
-:101F90007FB51217D702211AEBB4F60A7FEA7E004A
-:101FA0001217D702211A904E65E0FBA3E0FAA3E0D6
-:101FB0002401F9E43AFAA3E07E0029F9EE3AFA1294
-:101FC00003B6FBB4F7087FE91217D702211AEBB466
-:101FD000F80A7FE27E001217D702211A904E65E0C0
-:101FE000FBA3E0FAA3E02401F9E43AFAA3E07E00BF
-:101FF00029F9EE3AFA1203B6FBB4F9087F940E12EF
-:1020000017D7211AEBB4FA097F8A7E011217D7215C
-:102010001A904E65E0FBA3E0FAA3E02401F9E43A4C
-:10202000FAA3E07E0029F9EE3AFA1203B6FBB4FBFC
-:10203000087F920E1217D7211AEBB4D0097F2A7E9F
-:10204000021217D7211A904E65E0FBA3E0FAA3E035
-:102050002401F9E43AFAA3E07E0029F9EE3AFA12F3
-:1020600003B6FBB4D1097F257E021217D7211AEBE4
-:10207000B4D3097F267E021217D7211A904E65E04D
-:10208000FBA3E0FAA3E02401F9E43AFAA3E07E001E
-:1020900029F9EE3AFA1203B6FBB4D2097F247E0284
-:1020A0001217D78075EBB4D4097F277E021217D799
-:1020B0008068904E65E0FBA3E0FAA3E02401F9E418
-:1020C0003AFAA3E07E0029F9EE3AFA1203B6FBB41D
-:1020D000D5097F217E021217D7803FEBB4D6097F46
-:1020E000237E021217D78032904E65E0FBA3E0FA00
-:1020F000A3E02401F9E43AFAA3E07E0029F9EE3ADC
-:10210000FA1203B6FBB4D7077F701217D7800BEB18
-:10211000B4D8077F6F7E001217D7904DE4E0B40269
-:1021200024904E65E0FBA3E0FAA3E02401F9E43A31
-:10213000FAA3E07E0029F9EE3AFA1203B6904DE3D5
-:10214000F0E41203FC904E68E004F0021EE222125A
-:102150000EDF316C904CEB7401F0904CE5741EF086
-:10216000E4904CF0F0904D0074FFF022904C90748D
-:1021700037F0904CD37405F0E4A3F0FFEF25E02492
-:10218000D6F582E4344CF5837479F0A37490F00FA3
-:10219000EFB404E8904C8FE064026002413B904C45
-:1021A00091E0FEA3E0FFC3904C94E09FFD904C9320
-:1021B000E09EFCE41202067BC37AF57988783F1230
-:1021C00000FBC004C005C006C007904C91E0FCA312
-:1021D000E0FDE4120206D003D002D001D0001200CC
-:1021E0000A12023F904CDEEEF0A3EFF0904C91E02B
-:1021F000FEA3E0FFC3904C94E09FFD904C93E09EC3
-:10220000FCE41202067BAE7A477981783F1200FB2C
-:10221000C004C005C006C007904C91E0FCA3E0FDDF
-:10222000E4120206D003D002D001D00012000A123C
-:10223000023F904CE0EEF0A3EFF022904C8FE06470
-:1022400001700241E1904C91E0FEA3E0FFC3904C8D
-:1022500094E09FFD904C93E09EFCE41202067BC349
-:102260007AF579A8783E1200FBC004C005C006C00C
-:1022700007904C91E0FCA3E0FDE4120206D003D0ED
-:1022800002D001D00012000A12023F904CDEEEF0A4
-:10229000A3EFF0904C91E0FEA3E0FFC3904C94E0DC
-:1022A0009FFD904C93E09EFCE41202067B5C7A8FCB
-:1022B0007942783E1200FBC004C005C006C00790FA
-:1022C0004C91E0FCA3E0FDE4120206D003D002D062
-:1022D00001D00012000A12023F904CE0EEF0A3EF92
-:1022E000F0229080107401F080FE2280F5904E89DB
-:1022F000EDF09000011203CF904E8AF022904E58DC
-:1023000012053300000000904C95E0FEA3E0FF9022
-:102310004CD4E0FD04F0ED25E024D6F582E4344C05
-:10232000F583EEF0A3EFF0904CD4E0C394044002A8
-:10233000E4F0E4904E57F0904E58E0F8A3E0F9A393
-:10234000E0FAA3E0FB904E57E025E024D6F582E4C6
-:10235000344CF583E0FEA3E0FFE4FCFDEB2FFFEA45
-:102360003EFEED39FDEC38FC904E58120527904E9C
-:1023700057E004F0E0B404BF904E58E0FCA3E0FD49
-:10238000A3E0FEA3E0FFE47B04FAF9F812047690E0
-:102390004E58120527904CE0E0FEA3E0FFC3904C9E
-:1023A000D7E09F904CD6E09E5007904CD57402F039
-:1023B00022904CDEE0FEA3E0FFE4FCFD904E58E0EE
-:1023C000F8A3E0F9A3E0FAA3E0FBC3120516500D51
-:1023D000904CD57401F0904D3F7412F022E4904C73
-:1023E000D5F0904D3F745DF022904CD3E0600A141C
-:1023F000F0E070057405F051FD22904E6DEEF0A3F3
-:10240000EFF0904E6FECF0A3EDF0904E6FE0FEA376
-:10241000E0FFD3904E6EE09F904E6DE09E40169090
-:102420004E6FE0FEA3E0FF904E6EE09FFF904E6D7A
-:10243000E09EFE801E904E6DE0FEA3E0FFC3904E36
-:1024400070E09FFF904E6FE09EFEAD03C3EB9FFFD9
-:10245000E49EFE22904E8BEEF0A3EFF0A905904B88
-:102460009EE0FEA3E0FFAD0119ED602F0FEFAC067B
-:1024700070010E14F5828C83E0FD904E8BE475F0B4
-:102480000112042485F082F583EDF0AD07AC06BCA3
-:102490004BD4BD9AD17E4B7F3680CB904B9EEEF0D5
-:1024A000A3EFF022900446E0FF229082807401F0B6
-:1024B00022904E29EBF0A3EAF0A3E9F0904E2F749E
-:1024C000FFF5F012042445F0602A904E2CE0FBA3A7
-:1024D000E475F001120424A9F0FA1203B6FF904E3D
-:1024E00029E0FBA3E475F001120424A9F0FAEF122D
-:1024F00003FC80C822904E81EBF0A3EAF0A3E9F040
-:10250000ED1DAE0470011C4E6017904E81E0FBA3E0
-:10251000E475F001120424A9F0FA74FF1203FC80A0
-:10252000DF22EFF4603AEF5407FEEF131313540366
-:10253000FF24A3F582E43400F583C083C082E0FD6C
-:102540007401A806088002C333D8FCF4FC5DD08275
-:10255000D083F074A72FF582E43400F583E05CF0BB
-:1025600022904E96EFF07B017A8079741214DF92FC
-:1025700009904E96E0FFA209B3920102078BE4FF97
-:10258000EFFD7C002478FBEC34808B82F583E0FE49
-:10259000ED2470FDEC34808D82F583E04EF4FEEF87
-:1025A000247CFDEC34808D82F583EEF00FEFB404D3
-:0225B000CF2238
+:1006D0004DE1E064026002E183904CE9E06002E1F8
+:1006E0007D904CD5E0B40204F1F1802E904CD5E021
+:1006F000B40114904CF7E07021904CE27404F09037
+:100700004CF77401F08013904CF7E0B4010CE4F066
+:10071000904CE2F0C2017F1EF184D1C2EF60529092
+:100720004DD9E0FF904CB7E06F6058E030E00E909C
+:100730004CE6740CF0D2017FFFF184800BC2017F84
+:10074000FFF184E4904CE6F0904CB7E030E10E907D
+:100750004CE7740CF0D2017FFFF184800BC2017F63
+:10076000FFF184E4904CE7F0904CB7E0904DD9F065
+:1007700022C2017FFFF184C2017FFF8007C2017F97
+:10078000FFF18422EFF4600D7B017A807974A2017D
+:1007900092001215CF22904DE1E064027052904C0D
+:1007A000EEE060057F1E1217C3D1C2EF6042904C8D
+:1007B000E6E0601614F0D2017FFFF184904CE6E091
+:1007C000700EC2017FFFF1848006C2017FFFF184B9
+:1007D000904CE7E0601414F0D2017FFFF184904C5C
+:1007E000E7E0700CC2017FFF809AC2017FFFF184B5
+:1007F00022E4904D38F07F19904E71EFF078727CC2
+:100800004E7D017BFF7A0679BF7E007F0312039045
+:10081000904E71E0904E74F07B017A4E79727D03B8
+:10082000904E46EBF0A3EAF0A3E9F0A3EDF0904B75
+:100830009CE0FFA3E0904E4ACFF0A3EFF0904B9ADC
+:10084000E0FEA3E0FF904B9CE0FCA3E0FD7B641284
+:100850002129904E49E0FEEFC39E40E1904E49E0D1
+:10086000FF14F0EF603F904E46E0FBA3E475F0010B
+:10087000120424A9F0FA1203B6FF904E4AE475F070
+:100880000112042485F082F583EFF0904E4AE0FED9
+:10089000A3E0FFBE4BC6BF36C3904E4A744AF0A3D6
+:1008A00074A0F080B7904E4AE0FFA3E0904B9CCF3D
+:1008B000F0A3EFF022904E93EDF0E0FD900BE8F006
+:1008C0007E0B7FE9904E51EDF011DA7B017A0B79C6
+:1008D000E7904E93E02402FD0120904E4CEEF0A3F1
+:1008E000EFF0A3EBF0A3EAF0A3E9F0904E51E0FFA4
+:1008F00014F0EF6027904E4EE0FBA3E475F0011278
+:100900000424A9F0FA1203B6FF904E4CE475F001EE
+:1009100012042485F082F583EFF080CF22904E52AE
+:10092000EBF0A3EAF0A3E9F0E4A3F0A3F0904DDB31
+:10093000F0904E56F0904E56E0FFC39405502C9028
+:100940004E52E0FBA3E0FAA3E02401F9E43AFA7E78
+:1009500000E92FF9EE3AFA1203B6B4AF06904DDB78
+:100960007401F0904E56E004F080CA904DDBE090A8
+:100970004DE0F0904E52E0A3E0FAA3E04A7002612D
+:1009800055904DDE740AF0E4904CE3F0A3F07B0147
+:100990007A4879007D09FC91CD7B017A4D79E57D1E
+:1009A000097C0091CD904E52E0FBA3E0FAA3E0F960
+:1009B0009000011203CFFFB42E0A9000021203CF61
+:1009C0006429600FEF642970369000021203CF642F
+:1009D0002E702C904BEB7420F0A37415F0A37410C0
+:1009E000F0A37405F0904CC5E064016009904CCE12
+:1009F000E04410F08010904CCEE054EFF08007906F
+:100A00004CCEE054EFF0904CB67401F0904CF4E012
+:100A1000FF640170026155EF640470026155EF6478
+:100A20000270026155904CC5E064037045904E56CB
+:100A3000F0904E56E0FFC394055037904E52E0FBC5
+:100A4000A3E0FAA3E02401F9E43AFA7E00E92FF9E1
+:100A5000EE3AFA1203B6FF64396009EF645360049A
+:100A6000EFB44706904DD07401F0904E56E004F07C
+:100A700080BF904E52E0FBA3E0FAA3E0F9715690DC
+:100A80004DE4E0B401117402F0904DE5F07B017A81
+:100A90004D79E57D03A183904DE4E0B40316E4F0C5
+:100AA000904DE3F0904DE57402F07B017A4D79E5CD
+:100AB0007D03A1839048007401F0904E52E0FBA3A7
+:100AC000E0FAA3E0F91203B6904801F0E4A3F09035
+:100AD0004DD8F09000011203CFB4AF1E7E487F03C3
+:100AE000904E52E0FBA3E0FAA3E02402F9E43AFAC4
+:100AF000904E517405F011DA801C7E487F03904EB1
+:100B000052E0FBA3E0FAA3E02401F9E43AFA904EA4
+:100B1000517406F011DA904E567403F0904E56E080
+:100B2000FFC39409502574002FF582E43448F583FF
+:100B3000E0B4AF0F904E56E02400F582E43448F55F
+:100B400083E4F0904E56E004F080D17B017A48793E
+:100B5000007D09B18322904E65EBF0A3EAF0A3E992
+:100B6000F0E4A3F0F0904E68E0FFC39406400281E9
+:100B7000B1904E65E0FBA3E0FAA3E02401F9E43A6A
+:100B8000FA7E00E92FF9EE3AFA1203B6FF54F06448
+:100B9000F06009EF54D064D0600281A91203B6FB63
+:100BA000B4F2087FCD7E0091B2817EEBB4F4087F71
+:100BB000B67E0091B2817E904E65E0FBA3E0FAA381
+:100BC000E02401F9E43AFAA3E07E0029F9EE3AFACA
+:100BD0001203B6FBB4F5067FB591B2817EEBB4F695
+:100BE000087FEA7E0091B2817E904E65E0FBA3E033
+:100BF000FAA3E02401F9E43AFAA3E07E0029F9EE31
+:100C00003AFA1203B6FBB4F7067FE991B2806FEBB4
+:100C1000B4F8087FE27E0091B28063904E65E0FBFD
+:100C2000A3E0FAA3E02401F9E43AFAA3E07E002964
+:100C3000F9EE3AFA1203B6FBB4FA077F8A0E91B2C4
+:100C4000803CEBB4D5087F217E0291B28030904E7B
+:100C500065E0FBA3E0FAA3E02401F9E43AFAA3E09B
+:100C60007E0029F9EE3AFA1203B6FBB4D7067F707C
+:100C700091B2800AEBB4D8067F6F7E0091B2904D9E
+:100C8000E4E0B40224904E65E0FBA3E0FAA3E02484
+:100C900001F9E43AFAA3E07E0029F9EE3AFA1203E8
+:100CA000B6904DE3F0E41203FC904E68E004F0616E
+:100CB0006522AD07AC06904DE4E06402600E74015D
+:100CC000F0904DE504F0EFA3F0EEA3F022904E7EFD
+:100CD000EBF0A3EAF0A3E9F0ED1DAE0470011C4EA9
+:100CE0006016904E7EE0FBA3E475F001120424A987
+:100CF000F0FAE41203FC80E0227B017A4C79BF7D9C
+:100D0000437C0091CD7B017A4D79937D147C0091D9
+:100D1000CD7B017A4D79A87D147C0091CD7B017A41
+:100D20004D79BC7D147C0091CD7B017A4879007DA2
+:100D3000097C0091CD7B017A4D79E57D097C00919C
+:100D4000CDE4904DDEF0904DE2F0904DE1F0904D0D
+:100D5000D6F0904DD0F0904DDCF0904DE4F0904DF9
+:100D6000D5F0904DD8F0904DDBF0904DE0F0904DE7
+:100D7000D3F0904DDFF0904DE3F0904DD9F0904DD1
+:100D800038F022904E61EBF0A3EAF0A3E9F0A3ED76
+:100D9000F0F178EF6076904CEBE07070904CC5E02D
+:100DA00064037068904E61E0FBA3E0FAA3E0F912DF
+:100DB00003B6FF6401702E9000011203CF701E90E5
+:100DC00000031203CF70169000041203CF700E9030
+:100DD00000051203CF7006904DD6F08028904DD6B6
+:100DE0007401F08020EFB4021C9000011203CF7058
+:100DF0000E9000021203CF7006904DD6F080069040
+:100E00004DD67401F0904E64E0FDF15322904E8770
+:100E1000EFF0A3EDF07B017A4879007D097C009129
+:100E2000CD9048007401F0A3E0FF904E87E0FEEF04
+:100E30004E904801F0904E88E0904803F07B017A94
+:100E40004879007D09A183904CF4E0FF60086403B9
+:100E50006004EFB40502E120904CF4E0B4010EA36D
+:100E6000E0FFE4FDD10D904CF47402F022904CF4BC
+:100E7000E0B4020B7403F0A3E0FFA3E0FD808E90CA
+:100E80004CF4E0B4041AE4904CF6F0904CF5E0FF1A
+:100E9000E4FDD10DE4904CF5F0904CF47405F02293
+:100EA000904CF4E0B40615E4904CF6F0904CF5F05C
+:100EB000A3E0FDE4FFD10DE4904CF4F022904DD07E
+:100EC000E06401702F904DD6E07029904CC5E0642D
+:100ED00003704C7B017A4879007D09FC91CD7B0140
+:100EE0007A4879007D09B183904DD07402F0E49086
+:100EF0004DE4F022904DD0E0B40224904DD6E07045
+:100F00001E904DD0F07B017A4879007D09FC91CD8F
+:100F10007B017A4879007D09B183E4904DE4F022A9
+:100F2000904E75E4F0A3F0A3F0F1AD50251218CF68
+:100F3000904E75EBF0A3EAF0A3E9F04A7007904CED
+:100F4000B604F0C1BD904E75E0FBA3E0FAA3E0F952
+:100F5000311D22900BE77406F001B591F91220655E
+:100F6000904CEB7401F0904CE5741EF0E4904CF062
+:100F7000F0904D0174FFF022E4FF904CEEE0600130
+:100F800022904CC5E06403601C904CEFE0701D742F
+:100F90000AF0A3E07016904DE1E0B4020F7F09F172
+:100FA000EB7F018007E4904CEBF07F0122904B9C9B
+:100FB000E0FEA3E0FF904B9AE0B50607A3E0B5077B
+:100FC00002D322C322E4904CF0F022904CC5E0FF03
+:100FD00064036004EFB402087F221207F87F012245
+:100FE0007F0022904DE17402F07F08904E8DEFF06B
+:100FF00024F7600A14606424026003021096E490EF
+:101000004CF0F0120FCBEF6009904E8DE0904CED5C
+:10101000F0227B017A4C79007D047C007FF27E3FD8
+:10102000517E7F0A119C904C00E0B4FF1BA3E0B4FA
+:10103000FF16A3E0B4FF11A3E0B4FF0C904C0074C2
+:101040000FF0A3F0A3F0A3F07F211207F8904CC596
+:101050007402F0E4A3F0904CEDF022E4904CF0F038
+:10106000120FCBEF6009904E8DE0904CEDF0229086
+:101070004CC5E0640160197F231207F8904CC574D9
+:1010800001F0E4A3F0904CEE74F0F0E4904CE9F041
+:10109000E4904CEDF022E4904CEDF022EFD394007C
+:1010A0004011E4FDFC0DBD00010CBC04F8BDA6F52B
+:1010B0001F80E922904CBFE0603B7FC8119CC201B9
+:1010C0007FFF1207847B017A4C79007D047C007FCE
+:1010D000F27E3F11F67B017A4C79C17D017C007F65
+:1010E000F87E3F11F6D2017FFF1207847F0A119C20
+:1010F000E4904CBFF022904E20EEF0A3EFF0A3EC72
+:10110000F0A3EDF0A3EBF0A3EAF0A3E9F0904E22F8
+:10111000E07002A3E0700221A2904E20E0FEA3E066
+:10112000FF440F2401FDE43EFCC3ED9FFFEC9EFE57
+:10113000904E27F0A3EFF0904E22E0FCA3E0FDD309
+:101140009FEC9E400A904E27E0FEA3E0FF8004AE95
+:1011500004AF05904E27EEF0FCA3EFF0FDC3904ED8
+:1011600023E09DF0904E22E09CF0904E20E0FEA304
+:10117000E0FF904E24E0FBA3E0FAA3E0F9D14D7F1D
+:101180000A119C904E27E0FEA3E0FF904E25EE8FC3
+:10119000F012040E904E21E02FF0904E20E03EF031
+:1011A000210D22904E92EFF024D060481460471435
+:1011B0007002414E14600A24F7603B240D60024126
+:1011C0007D712E120F5B7B017A4C79007D047C00CF
+:1011D0007FF27E3F517E7F0A119C904CC1E0F97AEC
+:1011E000007B007D017C007FF87E3F517E7F0A11ED
+:1011F0009C020FE36162904CC57403F0E4A3F0120B
+:101200000FC5E4904CEEF0904CEBF0904CC074FEA7
+:10121000F0904CC3F0904E92E064317024904CE515
+:10122000741EF0904BEBE0B40F10A3E0B40F0BA3CF
+:10123000E0B40F06A3E0640F6043904CBF7401F06C
+:1012400022904CE5E07036C2017F1E020784E490D4
+:101250004CC5F0A3F0904CE3F0A3F0904CEB04F0FD
+:10126000904CEDE0600B120FC5904CEDE0FF020FCB
+:10127000EB904CECE0B40105E4F01207F122904E43
+:101280005CECF0A3EDF0A3EBF0A3EAF0A3E9F0909F
+:1012900080987404F0A3E4F0900CAF74A0F0A3EE77
+:1012A000F0A3EFF0900CB274A1F07A0C79AF7E0C41
+:1012B0007FAF74AFFC740CFFECFEEF90809AEEF001
+:1012C000A3EFF0904E5CE0FCA3E0FAECFFEAFEEF47
+:1012D00090809EEEF0A3EFF07A0B79837E0B7F83F4
+:1012E0007483FC740BFFECFEEF90809CEEF0A3EF98
+:1012F000F09080907402F090809CA3E020E707902B
+:101300008090E04401F0908006E04404F0D1E69043
+:101310004E5EE0A3E0FAA3E0AE02FF7B017A0B7918
+:1013200083904E5CE0A3E0904E51F00208DA7162C7
+:10133000C2067FFF7146C2067FFF7146C2067F1E4E
+:101340007146C2067F1EAC07ECF46015AF04D204F0
+:10135000B1ADAF04A2069201120784AF04C202B17C
+:101360007E22908080E4F0A3F0A3F0D130E4904E90
+:1013700090F0F0904E90E090060C93FF600CC20548
+:10138000B18F904E90E004F080E922B126D1EE12A8
+:101390000E4711B41206CF900B7EE014600C24FEB1
+:1013A00070EB71CF7130B11980FE904CEAE0701291
+:1013B000904CECE0700C904CE5E07006904CF8E03E
+:1013C0006004F1B780C771CFB11980C180BF22E43A
+:1013D000FF904E91F0FEFDEF90060C936049EF9365
+:1013E000FD131313541FFEED5407FD7401A80508E7
+:1013F0008002C333D8FCFDEE2478FBE434808B827A
+:10140000F583E0FCEDF4FBEC5BF0EE2470F582E498
+:101410003480F583E04DF0EE2474F582E43480F5F9
+:1014200083E05BF00F80B012229090811CE0904E20
+:1014300091F0904CD5E064026036904DD5E060208C
+:10144000E4FF917A7F01917A7F02917A7F03917A0A
+:101450007F04917A7F05917A7F06917A7F07801ABF
+:10146000904E91E0FF9000A3F0EFF49000A7F022DF
+:10147000E49000A3F09000A7F022904E95EFF0B119
+:10148000399208904E95E0FFA208B39207EFF470EE
+:1014900002A118EF5407FEEF1313135403FF300794
+:1014A0004324A3F582E43400F583C083C082E0FDC9
+:1014B0007401A806088002C333D8FCF45DD082D042
+:1014C00083F074A72FF582E43400F583C083C082D3
+:1014D000E0FF7401A806088002C333D8FC4FD08215
+:1014E000D083F02274A32FF582E43400F583C08307
+:1014F000C082E0FD7401A806088002C333D8FCFC5A
+:101500004DD082D083F074A72FF582E43400F583A8
+:10151000E0FFECF4FEEF5EF022E4900B7FF0900B26
+:101520007EF07F01019C7B017A4D79EE78007C4E44
+:101530007D017E007F120203907B017A81791CADD0
+:1015400007E4904E94F0FEEF5407F0EF131313549A
+:1015500003FEF5827583001203CFFD3395E0FC9006
+:101560004E94E0FF74017E00A807088005C333CEC7
+:1015700033CED8F9FFEE5CFEEF5D4E24FF22EFF490
+:10158000600C7B017A807978A2029200B1CF22AC04
+:1015900007ECF46017AF04A2059203B1BEAF04A23A
+:1015A00005B39202B17EAF04C204B1AD22EFF46084
+:1015B0000C7B017A807970A2049200B1CF22EFF403
+:1015C000600C7B017A80797CA2039200B1CF2290DB
+:1015D0004E84EBF0A3EAF0A3E9F0E4FEFDEF54073C
+:1015E000FEEF1313135403FD300022904E84E0FBF2
+:1015F000A3E0FAA3E02DF9E43AFA1203B6FF74016E
+:10160000A806088002C333D8FC4F0203FC904E8426
+:10161000E0FBA3E0FAA3E02DF9E43AFA1203B6FFE7
+:101620007401A806088002C333D8FCF45F0203FCEF
+:10163000E4904E8FF0F0904E8FE0FFC39408500C72
+:10164000C205B18F904E8FE004F080EA22904E3FA9
+:10165000EEF0A3EFF0904E43EBF0A3EAF0A3E9F035
+:10166000904E41ECF0A3EDF0A3E0F9A3E0FAA3E083
+:10167000904E2CC9F0A3EAF0A3E9F0A3ECF0A3ED9F
+:10168000F07B017A0B79861221E0900B8374A0F035
+:10169000904E3FE0FFA3E0900B84CFF0A3EFF090DB
+:1016A0004E42E02403FD904E41E03400FCEDFAECA4
+:1016B000FFEAFEEF908098EEF0A3EFF07A0B7983CB
+:1016C0007E0B7F837483FC740BFFECFEEFA3EEF0C4
+:1016D000A3EFF090809EE4F0A3F090809004F0904F
+:1016E0008006E04404F090812CE030E5F9227A0C89
+:1016F000794B904E7B7401F0A3740CF0A3744BF003
+:10170000904BA0E0FEA3E0FF904B9EE06E7003A321
+:10171000E06F60477E0C7F4B7D03122183904E7BF0
+:10172000E0FBA3E0FAA3E0F91203B6B4022B904E5B
+:101730007CE475F00212040E904E7BE0FBA3E0FA0D
+:10174000A3E0F91203B6FF904E00E0A3E0FAA3E095
+:10175000F5828A83120568800280FE904BA5E0FE28
+:10176000A3E0FF904C5EE06E7003A3E06F602290F8
+:101770004E06E0FBA3E0FAA3E0F94A6037120564E5
+:10178000904BA5E0FFA3E0904C5ECFF0A3EFF0807C
+:10179000CA904C8DE0FFA3E06F6019904E09E0FB0A
+:1017A000A3E0FAA3E0F94A600B120564904C8DE0C7
+:1017B000A3F080DD22618B900B7F7401F0E4900B2D
+:1017C0007EF022904E96EFF07B017A807974B13FE3
+:1017D0009209904E96E0FFA209B39201020784900D
+:1017E0004CF5EDF0A3EBF0EF30E012904CF4E0B4E8
+:1017F00003047402F022904CF47401F022904CF433
+:101800007404F022AE07E4904E8EF0EDF0904DDBC4
+:10181000E06401600201C9ED24C6B40C004002017D
+:10182000C990182F75F003A4C58325F0C5837302F2
+:10183000185302185B021863021873021883021807
+:101840009302189B0218A30218AB0218B30218BB2C
+:101850000218C3904E8E74D7F0806E904E8E74D85E
+:10186000F08066AF067B2B7D041217DFE4904E8E6E
+:10187000F08056AF067B077D081217DFE4904E8E8E
+:10188000F08046AF067B507D081217DFE4904E8E45
+:10189000F08036904E8E74D5F0802E904E8E74F47B
+:1018A000F08026904E8E74F2F0801E904E8E74F56D
+:1018B000F08016904E8E74F8F0800E904E8E74F676
+:1018C000F08006904E8E74F7F0904E8EE0FF22E48A
+:1018D000904E12F0A3F0A3F0A3F0A3F0A3F0A3F0B6
+:1018E000A3F0A3F0A3F0A3F0A3F0A3F0A3F0915210
+:1018F0007A4D79A8904E3B7401F0A3744DF0A37417
+:10190000A8F0A37414F07B017A4D79BC7109EF60E3
+:10191000167B017A4D79BC7D1451D9EF7009904C3A
+:10192000CEE04402F0800C904CCEE054FDF0E49008
+:101930004CD0F0E4904E12F0904E12E0FF90060C66
+:1019400093602F74BC2FF582E4344DF583E0904E04
+:1019500014F0E0FD6014904E18E004F0A3E0FEEDFA
+:101960004EF0AF0551CBA3E02FF0904E12E004F003
+:1019700080C6904E1AE0904E1FF0904E18E0904EA8
+:101980001EF0904E19E0FF51CB904E1DEFF0904E9F
+:101990001FE0FFD39402401D904E1DE0FEA3E0FD2A
+:1019A000D39E4004AE058000EFD39E4008904E1CAD
+:1019B0007401F08005E4904E1CF0E4904E12F0901B
+:1019C0004E12E0FF90060C937002419F74932FF526
+:1019D00082E4344DF583E0FE74BC2FF582E4344D8F
+:1019E000F583E06E904E14F0904E12E0FF24BCF5AB
+:1019F00082E4344DF583E0904E17F0904E14E07081
+:101A00000441974197904E1CE060077B007A007973
+:101A1000002274BC2FF582E4344DF583E0FE74930C
+:101A20002FF582E4344DF583EEF0E4904E13F09000
+:101A30004E13E0FFC394085058A3E030E03B904EB3
+:101A400012E0FE33333354F8FEEF4E904E16F0A3FF
+:101A5000E0FF904E16E090062193FD1104904E1B7E
+:101A6000EFF0904E17E030E009904E1BE0FF71530D
+:101A70008007904E1BE0FF71A9904E14E0FFC31346
+:101A8000F0904E17E0FFC313F0904E13E004F08087
+:101A90009E904E157401F0904E12E004F021BF901C
+:101AA0004DE4E0B4030A904DD8E0B401037402F0B1
+:101AB000904E15E07007904DD8E0B402077B017A94
+:101AC0004E7931227B007A00790022E4FEEF600635
+:101AD000145FFF0E80F7AF0622904E78EBF0A3EA7A
+:101AE000F0A3E9F0E4FFEFC39D501B904E78E0FBBC
+:101AF000A3E0FAA3E0F98F827583001203CF60039D
+:101B00007F00220F80E07F0122904E38EBF0A3EAA5
+:101B1000F0A3E9F0E4FF904E3EE0FEEFC39E5030AC
+:101B2000904E3BE0FBA3E0FAA3E0F98F82758300BF
+:101B30001203CFFE904E38E0FBA3E0FAA3E0F98F4A
+:101B4000827583001203CF6E60037F00220F80C670
+:101B50007F0122E4FEEFC394E04020EFD394E750EE
+:101B60001A904E31E0FEEF5407FF7401A807088079
+:101B700002C333D8FC4E904E31F022E4FE74322E74
+:101B8000F582E4344EF583E0FD6F601CED70149037
+:101B90004DE3E06F601274322EF582E4344EF5832B
+:101BA000EFF0220EEEB406D522E4FEFDEF54F06411
+:101BB000F06007EF54D0FCBCD00C904DE4E0B402D0
+:101BC0000B7403F08006904DD87401F0EFC394E0DD
+:101BD0004020EFD394E7501A904E31E0FEEF5407C7
+:101BE000FF74FEA807088002C333D8FC5E904E3114
+:101BF000F022E4FEED702174322EF582E4344EF5CD
+:101C000083E06F7047EEB4050B2432F582E4344E66
+:101C1000F583E4F07D01803474322EF582E4344E95
+:101C2000F583E0FC74312EF582E4344EF583ECF05C
+:101C300074322EF582E4344EF583E06014EEB40580
+:101C40000B2432F582E4344EF583E4F00EEEB40654
+:101C5000A322E4FF904E69F0FEFDA3F0A3F0A3F0F1
+:101C6000EF90060C93607CEF93FD131313541FFE4B
+:101C7000ED5407FD7401A805088002C333D8FCFDAC
+:101C8000EE2478FBE434808B82F583E0FCEDF4FBFA
+:101C9000EC5BF0EE2470F582E43480F583E04DF0E7
+:101CA000EE2474F582E43480F583E05BF090811CCF
+:101CB000E0F4FC74BC2FF582E4344DF583ECF0EED7
+:101CC0002478FBE434808B82F583E04DF0EE2470C1
+:101CD000FBE434808B82F583E0FCEDF4FBEC5BF0FD
+:101CE0000F8160E4FFEF90060C93607CEF93FD138F
+:101CF0001313541FFEED5407FD7401A8050880025C
+:101D0000C333D8FCFDEE2478FBE434808B82F5836A
+:101D1000E0FCEDF4FBEC5BF0EE2470F582E4348043
+:101D2000F583E04DF0EE2474F582E43480F583E031
+:101D30005BF090811CE0F4FC74A82FF582E4344D34
+:101D4000F583ECF0EE2478FBE434808B82F583E0BD
+:101D50004DF0EE2470FBE434808B82F583E0FCEDE3
+:101D6000F4FBEC5BF00F81E5E4FFEF90060C936071
+:101D70004074BC2FF582E4344DF583E0FE74A82F47
+:101D8000F582E4344DF583E06E602374BC2FF58258
+:101D9000E4344DF583C083C082E0FE74A82FF58241
+:101DA000E4344DF583E0FDEE5DD082D083F00F800A
+:101DB000B9229080107401F080FE2280F5904E8947
+:101DC000EDF09000011203CF904E8AF022904CC5A6
+:101DD000E0B40311904CE3E0640E7004A3E06410DF
+:101DE000702D0207F1904CC5E0B40114904CE3E073
+:101DF0007004A3E0642870177F221207F80207F12D
+:101E0000904CE3E07004A3E0641470031207F12225
+:101E1000120796904CE4E004F07006904CE3E00466
+:101E2000F0D14BB1CDD15C904CEEE0601DE4904C14
+:101E3000E3F0A3F0904CEEE014F0E0700D7F22127E
+:101E400007F87F0A12109C1207F122904CD3E06031
+:101E50000A14F0E070057405F0D1E322904CCEE056
+:101E600030E13E904CD0E0C394FA5003E004F0908F
+:101E70004CD0E064B4702F904DDCE004F0E0D394DB
+:101E8000025007E4904CD0F0801C904DDCE0B4038D
+:101E900015904DD57401F0E4904CD0F01207F1800C
+:101EA00005E4904DDCF0904CCEE030E430904CEA0C
+:101EB000740AF0904CD1E0C394FA5003E004F0901F
+:101EC0004CD1E0B4061C904CC3E0FF6003B4FE129A
+:101ED000120FCB7F0A12109C7F0A020FEBE4904C8A
+:101EE000D1F022904E5812053300000000904C951E
+:101EF000E0FEA3E0FF904CD4E0FD04F0ED25E024EB
+:101F0000D6F582E4344CF583EEF0A3EFF0904CD498
+:101F1000E0C394044002E4F0E4904E57F0904E5831
+:101F2000E0F8A3E0F9A3E0FAA3E0FB904E57E02528
+:101F3000E024D6F582E4344CF583E0FEA3E0FFE430
+:101F4000FCFDEB2FFFEA3EFEED39FDEC38FC904E38
+:101F500058120527904E57E004F0E0B404BF904EAD
+:101F600058E0FCA3E0FDA3E0FEA3E0FFE47B04FA5D
+:101F7000F9F8120476904E58120527904CE0E0FED6
+:101F8000A3E0FFC3904CD7E09F904CD6E09E500753
+:101F9000904CD57402F022904CDEE0FEA3E0FFE40A
+:101FA000FCFD904E58E0F8A3E0F9A3E0FAA3E0FBB3
+:101FB000C3120516500D904CD57401F0904D3F742E
+:101FC00012F022E4904CD5F0904D3F745DF02290D9
+:101FD0004CEAE0600214F0904CEFE0600214F090E4
+:101FE0004CE5E0601814F0D2017F1E120784904C7B
+:101FF000E5E07034C2017F1E120784802B904CEE06
+:10200000E07025904CE2E0601F14F0E030E109D26E
+:10201000017F1E1207848007C2017F1E1207849071
+:102020004CE2E070037404F0904DD5E0702D904DBB
+:10203000D6E064017025F0904DE5E0600D7B017AFB
+:102040004D79E57D03120D838011904800E0600B0F
+:102050007B017A4879007D09120D83904DDEE060A6
+:1020600003E014F022904CD37405F0E4A3F0904CFC
+:10207000907437F0E4FFEF25E024D6F582E4344C89
+:10208000F5837462F0A3F00FEFB404EA904C91E092
+:10209000FEA3E0FFC3904C94E09FFD904C93E09E24
+:1020A000FCE41202067BC37AF579A8783E1200FBA5
+:1020B000C004C005C006C007904C91E0FCA3E0FD41
+:1020C000E4120206D003D002D001D00012000A129E
+:1020D000023F904CDEEEF0A3EFF0904C91E0FEA3B7
+:1020E000E0FFC3904C94E09FFD904C93E09EFCE495
+:1020F0001202067B5C7A8F7942783E1200FBC004A4
+:10210000C005C006C007904C91E0FCA3E0FDE412BE
+:102110000206D003D002D001D00012000A12023F02
+:10212000904CE0EEF0A3EFF022904E6DEEF0A3EFB6
+:10213000F0904E6FECF0A3EDF0904E6FE0FEA3E058
+:10214000FFD3904E6EE09F904E6DE09E4016904EF5
+:102150006FE0FEA3E0FF904E6EE09FFF904E6DE0BB
+:102160009EFE801E904E6DE0FEA3E0FFC3904E7079
+:10217000E09FFF904E6FE09EFEAD03C3EB9FFFE438
+:102180009EFE22904E8BEEF0A3EFF0A905904B9EA1
+:10219000E0FEA3E0FFAD0119ED602F0FEFAC06707C
+:1021A000010E14F5828C83E0FD904E8BE475F001F6
+:1021B00012042485F082F583EDF0AD07AC06BC4B2C
+:1021C000D4BD9AD17E4B7F3680CB904B9EEEF0A350
+:1021D000EFF022900446E0FF229082807401F0220A
+:1021E000904E29EBF0A3EAF0A3E9F0904E2F74FF94
+:1021F000F5F012042445F0602A904E2CE0FBA3E495
+:1022000075F001120424A9F0FA1203B6FF904E29CA
+:10221000E0FBA3E475F001120424A9F0FAEF120325
+:10222000FC80C822904E81EBF0A3EAF0A3E9F0ED28
+:102230001DAE0470011C4E6017904E81E0FBA3E4BC
+:1022400075F001120424A9F0FA74FF1203FC80DF78
+:1022500022EFF4603AEF5407FEEF1313135403FF19
+:1022600024A3F582E43400F583C083C082E0FD74CA
+:1022700001A806088002C333D8FCF4FC5DD082D0EC
+:1022800083F074A72FF582E43400F583E05CF0223C
+:10229000E4FFEFFD7C002478FBEC34808B82F58337
+:1022A000E0FEED2470FDEC34808D82F583E04EF489
+:1022B000FEEF247CFDEC34808D82F583EEF00FEF91
+:0422C000B404CF2271
 :00000001FF
Index: c51/output/fwram.rom
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/output/fwram.rom	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/output/fwram.rom	(working copy)
@@ -1398,7 +1398,7 @@
 b1
 02
 17
-aa
+b5
 e4
 93
 a3
@@ -1528,23 +1528,23 @@
 4d
 ee
 ff
-0a
-96
+11
+a3
 00
 00
 00
 ff
-0f
-90
+1e
+10
 ff
-15
-b7
+1f
+cf
 00
 00
 00
 ff
-22
-ed
+1d
+bd
 00
 1a
 08
@@ -1557,11 +1557,11 @@
 18
 19
 17
-15
 14
 13
+12
 11
-16
+15
 1b
 1c
 00
@@ -1750,7 +1750,7 @@
 60
 02
 e1
-8a
+83
 90
 4c
 e9
@@ -1758,17 +1758,16 @@
 60
 02
 e1
-7e
+7d
 90
 4c
 d5
 e0
 b4
 02
-05
-12
-09
-f2
+04
+f1
+f1
 80
 2e
 90
@@ -1814,9 +1813,9 @@
 c2
 01
 7f
-1d
+1e
 f1
-8b
+84
 d1
 c2
 ef
@@ -1833,7 +1832,7 @@
 e0
 6f
 60
-5e
+58
 e0
 30
 e0
@@ -1844,20 +1843,20 @@
 74
 0c
 f0
-c2
+d2
 01
 7f
-10
+ff
 f1
-8b
+84
 80
 0b
-d2
+c2
 01
 7f
-10
+ff
 f1
-8b
+84
 e4
 90
 4c
@@ -1876,20 +1875,20 @@
 74
 0c
 f0
-c2
+d2
 01
 7f
-0f
+ff
 f1
-8b
+84
 80
 0b
-d2
+c2
 01
 7f
-0f
+ff
 f1
-8b
+84
 e4
 90
 4c
@@ -1904,30 +1903,24 @@
 d9
 f0
 22
-d2
+c2
 01
 7f
-10
+ff
 f1
-8b
-d2
+84
+c2
 01
 7f
-0f
+ff
 80
-0d
-d2
-01
-7f
-10
-f1
-8b
-d2
+07
+c2
 01
 7f
-0f
+ff
 f1
-8b
+84
 22
 ef
 f4
@@ -1944,8 +1937,8 @@
 92
 00
 12
-10
-73
+15
+cf
 22
 90
 4d
@@ -1962,10 +1955,10 @@
 60
 05
 7f
-1d
+1e
 12
-25
-61
+17
+c3
 d1
 c2
 ef
@@ -1979,32 +1972,32 @@
 16
 14
 f0
-c2
+d2
 01
 7f
-10
+ff
 f1
-8b
+84
 90
 4c
 e6
 e0
 70
 0e
-d2
+c2
 01
 7f
-10
+ff
 f1
-8b
+84
 80
 06
-d2
+c2
 01
 7f
-10
+ff
 f1
-8b
+84
 90
 4c
 e7
@@ -2013,325 +2006,78 @@
 14
 14
 f0
-c2
+d2
 01
 7f
-0f
+ff
 f1
-8b
+84
 90
 4c
 e7
 e0
 70
 0c
-d2
+c2
 01
 7f
-0f
+ff
 80
 9a
-d2
+c2
 01
 7f
-0f
+ff
 f1
-8b
+84
 22
-d2
-01
-7f
-1d
-80
-8d
 e4
-ff
-90
-4c
-ee
-e0
-60
-01
-22
-90
-4c
-c5
-e0
-64
-03
-60
-1c
-90
-4c
-ef
-e0
-70
-1d
-74
-0a
-f0
-a3
-e0
-70
-16
 90
 4d
-e1
-e0
-b4
-02
-0f
-7f
-09
-11
-33
-7f
-01
-80
-07
-e4
-90
-4c
-eb
+38
 f0
 7f
-01
-22
+19
 90
 4e
-8d
+71
 ef
 f0
-24
-f7
-60
-09
-14
-60
-61
-24
-02
-60
-02
+78
+72
+7c
+4e
+7d
 01
-d9
-e4
+7b
+ff
+7a
+06
+79
+bf
+7e
+00
+7f
+03
+12
+03
 90
-4c
-f0
-f0
-11
-df
-ef
-60
-09
 90
 4e
-8d
+71
 e0
 90
-4c
-ed
+4e
+74
 f0
-22
 7b
 01
 7a
-4c
+4e
 79
-00
+72
 7d
-04
-7c
-00
-7f
-f2
-7e
-3f
-71
-6c
-7f
-0a
-51
-7e
-90
-4c
-00
-e0
-b4
-ff
-1b
-a3
-e0
-b4
-ff
-16
-a3
-e0
-b4
-ff
-11
-a3
-e0
-b4
-ff
-0c
-90
-4c
-00
-74
-0f
-f0
-a3
-f0
-a3
-f0
-a3
-f0
-7f
-21
-11
-f6
-90
-4c
-c5
-74
-02
-f0
-e4
-a3
-f0
-90
-4c
-ed
-f0
-22
-e4
-90
-4c
-f0
-f0
-11
-df
-ef
-60
-09
-90
-4e
-8d
-e0
-90
-4c
-ed
-f0
-22
-90
-4c
-c5
-e0
-64
-01
-60
-18
-7f
-23
-11
-f6
-90
-4c
-c5
-74
-01
-f0
-e4
-a3
-f0
-90
-4c
-ee
-74
-f0
-f0
-e4
-90
-4c
-e9
-f0
-e4
-90
-4c
-ed
-f0
-22
-e4
-90
-4c
-ed
-f0
-22
-90
-4c
-c5
-e0
-ff
-64
-03
-60
-04
-ef
-b4
-02
-07
-7f
-22
-11
-f6
-7f
-01
-22
-7f
-00
-22
-90
-4e
-71
-ef
-f0
-78
-72
-7c
-4e
-7d
-01
-7b
-ff
-7a
-06
-79
-bf
-7e
-00
-7f
-03
-12
-03
-90
-90
-4e
-71
-e0
-90
-4e
-74
-f0
-7b
-01
-7a
-4e
-79
-72
-7d
-03
+03
 90
 4e
 46
@@ -2380,8 +2126,8 @@
 7b
 64
 12
-23
-fa
+21
+29
 90
 4e
 49
@@ -2482,690 +2228,681 @@
 f0
 22
 90
-4c
-c5
+4e
+93
+ed
+f0
 e0
-b4
-03
-10
+fd
 90
-4c
-e3
-e0
-64
-0e
-70
-04
-a3
-e0
-64
-10
-70
-29
-80
-28
+0b
+e8
+f0
+7e
+0b
+7f
+e9
 90
-4c
-c5
+4e
+51
+ed
+f0
+11
+da
+7b
+01
+7a
+0b
+79
+e7
+90
+4e
+93
 e0
-b4
+24
+02
+fd
 01
-12
+20
 90
+4e
 4c
-e3
-e0
-70
-04
+ee
+f0
+a3
+ef
+f0
+a3
+eb
+f0
 a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+51
 e0
-64
-28
-70
+ff
 14
-7f
-22
-11
-f6
-80
-0f
+f0
+ef
+60
+27
 90
-4c
-e3
+4e
+4e
 e0
-70
-04
+fb
 a3
-e0
-64
-14
-70
-02
-31
-f2
-22
 e4
-90
-4d
-38
+75
 f0
-7f
-19
 01
-f6
-90
-4c
-ce
-e0
-30
-e1
-3d
-90
-4c
-d0
-e0
-c3
-94
+12
+04
+24
+a9
+f0
 fa
-50
+12
 03
-e0
+b6
+ff
+90
+4e
+4c
+e4
+75
+f0
+01
+12
 04
+24
+85
+f0
+82
+f5
+83
+ef
 f0
+80
+cf
+22
 90
-4c
-d0
-e0
-64
-b4
-70
-2e
+4e
+52
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+a3
+f0
+a3
+f0
 90
 4d
-dc
-e0
-04
+db
+f0
+90
+4e
+56
 f0
+90
+4e
+56
 e0
-d3
+ff
+c3
 94
-02
+05
 50
-07
-e4
-90
-4c
-d0
-f0
-80
-1b
+2c
 90
-4d
-dc
+4e
+52
 e0
-b4
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+7e
+00
+e9
+2f
+f9
+ee
+3a
+fa
+12
 03
-14
+b6
+b4
+af
+06
 90
 4d
-d5
+db
 74
 01
 f0
-e4
 90
-4c
-d0
+4e
+56
+e0
+04
 f0
-31
-f2
 80
-05
-e4
+ca
 90
 4d
-dc
-f0
-90
-4c
-ce
+db
 e0
-30
-e4
-2d
 90
-4c
-ea
-74
-0a
+4d
+e0
 f0
 90
-4c
-d1
+4e
+52
 e0
-c3
-94
-fa
-50
-03
+a3
 e0
-04
-f0
-90
-4c
-d1
+fa
+a3
 e0
-b4
-06
-19
+4a
+70
+02
+61
+55
 90
-4c
-c3
-e0
-ff
-60
-03
-b4
-fe
-0f
-11
-df
-7f
-0a
-51
-7e
-7f
+4d
+de
+74
 0a
-01
-33
+f0
 e4
 90
 4c
-d1
+e3
 f0
-22
-ef
-d3
-94
+a3
+f0
+7b
+01
+7a
+48
+79
 00
-40
-11
-e4
-fd
+7d
+09
 fc
-0d
-bd
-00
-01
-0c
-bc
-04
-f8
-bd
-a6
-f5
-1f
-80
-e9
-22
-90
-4e
-92
-ef
-f0
-24
-d0
-60
-47
-14
-60
-46
-14
-70
-02
-61
-3f
-14
-60
-0a
-24
-f7
-60
-3a
-24
-0d
-60
-02
-61
-6b
-f1
-ec
-12
-21
-4f
-7b
+91
+cd
+7b
 01
 7a
-4c
+4d
 79
-00
+e5
 7d
-04
+09
 7c
 00
-7f
-f2
-7e
-3f
-71
-6c
-7f
-0a
-51
-7e
+91
+cd
 90
-4c
-c1
+4e
+52
+e0
+fb
+a3
+e0
+fa
+a3
 e0
 f9
-7a
-00
-7b
+90
 00
-7d
 01
-7c
-00
-7f
-f8
-7e
-3f
-71
-6c
-7f
+12
+03
+cf
+ff
+b4
+2e
 0a
-51
-7e
-e1
-aa
-e1
-c1
 90
-4c
-c5
-74
+00
+02
+12
 03
-f0
-e4
-a3
-f0
-f1
-69
-e4
-90
-4c
-ee
-f0
-90
-4c
-eb
-f0
-90
-4c
-c0
-74
-fe
-f0
-90
-4c
-c3
-f0
-90
-4e
-92
-e0
+cf
 64
-31
+29
+60
+0f
+ef
+64
+29
 70
-24
+36
 90
-4c
-e5
-74
-1e
-f0
+00
+02
+12
+03
+cf
+64
+2e
+70
+2c
 90
 4b
 eb
-e0
-b4
-0f
-10
+74
+20
+f0
 a3
-e0
-b4
-0f
-0b
+74
+15
+f0
 a3
-e0
-b4
-0f
-06
+74
+10
+f0
 a3
-e0
-64
-0f
-60
-40
-90
-4c
-bf
 74
-01
+05
 f0
-22
 90
 4c
-e5
+c5
 e0
-70
-33
-c2
+64
 01
-7f
-1d
-02
-07
-8b
-e4
+60
+09
 90
 4c
-c5
-f0
-a3
+ce
+e0
+44
+10
 f0
+80
+10
 90
 4c
-e3
-f0
-a3
+ce
+e0
+54
+ef
 f0
+80
+07
 90
 4c
-eb
-04
+ce
+e0
+54
+ef
 f0
 90
 4c
-ed
-e0
-60
-09
-f1
-69
+b6
+74
+01
+f0
 90
 4c
-ed
+f4
 e0
 ff
+64
 01
-33
+70
+02
+61
+55
+ef
+64
+04
+70
+02
+61
+55
+ef
+64
+02
+70
+02
+61
+55
 90
 4c
-ec
+c5
 e0
-b4
-01
-04
-e4
-f0
-31
-f2
-22
+64
+03
+70
+45
 90
 4e
-5c
-ec
-f0
-a3
-ed
-f0
-a3
-eb
-f0
-a3
-ea
-f0
-a3
-e9
-f0
-90
-80
-98
-74
-04
-f0
-a3
-e4
-f0
-90
-0c
-af
-74
-a0
-f0
-a3
-ee
-f0
-a3
-ef
+56
 f0
 90
-0c
-b2
-74
-a1
-f0
-7a
-0c
-79
-af
-7e
-0c
-7f
-af
-74
-af
-fc
-74
-0c
+4e
+56
+e0
 ff
-ec
-fe
-ef
-90
-80
-9a
-ee
-f0
-a3
-ef
-f0
+c3
+94
+05
+50
+37
 90
 4e
-5c
+52
 e0
-fc
+fb
 a3
 e0
 fa
-ec
-ff
-ea
-fe
-ef
-90
-80
-9e
-ee
-f0
 a3
-ef
-f0
-7a
-0b
-79
-83
+e0
+24
+01
+f9
+e4
+3a
+fa
 7e
-0b
-7f
-83
-74
-83
-fc
-74
-0b
+00
+e9
+2f
+f9
+ee
+3a
+fa
+12
+03
+b6
 ff
-ec
-fe
+64
+39
+60
+09
 ef
-90
-80
-9c
-ee
-f0
-a3
+64
+53
+60
+04
 ef
-f0
-90
-80
+b4
+47
+06
 90
+4d
+d0
 74
-02
-f0
-90
-80
-9c
-a3
-e0
-20
-e7
-07
-90
-80
-90
-e0
-44
 01
 f0
 90
-80
-06
+4e
+56
 e0
-44
 04
 f0
-12
-16
-db
+80
+bf
 90
 4e
-5e
+52
 e0
+fb
 a3
 e0
 fa
 a3
 e0
-ae
+f9
+71
+56
+90
+4d
+e4
+e0
+b4
+01
+11
+74
 02
-ff
+f0
+90
+4d
+e5
+f0
 7b
 01
 7a
-0b
+4d
 79
+e5
+7d
+03
+a1
 83
 90
-4e
-5c
-e0
-a3
+4d
+e4
 e0
-90
-4e
-51
+b4
+03
+16
+e4
 f0
 90
-4e
-4c
-ee
-f0
-a3
-ef
-f0
-a3
-eb
+4d
+e3
 f0
-a3
-ea
+90
+4d
+e5
+74
+02
 f0
-a3
-e9
+7b
+01
+7a
+4d
+79
+e5
+7d
+03
+a1
+83
+90
+48
+00
+74
+01
 f0
 90
 4e
-51
+52
 e0
-ff
-14
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+90
+48
+01
+f0
+e4
+a3
 f0
-ef
-60
-27
+90
+4d
+d8
+f0
+90
+00
+01
+12
+03
+cf
+b4
+af
+1e
+7e
+48
+7f
+03
 90
 4e
-4e
+52
 e0
 fb
 a3
+e0
+fa
+a3
+e0
+24
+02
+f9
 e4
-75
+3a
+fa
+90
+4e
+51
+74
+05
 f0
-01
-12
-04
+11
+da
+80
+1c
+7e
+48
+7f
+03
+90
+4e
+52
+e0
+fb
+a3
+e0
+fa
+a3
+e0
 24
-a9
-f0
+01
+f9
+e4
+3a
 fa
-12
+90
+4e
+51
+74
+06
+f0
+11
+da
+90
+4e
+56
+74
 03
-b6
-ff
+f0
 90
 4e
-4c
+56
+e0
+ff
+c3
+94
+09
+50
+25
+74
+00
+2f
+f5
+82
 e4
-75
-f0
-01
-12
-04
+34
+48
+f5
+83
+e0
+b4
+af
+0f
+90
+4e
+56
+e0
 24
-85
-f0
+00
+f5
 82
+e4
+34
+48
 f5
 83
-ef
+e4
+f0
+90
+4e
+56
+e0
+04
 f0
 80
-cf
+d1
+7b
+01
+7a
+48
+79
+00
+7d
+09
+b1
+83
 22
 90
 4e
-52
+65
 eb
 f0
 a3
@@ -3177,29 +2914,22 @@
 e4
 a3
 f0
-a3
-f0
-90
-4d
-db
-f0
-90
-4e
-56
 f0
 90
 4e
-56
+68
 e0
 ff
 c3
 94
-05
-50
-2c
+06
+40
+02
+81
+b1
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -3224,259 +2954,102 @@
 12
 03
 b6
-b4
-af
-06
-90
-4d
-db
-74
-01
-f0
-90
-4e
-56
-e0
-04
+ff
+54
 f0
-80
-ca
-90
-4d
-db
-e0
-90
-4d
-e0
+64
 f0
+60
+09
+ef
+54
+d0
+64
+d0
+60
+02
+81
+a9
+12
+03
+b6
+fb
+b4
+f2
+08
+7f
+cd
+7e
+00
+91
+b2
+81
+7e
+eb
+b4
+f4
+08
+7f
+b6
+7e
+00
+91
+b2
+81
+7e
 90
 4e
-52
+65
 e0
+fb
 a3
 e0
 fa
 a3
 e0
-4a
-70
-02
-c1
-b2
-90
-4d
-de
-74
-0a
-f0
-e4
-90
-4c
-e3
-f0
-a3
-f0
-7b
-01
-7a
-48
-79
-00
-7d
-09
-fc
-d1
-b3
-7b
+24
 01
-7a
-4d
-79
-e5
-7d
-09
-7c
-00
-d1
-b3
-90
-4e
-52
-e0
-fb
-a3
-e0
+f9
+e4
+3a
 fa
 a3
 e0
-f9
-90
-00
-01
-12
-03
-cf
-ff
-b4
-2e
-0a
-90
+7e
 00
-02
-12
-03
-cf
-64
-29
-60
-0f
-ef
-64
 29
-70
-36
-90
-00
-02
+f9
+ee
+3a
+fa
 12
 03
-cf
-64
-2e
-70
-2c
-90
-4b
-eb
-74
-20
-f0
-a3
-74
-15
-f0
-a3
-74
-10
-f0
-a3
-74
-05
-f0
-90
-4c
-c5
-e0
-64
-01
-60
-09
-90
-4c
-ce
-e0
-44
-10
-f0
-80
-10
-90
-4c
-ce
-e0
-54
-ef
-f0
-80
-07
-90
-4c
-ce
-e0
-54
-ef
-f0
-90
-4c
 b6
-74
-01
-f0
-90
-4c
-f4
-e0
+fb
 b4
-01
-2b
-90
-48
-00
-74
-01
-f0
-a3
-e0
-ff
-90
-4c
 f5
-e0
-fe
-ef
-4e
-90
-48
-01
-f0
-e4
-90
-48
-03
-f0
-7b
-01
-7a
-48
-79
+06
+7f
+b5
+91
+b2
+81
+7e
+eb
+b4
+f6
+08
+7f
+ea
+7e
 00
-7d
-09
-12
-14
-0e
-90
-4c
-f4
-74
-02
-f0
-22
-90
-4c
-c5
-e0
-64
-03
-70
-45
-90
-4e
-56
-f0
-90
-4e
-56
-e0
-ff
-c3
-94
-05
-50
-37
+91
+b2
+81
+7e
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -3490,10 +3063,11 @@
 e4
 3a
 fa
+a3
+e0
 7e
 00
-e9
-2f
+29
 f9
 ee
 3a
@@ -3501,37 +3075,31 @@
 12
 03
 b6
-ff
-64
-39
-60
-09
-ef
-64
-53
-60
-04
-ef
+fb
 b4
-47
+f7
 06
-90
-4d
-d0
-74
-01
-f0
-90
-4e
-56
-e0
-04
-f0
+7f
+e9
+91
+b2
 80
-bf
+6f
+eb
+b4
+f8
+08
+7f
+e2
+7e
+00
+91
+b2
+80
+63
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -3539,74 +3107,50 @@
 fa
 a3
 e0
+24
+01
 f9
-12
-1e
-d3
-90
-4d
 e4
+3a
+fa
+a3
 e0
-b4
-01
+7e
+00
+29
+f9
+ee
+3a
+fa
 12
-74
-02
-f0
-90
-4d
-e5
-f0
-7b
-01
-7a
-4d
-79
-e5
-7d
 03
-02
-14
+b6
+fb
+b4
+fa
+07
+7f
+8a
 0e
-90
-4d
-e4
-e0
+91
+b2
+80
+3c
+eb
 b4
-03
-17
-e4
-f0
-90
-4d
-e3
-f0
-90
-4d
-e5
-74
-02
-f0
-7b
-01
-7a
-4d
-79
-e5
-7d
-03
+d5
+08
+7f
+21
+7e
 02
-14
-0e
-90
-48
-00
-74
-01
-f0
+91
+b2
+80
+30
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -3614,37 +3158,54 @@
 fa
 a3
 e0
-f9
-12
-03
-b6
-90
-48
+24
 01
-f0
+f9
 e4
+3a
+fa
 a3
-f0
-90
-4d
-d8
-f0
-90
+e0
+7e
 00
-01
+29
+f9
+ee
+3a
+fa
 12
 03
-cf
+b6
+fb
 b4
-af
-1e
-7e
-48
+d7
+06
 7f
-03
+70
+91
+b2
+80
+0a
+eb
+b4
+d8
+06
+7f
+6f
+7e
+00
+91
+b2
+90
+4d
+e4
+e0
+b4
+02
+24
 90
 4e
-52
+65
 e0
 fb
 a3
@@ -3653,113 +3214,66 @@
 a3
 e0
 24
-02
+01
 f9
 e4
 3a
 fa
-90
-4e
-51
-74
-05
-f0
-91
-1a
-80
-1c
-7e
-48
-7f
-03
-90
-4e
-52
-e0
-fb
-a3
-e0
-fa
 a3
 e0
-24
-01
+7e
+00
+29
 f9
-e4
+ee
 3a
 fa
+12
+03
+b6
 90
-4e
-51
-74
-06
+4d
+e3
 f0
-91
-1a
-90
-4e
-56
-74
+e4
+12
 03
-f0
+fc
 90
 4e
-56
-e0
-ff
-c3
-94
-09
-50
-25
-74
-00
-2f
-f5
-82
-e4
-34
-48
-f5
-83
+68
 e0
-b4
-af
-0f
+04
+f0
+61
+65
+22
+ad
+07
+ac
+06
 90
-4e
-56
+4d
+e4
 e0
-24
-00
-f5
-82
-e4
-34
-48
-f5
-83
-e4
+64
+02
+60
+0e
+74
+01
 f0
 90
-4e
-56
-e0
+4d
+e5
 04
 f0
-80
-d1
-7b
-01
-7a
-48
-79
-00
-7d
-09
-12
-14
-0e
+ef
+a3
+f0
+ee
+a3
+f0
 22
 90
 4e
@@ -3812,11 +3326,11 @@
 79
 bf
 7d
-42
+43
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -3827,8 +3341,8 @@
 14
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -3839,8 +3353,8 @@
 14
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -3851,8 +3365,8 @@
 14
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -3863,8 +3377,8 @@
 09
 7c
 00
-d1
-b3
+91
+cd
 7b
 01
 7a
@@ -3875,8 +3389,8 @@
 09
 7c
 00
-d1
-b3
+91
+cd
 e4
 90
 4d
@@ -3943,481 +3457,438 @@
 38
 f0
 22
-e4
 90
-4c
+4e
+61
+eb
+f0
+a3
+ea
+f0
+a3
+e9
 f0
+a3
+ed
 f0
-22
+f1
+78
+ef
+60
+76
 90
 4c
-ee
+eb
 e0
-60
-1a
-e4
+70
+70
 90
 4c
-e3
-f0
-a3
-f0
+c5
+e0
+64
+03
+70
+68
 90
-4c
-ee
+4e
+61
 e0
-14
-f0
+fb
+a3
+e0
+fa
+a3
 e0
+f9
+12
+03
+b6
+ff
+64
+01
 70
-0a
-7f
-22
-11
-f6
-7f
-0a
-51
-7e
-31
-f2
-22
+2e
+90
+00
+01
 12
-07
-9d
+03
+cf
+70
+1e
 90
-4c
-e4
-e0
+00
+03
+12
+03
+cf
+70
+16
+90
+00
 04
-f0
+12
+03
+cf
+70
+0e
+90
+00
+05
+12
+03
+cf
 70
 06
 90
-4c
-e3
-e0
-04
+4d
+d6
 f0
-12
-23
-e9
-31
-b3
-31
-fb
 80
-c5
+28
 90
 4d
-e1
+d6
 74
-02
-f0
-7f
-08
 01
-33
-e4
-90
-0b
-7f
 f0
+80
+20
+ef
+b4
+02
+1c
 90
-0b
-7e
-f0
-7f
+00
 01
-41
-7e
-90
-80
-80
-e4
-f0
-a3
-f0
-a3
-f0
 12
-10
-d4
-e4
+03
+cf
+70
+0e
 90
-4e
+00
+02
+12
+03
+cf
+70
+06
 90
+4d
+d6
 f0
+80
+06
+90
+4d
+d6
+74
+01
 f0
 90
 4e
-90
+64
 e0
-90
-06
-0c
-93
-ff
-60
-0d
-c2
-05
-12
-10
-44
+fd
+f1
+53
+22
 90
 4e
-90
-e0
-04
-f0
-80
-e8
-22
-f1
-c1
-c2
-06
-7f
-10
-12
-10
-06
-c2
-06
-7f
-0f
-12
-10
-06
-c2
-06
-7f
-1d
-11
-06
-c2
-06
-7f
-1d
-ac
-07
-ec
-f4
-60
-15
-af
-04
-d2
-04
-11
-33
-af
-04
-a2
-06
-92
-01
-12
-07
-8b
-af
-04
-c2
-02
-11
-22
-22
+87
 ef
-f4
-60
-0c
+f0
+a3
+ed
+f0
 7b
 01
 7a
-80
+48
 79
-78
-a2
-02
-92
 00
-11
-73
-22
+7d
+09
+7c
+00
+91
+cd
+90
+48
+00
+74
+01
+f0
+a3
+e0
+ff
+90
+4e
+87
+e0
+fe
 ef
-f4
-60
-0c
+4e
+90
+48
+01
+f0
+90
+4e
+88
+e0
+90
+48
+03
+f0
 7b
 01
 7a
-80
+48
 79
-70
-a2
-04
-92
 00
-11
-73
-22
-ac
-07
-ec
+7d
+09
+a1
+83
+90
+4c
 f4
+e0
+ff
 60
-17
-af
-04
-a2
-05
-92
+08
+64
 03
-11
-62
-af
+60
 04
-a2
+ef
+b4
 05
-b3
-92
 02
-11
-22
-af
-04
-c2
-04
-11
-33
-22
-ef
+e1
+20
+90
+4c
 f4
-60
-0c
-7b
+e0
+b4
 01
-7a
-80
-79
-7c
-a2
-03
-92
-00
-11
-73
-22
-90
-4e
-84
-eb
-f0
-a3
-ea
-f0
+0e
 a3
-e9
-f0
+e0
+ff
 e4
-fe
-fd
-ef
-54
-07
-fe
-ef
-13
-13
-13
-54
-03
 fd
-30
-00
+d1
+0d
+90
+4c
+f4
+74
+02
+f0
 22
 90
-4e
-84
+4c
+f4
 e0
-fb
+b4
+02
+0b
+74
+03
+f0
 a3
 e0
-fa
+ff
 a3
 e0
-2d
-f9
-e4
-3a
-fa
-12
-03
-b6
-ff
-74
-01
-a8
-06
-08
+fd
 80
-02
-c3
-33
-d8
-fc
-4f
-02
-03
-fc
+8e
 90
-4e
-84
-e0
-fb
-a3
-e0
-fa
-a3
+4c
+f4
 e0
-2d
-f9
+b4
+04
+1a
 e4
-3a
-fa
-12
-03
-b6
+90
+4c
+f6
+f0
+90
+4c
+f5
+e0
 ff
+e4
+fd
+d1
+0d
+e4
+90
+4c
+f5
+f0
+90
+4c
+f4
 74
-01
-a8
-06
-08
-80
-02
-c3
-33
-d8
-fc
+05
+f0
+22
+90
+4c
 f4
-5f
-02
-03
-fc
+e0
+b4
+06
+15
 e4
 90
-4e
-8f
-f0
+4c
+f6
 f0
 90
-4e
-8f
+4c
+f5
+f0
+a3
 e0
+fd
+e4
 ff
-c3
-94
-08
-50
-0c
-c2
-05
-11
-44
+d1
+0d
+e4
 90
-4e
-8f
-e0
-04
+4c
+f4
 f0
-80
-ea
 22
 90
-4c
-bf
+4d
+d0
 e0
-60
-3d
-7f
-c8
-12
-0a
-7e
-c2
+64
 01
-7f
-ff
-12
-07
-8b
+70
+2f
+90
+4d
+d6
+e0
+70
+29
+90
+4c
+c5
+e0
+64
+03
+70
+4c
 7b
 01
 7a
-4c
+48
 79
 00
 7d
-04
-7c
-00
-7f
-f2
-7e
-3f
-31
-35
+09
+fc
+91
+cd
 7b
 01
 7a
-4c
+48
 79
-c1
+00
 7d
+09
+b1
+83
+90
+4d
+d0
+74
+02
+f0
+e4
+90
+4d
+e4
+f0
+22
+90
+4d
+d0
+e0
+b4
+02
+24
+90
+4d
+d6
+e0
+70
+1e
+90
+4d
+d0
+f0
+7b
 01
-7c
+7a
+48
+79
 00
-7f
-f8
-7e
-3f
-31
-35
-d2
+7d
+09
+fc
+91
+cd
+7b
 01
-7f
-ff
-12
-07
-8b
-7f
-0a
-12
-0a
-7e
+7a
+48
+79
+00
+7d
+09
+b1
+83
 e4
 90
-4c
-bf
+4d
+e4
 f0
 22
 90
 4e
-20
-ee
-f0
-a3
-ef
+75
+e4
 f0
 a3
-ec
 f0
 a3
-ed
 f0
-a3
+f1
+ad
+50
+25
+12
+18
+cf
+90
+4e
+75
 eb
 f0
 a3
@@ -4426,1514 +3897,1721 @@
 a3
 e9
 f0
+4a
+70
+07
+90
+4c
+b6
+04
+f0
+c1
+bd
 90
 4e
-22
+75
 e0
-70
-02
+fb
 a3
 e0
-70
-02
-21
-e2
-90
-4e
-20
-e0
-fe
+fa
 a3
 e0
-ff
-44
-0f
-24
+f9
+31
+1d
+22
+90
+0b
+e7
+74
+06
+f0
 01
-fd
+b5
+91
+f9
+12
+20
+65
+90
+4c
+eb
+74
+01
+f0
+90
+4c
+e5
+74
+1e
+f0
 e4
-3e
-fc
-c3
-ed
-9f
-ff
-ec
-9e
-fe
 90
-4e
-27
+4c
 f0
-a3
-ef
 f0
 90
-4e
+4d
+01
+74
+ff
+f0
 22
-e0
-fc
-a3
-e0
-fd
-d3
-9f
-ec
-9e
-40
-0a
+e4
+ff
 90
-4e
-27
+4c
+ee
 e0
-fe
-a3
+60
+01
+22
+90
+4c
+c5
 e0
-ff
-80
-04
-ae
-04
-af
-05
+64
+03
+60
+1c
 90
-4e
-27
-ee
-f0
-fc
-a3
+4c
 ef
-f0
-fd
-c3
-90
-4e
-23
 e0
-9d
+70
+1d
+74
+0a
 f0
+a3
+e0
+70
+16
 90
-4e
-22
+4d
+e1
 e0
-9c
+b4
+02
+0f
+7f
+09
+f1
+eb
+7f
+01
+80
+07
+e4
+90
+4c
+eb
 f0
+7f
+01
+22
 90
-4e
-20
+4b
+9c
 e0
 fe
 a3
 e0
 ff
 90
-4e
-24
+4b
+9a
 e0
-fb
+b5
+06
+07
 a3
 e0
-fa
-a3
+b5
+07
+02
+d3
+22
+c3
+22
+e4
+90
+4c
+f0
+f0
+22
+90
+4c
+c5
 e0
-f9
-d1
-42
+ff
+64
+03
+60
+04
+ef
+b4
+02
+08
 7f
-0a
+22
 12
-0a
-7e
+07
+f8
+7f
+01
+22
+7f
+00
+22
 90
-4e
-27
-e0
-fe
-a3
-e0
-ff
+4d
+e1
+74
+02
+f0
+7f
+08
 90
 4e
-25
-ee
-8f
+8d
+ef
 f0
-12
-04
-0e
+24
+f7
+60
+0a
+14
+60
+64
+24
+02
+60
+03
+02
+10
+96
+e4
 90
-4e
-21
-e0
-2f
+4c
 f0
+f0
+12
+0f
+cb
+ef
+60
+09
 90
 4e
-20
+8d
 e0
-3e
-f0
-21
+90
 4c
+ed
+f0
 22
-91
-99
-d1
-e3
-71
+7b
+01
+7a
+4c
+79
+00
+7d
+04
+7c
+00
 7f
-11
-f1
-12
-06
-cf
-90
-0b
+f2
 7e
-e0
-14
-60
-0e
-24
-fe
-70
-ec
+3f
 51
-35
-12
-0f
-ee
-12
-0f
-b4
-80
-fe
+7e
+7f
+0a
+11
+9c
 90
 4c
-ea
+00
 e0
-70
-1e
-90
-4c
-ec
+b4
+ff
+1b
+a3
 e0
-70
-18
+b4
+ff
+16
+a3
+e0
+b4
+ff
+11
+a3
+e0
+b4
+ff
+0c
 90
 4c
-e5
-e0
-70
+00
+74
+0f
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+7f
+21
 12
+07
+f8
 90
 4c
-e7
-e0
-70
-0c
+c5
+74
+02
+f0
+e4
+a3
+f0
 90
 4c
-e6
-e0
-70
-06
+ed
+f0
+22
+e4
 90
 4c
-e8
-e0
-60
-04
-f1
-b3
-80
-ba
-51
-35
+f0
+f0
 12
 0f
-b4
-80
-b3
-80
-b1
-22
-e4
-ff
+cb
+ef
+60
+09
 90
 4e
-91
+8d
+e0
+90
+4c
+ed
 f0
-fe
-fd
-ef
+22
 90
-06
-0c
-93
+4c
+c5
+e0
+64
+01
 60
-49
-ef
-93
-fd
-13
-13
-13
-54
-1f
-fe
-ed
-54
+19
+7f
+23
+12
 07
-fd
+f8
+90
+4c
+c5
 74
 01
-a8
-05
-08
-80
-02
-c3
-33
-d8
-fc
-fd
-ee
-24
-78
-fb
-e4
-34
-80
-8b
-82
-f5
-83
-e0
-fc
-ed
-f4
-fb
-ec
-5b
 f0
-ee
-24
-70
-f5
-82
 e4
-34
-80
-f5
-83
-e0
-4d
+a3
 f0
+90
+4c
 ee
-24
 74
-f5
-82
-e4
-34
-80
-f5
-83
-e0
-5b
 f0
-0f
-80
-b0
-12
-25
-7e
-90
-81
-1c
-e0
-90
-4e
-91
 f0
+e4
 90
 4c
-d5
-e0
-64
-02
-60
-36
+e9
+f0
+e4
 90
-4d
-d5
-e0
-60
-20
+4c
+ed
+f0
+22
 e4
-ff
-51
-e0
-7f
-01
-51
-e0
-7f
-02
-51
+90
+4c
+ed
+f0
+22
+ef
+d3
+94
+00
+40
+11
+e4
+fd
+fc
+0d
+bd
+00
+01
+0c
+bc
+04
+f8
+bd
+a6
+f5
+1f
+80
+e9
+22
+90
+4c
+bf
 e0
+60
+3b
 7f
-03
-51
-e0
+c8
+11
+9c
+c2
+01
 7f
+ff
+12
+07
+84
+7b
+01
+7a
+4c
+79
+00
+7d
 04
-51
-e0
+7c
+00
 7f
-05
-51
-e0
+f2
+7e
+3f
+11
+f6
+7b
+01
+7a
+4c
+79
+c1
+7d
+01
+7c
+00
 7f
-06
-51
-e0
+f8
+7e
+3f
+11
+f6
+d2
+01
 7f
+ff
+12
 07
-80
-1a
+84
+7f
+0a
+11
+9c
+e4
+90
+4c
+bf
+f0
+22
 90
 4e
-91
+20
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+22
 e0
-ff
+70
+02
+a3
+e0
+70
+02
+21
+a2
 90
-00
+4e
+20
+e0
+fe
 a3
+e0
+ff
+44
+0f
+24
+01
+fd
+e4
+3e
+fc
+c3
+ed
+9f
+ff
+ec
+9e
+fe
+90
+4e
+27
 f0
+a3
 ef
-f4
-90
-00
-a7
 f0
+90
+4e
 22
-e4
+e0
+fc
+a3
+e0
+fd
+d3
+9f
+ec
+9e
+40
+0a
 90
-00
+4e
+27
+e0
+fe
+a3
+e0
+ff
+80
+04
+ae
+04
+af
+05
+90
+4e
+27
+ee
+f0
+fc
 a3
+ef
 f0
+fd
+c3
 90
-00
-a7
+4e
+23
+e0
+9d
 f0
-22
 90
 4e
-95
-ef
+22
+e0
+9c
 f0
-91
-d9
-92
-08
 90
 4e
-95
+20
 e0
-ff
-a2
-08
-b3
-92
-07
-ef
-f4
-70
-02
-61
-7e
-ef
-54
-07
 fe
-ef
-13
-13
-13
-54
-03
+a3
+e0
 ff
-30
-07
-43
+90
+4e
 24
+e0
+fb
 a3
-f5
-82
-e4
-34
-00
-f5
-83
-c0
-83
-c0
-82
-e0
-fd
-74
-01
-a8
-06
-08
-80
-02
-c3
-33
-d8
-fc
-f4
-5d
-d0
-82
-d0
-83
-f0
-74
-a7
-2f
-f5
-82
-e4
-34
-00
-f5
-83
-c0
-83
-c0
-82
 e0
-ff
-74
-01
-a8
-06
-08
-80
-02
-c3
-33
-d8
-fc
-4f
-d0
-82
-d0
-83
-f0
-22
-74
+fa
 a3
-2f
-f5
-82
-e4
-34
-00
-f5
-83
-c0
-83
-c0
-82
 e0
-fd
-74
-01
-a8
-06
-08
-80
-02
-c3
-33
-d8
-fc
-fc
+f9
+d1
 4d
-d0
-82
-d0
-83
-f0
-74
-a7
-2f
-f5
-82
-e4
-34
-00
-f5
-83
-e0
-ff
-ec
-f4
-fe
-ef
-5e
-f0
-22
-90
-4c
-f4
-e0
-ff
-60
-08
-64
-01
-60
-04
-ef
-b4
-03
-02
-a1
-1e
+7f
+0a
+11
+9c
 90
-4c
-f4
+4e
+27
 e0
-b4
-02
-0b
-74
-03
-f0
+fe
 a3
 e0
 ff
-a3
-e0
-fd
-80
-33
-90
-4c
-f4
-e0
-b4
-04
-13
-e4
-90
-4c
-f6
-f0
 90
-4c
-f4
-74
-05
+4e
+25
+ee
+8f
 f0
-a3
-e0
-ff
-a3
-e0
-fd
-80
-19
+12
+04
+0e
 90
-4c
-f4
+4e
+21
 e0
-b4
-05
-11
-e4
-a3
-f0
-a3
+2f
 f0
 90
-4c
-f4
-f0
-a3
-e0
-ff
-a3
+4e
+20
 e0
-fd
-71
-d5
+3e
+f0
+21
+0d
 22
 90
 4e
-87
+92
 ef
 f0
-a3
-ed
-f0
+24
+d0
+60
+48
+14
+60
+47
+14
+70
+02
+41
+4e
+14
+60
+0a
+24
+f7
+60
+3b
+24
+0d
+60
+02
+41
+7d
+71
+2e
+12
+0f
+5b
 7b
 01
 7a
-48
+4c
 79
 00
 7d
-09
+04
 7c
 00
-12
-0e
-b3
-90
-48
-00
-74
-01
-f0
-a3
-e0
-ff
-90
-4e
-87
-e0
-fe
-ef
-4e
-90
-48
-01
-f0
+7f
+f2
+7e
+3f
+51
+7e
+7f
+0a
+11
+9c
 90
-4e
-88
+4c
+c1
 e0
-90
-48
-03
-f0
-7b
-01
+f9
 7a
-48
-79
+00
+7b
 00
 7d
-09
-90
-4e
+01
+7c
+00
+7f
+f8
+7e
+3f
+51
+7e
+7f
+0a
+11
+9c
+02
+0f
+e3
 61
-eb
-f0
-a3
-ea
-f0
-a3
-e9
+62
+90
+4c
+c5
+74
+03
 f0
+e4
 a3
-ed
 f0
 12
-07
-fe
-ef
-60
-76
+0f
+c5
+e4
+90
+4c
+ee
+f0
 90
 4c
 eb
-e0
-70
-70
+f0
 90
 4c
-c5
+c0
+74
+fe
+f0
+90
+4c
+c3
+f0
+90
+4e
+92
 e0
 64
-03
+31
 70
-68
+24
 90
-4e
-61
+4c
+e5
+74
+1e
+f0
+90
+4b
+eb
 e0
-fb
+b4
+0f
+10
 a3
 e0
-fa
+b4
+0f
+0b
+a3
+e0
+b4
+0f
+06
 a3
 e0
-f9
-12
-03
-b6
-ff
 64
-01
-70
-2e
+0f
+60
+43
 90
-00
+4c
+bf
+74
 01
-12
-03
-cf
-70
-1e
-90
-00
-03
-12
-03
-cf
-70
-16
+f0
+22
 90
-00
-04
-12
-03
-cf
+4c
+e5
+e0
 70
-0e
+36
+c2
+01
+7f
+1e
+02
+07
+84
+e4
 90
-00
-05
-12
-03
-cf
-70
-06
+4c
+c5
+f0
+a3
+f0
 90
-4d
-d6
+4c
+e3
+f0
+a3
 f0
-80
-28
 90
-4d
-d6
-74
-01
+4c
+eb
+04
 f0
-80
-20
-ef
-b4
-02
-1c
 90
-00
-01
+4c
+ed
+e0
+60
+0b
 12
-03
-cf
-70
-0e
+0f
+c5
 90
-00
+4c
+ed
+e0
+ff
 02
-12
-03
-cf
-70
-06
-90
-4d
-d6
-f0
-80
-06
+0f
+eb
 90
-4d
-d6
-74
+4c
+ec
+e0
+b4
 01
+05
+e4
 f0
+12
+07
+f1
+22
 90
 4e
-64
-e0
-fd
-91
-ac
-22
-7b
-01
-7a
-4d
-79
-ee
-78
-00
-7c
-4e
-7d
-01
-7e
-00
-7f
-12
-02
-03
-90
+5c
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
 90
-0b
-e7
+80
+98
 74
-06
+04
+f0
+a3
+e4
 f0
 90
-4e
-93
-ed
+0c
+af
+74
+a0
+f0
+a3
+ee
+f0
+a3
+ef
 f0
-e0
-fd
 90
-0b
-e8
+0c
+b2
+74
+a1
 f0
+7a
+0c
+79
+af
 7e
-0b
+0c
 7f
-e9
+af
+74
+af
+fc
+74
+0c
+ff
+ec
+fe
+ef
 90
-4e
-51
-ed
+80
+9a
+ee
+f0
+a3
+ef
 f0
-12
-0c
-1a
-7b
-01
-7a
-0b
-79
-e7
 90
 4e
-93
+5c
 e0
-24
-02
-fd
-02
-09
-1e
-7b
-01
-7a
-81
-79
-1c
-ad
-07
-e4
-90
-4e
-94
-f0
+fc
+a3
+e0
+fa
+ec
+ff
+ea
 fe
 ef
-54
-07
+90
+80
+9e
+ee
 f0
+a3
 ef
-13
-13
-13
-54
-03
-fe
-f5
-82
-75
+f0
+7a
+0b
+79
+83
+7e
+0b
+7f
+83
+74
 83
-00
-12
-03
-cf
-fd
-33
-95
-e0
 fc
-90
-4e
-94
-e0
-ff
 74
-01
-7e
-00
-a8
-07
-08
-80
-05
-c3
-33
-ce
-33
-ce
-d8
-f9
+0b
 ff
-ee
-5c
+ec
 fe
 ef
-5d
-4e
-24
-ff
-22
 90
-4e
-75
-e4
-f0
-a3
+80
+9c
+ee
 f0
 a3
+ef
 f0
-f1
-bf
-50
-26
-12
-19
-7c
 90
-4e
-75
-eb
-f0
-a3
-ea
+80
+90
+74
+02
 f0
+90
+80
+9c
 a3
-e9
-f0
-4a
-70
+e0
+20
+e7
 07
 90
-4c
-b6
-04
+80
+90
+e0
+44
+01
 f0
+90
 80
-0f
+06
+e0
+44
+04
+f0
+d1
+e6
 90
 4e
-75
+5e
 e0
-fb
 a3
 e0
 fa
 a3
 e0
-f9
-12
-0c
-5d
-22
-90
-4d
-d0
-e0
-64
+ae
+02
+ff
+7b
 01
-70
-30
+7a
+0b
+79
+83
 90
-4d
-d6
+4e
+5c
 e0
-70
-2a
-90
-4c
-c5
+a3
 e0
-64
-03
-70
+90
 4e
-7b
+51
+f0
+02
+08
+da
+71
+62
+c2
+06
+7f
+ff
+71
+46
+c2
+06
+7f
+ff
+71
+46
+c2
+06
+7f
+1e
+71
+46
+c2
+06
+7f
+1e
+ac
+07
+ec
+f4
+60
+15
+af
+04
+d2
+04
+b1
+ad
+af
+04
+a2
+06
+92
 01
-7a
-48
-79
-00
-7d
-09
-fc
 12
-0e
-b3
-7b
-01
-7a
-48
-79
-00
-7d
-09
-91
-0e
-90
-4d
-d0
-74
+07
+84
+af
+04
+c2
 02
+b1
+7e
+22
+90
+80
+80
+e4
+f0
+a3
+f0
+a3
 f0
+d1
+30
 e4
 90
-4d
-e4
+4e
+90
+f0
 f0
-22
 90
-4d
-d0
-e0
-b4
-02
-25
+4e
 90
-4d
-d6
 e0
-70
-1f
 90
-4d
-d0
-f0
-7b
-01
-7a
-48
-79
-00
-7d
-09
-fc
-12
-0e
-b3
-7b
-01
-7a
-48
-79
-00
-7d
-09
-91
-0e
-e4
+06
+0c
+93
+ff
+60
+0c
+c2
+05
+b1
+8f
 90
-4d
-e4
-f0
-22
+4e
 90
-4c
-ea
 e0
-60
-02
-14
+04
 f0
+80
+e9
+22
+b1
+26
+d1
+ee
+12
+0e
+47
+11
+b4
+12
+06
+cf
 90
-4c
-ef
+0b
+7e
 e0
-60
-02
 14
-f0
+60
+0c
+24
+fe
+70
+eb
+71
+cf
+71
+30
+b1
+19
+80
+fe
 90
 4c
-e5
+ea
 e0
-60
-0f
-14
-f0
+70
 12
-07
-f8
 90
 4c
-e5
+ec
 e0
 70
-2f
-f1
-ac
-80
-2b
+0c
 90
 4c
-ee
+e5
 e0
 70
-25
+06
 90
 4c
-e2
+f8
 e0
 60
-1f
-14
-f0
-e0
-30
-e1
-09
-d2
-01
-7f
-1d
-12
-07
-8b
-80
-07
-c2
-01
-7f
-1d
-12
+04
+f1
+b7
+80
+c7
+71
+cf
+b1
+19
+80
+c1
+80
+bf
+22
+e4
+ff
+90
+4e
+91
+f0
+fe
+fd
+ef
+90
+06
+0c
+93
+60
+49
+ef
+93
+fd
+13
+13
+13
+54
+1f
+fe
+ed
+54
 07
+fd
+74
+01
+a8
+05
+08
+80
+02
+c3
+33
+d8
+fc
+fd
+ee
+24
+78
+fb
+e4
+34
+80
 8b
-90
-4c
-e2
+82
+f5
+83
 e0
+fc
+ed
+f4
+fb
+ec
+5b
+f0
+ee
+24
 70
-03
+f5
+82
+e4
+34
+80
+f5
+83
+e0
+4d
+f0
+ee
+24
 74
-04
+f5
+82
+e4
+34
+80
+f5
+83
+e0
+5b
 f0
+0f
+80
+b0
+12
+22
 90
-4d
-d5
+90
+81
+1c
 e0
-70
-2b
 90
-4d
-d6
+4e
+91
+f0
+90
+4c
+d5
 e0
 64
-01
-70
-23
-f0
+02
+60
+36
 90
 4d
-e5
+d5
 e0
 60
-0c
-7b
+20
+e4
+ff
+91
+7a
+7f
 01
+91
 7a
-4d
-79
-e5
-7d
+7f
+02
+91
+7a
+7f
 03
 91
-0e
-80
-10
-90
-48
-00
-e0
-60
-0a
-7b
-01
 7a
-48
-79
-00
-7d
-09
+7f
+04
 91
-0e
+7a
+7f
+05
+91
+7a
+7f
+06
+91
+7a
+7f
+07
+80
+1a
 90
-4d
-de
-e0
-60
-03
+4e
+91
 e0
-14
-f0
-22
+ff
 90
-4e
-3f
-ee
-f0
+00
 a3
-ef
 f0
+ef
+f4
 90
-4e
-43
-eb
-f0
-a3
-ea
+00
+a7
 f0
+22
+e4
+90
+00
 a3
-e9
 f0
 90
-4e
-41
-ec
-f0
-a3
-ed
+00
+a7
 f0
-a3
-e0
-f9
-a3
-e0
-fa
-a3
-e0
+22
 90
 4e
-2c
-c9
-f0
-a3
-ea
-f0
-a3
-e9
-f0
-a3
-ec
-f0
-a3
-ed
+95
+ef
 f0
-7b
-01
-7a
-0b
-79
-86
-12
-24
 b1
-90
-0b
-83
-74
-a0
-f0
+39
+92
+08
 90
 4e
-3f
+95
 e0
 ff
-a3
-e0
-90
-0b
-84
-cf
-f0
-a3
+a2
+08
+b3
+92
+07
 ef
-f0
-90
-4e
-42
-e0
-24
+f4
+70
+02
+a1
+18
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
 03
-fd
-90
-4e
-41
-e0
+ff
+30
+07
+43
+24
+a3
+f5
+82
+e4
 34
 00
+f5
+83
+c0
+83
+c0
+82
+e0
+fd
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
 fc
-ed
-fa
-ec
+f4
+5d
+d0
+82
+d0
+83
+f0
+74
+a7
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+c0
+83
+c0
+82
+e0
 ff
-ea
-fe
-ef
-90
+74
+01
+a8
+06
+08
 80
-98
-ee
+02
+c3
+33
+d8
+fc
+4f
+d0
+82
+d0
+83
 f0
+22
+74
 a3
-ef
-f0
-7a
-0b
-79
+2f
+f5
+82
+e4
+34
+00
+f5
 83
-7e
-0b
-7f
+c0
 83
+c0
+82
+e0
+fd
 74
-83
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
 fc
+fc
+4d
+d0
+82
+d0
+83
+f0
 74
-0b
+a7
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
 ff
 ec
+f4
 fe
 ef
-a3
-ee
-f0
-a3
-ef
+5e
 f0
-90
-80
-9e
+22
 e4
-f0
-a3
-f0
 90
-80
-90
-04
+0b
+7f
 f0
 90
-80
-06
-e0
-44
-04
+0b
+7e
 f0
-90
-81
-2c
-e0
-30
-e5
-f9
-22
+7f
+01
+01
+9c
+7b
+01
 7a
-0c
+4d
 79
-4b
-90
+ee
+78
+00
+7c
 4e
-7b
-74
+7d
 01
-f0
-a3
-74
-0c
-f0
-a3
-74
-4b
-f0
-90
-4b
-a0
-e0
-fe
-a3
-e0
-ff
-90
-4b
-9e
-e0
-6e
-70
-03
-a3
-e0
-6f
-60
-47
 7e
-0c
+00
 7f
-4b
-7d
-03
 12
-24
-54
+02
+03
 90
-4e
 7b
+01
+7a
+81
+79
+1c
+ad
+07
+e4
+90
+4e
+94
+f0
+fe
+ef
+54
+07
+f0
+ef
+13
+13
+13
+54
+03
+fe
+f5
+82
+75
+83
+00
+12
+03
+cf
+fd
+33
+95
 e0
-fb
-a3
-e0
-fa
-a3
+fc
+90
+4e
+94
 e0
+ff
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
 f9
-12
+ff
+ee
+5c
+fe
+ef
+5d
+4e
+24
+ff
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+78
+a2
+02
+92
+00
+b1
+cf
+22
+ac
+07
+ec
+f4
+60
+17
+af
+04
+a2
+05
+92
 03
-b6
-b4
+b1
+be
+af
+04
+a2
+05
+b3
+92
 02
-2b
+b1
+7e
+af
+04
+c2
+04
+b1
+ad
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+70
+a2
+04
+92
+00
+b1
+cf
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+7c
+a2
+03
+92
+00
+b1
+cf
+22
 90
 4e
-7c
-e4
-75
+84
+eb
 f0
-02
-12
-04
-0e
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+fe
+fd
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+fd
+30
+00
+22
 90
 4e
-7b
+84
 e0
 fb
 a3
@@ -5941,54 +5619,33 @@
 fa
 a3
 e0
+2d
 f9
+e4
+3a
+fa
 12
 03
 b6
 ff
-90
-4e
-00
-e0
-a3
-e0
-fa
-a3
-e0
-f5
-82
-8a
-83
-12
-05
-68
+74
+01
+a8
+06
+08
 80
 02
-80
-fe
-90
-4b
-a5
-e0
-fe
-a3
-e0
-ff
-90
-4c
-5e
-e0
-6e
-70
+c3
+33
+d8
+fc
+4f
+02
 03
-a3
-e0
-6f
-60
-22
+fc
 90
 4e
-06
+84
 e0
 fb
 a3
@@ -5996,525 +5653,695 @@
 fa
 a3
 e0
+2d
 f9
-4a
-60
-37
+e4
+3a
+fa
 12
-05
-64
-90
-4b
-a5
+03
+b6
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5f
+02
+03
+fc
+e4
+90
+4e
+8f
+f0
+f0
+90
+4e
+8f
 e0
 ff
-a3
+c3
+94
+08
+50
+0c
+c2
+05
+b1
+8f
+90
+4e
+8f
 e0
+04
+f0
+80
+ea
+22
 90
-4c
-5e
-cf
+4e
+3f
+ee
 f0
 a3
 ef
 f0
-80
-ca
 90
-4c
-8d
-e0
-ff
+4e
+43
+eb
+f0
 a3
-e0
-6f
-60
-19
+ea
+f0
+a3
+e9
+f0
 90
 4e
-09
+41
+ec
+f0
+a3
+ed
+f0
+a3
 e0
-fb
+f9
 a3
 e0
 fa
 a3
 e0
-f9
-4a
-60
-0b
-12
-05
-64
 90
-4c
-8d
-e0
+4e
+2c
+c9
+f0
 a3
+ea
 f0
-80
-dd
-22
-21
-e3
-c2
+a3
+e9
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+7b
 01
-7f
-1d
-02
-07
-8b
-90
+7a
 0b
-7f
-74
-01
-f0
-e4
+79
+86
+12
+21
+e0
 90
 0b
-7e
+83
+74
+a0
 f0
-22
 90
-4b
-9c
+4e
+3f
 e0
-fe
+ff
 a3
 e0
-ff
 90
-4b
-9a
-e0
-b5
-06
-07
+0b
+84
+cf
+f0
 a3
+ef
+f0
+90
+4e
+42
 e0
-b5
-07
-02
-d3
-22
-c3
-22
-ad
-07
-ac
-06
+24
+03
+fd
 90
-4d
-e4
+4e
+41
 e0
-64
-02
-60
-0e
-74
-01
-f0
+34
+00
+fc
+ed
+fa
+ec
+ff
+ea
+fe
+ef
 90
-4d
-e5
-04
+80
+98
+ee
 f0
-ef
 a3
+ef
 f0
-ee
+7a
+0b
+79
+83
+7e
+0b
+7f
+83
+74
+83
+fc
+74
+0b
+ff
+ec
+fe
+ef
 a3
+ee
 f0
-22
-ae
-05
+a3
 ef
-30
-e0
-0a
+f0
 90
-4d
-d3
-e0
-04
+80
+9e
+e4
 f0
-ae
-03
+a3
+f0
+90
 80
-0d
 90
-4d
-d3
-e0
-60
-07
-e0
-14
+04
 f0
-af
-03
-ae
-07
-af
+90
+80
 06
+e0
+44
+04
+f0
+90
+81
+2c
+e0
+30
+e5
+f9
 22
-ae
-07
-ac
-05
-e4
+7a
+0c
+79
+4b
 90
 4e
-8e
+7b
+74
+01
 f0
-ec
+a3
+74
+0c
+f0
+a3
+74
+4b
 f0
 90
-4d
-db
+4b
+a0
 e0
-64
-01
+fe
+a3
+e0
+ff
+90
+4b
+9e
+e0
+6e
+70
+03
+a3
+e0
+6f
 60
-02
+47
+7e
+0c
+7f
+4b
+7d
+03
+12
 21
-76
-ec
-24
-c6
+83
+90
+4e
+7b
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
 b4
-0c
-00
-40
 02
-21
-76
+2b
 90
-18
-3f
+4e
+7c
+e4
 75
 f0
-03
-a4
-c5
-83
-25
-f0
-c5
-83
-73
-02
-18
-63
-02
-18
-73
-02
-18
-83
-02
-18
-af
-02
-18
-da
-02
-19
-06
-02
-19
-16
-02
-19
-26
-02
-19
-36
-02
-19
-46
-02
-19
-56
 02
-19
-66
-af
-06
-ad
-04
-7b
-d7
 12
-17
-f2
+04
+0e
 90
 4e
-8e
-ef
-f0
-21
-76
-af
-06
-ad
-04
 7b
-d8
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
 12
-17
-f2
+03
+b6
+ff
 90
 4e
-8e
-ef
-f0
-21
-76
-90
-4c
+00
+e0
+a3
+e0
+fa
+a3
+e0
 f5
-74
-04
-f0
+82
+8a
+83
+12
+05
+68
+80
+02
+80
+fe
+90
+4b
+a5
+e0
+fe
 a3
-74
-2b
-f0
-ee
-30
 e0
-08
+ff
 90
 4c
-f4
-74
-01
-f0
-80
-06
+5e
+e0
+6e
+70
+03
+a3
+e0
+6f
+60
+22
 90
-4c
-f4
-74
-04
-f0
-af
+4e
 06
-ad
-04
-e4
+e0
 fb
-12
-17
-f2
-90
-4e
-8e
-ef
-f0
-21
-76
-90
-4c
-f5
-74
-08
-f0
 a3
-14
-f0
-ee
-30
 e0
-08
-90
+fa
+a3
+e0
+f9
+4a
+60
+37
+12
+05
+64
+90
+4b
+a5
+e0
+ff
+a3
+e0
+90
 4c
-f4
-74
-01
+5e
+cf
+f0
+a3
+ef
 f0
 80
-06
+ca
 90
 4c
-f4
+8d
+e0
+ff
+a3
+e0
+6f
+60
+19
+90
+4e
+09
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+0b
+12
+05
+64
+90
+4c
+8d
+e0
+a3
+f0
+80
+dd
+22
+61
+8b
+90
+0b
+7f
 74
-04
+01
 f0
-af
-06
-ad
-04
 e4
-fb
-12
-17
-f2
+90
+0b
+7e
+f0
+22
 90
 4e
-8e
+96
 ef
 f0
-21
-76
+7b
+01
+7a
+80
+79
+74
+b1
+3f
+92
+09
+90
+4e
+96
+e0
+ff
+a2
+09
+b3
+92
+01
+02
+07
+84
 90
 4c
 f5
-74
-08
+ed
 f0
 a3
-74
-50
+eb
 f0
-ee
+ef
 30
 e0
-08
+12
+90
+4c
+f4
+e0
+b4
+03
+04
+74
+02
+f0
+22
 90
 4c
 f4
 74
 01
 f0
-80
-06
+22
 90
 4c
 f4
 74
 04
 f0
-af
-06
-ad
-04
+22
+ae
+07
 e4
-fb
-12
-17
-f2
 90
 4e
 8e
-ef
+f0
+ed
+f0
+90
+4d
+db
+e0
+64
+01
+60
+02
+01
+c9
+ed
+24
+c6
+b4
+0c
+00
+40
+02
+01
+c9
+90
+18
+2f
+75
+f0
+03
+a4
+c5
+83
+25
+f0
+c5
+83
+73
+02
+18
+53
+02
+18
+5b
+02
+18
+63
+02
+18
+73
+02
+18
+83
+02
+18
+93
+02
+18
+9b
+02
+18
+a3
+02
+18
+ab
+02
+18
+b3
+02
+18
+bb
+02
+18
+c3
+90
+4e
+8e
+74
+d7
 f0
 80
-70
+6e
+90
+4e
+8e
+74
+d8
+f0
+80
+66
 af
 06
-ad
-04
 7b
-d5
+2b
+7d
+04
 12
 17
-f2
+df
+e4
 90
 4e
 8e
-ef
 f0
 80
-60
+56
 af
 06
-ad
-04
 7b
-f4
+07
+7d
+08
 12
 17
-f2
+df
+e4
 90
 4e
 8e
-ef
 f0
 80
-50
+46
 af
 06
-ad
-04
 7b
-f2
+50
+7d
+08
 12
 17
-f2
+df
+e4
 90
 4e
 8e
-ef
 f0
 80
-40
-af
-06
-ad
-04
-7b
-f5
-12
-17
-f2
+36
 90
 4e
 8e
-ef
+74
+d5
 f0
 80
-30
-af
-06
-ad
-04
-7b
-f8
-12
-17
-f2
+2e
 90
 4e
 8e
-ef
+74
+f4
 f0
 80
-20
-af
-06
-ad
-04
-7b
-f6
-12
-17
+26
+90
+4e
+8e
+74
 f2
+f0
+80
+1e
 90
 4e
 8e
-ef
+74
+f5
+f0
+80
+16
+90
+4e
+8e
+74
+f8
+f0
+80
+0e
+90
+4e
+8e
+74
+f6
 f0
 80
-10
-af
-06
-ae
-04
-ad
 06
-7b
-f7
-12
-17
-f2
 90
 4e
 8e
-ef
+74
+f7
 f0
 90
 4e
@@ -6553,8 +6380,8 @@
 f0
 a3
 f0
-b1
-73
+91
+52
 7a
 4d
 79
@@ -6584,7 +6411,7 @@
 79
 bc
 71
-b6
+09
 ef
 60
 16
@@ -6596,8 +6423,8 @@
 bc
 7d
 14
-71
-86
+51
+d9
 ef
 70
 09
@@ -6671,8 +6498,8 @@
 f0
 af
 05
-71
-78
+51
+cb
 a3
 e0
 2f
@@ -6706,8 +6533,8 @@
 19
 e0
 ff
-71
-78
+51
+cb
 90
 4e
 1d
@@ -6773,8 +6600,8 @@
 93
 70
 02
-61
-4c
+41
+9f
 74
 93
 2f
@@ -6828,10 +6655,10 @@
 e0
 70
 04
-61
-44
-61
-44
+41
+97
+41
+97
 90
 4e
 1c
@@ -6919,7 +6746,7 @@
 93
 fd
 11
-12
+04
 90
 4e
 1b
@@ -6937,8 +6764,8 @@
 1b
 e0
 ff
-91
-00
+71
+53
 80
 07
 90
@@ -6946,8 +6773,8 @@
 1b
 e0
 ff
-91
-90
+71
+a9
 90
 4e
 14
@@ -6984,8 +6811,8 @@
 e0
 04
 f0
-41
-6c
+21
+bf
 90
 4d
 e4
@@ -7169,99 +6996,41 @@
 e4
 fe
 ef
-b4
-e7
-08
-90
-4e
-31
-e0
-44
-80
-f0
-22
-ef
-b4
-e6
-08
-90
-4e
-31
+c3
+94
 e0
-44
 40
-f0
-22
-ef
-b4
-e5
-08
-90
-4e
-31
-e0
-44
 20
-f0
-22
-ef
-b4
-e4
-08
-90
-4e
-31
-e0
-44
-10
-f0
-22
-ef
-b4
-e3
-08
-90
-4e
-31
-e0
-44
-08
-f0
-22
 ef
-b4
-e2
-08
+d3
+94
+e7
+50
+1a
 90
 4e
 31
 e0
-44
-04
-f0
-22
+fe
 ef
-b4
-e1
+54
+07
+ff
+74
+01
+a8
+07
 08
-90
-4e
-31
-e0
-44
+80
 02
-f0
-22
-ef
-b4
-e0
-08
+c3
+33
+d8
+fc
+4e
 90
 4e
 31
-e0
-44
-01
 f0
 22
 e4
@@ -7346,99 +7115,41 @@
 01
 f0
 ef
-b4
-e7
-08
-90
-4e
-31
+c3
+94
 e0
-54
-7f
-f0
-22
+40
+20
 ef
-b4
-e6
-08
+d3
+94
+e7
+50
+1a
 90
 4e
 31
 e0
-54
-bf
-f0
-22
+fe
 ef
-b4
-e5
-08
-90
-4e
-31
-e0
-54
-df
-f0
-22
-ef
-b4
-e4
-08
-90
-4e
-31
-e0
-54
-ef
-f0
-22
-ef
-b4
-e3
-08
-90
-4e
-31
-e0
-54
-f7
-f0
-22
-ef
-b4
-e2
-08
-90
-4e
-31
-e0
-54
-fb
-f0
-22
-ef
-b4
-e1
-08
-90
-4e
-31
-e0
 54
-fd
-f0
-22
-ef
-b4
-e0
+07
+ff
+74
+fe
+a8
+07
 08
+80
+02
+c3
+33
+d8
+fc
+5e
 90
 4e
 31
-e0
-54
-fe
 f0
 22
 e4
@@ -7680,8 +7391,8 @@
 5b
 f0
 0f
-a1
 81
+60
 e4
 ff
 ef
@@ -7813,8 +7524,8 @@
 5b
 f0
 0f
-c1
-06
+81
+e5
 e4
 ff
 ef
@@ -7890,687 +7601,336 @@
 b9
 22
 90
-4e
-65
-eb
-f0
-a3
-ea
-f0
-a3
-e9
-f0
-e4
-a3
-f0
-f0
-90
-4e
-68
-e0
-ff
-c3
-94
-06
-40
-03
-02
-21
-4e
-90
-4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-24
+80
+10
+74
 01
-f9
-e4
-3a
-fa
-7e
-00
-e9
-2f
-f9
-ee
-3a
-fa
-12
-03
-b6
-ff
-54
-f0
-64
 f0
-60
-0a
-ef
-54
-d0
-64
-d0
-60
-03
-02
-21
-45
-12
-03
-b6
-fb
-b4
-f1
-0a
-7f
-83
-7e
-01
-12
-17
-d7
-02
-21
-1a
-eb
-b4
-f2
-0a
-7f
-cd
-7e
-00
-12
-17
-d7
-02
-21
-1a
-90
-4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-24
-01
-f9
-e4
-3a
-fa
-a3
-e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-f3
-08
-7f
-b7
-12
-17
-d7
-02
-21
-1a
-eb
-b4
-f4
-0a
-7f
-b6
-7e
-00
-12
-17
-d7
-02
-21
-1a
-90
-4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-24
-01
-f9
-e4
-3a
-fa
-a3
-e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-fb
-b4
+80
+fe
+22
+80
 f5
-08
-7f
-b5
-12
-17
-d7
-02
-21
-1a
-eb
-b4
-f6
-0a
-7f
-ea
-7e
-00
-12
-17
-d7
-02
-21
-1a
 90
 4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-24
-01
-f9
-e4
-3a
-fa
-a3
-e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-f7
-08
-7f
-e9
-12
-17
-d7
-02
-21
-1a
-eb
-b4
-f8
-0a
-7f
-e2
-7e
-00
-12
-17
-d7
-02
-21
-1a
-90
-4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-24
-01
-f9
-e4
-3a
-fa
-a3
-e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-f9
-08
-7f
-94
-0e
-12
-17
-d7
-21
-1a
-eb
-b4
-fa
-09
-7f
-8a
-7e
-01
-12
-17
-d7
-21
-1a
+89
+ed
+f0
 90
-4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-24
-01
-f9
-e4
-3a
-fa
-a3
-e0
-7e
 00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-fb
-08
-7f
-92
-0e
-12
-17
-d7
-21
-1a
-eb
-b4
-d0
-09
-7f
-2a
-7e
-02
-12
-17
-d7
-21
-1a
-90
-4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
-e0
-24
 01
-f9
-e4
-3a
-fa
-a3
-e0
-7e
-00
-29
-f9
-ee
-3a
-fa
 12
 03
-b6
-fb
-b4
-d1
-09
-7f
-25
-7e
-02
-12
-17
-d7
-21
-1a
-eb
-b4
-d3
-09
-7f
-26
-7e
-02
-12
-17
-d7
-21
-1a
+cf
 90
 4e
-65
+8a
+f0
+22
+90
+4c
+c5
 e0
-fb
-a3
+b4
+03
+11
+90
+4c
+e3
 e0
-fa
+64
+0e
+70
+04
 a3
 e0
-24
+64
+10
+70
+2d
+02
+07
+f1
+90
+4c
+c5
+e0
+b4
 01
-f9
-e4
-3a
-fa
+14
+90
+4c
+e3
+e0
+70
+04
 a3
 e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-d2
-09
-7f
-24
-7e
-02
-12
+64
+28
+70
 17
-d7
-80
-75
-eb
-b4
-d4
-09
 7f
-27
-7e
-02
+22
 12
-17
-d7
-80
-68
+07
+f8
+02
+07
+f1
 90
-4e
-65
-e0
-fb
-a3
-e0
-fa
-a3
+4c
+e3
 e0
-24
-01
-f9
-e4
-3a
-fa
+70
+04
 a3
 e0
-7e
-00
-29
-f9
-ee
-3a
-fa
-12
+64
+14
+70
 03
-b6
-fb
-b4
-d5
-09
-7f
-21
-7e
-02
 12
-17
-d7
-80
-3f
-eb
-b4
-d6
-09
-7f
-23
-7e
-02
+07
+f1
+22
 12
-17
-d7
-80
-32
+07
+96
 90
-4e
-65
+4c
+e4
 e0
-fb
-a3
+04
+f0
+70
+06
+90
+4c
+e3
 e0
-fa
-a3
+04
+f0
+d1
+4b
+b1
+cd
+d1
+5c
+90
+4c
+ee
 e0
-24
-01
-f9
+60
+1d
 e4
-3a
-fa
+90
+4c
+e3
+f0
 a3
-e0
-7e
-00
-29
-f9
+f0
+90
+4c
 ee
-3a
-fa
-12
-03
-b6
-fb
-b4
-d7
-07
-7f
+e0
+14
+f0
+e0
 70
+0d
+7f
+22
 12
-17
-d7
-80
-0b
-eb
-b4
-d8
 07
+f8
 7f
-6f
-7e
-00
+0a
 12
-17
-d7
-90
-4d
-e4
-e0
-b4
-02
-24
+10
+9c
+12
+07
+f1
+22
 90
-4e
-65
+4c
+d3
 e0
-fb
-a3
+60
+0a
+14
+f0
 e0
-fa
-a3
+70
+05
+74
+05
+f0
+d1
+e3
+22
+90
+4c
+ce
 e0
-24
-01
-f9
-e4
-3a
-fa
-a3
+30
+e1
+3e
+90
+4c
+d0
 e0
-7e
-00
-29
-f9
-ee
-3a
+c3
+94
 fa
-12
+50
 03
-b6
-90
-4d
-e3
+e0
+04
 f0
-e4
-12
-03
-fc
 90
-4e
-68
+4c
+d0
+e0
+64
+b4
+70
+2f
+90
+4d
+dc
 e0
 04
 f0
+e0
+d3
+94
 02
-1e
-e2
-22
-12
-0e
-df
-31
-6c
+50
+07
+e4
 90
 4c
-eb
-74
-01
+d0
 f0
+80
+1c
 90
-4c
-e5
+4d
+dc
+e0
+b4
+03
+15
+90
+4d
+d5
 74
-1e
+01
 f0
 e4
 90
 4c
+d0
 f0
-f0
+12
+07
+f1
+80
+05
+e4
 90
 4d
-00
-74
-ff
+dc
 f0
-22
 90
 4c
+ce
+e0
+30
+e4
+30
 90
+4c
+ea
 74
-37
+0a
 f0
 90
 4c
-d3
-74
-05
+d1
+e0
+c3
+94
+fa
+50
+03
+e0
+04
 f0
+90
+4c
+d1
+e0
+b4
+06
+1c
+90
+4c
+c3
+e0
+ff
+60
+03
+b4
+fe
+12
+12
+0f
+cb
+7f
+0a
+12
+10
+9c
+7f
+0a
+02
+0f
+eb
 e4
-a3
+90
+4c
+d1
 f0
+22
+90
+4e
+58
+12
+05
+33
+00
+00
+00
+00
+90
+4c
+95
+e0
+fe
+a3
+e0
 ff
-ef
+90
+4c
+d4
+e0
+fd
+04
+f0
+ed
 25
 e0
 24
@@ -8582,109 +7942,124 @@
 4c
 f5
 83
-74
-79
+ee
 f0
 a3
-74
-90
-f0
-0f
 ef
-b4
-04
-e8
+f0
 90
 4c
-8f
+d4
 e0
-64
-02
-60
+c3
+94
+04
+40
 02
-41
-3b
+e4
+f0
+e4
 90
-4c
-91
+4e
+57
+f0
+90
+4e
+58
 e0
-fe
+f8
 a3
 e0
-ff
-c3
+f9
+a3
+e0
+fa
+a3
+e0
+fb
 90
+4e
+57
+e0
+25
+e0
+24
+d6
+f5
+82
+e4
+34
 4c
-94
+f5
+83
 e0
-9f
+fe
+a3
+e0
+ff
+e4
+fc
+fd
+eb
+2f
+ff
+ea
+3e
+fe
+ed
+39
 fd
+ec
+38
+fc
+90
+4e
+58
+12
+05
+27
 90
-4c
-93
+4e
+57
 e0
-9e
-fc
-e4
-12
-02
-06
-7b
-c3
-7a
-f5
-79
-88
-78
-3f
-12
-00
-fb
-c0
 04
-c0
-05
-c0
-06
-c0
-07
+f0
+e0
+b4
+04
+bf
 90
-4c
-91
+4e
+58
 e0
 fc
 a3
 e0
 fd
+a3
+e0
+fe
+a3
+e0
+ff
 e4
+7b
+04
+fa
+f9
+f8
 12
-02
-06
-d0
-03
-d0
-02
-d0
-01
-d0
-00
-12
-00
-0a
-12
-02
-3f
+04
+76
 90
-4c
-de
-ee
-f0
-a3
-ef
-f0
+4e
+58
+12
+05
+27
 90
 4c
-91
+e0
 e0
 fe
 a3
@@ -8693,294 +8068,247 @@
 c3
 90
 4c
-94
+d7
 e0
 9f
-fd
 90
 4c
-93
+d6
 e0
 9e
-fc
-e4
-12
-02
-06
-7b
-ae
-7a
-47
-79
-81
-78
-3f
-12
-00
-fb
-c0
-04
-c0
-05
-c0
-06
-c0
+50
 07
 90
 4c
-91
-e0
-fc
-a3
-e0
-fd
-e4
-12
-02
-06
-d0
-03
-d0
-02
-d0
-01
-d0
-00
-12
-00
-0a
-12
+d5
+74
 02
-3f
-90
-4c
-e0
-ee
-f0
-a3
-ef
 f0
 22
 90
 4c
-8f
-e0
-64
-01
-70
-02
-41
-e1
-90
-4c
-91
+de
 e0
 fe
 a3
 e0
 ff
-c3
-90
-4c
-94
-e0
-9f
+e4
+fc
 fd
 90
-4c
-93
+4e
+58
 e0
-9e
-fc
-e4
-12
-02
-06
-7b
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
 c3
-7a
-f5
-79
-a8
-78
-3e
 12
-00
-fb
-c0
-04
-c0
 05
-c0
-06
-c0
-07
+16
+50
+0d
 90
 4c
-91
-e0
-fc
-a3
-e0
-fd
-e4
-12
-02
-06
-d0
-03
-d0
-02
-d0
+d5
+74
 01
-d0
-00
-12
-00
-0a
+f0
+90
+4d
+3f
+74
 12
-02
+f0
+22
+e4
+90
+4c
+d5
+f0
+90
+4d
 3f
+74
+5d
+f0
+22
 90
 4c
-de
-ee
+ea
+e0
+60
+02
+14
 f0
-a3
+90
+4c
 ef
+e0
+60
+02
+14
 f0
 90
 4c
-91
-e0
-fe
-a3
+e5
 e0
-ff
-c3
+60
+18
+14
+f0
+d2
+01
+7f
+1e
+12
+07
+84
 90
 4c
-94
+e5
 e0
-9f
-fd
+70
+34
+c2
+01
+7f
+1e
+12
+07
+84
+80
+2b
 90
 4c
-93
+ee
 e0
-9e
-fc
-e4
-12
-02
-06
-7b
-5c
-7a
-8f
-79
-42
-78
-3e
-12
-00
-fb
-c0
-04
-c0
-05
-c0
-06
-c0
-07
+70
+25
 90
 4c
-91
+e2
 e0
-fc
-a3
+60
+1f
+14
+f0
 e0
-fd
-e4
-12
-02
-06
-d0
-03
-d0
-02
-d0
+30
+e1
+09
+d2
 01
-d0
-00
+7f
+1e
 12
-00
-0a
+07
+84
+80
+07
+c2
+01
+7f
+1e
 12
-02
-3f
+07
+84
 90
 4c
+e2
 e0
-ee
-f0
-a3
-ef
+70
+03
+74
+04
 f0
-22
 90
-80
-10
-74
+4d
+d5
+e0
+70
+2d
+90
+4d
+d6
+e0
+64
 01
+70
+25
 f0
-80
-fe
-22
-80
-f5
 90
-4e
-89
-ed
-f0
+4d
+e5
+e0
+60
+0d
+7b
+01
+7a
+4d
+79
+e5
+7d
+03
+12
+0d
+83
+80
+11
 90
+48
 00
+e0
+60
+0b
+7b
 01
+7a
+48
+79
+00
+7d
+09
 12
-03
-cf
+0d
+83
 90
-4e
-8a
+4d
+de
+e0
+60
+03
+e0
+14
 f0
 22
 90
-4e
-58
-12
-05
-33
-00
-00
-00
-00
-90
 4c
-95
-e0
-fe
+d3
+74
+05
+f0
+e4
 a3
-e0
-ff
+f0
 90
 4c
-d4
-e0
-fd
-04
+90
+74
+37
 f0
-ed
+e4
+ff
+ef
 25
 e0
 24
@@ -8992,124 +8320,97 @@
 4c
 f5
 83
-ee
+74
+62
 f0
 a3
-ef
-f0
-90
-4c
-d4
-e0
-c3
-94
-04
-40
-02
-e4
-f0
-e4
-90
-4e
-57
 f0
-90
-4e
-58
-e0
-f8
-a3
-e0
-f9
-a3
-e0
-fa
-a3
-e0
-fb
-90
-4e
-57
-e0
-25
-e0
-24
-d6
-f5
-82
-e4
-34
+0f
+ef
+b4
+04
+ea
+90
 4c
-f5
-83
+91
 e0
 fe
 a3
 e0
 ff
-e4
-fc
-fd
-eb
-2f
-ff
-ea
-3e
-fe
-ed
-39
-fd
-ec
-38
-fc
-90
-4e
-58
-12
-05
-27
+c3
 90
-4e
-57
+4c
+94
 e0
-04
-f0
+9f
+fd
+90
+4c
+93
 e0
-b4
+9e
+fc
+e4
+12
+02
+06
+7b
+c3
+7a
+f5
+79
+a8
+78
+3e
+12
+00
+fb
+c0
 04
-bf
+c0
+05
+c0
+06
+c0
+07
 90
-4e
-58
+4c
+91
 e0
 fc
 a3
 e0
 fd
-a3
-e0
-fe
-a3
-e0
-ff
 e4
-7b
-04
-fa
-f9
-f8
 12
-04
-76
-90
-4e
-58
+02
+06
+d0
+03
+d0
+02
+d0
+01
+d0
+00
 12
-05
-27
+00
+0a
+12
+02
+3f
 90
 4c
-e0
+de
+ee
+f0
+a3
+ef
+f0
+90
+4c
+91
 e0
 fe
 a3
@@ -9118,95 +8419,73 @@
 c3
 90
 4c
-d7
+94
 e0
 9f
+fd
 90
 4c
-d6
+93
 e0
 9e
-50
-07
-90
-4c
-d5
-74
+fc
+e4
+12
 02
-f0
-22
+06
+7b
+5c
+7a
+8f
+79
+42
+78
+3e
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
+07
 90
 4c
-de
-e0
-fe
-a3
+91
 e0
-ff
-e4
 fc
-fd
-90
-4e
-58
-e0
-f8
-a3
-e0
-f9
-a3
-e0
-fa
 a3
 e0
-fb
-c3
+fd
+e4
 12
-05
-16
-50
-0d
-90
-4c
-d5
-74
+02
+06
+d0
+03
+d0
+02
+d0
 01
-f0
-90
-4d
-3f
-74
+d0
+00
 12
-f0
-22
-e4
-90
-4c
-d5
-f0
-90
-4d
+00
+0a
+12
+02
 3f
-74
-5d
-f0
-22
 90
 4c
-d3
 e0
-60
-0a
-14
+ee
 f0
-e0
-70
-05
-74
-05
+a3
+ef
 f0
-51
-fd
 22
 90
 4e
@@ -9567,35 +8846,6 @@
 5c
 f0
 22
-90
-4e
-96
-ef
-f0
-7b
-01
-7a
-80
-79
-74
-12
-14
-df
-92
-09
-90
-4e
-96
-e0
-ff
-a2
-09
-b3
-92
-01
-02
-07
-8b
 e4
 ff
 ef
Index: c51/output/ramcode.rom
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/output/ramcode.rom	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/output/ramcode.rom	(working copy)
@@ -1,71 +1,69 @@
 c512800f
 c0000017
-c001801d
-c0028020
-c048014e
-c0490118
-c04a011e
-c04a8108
-c05800ca
-c05880cc
-c05900e0
-c05980fa
-c05b0103
-c05c80d4
+c001801b
+c002801e
+c048014c
+c0490116
+c04a011c
+c04a8106
+c05800c8
+c05880ca
+c05900de
+c05980f8
+c05b0101
+c05c80d2
 20203bf1
-c01f01c1
-c01f81c5
-c04380a9
-c04681d3
-c04781c9
-c0668158
-c06800b4
+c01f01bf
+c01f81c3
+c04380a7
+c04681d1
+c04781c7
+c0668156
+c06800b2
 20203bf1
 6810813b
 60008b81
-58280520
-6001cd4c
 70800608
 20203003
-20400044
-20400025
+20400042
+20400023
 20203015
 20403392
 20403407
 20403024
-204001e9
+204001e7
 20203022
-204000a4
+204000a2
 20740000
 1ff0fe00
 1fe20c00
-20400085
+20400083
 6000cba7
-c0008038
-c0030042
+c0008036
+c0030040
 1fe20400
 18c22200
 6800c040
-c3000035
+c3000033
 1a220c00
 c6848000
 18427e00
 20600000
 1a220c00
 d8a000f8
-2020007d
-20400085
-20400085
+2020007b
+20400083
+20400083
 60008b7d
-2040003d
+2040003b
 20207c33
-20400088
+20400086
 18c20400
 18508400
 60094b9a
 20600000
 d8a00cd5
-2020007d
+2020007b
 680a4c59
 1c427e00
 98467e00
@@ -85,18 +83,18 @@
 1fe17e03
 c1800000
 6800cc8f
-c2800061
-c2808063
+c280005f
+c2808061
 da200000
-20400074
+20400072
 7089718f
 6800cc90
 60108973
-20400064
+20400062
 da200001
-20200074
+20200072
 708971bf
-20200064
+20200062
 708971af
 68108053
 79207e07
@@ -119,19 +117,19 @@
 98460400
 1a227e00
 79200407
-243a007b
+243a0079
 793f8407
 d8a08078
 202069f4
-20400085
+20400083
 1fe27200
-20400081
-2020003d
-20400085
+2040007f
+2020003b
+20400083
 e0a08000
-c2000081
+c200007f
 20600000
-20400088
+20400086
 e8c08000
 20600000
 58004b36
@@ -148,8 +146,8 @@
 1a220c00
 e8c08000
 e0a08000
-2040009c
-c2000094
+2040009a
+c2000092
 18a27e00
 1ff0fe00
 60014ba0
@@ -161,7 +159,7 @@
 20600000
 68014b9e
 68094ba0
-202000a6
+202000a4
 68014b9a
 68094b9c
 98467c00
@@ -172,7 +170,7 @@
 6808c7ef
 6800cd4b
 98467c00
-244100b0
+244100ae
 20207c06
 680a4d48
 600a47ec
@@ -186,8 +184,8 @@
 207a0000
 1fe0ffff
 60008259
-204000be
-202000b8
+204000bc
+202000b6
 6800cc15
 207a0000
 1fe0ffff
@@ -199,7 +197,7 @@
 1a627e00
 207a0000
 6000cba4
-2020008d
+2020008b
 20403b36
 20203cdc
 70416e7f
@@ -240,32 +238,32 @@
 6800c793
 207a0000
 20203d25
-204000a4
+204000a2
 24740000
-204000a1
+2040009f
 24740000
 700b7f01
 700b7e01
-204000ff
-202000a4
-204000f2
+204000fd
+202000a2
+204000f0
 24740000
 68008b7f
 247a0000
 20203d2d
 68008b7e
 2000000a
-c08000ff
+c08000fd
 20600000
-204000f2
+204000f0
 24740000
 68008b7f
 247a0000
 20203d4f
-2040010a
+20400108
 20203aaf
 6800c219
-243a0110
+243a010e
 20403d91
 20007530
 20007530
@@ -284,7 +282,7 @@
 60088017
 1840a200
 20203ab6
-2040011b
+20400119
 58000500
 20403bf3
 70890601
@@ -299,13 +297,13 @@
 2000000a
 7089027d
 6800cbef
-c0ff8136
+c0ff8134
 6802ca91
 e0a28000
 e8c28000
 e0a28000
 708956df
-2040013d
+2040013b
 708955df
 20600000
 6802ca87
@@ -333,7 +331,7 @@
 708956c0
 20600000
 2030ba6f
-20400145
+20400143
 20203a6f
 78347c00
 68120138
@@ -345,15 +343,15 @@
 700b7e00
 70017706
 20403fa4
-58000157
+58000155
 6001428a
-580000c3
+580000c1
 60014292
-580001c8
+580001c6
 60014290
-58000025
+58000023
 6001428c
-58000151
+5800014f
 60014288
 58004aa0
 1ff0fe00
@@ -365,31 +363,31 @@
 60014b9e
 60014ba0
 6800cc97
-c02d0186
-20358184
+c02d0184
+20358182
 68014c91
 1ff0fe00
 60014c91
 68014c93
 1ff0fe00
 60014c93
-20400191
+2040018f
 680402a0
-243a017e
+243a017c
 68014ad4
 1ff0fe00
-203a017e
+203a017c
 60014c93
-204001e6
+204001e4
 704ba42f
-2040008d
+2040008b
 704c9700
 70828003
 20600000
 704ba430
-20200180
+2020017e
 1ce27e00
-203a01cb
+203a01c9
 20405b63
 20404d99
 58000000
@@ -398,7 +396,7 @@
 1c427e00
 60024c59
 704ba433
-20200180
+2020017e
 2040688a
 580007e2
 da2002a0
@@ -408,8 +406,8 @@
 680402a0
 207a0000
 6800cc8f
-c28001a3
-c28081b1
+c28001a1
+c28081af
 680102a0
 1ff0fe00
 60014c91
@@ -456,7 +454,7 @@
 202053d9
 20600000
 700b7e03
-204000ff
+204000fd
 704c975a
 20403db8
 68120138
@@ -472,32 +470,32 @@
 20407c24
 18427e00
 207a0000
-c01081de
-c01101e0
-c01181e3
+c01081dc
+c01101de
+c01181e1
 20207c5a
 704befff
-202002ec
+202002ea
 793f8023
 704befff
-20200266
+20200264
 5fffffff
 60024c00
-202002b7
+202002b5
 58000000
 60024ba9
 20600000
 c6918000
-2040020f
-24340200
+2040020d
+243401fe
 704c150a
-2040022a
+20400228
 6800cbef
 c1ff8000
-20400288
+20400286
 6800cd46
 247a0000
-204000f2
+204000f0
 24740000
 68008b7f
 247a0000
@@ -510,7 +508,7 @@
 20407e8a
 600a41fc
 20203cda
-204000f2
+204000f0
 24740000
 68008b7f
 247a0000
@@ -520,34 +518,34 @@
 6800c131
 207a0000
 6800cc15
-243a01fc
+243a01fa
 68044d3d
 20407e8a
 600a41fc
 20203cda
 6800cbef
-c0ff82c0
-20400215
-20400350
+c0ff82be
+20400213
+2040034e
 704be601
 20600000
 78547c00
 704be202
 68008cd5
-c000821e
-c0010222
-c0018226
+c000821c
+c0010220
+c0018224
 6800cd46
 245a34df
 20600000
 58000000
 60008cd5
 704be10a
-20200228
+20200226
 58000003
 60008cd5
 704be104
-20200228
+20200226
 704be201
 704be108
 704be700
@@ -555,17 +553,17 @@
 704be800
 d9600d00
 34730200
-20400255
-2437823b
-20400269
-2040027a
+20400253
+24378239
+20400267
+20400278
 6800cbe0
 1fe0fe01
 6000cbe0
 704d4600
 6800cbef
-c0ff8253
-2040024d
+c0ff8251
+2040024b
 704be700
 704be600
 20600000
@@ -574,52 +572,52 @@
 1fe0fe01
 6000cbe7
 6800cbef
-c0ff8265
+c0ff8263
 6800cbe7
-c07f8266
+c07f8264
 6800cbe7
 d8400010
 98467c00
-2021036a
+20210368
 6800cbe8
 1fe0fe01
 6000cbe8
 2000000a
-c083822b
-2020036a
+c0838229
+20200368
 58000000
 60048cd5
 20600000
 c591f2b9
 68040cd5
 20600000
-20400277
-202002dc
+20400275
+202002da
 7857fc00
-204003c8
+204003c6
 6800cc0a
-c0008262
+c0008260
 18002a00
 68024c00
 98001200
 68088017
 20403a82
 20403a87
-20400382
-205783c0
+20400380
+205783be
 20600000
 700cb400
 7837fc00
-202003c0
+202003be
 20600000
 704d4600
 700b7d32
 20207c27
-20400312
+20400310
 6800cbdf
 207a0000
 98007200
-20400271
+2040026f
 d8c00cb5
 d8a00d17
 20207e45
@@ -638,7 +636,7 @@
 20600000
 6800cc27
 1fe67c01
-24410286
+24410284
 6800cc27
 c1000000
 1fe0ffff
@@ -647,18 +645,18 @@
 704c2702
 20600000
 da204c2b
-20400332
+20400330
 6008cc29
 280ffe23
-20408296
-2440829a
+20408294
+24408298
 98467c00
-242102ae
+242102ac
 6800cc27
 1fe67c01
-2421029e
+2421029c
 6800cc27
-c00002ae
+c00002ac
 20600000
 58000082
 20600000
@@ -673,49 +671,49 @@
 704c2700
 6808cc29
 280ffe23
-20408298
-2440829c
+20408296
+2440829a
 98467c00
 24610000
 6800cc28
-c00002b5
+c00002b3
 1fe0ffff
 6000cc28
-c00002b5
+c00002b3
 704c3d00
 20600000
 6800cc28
-c00102b3
+c00102b1
 1fe0fe01
 6000cc28
-c00082ac
+c00082aa
 704c3d02
 20600000
 704c3d04
 20600000
 79200023
-204002bc
-20400237
+204002ba
+20400235
 704bef01
 20600000
 704be000
 704be94e
 68024beb
-20200342
-204002bc
+20200340
+204002ba
 6800cbe6
 c000b4df
 6800cbef
-c00082c8
-c00102cb
-c00182ce
+c00082c6
+c00102c9
+c00182cc
 20203bf1
 704bef11
 700d37aa
-202002d0
+202002ce
 704bef12
 700d3755
-202002d0
+202002ce
 704bef13
 700d3722
 6800cbe2
@@ -726,41 +724,41 @@
 700d3d00
 da200d37
 d8400007
-2040030d
-20400350
-20400213
+2040030b
+2040034e
+20400211
 202034df
 6800cbef
 c17f8000
-c00882e2
-c00902e4
-c00982e6
+c00882e0
+c00902e2
+c00982e4
 20600000
 704bef02
-20200237
+20200235
 704bef03
-20200237
+20200235
 704befff
 700b7d31
 20407c27
 68020d19
-20400342
-20200237
+20400340
+20200235
 c6118000
-20400343
-2040036a
+20400341
+20400368
 6800cbef
 c1ff8000
-204002ff
+204002fd
 58000000
 60014c04
 20403cab
 200007d0
 6800cc04
-c07f8266
-20400255
-24378308
-2040024d
+c07f8264
+20400253
+24378306
+2040024b
 704c1303
 79200023
 700b7d3c
@@ -772,13 +770,13 @@
 60020d39
 d8400006
 da200d37
-2040030d
-20200350
+2040030b
+2020034e
 68014c04
 1fe0fe01
 60014c04
-2040036a
-202002f4
+20400368
+202002f2
 6008cbe1
 18427200
 d8a00cd5
@@ -806,7 +804,7 @@
 207a0000
 6808cc3b
 da204c33
-2040032b
+20400329
 6008cc3b
 20600000
 1a227e00
@@ -821,7 +819,7 @@
 1a220c00
 e8c08000
 98408400
-c2000335
+c2000333
 18490400
 1fe20400
 c6918000
@@ -838,7 +836,7 @@
 d8c04c00
 e8c08000
 9a20a200
-c2000346
+c2000344
 1a227e00
 60014c16
 6800cc16
@@ -861,19 +859,19 @@
 9840fe00
 e0a08000
 6800cbef
-c0ff8362
+c0ff8360
 6800cbe2
 e0a08000
 6800cbe1
 98007200
 6800cbe2
-c0008368
+c0008366
 d8c00cd5
 20207e45
 d8c00cd6
 20207e45
 6808cbea
-20400370
+2040036e
 18408401
 18410403
 6008cbea
@@ -896,7 +894,7 @@
 79200401
 18431c00
 20600000
-20400379
+20400377
 7826fc00
 7830fc00
 78507c00
@@ -904,7 +902,7 @@
 68014be4
 98003600
 37c18400
-242c03c3
+242c03c1
 7846fc00
 7825fc00
 7823fc00
@@ -914,27 +912,27 @@
 6000cc19
 6808cc18
 98467c00
-242283c0
+242283be
 09800008
 19897e00
 60008cb3
 6800cc10
 1fe67c02
-2022839f
+2022839d
 68008cb3
 6808cbe2
 a8400e00
-242083c0
+242083be
 09800008
 19897e00
 e0a08000
 1fe97e00
 1fe1721f
-202283a9
+202283a7
 09800008
 19897e00
 e0a08000
-c20003a5
+c20003a3
 18a22200
 09800008
 19897e00
@@ -947,7 +945,7 @@
 1ff17e00
 e0a18000
 7845fc00
-202303c0
+202303be
 7837fc00
 68008017
 1fe0a200
@@ -956,21 +954,21 @@
 20403a7a
 6800cc2a
 1fe22200
-2040031b
+20400319
 20600000
 784dfc00
 7845fc00
 2020375c
-20400324
-202003c0
+20400322
+202003be
 20403a7a
 6808cbe9
 20203a91
 204053d2
 68024c00
 98001200
-20400379
-204003c5
+20400377
+204003c3
 79202a00
 782efc00
 78307c00
@@ -990,7 +988,7 @@
 d8c00cf5
 e8c08000
 08008608
-c20003de
+c20003dc
 78247c00
 08008618
 78447c00
Index: c51/output/sched.rom
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/output/sched.rom	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/output/sched.rom	(working copy)
@@ -1,390 +1,207 @@
+0016:27
+
+00a2:00
+00a3:00 00 00 00 00 00 00 00
+07dc:00
+07dd:00
+0d37:00 00 00 00 00 00 00 00 00 00
 4000:
-29   #mem_patch00
-00   #mem_patch01
-00   #mem_patch02
-00   #mem_patch03
-00   #mem_patch04
-00   #mem_patch05
-00   #mem_patch06
-00   #mem_patch07
-00   #mem_patch08
-00   #mem_patch09
-00   #mem_patch0A
-00   #mem_patch0B
-00   #mem_patch0C
-00   #mem_patch0D
-00   #mem_patch0E
-00   #mem_patch0F
-00   #mem_patch10
-00   #mem_patch11
-35   #mem_patch12
-00   #mem_patch13
-00   #mem_patch14
-00   #mem_patch15
-4f   #mem_patch16
-02   #mem_patch17
-00   #mem_patch18
-00   #mem_patch19
-00   #mem_patch1A
-00   #mem_patch1B
-00   #mem_patch1C
-00   #mem_patch1D
-00   #mem_patch1E
-00   #mem_patch1F
-00   #mem_patch20
-00   #mem_patch21
-00   #mem_patch22
-00   #mem_patch23
-00   #mem_patch24
-00   #mem_patch25
-00   #mem_patch26
-c0   #mem_patch27
-00   #mem_patch28
-00   #mem_patch29
-00   #mem_patch2A
-00   #mem_patch2B
-00   #mem_patch2C
-00  #mem_patch2D
-00   #mem_patch2E
-00   #mem_patch2F
-80   #mem_patch30
-a0   #mem_patch31
-00   #mem_patch32
-00   #mem_patch33
-00   #mem_patch34
-00   #mem_patch35
-00   #mem_patch36
-00   #mem_patch37
-00   #mem_patch38
-20   #mem_patch39
-01   #mem_patch3A
-00   #mem_patch3B
-00   #mem_patch3C
-00   #mem_patch3D
-00   #mem_patch3E
-00   #mem_patch3F
+29   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+35   
+00   
+00   
+00   
+4f   
+02   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+c0   
+00   
+00   
+00   
+00   
+00   
+00  
+00   
+00   
+80   
+a0   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+20   
+01   
+00   
+00   
+00   
+00   
+00   
 
 4131:01
-4213:40
-4214:03
-41f7:0a
-41f5:10 00
-4133:00
-4cb1:00 00
-
-414a: 40 25 00
-
-4140:36 08 c2 08 66 22    
-4702:
-'BT3.0 Keyboard
-4280:0e 00
-4282:01
-4284:01
-4747:0a
-47dc:00
-47f6:01
-
-4172:01
-
-475b:
-06
-03#Type: Complete list of 16-bit UUIDs
-1100 0001 0210 2411  0012  0100
-
-4771:00
-
-#keyboard uuid
-4811:
-#uuids
-04 0011 0100 1002 1124
-
-#handle
-00010000
-
-#total length
-3601b6
-
-#attribute start, first 4 digit is attribute ID
-090000 0a 00010000
-090001 3503 191124
-090004 350d 3506 190100 090011 3503 190011
-090005 3503 191002
-090006 3509 09656e 09006a 090100
-090009 3508 3506 191124 090100
-09000d 350f 350d 3506 190100 090013 3503 190011
-
-#Service Name
-#090100 2517
-#'Apple Wireless Keyboard
-#41 70 70 6c 65 20 57 69 72 65 6c 65 73 73 20 4b 65 79 62 6f 61 72 64
-#Service Name
-090100 253d
-#'Broadcom Bluetooth Wireless  Keyboard                        
-4272 6f61 6463 6f6d 2042 6c75 6574 6f6f 7468 2057 6972 656c 6573 7320 204b 6579 626f 6172 6420 
-2020 2020 2020 2020 2020 2020 2020 2020 2020 2020 2020 20
-
-#Service Description
-090101 2508
-#'Keyboard
-4b6579626f617264
-
-#Provider Name
-#090102 250a
-#'Apple Inc.
-#41 70 70 6c 65 20 49 6e 63 2e
-#Provider Name
-090102 2510
-#'Broadcom Corp.  
-4272 6f61 6463 6f6d 2043 6f72 702e 2020
-
-090200 090100
-090201 090111
-090202 0840
-090203 0821
-090204 2801
-090205 2801
-090206 35a5 35a3 0822 259f
-
-# hid descriptor
-0501 # Usage Page(Generic Desktop)
-0906 # Usage(Keyboard)
-a101 # Collection(Application)
-8501 # Report ID(1)
-7501 # Report Size(1)
-9508 # Report Count(8)
-0507 # Usage Page(Keyboard/Keypad)
-19e0 # Usage Minimum(224)
-29e7 # Usage Maximum(231)
-1500 # Logical Minimum(0)
-2501 # Logical Maximum(1)
-8102 # Input(Data Variable Absolute) ; Modifier byte
-9501 # Report Count(1)
-7508 # Report Size(8)
-8103 # Input(Constant Variable Absolute) ; 
-9505 # Report Count(5)
-7501 # Report Size(1)
-0508 # Usage Page(LEDs)
-1901 # Usage Minimum(1)
-2905 # Usage Maximum(5)
-9102 # Output(Data Variable Absolute) ; LED report
-9501 # Report Count(1)
-7503 # Report Size(3)
-9103 # Output(Constant Variable Absolute) ; 
-9506 # Report Count(6)
-7508 # Report Size(8)
-1500 # Logical Minimum(0)
-25ff # Logical Maximum(255)
-0507 # Usage Page(Keyboard/Keypad)
-1900 # Usage Minimum(0)
-29ff # Usage Maximum(255)
-8100 # Input(Data Array) ; Key arrarys 6 bytes
-c0 # End Collection
-
-05 0c  		
-09 01  		
-a1 01	
-85 02			
-19 00  		
-2a ff 03 
-15 00 
-26 ff 03		
-95 01  		
-75 10  			
-81 00  		
-c0
-
-#29
-#05 01
-#09 80
-#A1 01
-#85 03
-#15 00
-#25 01
-#75 01
-#95 03
-#19 81
-#29 83
-#81 02
-#95 01
-#75 05
-#81 03
-#C0
-
-#69
-05 01 # Usage Page(Generic Desktop)
-09 02 # Usage(Mouse)
-a1 01 # Collection(Application)
-85 03 # Report ID(3)
-09 01 # Usage(Pointer)
-a1 00 # Collection(Physical)
-05 09 # Usage Page(Buttons)
-19 01 # Usage Minimum(1)
-29 08 # Usage Maximum(8)
-15 00 # Logical Minimum(0)
-25 01 # Logical Maximum(1)
-75 01 # Report Size(1)
-95 08 # Report Count(8)
-81 02 # Input(Data Variable Absolute)
-05 01 # Usage Page(Generic Desktop)
-09 30 # Usage(X)
-09 31 # Usage(Y)
-16 01 80  #Logical Minimum (-32767)
-26 FF 7F #Logical Maximum (32767) 
-75 10 # Report Size(16)
-95 02 # Report Count(2)
-81 06 # Input(Data Variable Relative)
-09 38 # Usage(Wheel)
-15 81 # Logical Minimum(-127)
-25 7f # Logical Maximum(127)
-75 08 # Report Size(8)
-95 01 # Report Count(1)
-81 06 # Input(Data Variable Relative)
-
-05 0c  #USAGE_PAGE(Consumer Devices)
-0a 38 02
-95 01   #REPORT_COUNT (1)	
-81 06  #INPUT (Data,Var,Rel)
-
-c0 # End Collection
-c0 # End Collection
-
-090207 3508 3506 090409 090100
-09020b 090100
-09020c 090c80
-09020d 2800
-09020e 2801
-09020f 090318
-090210 090000
-#attribute end
-
-#uuids for pnpInformation	
-03 1002 1200 0001
-
-#handle
-00010001
-
-#total length 90 bytes
-3600a1
-
-#attribute list
-090000 0a00010001
-090001 3503 191200
-090004 350d 3506 190100 090001 3503 190001
-090006 3509 09656e 09006a 090100
-090009 3508 3506 191200 090100
-090100 252f42726f6164636f6d20426c7565746f6f746820576972656c657373204b6579626f61726420506e5020536572766572
-090101 25084b6579626f617264
-090200 090103
-090201# VendorID
-090a5c
-090202#ProductID
-098502
-090203 090001
-090204 2801
-090205 090002
-
-#attribute end
-00
-
-#Auto reconnection after power on
-
-4759:11 48
-#Auto reconnection after power on
-4132:43
-41fb:0
+43
 4138:
 ff
 ff
 8f
-f8	#fe--EDR  F8--BR
-83	#AFHclose 83
+f8	
+83	
 9d
 59
 82
 
-#bluetootch param init
-07dc:00
-00a2:00
-07dd:00
-0016:27
 
-47fd:ff
-47f7:ff
+36 08 c2 08 66 22    
+414a: 40 25 00
+
+12 00
+00 02
+12 00
+00 02
+00 00 
+20 00
+00 20
+20 00
+02
+24
+80 03
+00 06
+70 4f
 
 416e:80
 
 
-4ba2:02 01
+00 00 00 
+01
+
+41f5:10 00
+0a
+4213:40
+03
+00 00 00 00 
+00 0a 0b ef 0f
+4280:0e 00
+01
+00 
+01
+429b:30 3f
+42aa:20
 
+43d9:1f
 
-4c91:9f 3e
-4c93:cd 4d
-4c8f:04    #01 VINLPM      #02 HVIN      #04 GPIO
+
+02 01 05 03 19 c1 03 03 03 12 18
+'\09BT4.2 Keyboard
+
+43f9:1f
+
+'\09BT4.2 Keyboard
+
+4419:
+'BT4.2 Keyboard
+
+44c2:14
+44dd:01
+
+44e4:07 
+44f9:11 46 34 54 77 dd
 
 
-#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
 4504:
 
-#Primary service: GATT
+
 01 00 00 28 02 01 18
-#Characteristic: Service changed
+
 02 00 03 28 01 20
 03 00 05 2a 01 00
-#Client Characteristic Configuration
+
 04 00 02 29 02 00 00
 
-#Primary Service: GAP
+
 05 00 00 28 02 00 18 
-#Characteristic: Device Name
+
 06 00 03 28 01 02 
 07 00 00 2a 
 'BT4.2 Keyboard
 
-#Characteristic: Appearance
+
 08 00 03 28 01 02 
 09 00 01 2a 02 c1 03 
-#Characteristic: Peripheral Preferred Connection Parameters
+
 0a 00 03 28 01 02
-0b 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+0b 00 04 2a 08 06 00 06 00 64 00 2c 01 
+
 
-#Primary Service: Device Information
 0c 00 00 28 02 0a 18 
-#Characteristic: pnp id
+
 0d 00 03 28 01 02
-0e 00 50 2a 07 02 8a 24 66 82 01 00
+0e 00 50 2a 07 02 e8 04 21 70 01 00		
+
 
-#Primary service: HID
 0f 00 00 28 02 12 18
-#Characteristic:Protocol mode
+
 10 00 03 28 01 06
 11 00 4e 2a 01 01
-#Characteristic: hid report
+
 12 00 03 28 01 12   
-13 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+13 00 4d 2a 08 00 00 00 00 00 00 00 00	
 14 00 02 29 02 00 00	
-15 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
-#Characteristic:hid report
+15 00 08 29 02 01 01	
+
 16 00 03 28 01 12   
-17 00 4d 2a 02 00 00 	#hid report	led handle write
+17 00 4d 2a 02 00 00 	
 18 00 02 29 02 00 00	
-19 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+19 00 08 29 02 02 01	
+
 
-#Characteristic:hid report
 1a 00 03 28 01 12  
 1b 00 4d 2a 05 00 00 00 00 00
 1c 00 02 29 02 00 00
-1d 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+1d 00 08 29 02 03 01	
+
 
-#Characteristic:hid report
 1e 00 03 28 01 0e   
-1f 00 4d 2a 02 00	00	#hid report	led handle write
+1f 00 4d 2a 02 00	00	
 20 00 02 29 02 00 00	
-21 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+21 00 08 29 02 01 02	
+
 
-#Characteristic:Report map
 22 00 03 28 01 0a
 23 00 4b 2a a0
-#66
+
 05 01
 09 06
 a1 01
@@ -419,7 +236,7 @@
 81 00
 c0 
 
-#25
+
 05 0c  		
 09 01  		
 a1 01	
@@ -433,157 +250,356 @@
 81 00  		
 c0
 
-#29
-#05 01
-#09 80
-#A1 01
-#85 03
-#15 00
-#25 01
-#75 01
-#95 03
-#19 81
-#29 83
-#81 02
-#95 01
-#75 05
-#81 03
-#C0
-
-#60
-05 01 # Usage Page(Generic Desktop)
-09 02 # Usage(Mouse)
-a1 01 # Collection(Application)
-85 03 # Report ID(3)
-09 01 # Usage(Pointer)
-a1 00 # Collection(Physical)
-05 09 # Usage Page(Buttons)
-19 01 # Usage Minimum(1)
-29 08 # Usage Maximum(8)
-15 00 # Logical Minimum(0)
-25 01 # Logical Maximum(1)
-75 01 # Report Size(1)
-95 08 # Report Count(8)
-81 02 # Input(Data Variable Absolute)
-05 01 # Usage Page(Generic Desktop)
-09 30 # Usage(X)
-09 31 # Usage(Y)
-16 01 80  #Logical Minimum (-32767)
-26 FF 7F #Logical Maximum (32767) 
-75 10 # Report Size(16)
-95 02 # Report Count(2)
-81 06 # Input(Data Variable Relative)
-09 38 # Usage(Wheel)
-15 81 # Logical Minimum(-127)
-25 7f # Logical Maximum(127)
-75 08 # Report Size(8)
-95 01 # Report Count(1)
-81 06 # Input(Data Variable Relative)
 
-05 0c  #USAGE_PAGE(Consumer Devices)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+05 01 
+09 02 
+a1 01 
+85 03 
+09 01 
+a1 00 
+05 09 
+19 01 
+29 08 
+15 00 
+25 01 
+75 01 
+95 08 
+81 02 
+05 01 
+09 30 
+09 31 
+16 01 80  
+26 FF 7F 
+75 10 
+95 02 
+81 06 
+09 38 
+15 81 
+25 7f 
+75 08 
+95 01 
+81 06 
+
+05 0c  
 0a 38 02
-95 01   #REPORT_COUNT (1)	
-81 06  #INPUT (Data,Var,Rel)
+95 01   
+81 06  
+
+c0 
+c0 
 
-c0 # End Collection
-c0 # End Collection
 
-#Characteristic:Hid information
 24 00 03 28 01 02
 25 00 4a 2a 04 11 01 00 01        
-#Characteristic
+
 26 00 03 28 01 04
 27 00 4c 2a 01 00
 
-#Primary Service: BAS
+
 28 00 00 28 02 0f 18 
-#Characteristic: Battery Level
+
 29 00 03 28 01 12 
 2a 00 19 2a 01 64 
-#Client Characteristic Configuration
+
 2b 00 02 29 02 00 00 
-#End of Attribute list
+
 00 00
 
 
-4c6a:17
 46f9:50
-44c2:14
-44f9:11 46 34 54 77 dd
+4702:
+'BT3.0 Keyboard
+4747:0a
+4759:11 48
 
 
-4c7e:00
-4cb8:13 00
-4cba:17 00
-4cbc:1b 00
-4c60:50
+06
+03
+1100 0001 0210 2411  0012  0100
 
-4c6c:
-0c 00 #Length
-05 00 #CID
-12 b4 
-08 00 
-10 00 #min interval
-10 00 #max interval
-00 00 #latency
-2c 01 #timeout
+47f6:01
+
+ff
+
+47fd:ff
+4811:
+
+04 0011 0100 1002 1124
+
+
+00010000
+
+
+3601b6
+
+
+090000 0a 00010000
+090001 3503 191124
+090004 350d 3506 190100 090011 3503 190011
+090005 3503 191002
+090006 3509 09656e 09006a 090100
+090009 3508 3506 191124 090100
+09000d 350f 350d 3506 190100 090013 3503 190011
+
+
+
+
+
+
+090100 253d
+
+4272 6f61 6463 6f6d 2042 6c75 6574 6f6f 7468 2057 6972 656c 6573 7320 204b 6579 626f 6172 6420 
+2020 2020 2020 2020 2020 2020 2020 2020 2020 2020 2020 20
+
+
+090101 2508
+
+4b6579626f617264
 
-4419:
-'BT4.2 Keyboard
 
-44e4:07 
-44dd:01
-#mem_le_adv_interval_max:00 01
-43d9:1f
-43da:
-#02 01 05 05 02 12 18 0f 18 03 19 c1 03
-02 01 05 03 19 c1 03 03 03 12 18
-'\09BT4.2 Keyboard
 
-43f9:1f
-43fa:
-'\09BT4.2 Keyboard
 
 
-#24g init
-4c10:01#tx
-4be2:02        #mouse 1,kb 2
-4c0f:4#max tx retry
-4c0a:00#with ack
-4be4:c0 12     #400us 
-4bf0:00 13 2c 42
-4bf4:06 15 36 48
-4bf8:0f 1a 3a 4c
-4bfc:11 23 31 4d
-4bef:ff
+
+090102 2510
+
+4272 6f61 6463 6f6d 2043 6f72 702e 2020
+
+090200 090100
+090201 090111
+090202 0840
+090203 0821
+090204 2801
+090205 2801
+090206 35a5 35a3 0822 259f
+
+
+0501 
+0906 
+a101 
+8501 
+7501 
+9508 
+0507 
+19e0 
+29e7 
+1500 
+2501 
+8102 
+9501 
+7508 
+8103 
+9505 
+7501 
+0508 
+1901 
+2905 
+9102 
+9501 
+7503 
+9103 
+9506 
+7508 
+1500 
+25ff 
+0507 
+1900 
+29ff 
+8100 
+c0 
+
+05 0c  		
+09 01  		
+a1 01	
+85 02			
+19 00  		
+2a ff 03 
+15 00 
+26 ff 03		
+95 01  		
+75 10  			
+81 00  		
+c0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+05 01 
+09 02 
+a1 01 
+85 03 
+09 01 
+a1 00 
+05 09 
+19 01 
+29 08 
+15 00 
+25 01 
+75 01 
+95 08 
+81 02 
+05 01 
+09 30 
+09 31 
+16 01 80  
+26 FF 7F 
+75 10 
+95 02 
+81 06 
+09 38 
+15 81 
+25 7f 
+75 08 
+95 01 
+81 06 
+
+05 0c  
+0a 38 02
+95 01   
+81 06  
+
+c0 
+c0 
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 090c80
+09020d 2800
+09020e 2801
+09020f 090318
+090210 090000
+
+
+
+03 1002 1200 0001
+
+
+00010001
+
+
+3600a1
+
+
+090000 0a00010001
+090001 3503 191200
+090004 350d 3506 190100 090001 3503 190001
+090006 3509 09656e 09006a 090100
+090009 3508 3506 191200 090100
+090100 252f42726f6164636f6d20426c7565746f6f746820576972656c657373204b6579626f61726420506e5020536572766572
+090101 25084b6579626f617264
+090200 090103
+090201
+0904e8
+090202
+097021
+090203 090001
+090204 2801
+090205 090002
+
+
+00
+
+
+
+
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+4ba2:02 01
+
+
+
+
+
+4be2:02        
+00 
+c0 12     
 4beb:20 15 10 05
-0d37:00 00 00 00 00 00 00 00 00 00
-4d3d:00 48 5d 00 00 00 00 00#10 minmem_lpm_config:8f 10 ce
-4219:00 0a 0b ef 0f
-41f8:00
-00a3:00 00 00 00 00 00 00 00
-415d:02
-415e:24
-414d:12 00
-414f:00 02
-4151:12 00
-4153:00 02
-415b:20 00
-4157:20 00
-4159:00 20
-415f:80 03
-4161:00 06
-4c98:00 13
+ff
+00 13 2c 42
+06 15 36 48
+0f 1a 3a 4c
+11 23 31 4d
+4c0f:4
+00 
+01
+4c60:50
+
+4c6a:17
+00 
+
+0c 00 
+05 00 
+12 b4 
+08 00 
+10 00 
+10 00 
+00 00 
+2c 01 
+
+4c8f:04    
+
+
+00 
+9f 3e
+cd 4d
+00 00 00 
+00 13
+
+4cb8:13 00
+17 00
+1b 00
+4d3d:00 48 5d 00 00 00 00 00
+4d4c:20 20 06 12		
 
-429b:30 3f
-42aa:20
-#pointers to tail space of mem_le_att_list
 4f70:
-07 ff #2M_IF
+07 ff 
 0a fb
 0b ff 
 
-#agc table
+
 1a fb
 1b fb
 1c fb
@@ -636,33 +652,16 @@
 4e ec
 4f 5e
 
-# tx power
+
 55 d0
 56 c0
 57 4c
 58 6c
 59 50
 
-#dpll
+
 68 e4
 69 00
 6a 00
 6b 30
 ff
-4163:70 4f
-
-46ee:
-4a91:
-55 d0
-56 c0
-57 4c
-58 6c
-59 50
-
-4a87:
-55 d0
-56 c0
-57 4c
-58 6c
-59 50
-
Index: c51/patch/adc.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/bluetooth.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/global_variable.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/kb.dat
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/patch/kb.dat	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/patch/kb.dat	(working copy)
@@ -276,9 +276,9 @@
 090101 25084b6579626f617264
 090200 090103
 090201# VendorID
-090a5c
+0904e8
 090202#ProductID
-098502
+097021
 090203 090001
 090204 2801
 090205 090002
@@ -317,9 +317,6 @@
 mem_ipc_tx_evt_buff:02 01
 
 
-mem_adc_0v:9f 3e
-mem_adc_3v:cd 4d
-mem_adc_config_flag:04    #01 VINLPM      #02 HVIN      #04 GPIO
 
 
 #attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
@@ -351,7 +348,7 @@
 0c 00 00 28 02 0a 18 
 #Characteristic: pnp id
 0d 00 03 28 01 02
-0e 00 50 2a 07 02 8a 24 66 82 01 00
+0e 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
 
 #Primary service: HID
 0f 00 00 28 02 12 18
@@ -544,6 +541,11 @@
 mem_le_scan_data:
 '\09BT4.2 Keyboard
 
+mem_version_yy_mm_dd:20 20 06 12		#version data 20200612
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:04    #01 VINLPM      #02 HVIN      #04 GPIO
 
 #24g init
 mem_24g_mode:01#tx
Index: c51/patch/kb_process.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/keyboard.format
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/patch/keyboard.format	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/patch/keyboard.format	(working copy)
@@ -167,7 +167,7 @@
 1 mem_mouse_retry_flag
 1 mem_adc_pu_bit
 4 mem_ui_timer_last_btclk_temp
-3 mem_version_yy_mm_dd
+4 mem_version_yy_mm_dd
 )
 
 //C51 synchronous task
Index: c51/patch/keyscan.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/led.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/ram.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/patch/ramcode.rom
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/patch/ramcode.rom	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/patch/ramcode.rom	(working copy)
@@ -1,71 +1,69 @@
 c512800f
 c0000017
-c001801d
-c0028020
-c048014e
-c0490118
-c04a011e
-c04a8108
-c05800ca
-c05880cc
-c05900e0
-c05980fa
-c05b0103
-c05c80d4
+c001801b
+c002801e
+c048014c
+c0490116
+c04a011c
+c04a8106
+c05800c8
+c05880ca
+c05900de
+c05980f8
+c05b0101
+c05c80d2
 20203bf1
-c01f01c1
-c01f81c5
-c04380a9
-c04681d3
-c04781c9
-c0668158
-c06800b4
+c01f01bf
+c01f81c3
+c04380a7
+c04681d1
+c04781c7
+c0668156
+c06800b2
 20203bf1
 6810813b
 60008b81
-58280520
-6001cd4c
 70800608
 20203003
-20400044
-20400025
+20400042
+20400023
 20203015
 20403392
 20403407
 20403024
-204001e9
+204001e7
 20203022
-204000a4
+204000a2
 20740000
 1ff0fe00
 1fe20c00
-20400085
+20400083
 6000cba7
-c0008038
-c0030042
+c0008036
+c0030040
 1fe20400
 18c22200
 6800c040
-c3000035
+c3000033
 1a220c00
 c6848000
 18427e00
 20600000
 1a220c00
 d8a000f8
-2020007d
-20400085
-20400085
+2020007b
+20400083
+20400083
 60008b7d
-2040003d
+2040003b
 20207c33
-20400088
+20400086
 18c20400
 18508400
 60094b9a
 20600000
 d8a00cd5
-2020007d
+2020007b
 680a4c59
 1c427e00
 98467e00
@@ -85,18 +83,18 @@
 1fe17e03
 c1800000
 6800cc8f
-c2800061
-c2808063
+c280005f
+c2808061
 da200000
-20400074
+20400072
 7089718f
 6800cc90
 60108973
-20400064
+20400062
 da200001
-20200074
+20200072
 708971bf
-20200064
+20200062
 708971af
 68108053
 79207e07
@@ -119,19 +117,19 @@
 98460400
 1a227e00
 79200407
-243a007b
+243a0079
 793f8407
 d8a08078
 202069f4
-20400085
+20400083
 1fe27200
-20400081
-2020003d
-20400085
+2040007f
+2020003b
+20400083
 e0a08000
-c2000081
+c200007f
 20600000
-20400088
+20400086
 e8c08000
 20600000
 58004b36
@@ -148,8 +146,8 @@
 1a220c00
 e8c08000
 e0a08000
-2040009c
-c2000094
+2040009a
+c2000092
 18a27e00
 1ff0fe00
 60014ba0
@@ -161,7 +159,7 @@
 20600000
 68014b9e
 68094ba0
-202000a6
+202000a4
 68014b9a
 68094b9c
 98467c00
@@ -172,7 +170,7 @@
 6808c7ef
 6800cd4b
 98467c00
-244100b0
+244100ae
 20207c06
 680a4d48
 600a47ec
@@ -186,8 +184,8 @@
 207a0000
 1fe0ffff
 60008259
-204000be
-202000b8
+204000bc
+202000b6
 6800cc15
 207a0000
 1fe0ffff
@@ -199,7 +197,7 @@
 1a627e00
 207a0000
 6000cba4
-2020008d
+2020008b
 20403b36
 20203cdc
 70416e7f
@@ -240,32 +238,32 @@
 6800c793
 207a0000
 20203d25
-204000a4
+204000a2
 24740000
-204000a1
+2040009f
 24740000
 700b7f01
 700b7e01
-204000ff
-202000a4
-204000f2
+204000fd
+202000a2
+204000f0
 24740000
 68008b7f
 247a0000
 20203d2d
 68008b7e
 2000000a
-c08000ff
+c08000fd
 20600000
-204000f2
+204000f0
 24740000
 68008b7f
 247a0000
 20203d4f
-2040010a
+20400108
 20203aaf
 6800c219
-243a0110
+243a010e
 20403d91
 20007530
 20007530
@@ -284,7 +282,7 @@
 60088017
 1840a200
 20203ab6
-2040011b
+20400119
 58000500
 20403bf3
 70890601
@@ -299,13 +297,13 @@
 2000000a
 7089027d
 6800cbef
-c0ff8136
+c0ff8134
 6802ca91
 e0a28000
 e8c28000
 e0a28000
 708956df
-2040013d
+2040013b
 708955df
 20600000
 6802ca87
@@ -333,7 +331,7 @@
 708956c0
 20600000
 2030ba6f
-20400145
+20400143
 20203a6f
 78347c00
 68120138
@@ -345,15 +343,15 @@
 700b7e00
 70017706
 20403fa4
-58000157
+58000155
 6001428a
-580000c3
+580000c1
 60014292
-580001c8
+580001c6
 60014290
-58000025
+58000023
 6001428c
-58000151
+5800014f
 60014288
 58004aa0
 1ff0fe00
@@ -365,31 +363,31 @@
 60014b9e
 60014ba0
 6800cc97
-c02d0186
-20358184
+c02d0184
+20358182
 68014c91
 1ff0fe00
 60014c91
 68014c93
 1ff0fe00
 60014c93
-20400191
+2040018f
 680402a0
-243a017e
+243a017c
 68014ad4
 1ff0fe00
-203a017e
+203a017c
 60014c93
-204001e6
+204001e4
 704ba42f
-2040008d
+2040008b
 704c9700
 70828003
 20600000
 704ba430
-20200180
+2020017e
 1ce27e00
-203a01cb
+203a01c9
 20405b63
 20404d99
 58000000
@@ -398,7 +396,7 @@
 1c427e00
 60024c59
 704ba433
-20200180
+2020017e
 2040688a
 580007e2
 da2002a0
@@ -408,8 +406,8 @@
 680402a0
 207a0000
 6800cc8f
-c28001a3
-c28081b1
+c28001a1
+c28081af
 680102a0
 1ff0fe00
 60014c91
@@ -456,7 +454,7 @@
 202053d9
 20600000
 700b7e03
-204000ff
+204000fd
 704c975a
 20403db8
 68120138
@@ -472,32 +470,32 @@
 20407c24
 18427e00
 207a0000
-c01081de
-c01101e0
-c01181e3
+c01081dc
+c01101de
+c01181e1
 20207c5a
 704befff
-202002ec
+202002ea
 793f8023
 704befff
-20200266
+20200264
 5fffffff
 60024c00
-202002b7
+202002b5
 58000000
 60024ba9
 20600000
 c6918000
-2040020f
-24340200
+2040020d
+243401fe
 704c150a
-2040022a
+20400228
 6800cbef
 c1ff8000
-20400288
+20400286
 6800cd46
 247a0000
-204000f2
+204000f0
 24740000
 68008b7f
 247a0000
@@ -510,7 +508,7 @@
 20407e8a
 600a41fc
 20203cda
-204000f2
+204000f0
 24740000
 68008b7f
 247a0000
@@ -520,34 +518,34 @@
 6800c131
 207a0000
 6800cc15
-243a01fc
+243a01fa
 68044d3d
 20407e8a
 600a41fc
 20203cda
 6800cbef
-c0ff82c0
-20400215
-20400350
+c0ff82be
+20400213
+2040034e
 704be601
 20600000
 78547c00
 704be202
 68008cd5
-c000821e
-c0010222
-c0018226
+c000821c
+c0010220
+c0018224
 6800cd46
 245a34df
 20600000
 58000000
 60008cd5
 704be10a
-20200228
+20200226
 58000003
 60008cd5
 704be104
-20200228
+20200226
 704be201
 704be108
 704be700
@@ -555,17 +553,17 @@
 704be800
 d9600d00
 34730200
-20400255
-2437823b
-20400269
-2040027a
+20400253
+24378239
+20400267
+20400278
 6800cbe0
 1fe0fe01
 6000cbe0
 704d4600
 6800cbef
-c0ff8253
-2040024d
+c0ff8251
+2040024b
 704be700
 704be600
 20600000
@@ -574,52 +572,52 @@
 1fe0fe01
 6000cbe7
 6800cbef
-c0ff8265
+c0ff8263
 6800cbe7
-c07f8266
+c07f8264
 6800cbe7
 d8400010
 98467c00
-2021036a
+20210368
 6800cbe8
 1fe0fe01
 6000cbe8
 2000000a
-c083822b
-2020036a
+c0838229
+20200368
 58000000
 60048cd5
 20600000
 c591f2b9
 68040cd5
 20600000
-20400277
-202002dc
+20400275
+202002da
 7857fc00
-204003c8
+204003c6
 6800cc0a
-c0008262
+c0008260
 18002a00
 68024c00
 98001200
 68088017
 20403a82
 20403a87
-20400382
-205783c0
+20400380
+205783be
 20600000
 700cb400
 7837fc00
-202003c0
+202003be
 20600000
 704d4600
 700b7d32
 20207c27
-20400312
+20400310
 6800cbdf
 207a0000
 98007200
-20400271
+2040026f
 d8c00cb5
 d8a00d17
 20207e45
@@ -638,7 +636,7 @@
 20600000
 6800cc27
 1fe67c01
-24410286
+24410284
 6800cc27
 c1000000
 1fe0ffff
@@ -647,18 +645,18 @@
 704c2702
 20600000
 da204c2b
-20400332
+20400330
 6008cc29
 280ffe23
-20408296
-2440829a
+20408294
+24408298
 98467c00
-242102ae
+242102ac
 6800cc27
 1fe67c01
-2421029e
+2421029c
 6800cc27
-c00002ae
+c00002ac
 20600000
 58000082
 20600000
@@ -673,49 +671,49 @@
 704c2700
 6808cc29
 280ffe23
-20408298
-2440829c
+20408296
+2440829a
 98467c00
 24610000
 6800cc28
-c00002b5
+c00002b3
 1fe0ffff
 6000cc28
-c00002b5
+c00002b3
 704c3d00
 20600000
 6800cc28
-c00102b3
+c00102b1
 1fe0fe01
 6000cc28
-c00082ac
+c00082aa
 704c3d02
 20600000
 704c3d04
 20600000
 79200023
-204002bc
-20400237
+204002ba
+20400235
 704bef01
 20600000
 704be000
 704be94e
 68024beb
-20200342
-204002bc
+20200340
+204002ba
 6800cbe6
 c000b4df
 6800cbef
-c00082c8
-c00102cb
-c00182ce
+c00082c6
+c00102c9
+c00182cc
 20203bf1
 704bef11
 700d37aa
-202002d0
+202002ce
 704bef12
 700d3755
-202002d0
+202002ce
 704bef13
 700d3722
 6800cbe2
@@ -726,41 +724,41 @@
 700d3d00
 da200d37
 d8400007
-2040030d
-20400350
-20400213
+2040030b
+2040034e
+20400211
 202034df
 6800cbef
 c17f8000
-c00882e2
-c00902e4
-c00982e6
+c00882e0
+c00902e2
+c00982e4
 20600000
 704bef02
-20200237
+20200235
 704bef03
-20200237
+20200235
 704befff
 700b7d31
 20407c27
 68020d19
-20400342
-20200237
+20400340
+20200235
 c6118000
-20400343
-2040036a
+20400341
+20400368
 6800cbef
 c1ff8000
-204002ff
+204002fd
 58000000
 60014c04
 20403cab
 200007d0
 6800cc04
-c07f8266
-20400255
-24378308
-2040024d
+c07f8264
+20400253
+24378306
+2040024b
 704c1303
 79200023
 700b7d3c
@@ -772,13 +770,13 @@
 60020d39
 d8400006
 da200d37
-2040030d
-20200350
+2040030b
+2020034e
 68014c04
 1fe0fe01
 60014c04
-2040036a
-202002f4
+20400368
+202002f2
 6008cbe1
 18427200
 d8a00cd5
@@ -806,7 +804,7 @@
 207a0000
 6808cc3b
 da204c33
-2040032b
+20400329
 6008cc3b
 20600000
 1a227e00
@@ -821,7 +819,7 @@
 1a220c00
 e8c08000
 98408400
-c2000335
+c2000333
 18490400
 1fe20400
 c6918000
@@ -838,7 +836,7 @@
 d8c04c00
 e8c08000
 9a20a200
-c2000346
+c2000344
 1a227e00
 60014c16
 6800cc16
@@ -861,19 +859,19 @@
 9840fe00
 e0a08000
 6800cbef
-c0ff8362
+c0ff8360
 6800cbe2
 e0a08000
 6800cbe1
 98007200
 6800cbe2
-c0008368
+c0008366
 d8c00cd5
 20207e45
 d8c00cd6
 20207e45
 6808cbea
-20400370
+2040036e
 18408401
 18410403
 6008cbea
@@ -896,7 +894,7 @@
 79200401
 18431c00
 20600000
-20400379
+20400377
 7826fc00
 7830fc00
 78507c00
@@ -904,7 +902,7 @@
 68014be4
 98003600
 37c18400
-242c03c3
+242c03c1
 7846fc00
 7825fc00
 7823fc00
@@ -914,27 +912,27 @@
 6000cc19
 6808cc18
 98467c00
-242283c0
+242283be
 09800008
 19897e00
 60008cb3
 6800cc10
 1fe67c02
-2022839f
+2022839d
 68008cb3
 6808cbe2
 a8400e00
-242083c0
+242083be
 09800008
 19897e00
 e0a08000
 1fe97e00
 1fe1721f
-202283a9
+202283a7
 09800008
 19897e00
 e0a08000
-c20003a5
+c20003a3
 18a22200
 09800008
 19897e00
@@ -947,7 +945,7 @@
 1ff17e00
 e0a18000
 7845fc00
-202303c0
+202303be
 7837fc00
 68008017
 1fe0a200
@@ -956,21 +954,21 @@
 20403a7a
 6800cc2a
 1fe22200
-2040031b
+20400319
 20600000
 784dfc00
 7845fc00
 2020375c
-20400324
-202003c0
+20400322
+202003be
 20403a7a
 6808cbe9
 20203a91
 204053d2
 68024c00
 98001200
-20400379
-204003c5
+20400377
+204003c3
 79202a00
 782efc00
 78307c00
@@ -990,7 +988,7 @@
 d8c00cf5
 e8c08000
 08008608
-c20003de
+c20003dc
 78247c00
 08008618
 78447c00
Index: c51/patch/sch.rom
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/patch/sch.rom	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/patch/sch.rom	(working copy)
@@ -1,68 +1,68 @@
 mem_patch00:
-29   #mem_patch00
-00   #mem_patch01
-00   #mem_patch02
-00   #mem_patch03
-00   #mem_patch04
-00   #mem_patch05
-00   #mem_patch06
-00   #mem_patch07
-00   #mem_patch08
-00   #mem_patch09
-00   #mem_patch0A
-00   #mem_patch0B
-00   #mem_patch0C
-00   #mem_patch0D
-00   #mem_patch0E
-00   #mem_patch0F
-00   #mem_patch10
-00   #mem_patch11
-35   #mem_patch12
-00   #mem_patch13
-00   #mem_patch14
-00   #mem_patch15
-4f   #mem_patch16
-02   #mem_patch17
-00   #mem_patch18
-00   #mem_patch19
-00   #mem_patch1A
-00   #mem_patch1B
-00   #mem_patch1C
-00   #mem_patch1D
-00   #mem_patch1E
-00   #mem_patch1F
-00   #mem_patch20
-00   #mem_patch21
-00   #mem_patch22
-00   #mem_patch23
-00   #mem_patch24
-00   #mem_patch25
-00   #mem_patch26
-c0   #mem_patch27
-00   #mem_patch28
-00   #mem_patch29
-00   #mem_patch2A
-00   #mem_patch2B
-00   #mem_patch2C
-00  #mem_patch2D
-00   #mem_patch2E
-00   #mem_patch2F
-80   #mem_patch30
-a0   #mem_patch31
-00   #mem_patch32
-00   #mem_patch33
-00   #mem_patch34
-00   #mem_patch35
-00   #mem_patch36
-00   #mem_patch37
-00   #mem_patch38
-20   #mem_patch39
-01   #mem_patch3A
-00   #mem_patch3B
-00   #mem_patch3C
-00   #mem_patch3D
-00   #mem_patch3E
-00   #mem_patch3F
+29   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+35   
+00   
+00   
+00   
+4f   
+02   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+c0   
+00   
+00   
+00   
+00   
+00   
+00  
+00   
+00   
+80   
+a0   
+00   
+00   
+00   
+00   
+00   
+00   
+00   
+20   
+01   
+00   
+00   
+00   
+00   
+00   
 
 mem_lpm_mode:01
 mem_lpm_mult:40
@@ -88,23 +88,23 @@
 
 mem_all_uuid_16bits:
 06
-03#Type: Complete list of 16-bit UUIDs
+03
 1100 0001 0210 2411  0012  0100
 
 mem_all_uuid_128bits:00
 
-#keyboard uuid
+
 mem_kb_uuid_list:
-#uuids
+
 04 0011 0100 1002 1124
 
-#handle
+
 00010000
 
-#total length
+
 3601b6
 
-#attribute start, first 4 digit is attribute ID
+
 090000 0a 00010000
 090001 3503 191124
 090004 350d 3506 190100 090011 3503 190011
@@ -113,28 +113,28 @@
 090009 3508 3506 191124 090100
 09000d 350f 350d 3506 190100 090013 3503 190011
 
-#Service Name
-#090100 2517
-#'Apple Wireless Keyboard
-#41 70 70 6c 65 20 57 69 72 65 6c 65 73 73 20 4b 65 79 62 6f 61 72 64
-#Service Name
+
+
+
+
+
 090100 253d
-#'Broadcom Bluetooth Wireless  Keyboard                        
+
 4272 6f61 6463 6f6d 2042 6c75 6574 6f6f 7468 2057 6972 656c 6573 7320 204b 6579 626f 6172 6420 
 2020 2020 2020 2020 2020 2020 2020 2020 2020 2020 2020 20
 
-#Service Description
+
 090101 2508
-#'Keyboard
+
 4b6579626f617264
 
-#Provider Name
-#090102 250a
-#'Apple Inc.
-#41 70 70 6c 65 20 49 6e 63 2e
-#Provider Name
+
+
+
+
+
 090102 2510
-#'Broadcom Corp.  
+
 4272 6f61 6463 6f6d 2043 6f72 702e 2020
 
 090200 090100
@@ -145,40 +145,40 @@
 090205 2801
 090206 35a5 35a3 0822 259f
 
-# hid descriptor
-0501 # Usage Page(Generic Desktop)
-0906 # Usage(Keyboard)
-a101 # Collection(Application)
-8501 # Report ID(1)
-7501 # Report Size(1)
-9508 # Report Count(8)
-0507 # Usage Page(Keyboard/Keypad)
-19e0 # Usage Minimum(224)
-29e7 # Usage Maximum(231)
-1500 # Logical Minimum(0)
-2501 # Logical Maximum(1)
-8102 # Input(Data Variable Absolute) ; Modifier byte
-9501 # Report Count(1)
-7508 # Report Size(8)
-8103 # Input(Constant Variable Absolute) ; 
-9505 # Report Count(5)
-7501 # Report Size(1)
-0508 # Usage Page(LEDs)
-1901 # Usage Minimum(1)
-2905 # Usage Maximum(5)
-9102 # Output(Data Variable Absolute) ; LED report
-9501 # Report Count(1)
-7503 # Report Size(3)
-9103 # Output(Constant Variable Absolute) ; 
-9506 # Report Count(6)
-7508 # Report Size(8)
-1500 # Logical Minimum(0)
-25ff # Logical Maximum(255)
-0507 # Usage Page(Keyboard/Keypad)
-1900 # Usage Minimum(0)
-29ff # Usage Maximum(255)
-8100 # Input(Data Array) ; Key arrarys 6 bytes
-c0 # End Collection
+
+0501 
+0906 
+a101 
+8501 
+7501 
+9508 
+0507 
+19e0 
+29e7 
+1500 
+2501 
+8102 
+9501 
+7508 
+8103 
+9505 
+7501 
+0508 
+1901 
+2905 
+9102 
+9501 
+7503 
+9103 
+9506 
+7508 
+1500 
+25ff 
+0507 
+1900 
+29ff 
+8100 
+c0 
 
 05 0c  		
 09 01  		
@@ -193,60 +193,60 @@
 81 00  		
 c0
 
-#29
-#05 01
-#09 80
-#A1 01
-#85 03
-#15 00
-#25 01
-#75 01
-#95 03
-#19 81
-#29 83
-#81 02
-#95 01
-#75 05
-#81 03
-#C0
-
-#69
-05 01 # Usage Page(Generic Desktop)
-09 02 # Usage(Mouse)
-a1 01 # Collection(Application)
-85 03 # Report ID(3)
-09 01 # Usage(Pointer)
-a1 00 # Collection(Physical)
-05 09 # Usage Page(Buttons)
-19 01 # Usage Minimum(1)
-29 08 # Usage Maximum(8)
-15 00 # Logical Minimum(0)
-25 01 # Logical Maximum(1)
-75 01 # Report Size(1)
-95 08 # Report Count(8)
-81 02 # Input(Data Variable Absolute)
-05 01 # Usage Page(Generic Desktop)
-09 30 # Usage(X)
-09 31 # Usage(Y)
-16 01 80  #Logical Minimum (-32767)
-26 FF 7F #Logical Maximum (32767) 
-75 10 # Report Size(16)
-95 02 # Report Count(2)
-81 06 # Input(Data Variable Relative)
-09 38 # Usage(Wheel)
-15 81 # Logical Minimum(-127)
-25 7f # Logical Maximum(127)
-75 08 # Report Size(8)
-95 01 # Report Count(1)
-81 06 # Input(Data Variable Relative)
 
-05 0c  #USAGE_PAGE(Consumer Devices)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+05 01 
+09 02 
+a1 01 
+85 03 
+09 01 
+a1 00 
+05 09 
+19 01 
+29 08 
+15 00 
+25 01 
+75 01 
+95 08 
+81 02 
+05 01 
+09 30 
+09 31 
+16 01 80  
+26 FF 7F 
+75 10 
+95 02 
+81 06 
+09 38 
+15 81 
+25 7f 
+75 08 
+95 01 
+81 06 
+
+05 0c  
 0a 38 02
-95 01   #REPORT_COUNT (1)	
-81 06  #INPUT (Data,Var,Rel)
+95 01   
+81 06  
 
-c0 # End Collection
-c0 # End Collection
+c0 
+c0 
 
 090207 3508 3506 090409 090100
 09020b 090100
@@ -255,18 +255,18 @@
 09020e 2801
 09020f 090318
 090210 090000
-#attribute end
 
-#uuids for pnpInformation	
+
+
 03 1002 1200 0001
 
-#handle
+
 00010001
 
-#total length 90 bytes
+
 3600a1
 
-#attribute list
+
 090000 0a00010001
 090001 3503 191200
 090004 350d 3506 190100 090001 3503 190001
@@ -275,34 +275,34 @@
 090100 252f42726f6164636f6d20426c7565746f6f746820576972656c657373204b6579626f61726420506e5020536572766572
 090101 25084b6579626f617264
 090200 090103
-090201# VendorID
-090a5c
-090202#ProductID
-098502
+090201
+0904e8
+090202
+097021
 090203 090001
 090204 2801
 090205 090002
 
-#attribute end
+
 00
 
-#Auto reconnection after power on
+
 
 memui_uuid_table:mem_kb_uuid_list
-#Auto reconnection after power on
+
 mem_device_option:43
 mem_ptt:0
 mem_features:
 ff
 ff
 8f
-f8	#fe--EDR  F8--BR
-83	#AFHclose 83
+f8	
+83	
 9d
 59
 82
 
-#bluetootch param init
+
 mem_sp_flag:00
 mem_lpm_current_mult:00
 mem_master_sp_flag:00
@@ -317,74 +317,71 @@
 mem_ipc_tx_evt_buff:02 01
 
 
-mem_adc_0v:9f 3e
-mem_adc_3v:cd 4d
-mem_adc_config_flag:04    #01 VINLPM      #02 HVIN      #04 GPIO
 
 
-#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+
 mem_le_att_list:
 
-#Primary service: GATT
+
 01 00 00 28 02 01 18
-#Characteristic: Service changed
+
 02 00 03 28 01 20
 03 00 05 2a 01 00
-#Client Characteristic Configuration
+
 04 00 02 29 02 00 00
 
-#Primary Service: GAP
+
 05 00 00 28 02 00 18 
-#Characteristic: Device Name
+
 06 00 03 28 01 02 
 07 00 00 2a 
 'BT4.2 Keyboard
 
-#Characteristic: Appearance
+
 08 00 03 28 01 02 
 09 00 01 2a 02 c1 03 
-#Characteristic: Peripheral Preferred Connection Parameters
+
 0a 00 03 28 01 02
-0b 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+0b 00 04 2a 08 06 00 06 00 64 00 2c 01 
+
 
-#Primary Service: Device Information
 0c 00 00 28 02 0a 18 
-#Characteristic: pnp id
+
 0d 00 03 28 01 02
-0e 00 50 2a 07 02 8a 24 66 82 01 00
+0e 00 50 2a 07 02 e8 04 21 70 01 00		
+
 
-#Primary service: HID
 0f 00 00 28 02 12 18
-#Characteristic:Protocol mode
+
 10 00 03 28 01 06
 11 00 4e 2a 01 01
-#Characteristic: hid report
+
 12 00 03 28 01 12   
-13 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+13 00 4d 2a 08 00 00 00 00 00 00 00 00	
 14 00 02 29 02 00 00	
-15 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
-#Characteristic:hid report
+15 00 08 29 02 01 01	
+
 16 00 03 28 01 12   
-17 00 4d 2a 02 00 00 	#hid report	led handle write
+17 00 4d 2a 02 00 00 	
 18 00 02 29 02 00 00	
-19 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+19 00 08 29 02 02 01	
+
 
-#Characteristic:hid report
 1a 00 03 28 01 12  
 1b 00 4d 2a 05 00 00 00 00 00
 1c 00 02 29 02 00 00
-1d 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+1d 00 08 29 02 03 01	
+
 
-#Characteristic:hid report
 1e 00 03 28 01 0e   
-1f 00 4d 2a 02 00	00	#hid report	led handle write
+1f 00 4d 2a 02 00	00	
 20 00 02 29 02 00 00	
-21 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+21 00 08 29 02 01 02	
+
 
-#Characteristic:Report map
 22 00 03 28 01 0a
 23 00 4b 2a a0
-#66
+
 05 01
 09 06
 a1 01
@@ -419,7 +416,7 @@
 81 00
 c0 
 
-#25
+
 05 0c  		
 09 01  		
 a1 01	
@@ -433,76 +430,76 @@
 81 00  		
 c0
 
-#29
-#05 01
-#09 80
-#A1 01
-#85 03
-#15 00
-#25 01
-#75 01
-#95 03
-#19 81
-#29 83
-#81 02
-#95 01
-#75 05
-#81 03
-#C0
-
-#60
-05 01 # Usage Page(Generic Desktop)
-09 02 # Usage(Mouse)
-a1 01 # Collection(Application)
-85 03 # Report ID(3)
-09 01 # Usage(Pointer)
-a1 00 # Collection(Physical)
-05 09 # Usage Page(Buttons)
-19 01 # Usage Minimum(1)
-29 08 # Usage Maximum(8)
-15 00 # Logical Minimum(0)
-25 01 # Logical Maximum(1)
-75 01 # Report Size(1)
-95 08 # Report Count(8)
-81 02 # Input(Data Variable Absolute)
-05 01 # Usage Page(Generic Desktop)
-09 30 # Usage(X)
-09 31 # Usage(Y)
-16 01 80  #Logical Minimum (-32767)
-26 FF 7F #Logical Maximum (32767) 
-75 10 # Report Size(16)
-95 02 # Report Count(2)
-81 06 # Input(Data Variable Relative)
-09 38 # Usage(Wheel)
-15 81 # Logical Minimum(-127)
-25 7f # Logical Maximum(127)
-75 08 # Report Size(8)
-95 01 # Report Count(1)
-81 06 # Input(Data Variable Relative)
 
-05 0c  #USAGE_PAGE(Consumer Devices)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+05 01 
+09 02 
+a1 01 
+85 03 
+09 01 
+a1 00 
+05 09 
+19 01 
+29 08 
+15 00 
+25 01 
+75 01 
+95 08 
+81 02 
+05 01 
+09 30 
+09 31 
+16 01 80  
+26 FF 7F 
+75 10 
+95 02 
+81 06 
+09 38 
+15 81 
+25 7f 
+75 08 
+95 01 
+81 06 
+
+05 0c  
 0a 38 02
-95 01   #REPORT_COUNT (1)	
-81 06  #INPUT (Data,Var,Rel)
+95 01   
+81 06  
+
+c0 
+c0 
 
-c0 # End Collection
-c0 # End Collection
 
-#Characteristic:Hid information
 24 00 03 28 01 02
 25 00 4a 2a 04 11 01 00 01        
-#Characteristic
+
 26 00 03 28 01 04
 27 00 4c 2a 01 00
 
-#Primary Service: BAS
+
 28 00 00 28 02 0f 18 
-#Characteristic: Battery Level
+
 29 00 03 28 01 12 
 2a 00 19 2a 01 64 
-#Client Characteristic Configuration
+
 2b 00 02 29 02 00 00 
-#End of Attribute list
+
 00 00
 
 
@@ -519,24 +516,24 @@
 mem_le_rx_window:50
 
 mem_le_connection_updata_param:
-0c 00 #Length
-05 00 #CID
+0c 00 
+05 00 
 12 b4 
 08 00 
-10 00 #min interval
-10 00 #max interval
-00 00 #latency
-2c 01 #timeout
+10 00 
+10 00 
+00 00 
+2c 01 
 
 mem_le_name_len:
 'BT4.2 Keyboard
 
 mem_le_adv_channel_map:07 
 mem_le_adv_direct_addr_type:01
-#mem_le_adv_interval_max:00 01
+
 mem_le_adv_data_len:1f
 mem_le_adv_data:
-#02 01 05 05 02 12 18 0f 18 03 19 c1 03
+
 02 01 05 03 19 c1 03 03 03 12 18
 '\09BT4.2 Keyboard
 
@@ -544,13 +541,18 @@
 mem_le_scan_data:
 '\09BT4.2 Keyboard
 
+mem_version_yy_mm_dd:20 20 06 12		
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:04    
 
-#24g init
-mem_24g_mode:01#tx
-mem_24g_data_type:02        #mouse 1,kb 2
-mem_24g_max_retry:4#max tx retry
-mem_24g_no_ack:00#with ack
-mem_24g_rx_window:c0 12     #400us 
+
+mem_24g_mode:01
+mem_24g_data_type:02        
+mem_24g_max_retry:4
+mem_24g_no_ack:00
+mem_24g_rx_window:c0 12     
 mem_24g_ch_map1:00 13 2c 42
 mem_24g_ch_map2:06 15 36 48
 mem_24g_ch_map3:0f 1a 3a 4c
@@ -558,7 +560,7 @@
 mem_24g_pairing_sm:ff
 mem_24g_paring_addr:20 15 10 05
 mem_24g_common_temp:00 00 00 00 00 00 00 00 00 00
-mem_24g_enter_hibernate:00 48 5d 00 00 00 00 00#10 minmem_lpm_config:8f 10 ce
+mem_24g_enter_hibernate:00 48 5d 00 00 00 00 00
 mem_lpm_xtalcnt:00 0a 0b ef 0f
 mem_lpm_hibernate_switch:00
 mem_gpio_wakeup_low:00 00 00 00 00 00 00 00
@@ -577,13 +579,13 @@
 
 mem_eeprom_base:30 3f
 mem_eeprom_block_size:20
-#pointers to tail space of mem_le_att_list
+
 4f70:
-07 ff #2M_IF
+07 ff 
 0a fb
 0b ff 
 
-#agc table
+
 1a fb
 1b fb
 1c fb
@@ -636,14 +638,14 @@
 4e ec
 4f 5e
 
-# tx power
+
 55 d0
 56 c0
 57 4c
 58 6c
 59 50
 
-#dpll
+
 68 e4
 69 00
 6a 00
Index: c51/patch/sched.rom
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/patch/sched.rom	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/patch/sched.rom	(working copy)
@@ -276,9 +276,9 @@
 090101 25084b6579626f617264
 090200 090103
 090201# VendorID
-090a5c
+0904e8
 090202#ProductID
-098502
+097021
 090203 090001
 090204 2801
 090205 090002
@@ -317,9 +317,6 @@
 mem_ipc_tx_evt_buff:02 01
 
 
-mem_adc_0v:9f 3e
-mem_adc_3v:cd 4d
-mem_adc_config_flag:04    #01 VINLPM      #02 HVIN      #04 GPIO
 
 
 #attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
@@ -351,7 +348,7 @@
 0c 00 00 28 02 0a 18 
 #Characteristic: pnp id
 0d 00 03 28 01 02
-0e 00 50 2a 07 02 8a 24 66 82 01 00
+0e 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
 
 #Primary service: HID
 0f 00 00 28 02 12 18
@@ -544,6 +541,11 @@
 mem_le_scan_data:
 '\09BT4.2 Keyboard
 
+mem_version_yy_mm_dd:20 20 06 12		#version data 20200612
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:04    #01 VINLPM      #02 HVIN      #04 GPIO
 
 #24g init
 mem_24g_mode:01#tx
Index: c51/patch/sys.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: c51/sys.c
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/sys.c	(revision 110)
+++ /YC1026/YC1085_only_24g_SDK/c51/sys.c	(working copy)
@@ -176,22 +176,23 @@
 		if(g_variable.sys_numlockled_on_timer)
 		{
 			g_variable.sys_numlockled_on_timer--;
-			GPIO_Setout(NUM_LOCK_LED_GPIO, 0);
+			GPIO_Setout(NUM_LOCK_LED_GPIO, LED_ON);
 			if(!g_variable.sys_numlockled_on_timer)
-				GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
+				GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
 		}
 		else 
-			GPIO_Setout(NUM_LOCK_LED_GPIO, 1);
+			GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+			
 
 		if(g_variable.sys_capslockled_on_timer)
 		{
 			g_variable.sys_capslockled_on_timer--;
-			GPIO_Setout(CAPS_LED_GPIO, 0);
+			GPIO_Setout(CAPS_LED_GPIO, LED_ON);
 			if(!g_variable.sys_capslockled_on_timer)
-				GPIO_Setout(CAPS_LED_GPIO, 1);
+				GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
 		}
 		else
-			GPIO_Setout(CAPS_LED_GPIO, 1);
+			GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
 	}	
 }
 
@@ -316,10 +317,10 @@
 	if (g_variable.powerOn_timer != 0)
 	{	
 		g_variable.powerOn_timer--;
-		LED_device_poweron();
+		GPIO_Setout(G24_LED_GPIO,LED_ON);
 		if (!g_variable.powerOn_timer)
 		{
-			LED_device_poweroff();
+			GPIO_Setout(G24_LED_GPIO,LED_OFF);
 		}
 	}
 	else
@@ -401,8 +402,8 @@
 			break;
 			
 		case FIX_ENTER_LPM:
-			if (g_variable.delay_enter_lpm_timer ||g_variable.lockLpm ||g_variable.powerOn_timer ||
-			g_variable.sys_capslockled_on_timer ||g_variable.sys_numlockled_on_timer || g_variable.sys_scrolllockled_on_timer) 
+			if (g_variable.delay_enter_lpm_timer ||g_variable.lockLpm ||g_variable.powerOn_timer ||g_variable.one_key_press_wait_release_timer
+			) 
 			{
 				IPC_AbandonLpm();
 				break;
Index: c51/util/DeleteNote.pl
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/util/DeleteNote.pl	(nonexistent)
+++ /YC1026/YC1085_only_24g_SDK/c51/util/DeleteNote.pl	(working copy)
@@ -0,0 +1,27 @@
+
+#print "输入注释的标志:";
+
+#chomp ($text = <STDIN>);
+
+#print $text;
+
+###########################
+#该脚本的功能为删除，#为注释的注释代码。
+
+$Sched_path=$ARGV[0];
+
+open(Sched,$Sched_path)||die("Cannot open files\n");
+@sched=<Sched>;
+close(Sched);
+
+foreach $sched(@sched)
+{
+	$sched_begin = $sched;
+	@Sched = split(/[#]+/, $sched);
+	chomp @Sched[0];
+	$sched = @Sched[0]."\n";
+}
+
+open(Sched,">$Sched_path")||die("Cannot open files\n");
+print Sched @sched;
+close(Sched);
Index: c51/util/memalloc.pl
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/util/memalloc.pl	(nonexistent)
+++ /YC1026/YC1085_only_24g_SDK/c51/util/memalloc.pl	(working copy)
@@ -0,0 +1,74 @@
+#!/usr/bin/perl
+$path="output/bt_format.meta";
+open file, $path;
+@f = <file>;
+close file;
+open file, ">$path";
+$path =~ s/\/.*//;
+open file1, ">output/memmap.format";
+$xaddr = 0x4000;
+$addr = 0;
+if($#ARGV == 1) {
+	$addr = hex($ARGV[0]);
+	$xaddr = hex($ARGV[1]);
+}
+for($i = 0;$i < @f;$i++) { $cmalloc[$i] = (); }
+for($i = 0;$i < @f;$i++) { 
+	$_ = $f[$i];
+	$start = 1 if(/^\s*memalloc\s*\(\s*$/);
+	$start = 2 if(/^\s*xmemalloc\s*\(\s*$/);
+	$start = 3 if(/^\s*omemalloc\s*\(\s*$/);
+	$start = 10 + $1 if(/^\s*cmemalloc\s+([0-9])\s*\(\s*$/);
+	if($start) {
+		if(/^\s*([0-9]+)\s+([a-zA-Z0-9_]+)\s*(.*)$/) {
+			if($start == 1) {
+				$str = sprintf "0x%04x %s%s\n", $addr, $2, $3;
+				$addr += $1;
+				$bstr .= $str;
+				$sstr .= $str;
+			} elsif($start == 2) {
+				$str = sprintf "0x%04x %s%s\n", $xaddr, $2, $3;
+				$xaddr += $1;
+				$xstr .= $str;
+			} else {
+				push @ostr, $_;
+			}
+		}
+		if(/^\s*\)\s*$/) {
+			if(@ostr > 0) {
+				if($start == 3) {
+					push @omalloc,[@ostr];
+				} elsif($start > 9) {
+					$j = $start - 10;
+					push @{$cmalloc[$j]},@ostr;
+				} 
+			}
+			$start = 0;
+			@ostr = ();
+		}
+	} else {
+		$sstr .= $_;
+	}
+}
+for($i = 0;$i <= $#cmalloc;$i++) {
+	push @omalloc,$cmalloc[$i];
+#	for($j = 0;$j <= $#{$cmalloc[$i]};$j++) {		print $cmalloc[$i][$j];	}
+}
+
+$xend = $xaddr;
+for($i = 0;$i <= $#omalloc;$i++) {
+	for($j = 0, $oaddr = $xaddr;$j <= $#{$omalloc[$i]};$j++) {
+		if($omalloc[$i][$j] =~ /^\s*([0-9]+)\s+([a-zA-Z0-9_]+)\s*(.*)$/) {
+			$str = sprintf "0x%04x %s%s\n", $oaddr, $2, $3;
+			$oaddr += $1;
+			$xstr .= $str;
+		}
+	}
+}
+$xend = $oaddr if($oaddr > $xend);
+print file $xstr, $sstr;
+print file1 $bstr, $xstr;
+close file;
+close file1;
+printf "\nLast allocated address is %04x\n", $addr;
+printf "\nLast allocated xmem address is %04x\n", $xend;
\ No newline at end of file
Index: c51/util/mergepatch.pl
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/util/mergepatch.pl	(nonexistent)
+++ /YC1026/YC1085_only_24g_SDK/c51/util/mergepatch.pl	(working copy)
@@ -0,0 +1,44 @@
+#!/usr/bin/perl
+$defs = "";
+$fmt = 0;
+
+
+sub parseif {
+	my($fname) = @_;
+	open file, $fname;
+	@f = <file>;
+	close file;
+	open file, ">$fname";
+	@valid = (1);
+	for($i = 0;$i < @f;$i++) { 
+		$_ = $f[$i];
+		$defs .= $1 . " " if(/^define\s+(\w+)\s*/);
+		if(/^ifdef\s+(\w+)\s*/) {
+			push @valid, ($defs =~ /(^|\s)$1(\s|$)/ ? 1 : 0) & $valid[$#valid];
+		} elsif(/^ifndef\s+(\w+)\s*/) {
+			push @valid, ($defs =~ /(^|\s)$1(\s|$)/ ? 0 : 1) & $valid[$#valid];
+		} elsif(/^else/) {
+			printf "%s\nelse without if at line %d\n", $f[$i - 3], $i if($#valid == 0);
+			$valid[$#valid] = (1 - $valid[$#valid]) & $valid[$#valid - 1];
+		} elsif(/^endif/) {
+			printf "%s\nendif without if at line %d\n", $_, $i if($#valid == 0);
+			pop @valid;
+		} elsif($valid[$#valid]) {
+			if(/^include\s+(.+)\s*/) {
+				open file2, "program/$1";
+				@f2 = <file2>;
+				close file2;
+				splice(@f, $i + 1, 0, @f2);
+			} else {
+				print file $_;
+			}
+		}
+	}
+	close file;
+}
+
+parseif("output/bt_program23.meta");
+$fmt = 1;
+parseif("output/bt_format.meta");
+
+
Index: c51/util/sortsched.pl
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/util/sortsched.pl	(nonexistent)
+++ /YC1026/YC1085_only_24g_SDK/c51/util/sortsched.pl	(working copy)
@@ -0,0 +1,163 @@
+
+
+$Sched_path=$ARGV[0];
+$Sched_test_path=$ARGV[1];
+
+open(Sched,"$Sched_path")||die("Cannot open files1\n");
+@sched=<Sched>;
+@sched[-1] = "";
+close(Sched);
+#open(Sched_test,">ResultsFile.rom")||die("Cannot open files2\n");
+#print Sched_test ("");
+#close (Sched_test);
+#open(Sched_test,">ResultsFile.rom")||die("Cannot open file3s\n");
+open(Sched_test1,">$Sched_test_path")||die("Cannot open files4\n");
+#@Sched_test=<Sched_test>;
+@Data[0]="";
+$Data_num=0;
+@Address_num;
+@OriginalRecord;
+foreach $sched (@sched)
+{
+	if($sched=~/[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]:/)
+	{
+		#$lap_flag = 0;
+		#$le_lap_flag = 0;
+		#if($sched=~/40a0:/)
+		#{
+		#	$lap_data = $sched;
+		#	$lap_flag = 1;
+		#}
+		#elsif($sched =~ /44a0:/)
+		#{
+		#	$le_lap_data = $sched;
+		#	$le_lap_flag = 1;
+		#}
+		#else
+		#{
+			$Data_num++;
+			@OriginalRecord[$Data_num]=$sched;
+			@snap_variable=split(/[#\n]/,$sched);
+			@Data[$Data_num]=@snap_variable[0]."\n";
+		#}
+	}
+	else
+	{
+		#if($lap_flag == 1)
+		#{
+		#	$lap_data .= $sched;
+		#}
+		#elsif($le_lap_flag == 1)
+		#{
+		#	$le_lap_data .= $sched;
+		#}
+		#else
+		#{
+			@OriginalRecord[$Data_num].=$sched;
+			@snap_variable=split(/[#\n]/,$sched);
+			@Data[$Data_num].=@snap_variable[0]."\n";
+		#}
+	}
+}
+@sort_Data = sort(@Data);
+@OriginalRecord=sort(@OriginalRecord);
+$PreviousADDR=0;
+$CurrentADDR=0;
+$PreviousData="";
+$CurrentData="";
+$I=0;
+$len_sort_Data=@sort_Data;
+$NextADDR="";
+for($i=0;$i<$len_sort_Data;$i++)
+{
+	$sort_Data=@sort_Data[$i];
+	@snap_variable=split(/:/,$sort_Data);
+	$WData=@snap_variable[1];
+	
+	if($WData =~ /[1-9a-fA-F]/ && hex(@snap_variable[0]) >= 16384){
+	$WADDR=@snap_variable[0];
+	@sort_Data[$i]=@OriginalRecord[$i];
+	@LLL[$i]=0;
+	if($NextADDR eq $WADDR){
+		@snap_variable=split(/[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]:/,@OriginalRecord[$i]);
+		@sort_Data[$i]=@snap_variable[1];
+		@LLL[$i]=1;
+	}
+	if(@LLL[$i]==0 && hex($PreviousADDR)+6>hex($WADDR)){
+		$LEN=hex($WADDR) - hex($NextADDR);
+		#print $LEN;
+		for($j=0;$j<$LEN;$j++)
+		{
+			@sort_Data[$i-1].="00 "
+		}
+		@sort_Data[$i-1].="\n";
+		@snap_variable=split(/[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]:/,@OriginalRecord[$i]);
+		@sort_Data[$i]=@snap_variable[1];
+		@LLL[$i]=1;
+	}
+	if($PreviousADDR eq $WADDR){
+		@sort_Data[$i-1]="";
+		if(@LLL[$i-1]==1){
+			@snap_variable=split(/[0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F]:/,@OriginalRecord[$i]);
+			@sort_Data[$i]=@snap_variable[1];
+			@LLL[$i]=1;
+		}
+	}
+	else{
+		@DataNum=split(/[0-9a-fA-F][0-9a-fA-F]/,$WData);
+		$DataNum=@DataNum;
+		$PreviousADDR=$WADDR;
+		#@sort_Data[$i].="      ".$DataNum."\n";
+		$NextADDR = &hex_add($WADDR,$DataNum);
+	}
+	}
+	else{
+		if(hex(@snap_variable[0]) >= 16384)
+		{
+			@sort_Data[$i]="";
+		}
+	}
+	#@sort_Data[$i].="      ".$NextADDR."\n";
+	#$sort_Data =~ s/\n//;
+	#$sort_Data.="\n";
+}
+#print Sched_test @OriginalRecord;
+#print Sched_test1 $lap_data;
+#print Sched_test1 $le_lap_data;
+print Sched_test1 @sort_Data;
+#print  $lap_data;
+#print  $le_lap_data;
+#for($i=0;$i<$len_sort_Data;$i++)
+#foreach $sort_Data (@sort_Data)
+#{	
+	#$sort_Data=@sort_Data[$i];
+	#print Sched_test $PreviousData;
+	#@snap_variable=split(/:/,$sort_Data);
+	#$CurrentADDR=@snap_variable[0];
+	#$CurrentData=$sort_Data;
+	#print ($CurrentADDR);
+	#if($CurrentADDR-$PreviousADDR==1)
+	#{
+	#	$CurrentVal=@snap_variable[1];
+	#	@snap_variable=split(/\n/,$PreviousData);
+		
+	#	$PreviousData.=" ".$CurrentVal;
+	#	$CurrentData=$PreviousData;
+	#	@sort_Data[$i]="";
+	#	@sort_Data[$i-1]=$CurrentData;
+		#print ($CurrentData."\n");
+	#}
+	#$PreviousADDR=$CurrentADDR;
+	#$PreviousData=$CurrentData;
+	#print Sched_test $CurrentData;
+#}
+#print Sched_test @sort_Data;
+#close(Sched_test);
+close(Sched_test1);
+
+sub hex_add{
+	my($ADDR,$Len)=@_;
+	$data=hex($ADDR);
+	$data=$data+$Len-1;
+	return(sprintf("%04x",$data));
+}
\ No newline at end of file
Index: c51/util/transform_memmap2btreg.pl
===================================================================
--- /YC1026/YC1085_only_24g_SDK/c51/util/transform_memmap2btreg.pl	(nonexistent)
+++ /YC1026/YC1085_only_24g_SDK/c51/util/transform_memmap2btreg.pl	(working copy)
@@ -0,0 +1,45 @@
+$memmap_path=$ARGV[0];
+$memblocks_path=$ARGV[1];
+$btreg_path=$ARGV[2];
+open(btreg,">$btreg_path");
+print btreg ("");#reset file
+close(btreg);
+open(memmap,$memmap_path);
+open(memblocks,$memblocks_path);
+open(btreg,">>$btreg_path");
+@text = <memmap>;
+print btreg ("#ifndef _BT_REG_H_\n");
+print btreg ("#define _BT_REG_H_\n");
+foreach $text (@text){
+	@word = split (/[\t ]+/,$text);
+	$reg_addr = @word[0];
+	if ($reg_addr =~ /0x[0-9abcdef]*/){#Is 0x0000~0xffff
+		$word1 = @word[1];
+		@reg_name = split(/\/[\/\*]/,$word1);#delete // or /*  */
+		$reg_name = @reg_name[0];
+		$reg_name =~ s/[\r\n]//;#delete Carriage return
+		
+		printf btreg ("#define\t%-40s\t%s\n",$reg_name,$reg_addr);
+		#print btreg ("#define \t $reg_name \t\t\t $reg_addr \n");
+		#print btreg ("@word[1]\n");
+	}
+}
+@text = <memblocks>;
+foreach $text (@text){
+	@word = split (/[\t ]+/,$text);
+	$reg_addr = @word[0];
+	if ($reg_addr =~ /0x[0-9abcdef]*/){
+		$word1 = @word[1];
+		@reg_name = split(/\/[\/\*]/,$word1);
+		$reg_name = @reg_name[0];
+		$reg_name =~ s/[\r\n]//;
+		printf btreg ("#define\t%-40s\t%s\n",$reg_name,$reg_addr);
+		#print btreg ("#define \t $reg_name \t\t\t\t $reg_addr \n");
+		#print btreg ("@word[1]\n");
+	}
+}
+print btreg ("#endif\n");
+close(memblocks);
+close(memmap);
+close(btreg);
+
